#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include #include struct VirtActionInvoker0 { 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 VirtActionInvoker2 { 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 VirtFuncInvoker0 { 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 VirtActionInvoker1 { 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 VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct VirtFuncInvoker1 { 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 GenericVirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct GenericVirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct GenericVirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); 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 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 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 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 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 GenericInterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct GenericInterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct GenericInterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; // System.Comparison`1 struct Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0; // System.Comparison`1 struct Comparison_1_tB56E8E7C2BF431D44E8EBD15EA3E6F41AAFF03D2; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08; // System.EventHandler`1 struct EventHandler_1_tFA1C30E54FA1061D79E711F65F9A174BFBD8CDCB; // System.EventHandler`1 struct EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC; // System.EventHandler`1 struct EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63; // System.EventHandler`1 struct EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tDABF94F17CBA942CEC67015F066E5EDA32DE6C58; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t52B1AC8D9E5E1ED28DF6C46A37C9A1B00B394F9D; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t62010156673DE1460AB1D1CEBE5DCD48665E1A38; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0; // System.Collections.Generic.List`1 struct List_1_tF3A527AB0695528DCF7BAE0CB569A308361853D7; // System.Collections.Generic.List`1 struct List_1_t5FDF595FC26CDEE45DE5C97C1F64BDAB28CC7D05; // System.Collections.Generic.List`1 struct List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545; // System.Collections.Generic.List`1 struct List_1_t35E2F3636689C080F259AD3469423EB15A85AF38; // System.Collections.Generic.List`1 struct List_1_t815A476B0A21E183042059E705F9E505478CD8AE; // System.Collections.Generic.List`1 struct List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15; // System.Collections.Generic.List`1 struct List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69; // System.Collections.Generic.List`1 struct List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4; // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5; // System.Collections.Generic.List`1 struct List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB; // System.Collections.Generic.List`1 struct List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57; // System.Collections.Generic.List`1 struct List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB; // System.Collections.Generic.List`1 struct List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD; // System.Collections.Generic.List`1 struct List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA; // System.Collections.Generic.List`1 struct List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880; // System.Collections.Generic.List`1 struct List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D; // System.Collections.Generic.List`1 struct List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0; // System.Collections.Generic.List`1 struct List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181; // System.Collections.Generic.List`1 struct List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9; // System.Predicate`1 struct Predicate_1_tD20F9B8A0A0911404E536EAC227413EDDE1083FE; // System.Collections.Generic.Queue`1 struct Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F; // UnityEngine.UI.CoroutineTween.TweenRunner`1 struct TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; // CrazyMinnow.SALSA.ExpressionComponent[] struct ExpressionComponentU5BU5D_t1F5FE395D157E30BFBA492E8FCAADC95418F69EE; // CrazyMinnow.SALSA.IExpressionController[] struct IExpressionControllerU5BU5D_tDEA2EFCFE26632D851223B93320BC14555B91BAD; // CrazyMinnow.SALSA.InspectorControllerHelperData[] struct InspectorControllerHelperDataU5BU5D_tC4990737FCEC2F59FBBEC71EE36085BF554D8A4F; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // CrazyMinnow.SALSA.LipsyncExpression[] struct LipsyncExpressionU5BU5D_t64C43494D1E7B332EC6B34E8585A4CA345406525; // UnityEngine.Material[] struct MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // CrazyMinnow.SALSA.ProcDirection[] struct ProcDirectionU5BU5D_t79A03372342A86714921658556ED443E56BE95C3; // CrazyMinnow.SALSA.ProcLLPair[] struct ProcLLPairU5BU5D_t47A186CEEAEA7D8B007544759928D8D58422B7C5; // UnityEngine.Quaternion[] struct QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6; // CrazyMinnow.SALSA.QueueData[] struct QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860; // System.Single[] struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA; // UnityEngine.Sprite[] struct SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // UnityEngine.Texture[] struct TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150; // UnityEngine.Transform[] struct TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // UnityEngine.Vector2[] struct Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA; // UnityEngine.Vector3[] struct Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4; // CrazyMinnow.SALSA.QueueProcessor/QueueOoO[] struct QueueOoOU5BU5D_tB767DE2C8EAB5B8902C81E9F9624705C58FC58E1; // CrazyMinnow.SALSA.UmaUepProxy/UepPose[] struct UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9; // CrazyMinnow.SALSA.UmaUepProxy/UepPoseDef[] struct UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07; // UnityEngine.Animator struct Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149; // CrazyMinnow.SALSA.AnimatorController struct AnimatorController_t9D96F6465E88F19768634AFD260141CF23B77E01; // UnityEngine.AnimatorControllerParameter struct AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA; // UnityEngine.AudioClip struct AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE; // UnityEngine.AudioSource struct AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // CrazyMinnow.SALSA.BoneController struct BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C; // UnityEngine.Canvas struct Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA; // UnityEngine.CanvasRenderer struct CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684; // UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288; // CrazyMinnow.SALSA.EmoteExpression struct EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B; // CrazyMinnow.SALSA.Emoter struct Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7; // System.EventArgs struct EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA; // CrazyMinnow.SALSA.EventController struct EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4; // CrazyMinnow.SALSA.Expression struct Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D; // CrazyMinnow.SALSA.ExpressionComponent struct ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D; // CrazyMinnow.SALSA.EyeGizmo struct EyeGizmo_t7E09AC272BF406C3EC30FB37B7060AA8639E785E; // CrazyMinnow.SALSA.EyesExpression struct EyesExpression_t1F268E78F13B5C0B6D5B584077A784046486EAAD; // UnityEngine.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319; // CrazyMinnow.SALSA.GenericController struct GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7; // System.IAsyncResult struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.Collections.IEnumerator struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105; // CrazyMinnow.SALSA.IExpressionController struct IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610; // UnityEngine.UI.Image struct Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C; // CrazyMinnow.SALSA.InspectorControllerHelperData struct InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70; // CrazyMinnow.SALSA.LipsyncExpression struct LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A; // UnityEngine.Material struct Material_t8927C00353A72755313F046D0CE85178AE8218EE; // CrazyMinnow.SALSA.MaterialController struct MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // UnityEngine.Mesh struct Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6; // System.Reflection.MethodInfo struct MethodInfo_t; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A; // CrazyMinnow.SALSA.ProcDirection struct ProcDirection_tC62B97B09CB51ED733151F401AA2BB9EBD161EA6; // CrazyMinnow.SALSA.ProcDirections struct ProcDirections_tFD40A6BAD2CCE4E304678BBE22B0F7C922A50052; // CrazyMinnow.SALSA.ProcFloats struct ProcFloats_t331BCAA9EF5F265EDD79A38EA9FC27C6863390BD; // CrazyMinnow.SALSA.ProcLLPair struct ProcLLPair_tB4838AECC69252E841D4A6D3C544BB2BA4AE27F5; // CrazyMinnow.SALSA.ProcLLPairs struct ProcLLPairs_t215616DB07797A90817802C8678AFB280D155565; // CrazyMinnow.SALSA.ProcTrans struct ProcTrans_t2BB9171C261038F44C15497EBBDF6B000F5E8DCC; // CrazyMinnow.SALSA.ProcTransOffset struct ProcTransOffset_tB9141178E2515588F437171D5959747777F7C8DE; // CrazyMinnow.SALSA.ProcVecs struct ProcVecs_tF94C0F6953466FC3D0080567195A571682BD02F3; // CrazyMinnow.SALSA.QueueExpressionComponent struct QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376; // CrazyMinnow.SALSA.QueueProcessor struct QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45; // UnityEngine.UI.RectMask2D struct RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15; // UnityEngine.RectTransform struct RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072; // UnityEngine.Renderer struct Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C; // CrazyMinnow.SALSA.RuntimeController struct RuntimeController_t1FA3996BCC7D2421B80767235C074F882122C037; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // CrazyMinnow.SALSA.Salsa struct Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B; // CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer struct SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1; // CrazyMinnow.SALSA.SalsaSettingsConfigurator struct SalsaSettingsConfigurator_tF024356AC0D8C5BC3A3FFD1D1EDDE9AAB43D7D00; // CrazyMinnow.SALSA.ShapeController struct ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95; // UnityEngine.SkinnedMeshRenderer struct SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496; // UnityEngine.Sprite struct Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9; // CrazyMinnow.SALSA.SpriteController struct SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37; // UnityEngine.SpriteRenderer struct SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF; // System.String struct String_t; // CrazyMinnow.SALSA.Switcher struct Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385; // UnityEngine.Texture struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE; // UnityEngine.Texture2D struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF; // CrazyMinnow.SALSA.TextureController struct TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045; // UnityEngine.Transform struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1; // System.Type struct Type_t; // CrazyMinnow.SALSA.UguiController struct UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B; // CrazyMinnow.SALSA.UmaController struct UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD; // CrazyMinnow.SALSA.UmaUepEditorPreviewTwirler struct UmaUepEditorPreviewTwirler_t6DF6715F034E864B3C128D43A387501C5FEDBB83; // CrazyMinnow.SALSA.UmaUepProxy struct UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9; // UnityEngine.Events.UnityAction struct UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099; // UnityEngine.UI.VertexHelper struct VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // UnityEngine.AudioClip/PCMReaderCallback struct PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B; // UnityEngine.AudioClip/PCMSetPositionCallback struct PCMSetPositionCallback_tBDD99E7C0697687F1E7B06CDD5DE444A3709CF4C; // CrazyMinnow.SALSA.Emoter/<>c struct U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33; // CrazyMinnow.SALSA.EventController/EventControllerNotificationArgs struct EventControllerNotificationArgs_t899F6A19A15FACB072401967EB3315408810A603; // UnityEngine.UI.MaskableGraphic/CullStateChangedEvent struct CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4; // CrazyMinnow.SALSA.QueueProcessor/QueueOoO struct QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF; // CrazyMinnow.SALSA.QueueProcessor/QueueProcessorNotificationArgs struct QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470; // CrazyMinnow.SALSA.Salsa/<>c struct U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2; // CrazyMinnow.SALSA.Salsa/d__147 struct U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91; // CrazyMinnow.SALSA.Salsa/d__155 struct U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498; // CrazyMinnow.SALSA.Salsa/AudioAnalyzer struct AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C; // CrazyMinnow.SALSA.Salsa/ClipChannels struct ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3; // CrazyMinnow.SALSA.Salsa/ClipFrequency struct ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE; // CrazyMinnow.SALSA.Salsa/ClipRecordHeadPointer struct ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB; // CrazyMinnow.SALSA.Salsa/ClipSampleCount struct ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63; // CrazyMinnow.SALSA.Salsa/GetClipData struct GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB; // CrazyMinnow.SALSA.Salsa/GetExternalAnalysis struct GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4; // CrazyMinnow.SALSA.Salsa/GetTriggerIndex struct GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD; // CrazyMinnow.SALSA.Salsa/SalsaNotificationArgs struct SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F; // CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer/SilenceAnalyzer struct SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB; // CrazyMinnow.SALSA.UmaUepProxy/UepPose struct UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92; // CrazyMinnow.SALSA.UmaUepProxy/UepPoseDef struct UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269; IL2CPP_EXTERN_C RuntimeClass* AnimatorController_t9D96F6465E88F19768634AFD260141CF23B77E01_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEquatable_1_t73DD506D14A80DF66BADEC3E87E58ADBB01AE680_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t35E2F3636689C080F259AD3469423EB15A85AF38_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral03194EA6CECB543B0C57DE303B48A657EEB4D0E7; IL2CPP_EXTERN_C String_t* _stringLiteral075D697610DE395DD47D56BDB84D5FA515D40299; IL2CPP_EXTERN_C String_t* _stringLiteral08C5B995FACD33C579DA045DAF281E96D184EE29; IL2CPP_EXTERN_C String_t* _stringLiteral0DE3810E6A4851C828C16C6F2FCCF8F28428DF92; IL2CPP_EXTERN_C String_t* _stringLiteral129C0DBCA9BDDB19FFDEBEFAAA8EBC335FF6EAAB; IL2CPP_EXTERN_C String_t* _stringLiteral12F0D5834CF602E9DF6B5BB96349925E9E080AFA; IL2CPP_EXTERN_C String_t* _stringLiteral1342E00533C5A3204C8654AE8C2E6CD8132487F3; IL2CPP_EXTERN_C String_t* _stringLiteral141AA277D57FDC8158A39396457D4693540650BF; IL2CPP_EXTERN_C String_t* _stringLiteral1CBB351BFC23B12475507733956EAC09CE669A53; IL2CPP_EXTERN_C String_t* _stringLiteral25CF561E84471C2816A7D250265CC0B06D679C8F; IL2CPP_EXTERN_C String_t* _stringLiteral28007DF4B914B77A6D81677C969928EEA6C4F818; IL2CPP_EXTERN_C String_t* _stringLiteral280FF42D962D78E609936D1D0658B3349AE96960; IL2CPP_EXTERN_C String_t* _stringLiteral282A315922DE0991E94F1397077839F37DB35904; IL2CPP_EXTERN_C String_t* _stringLiteral2864B51E91421FCB6D3DBCFB7ED3594F883DC2D7; IL2CPP_EXTERN_C String_t* _stringLiteral3902019B527DBC7AA32EF2FBAE98904A68F6A91D; IL2CPP_EXTERN_C String_t* _stringLiteral3BF7876C63766492B2A94E6317BF07EFC53F5C48; IL2CPP_EXTERN_C String_t* _stringLiteral3D33C07EFC6E7DDD66C4C69B3ABF1E4750C139B7; IL2CPP_EXTERN_C String_t* _stringLiteral44BFA10981CA046D2CA6CB96A3A5D80822B55967; IL2CPP_EXTERN_C String_t* _stringLiteral4B8146FB95E4F51B29DA41EB5F6D60F8FD0ECF21; IL2CPP_EXTERN_C String_t* _stringLiteral4B834130F365D4188B04AC6C4AD40F210E76182E; IL2CPP_EXTERN_C String_t* _stringLiteral4BF5009B64A3561A1FDDDF1F66A98A002A232F20; IL2CPP_EXTERN_C String_t* _stringLiteral4D887FD7283E0CD12E13BF2610E5DDDF5E042AAD; IL2CPP_EXTERN_C String_t* _stringLiteral4DEFD35274F79BC8CD34BD45427B910EE4D122C7; IL2CPP_EXTERN_C String_t* _stringLiteral5295380188F75D696383F8BDB2147F0053791372; IL2CPP_EXTERN_C String_t* _stringLiteral5583A6C0598CF26694C21D7CA3666DD44488DFC5; IL2CPP_EXTERN_C String_t* _stringLiteral57346CDA5727977D30919E5B9D3BBA1DEA8757BF; IL2CPP_EXTERN_C String_t* _stringLiteral585CAD55448537D7107032161BCE5CE12C1FAA86; IL2CPP_EXTERN_C String_t* _stringLiteral5A0FE0F1FD0A3045F5843C550E021ABC45D18DB8; IL2CPP_EXTERN_C String_t* _stringLiteral654827579049CC54F7326C4D26A690A80A4D8C28; IL2CPP_EXTERN_C String_t* _stringLiteral6CBA7E1F41091391CA0B5724C2076CF9A7B82E04; IL2CPP_EXTERN_C String_t* _stringLiteral701415F0F28B150E63FC17EDEC4293FCD6ACBA8E; IL2CPP_EXTERN_C String_t* _stringLiteral722CBF7C918ACDCDB2F572739F33CFF2E9AA1C7D; IL2CPP_EXTERN_C String_t* _stringLiteral72AFFB2B01B52DC3DC13F955051C5B4E762E6247; IL2CPP_EXTERN_C String_t* _stringLiteral8F0928025AE54960E7B1CAC092D6EBBD9F7CA184; IL2CPP_EXTERN_C String_t* _stringLiteral902A67E91B67B4852E8AC1C949E6FE6FB5E377EE; IL2CPP_EXTERN_C String_t* _stringLiteral93D63F89578E35B17DD17088D9109BFBDE40C47B; IL2CPP_EXTERN_C String_t* _stringLiteral942364C5FE5DD7C4EA573B9FAA2E044856B81D4E; IL2CPP_EXTERN_C String_t* _stringLiteral9AC851BB9C1A7DCFAD69908C32B1463DDF09B48F; IL2CPP_EXTERN_C String_t* _stringLiteral9DC712A8E70A2CBBD74A6D4A28B1D8ADB67089F1; IL2CPP_EXTERN_C String_t* _stringLiteral9E7384E8E3B6E334507D5C4272DD9D57AB0E58C9; IL2CPP_EXTERN_C String_t* _stringLiteralA42C805591E42541F688940AAE4596CCB5EABD19; IL2CPP_EXTERN_C String_t* _stringLiteralA6F1EAC798FFE1EE2A06CB507F06704EF9BB7B20; IL2CPP_EXTERN_C String_t* _stringLiteralAB5C478C555C7ACD352AE6A3232D39D1F52A2AE4; IL2CPP_EXTERN_C String_t* _stringLiteralAC6EBEFEDFC7AA6B34D9D79F19B66DC47697070D; IL2CPP_EXTERN_C String_t* _stringLiteralAD081D7C01890D88485860615375CFCC31999855; IL2CPP_EXTERN_C String_t* _stringLiteralB3EF9DB7FE837B05E2C912EF3A99B75A733476DD; IL2CPP_EXTERN_C String_t* _stringLiteralB65EEFE208591DF39E34395A0E148E6FC100157B; IL2CPP_EXTERN_C String_t* _stringLiteralB86F141FA37096D2D5AF7F08D238AE8636A046C8; IL2CPP_EXTERN_C String_t* _stringLiteralB92A0CD78574275C1EE82509BA45B51D259A3529; IL2CPP_EXTERN_C String_t* _stringLiteralBBB9352EF06D51E7125729041EF4401EFBF97DB1; IL2CPP_EXTERN_C String_t* _stringLiteralBCF4DAA4BA5F76F7DD1341AACE954BF2FC4614B5; IL2CPP_EXTERN_C String_t* _stringLiteralBE9AEDA87C409551BD2C437087BFCDAF77929110; IL2CPP_EXTERN_C String_t* _stringLiteralC0F7BF8A1ABDC67A132B9BF0B4E671DEBFF7B8C0; IL2CPP_EXTERN_C String_t* _stringLiteralD22DB958DFBE41FEBAF708AD4C0EB849A03E49F3; IL2CPP_EXTERN_C String_t* _stringLiteralD4D24D2950DD3C4587C26FF0083CC809436BCADE; IL2CPP_EXTERN_C String_t* _stringLiteralD658CDC6C27912AA68AF360AEFEC2C4092A4BB61; IL2CPP_EXTERN_C String_t* _stringLiteralD8A80A9F4A176020C172E3ABE48BBF28BD7782A2; IL2CPP_EXTERN_C String_t* _stringLiteralE2BF4306A56A68510ADA2CAEBF1AD705A3493635; IL2CPP_EXTERN_C String_t* _stringLiteralE2DF3A322B225C5FB72EF21694AA1D5F093470BD; IL2CPP_EXTERN_C String_t* _stringLiteralE4B8FF96F140CFE2D668E3CF98AFBF2FAD84206A; IL2CPP_EXTERN_C String_t* _stringLiteralE892B646DE427D943A7C403B00EBD6F0A00FD462; IL2CPP_EXTERN_C String_t* _stringLiteralED4892BFB13282398FCAD0C01F8F19CAA0DA2A87; IL2CPP_EXTERN_C String_t* _stringLiteralF1EA17C918344EFED79132C05DBEB15A932AB47A; IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D; IL2CPP_EXTERN_C String_t* _stringLiteralF412947170ECEAA101661EED219B7F3E11A7DBA3; IL2CPP_EXTERN_C String_t* _stringLiteralFF7592D5CC37F05D4756C1E995D8BC008050F03C; IL2CPP_EXTERN_C const RuntimeMethod* Comparison_1__ctor_m2CB0665DA79F3EF427ACC064B30A52126F63BF12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisAudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B_mCC3B7A679ECE504BFAF8C70C4EF527511F46902F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisSalsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_m6ECD2880E8C4B788B2F9D75B2A53F0898FBEE0B0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m2721B332C7315B8590D01121005560C8A4824279_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m263EB6C52C97405E419D9C2C54C18C15AD02C391_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mE4D6F6FA5A737865159110CFFF4034001E7F75C1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mFFEEBA09EA430B994459C2D86ADEE218592742A1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mD72184D856B7E64CF626DE131ACA0A6F651874C1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m39B1858B718D5D3276968B08614F66E402422A15_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m4DAC8A03E88979B42189D98D5E0A2A9979C995AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m75665EC5C609211A20A209AB0A0B37A1BF4D7190_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m9F9B5CB0922398E74B599FFB450F24BF2B694219_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mB0BA1641911700A5C3B3107D14A9D3B4EE369648_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mB381E883DF3917B1939FCC6ACAFB0D2F261E84DC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m134D44D2F4DD4EB582DFE5A640634F9DA817D401_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m36F5B2ABAE2B303034BB368EEE48EEFBFF26522C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m54933EE6D3CBFC64FD2C01531D412C12A7A6C7B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m593B20DE4BB1CB044003F8A693DE974C651496DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m9D54105B7DAF312514D71568AFE5B5EC6F9DF83D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mBDF9C2CE29A407750480474BA191248286A4CDD4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m0F57CB6207605CE09FE2619C57FECF7C5BEF3A0F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m3269C400237E6533CA2BFEE15BA25E2F2002D668_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m66AEB5DD2F625DF2DE4B485DBB8AE5AB4884B7F0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mB02C05394DC770A56E5FEB003C77FA0FA3BBB157_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mCF88776A724D5ED0F5CC88B6B8BA4C530789EE29_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mE2EB6B000E443315A798915D8FB63C38CEEAFA47_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventHandler_1_Invoke_m45252756B37E400159FCCDDDB7E64E19A6502253_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventHandler_1__ctor_m06CBEE3FD45E335A0199C7D1654191E2F73D9B10_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventHandler_1__ctor_m51767897650CD1E74ED8FC0125D652DF9D7D74A5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisAudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B_mAF312D503D6F1D34AF86F86AE5CD74920A901E53_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m28122A5F1F50EF8394190DE6D5334ED44F08AA61_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m4D8CDADC6E5846B67FD0B1D76CE04F6C2CA81649_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m52BF19F8E128AFF14D3F111ACA2594D1C7DC36A4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m58DF6FCFDD48862FDECD0AC6E2FAB14588F795FE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m64795E72997A23871C5C2AA968B296E02C2BA0D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m93A08EA489A09A73780119772DE17BA06864EB10_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m0EAC31AFE8F497D2D36E00A85143974CEC4F42AA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m270B433DFAFDB8F334A30B01933A70F640EB14E1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m2CBF4D2A2AD14BF03E3FA24BEC8058E5122048EF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m736C259A1E09CD44D00E684A387870B1E021F8CB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mBA67EB750F751E78BB2D3489871D8484AB801557_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m01E37193361B61CC3FF93E932ECCBB8FF556044C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m12A102489545C7BD182D1487554E78253F9A129D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m19041D0DC52593D6F61EB3FB4E1EB48892A0FE6E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m8004243A306ADA8172D24E91E9457AE4EBF3941A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mAD3F2DAD3D0F4DF7B7BC973B3533891358C14A92_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mFD7AE7B38E8A329EBDF3DAAD35D2C8C5AD4CD2B0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m52FA58EE86E30E940C623B4BBD0F67D7EE27E27A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m88099AEC681EFE07F57B5B1FE35A5EF033BA6452_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m0A77F65653C219CCD2A5B1063B205EEA24BCDCDE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m0C5D4E993FBA98ABAAE66A3D06310E3E2C0BE4B8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m186505F66F97198D8539D9673736392642EE45CC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m21A27FC8855349BC0B29380C366CA2702BD7D011_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m497DA7006D664307F20A0546E5B717AA4B5E8A86_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m4CCA077ACAB11548CE7A37FE67B013E1E7497ACD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m513073B395DCDCF9B4A013BC3CD2FA2EC9DC2BF3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m56C00E186C52C3A18C014B019D76A4D67D5EDC2D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m5C8057DF1222EA6F5A84B7F14A98D7C18BC29249_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m71FDD44E74399141E01027248077751CD2AACED8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m893CC03BA01C82718A6ED996182C83EA91A0E74C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m931A772099ED222BB83B3F47BC5D8A0DE00B4546_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mBF0D7A9B3C2F4E9182ACEE9C5C4699C25F327789_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC02548306D1DD364615170E6269E5D583272EAF5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC4ECA0D4A96ACB515DE3CB9E3D1E95082E0AA203_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mF1988BCA8453A6F7C9CADC31952D30BA7A4BCBD1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mF1D464BA700E6389AEA8AF2F197270F387D9A41F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mF8F23D572031748AD428623AE16803455997E297_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m9722D429C1D6FBF4E4F763847E80CB50BD83975F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_mE11D6701697DD3496003C8E783A855A902B7C33A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Queue_1__ctor_mAF21CEAD55C8D16F8DCAEF21864939658136AA4D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SalsaAdvancedDynamicsSilenceAnalyzer_OnSalsaAudioSourceFound_m2B5CC1BE364C53CAD459120ABE13CC61448E57FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SalsaAdvancedDynamicsSilenceAnalyzer_SalsaAdsaCheckForSilence_m4DCFEF43414EB518FE260DB0837394CFE168128C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SalsaAudioAnalyzer_SalsaLssCalcSimpleAbs_m06F451CE1F610DFC5973EC05349551732156AFD6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Salsa_OnScaledTimeResumed_m823E405261663E2A5BF8AB0D3D5BCF541FDDEF9E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Salsa_SalsaLssGetAudioClipChannels_mDF1EE8692AFD84D77FC340DC77E5B1BE6E22C691_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Salsa_SalsaLssGetAudioClipData_m245A41E162AED46736AE145FB8987D9D1F18B465_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Salsa_SalsaLssGetAudioClipFrequency_mDE74E4402B69164D77E27E5B4313BE2B4C14368F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Salsa_SalsaLssGetAudioClipSampleCount_m7E15A76B68C9161F693ACF81336222B7F3CEF485_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Salsa_SalsaLssGetBufferPointer_m558B4CA2A493CEFEBE66458AA4F2AF3EB38E5979_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Salsa_SalsaLssGetExternalAnalysisValue_m78B4642FEBEB85125DE4442A62319EE38F61BD65_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Salsa_SalsaLssGetTriggeredIndex_m4097023016DF1E96D9CCC1A54A52FE88F8AAC78C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSortLipsyncExpressionsOnTriggerU3Eb__150_0_m046C809C00D58C3FA06EECFB4D83CB700DB1E28D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CWaitForAudioSourceU3Ed__147_System_Collections_IEnumerator_Reset_m8196E2CB577C2A82175B19207DBF8027E5E90F25_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CWaitForSalsaU3Ed__155_System_Collections_IEnumerator_Reset_mBFBA6137F35BC826D722AC897C92591DDE10DA49_RuntimeMethod_var; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376;; struct QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_com; struct QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_com;; struct QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_pinvoke; struct QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_pinvoke;; struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; struct MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860; struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA; struct SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77; struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; struct TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150; struct UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9; struct UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___entries_1)); } inline EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___keys_7)); } inline KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___values_8)); } inline ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * get_values_8() const { return ___values_8; } inline ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ExpressionComponentU5BU5D_t1F5FE395D157E30BFBA492E8FCAADC95418F69EE* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545, ____items_1)); } inline ExpressionComponentU5BU5D_t1F5FE395D157E30BFBA492E8FCAADC95418F69EE* get__items_1() const { return ____items_1; } inline ExpressionComponentU5BU5D_t1F5FE395D157E30BFBA492E8FCAADC95418F69EE** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ExpressionComponentU5BU5D_t1F5FE395D157E30BFBA492E8FCAADC95418F69EE* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t35E2F3636689C080F259AD3469423EB15A85AF38 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items IExpressionControllerU5BU5D_tDEA2EFCFE26632D851223B93320BC14555B91BAD* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t35E2F3636689C080F259AD3469423EB15A85AF38, ____items_1)); } inline IExpressionControllerU5BU5D_tDEA2EFCFE26632D851223B93320BC14555B91BAD* get__items_1() const { return ____items_1; } inline IExpressionControllerU5BU5D_tDEA2EFCFE26632D851223B93320BC14555B91BAD** get_address_of__items_1() { return &____items_1; } inline void set__items_1(IExpressionControllerU5BU5D_tDEA2EFCFE26632D851223B93320BC14555B91BAD* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t35E2F3636689C080F259AD3469423EB15A85AF38, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t35E2F3636689C080F259AD3469423EB15A85AF38, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t35E2F3636689C080F259AD3469423EB15A85AF38, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items InspectorControllerHelperDataU5BU5D_tC4990737FCEC2F59FBBEC71EE36085BF554D8A4F* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15, ____items_1)); } inline InspectorControllerHelperDataU5BU5D_tC4990737FCEC2F59FBBEC71EE36085BF554D8A4F* get__items_1() const { return ____items_1; } inline InspectorControllerHelperDataU5BU5D_tC4990737FCEC2F59FBBEC71EE36085BF554D8A4F** get_address_of__items_1() { return &____items_1; } inline void set__items_1(InspectorControllerHelperDataU5BU5D_tC4990737FCEC2F59FBBEC71EE36085BF554D8A4F* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items LipsyncExpressionU5BU5D_t64C43494D1E7B332EC6B34E8585A4CA345406525* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69, ____items_1)); } inline LipsyncExpressionU5BU5D_t64C43494D1E7B332EC6B34E8585A4CA345406525* get__items_1() const { return ____items_1; } inline LipsyncExpressionU5BU5D_t64C43494D1E7B332EC6B34E8585A4CA345406525** get_address_of__items_1() { return &____items_1; } inline void set__items_1(LipsyncExpressionU5BU5D_t64C43494D1E7B332EC6B34E8585A4CA345406525* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4, ____items_1)); } inline MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* get__items_1() const { return ____items_1; } inline MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492** get_address_of__items_1() { return &____items_1; } inline void set__items_1(MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ProcDirectionU5BU5D_t79A03372342A86714921658556ED443E56BE95C3* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB, ____items_1)); } inline ProcDirectionU5BU5D_t79A03372342A86714921658556ED443E56BE95C3* get__items_1() const { return ____items_1; } inline ProcDirectionU5BU5D_t79A03372342A86714921658556ED443E56BE95C3** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ProcDirectionU5BU5D_t79A03372342A86714921658556ED443E56BE95C3* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ProcLLPairU5BU5D_t47A186CEEAEA7D8B007544759928D8D58422B7C5* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57, ____items_1)); } inline ProcLLPairU5BU5D_t47A186CEEAEA7D8B007544759928D8D58422B7C5* get__items_1() const { return ____items_1; } inline ProcLLPairU5BU5D_t47A186CEEAEA7D8B007544759928D8D58422B7C5** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ProcLLPairU5BU5D_t47A186CEEAEA7D8B007544759928D8D58422B7C5* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB, ____items_1)); } inline QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6* get__items_1() const { return ____items_1; } inline QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6** get_address_of__items_1() { return &____items_1; } inline void set__items_1(QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD, ____items_1)); } inline QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860* get__items_1() const { return ____items_1; } inline QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860** get_address_of__items_1() { return &____items_1; } inline void set__items_1(QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA, ____items_1)); } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get__items_1() const { return ____items_1; } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of__items_1() { return &____items_1; } inline void set__items_1(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880, ____items_1)); } inline SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* get__items_1() const { return ____items_1; } inline SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77** get_address_of__items_1() { return &____items_1; } inline void set__items_1(SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D, ____items_1)); } inline TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* get__items_1() const { return ____items_1; } inline TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150** get_address_of__items_1() { return &____items_1; } inline void set__items_1(TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0, ____items_1)); } inline TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D* get__items_1() const { return ____items_1; } inline TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D** get_address_of__items_1() { return &____items_1; } inline void set__items_1(TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181, ____items_1)); } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get__items_1() const { return ____items_1; } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of__items_1() { return &____items_1; } inline void set__items_1(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items QueueOoOU5BU5D_tB767DE2C8EAB5B8902C81E9F9624705C58FC58E1* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9, ____items_1)); } inline QueueOoOU5BU5D_tB767DE2C8EAB5B8902C81E9F9624705C58FC58E1* get__items_1() const { return ____items_1; } inline QueueOoOU5BU5D_tB767DE2C8EAB5B8902C81E9F9624705C58FC58E1** get_address_of__items_1() { return &____items_1; } inline void set__items_1(QueueOoOU5BU5D_tB767DE2C8EAB5B8902C81E9F9624705C58FC58E1* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.Queue`1 struct Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F : public RuntimeObject { public: // T[] System.Collections.Generic.Queue`1::_array Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____array_0; // System.Int32 System.Collections.Generic.Queue`1::_head int32_t ____head_1; // System.Int32 System.Collections.Generic.Queue`1::_tail int32_t ____tail_2; // System.Int32 System.Collections.Generic.Queue`1::_size int32_t ____size_3; // System.Int32 System.Collections.Generic.Queue`1::_version int32_t ____version_4; // System.Object System.Collections.Generic.Queue`1::_syncRoot RuntimeObject * ____syncRoot_5; public: inline static int32_t get_offset_of__array_0() { return static_cast(offsetof(Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F, ____array_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__array_0() const { return ____array_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__array_0() { return &____array_0; } inline void set__array_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__head_1() { return static_cast(offsetof(Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F, ____head_1)); } inline int32_t get__head_1() const { return ____head_1; } inline int32_t* get_address_of__head_1() { return &____head_1; } inline void set__head_1(int32_t value) { ____head_1 = value; } inline static int32_t get_offset_of__tail_2() { return static_cast(offsetof(Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F, ____tail_2)); } inline int32_t get__tail_2() const { return ____tail_2; } inline int32_t* get_address_of__tail_2() { return &____tail_2; } inline void set__tail_2(int32_t value) { ____tail_2 = value; } inline static int32_t get_offset_of__size_3() { return static_cast(offsetof(Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F, ____size_3)); } inline int32_t get__size_3() const { return ____size_3; } inline int32_t* get_address_of__size_3() { return &____size_3; } inline void set__size_3(int32_t value) { ____size_3 = value; } inline static int32_t get_offset_of__version_4() { return static_cast(offsetof(Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F, ____version_4)); } inline int32_t get__version_4() const { return ____version_4; } inline int32_t* get_address_of__version_4() { return &____version_4; } inline void set__version_4(int32_t value) { ____version_4 = value; } inline static int32_t get_offset_of__syncRoot_5() { return static_cast(offsetof(Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F, ____syncRoot_5)); } inline RuntimeObject * get__syncRoot_5() const { return ____syncRoot_5; } inline RuntimeObject ** get_address_of__syncRoot_5() { return &____syncRoot_5; } inline void set__syncRoot_5(RuntimeObject * value) { ____syncRoot_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_5), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // System.EventArgs struct EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA : public RuntimeObject { public: public: }; // CrazyMinnow.SALSA.Expression struct Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D : public RuntimeObject { public: // System.String CrazyMinnow.SALSA.Expression::name String_t* ___name_0; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.Expression::components List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * ___components_1; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.Expression::controllerVars List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * ___controllerVars_2; // System.Boolean CrazyMinnow.SALSA.Expression::inspFoldout bool ___inspFoldout_3; // System.Boolean CrazyMinnow.SALSA.Expression::previewDisplayMode bool ___previewDisplayMode_4; // System.Boolean CrazyMinnow.SALSA.Expression::collectionExpand bool ___collectionExpand_5; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_components_1() { return static_cast(offsetof(Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D, ___components_1)); } inline List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * get_components_1() const { return ___components_1; } inline List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 ** get_address_of_components_1() { return &___components_1; } inline void set_components_1(List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * value) { ___components_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___components_1), (void*)value); } inline static int32_t get_offset_of_controllerVars_2() { return static_cast(offsetof(Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D, ___controllerVars_2)); } inline List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * get_controllerVars_2() const { return ___controllerVars_2; } inline List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 ** get_address_of_controllerVars_2() { return &___controllerVars_2; } inline void set_controllerVars_2(List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * value) { ___controllerVars_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___controllerVars_2), (void*)value); } inline static int32_t get_offset_of_inspFoldout_3() { return static_cast(offsetof(Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D, ___inspFoldout_3)); } inline bool get_inspFoldout_3() const { return ___inspFoldout_3; } inline bool* get_address_of_inspFoldout_3() { return &___inspFoldout_3; } inline void set_inspFoldout_3(bool value) { ___inspFoldout_3 = value; } inline static int32_t get_offset_of_previewDisplayMode_4() { return static_cast(offsetof(Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D, ___previewDisplayMode_4)); } inline bool get_previewDisplayMode_4() const { return ___previewDisplayMode_4; } inline bool* get_address_of_previewDisplayMode_4() { return &___previewDisplayMode_4; } inline void set_previewDisplayMode_4(bool value) { ___previewDisplayMode_4 = value; } inline static int32_t get_offset_of_collectionExpand_5() { return static_cast(offsetof(Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D, ___collectionExpand_5)); } inline bool get_collectionExpand_5() const { return ___collectionExpand_5; } inline bool* get_address_of_collectionExpand_5() { return &___collectionExpand_5; } inline void set_collectionExpand_5(bool value) { ___collectionExpand_5 = value; } }; // CrazyMinnow.SALSA.EyesExpression struct EyesExpression_t1F268E78F13B5C0B6D5B584077A784046486EAAD : public RuntimeObject { public: // CrazyMinnow.SALSA.Expression CrazyMinnow.SALSA.EyesExpression::expData Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * ___expData_0; // CrazyMinnow.SALSA.EyeGizmo CrazyMinnow.SALSA.EyesExpression::gizmo EyeGizmo_t7E09AC272BF406C3EC30FB37B7060AA8639E785E * ___gizmo_1; // System.Int32 CrazyMinnow.SALSA.EyesExpression::referenceIdx int32_t ___referenceIdx_2; public: inline static int32_t get_offset_of_expData_0() { return static_cast(offsetof(EyesExpression_t1F268E78F13B5C0B6D5B584077A784046486EAAD, ___expData_0)); } inline Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * get_expData_0() const { return ___expData_0; } inline Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D ** get_address_of_expData_0() { return &___expData_0; } inline void set_expData_0(Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * value) { ___expData_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___expData_0), (void*)value); } inline static int32_t get_offset_of_gizmo_1() { return static_cast(offsetof(EyesExpression_t1F268E78F13B5C0B6D5B584077A784046486EAAD, ___gizmo_1)); } inline EyeGizmo_t7E09AC272BF406C3EC30FB37B7060AA8639E785E * get_gizmo_1() const { return ___gizmo_1; } inline EyeGizmo_t7E09AC272BF406C3EC30FB37B7060AA8639E785E ** get_address_of_gizmo_1() { return &___gizmo_1; } inline void set_gizmo_1(EyeGizmo_t7E09AC272BF406C3EC30FB37B7060AA8639E785E * value) { ___gizmo_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___gizmo_1), (void*)value); } inline static int32_t get_offset_of_referenceIdx_2() { return static_cast(offsetof(EyesExpression_t1F268E78F13B5C0B6D5B584077A784046486EAAD, ___referenceIdx_2)); } inline int32_t get_referenceIdx_2() const { return ___referenceIdx_2; } inline int32_t* get_address_of_referenceIdx_2() { return &___referenceIdx_2; } inline void set_referenceIdx_2(int32_t value) { ___referenceIdx_2 = value; } }; // CrazyMinnow.SALSA.GenericController struct GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 : public RuntimeObject { public: // System.Boolean CrazyMinnow.SALSA.GenericController::hasStartedON bool ___hasStartedON_0; // System.Boolean CrazyMinnow.SALSA.GenericController::hasFinishedON bool ___hasFinishedON_1; // System.Boolean CrazyMinnow.SALSA.GenericController::hasStartedOFF bool ___hasStartedOFF_2; // System.Boolean CrazyMinnow.SALSA.GenericController::hasFinishedOFF bool ___hasFinishedOFF_3; public: inline static int32_t get_offset_of_hasStartedON_0() { return static_cast(offsetof(GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7, ___hasStartedON_0)); } inline bool get_hasStartedON_0() const { return ___hasStartedON_0; } inline bool* get_address_of_hasStartedON_0() { return &___hasStartedON_0; } inline void set_hasStartedON_0(bool value) { ___hasStartedON_0 = value; } inline static int32_t get_offset_of_hasFinishedON_1() { return static_cast(offsetof(GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7, ___hasFinishedON_1)); } inline bool get_hasFinishedON_1() const { return ___hasFinishedON_1; } inline bool* get_address_of_hasFinishedON_1() { return &___hasFinishedON_1; } inline void set_hasFinishedON_1(bool value) { ___hasFinishedON_1 = value; } inline static int32_t get_offset_of_hasStartedOFF_2() { return static_cast(offsetof(GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7, ___hasStartedOFF_2)); } inline bool get_hasStartedOFF_2() const { return ___hasStartedOFF_2; } inline bool* get_address_of_hasStartedOFF_2() { return &___hasStartedOFF_2; } inline void set_hasStartedOFF_2(bool value) { ___hasStartedOFF_2 = value; } inline static int32_t get_offset_of_hasFinishedOFF_3() { return static_cast(offsetof(GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7, ___hasFinishedOFF_3)); } inline bool get_hasFinishedOFF_3() const { return ___hasFinishedOFF_3; } inline bool* get_address_of_hasFinishedOFF_3() { return &___hasFinishedOFF_3; } inline void set_hasFinishedOFF_3(bool value) { ___hasFinishedOFF_3 = value; } }; // CrazyMinnow.SALSA.LerpEasings struct LerpEasings_t3BE3625CFC0E8826615BB2F9AEC2AA4D93673129 : public RuntimeObject { public: public: }; // CrazyMinnow.SALSA.LipsyncExpression struct LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A : public RuntimeObject { public: // CrazyMinnow.SALSA.Expression CrazyMinnow.SALSA.LipsyncExpression::expData Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * ___expData_0; // System.Single CrazyMinnow.SALSA.LipsyncExpression::trigger float ___trigger_1; public: inline static int32_t get_offset_of_expData_0() { return static_cast(offsetof(LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A, ___expData_0)); } inline Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * get_expData_0() const { return ___expData_0; } inline Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D ** get_address_of_expData_0() { return &___expData_0; } inline void set_expData_0(Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * value) { ___expData_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___expData_0), (void*)value); } inline static int32_t get_offset_of_trigger_1() { return static_cast(offsetof(LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A, ___trigger_1)); } inline float get_trigger_1() const { return ___trigger_1; } inline float* get_address_of_trigger_1() { return &___trigger_1; } inline void set_trigger_1(float value) { ___trigger_1 = value; } }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // CrazyMinnow.SALSA.ProcDirections struct ProcDirections_tFD40A6BAD2CCE4E304678BBE22B0F7C922A50052 : public RuntimeObject { public: // System.Collections.Generic.List`1 CrazyMinnow.SALSA.ProcDirections::dir List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB * ___dir_0; public: inline static int32_t get_offset_of_dir_0() { return static_cast(offsetof(ProcDirections_tFD40A6BAD2CCE4E304678BBE22B0F7C922A50052, ___dir_0)); } inline List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB * get_dir_0() const { return ___dir_0; } inline List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB ** get_address_of_dir_0() { return &___dir_0; } inline void set_dir_0(List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB * value) { ___dir_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dir_0), (void*)value); } }; // CrazyMinnow.SALSA.ProcFloats struct ProcFloats_t331BCAA9EF5F265EDD79A38EA9FC27C6863390BD : public RuntimeObject { public: // System.Collections.Generic.List`1 CrazyMinnow.SALSA.ProcFloats::amt List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA * ___amt_0; public: inline static int32_t get_offset_of_amt_0() { return static_cast(offsetof(ProcFloats_t331BCAA9EF5F265EDD79A38EA9FC27C6863390BD, ___amt_0)); } inline List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA * get_amt_0() const { return ___amt_0; } inline List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA ** get_address_of_amt_0() { return &___amt_0; } inline void set_amt_0(List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA * value) { ___amt_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___amt_0), (void*)value); } }; // CrazyMinnow.SALSA.ProcLLPairs struct ProcLLPairs_t215616DB07797A90817802C8678AFB280D155565 : public RuntimeObject { public: // System.Collections.Generic.List`1 CrazyMinnow.SALSA.ProcLLPairs::pairs List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57 * ___pairs_0; public: inline static int32_t get_offset_of_pairs_0() { return static_cast(offsetof(ProcLLPairs_t215616DB07797A90817802C8678AFB280D155565, ___pairs_0)); } inline List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57 * get_pairs_0() const { return ___pairs_0; } inline List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57 ** get_address_of_pairs_0() { return &___pairs_0; } inline void set_pairs_0(List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57 * value) { ___pairs_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___pairs_0), (void*)value); } }; // CrazyMinnow.SALSA.ProcTrans struct ProcTrans_t2BB9171C261038F44C15497EBBDF6B000F5E8DCC : public RuntimeObject { public: // System.Collections.Generic.List`1 CrazyMinnow.SALSA.ProcTrans::trans List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * ___trans_0; public: inline static int32_t get_offset_of_trans_0() { return static_cast(offsetof(ProcTrans_t2BB9171C261038F44C15497EBBDF6B000F5E8DCC, ___trans_0)); } inline List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * get_trans_0() const { return ___trans_0; } inline List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 ** get_address_of_trans_0() { return &___trans_0; } inline void set_trans_0(List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * value) { ___trans_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___trans_0), (void*)value); } }; // CrazyMinnow.SALSA.ProcTransOffset struct ProcTransOffset_tB9141178E2515588F437171D5959747777F7C8DE : public RuntimeObject { public: // System.Collections.Generic.List`1 CrazyMinnow.SALSA.ProcTransOffset::trans List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * ___trans_0; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.ProcTransOffset::offset List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB * ___offset_1; public: inline static int32_t get_offset_of_trans_0() { return static_cast(offsetof(ProcTransOffset_tB9141178E2515588F437171D5959747777F7C8DE, ___trans_0)); } inline List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * get_trans_0() const { return ___trans_0; } inline List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 ** get_address_of_trans_0() { return &___trans_0; } inline void set_trans_0(List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * value) { ___trans_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___trans_0), (void*)value); } inline static int32_t get_offset_of_offset_1() { return static_cast(offsetof(ProcTransOffset_tB9141178E2515588F437171D5959747777F7C8DE, ___offset_1)); } inline List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB * get_offset_1() const { return ___offset_1; } inline List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB ** get_address_of_offset_1() { return &___offset_1; } inline void set_offset_1(List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB * value) { ___offset_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___offset_1), (void*)value); } }; // CrazyMinnow.SALSA.ProcVecs struct ProcVecs_tF94C0F6953466FC3D0080567195A571682BD02F3 : public RuntimeObject { public: // System.Collections.Generic.List`1 CrazyMinnow.SALSA.ProcVecs::vec List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * ___vec_0; public: inline static int32_t get_offset_of_vec_0() { return static_cast(offsetof(ProcVecs_tF94C0F6953466FC3D0080567195A571682BD02F3, ___vec_0)); } inline List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * get_vec_0() const { return ___vec_0; } inline List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 ** get_address_of_vec_0() { return &___vec_0; } inline void set_vec_0(List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * value) { ___vec_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___vec_0), (void*)value); } }; // CrazyMinnow.SALSA.RuntimeController struct RuntimeController_t1FA3996BCC7D2421B80767235C074F882122C037 : public RuntimeObject { public: // System.Collections.Generic.List`1 CrazyMinnow.SALSA.RuntimeController::controllers List_1_t35E2F3636689C080F259AD3469423EB15A85AF38 * ___controllers_0; public: inline static int32_t get_offset_of_controllers_0() { return static_cast(offsetof(RuntimeController_t1FA3996BCC7D2421B80767235C074F882122C037, ___controllers_0)); } inline List_1_t35E2F3636689C080F259AD3469423EB15A85AF38 * get_controllers_0() const { return ___controllers_0; } inline List_1_t35E2F3636689C080F259AD3469423EB15A85AF38 ** get_address_of_controllers_0() { return &___controllers_0; } inline void set_controllers_0(List_1_t35E2F3636689C080F259AD3469423EB15A85AF38 * value) { ___controllers_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___controllers_0), (void*)value); } }; // CrazyMinnow.SALSA.SalsaAudioAnalyzer struct SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16 : public RuntimeObject { public: public: }; // CrazyMinnow.SALSA.SalsaSettings struct SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE : public RuntimeObject { public: public: }; // CrazyMinnow.SALSA.SalsaUtil struct SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85 : public RuntimeObject { public: public: }; // CrazyMinnow.SALSA.ShapeController struct ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 : public RuntimeObject { public: // UnityEngine.SkinnedMeshRenderer CrazyMinnow.SALSA.ShapeController::smr SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * ___smr_0; // System.Int32 CrazyMinnow.SALSA.ShapeController::blendIndex int32_t ___blendIndex_1; // System.Single CrazyMinnow.SALSA.ShapeController::min float ___min_2; // System.Single CrazyMinnow.SALSA.ShapeController::minOriginal float ___minOriginal_3; // System.Single CrazyMinnow.SALSA.ShapeController::max float ___max_4; // System.Single CrazyMinnow.SALSA.ShapeController::fracMax float ___fracMax_5; // System.Single CrazyMinnow.SALSA.ShapeController::start float ___start_6; // System.Single CrazyMinnow.SALSA.ShapeController::current float ___current_7; // System.Single CrazyMinnow.SALSA.ShapeController::previous float ___previous_8; // System.Boolean CrazyMinnow.SALSA.ShapeController::isInfluenced bool ___isInfluenced_9; public: inline static int32_t get_offset_of_smr_0() { return static_cast(offsetof(ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95, ___smr_0)); } inline SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * get_smr_0() const { return ___smr_0; } inline SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 ** get_address_of_smr_0() { return &___smr_0; } inline void set_smr_0(SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * value) { ___smr_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___smr_0), (void*)value); } inline static int32_t get_offset_of_blendIndex_1() { return static_cast(offsetof(ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95, ___blendIndex_1)); } inline int32_t get_blendIndex_1() const { return ___blendIndex_1; } inline int32_t* get_address_of_blendIndex_1() { return &___blendIndex_1; } inline void set_blendIndex_1(int32_t value) { ___blendIndex_1 = value; } inline static int32_t get_offset_of_min_2() { return static_cast(offsetof(ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95, ___min_2)); } inline float get_min_2() const { return ___min_2; } inline float* get_address_of_min_2() { return &___min_2; } inline void set_min_2(float value) { ___min_2 = value; } inline static int32_t get_offset_of_minOriginal_3() { return static_cast(offsetof(ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95, ___minOriginal_3)); } inline float get_minOriginal_3() const { return ___minOriginal_3; } inline float* get_address_of_minOriginal_3() { return &___minOriginal_3; } inline void set_minOriginal_3(float value) { ___minOriginal_3 = value; } inline static int32_t get_offset_of_max_4() { return static_cast(offsetof(ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95, ___max_4)); } inline float get_max_4() const { return ___max_4; } inline float* get_address_of_max_4() { return &___max_4; } inline void set_max_4(float value) { ___max_4 = value; } inline static int32_t get_offset_of_fracMax_5() { return static_cast(offsetof(ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95, ___fracMax_5)); } inline float get_fracMax_5() const { return ___fracMax_5; } inline float* get_address_of_fracMax_5() { return &___fracMax_5; } inline void set_fracMax_5(float value) { ___fracMax_5 = value; } inline static int32_t get_offset_of_start_6() { return static_cast(offsetof(ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95, ___start_6)); } inline float get_start_6() const { return ___start_6; } inline float* get_address_of_start_6() { return &___start_6; } inline void set_start_6(float value) { ___start_6 = value; } inline static int32_t get_offset_of_current_7() { return static_cast(offsetof(ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95, ___current_7)); } inline float get_current_7() const { return ___current_7; } inline float* get_address_of_current_7() { return &___current_7; } inline void set_current_7(float value) { ___current_7 = value; } inline static int32_t get_offset_of_previous_8() { return static_cast(offsetof(ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95, ___previous_8)); } inline float get_previous_8() const { return ___previous_8; } inline float* get_address_of_previous_8() { return &___previous_8; } inline void set_previous_8(float value) { ___previous_8 = value; } inline static int32_t get_offset_of_isInfluenced_9() { return static_cast(offsetof(ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95, ___isInfluenced_9)); } inline bool get_isInfluenced_9() const { return ___isInfluenced_9; } inline bool* get_address_of_isInfluenced_9() { return &___isInfluenced_9; } inline void set_isInfluenced_9(bool value) { ___isInfluenced_9 = 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; } }; // CrazyMinnow.SALSA.UmaController struct UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD : public RuntimeObject { public: // CrazyMinnow.SALSA.UmaUepProxy CrazyMinnow.SALSA.UmaController::umaUepProxy UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * ___umaUepProxy_0; // System.Int32 CrazyMinnow.SALSA.UmaController::poseIndex int32_t ___poseIndex_1; // System.Single CrazyMinnow.SALSA.UmaController::min float ___min_2; // System.Single CrazyMinnow.SALSA.UmaController::start float ___start_3; // System.Single CrazyMinnow.SALSA.UmaController::fullOnValue float ___fullOnValue_4; // System.Single CrazyMinnow.SALSA.UmaController::previousValue float ___previousValue_5; // System.Single CrazyMinnow.SALSA.UmaController::fracMax float ___fracMax_6; // System.Boolean CrazyMinnow.SALSA.UmaController::isInfluenced bool ___isInfluenced_7; public: inline static int32_t get_offset_of_umaUepProxy_0() { return static_cast(offsetof(UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD, ___umaUepProxy_0)); } inline UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * get_umaUepProxy_0() const { return ___umaUepProxy_0; } inline UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 ** get_address_of_umaUepProxy_0() { return &___umaUepProxy_0; } inline void set_umaUepProxy_0(UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * value) { ___umaUepProxy_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___umaUepProxy_0), (void*)value); } inline static int32_t get_offset_of_poseIndex_1() { return static_cast(offsetof(UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD, ___poseIndex_1)); } inline int32_t get_poseIndex_1() const { return ___poseIndex_1; } inline int32_t* get_address_of_poseIndex_1() { return &___poseIndex_1; } inline void set_poseIndex_1(int32_t value) { ___poseIndex_1 = value; } inline static int32_t get_offset_of_min_2() { return static_cast(offsetof(UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD, ___min_2)); } inline float get_min_2() const { return ___min_2; } inline float* get_address_of_min_2() { return &___min_2; } inline void set_min_2(float value) { ___min_2 = value; } inline static int32_t get_offset_of_start_3() { return static_cast(offsetof(UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD, ___start_3)); } inline float get_start_3() const { return ___start_3; } inline float* get_address_of_start_3() { return &___start_3; } inline void set_start_3(float value) { ___start_3 = value; } inline static int32_t get_offset_of_fullOnValue_4() { return static_cast(offsetof(UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD, ___fullOnValue_4)); } inline float get_fullOnValue_4() const { return ___fullOnValue_4; } inline float* get_address_of_fullOnValue_4() { return &___fullOnValue_4; } inline void set_fullOnValue_4(float value) { ___fullOnValue_4 = value; } inline static int32_t get_offset_of_previousValue_5() { return static_cast(offsetof(UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD, ___previousValue_5)); } inline float get_previousValue_5() const { return ___previousValue_5; } inline float* get_address_of_previousValue_5() { return &___previousValue_5; } inline void set_previousValue_5(float value) { ___previousValue_5 = value; } inline static int32_t get_offset_of_fracMax_6() { return static_cast(offsetof(UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD, ___fracMax_6)); } inline float get_fracMax_6() const { return ___fracMax_6; } inline float* get_address_of_fracMax_6() { return &___fracMax_6; } inline void set_fracMax_6(float value) { ___fracMax_6 = value; } inline static int32_t get_offset_of_isInfluenced_7() { return static_cast(offsetof(UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD, ___isInfluenced_7)); } inline bool get_isInfluenced_7() const { return ___isInfluenced_7; } inline bool* get_address_of_isInfluenced_7() { return &___isInfluenced_7; } inline void set_isInfluenced_7(bool value) { ___isInfluenced_7 = 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 { }; // UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { }; // Native definition for COM marshalling of UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { }; // CrazyMinnow.SALSA.Emoter/<>c struct U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33 : public RuntimeObject { public: public: }; // CrazyMinnow.SALSA.QueueProcessor/QueueOoO struct QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF : public RuntimeObject { public: // System.String CrazyMinnow.SALSA.QueueProcessor/QueueOoO::name String_t* ___name_0; // System.Int32 CrazyMinnow.SALSA.QueueProcessor/QueueOoO::hierarchyLevel int32_t ___hierarchyLevel_1; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.QueueProcessor/QueueOoO::queue List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * ___queue_2; // System.Collections.Generic.Queue`1 CrazyMinnow.SALSA.QueueProcessor/QueueOoO::trailingMaxCount Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F * ___trailingMaxCount_3; // System.Int32 CrazyMinnow.SALSA.QueueProcessor/QueueOoO::maxQueueCount int32_t ___maxQueueCount_4; // System.Int32 CrazyMinnow.SALSA.QueueProcessor/QueueOoO::minQueueCount int32_t ___minQueueCount_5; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_hierarchyLevel_1() { return static_cast(offsetof(QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF, ___hierarchyLevel_1)); } inline int32_t get_hierarchyLevel_1() const { return ___hierarchyLevel_1; } inline int32_t* get_address_of_hierarchyLevel_1() { return &___hierarchyLevel_1; } inline void set_hierarchyLevel_1(int32_t value) { ___hierarchyLevel_1 = value; } inline static int32_t get_offset_of_queue_2() { return static_cast(offsetof(QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF, ___queue_2)); } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * get_queue_2() const { return ___queue_2; } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD ** get_address_of_queue_2() { return &___queue_2; } inline void set_queue_2(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * value) { ___queue_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___queue_2), (void*)value); } inline static int32_t get_offset_of_trailingMaxCount_3() { return static_cast(offsetof(QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF, ___trailingMaxCount_3)); } inline Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F * get_trailingMaxCount_3() const { return ___trailingMaxCount_3; } inline Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F ** get_address_of_trailingMaxCount_3() { return &___trailingMaxCount_3; } inline void set_trailingMaxCount_3(Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F * value) { ___trailingMaxCount_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___trailingMaxCount_3), (void*)value); } inline static int32_t get_offset_of_maxQueueCount_4() { return static_cast(offsetof(QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF, ___maxQueueCount_4)); } inline int32_t get_maxQueueCount_4() const { return ___maxQueueCount_4; } inline int32_t* get_address_of_maxQueueCount_4() { return &___maxQueueCount_4; } inline void set_maxQueueCount_4(int32_t value) { ___maxQueueCount_4 = value; } inline static int32_t get_offset_of_minQueueCount_5() { return static_cast(offsetof(QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF, ___minQueueCount_5)); } inline int32_t get_minQueueCount_5() const { return ___minQueueCount_5; } inline int32_t* get_address_of_minQueueCount_5() { return &___minQueueCount_5; } inline void set_minQueueCount_5(int32_t value) { ___minQueueCount_5 = value; } }; // CrazyMinnow.SALSA.Salsa/<>c struct U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2 : public RuntimeObject { public: public: }; // CrazyMinnow.SALSA.Salsa/d__147 struct U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91 : public RuntimeObject { public: // System.Int32 CrazyMinnow.SALSA.Salsa/d__147::<>1__state int32_t ___U3CU3E1__state_0; // System.Object CrazyMinnow.SALSA.Salsa/d__147::<>2__current RuntimeObject * ___U3CU3E2__current_1; // CrazyMinnow.SALSA.Salsa CrazyMinnow.SALSA.Salsa/d__147::<>4__this Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91, ___U3CU3E4__this_2)); } inline Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // CrazyMinnow.SALSA.Salsa/d__155 struct U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498 : public RuntimeObject { public: // System.Int32 CrazyMinnow.SALSA.Salsa/d__155::<>1__state int32_t ___U3CU3E1__state_0; // System.Object CrazyMinnow.SALSA.Salsa/d__155::<>2__current RuntimeObject * ___U3CU3E2__current_1; // CrazyMinnow.SALSA.Salsa CrazyMinnow.SALSA.Salsa/d__155::<>4__this Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * ___U3CU3E4__this_2; // System.Boolean CrazyMinnow.SALSA.Salsa/d__155::5__2 bool ___U3CisConfigReadyU3E5__2_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498, ___U3CU3E4__this_2)); } inline Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CisConfigReadyU3E5__2_3() { return static_cast(offsetof(U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498, ___U3CisConfigReadyU3E5__2_3)); } inline bool get_U3CisConfigReadyU3E5__2_3() const { return ___U3CisConfigReadyU3E5__2_3; } inline bool* get_address_of_U3CisConfigReadyU3E5__2_3() { return &___U3CisConfigReadyU3E5__2_3; } inline void set_U3CisConfigReadyU3E5__2_3(bool value) { ___U3CisConfigReadyU3E5__2_3 = value; } }; // CrazyMinnow.SALSA.UmaUepProxy/UepPose struct UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 : public RuntimeObject { public: // System.String CrazyMinnow.SALSA.UmaUepProxy/UepPose::name String_t* ___name_0; // System.Boolean CrazyMinnow.SALSA.UmaUepProxy/UepPose::biDirectional bool ___biDirectional_1; // System.Single CrazyMinnow.SALSA.UmaUepProxy/UepPose::amount float ___amount_2; // System.Boolean CrazyMinnow.SALSA.UmaUepProxy/UepPose::isDirty bool ___isDirty_3; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_biDirectional_1() { return static_cast(offsetof(UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92, ___biDirectional_1)); } inline bool get_biDirectional_1() const { return ___biDirectional_1; } inline bool* get_address_of_biDirectional_1() { return &___biDirectional_1; } inline void set_biDirectional_1(bool value) { ___biDirectional_1 = value; } inline static int32_t get_offset_of_amount_2() { return static_cast(offsetof(UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92, ___amount_2)); } inline float get_amount_2() const { return ___amount_2; } inline float* get_address_of_amount_2() { return &___amount_2; } inline void set_amount_2(float value) { ___amount_2 = value; } inline static int32_t get_offset_of_isDirty_3() { return static_cast(offsetof(UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92, ___isDirty_3)); } inline bool get_isDirty_3() const { return ___isDirty_3; } inline bool* get_address_of_isDirty_3() { return &___isDirty_3; } inline void set_isDirty_3(bool value) { ___isDirty_3 = value; } }; // CrazyMinnow.SALSA.UmaUepProxy/UepPoseDef struct UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 : public RuntimeObject { public: // System.String CrazyMinnow.SALSA.UmaUepProxy/UepPoseDef::name String_t* ___name_0; // System.Boolean CrazyMinnow.SALSA.UmaUepProxy/UepPoseDef::isBidirectional bool ___isBidirectional_1; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_isBidirectional_1() { return static_cast(offsetof(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269, ___isBidirectional_1)); } inline bool get_isBidirectional_1() const { return ___isBidirectional_1; } inline bool* get_address_of_isBidirectional_1() { return &___isBidirectional_1; } inline void set_isBidirectional_1(bool value) { ___isBidirectional_1 = value; } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA, ___list_0)); } inline List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * get_list_0() const { return ___list_0; } inline List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA, ___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_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA, ___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_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA, ___current_3)); } inline ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * get_current_3() const { return ___current_3; } inline ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29, ___list_0)); } inline List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * get_list_0() const { return ___list_0; } inline List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29, ___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_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29, ___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_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29, ___current_3)); } inline LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * get_current_3() const { return ___current_3; } inline LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83, ___list_0)); } inline List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * get_list_0() const { return ___list_0; } inline List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83, ___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_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83, ___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_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83, ___current_3)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_current_3() const { return ___current_3; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current RuntimeObject * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___list_0)); } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * get_list_0() const { return ___list_0; } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___current_3)); } inline RuntimeObject * get_current_3() const { return ___current_3; } inline RuntimeObject ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(RuntimeObject * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_tAF21232E555CF5021E1A738792635D00943518BE { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_tAF21232E555CF5021E1A738792635D00943518BE, ___list_0)); } inline List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * get_list_0() const { return ___list_0; } inline List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_tAF21232E555CF5021E1A738792635D00943518BE, ___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_tAF21232E555CF5021E1A738792635D00943518BE, ___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_tAF21232E555CF5021E1A738792635D00943518BE, ___current_3)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_current_3() const { return ___current_3; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0, ___list_0)); } inline List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * get_list_0() const { return ___list_0; } inline List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0, ___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_tEC1AA3333CF333A2669F76FFBB5631F890B075E0, ___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_tEC1AA3333CF333A2669F76FFBB5631F890B075E0, ___current_3)); } inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * get_current_3() const { return ___current_3; } inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935, ___list_0)); } inline List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * get_list_0() const { return ___list_0; } inline List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935, ___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_tA6E798C632B7001D6834A42C0EC39DC6E8210935, ___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_tA6E798C632B7001D6834A42C0EC39DC6E8210935, ___current_3)); } inline QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * get_current_3() const { return ___current_3; } inline QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // CrazyMinnow.SALSA.AnimatorController struct AnimatorController_t9D96F6465E88F19768634AFD260141CF23B77E01 : public GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 { public: // UnityEngine.Animator CrazyMinnow.SALSA.AnimatorController::controller Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * ___controller_4; // UnityEngine.AnimatorControllerParameter CrazyMinnow.SALSA.AnimatorController::animatorParameter AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE * ___animatorParameter_5; // System.Boolean CrazyMinnow.SALSA.AnimatorController::isTriggerBiDirectional bool ___isTriggerBiDirectional_6; // System.Int32 CrazyMinnow.SALSA.AnimatorController::parameterIndex int32_t ___parameterIndex_7; // System.Single CrazyMinnow.SALSA.AnimatorController::fracMax float ___fracMax_8; public: inline static int32_t get_offset_of_controller_4() { return static_cast(offsetof(AnimatorController_t9D96F6465E88F19768634AFD260141CF23B77E01, ___controller_4)); } inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * get_controller_4() const { return ___controller_4; } inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 ** get_address_of_controller_4() { return &___controller_4; } inline void set_controller_4(Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * value) { ___controller_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___controller_4), (void*)value); } inline static int32_t get_offset_of_animatorParameter_5() { return static_cast(offsetof(AnimatorController_t9D96F6465E88F19768634AFD260141CF23B77E01, ___animatorParameter_5)); } inline AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE * get_animatorParameter_5() const { return ___animatorParameter_5; } inline AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE ** get_address_of_animatorParameter_5() { return &___animatorParameter_5; } inline void set_animatorParameter_5(AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE * value) { ___animatorParameter_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___animatorParameter_5), (void*)value); } inline static int32_t get_offset_of_isTriggerBiDirectional_6() { return static_cast(offsetof(AnimatorController_t9D96F6465E88F19768634AFD260141CF23B77E01, ___isTriggerBiDirectional_6)); } inline bool get_isTriggerBiDirectional_6() const { return ___isTriggerBiDirectional_6; } inline bool* get_address_of_isTriggerBiDirectional_6() { return &___isTriggerBiDirectional_6; } inline void set_isTriggerBiDirectional_6(bool value) { ___isTriggerBiDirectional_6 = value; } inline static int32_t get_offset_of_parameterIndex_7() { return static_cast(offsetof(AnimatorController_t9D96F6465E88F19768634AFD260141CF23B77E01, ___parameterIndex_7)); } inline int32_t get_parameterIndex_7() const { return ___parameterIndex_7; } inline int32_t* get_address_of_parameterIndex_7() { return &___parameterIndex_7; } inline void set_parameterIndex_7(int32_t value) { ___parameterIndex_7 = value; } inline static int32_t get_offset_of_fracMax_8() { return static_cast(offsetof(AnimatorController_t9D96F6465E88F19768634AFD260141CF23B77E01, ___fracMax_8)); } inline float get_fracMax_8() const { return ___fracMax_8; } inline float* get_address_of_fracMax_8() { return &___fracMax_8; } inline void set_fracMax_8(float value) { ___fracMax_8 = 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; } }; // UnityEngine.Color struct Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 { public: // System.Single UnityEngine.Color::r float ___r_0; // System.Single UnityEngine.Color::g float ___g_1; // System.Single UnityEngine.Color::b float ___b_2; // System.Single UnityEngine.Color::a float ___a_3; public: inline static int32_t get_offset_of_r_0() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___r_0)); } inline float get_r_0() const { return ___r_0; } inline float* get_address_of_r_0() { return &___r_0; } inline void set_r_0(float value) { ___r_0 = value; } inline static int32_t get_offset_of_g_1() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___g_1)); } inline float get_g_1() const { return ___g_1; } inline float* get_address_of_g_1() { return &___g_1; } inline void set_g_1(float value) { ___g_1 = value; } inline static int32_t get_offset_of_b_2() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___b_2)); } inline float get_b_2() const { return ___b_2; } inline float* get_address_of_b_2() { return &___b_2; } inline void set_b_2(float value) { ___b_2 = value; } inline static int32_t get_offset_of_a_3() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___a_3)); } inline float get_a_3() const { return ___a_3; } inline float* get_address_of_a_3() { return &___a_3; } inline void set_a_3(float value) { ___a_3 = value; } }; // System.Double struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; // 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 { }; // CrazyMinnow.SALSA.EventController struct EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4 : public GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 { public: // CrazyMinnow.SALSA.EventController/EventControllerNotificationArgs CrazyMinnow.SALSA.EventController::_eventControllerArgs EventControllerNotificationArgs_t899F6A19A15FACB072401967EB3315408810A603 * ____eventControllerArgs_8; public: inline static int32_t get_offset_of__eventControllerArgs_8() { return static_cast(offsetof(EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4, ____eventControllerArgs_8)); } inline EventControllerNotificationArgs_t899F6A19A15FACB072401967EB3315408810A603 * get__eventControllerArgs_8() const { return ____eventControllerArgs_8; } inline EventControllerNotificationArgs_t899F6A19A15FACB072401967EB3315408810A603 ** get_address_of__eventControllerArgs_8() { return &____eventControllerArgs_8; } inline void set__eventControllerArgs_8(EventControllerNotificationArgs_t899F6A19A15FACB072401967EB3315408810A603 * value) { ____eventControllerArgs_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____eventControllerArgs_8), (void*)value); } }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.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; } }; // 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; } }; // System.Single struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // UnityEngine.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; } }; // UnityEngine.Vector4 struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 { public: // System.Single UnityEngine.Vector4::x float ___x_1; // System.Single UnityEngine.Vector4::y float ___y_2; // System.Single UnityEngine.Vector4::z float ___z_3; // System.Single UnityEngine.Vector4::w float ___w_4; public: inline static int32_t get_offset_of_x_1() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___x_1)); } inline float get_x_1() const { return ___x_1; } inline float* get_address_of_x_1() { return &___x_1; } inline void set_x_1(float value) { ___x_1 = value; } inline static int32_t get_offset_of_y_2() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___y_2)); } inline float get_y_2() const { return ___y_2; } inline float* get_address_of_y_2() { return &___y_2; } inline void set_y_2(float value) { ___y_2 = value; } inline static int32_t get_offset_of_z_3() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___z_3)); } inline float get_z_3() const { return ___z_3; } inline float* get_address_of_z_3() { return &___z_3; } inline void set_z_3(float value) { ___z_3 = value; } inline static int32_t get_offset_of_w_4() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___w_4)); } inline float get_w_4() const { return ___w_4; } inline float* get_address_of_w_4() { return &___w_4; } inline void set_w_4(float value) { ___w_4 = value; } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // CrazyMinnow.SALSA.EventController/EventControllerNotificationArgs struct EventControllerNotificationArgs_t899F6A19A15FACB072401967EB3315408810A603 : public EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA { public: // System.String CrazyMinnow.SALSA.EventController/EventControllerNotificationArgs::eventName String_t* ___eventName_1; public: inline static int32_t get_offset_of_eventName_1() { return static_cast(offsetof(EventControllerNotificationArgs_t899F6A19A15FACB072401967EB3315408810A603, ___eventName_1)); } inline String_t* get_eventName_1() const { return ___eventName_1; } inline String_t** get_address_of_eventName_1() { return &___eventName_1; } inline void set_eventName_1(String_t* value) { ___eventName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___eventName_1), (void*)value); } }; // CrazyMinnow.SALSA.QueueProcessor/QueueProcessorNotificationArgs struct QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 : public EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA { public: // CrazyMinnow.SALSA.QueueProcessor CrazyMinnow.SALSA.QueueProcessor/QueueProcessorNotificationArgs::queueProcesor QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * ___queueProcesor_1; public: inline static int32_t get_offset_of_queueProcesor_1() { return static_cast(offsetof(QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470, ___queueProcesor_1)); } inline QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * get_queueProcesor_1() const { return ___queueProcesor_1; } inline QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 ** get_address_of_queueProcesor_1() { return &___queueProcesor_1; } inline void set_queueProcesor_1(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * value) { ___queueProcesor_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___queueProcesor_1), (void*)value); } }; // CrazyMinnow.SALSA.Salsa/SalsaNotificationArgs struct SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F : public EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA { public: // CrazyMinnow.SALSA.Salsa CrazyMinnow.SALSA.Salsa/SalsaNotificationArgs::salsaInstance Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * ___salsaInstance_1; // System.Int32 CrazyMinnow.SALSA.Salsa/SalsaNotificationArgs::visemeTrigger int32_t ___visemeTrigger_2; public: inline static int32_t get_offset_of_salsaInstance_1() { return static_cast(offsetof(SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F, ___salsaInstance_1)); } inline Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * get_salsaInstance_1() const { return ___salsaInstance_1; } inline Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B ** get_address_of_salsaInstance_1() { return &___salsaInstance_1; } inline void set_salsaInstance_1(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * value) { ___salsaInstance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___salsaInstance_1), (void*)value); } inline static int32_t get_offset_of_visemeTrigger_2() { return static_cast(offsetof(SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F, ___visemeTrigger_2)); } inline int32_t get_visemeTrigger_2() const { return ___visemeTrigger_2; } inline int32_t* get_address_of_visemeTrigger_2() { return &___visemeTrigger_2; } inline void set_visemeTrigger_2(int32_t value) { ___visemeTrigger_2 = value; } }; // UnityEngine.AnimatorControllerParameterType struct AnimatorControllerParameterType_tAD9F29F9714D48F62AC8F803EA4340971F8C69AE { public: // System.Int32 UnityEngine.AnimatorControllerParameterType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(AnimatorControllerParameterType_tAD9F29F9714D48F62AC8F803EA4340971F8C69AE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.BindingFlags struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF { public: // System.IntPtr UnityEngine.Coroutine::m_Ptr intptr_t ___m_Ptr_0; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast(offsetof(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7, ___m_Ptr_0)); } inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(intptr_t value) { ___m_Ptr_0 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_pinvoke : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { intptr_t ___m_Ptr_0; }; // Native definition for COM marshalling of UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_com : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { intptr_t ___m_Ptr_0; }; // 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; }; // 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); } }; // 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; }; // 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; } }; // 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; }; // CrazyMinnow.SALSA.ProcDirection struct ProcDirection_tC62B97B09CB51ED733151F401AA2BB9EBD161EA6 : public RuntimeObject { public: // UnityEngine.Vector3 CrazyMinnow.SALSA.ProcDirection::vec Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___vec_0; // UnityEngine.Quaternion CrazyMinnow.SALSA.ProcDirection::quat Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___quat_1; public: inline static int32_t get_offset_of_vec_0() { return static_cast(offsetof(ProcDirection_tC62B97B09CB51ED733151F401AA2BB9EBD161EA6, ___vec_0)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_vec_0() const { return ___vec_0; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_vec_0() { return &___vec_0; } inline void set_vec_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___vec_0 = value; } inline static int32_t get_offset_of_quat_1() { return static_cast(offsetof(ProcDirection_tC62B97B09CB51ED733151F401AA2BB9EBD161EA6, ___quat_1)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_quat_1() const { return ___quat_1; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_quat_1() { return &___quat_1; } inline void set_quat_1(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___quat_1 = value; } }; // CrazyMinnow.SALSA.ProcLLPair struct ProcLLPair_tB4838AECC69252E841D4A6D3C544BB2BA4AE27F5 : public RuntimeObject { public: // UnityEngine.Vector3 CrazyMinnow.SALSA.ProcLLPair::pos Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___pos_0; // System.Int32 CrazyMinnow.SALSA.ProcLLPair::pairId int32_t ___pairId_1; public: inline static int32_t get_offset_of_pos_0() { return static_cast(offsetof(ProcLLPair_tB4838AECC69252E841D4A6D3C544BB2BA4AE27F5, ___pos_0)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_pos_0() const { return ___pos_0; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_pos_0() { return &___pos_0; } inline void set_pos_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___pos_0 = value; } inline static int32_t get_offset_of_pairId_1() { return static_cast(offsetof(ProcLLPair_tB4838AECC69252E841D4A6D3C544BB2BA4AE27F5, ___pairId_1)); } inline int32_t get_pairId_1() const { return ___pairId_1; } inline int32_t* get_address_of_pairId_1() { return &___pairId_1; } inline void set_pairId_1(int32_t value) { ___pairId_1 = 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; } }; // CrazyMinnow.SALSA.TformBase struct TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 { public: // UnityEngine.Vector3 CrazyMinnow.SALSA.TformBase::pos Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___pos_0; // UnityEngine.Quaternion CrazyMinnow.SALSA.TformBase::rot Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rot_1; // UnityEngine.Vector3 CrazyMinnow.SALSA.TformBase::scale Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___scale_2; public: inline static int32_t get_offset_of_pos_0() { return static_cast(offsetof(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4, ___pos_0)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_pos_0() const { return ___pos_0; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_pos_0() { return &___pos_0; } inline void set_pos_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___pos_0 = value; } inline static int32_t get_offset_of_rot_1() { return static_cast(offsetof(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4, ___rot_1)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_rot_1() const { return ___rot_1; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_rot_1() { return &___rot_1; } inline void set_rot_1(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___rot_1 = value; } inline static int32_t get_offset_of_scale_2() { return static_cast(offsetof(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4, ___scale_2)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_scale_2() const { return ___scale_2; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_scale_2() { return &___scale_2; } inline void set_scale_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___scale_2 = value; } }; // CrazyMinnow.SALSA.EmoteRepeater/StartDelay struct StartDelay_t0D8F76FCAD1BD21A8E4E62447DCA9808E87230CC { public: // System.Int32 CrazyMinnow.SALSA.EmoteRepeater/StartDelay::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(StartDelay_t0D8F76FCAD1BD21A8E4E62447DCA9808E87230CC, ___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; } }; // CrazyMinnow.SALSA.Emoter/PoolType struct PoolType_t80A2482AE4B7143D033469541DE32CD7436B49EF { public: // System.Int32 CrazyMinnow.SALSA.Emoter/PoolType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(PoolType_t80A2482AE4B7143D033469541DE32CD7436B49EF, ___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; } }; // CrazyMinnow.SALSA.ExpressionComponent/ControlType struct ControlType_tA6D499445DA9948C2BA432E75183CD68BD1EE4A7 { public: // System.Int32 CrazyMinnow.SALSA.ExpressionComponent/ControlType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ControlType_tA6D499445DA9948C2BA432E75183CD68BD1EE4A7, ___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; } }; // CrazyMinnow.SALSA.ExpressionComponent/DirectionType struct DirectionType_t5712033C63B6FC16CBDCBA1C5EBDADCAE177D45D { public: // System.Int32 CrazyMinnow.SALSA.ExpressionComponent/DirectionType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DirectionType_t5712033C63B6FC16CBDCBA1C5EBDADCAE177D45D, ___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; } }; // CrazyMinnow.SALSA.ExpressionComponent/EmoteControlType struct EmoteControlType_t4C9A2D851AF040372A10AAD959259595D58810E7 { public: // System.Int32 CrazyMinnow.SALSA.ExpressionComponent/EmoteControlType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EmoteControlType_t4C9A2D851AF040372A10AAD959259595D58810E7, ___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; } }; // CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler struct ExpressionHandler_t68457098371B540C73EBFD993EB1D83407A5792B { public: // System.Int32 CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ExpressionHandler_t68457098371B540C73EBFD993EB1D83407A5792B, ___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; } }; // CrazyMinnow.SALSA.ExpressionComponent/ExpressionType struct ExpressionType_tED068A12BED144DC99D095F0DDF9019E16CFFAF7 { public: // System.Int32 CrazyMinnow.SALSA.ExpressionComponent/ExpressionType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ExpressionType_tED068A12BED144DC99D095F0DDF9019E16CFFAF7, ___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; } }; // CrazyMinnow.SALSA.ExpressionComponent/EyesControlType struct EyesControlType_t4F6A1616CBDD5DFE886AC2084525EFF593138830 { public: // System.Int32 CrazyMinnow.SALSA.ExpressionComponent/EyesControlType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EyesControlType_t4F6A1616CBDD5DFE886AC2084525EFF593138830, ___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; } }; // CrazyMinnow.SALSA.ExpressionComponent/LipsyncControlType struct LipsyncControlType_t9A2F776C78EC5ECA6438837DF1A89310E998C5F1 { public: // System.Int32 CrazyMinnow.SALSA.ExpressionComponent/LipsyncControlType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(LipsyncControlType_t9A2F776C78EC5ECA6438837DF1A89310E998C5F1, ___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; } }; // CrazyMinnow.SALSA.Eyes/ClampAxes struct ClampAxes_tD5A976EE2E98DDF9AD5F76B7332657E6DC1D0C31 { public: // System.Int32 CrazyMinnow.SALSA.Eyes/ClampAxes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ClampAxes_tD5A976EE2E98DDF9AD5F76B7332657E6DC1D0C31, ___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; } }; // CrazyMinnow.SALSA.Eyes/EyeTemplates struct EyeTemplates_t0DAF127D5B2ECBAFBD629ED2F9E8A01EDF982FB5 { public: // System.Int32 CrazyMinnow.SALSA.Eyes/EyeTemplates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EyeTemplates_t0DAF127D5B2ECBAFBD629ED2F9E8A01EDF982FB5, ___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; } }; // CrazyMinnow.SALSA.Eyes/EyelidSelection struct EyelidSelection_t342A3A9D22D5B0196EE656579BB002DF349CD885 { public: // System.Int32 CrazyMinnow.SALSA.Eyes/EyelidSelection::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EyelidSelection_t342A3A9D22D5B0196EE656579BB002DF349CD885, ___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; } }; // CrazyMinnow.SALSA.Eyes/EyelidTemplates struct EyelidTemplates_t5D05E2553F134079DC97CE89D8A1CC375D4DE130 { public: // System.Int32 CrazyMinnow.SALSA.Eyes/EyelidTemplates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EyelidTemplates_t5D05E2553F134079DC97CE89D8A1CC375D4DE130, ___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; } }; // CrazyMinnow.SALSA.Eyes/FlipType struct FlipType_tE3D4F32E43C1A31E805FCAB29D673AE5E76EB643 { public: // System.Int32 CrazyMinnow.SALSA.Eyes/FlipType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FlipType_tE3D4F32E43C1A31E805FCAB29D673AE5E76EB643, ___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; } }; // CrazyMinnow.SALSA.Eyes/HeadTemplates struct HeadTemplates_t9FAE498A37A5A78236DBEDA1BFC0266A219CACD4 { public: // System.Int32 CrazyMinnow.SALSA.Eyes/HeadTemplates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HeadTemplates_t9FAE498A37A5A78236DBEDA1BFC0266A219CACD4, ___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; } }; // CrazyMinnow.SALSA.Eyes/SectorCount struct SectorCount_t80B3A36310162776485DF661C6719EA7542820EC { public: // System.Int32 CrazyMinnow.SALSA.Eyes/SectorCount::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SectorCount_t80B3A36310162776485DF661C6719EA7542820EC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Image/FillMethod struct FillMethod_tC37E5898D113A8FBF25A6AB6FBA451CC51E211E2 { public: // System.Int32 UnityEngine.UI.Image/FillMethod::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FillMethod_tC37E5898D113A8FBF25A6AB6FBA451CC51E211E2, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Image/Type struct Type_tDCB08AB7425CAB70C1E46CC341F877423B5A5E12 { public: // System.Int32 UnityEngine.UI.Image/Type::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Type_tDCB08AB7425CAB70C1E46CC341F877423B5A5E12, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // CrazyMinnow.SALSA.LerpEasings/EasingType struct EasingType_t5884FF33196AE6FE96EA7DC352E1051C49ABE29E { public: // System.Int32 CrazyMinnow.SALSA.LerpEasings/EasingType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EasingType_t5884FF33196AE6FE96EA7DC352E1051C49ABE29E, ___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; } }; // CrazyMinnow.SALSA.Switcher/OnState struct OnState_t2C1FCA4F1CCC93F5CCD2E80DD37D49B96D7C26F7 { public: // System.Int32 CrazyMinnow.SALSA.Switcher/OnState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(OnState_t2C1FCA4F1CCC93F5CCD2E80DD37D49B96D7C26F7, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.AnimatorControllerParameter struct AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE : public RuntimeObject { public: // System.String UnityEngine.AnimatorControllerParameter::m_Name String_t* ___m_Name_0; // UnityEngine.AnimatorControllerParameterType UnityEngine.AnimatorControllerParameter::m_Type int32_t ___m_Type_1; // System.Single UnityEngine.AnimatorControllerParameter::m_DefaultFloat float ___m_DefaultFloat_2; // System.Int32 UnityEngine.AnimatorControllerParameter::m_DefaultInt int32_t ___m_DefaultInt_3; // System.Boolean UnityEngine.AnimatorControllerParameter::m_DefaultBool bool ___m_DefaultBool_4; public: inline static int32_t get_offset_of_m_Name_0() { return static_cast(offsetof(AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE, ___m_Name_0)); } inline String_t* get_m_Name_0() const { return ___m_Name_0; } inline String_t** get_address_of_m_Name_0() { return &___m_Name_0; } inline void set_m_Name_0(String_t* value) { ___m_Name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Name_0), (void*)value); } inline static int32_t get_offset_of_m_Type_1() { return static_cast(offsetof(AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE, ___m_Type_1)); } inline int32_t get_m_Type_1() const { return ___m_Type_1; } inline int32_t* get_address_of_m_Type_1() { return &___m_Type_1; } inline void set_m_Type_1(int32_t value) { ___m_Type_1 = value; } inline static int32_t get_offset_of_m_DefaultFloat_2() { return static_cast(offsetof(AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE, ___m_DefaultFloat_2)); } inline float get_m_DefaultFloat_2() const { return ___m_DefaultFloat_2; } inline float* get_address_of_m_DefaultFloat_2() { return &___m_DefaultFloat_2; } inline void set_m_DefaultFloat_2(float value) { ___m_DefaultFloat_2 = value; } inline static int32_t get_offset_of_m_DefaultInt_3() { return static_cast(offsetof(AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE, ___m_DefaultInt_3)); } inline int32_t get_m_DefaultInt_3() const { return ___m_DefaultInt_3; } inline int32_t* get_address_of_m_DefaultInt_3() { return &___m_DefaultInt_3; } inline void set_m_DefaultInt_3(int32_t value) { ___m_DefaultInt_3 = value; } inline static int32_t get_offset_of_m_DefaultBool_4() { return static_cast(offsetof(AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE, ___m_DefaultBool_4)); } inline bool get_m_DefaultBool_4() const { return ___m_DefaultBool_4; } inline bool* get_address_of_m_DefaultBool_4() { return &___m_DefaultBool_4; } inline void set_m_DefaultBool_4(bool value) { ___m_DefaultBool_4 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.AnimatorControllerParameter struct AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE_marshaled_pinvoke { char* ___m_Name_0; int32_t ___m_Type_1; float ___m_DefaultFloat_2; int32_t ___m_DefaultInt_3; int32_t ___m_DefaultBool_4; }; // Native definition for COM marshalling of UnityEngine.AnimatorControllerParameter struct AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE_marshaled_com { Il2CppChar* ___m_Name_0; int32_t ___m_Type_1; float ___m_DefaultFloat_2; int32_t ___m_DefaultInt_3; int32_t ___m_DefaultBool_4; }; // UnityEngine.AudioClip struct AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: // UnityEngine.AudioClip/PCMReaderCallback UnityEngine.AudioClip::m_PCMReaderCallback PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B * ___m_PCMReaderCallback_4; // UnityEngine.AudioClip/PCMSetPositionCallback UnityEngine.AudioClip::m_PCMSetPositionCallback PCMSetPositionCallback_tBDD99E7C0697687F1E7B06CDD5DE444A3709CF4C * ___m_PCMSetPositionCallback_5; public: inline static int32_t get_offset_of_m_PCMReaderCallback_4() { return static_cast(offsetof(AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE, ___m_PCMReaderCallback_4)); } inline PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B * get_m_PCMReaderCallback_4() const { return ___m_PCMReaderCallback_4; } inline PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B ** get_address_of_m_PCMReaderCallback_4() { return &___m_PCMReaderCallback_4; } inline void set_m_PCMReaderCallback_4(PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B * value) { ___m_PCMReaderCallback_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_PCMReaderCallback_4), (void*)value); } inline static int32_t get_offset_of_m_PCMSetPositionCallback_5() { return static_cast(offsetof(AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE, ___m_PCMSetPositionCallback_5)); } inline PCMSetPositionCallback_tBDD99E7C0697687F1E7B06CDD5DE444A3709CF4C * get_m_PCMSetPositionCallback_5() const { return ___m_PCMSetPositionCallback_5; } inline PCMSetPositionCallback_tBDD99E7C0697687F1E7B06CDD5DE444A3709CF4C ** get_address_of_m_PCMSetPositionCallback_5() { return &___m_PCMSetPositionCallback_5; } inline void set_m_PCMSetPositionCallback_5(PCMSetPositionCallback_tBDD99E7C0697687F1E7B06CDD5DE444A3709CF4C * value) { ___m_PCMSetPositionCallback_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_PCMSetPositionCallback_5), (void*)value); } }; // CrazyMinnow.SALSA.BoneController struct BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C : public RuntimeObject { public: // UnityEngine.Transform CrazyMinnow.SALSA.BoneController::bone Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___bone_0; // CrazyMinnow.SALSA.TformBase CrazyMinnow.SALSA.BoneController::min TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___min_1; // CrazyMinnow.SALSA.TformBase CrazyMinnow.SALSA.BoneController::max TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___max_2; // System.Boolean CrazyMinnow.SALSA.BoneController::_useConstraintPos bool ____useConstraintPos_3; // System.Boolean CrazyMinnow.SALSA.BoneController::_useConstraintRot bool ____useConstraintRot_4; // System.Boolean CrazyMinnow.SALSA.BoneController::_useConstraintScl bool ____useConstraintScl_5; // System.Boolean CrazyMinnow.SALSA.BoneController::_useOffsetCalc bool ____useOffsetCalc_6; // System.Boolean CrazyMinnow.SALSA.BoneController::_useOffsetFollow bool ____useOffsetFollow_7; // System.Boolean CrazyMinnow.SALSA.BoneController::_isPersistent bool ____isPersistent_8; // System.Boolean CrazyMinnow.SALSA.BoneController::isInfluenced bool ___isInfluenced_9; // System.Boolean CrazyMinnow.SALSA.BoneController::isFracDirty bool ___isFracDirty_10; // System.Single CrazyMinnow.SALSA.BoneController::appliedFrac float ___appliedFrac_11; // CrazyMinnow.SALSA.TformBase CrazyMinnow.SALSA.BoneController::fracMax TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___fracMax_12; // CrazyMinnow.SALSA.TformBase CrazyMinnow.SALSA.BoneController::fracOffset TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___fracOffset_13; // CrazyMinnow.SALSA.TformBase CrazyMinnow.SALSA.BoneController::start TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___start_14; // CrazyMinnow.SALSA.TformBase CrazyMinnow.SALSA.BoneController::previous TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___previous_15; // CrazyMinnow.SALSA.TformBase CrazyMinnow.SALSA.BoneController::offset TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___offset_16; public: inline static int32_t get_offset_of_bone_0() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ___bone_0)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_bone_0() const { return ___bone_0; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_bone_0() { return &___bone_0; } inline void set_bone_0(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___bone_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___bone_0), (void*)value); } inline static int32_t get_offset_of_min_1() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ___min_1)); } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 get_min_1() const { return ___min_1; } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * get_address_of_min_1() { return &___min_1; } inline void set_min_1(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 value) { ___min_1 = value; } inline static int32_t get_offset_of_max_2() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ___max_2)); } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 get_max_2() const { return ___max_2; } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * get_address_of_max_2() { return &___max_2; } inline void set_max_2(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 value) { ___max_2 = value; } inline static int32_t get_offset_of__useConstraintPos_3() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ____useConstraintPos_3)); } inline bool get__useConstraintPos_3() const { return ____useConstraintPos_3; } inline bool* get_address_of__useConstraintPos_3() { return &____useConstraintPos_3; } inline void set__useConstraintPos_3(bool value) { ____useConstraintPos_3 = value; } inline static int32_t get_offset_of__useConstraintRot_4() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ____useConstraintRot_4)); } inline bool get__useConstraintRot_4() const { return ____useConstraintRot_4; } inline bool* get_address_of__useConstraintRot_4() { return &____useConstraintRot_4; } inline void set__useConstraintRot_4(bool value) { ____useConstraintRot_4 = value; } inline static int32_t get_offset_of__useConstraintScl_5() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ____useConstraintScl_5)); } inline bool get__useConstraintScl_5() const { return ____useConstraintScl_5; } inline bool* get_address_of__useConstraintScl_5() { return &____useConstraintScl_5; } inline void set__useConstraintScl_5(bool value) { ____useConstraintScl_5 = value; } inline static int32_t get_offset_of__useOffsetCalc_6() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ____useOffsetCalc_6)); } inline bool get__useOffsetCalc_6() const { return ____useOffsetCalc_6; } inline bool* get_address_of__useOffsetCalc_6() { return &____useOffsetCalc_6; } inline void set__useOffsetCalc_6(bool value) { ____useOffsetCalc_6 = value; } inline static int32_t get_offset_of__useOffsetFollow_7() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ____useOffsetFollow_7)); } inline bool get__useOffsetFollow_7() const { return ____useOffsetFollow_7; } inline bool* get_address_of__useOffsetFollow_7() { return &____useOffsetFollow_7; } inline void set__useOffsetFollow_7(bool value) { ____useOffsetFollow_7 = value; } inline static int32_t get_offset_of__isPersistent_8() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ____isPersistent_8)); } inline bool get__isPersistent_8() const { return ____isPersistent_8; } inline bool* get_address_of__isPersistent_8() { return &____isPersistent_8; } inline void set__isPersistent_8(bool value) { ____isPersistent_8 = value; } inline static int32_t get_offset_of_isInfluenced_9() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ___isInfluenced_9)); } inline bool get_isInfluenced_9() const { return ___isInfluenced_9; } inline bool* get_address_of_isInfluenced_9() { return &___isInfluenced_9; } inline void set_isInfluenced_9(bool value) { ___isInfluenced_9 = value; } inline static int32_t get_offset_of_isFracDirty_10() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ___isFracDirty_10)); } inline bool get_isFracDirty_10() const { return ___isFracDirty_10; } inline bool* get_address_of_isFracDirty_10() { return &___isFracDirty_10; } inline void set_isFracDirty_10(bool value) { ___isFracDirty_10 = value; } inline static int32_t get_offset_of_appliedFrac_11() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ___appliedFrac_11)); } inline float get_appliedFrac_11() const { return ___appliedFrac_11; } inline float* get_address_of_appliedFrac_11() { return &___appliedFrac_11; } inline void set_appliedFrac_11(float value) { ___appliedFrac_11 = value; } inline static int32_t get_offset_of_fracMax_12() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ___fracMax_12)); } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 get_fracMax_12() const { return ___fracMax_12; } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * get_address_of_fracMax_12() { return &___fracMax_12; } inline void set_fracMax_12(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 value) { ___fracMax_12 = value; } inline static int32_t get_offset_of_fracOffset_13() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ___fracOffset_13)); } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 get_fracOffset_13() const { return ___fracOffset_13; } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * get_address_of_fracOffset_13() { return &___fracOffset_13; } inline void set_fracOffset_13(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 value) { ___fracOffset_13 = value; } inline static int32_t get_offset_of_start_14() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ___start_14)); } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 get_start_14() const { return ___start_14; } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * get_address_of_start_14() { return &___start_14; } inline void set_start_14(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 value) { ___start_14 = value; } inline static int32_t get_offset_of_previous_15() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ___previous_15)); } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 get_previous_15() const { return ___previous_15; } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * get_address_of_previous_15() { return &___previous_15; } inline void set_previous_15(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 value) { ___previous_15 = value; } inline static int32_t get_offset_of_offset_16() { return static_cast(offsetof(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C, ___offset_16)); } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 get_offset_16() const { return ___offset_16; } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * get_address_of_offset_16() { return &___offset_16; } inline void set_offset_16(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 value) { ___offset_16 = value; } }; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // CrazyMinnow.SALSA.ControllerData struct ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 { public: // CrazyMinnow.SALSA.TformBase CrazyMinnow.SALSA.ControllerData::tformData TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___tformData_0; // System.Single CrazyMinnow.SALSA.ControllerData::floatData float ___floatData_1; public: inline static int32_t get_offset_of_tformData_0() { return static_cast(offsetof(ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771, ___tformData_0)); } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 get_tformData_0() const { return ___tformData_0; } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * get_address_of_tformData_0() { return &___tformData_0; } inline void set_tformData_0(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 value) { ___tformData_0 = value; } inline static int32_t get_offset_of_floatData_1() { return static_cast(offsetof(ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771, ___floatData_1)); } inline float get_floatData_1() const { return ___floatData_1; } inline float* get_address_of_floatData_1() { return &___floatData_1; } inline void set_floatData_1(float value) { ___floatData_1 = value; } }; // CrazyMinnow.SALSA.EmoteExpression struct EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B : public RuntimeObject { public: // CrazyMinnow.SALSA.Expression CrazyMinnow.SALSA.EmoteExpression::expData Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * ___expData_0; // System.Boolean CrazyMinnow.SALSA.EmoteExpression::isRandomEmote bool ___isRandomEmote_1; // System.Boolean CrazyMinnow.SALSA.EmoteExpression::isLipsyncEmphasisEmote bool ___isLipsyncEmphasisEmote_2; // System.Boolean CrazyMinnow.SALSA.EmoteExpression::isRepeaterEmote bool ___isRepeaterEmote_3; // System.Single CrazyMinnow.SALSA.EmoteExpression::repeaterDelay float ___repeaterDelay_4; // CrazyMinnow.SALSA.EmoteRepeater/StartDelay CrazyMinnow.SALSA.EmoteExpression::startDelay int32_t ___startDelay_5; // System.Boolean CrazyMinnow.SALSA.EmoteExpression::isPersistent bool ___isPersistent_6; // System.Boolean CrazyMinnow.SALSA.EmoteExpression::isHoldVariationExempt bool ___isHoldVariationExempt_7; // System.Boolean CrazyMinnow.SALSA.EmoteExpression::isAlwaysEmphasisEmote bool ___isAlwaysEmphasisEmote_8; // System.Boolean CrazyMinnow.SALSA.EmoteExpression::hasBeenFired bool ___hasBeenFired_9; // System.Single CrazyMinnow.SALSA.EmoteExpression::frac float ___frac_10; public: inline static int32_t get_offset_of_expData_0() { return static_cast(offsetof(EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B, ___expData_0)); } inline Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * get_expData_0() const { return ___expData_0; } inline Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D ** get_address_of_expData_0() { return &___expData_0; } inline void set_expData_0(Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * value) { ___expData_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___expData_0), (void*)value); } inline static int32_t get_offset_of_isRandomEmote_1() { return static_cast(offsetof(EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B, ___isRandomEmote_1)); } inline bool get_isRandomEmote_1() const { return ___isRandomEmote_1; } inline bool* get_address_of_isRandomEmote_1() { return &___isRandomEmote_1; } inline void set_isRandomEmote_1(bool value) { ___isRandomEmote_1 = value; } inline static int32_t get_offset_of_isLipsyncEmphasisEmote_2() { return static_cast(offsetof(EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B, ___isLipsyncEmphasisEmote_2)); } inline bool get_isLipsyncEmphasisEmote_2() const { return ___isLipsyncEmphasisEmote_2; } inline bool* get_address_of_isLipsyncEmphasisEmote_2() { return &___isLipsyncEmphasisEmote_2; } inline void set_isLipsyncEmphasisEmote_2(bool value) { ___isLipsyncEmphasisEmote_2 = value; } inline static int32_t get_offset_of_isRepeaterEmote_3() { return static_cast(offsetof(EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B, ___isRepeaterEmote_3)); } inline bool get_isRepeaterEmote_3() const { return ___isRepeaterEmote_3; } inline bool* get_address_of_isRepeaterEmote_3() { return &___isRepeaterEmote_3; } inline void set_isRepeaterEmote_3(bool value) { ___isRepeaterEmote_3 = value; } inline static int32_t get_offset_of_repeaterDelay_4() { return static_cast(offsetof(EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B, ___repeaterDelay_4)); } inline float get_repeaterDelay_4() const { return ___repeaterDelay_4; } inline float* get_address_of_repeaterDelay_4() { return &___repeaterDelay_4; } inline void set_repeaterDelay_4(float value) { ___repeaterDelay_4 = value; } inline static int32_t get_offset_of_startDelay_5() { return static_cast(offsetof(EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B, ___startDelay_5)); } inline int32_t get_startDelay_5() const { return ___startDelay_5; } inline int32_t* get_address_of_startDelay_5() { return &___startDelay_5; } inline void set_startDelay_5(int32_t value) { ___startDelay_5 = value; } inline static int32_t get_offset_of_isPersistent_6() { return static_cast(offsetof(EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B, ___isPersistent_6)); } inline bool get_isPersistent_6() const { return ___isPersistent_6; } inline bool* get_address_of_isPersistent_6() { return &___isPersistent_6; } inline void set_isPersistent_6(bool value) { ___isPersistent_6 = value; } inline static int32_t get_offset_of_isHoldVariationExempt_7() { return static_cast(offsetof(EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B, ___isHoldVariationExempt_7)); } inline bool get_isHoldVariationExempt_7() const { return ___isHoldVariationExempt_7; } inline bool* get_address_of_isHoldVariationExempt_7() { return &___isHoldVariationExempt_7; } inline void set_isHoldVariationExempt_7(bool value) { ___isHoldVariationExempt_7 = value; } inline static int32_t get_offset_of_isAlwaysEmphasisEmote_8() { return static_cast(offsetof(EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B, ___isAlwaysEmphasisEmote_8)); } inline bool get_isAlwaysEmphasisEmote_8() const { return ___isAlwaysEmphasisEmote_8; } inline bool* get_address_of_isAlwaysEmphasisEmote_8() { return &___isAlwaysEmphasisEmote_8; } inline void set_isAlwaysEmphasisEmote_8(bool value) { ___isAlwaysEmphasisEmote_8 = value; } inline static int32_t get_offset_of_hasBeenFired_9() { return static_cast(offsetof(EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B, ___hasBeenFired_9)); } inline bool get_hasBeenFired_9() const { return ___hasBeenFired_9; } inline bool* get_address_of_hasBeenFired_9() { return &___hasBeenFired_9; } inline void set_hasBeenFired_9(bool value) { ___hasBeenFired_9 = value; } inline static int32_t get_offset_of_frac_10() { return static_cast(offsetof(EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B, ___frac_10)); } inline float get_frac_10() const { return ___frac_10; } inline float* get_address_of_frac_10() { return &___frac_10; } inline void set_frac_10(float value) { ___frac_10 = value; } }; // CrazyMinnow.SALSA.ExpressionComponent struct ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D : public RuntimeObject { public: // System.String CrazyMinnow.SALSA.ExpressionComponent::name String_t* ___name_0; // CrazyMinnow.SALSA.IExpressionController CrazyMinnow.SALSA.ExpressionComponent::controller RuntimeObject* ___controller_1; // CrazyMinnow.SALSA.ExpressionComponent/ControlType CrazyMinnow.SALSA.ExpressionComponent::controlType int32_t ___controlType_2; // CrazyMinnow.SALSA.ExpressionComponent/LipsyncControlType CrazyMinnow.SALSA.ExpressionComponent::lipsyncControlType int32_t ___lipsyncControlType_3; // CrazyMinnow.SALSA.ExpressionComponent/EmoteControlType CrazyMinnow.SALSA.ExpressionComponent::emoteControlType int32_t ___emoteControlType_4; // CrazyMinnow.SALSA.ExpressionComponent/EyesControlType CrazyMinnow.SALSA.ExpressionComponent::eyesControlType int32_t ___eyesControlType_5; // System.Single CrazyMinnow.SALSA.ExpressionComponent::durationDelay float ___durationDelay_6; // System.Single CrazyMinnow.SALSA.ExpressionComponent::durationOn float ___durationOn_7; // System.Single CrazyMinnow.SALSA.ExpressionComponent::durationHold float ___durationHold_8; // System.Single CrazyMinnow.SALSA.ExpressionComponent::durationOff float ___durationOff_9; // System.Boolean CrazyMinnow.SALSA.ExpressionComponent::isSmoothDisable bool ___isSmoothDisable_10; // System.Boolean CrazyMinnow.SALSA.ExpressionComponent::isPersistent bool ___isPersistent_11; // CrazyMinnow.SALSA.ExpressionComponent/ExpressionType CrazyMinnow.SALSA.ExpressionComponent::expressionType int32_t ___expressionType_12; // CrazyMinnow.SALSA.LerpEasings/EasingType CrazyMinnow.SALSA.ExpressionComponent::easing int32_t ___easing_13; // CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler CrazyMinnow.SALSA.ExpressionComponent::expressionHandler int32_t ___expressionHandler_14; // System.Boolean CrazyMinnow.SALSA.ExpressionComponent::isAnimatorControlled bool ___isAnimatorControlled_15; // System.Boolean CrazyMinnow.SALSA.ExpressionComponent::useOffset bool ___useOffset_16; // System.Boolean CrazyMinnow.SALSA.ExpressionComponent::useOffsetFollow bool ___useOffsetFollow_17; // System.Boolean CrazyMinnow.SALSA.ExpressionComponent::inspFoldout bool ___inspFoldout_18; // System.Boolean CrazyMinnow.SALSA.ExpressionComponent::enabled bool ___enabled_19; // System.Boolean CrazyMinnow.SALSA.ExpressionComponent::isBonePreviewUpdated bool ___isBonePreviewUpdated_20; // System.Single CrazyMinnow.SALSA.ExpressionComponent::frac float ___frac_21; // CrazyMinnow.SALSA.ExpressionComponent/DirectionType CrazyMinnow.SALSA.ExpressionComponent::directionType int32_t ___directionType_22; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_controller_1() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___controller_1)); } inline RuntimeObject* get_controller_1() const { return ___controller_1; } inline RuntimeObject** get_address_of_controller_1() { return &___controller_1; } inline void set_controller_1(RuntimeObject* value) { ___controller_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___controller_1), (void*)value); } inline static int32_t get_offset_of_controlType_2() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___controlType_2)); } inline int32_t get_controlType_2() const { return ___controlType_2; } inline int32_t* get_address_of_controlType_2() { return &___controlType_2; } inline void set_controlType_2(int32_t value) { ___controlType_2 = value; } inline static int32_t get_offset_of_lipsyncControlType_3() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___lipsyncControlType_3)); } inline int32_t get_lipsyncControlType_3() const { return ___lipsyncControlType_3; } inline int32_t* get_address_of_lipsyncControlType_3() { return &___lipsyncControlType_3; } inline void set_lipsyncControlType_3(int32_t value) { ___lipsyncControlType_3 = value; } inline static int32_t get_offset_of_emoteControlType_4() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___emoteControlType_4)); } inline int32_t get_emoteControlType_4() const { return ___emoteControlType_4; } inline int32_t* get_address_of_emoteControlType_4() { return &___emoteControlType_4; } inline void set_emoteControlType_4(int32_t value) { ___emoteControlType_4 = value; } inline static int32_t get_offset_of_eyesControlType_5() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___eyesControlType_5)); } inline int32_t get_eyesControlType_5() const { return ___eyesControlType_5; } inline int32_t* get_address_of_eyesControlType_5() { return &___eyesControlType_5; } inline void set_eyesControlType_5(int32_t value) { ___eyesControlType_5 = value; } inline static int32_t get_offset_of_durationDelay_6() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___durationDelay_6)); } inline float get_durationDelay_6() const { return ___durationDelay_6; } inline float* get_address_of_durationDelay_6() { return &___durationDelay_6; } inline void set_durationDelay_6(float value) { ___durationDelay_6 = value; } inline static int32_t get_offset_of_durationOn_7() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___durationOn_7)); } inline float get_durationOn_7() const { return ___durationOn_7; } inline float* get_address_of_durationOn_7() { return &___durationOn_7; } inline void set_durationOn_7(float value) { ___durationOn_7 = value; } inline static int32_t get_offset_of_durationHold_8() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___durationHold_8)); } inline float get_durationHold_8() const { return ___durationHold_8; } inline float* get_address_of_durationHold_8() { return &___durationHold_8; } inline void set_durationHold_8(float value) { ___durationHold_8 = value; } inline static int32_t get_offset_of_durationOff_9() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___durationOff_9)); } inline float get_durationOff_9() const { return ___durationOff_9; } inline float* get_address_of_durationOff_9() { return &___durationOff_9; } inline void set_durationOff_9(float value) { ___durationOff_9 = value; } inline static int32_t get_offset_of_isSmoothDisable_10() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___isSmoothDisable_10)); } inline bool get_isSmoothDisable_10() const { return ___isSmoothDisable_10; } inline bool* get_address_of_isSmoothDisable_10() { return &___isSmoothDisable_10; } inline void set_isSmoothDisable_10(bool value) { ___isSmoothDisable_10 = value; } inline static int32_t get_offset_of_isPersistent_11() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___isPersistent_11)); } inline bool get_isPersistent_11() const { return ___isPersistent_11; } inline bool* get_address_of_isPersistent_11() { return &___isPersistent_11; } inline void set_isPersistent_11(bool value) { ___isPersistent_11 = value; } inline static int32_t get_offset_of_expressionType_12() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___expressionType_12)); } inline int32_t get_expressionType_12() const { return ___expressionType_12; } inline int32_t* get_address_of_expressionType_12() { return &___expressionType_12; } inline void set_expressionType_12(int32_t value) { ___expressionType_12 = value; } inline static int32_t get_offset_of_easing_13() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___easing_13)); } inline int32_t get_easing_13() const { return ___easing_13; } inline int32_t* get_address_of_easing_13() { return &___easing_13; } inline void set_easing_13(int32_t value) { ___easing_13 = value; } inline static int32_t get_offset_of_expressionHandler_14() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___expressionHandler_14)); } inline int32_t get_expressionHandler_14() const { return ___expressionHandler_14; } inline int32_t* get_address_of_expressionHandler_14() { return &___expressionHandler_14; } inline void set_expressionHandler_14(int32_t value) { ___expressionHandler_14 = value; } inline static int32_t get_offset_of_isAnimatorControlled_15() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___isAnimatorControlled_15)); } inline bool get_isAnimatorControlled_15() const { return ___isAnimatorControlled_15; } inline bool* get_address_of_isAnimatorControlled_15() { return &___isAnimatorControlled_15; } inline void set_isAnimatorControlled_15(bool value) { ___isAnimatorControlled_15 = value; } inline static int32_t get_offset_of_useOffset_16() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___useOffset_16)); } inline bool get_useOffset_16() const { return ___useOffset_16; } inline bool* get_address_of_useOffset_16() { return &___useOffset_16; } inline void set_useOffset_16(bool value) { ___useOffset_16 = value; } inline static int32_t get_offset_of_useOffsetFollow_17() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___useOffsetFollow_17)); } inline bool get_useOffsetFollow_17() const { return ___useOffsetFollow_17; } inline bool* get_address_of_useOffsetFollow_17() { return &___useOffsetFollow_17; } inline void set_useOffsetFollow_17(bool value) { ___useOffsetFollow_17 = value; } inline static int32_t get_offset_of_inspFoldout_18() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___inspFoldout_18)); } inline bool get_inspFoldout_18() const { return ___inspFoldout_18; } inline bool* get_address_of_inspFoldout_18() { return &___inspFoldout_18; } inline void set_inspFoldout_18(bool value) { ___inspFoldout_18 = value; } inline static int32_t get_offset_of_enabled_19() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___enabled_19)); } inline bool get_enabled_19() const { return ___enabled_19; } inline bool* get_address_of_enabled_19() { return &___enabled_19; } inline void set_enabled_19(bool value) { ___enabled_19 = value; } inline static int32_t get_offset_of_isBonePreviewUpdated_20() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___isBonePreviewUpdated_20)); } inline bool get_isBonePreviewUpdated_20() const { return ___isBonePreviewUpdated_20; } inline bool* get_address_of_isBonePreviewUpdated_20() { return &___isBonePreviewUpdated_20; } inline void set_isBonePreviewUpdated_20(bool value) { ___isBonePreviewUpdated_20 = value; } inline static int32_t get_offset_of_frac_21() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___frac_21)); } inline float get_frac_21() const { return ___frac_21; } inline float* get_address_of_frac_21() { return &___frac_21; } inline void set_frac_21(float value) { ___frac_21 = value; } inline static int32_t get_offset_of_directionType_22() { return static_cast(offsetof(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D, ___directionType_22)); } inline int32_t get_directionType_22() const { return ___directionType_22; } inline int32_t* get_address_of_directionType_22() { return &___directionType_22; } inline void set_directionType_22(int32_t value) { ___directionType_22 = value; } }; // UnityEngine.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // CrazyMinnow.SALSA.InspectorControllerHelperData struct InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 : public RuntimeObject { public: // UnityEngine.Transform CrazyMinnow.SALSA.InspectorControllerHelperData::bone Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___bone_0; // CrazyMinnow.SALSA.TformBase CrazyMinnow.SALSA.InspectorControllerHelperData::baseTform TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___baseTform_1; // CrazyMinnow.SALSA.TformBase CrazyMinnow.SALSA.InspectorControllerHelperData::startTform TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___startTform_2; // CrazyMinnow.SALSA.TformBase CrazyMinnow.SALSA.InspectorControllerHelperData::endTform TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___endTform_3; // System.Boolean CrazyMinnow.SALSA.InspectorControllerHelperData::fracPos bool ___fracPos_4; // System.Boolean CrazyMinnow.SALSA.InspectorControllerHelperData::fracRot bool ___fracRot_5; // System.Boolean CrazyMinnow.SALSA.InspectorControllerHelperData::fracScl bool ___fracScl_6; // System.Boolean CrazyMinnow.SALSA.InspectorControllerHelperData::inspIsSetStart bool ___inspIsSetStart_7; // System.Boolean CrazyMinnow.SALSA.InspectorControllerHelperData::inspIsSetEnd bool ___inspIsSetEnd_8; // CrazyMinnow.SALSA.UmaUepProxy CrazyMinnow.SALSA.InspectorControllerHelperData::umaUepProxy UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * ___umaUepProxy_9; // System.Single CrazyMinnow.SALSA.InspectorControllerHelperData::uepAmount float ___uepAmount_10; // UnityEngine.SkinnedMeshRenderer CrazyMinnow.SALSA.InspectorControllerHelperData::smr SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * ___smr_11; // System.Int32 CrazyMinnow.SALSA.InspectorControllerHelperData::blendIndex int32_t ___blendIndex_12; // System.Single CrazyMinnow.SALSA.InspectorControllerHelperData::minShape float ___minShape_13; // System.Single CrazyMinnow.SALSA.InspectorControllerHelperData::maxShape float ___maxShape_14; // CrazyMinnow.SALSA.EyeGizmo CrazyMinnow.SALSA.InspectorControllerHelperData::eyeGizmo EyeGizmo_t7E09AC272BF406C3EC30FB37B7060AA8639E785E * ___eyeGizmo_15; // UnityEngine.Animator CrazyMinnow.SALSA.InspectorControllerHelperData::animator Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * ___animator_16; // System.Boolean CrazyMinnow.SALSA.InspectorControllerHelperData::isTriggerParameterBiDirectional bool ___isTriggerParameterBiDirectional_17; // System.String CrazyMinnow.SALSA.InspectorControllerHelperData::eventIdentityName String_t* ___eventIdentityName_18; // CrazyMinnow.SALSA.Switcher/OnState CrazyMinnow.SALSA.InspectorControllerHelperData::onState int32_t ___onState_19; // System.Boolean CrazyMinnow.SALSA.InspectorControllerHelperData::display2dImage bool ___display2dImage_20; // System.Boolean CrazyMinnow.SALSA.InspectorControllerHelperData::isRestNull bool ___isRestNull_21; // UnityEngine.SpriteRenderer CrazyMinnow.SALSA.InspectorControllerHelperData::spriteRenderer SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * ___spriteRenderer_22; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.InspectorControllerHelperData::sprites List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * ___sprites_23; // UnityEngine.UI.Image CrazyMinnow.SALSA.InspectorControllerHelperData::uguiRenderer Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * ___uguiRenderer_24; // UnityEngine.Renderer CrazyMinnow.SALSA.InspectorControllerHelperData::textureRenderer Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * ___textureRenderer_25; // System.Int32 CrazyMinnow.SALSA.InspectorControllerHelperData::materialIndex int32_t ___materialIndex_26; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.InspectorControllerHelperData::backupTextures List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * ___backupTextures_27; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.InspectorControllerHelperData::textures List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * ___textures_28; // UnityEngine.Renderer CrazyMinnow.SALSA.InspectorControllerHelperData::materialRenderer Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * ___materialRenderer_29; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.InspectorControllerHelperData::materials List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * ___materials_30; public: inline static int32_t get_offset_of_bone_0() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___bone_0)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_bone_0() const { return ___bone_0; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_bone_0() { return &___bone_0; } inline void set_bone_0(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___bone_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___bone_0), (void*)value); } inline static int32_t get_offset_of_baseTform_1() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___baseTform_1)); } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 get_baseTform_1() const { return ___baseTform_1; } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * get_address_of_baseTform_1() { return &___baseTform_1; } inline void set_baseTform_1(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 value) { ___baseTform_1 = value; } inline static int32_t get_offset_of_startTform_2() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___startTform_2)); } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 get_startTform_2() const { return ___startTform_2; } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * get_address_of_startTform_2() { return &___startTform_2; } inline void set_startTform_2(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 value) { ___startTform_2 = value; } inline static int32_t get_offset_of_endTform_3() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___endTform_3)); } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 get_endTform_3() const { return ___endTform_3; } inline TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * get_address_of_endTform_3() { return &___endTform_3; } inline void set_endTform_3(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 value) { ___endTform_3 = value; } inline static int32_t get_offset_of_fracPos_4() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___fracPos_4)); } inline bool get_fracPos_4() const { return ___fracPos_4; } inline bool* get_address_of_fracPos_4() { return &___fracPos_4; } inline void set_fracPos_4(bool value) { ___fracPos_4 = value; } inline static int32_t get_offset_of_fracRot_5() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___fracRot_5)); } inline bool get_fracRot_5() const { return ___fracRot_5; } inline bool* get_address_of_fracRot_5() { return &___fracRot_5; } inline void set_fracRot_5(bool value) { ___fracRot_5 = value; } inline static int32_t get_offset_of_fracScl_6() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___fracScl_6)); } inline bool get_fracScl_6() const { return ___fracScl_6; } inline bool* get_address_of_fracScl_6() { return &___fracScl_6; } inline void set_fracScl_6(bool value) { ___fracScl_6 = value; } inline static int32_t get_offset_of_inspIsSetStart_7() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___inspIsSetStart_7)); } inline bool get_inspIsSetStart_7() const { return ___inspIsSetStart_7; } inline bool* get_address_of_inspIsSetStart_7() { return &___inspIsSetStart_7; } inline void set_inspIsSetStart_7(bool value) { ___inspIsSetStart_7 = value; } inline static int32_t get_offset_of_inspIsSetEnd_8() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___inspIsSetEnd_8)); } inline bool get_inspIsSetEnd_8() const { return ___inspIsSetEnd_8; } inline bool* get_address_of_inspIsSetEnd_8() { return &___inspIsSetEnd_8; } inline void set_inspIsSetEnd_8(bool value) { ___inspIsSetEnd_8 = value; } inline static int32_t get_offset_of_umaUepProxy_9() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___umaUepProxy_9)); } inline UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * get_umaUepProxy_9() const { return ___umaUepProxy_9; } inline UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 ** get_address_of_umaUepProxy_9() { return &___umaUepProxy_9; } inline void set_umaUepProxy_9(UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * value) { ___umaUepProxy_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___umaUepProxy_9), (void*)value); } inline static int32_t get_offset_of_uepAmount_10() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___uepAmount_10)); } inline float get_uepAmount_10() const { return ___uepAmount_10; } inline float* get_address_of_uepAmount_10() { return &___uepAmount_10; } inline void set_uepAmount_10(float value) { ___uepAmount_10 = value; } inline static int32_t get_offset_of_smr_11() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___smr_11)); } inline SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * get_smr_11() const { return ___smr_11; } inline SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 ** get_address_of_smr_11() { return &___smr_11; } inline void set_smr_11(SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * value) { ___smr_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___smr_11), (void*)value); } inline static int32_t get_offset_of_blendIndex_12() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___blendIndex_12)); } inline int32_t get_blendIndex_12() const { return ___blendIndex_12; } inline int32_t* get_address_of_blendIndex_12() { return &___blendIndex_12; } inline void set_blendIndex_12(int32_t value) { ___blendIndex_12 = value; } inline static int32_t get_offset_of_minShape_13() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___minShape_13)); } inline float get_minShape_13() const { return ___minShape_13; } inline float* get_address_of_minShape_13() { return &___minShape_13; } inline void set_minShape_13(float value) { ___minShape_13 = value; } inline static int32_t get_offset_of_maxShape_14() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___maxShape_14)); } inline float get_maxShape_14() const { return ___maxShape_14; } inline float* get_address_of_maxShape_14() { return &___maxShape_14; } inline void set_maxShape_14(float value) { ___maxShape_14 = value; } inline static int32_t get_offset_of_eyeGizmo_15() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___eyeGizmo_15)); } inline EyeGizmo_t7E09AC272BF406C3EC30FB37B7060AA8639E785E * get_eyeGizmo_15() const { return ___eyeGizmo_15; } inline EyeGizmo_t7E09AC272BF406C3EC30FB37B7060AA8639E785E ** get_address_of_eyeGizmo_15() { return &___eyeGizmo_15; } inline void set_eyeGizmo_15(EyeGizmo_t7E09AC272BF406C3EC30FB37B7060AA8639E785E * value) { ___eyeGizmo_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___eyeGizmo_15), (void*)value); } inline static int32_t get_offset_of_animator_16() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___animator_16)); } inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * get_animator_16() const { return ___animator_16; } inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 ** get_address_of_animator_16() { return &___animator_16; } inline void set_animator_16(Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * value) { ___animator_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___animator_16), (void*)value); } inline static int32_t get_offset_of_isTriggerParameterBiDirectional_17() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___isTriggerParameterBiDirectional_17)); } inline bool get_isTriggerParameterBiDirectional_17() const { return ___isTriggerParameterBiDirectional_17; } inline bool* get_address_of_isTriggerParameterBiDirectional_17() { return &___isTriggerParameterBiDirectional_17; } inline void set_isTriggerParameterBiDirectional_17(bool value) { ___isTriggerParameterBiDirectional_17 = value; } inline static int32_t get_offset_of_eventIdentityName_18() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___eventIdentityName_18)); } inline String_t* get_eventIdentityName_18() const { return ___eventIdentityName_18; } inline String_t** get_address_of_eventIdentityName_18() { return &___eventIdentityName_18; } inline void set_eventIdentityName_18(String_t* value) { ___eventIdentityName_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___eventIdentityName_18), (void*)value); } inline static int32_t get_offset_of_onState_19() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___onState_19)); } inline int32_t get_onState_19() const { return ___onState_19; } inline int32_t* get_address_of_onState_19() { return &___onState_19; } inline void set_onState_19(int32_t value) { ___onState_19 = value; } inline static int32_t get_offset_of_display2dImage_20() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___display2dImage_20)); } inline bool get_display2dImage_20() const { return ___display2dImage_20; } inline bool* get_address_of_display2dImage_20() { return &___display2dImage_20; } inline void set_display2dImage_20(bool value) { ___display2dImage_20 = value; } inline static int32_t get_offset_of_isRestNull_21() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___isRestNull_21)); } inline bool get_isRestNull_21() const { return ___isRestNull_21; } inline bool* get_address_of_isRestNull_21() { return &___isRestNull_21; } inline void set_isRestNull_21(bool value) { ___isRestNull_21 = value; } inline static int32_t get_offset_of_spriteRenderer_22() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___spriteRenderer_22)); } inline SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * get_spriteRenderer_22() const { return ___spriteRenderer_22; } inline SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF ** get_address_of_spriteRenderer_22() { return &___spriteRenderer_22; } inline void set_spriteRenderer_22(SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * value) { ___spriteRenderer_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___spriteRenderer_22), (void*)value); } inline static int32_t get_offset_of_sprites_23() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___sprites_23)); } inline List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * get_sprites_23() const { return ___sprites_23; } inline List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 ** get_address_of_sprites_23() { return &___sprites_23; } inline void set_sprites_23(List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * value) { ___sprites_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___sprites_23), (void*)value); } inline static int32_t get_offset_of_uguiRenderer_24() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___uguiRenderer_24)); } inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * get_uguiRenderer_24() const { return ___uguiRenderer_24; } inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C ** get_address_of_uguiRenderer_24() { return &___uguiRenderer_24; } inline void set_uguiRenderer_24(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * value) { ___uguiRenderer_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___uguiRenderer_24), (void*)value); } inline static int32_t get_offset_of_textureRenderer_25() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___textureRenderer_25)); } inline Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * get_textureRenderer_25() const { return ___textureRenderer_25; } inline Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C ** get_address_of_textureRenderer_25() { return &___textureRenderer_25; } inline void set_textureRenderer_25(Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * value) { ___textureRenderer_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___textureRenderer_25), (void*)value); } inline static int32_t get_offset_of_materialIndex_26() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___materialIndex_26)); } inline int32_t get_materialIndex_26() const { return ___materialIndex_26; } inline int32_t* get_address_of_materialIndex_26() { return &___materialIndex_26; } inline void set_materialIndex_26(int32_t value) { ___materialIndex_26 = value; } inline static int32_t get_offset_of_backupTextures_27() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___backupTextures_27)); } inline List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * get_backupTextures_27() const { return ___backupTextures_27; } inline List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D ** get_address_of_backupTextures_27() { return &___backupTextures_27; } inline void set_backupTextures_27(List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * value) { ___backupTextures_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___backupTextures_27), (void*)value); } inline static int32_t get_offset_of_textures_28() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___textures_28)); } inline List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * get_textures_28() const { return ___textures_28; } inline List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D ** get_address_of_textures_28() { return &___textures_28; } inline void set_textures_28(List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * value) { ___textures_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___textures_28), (void*)value); } inline static int32_t get_offset_of_materialRenderer_29() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___materialRenderer_29)); } inline Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * get_materialRenderer_29() const { return ___materialRenderer_29; } inline Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C ** get_address_of_materialRenderer_29() { return &___materialRenderer_29; } inline void set_materialRenderer_29(Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * value) { ___materialRenderer_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___materialRenderer_29), (void*)value); } inline static int32_t get_offset_of_materials_30() { return static_cast(offsetof(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70, ___materials_30)); } inline List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * get_materials_30() const { return ___materials_30; } inline List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 ** get_address_of_materials_30() { return &___materials_30; } inline void set_materials_30(List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * value) { ___materials_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___materials_30), (void*)value); } }; // UnityEngine.Material struct Material_t8927C00353A72755313F046D0CE85178AE8218EE : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // UnityEngine.Mesh struct Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { 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; }; // CrazyMinnow.SALSA.QueueExpressionComponent struct QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 { public: // CrazyMinnow.SALSA.IExpressionController CrazyMinnow.SALSA.QueueExpressionComponent::controller RuntimeObject* ___controller_0; // CrazyMinnow.SALSA.ExpressionComponent/ControlType CrazyMinnow.SALSA.QueueExpressionComponent::controlType int32_t ___controlType_1; // System.Single CrazyMinnow.SALSA.QueueExpressionComponent::durationDelay float ___durationDelay_2; // System.Single CrazyMinnow.SALSA.QueueExpressionComponent::durationOn float ___durationOn_3; // System.Single CrazyMinnow.SALSA.QueueExpressionComponent::durationHold float ___durationHold_4; // System.Single CrazyMinnow.SALSA.QueueExpressionComponent::durationOff float ___durationOff_5; // System.Boolean CrazyMinnow.SALSA.QueueExpressionComponent::isPersistent bool ___isPersistent_6; // CrazyMinnow.SALSA.ExpressionComponent/ExpressionType CrazyMinnow.SALSA.QueueExpressionComponent::expressionType int32_t ___expressionType_7; // CrazyMinnow.SALSA.LerpEasings/EasingType CrazyMinnow.SALSA.QueueExpressionComponent::easing int32_t ___easing_8; // CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler CrazyMinnow.SALSA.QueueExpressionComponent::expressionHandler int32_t ___expressionHandler_9; // System.Boolean CrazyMinnow.SALSA.QueueExpressionComponent::isAnimatorControlled bool ___isAnimatorControlled_10; // System.Boolean CrazyMinnow.SALSA.QueueExpressionComponent::useOffset bool ___useOffset_11; // System.String CrazyMinnow.SALSA.QueueExpressionComponent::name String_t* ___name_12; public: inline static int32_t get_offset_of_controller_0() { return static_cast(offsetof(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376, ___controller_0)); } inline RuntimeObject* get_controller_0() const { return ___controller_0; } inline RuntimeObject** get_address_of_controller_0() { return &___controller_0; } inline void set_controller_0(RuntimeObject* value) { ___controller_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___controller_0), (void*)value); } inline static int32_t get_offset_of_controlType_1() { return static_cast(offsetof(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376, ___controlType_1)); } inline int32_t get_controlType_1() const { return ___controlType_1; } inline int32_t* get_address_of_controlType_1() { return &___controlType_1; } inline void set_controlType_1(int32_t value) { ___controlType_1 = value; } inline static int32_t get_offset_of_durationDelay_2() { return static_cast(offsetof(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376, ___durationDelay_2)); } inline float get_durationDelay_2() const { return ___durationDelay_2; } inline float* get_address_of_durationDelay_2() { return &___durationDelay_2; } inline void set_durationDelay_2(float value) { ___durationDelay_2 = value; } inline static int32_t get_offset_of_durationOn_3() { return static_cast(offsetof(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376, ___durationOn_3)); } inline float get_durationOn_3() const { return ___durationOn_3; } inline float* get_address_of_durationOn_3() { return &___durationOn_3; } inline void set_durationOn_3(float value) { ___durationOn_3 = value; } inline static int32_t get_offset_of_durationHold_4() { return static_cast(offsetof(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376, ___durationHold_4)); } inline float get_durationHold_4() const { return ___durationHold_4; } inline float* get_address_of_durationHold_4() { return &___durationHold_4; } inline void set_durationHold_4(float value) { ___durationHold_4 = value; } inline static int32_t get_offset_of_durationOff_5() { return static_cast(offsetof(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376, ___durationOff_5)); } inline float get_durationOff_5() const { return ___durationOff_5; } inline float* get_address_of_durationOff_5() { return &___durationOff_5; } inline void set_durationOff_5(float value) { ___durationOff_5 = value; } inline static int32_t get_offset_of_isPersistent_6() { return static_cast(offsetof(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376, ___isPersistent_6)); } inline bool get_isPersistent_6() const { return ___isPersistent_6; } inline bool* get_address_of_isPersistent_6() { return &___isPersistent_6; } inline void set_isPersistent_6(bool value) { ___isPersistent_6 = value; } inline static int32_t get_offset_of_expressionType_7() { return static_cast(offsetof(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376, ___expressionType_7)); } inline int32_t get_expressionType_7() const { return ___expressionType_7; } inline int32_t* get_address_of_expressionType_7() { return &___expressionType_7; } inline void set_expressionType_7(int32_t value) { ___expressionType_7 = value; } inline static int32_t get_offset_of_easing_8() { return static_cast(offsetof(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376, ___easing_8)); } inline int32_t get_easing_8() const { return ___easing_8; } inline int32_t* get_address_of_easing_8() { return &___easing_8; } inline void set_easing_8(int32_t value) { ___easing_8 = value; } inline static int32_t get_offset_of_expressionHandler_9() { return static_cast(offsetof(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376, ___expressionHandler_9)); } inline int32_t get_expressionHandler_9() const { return ___expressionHandler_9; } inline int32_t* get_address_of_expressionHandler_9() { return &___expressionHandler_9; } inline void set_expressionHandler_9(int32_t value) { ___expressionHandler_9 = value; } inline static int32_t get_offset_of_isAnimatorControlled_10() { return static_cast(offsetof(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376, ___isAnimatorControlled_10)); } inline bool get_isAnimatorControlled_10() const { return ___isAnimatorControlled_10; } inline bool* get_address_of_isAnimatorControlled_10() { return &___isAnimatorControlled_10; } inline void set_isAnimatorControlled_10(bool value) { ___isAnimatorControlled_10 = value; } inline static int32_t get_offset_of_useOffset_11() { return static_cast(offsetof(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376, ___useOffset_11)); } inline bool get_useOffset_11() const { return ___useOffset_11; } inline bool* get_address_of_useOffset_11() { return &___useOffset_11; } inline void set_useOffset_11(bool value) { ___useOffset_11 = value; } inline static int32_t get_offset_of_name_12() { return static_cast(offsetof(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376, ___name_12)); } inline String_t* get_name_12() const { return ___name_12; } inline String_t** get_address_of_name_12() { return &___name_12; } inline void set_name_12(String_t* value) { ___name_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_12), (void*)value); } }; // Native definition for P/Invoke marshalling of CrazyMinnow.SALSA.QueueExpressionComponent struct QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_pinvoke { RuntimeObject* ___controller_0; int32_t ___controlType_1; float ___durationDelay_2; float ___durationOn_3; float ___durationHold_4; float ___durationOff_5; int32_t ___isPersistent_6; int32_t ___expressionType_7; int32_t ___easing_8; int32_t ___expressionHandler_9; int32_t ___isAnimatorControlled_10; int32_t ___useOffset_11; char* ___name_12; }; // Native definition for COM marshalling of CrazyMinnow.SALSA.QueueExpressionComponent struct QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_com { RuntimeObject* ___controller_0; int32_t ___controlType_1; float ___durationDelay_2; float ___durationOn_3; float ___durationHold_4; float ___durationOff_5; int32_t ___isPersistent_6; int32_t ___expressionType_7; int32_t ___easing_8; int32_t ___expressionHandler_9; int32_t ___isAnimatorControlled_10; int32_t ___useOffset_11; Il2CppChar* ___name_12; }; // UnityEngine.Sprite struct Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // CrazyMinnow.SALSA.Switcher struct Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 : public RuntimeObject { public: // CrazyMinnow.SALSA.Switcher/OnState CrazyMinnow.SALSA.Switcher::onState int32_t ___onState_0; // System.Single CrazyMinnow.SALSA.Switcher::frame float ___frame_1; // System.Single CrazyMinnow.SALSA.Switcher::currentDelta float ___currentDelta_2; // System.Boolean CrazyMinnow.SALSA.Switcher::isRestNull bool ___isRestNull_3; // System.Single CrazyMinnow.SALSA.Switcher::fracMax float ___fracMax_4; public: inline static int32_t get_offset_of_onState_0() { return static_cast(offsetof(Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385, ___onState_0)); } inline int32_t get_onState_0() const { return ___onState_0; } inline int32_t* get_address_of_onState_0() { return &___onState_0; } inline void set_onState_0(int32_t value) { ___onState_0 = value; } inline static int32_t get_offset_of_frame_1() { return static_cast(offsetof(Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385, ___frame_1)); } inline float get_frame_1() const { return ___frame_1; } inline float* get_address_of_frame_1() { return &___frame_1; } inline void set_frame_1(float value) { ___frame_1 = value; } inline static int32_t get_offset_of_currentDelta_2() { return static_cast(offsetof(Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385, ___currentDelta_2)); } inline float get_currentDelta_2() const { return ___currentDelta_2; } inline float* get_address_of_currentDelta_2() { return &___currentDelta_2; } inline void set_currentDelta_2(float value) { ___currentDelta_2 = value; } inline static int32_t get_offset_of_isRestNull_3() { return static_cast(offsetof(Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385, ___isRestNull_3)); } inline bool get_isRestNull_3() const { return ___isRestNull_3; } inline bool* get_address_of_isRestNull_3() { return &___isRestNull_3; } inline void set_isRestNull_3(bool value) { ___isRestNull_3 = value; } inline static int32_t get_offset_of_fracMax_4() { return static_cast(offsetof(Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385, ___fracMax_4)); } inline float get_fracMax_4() const { return ___fracMax_4; } inline float* get_address_of_fracMax_4() { return &___fracMax_4; } inline void set_fracMax_4(float value) { ___fracMax_4 = value; } }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // UnityEngine.Texture struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { 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; } }; // System.Comparison`1 struct Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 : public MulticastDelegate_t { public: public: }; // System.EventHandler`1 struct EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 : public MulticastDelegate_t { public: public: }; // System.EventHandler`1 struct EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 : public MulticastDelegate_t { public: public: }; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA : public MulticastDelegate_t { public: public: }; // UnityEngine.Behaviour struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // CrazyMinnow.SALSA.MaterialController struct MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 : public Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 { public: // UnityEngine.Renderer CrazyMinnow.SALSA.MaterialController::renderer Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * ___renderer_5; // UnityEngine.Material[] CrazyMinnow.SALSA.MaterialController::animationFrames MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* ___animationFrames_6; public: inline static int32_t get_offset_of_renderer_5() { return static_cast(offsetof(MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2, ___renderer_5)); } inline Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * get_renderer_5() const { return ___renderer_5; } inline Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C ** get_address_of_renderer_5() { return &___renderer_5; } inline void set_renderer_5(Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * value) { ___renderer_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___renderer_5), (void*)value); } inline static int32_t get_offset_of_animationFrames_6() { return static_cast(offsetof(MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2, ___animationFrames_6)); } inline MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* get_animationFrames_6() const { return ___animationFrames_6; } inline MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492** get_address_of_animationFrames_6() { return &___animationFrames_6; } inline void set_animationFrames_6(MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* value) { ___animationFrames_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___animationFrames_6), (void*)value); } }; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // CrazyMinnow.SALSA.QueueData struct QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 { public: // CrazyMinnow.SALSA.QueueExpressionComponent CrazyMinnow.SALSA.QueueData::queueExpressionComponent QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 ___queueExpressionComponent_0; // System.Single CrazyMinnow.SALSA.QueueData::lerpProgress float ___lerpProgress_1; // System.Single CrazyMinnow.SALSA.QueueData::startTime float ___startTime_2; // System.Boolean CrazyMinnow.SALSA.QueueData::isActivating bool ___isActivating_3; // System.Int32 CrazyMinnow.SALSA.QueueData::itemID int32_t ___itemID_4; public: inline static int32_t get_offset_of_queueExpressionComponent_0() { return static_cast(offsetof(QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08, ___queueExpressionComponent_0)); } inline QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 get_queueExpressionComponent_0() const { return ___queueExpressionComponent_0; } inline QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 * get_address_of_queueExpressionComponent_0() { return &___queueExpressionComponent_0; } inline void set_queueExpressionComponent_0(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 value) { ___queueExpressionComponent_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___queueExpressionComponent_0))->___controller_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___queueExpressionComponent_0))->___name_12), (void*)NULL); #endif } inline static int32_t get_offset_of_lerpProgress_1() { return static_cast(offsetof(QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08, ___lerpProgress_1)); } inline float get_lerpProgress_1() const { return ___lerpProgress_1; } inline float* get_address_of_lerpProgress_1() { return &___lerpProgress_1; } inline void set_lerpProgress_1(float value) { ___lerpProgress_1 = value; } inline static int32_t get_offset_of_startTime_2() { return static_cast(offsetof(QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08, ___startTime_2)); } inline float get_startTime_2() const { return ___startTime_2; } inline float* get_address_of_startTime_2() { return &___startTime_2; } inline void set_startTime_2(float value) { ___startTime_2 = value; } inline static int32_t get_offset_of_isActivating_3() { return static_cast(offsetof(QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08, ___isActivating_3)); } inline bool get_isActivating_3() const { return ___isActivating_3; } inline bool* get_address_of_isActivating_3() { return &___isActivating_3; } inline void set_isActivating_3(bool value) { ___isActivating_3 = value; } inline static int32_t get_offset_of_itemID_4() { return static_cast(offsetof(QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08, ___itemID_4)); } inline int32_t get_itemID_4() const { return ___itemID_4; } inline int32_t* get_address_of_itemID_4() { return &___itemID_4; } inline void set_itemID_4(int32_t value) { ___itemID_4 = value; } }; // Native definition for P/Invoke marshalling of CrazyMinnow.SALSA.QueueData struct QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshaled_pinvoke { QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_pinvoke ___queueExpressionComponent_0; float ___lerpProgress_1; float ___startTime_2; int32_t ___isActivating_3; int32_t ___itemID_4; }; // Native definition for COM marshalling of CrazyMinnow.SALSA.QueueData struct QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshaled_com { QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_com ___queueExpressionComponent_0; float ___lerpProgress_1; float ___startTime_2; int32_t ___isActivating_3; int32_t ___itemID_4; }; // UnityEngine.Renderer struct Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // CrazyMinnow.SALSA.SpriteController struct SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 : public Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 { public: // UnityEngine.SpriteRenderer CrazyMinnow.SALSA.SpriteController::renderer SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * ___renderer_5; // UnityEngine.Sprite[] CrazyMinnow.SALSA.SpriteController::animationFrames SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* ___animationFrames_6; public: inline static int32_t get_offset_of_renderer_5() { return static_cast(offsetof(SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37, ___renderer_5)); } inline SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * get_renderer_5() const { return ___renderer_5; } inline SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF ** get_address_of_renderer_5() { return &___renderer_5; } inline void set_renderer_5(SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * value) { ___renderer_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___renderer_5), (void*)value); } inline static int32_t get_offset_of_animationFrames_6() { return static_cast(offsetof(SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37, ___animationFrames_6)); } inline SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* get_animationFrames_6() const { return ___animationFrames_6; } inline SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77** get_address_of_animationFrames_6() { return &___animationFrames_6; } inline void set_animationFrames_6(SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* value) { ___animationFrames_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___animationFrames_6), (void*)value); } }; // CrazyMinnow.SALSA.TextureController struct TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 : public Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 { public: // UnityEngine.Renderer CrazyMinnow.SALSA.TextureController::renderer Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * ___renderer_5; // System.Int32 CrazyMinnow.SALSA.TextureController::materialIndex int32_t ___materialIndex_6; // UnityEngine.Texture[] CrazyMinnow.SALSA.TextureController::animationFrames TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* ___animationFrames_7; public: inline static int32_t get_offset_of_renderer_5() { return static_cast(offsetof(TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045, ___renderer_5)); } inline Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * get_renderer_5() const { return ___renderer_5; } inline Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C ** get_address_of_renderer_5() { return &___renderer_5; } inline void set_renderer_5(Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * value) { ___renderer_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___renderer_5), (void*)value); } inline static int32_t get_offset_of_materialIndex_6() { return static_cast(offsetof(TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045, ___materialIndex_6)); } inline int32_t get_materialIndex_6() const { return ___materialIndex_6; } inline int32_t* get_address_of_materialIndex_6() { return &___materialIndex_6; } inline void set_materialIndex_6(int32_t value) { ___materialIndex_6 = value; } inline static int32_t get_offset_of_animationFrames_7() { return static_cast(offsetof(TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045, ___animationFrames_7)); } inline TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* get_animationFrames_7() const { return ___animationFrames_7; } inline TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150** get_address_of_animationFrames_7() { return &___animationFrames_7; } inline void set_animationFrames_7(TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* value) { ___animationFrames_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___animationFrames_7), (void*)value); } }; // UnityEngine.Transform struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // CrazyMinnow.SALSA.UguiController struct UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B : public Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 { public: // UnityEngine.UI.Image CrazyMinnow.SALSA.UguiController::renderer Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * ___renderer_5; // UnityEngine.Sprite[] CrazyMinnow.SALSA.UguiController::animationFrames SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* ___animationFrames_6; public: inline static int32_t get_offset_of_renderer_5() { return static_cast(offsetof(UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B, ___renderer_5)); } inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * get_renderer_5() const { return ___renderer_5; } inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C ** get_address_of_renderer_5() { return &___renderer_5; } inline void set_renderer_5(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * value) { ___renderer_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___renderer_5), (void*)value); } inline static int32_t get_offset_of_animationFrames_6() { return static_cast(offsetof(UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B, ___animationFrames_6)); } inline SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* get_animationFrames_6() const { return ___animationFrames_6; } inline SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77** get_address_of_animationFrames_6() { return &___animationFrames_6; } inline void set_animationFrames_6(SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* value) { ___animationFrames_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___animationFrames_6), (void*)value); } }; // CrazyMinnow.SALSA.Salsa/AudioAnalyzer struct AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C : public MulticastDelegate_t { public: public: }; // CrazyMinnow.SALSA.Salsa/ClipChannels struct ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 : public MulticastDelegate_t { public: public: }; // CrazyMinnow.SALSA.Salsa/ClipFrequency struct ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE : public MulticastDelegate_t { public: public: }; // CrazyMinnow.SALSA.Salsa/ClipRecordHeadPointer struct ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB : public MulticastDelegate_t { public: public: }; // CrazyMinnow.SALSA.Salsa/ClipSampleCount struct ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 : public MulticastDelegate_t { public: public: }; // CrazyMinnow.SALSA.Salsa/GetClipData struct GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB : public MulticastDelegate_t { public: public: }; // CrazyMinnow.SALSA.Salsa/GetExternalAnalysis struct GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 : public MulticastDelegate_t { public: public: }; // CrazyMinnow.SALSA.Salsa/GetTriggerIndex struct GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD : public MulticastDelegate_t { public: public: }; // CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer/SilenceAnalyzer struct SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB : public MulticastDelegate_t { public: public: }; // UnityEngine.Animator struct Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // UnityEngine.AudioBehaviour struct AudioBehaviour_tB44966D47AD43C50C7294AEE9B57574E55AACA4A : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // UnityEngine.SkinnedMeshRenderer struct SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 : public Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C { public: public: }; // UnityEngine.SpriteRenderer struct SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF : public Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C { public: public: }; // UnityEngine.AudioSource struct AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B : public AudioBehaviour_tB44966D47AD43C50C7294AEE9B57574E55AACA4A { public: public: }; // CrazyMinnow.SALSA.Emoter struct Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.String CrazyMinnow.SALSA.Emoter::emoterName String_t* ___emoterName_4; // CrazyMinnow.SALSA.QueueProcessor CrazyMinnow.SALSA.Emoter::queueProcessor QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * ___queueProcessor_5; // System.Single CrazyMinnow.SALSA.Emoter::lipsyncEmphasisChance float ___lipsyncEmphasisChance_6; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.Emoter::lipsyncEmphasisEmotes List_1_tF3A527AB0695528DCF7BAE0CB569A308361853D7 * ___lipsyncEmphasisEmotes_7; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.Emoter::repeaterEmotes List_1_t5FDF595FC26CDEE45DE5C97C1F64BDAB28CC7D05 * ___repeaterEmotes_8; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.Emoter::randomEmotes List_1_tF3A527AB0695528DCF7BAE0CB569A308361853D7 * ___randomEmotes_9; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.Emoter::emotes List_1_tF3A527AB0695528DCF7BAE0CB569A308361853D7 * ___emotes_10; // System.Boolean CrazyMinnow.SALSA.Emoter::useRandomEmotes bool ___useRandomEmotes_11; // System.Boolean CrazyMinnow.SALSA.Emoter::isChancePerEmote bool ___isChancePerEmote_12; // System.Int32 CrazyMinnow.SALSA.Emoter::numRandomEmotesPerCycle int32_t ___numRandomEmotesPerCycle_13; // System.Int32 CrazyMinnow.SALSA.Emoter::numRandomEmphasizersPerCycle int32_t ___numRandomEmphasizersPerCycle_14; // System.Single CrazyMinnow.SALSA.Emoter::randomEmoteMinTimer float ___randomEmoteMinTimer_15; // System.Single CrazyMinnow.SALSA.Emoter::randomEmoteMaxTimer float ___randomEmoteMaxTimer_16; // System.Single CrazyMinnow.SALSA.Emoter::randomPoolTimeCheck float ___randomPoolTimeCheck_17; // System.Single CrazyMinnow.SALSA.Emoter::randomPoolTimeDelay float ___randomPoolTimeDelay_18; // System.Single CrazyMinnow.SALSA.Emoter::randomChance float ___randomChance_19; // System.Boolean CrazyMinnow.SALSA.Emoter::useRandomFrac bool ___useRandomFrac_20; // System.Single CrazyMinnow.SALSA.Emoter::randomFracBias float ___randomFracBias_21; // System.Boolean CrazyMinnow.SALSA.Emoter::useRandomHoldDuration bool ___useRandomHoldDuration_22; // System.Single CrazyMinnow.SALSA.Emoter::randomHoldDurationMin float ___randomHoldDurationMin_23; // System.Single CrazyMinnow.SALSA.Emoter::randomHoldDurationMax float ___randomHoldDurationMax_24; // System.Boolean CrazyMinnow.SALSA.Emoter::configReady bool ___configReady_28; // System.Boolean CrazyMinnow.SALSA.Emoter::configNotReadyNotified bool ___configNotReadyNotified_29; // System.Boolean CrazyMinnow.SALSA.Emoter::warnOnNullRefs bool ___warnOnNullRefs_30; // System.Boolean CrazyMinnow.SALSA.Emoter::isAppQuitting bool ___isAppQuitting_31; // System.Boolean CrazyMinnow.SALSA.Emoter::inspSalsaLinked bool ___inspSalsaLinked_32; // System.Boolean CrazyMinnow.SALSA.Emoter::inspStateFoldoutProcessing bool ___inspStateFoldoutProcessing_33; // System.Boolean CrazyMinnow.SALSA.Emoter::inspStateFoldoutSettings bool ___inspStateFoldoutSettings_34; // System.Boolean CrazyMinnow.SALSA.Emoter::inspStateFoldoutEmotes bool ___inspStateFoldoutEmotes_35; // System.Boolean CrazyMinnow.SALSA.Emoter::inspCollectionDisplayMode bool ___inspCollectionDisplayMode_36; public: inline static int32_t get_offset_of_emoterName_4() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___emoterName_4)); } inline String_t* get_emoterName_4() const { return ___emoterName_4; } inline String_t** get_address_of_emoterName_4() { return &___emoterName_4; } inline void set_emoterName_4(String_t* value) { ___emoterName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___emoterName_4), (void*)value); } inline static int32_t get_offset_of_queueProcessor_5() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___queueProcessor_5)); } inline QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * get_queueProcessor_5() const { return ___queueProcessor_5; } inline QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 ** get_address_of_queueProcessor_5() { return &___queueProcessor_5; } inline void set_queueProcessor_5(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * value) { ___queueProcessor_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___queueProcessor_5), (void*)value); } inline static int32_t get_offset_of_lipsyncEmphasisChance_6() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___lipsyncEmphasisChance_6)); } inline float get_lipsyncEmphasisChance_6() const { return ___lipsyncEmphasisChance_6; } inline float* get_address_of_lipsyncEmphasisChance_6() { return &___lipsyncEmphasisChance_6; } inline void set_lipsyncEmphasisChance_6(float value) { ___lipsyncEmphasisChance_6 = value; } inline static int32_t get_offset_of_lipsyncEmphasisEmotes_7() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___lipsyncEmphasisEmotes_7)); } inline List_1_tF3A527AB0695528DCF7BAE0CB569A308361853D7 * get_lipsyncEmphasisEmotes_7() const { return ___lipsyncEmphasisEmotes_7; } inline List_1_tF3A527AB0695528DCF7BAE0CB569A308361853D7 ** get_address_of_lipsyncEmphasisEmotes_7() { return &___lipsyncEmphasisEmotes_7; } inline void set_lipsyncEmphasisEmotes_7(List_1_tF3A527AB0695528DCF7BAE0CB569A308361853D7 * value) { ___lipsyncEmphasisEmotes_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___lipsyncEmphasisEmotes_7), (void*)value); } inline static int32_t get_offset_of_repeaterEmotes_8() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___repeaterEmotes_8)); } inline List_1_t5FDF595FC26CDEE45DE5C97C1F64BDAB28CC7D05 * get_repeaterEmotes_8() const { return ___repeaterEmotes_8; } inline List_1_t5FDF595FC26CDEE45DE5C97C1F64BDAB28CC7D05 ** get_address_of_repeaterEmotes_8() { return &___repeaterEmotes_8; } inline void set_repeaterEmotes_8(List_1_t5FDF595FC26CDEE45DE5C97C1F64BDAB28CC7D05 * value) { ___repeaterEmotes_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___repeaterEmotes_8), (void*)value); } inline static int32_t get_offset_of_randomEmotes_9() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___randomEmotes_9)); } inline List_1_tF3A527AB0695528DCF7BAE0CB569A308361853D7 * get_randomEmotes_9() const { return ___randomEmotes_9; } inline List_1_tF3A527AB0695528DCF7BAE0CB569A308361853D7 ** get_address_of_randomEmotes_9() { return &___randomEmotes_9; } inline void set_randomEmotes_9(List_1_tF3A527AB0695528DCF7BAE0CB569A308361853D7 * value) { ___randomEmotes_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___randomEmotes_9), (void*)value); } inline static int32_t get_offset_of_emotes_10() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___emotes_10)); } inline List_1_tF3A527AB0695528DCF7BAE0CB569A308361853D7 * get_emotes_10() const { return ___emotes_10; } inline List_1_tF3A527AB0695528DCF7BAE0CB569A308361853D7 ** get_address_of_emotes_10() { return &___emotes_10; } inline void set_emotes_10(List_1_tF3A527AB0695528DCF7BAE0CB569A308361853D7 * value) { ___emotes_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___emotes_10), (void*)value); } inline static int32_t get_offset_of_useRandomEmotes_11() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___useRandomEmotes_11)); } inline bool get_useRandomEmotes_11() const { return ___useRandomEmotes_11; } inline bool* get_address_of_useRandomEmotes_11() { return &___useRandomEmotes_11; } inline void set_useRandomEmotes_11(bool value) { ___useRandomEmotes_11 = value; } inline static int32_t get_offset_of_isChancePerEmote_12() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___isChancePerEmote_12)); } inline bool get_isChancePerEmote_12() const { return ___isChancePerEmote_12; } inline bool* get_address_of_isChancePerEmote_12() { return &___isChancePerEmote_12; } inline void set_isChancePerEmote_12(bool value) { ___isChancePerEmote_12 = value; } inline static int32_t get_offset_of_numRandomEmotesPerCycle_13() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___numRandomEmotesPerCycle_13)); } inline int32_t get_numRandomEmotesPerCycle_13() const { return ___numRandomEmotesPerCycle_13; } inline int32_t* get_address_of_numRandomEmotesPerCycle_13() { return &___numRandomEmotesPerCycle_13; } inline void set_numRandomEmotesPerCycle_13(int32_t value) { ___numRandomEmotesPerCycle_13 = value; } inline static int32_t get_offset_of_numRandomEmphasizersPerCycle_14() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___numRandomEmphasizersPerCycle_14)); } inline int32_t get_numRandomEmphasizersPerCycle_14() const { return ___numRandomEmphasizersPerCycle_14; } inline int32_t* get_address_of_numRandomEmphasizersPerCycle_14() { return &___numRandomEmphasizersPerCycle_14; } inline void set_numRandomEmphasizersPerCycle_14(int32_t value) { ___numRandomEmphasizersPerCycle_14 = value; } inline static int32_t get_offset_of_randomEmoteMinTimer_15() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___randomEmoteMinTimer_15)); } inline float get_randomEmoteMinTimer_15() const { return ___randomEmoteMinTimer_15; } inline float* get_address_of_randomEmoteMinTimer_15() { return &___randomEmoteMinTimer_15; } inline void set_randomEmoteMinTimer_15(float value) { ___randomEmoteMinTimer_15 = value; } inline static int32_t get_offset_of_randomEmoteMaxTimer_16() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___randomEmoteMaxTimer_16)); } inline float get_randomEmoteMaxTimer_16() const { return ___randomEmoteMaxTimer_16; } inline float* get_address_of_randomEmoteMaxTimer_16() { return &___randomEmoteMaxTimer_16; } inline void set_randomEmoteMaxTimer_16(float value) { ___randomEmoteMaxTimer_16 = value; } inline static int32_t get_offset_of_randomPoolTimeCheck_17() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___randomPoolTimeCheck_17)); } inline float get_randomPoolTimeCheck_17() const { return ___randomPoolTimeCheck_17; } inline float* get_address_of_randomPoolTimeCheck_17() { return &___randomPoolTimeCheck_17; } inline void set_randomPoolTimeCheck_17(float value) { ___randomPoolTimeCheck_17 = value; } inline static int32_t get_offset_of_randomPoolTimeDelay_18() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___randomPoolTimeDelay_18)); } inline float get_randomPoolTimeDelay_18() const { return ___randomPoolTimeDelay_18; } inline float* get_address_of_randomPoolTimeDelay_18() { return &___randomPoolTimeDelay_18; } inline void set_randomPoolTimeDelay_18(float value) { ___randomPoolTimeDelay_18 = value; } inline static int32_t get_offset_of_randomChance_19() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___randomChance_19)); } inline float get_randomChance_19() const { return ___randomChance_19; } inline float* get_address_of_randomChance_19() { return &___randomChance_19; } inline void set_randomChance_19(float value) { ___randomChance_19 = value; } inline static int32_t get_offset_of_useRandomFrac_20() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___useRandomFrac_20)); } inline bool get_useRandomFrac_20() const { return ___useRandomFrac_20; } inline bool* get_address_of_useRandomFrac_20() { return &___useRandomFrac_20; } inline void set_useRandomFrac_20(bool value) { ___useRandomFrac_20 = value; } inline static int32_t get_offset_of_randomFracBias_21() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___randomFracBias_21)); } inline float get_randomFracBias_21() const { return ___randomFracBias_21; } inline float* get_address_of_randomFracBias_21() { return &___randomFracBias_21; } inline void set_randomFracBias_21(float value) { ___randomFracBias_21 = value; } inline static int32_t get_offset_of_useRandomHoldDuration_22() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___useRandomHoldDuration_22)); } inline bool get_useRandomHoldDuration_22() const { return ___useRandomHoldDuration_22; } inline bool* get_address_of_useRandomHoldDuration_22() { return &___useRandomHoldDuration_22; } inline void set_useRandomHoldDuration_22(bool value) { ___useRandomHoldDuration_22 = value; } inline static int32_t get_offset_of_randomHoldDurationMin_23() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___randomHoldDurationMin_23)); } inline float get_randomHoldDurationMin_23() const { return ___randomHoldDurationMin_23; } inline float* get_address_of_randomHoldDurationMin_23() { return &___randomHoldDurationMin_23; } inline void set_randomHoldDurationMin_23(float value) { ___randomHoldDurationMin_23 = value; } inline static int32_t get_offset_of_randomHoldDurationMax_24() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___randomHoldDurationMax_24)); } inline float get_randomHoldDurationMax_24() const { return ___randomHoldDurationMax_24; } inline float* get_address_of_randomHoldDurationMax_24() { return &___randomHoldDurationMax_24; } inline void set_randomHoldDurationMax_24(float value) { ___randomHoldDurationMax_24 = value; } inline static int32_t get_offset_of_configReady_28() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___configReady_28)); } inline bool get_configReady_28() const { return ___configReady_28; } inline bool* get_address_of_configReady_28() { return &___configReady_28; } inline void set_configReady_28(bool value) { ___configReady_28 = value; } inline static int32_t get_offset_of_configNotReadyNotified_29() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___configNotReadyNotified_29)); } inline bool get_configNotReadyNotified_29() const { return ___configNotReadyNotified_29; } inline bool* get_address_of_configNotReadyNotified_29() { return &___configNotReadyNotified_29; } inline void set_configNotReadyNotified_29(bool value) { ___configNotReadyNotified_29 = value; } inline static int32_t get_offset_of_warnOnNullRefs_30() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___warnOnNullRefs_30)); } inline bool get_warnOnNullRefs_30() const { return ___warnOnNullRefs_30; } inline bool* get_address_of_warnOnNullRefs_30() { return &___warnOnNullRefs_30; } inline void set_warnOnNullRefs_30(bool value) { ___warnOnNullRefs_30 = value; } inline static int32_t get_offset_of_isAppQuitting_31() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___isAppQuitting_31)); } inline bool get_isAppQuitting_31() const { return ___isAppQuitting_31; } inline bool* get_address_of_isAppQuitting_31() { return &___isAppQuitting_31; } inline void set_isAppQuitting_31(bool value) { ___isAppQuitting_31 = value; } inline static int32_t get_offset_of_inspSalsaLinked_32() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___inspSalsaLinked_32)); } inline bool get_inspSalsaLinked_32() const { return ___inspSalsaLinked_32; } inline bool* get_address_of_inspSalsaLinked_32() { return &___inspSalsaLinked_32; } inline void set_inspSalsaLinked_32(bool value) { ___inspSalsaLinked_32 = value; } inline static int32_t get_offset_of_inspStateFoldoutProcessing_33() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___inspStateFoldoutProcessing_33)); } inline bool get_inspStateFoldoutProcessing_33() const { return ___inspStateFoldoutProcessing_33; } inline bool* get_address_of_inspStateFoldoutProcessing_33() { return &___inspStateFoldoutProcessing_33; } inline void set_inspStateFoldoutProcessing_33(bool value) { ___inspStateFoldoutProcessing_33 = value; } inline static int32_t get_offset_of_inspStateFoldoutSettings_34() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___inspStateFoldoutSettings_34)); } inline bool get_inspStateFoldoutSettings_34() const { return ___inspStateFoldoutSettings_34; } inline bool* get_address_of_inspStateFoldoutSettings_34() { return &___inspStateFoldoutSettings_34; } inline void set_inspStateFoldoutSettings_34(bool value) { ___inspStateFoldoutSettings_34 = value; } inline static int32_t get_offset_of_inspStateFoldoutEmotes_35() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___inspStateFoldoutEmotes_35)); } inline bool get_inspStateFoldoutEmotes_35() const { return ___inspStateFoldoutEmotes_35; } inline bool* get_address_of_inspStateFoldoutEmotes_35() { return &___inspStateFoldoutEmotes_35; } inline void set_inspStateFoldoutEmotes_35(bool value) { ___inspStateFoldoutEmotes_35 = value; } inline static int32_t get_offset_of_inspCollectionDisplayMode_36() { return static_cast(offsetof(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7, ___inspCollectionDisplayMode_36)); } inline bool get_inspCollectionDisplayMode_36() const { return ___inspCollectionDisplayMode_36; } inline bool* get_address_of_inspCollectionDisplayMode_36() { return &___inspCollectionDisplayMode_36; } inline void set_inspCollectionDisplayMode_36(bool value) { ___inspCollectionDisplayMode_36 = value; } }; // CrazyMinnow.SALSA.QueueProcessor struct QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Collections.Generic.List`1 CrazyMinnow.SALSA.QueueProcessor::queueOrderOfOperation List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * ___queueOrderOfOperation_4; // System.Boolean CrazyMinnow.SALSA.QueueProcessor::isQueueOrderOfOperationInitialized bool ___isQueueOrderOfOperationInitialized_5; // System.Collections.Generic.Dictionary`2 CrazyMinnow.SALSA.QueueProcessor::lastWriteHierarchyDictionary Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___lastWriteHierarchyDictionary_6; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.QueueProcessor::baseQueue List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * ___baseQueue_7; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.QueueProcessor::priorityQueueHeads List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * ___priorityQueueHeads_8; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.QueueProcessor::priorityQueueEyes List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * ___priorityQueueEyes_9; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.QueueProcessor::priorityQueueLids List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * ___priorityQueueLids_10; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.QueueProcessor::priorityQueueEmotes List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * ___priorityQueueEmotes_11; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.QueueProcessor::priorityQueueLipsync List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * ___priorityQueueLipsync_12; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.QueueProcessor::priorityQueueBlinks List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * ___priorityQueueBlinks_13; // System.Boolean CrazyMinnow.SALSA.QueueProcessor::useMergeWithInfluencer bool ___useMergeWithInfluencer_14; // System.Boolean CrazyMinnow.SALSA.QueueProcessor::ignoreScaledTime bool ___ignoreScaledTime_15; // CrazyMinnow.SALSA.QueueProcessor/QueueProcessorNotificationArgs CrazyMinnow.SALSA.QueueProcessor::_eventNotificationArgs QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 * ____eventNotificationArgs_17; // System.Single CrazyMinnow.SALSA.QueueProcessor::inspHeight float ___inspHeight_18; // System.Boolean CrazyMinnow.SALSA.QueueProcessor::inspShowHeads bool ___inspShowHeads_19; // System.Boolean CrazyMinnow.SALSA.QueueProcessor::inspShowEmote bool ___inspShowEmote_20; // System.Boolean CrazyMinnow.SALSA.QueueProcessor::inspShowEyes bool ___inspShowEyes_21; // System.Boolean CrazyMinnow.SALSA.QueueProcessor::inspShowLids bool ___inspShowLids_22; // System.Boolean CrazyMinnow.SALSA.QueueProcessor::inspShowLipsync bool ___inspShowLipsync_23; // System.Boolean CrazyMinnow.SALSA.QueueProcessor::inspShowBlinks bool ___inspShowBlinks_24; public: inline static int32_t get_offset_of_queueOrderOfOperation_4() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___queueOrderOfOperation_4)); } inline List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * get_queueOrderOfOperation_4() const { return ___queueOrderOfOperation_4; } inline List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 ** get_address_of_queueOrderOfOperation_4() { return &___queueOrderOfOperation_4; } inline void set_queueOrderOfOperation_4(List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * value) { ___queueOrderOfOperation_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___queueOrderOfOperation_4), (void*)value); } inline static int32_t get_offset_of_isQueueOrderOfOperationInitialized_5() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___isQueueOrderOfOperationInitialized_5)); } inline bool get_isQueueOrderOfOperationInitialized_5() const { return ___isQueueOrderOfOperationInitialized_5; } inline bool* get_address_of_isQueueOrderOfOperationInitialized_5() { return &___isQueueOrderOfOperationInitialized_5; } inline void set_isQueueOrderOfOperationInitialized_5(bool value) { ___isQueueOrderOfOperationInitialized_5 = value; } inline static int32_t get_offset_of_lastWriteHierarchyDictionary_6() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___lastWriteHierarchyDictionary_6)); } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * get_lastWriteHierarchyDictionary_6() const { return ___lastWriteHierarchyDictionary_6; } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 ** get_address_of_lastWriteHierarchyDictionary_6() { return &___lastWriteHierarchyDictionary_6; } inline void set_lastWriteHierarchyDictionary_6(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * value) { ___lastWriteHierarchyDictionary_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastWriteHierarchyDictionary_6), (void*)value); } inline static int32_t get_offset_of_baseQueue_7() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___baseQueue_7)); } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * get_baseQueue_7() const { return ___baseQueue_7; } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD ** get_address_of_baseQueue_7() { return &___baseQueue_7; } inline void set_baseQueue_7(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * value) { ___baseQueue_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseQueue_7), (void*)value); } inline static int32_t get_offset_of_priorityQueueHeads_8() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___priorityQueueHeads_8)); } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * get_priorityQueueHeads_8() const { return ___priorityQueueHeads_8; } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD ** get_address_of_priorityQueueHeads_8() { return &___priorityQueueHeads_8; } inline void set_priorityQueueHeads_8(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * value) { ___priorityQueueHeads_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___priorityQueueHeads_8), (void*)value); } inline static int32_t get_offset_of_priorityQueueEyes_9() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___priorityQueueEyes_9)); } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * get_priorityQueueEyes_9() const { return ___priorityQueueEyes_9; } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD ** get_address_of_priorityQueueEyes_9() { return &___priorityQueueEyes_9; } inline void set_priorityQueueEyes_9(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * value) { ___priorityQueueEyes_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___priorityQueueEyes_9), (void*)value); } inline static int32_t get_offset_of_priorityQueueLids_10() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___priorityQueueLids_10)); } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * get_priorityQueueLids_10() const { return ___priorityQueueLids_10; } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD ** get_address_of_priorityQueueLids_10() { return &___priorityQueueLids_10; } inline void set_priorityQueueLids_10(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * value) { ___priorityQueueLids_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___priorityQueueLids_10), (void*)value); } inline static int32_t get_offset_of_priorityQueueEmotes_11() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___priorityQueueEmotes_11)); } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * get_priorityQueueEmotes_11() const { return ___priorityQueueEmotes_11; } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD ** get_address_of_priorityQueueEmotes_11() { return &___priorityQueueEmotes_11; } inline void set_priorityQueueEmotes_11(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * value) { ___priorityQueueEmotes_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___priorityQueueEmotes_11), (void*)value); } inline static int32_t get_offset_of_priorityQueueLipsync_12() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___priorityQueueLipsync_12)); } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * get_priorityQueueLipsync_12() const { return ___priorityQueueLipsync_12; } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD ** get_address_of_priorityQueueLipsync_12() { return &___priorityQueueLipsync_12; } inline void set_priorityQueueLipsync_12(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * value) { ___priorityQueueLipsync_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___priorityQueueLipsync_12), (void*)value); } inline static int32_t get_offset_of_priorityQueueBlinks_13() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___priorityQueueBlinks_13)); } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * get_priorityQueueBlinks_13() const { return ___priorityQueueBlinks_13; } inline List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD ** get_address_of_priorityQueueBlinks_13() { return &___priorityQueueBlinks_13; } inline void set_priorityQueueBlinks_13(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * value) { ___priorityQueueBlinks_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___priorityQueueBlinks_13), (void*)value); } inline static int32_t get_offset_of_useMergeWithInfluencer_14() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___useMergeWithInfluencer_14)); } inline bool get_useMergeWithInfluencer_14() const { return ___useMergeWithInfluencer_14; } inline bool* get_address_of_useMergeWithInfluencer_14() { return &___useMergeWithInfluencer_14; } inline void set_useMergeWithInfluencer_14(bool value) { ___useMergeWithInfluencer_14 = value; } inline static int32_t get_offset_of_ignoreScaledTime_15() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___ignoreScaledTime_15)); } inline bool get_ignoreScaledTime_15() const { return ___ignoreScaledTime_15; } inline bool* get_address_of_ignoreScaledTime_15() { return &___ignoreScaledTime_15; } inline void set_ignoreScaledTime_15(bool value) { ___ignoreScaledTime_15 = value; } inline static int32_t get_offset_of__eventNotificationArgs_17() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ____eventNotificationArgs_17)); } inline QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 * get__eventNotificationArgs_17() const { return ____eventNotificationArgs_17; } inline QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 ** get_address_of__eventNotificationArgs_17() { return &____eventNotificationArgs_17; } inline void set__eventNotificationArgs_17(QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 * value) { ____eventNotificationArgs_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____eventNotificationArgs_17), (void*)value); } inline static int32_t get_offset_of_inspHeight_18() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___inspHeight_18)); } inline float get_inspHeight_18() const { return ___inspHeight_18; } inline float* get_address_of_inspHeight_18() { return &___inspHeight_18; } inline void set_inspHeight_18(float value) { ___inspHeight_18 = value; } inline static int32_t get_offset_of_inspShowHeads_19() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___inspShowHeads_19)); } inline bool get_inspShowHeads_19() const { return ___inspShowHeads_19; } inline bool* get_address_of_inspShowHeads_19() { return &___inspShowHeads_19; } inline void set_inspShowHeads_19(bool value) { ___inspShowHeads_19 = value; } inline static int32_t get_offset_of_inspShowEmote_20() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___inspShowEmote_20)); } inline bool get_inspShowEmote_20() const { return ___inspShowEmote_20; } inline bool* get_address_of_inspShowEmote_20() { return &___inspShowEmote_20; } inline void set_inspShowEmote_20(bool value) { ___inspShowEmote_20 = value; } inline static int32_t get_offset_of_inspShowEyes_21() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___inspShowEyes_21)); } inline bool get_inspShowEyes_21() const { return ___inspShowEyes_21; } inline bool* get_address_of_inspShowEyes_21() { return &___inspShowEyes_21; } inline void set_inspShowEyes_21(bool value) { ___inspShowEyes_21 = value; } inline static int32_t get_offset_of_inspShowLids_22() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___inspShowLids_22)); } inline bool get_inspShowLids_22() const { return ___inspShowLids_22; } inline bool* get_address_of_inspShowLids_22() { return &___inspShowLids_22; } inline void set_inspShowLids_22(bool value) { ___inspShowLids_22 = value; } inline static int32_t get_offset_of_inspShowLipsync_23() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___inspShowLipsync_23)); } inline bool get_inspShowLipsync_23() const { return ___inspShowLipsync_23; } inline bool* get_address_of_inspShowLipsync_23() { return &___inspShowLipsync_23; } inline void set_inspShowLipsync_23(bool value) { ___inspShowLipsync_23 = value; } inline static int32_t get_offset_of_inspShowBlinks_24() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45, ___inspShowBlinks_24)); } inline bool get_inspShowBlinks_24() const { return ___inspShowBlinks_24; } inline bool* get_address_of_inspShowBlinks_24() { return &___inspShowBlinks_24; } inline void set_inspShowBlinks_24(bool value) { ___inspShowBlinks_24 = value; } }; // CrazyMinnow.SALSA.Salsa struct Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // UnityEngine.AudioSource CrazyMinnow.SALSA.Salsa::audioSrc AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * ___audioSrc_4; // System.Boolean CrazyMinnow.SALSA.Salsa::waitForAudioSource bool ___waitForAudioSource_5; // System.Boolean CrazyMinnow.SALSA.Salsa::useExternalAnalysis bool ___useExternalAnalysis_6; // UnityEngine.GameObject CrazyMinnow.SALSA.Salsa::audioSourceWaitTarget GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___audioSourceWaitTarget_7; // CrazyMinnow.SALSA.QueueProcessor CrazyMinnow.SALSA.Salsa::queueProcessor QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * ___queueProcessor_8; // CrazyMinnow.SALSA.Emoter CrazyMinnow.SALSA.Salsa::emoter Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7 * ___emoter_9; // System.Single CrazyMinnow.SALSA.Salsa::emphasizerTrigger float ___emphasizerTrigger_10; // System.Single CrazyMinnow.SALSA.Salsa::analysisValue float ___analysisValue_11; // System.Single CrazyMinnow.SALSA.Salsa::cachedAnalysisValue float ___cachedAnalysisValue_12; // System.Int32 CrazyMinnow.SALSA.Salsa::prevAudioFrequency int32_t ___prevAudioFrequency_13; // System.Int32 CrazyMinnow.SALSA.Salsa::sampleSize int32_t ___sampleSize_14; // System.Single[] CrazyMinnow.SALSA.Salsa::audioSamples SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioSamples_15; // System.Single CrazyMinnow.SALSA.Salsa::audioUpdateDelay float ___audioUpdateDelay_16; // System.Single CrazyMinnow.SALSA.Salsa::updateTimeCheck float ___updateTimeCheck_17; // System.Int32 CrazyMinnow.SALSA.Salsa::playheadBias int32_t ___playheadBias_18; // System.Boolean CrazyMinnow.SALSA.Salsa::autoAdjustAnalysis bool ___autoAdjustAnalysis_19; // System.Boolean CrazyMinnow.SALSA.Salsa::autoAdjustMicrophone bool ___autoAdjustMicrophone_20; // System.Int32 CrazyMinnow.SALSA.Salsa::microphoneRecordHeadPointer int32_t ___microphoneRecordHeadPointer_21; // System.Boolean CrazyMinnow.SALSA.Salsa::scaleExternalAnalysis bool ___scaleExternalAnalysis_22; // System.Int32 CrazyMinnow.SALSA.Salsa::silencePulseThreshold int32_t ___silencePulseThreshold_23; // System.Int32 CrazyMinnow.SALSA.Salsa::silencePulseCount int32_t ___silencePulseCount_24; // System.Boolean CrazyMinnow.SALSA.Salsa::isSalsaingState bool ___isSalsaingState_25; // System.Single CrazyMinnow.SALSA.Salsa::loCutoff float ___loCutoff_26; // System.Single CrazyMinnow.SALSA.Salsa::hiCutoff float ___hiCutoff_27; // System.Boolean CrazyMinnow.SALSA.Salsa::useAdvDyn bool ___useAdvDyn_28; // System.Single CrazyMinnow.SALSA.Salsa::advDynPrimaryBias float ___advDynPrimaryBias_29; // System.Boolean CrazyMinnow.SALSA.Salsa::useAdvDynJitter bool ___useAdvDynJitter_30; // System.Single CrazyMinnow.SALSA.Salsa::advDynJitterAmount float ___advDynJitterAmount_31; // System.Single CrazyMinnow.SALSA.Salsa::advDynJitterProb float ___advDynJitterProb_32; // System.Boolean CrazyMinnow.SALSA.Salsa::useAdvDynSecondaryMix bool ___useAdvDynSecondaryMix_33; // System.Single CrazyMinnow.SALSA.Salsa::advDynSecondaryMix float ___advDynSecondaryMix_34; // System.Boolean CrazyMinnow.SALSA.Salsa::useAdvDynRollback bool ___useAdvDynRollback_35; // System.Single CrazyMinnow.SALSA.Salsa::advDynRollback float ___advDynRollback_36; // System.Single CrazyMinnow.SALSA.Salsa::globalFrac float ___globalFrac_37; // System.Boolean CrazyMinnow.SALSA.Salsa::usePersistence bool ___usePersistence_38; // System.Boolean CrazyMinnow.SALSA.Salsa::useTimingsOverride bool ___useTimingsOverride_39; // System.Single CrazyMinnow.SALSA.Salsa::globalDurON float ___globalDurON_40; // System.Single CrazyMinnow.SALSA.Salsa::globalDurOFF float ___globalDurOFF_41; // System.Single CrazyMinnow.SALSA.Salsa::globalDurOffBalance float ___globalDurOffBalance_42; // System.Single CrazyMinnow.SALSA.Salsa::originalUpdateDelay float ___originalUpdateDelay_43; // System.Single CrazyMinnow.SALSA.Salsa::globalNuanceBalance float ___globalNuanceBalance_44; // System.Boolean CrazyMinnow.SALSA.Salsa::useEasingOverride bool ___useEasingOverride_45; // CrazyMinnow.SALSA.LerpEasings/EasingType CrazyMinnow.SALSA.Salsa::globalEasing int32_t ___globalEasing_46; // System.Collections.Generic.List`1 CrazyMinnow.SALSA.Salsa::visemes List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * ___visemes_47; // System.Int32 CrazyMinnow.SALSA.Salsa::prevTriggeredIndex int32_t ___prevTriggeredIndex_48; // System.Int32 CrazyMinnow.SALSA.Salsa::secondaryMixTrigger int32_t ___secondaryMixTrigger_49; // System.Collections.IEnumerator CrazyMinnow.SALSA.Salsa::coroWaitForAudio RuntimeObject* ___coroWaitForAudio_57; // System.Collections.IEnumerator CrazyMinnow.SALSA.Salsa::coroWaitForSalsa RuntimeObject* ___coroWaitForSalsa_58; // System.Boolean CrazyMinnow.SALSA.Salsa::isSalsaProcessing bool ___isSalsaProcessing_59; // System.Boolean CrazyMinnow.SALSA.Salsa::configReady bool ___configReady_60; // System.Boolean CrazyMinnow.SALSA.Salsa::configNotReadyNotified bool ___configNotReadyNotified_61; // System.Boolean CrazyMinnow.SALSA.Salsa::warnOnNullRefs bool ___warnOnNullRefs_62; // System.Boolean CrazyMinnow.SALSA.Salsa::isAppQuitting bool ___isAppQuitting_63; // System.Boolean CrazyMinnow.SALSA.Salsa::isDebug bool ___isDebug_64; // System.Boolean CrazyMinnow.SALSA.Salsa::delegatesWired bool ___delegatesWired_65; // System.Boolean CrazyMinnow.SALSA.Salsa::useAudioAnalysis bool ___useAudioAnalysis_66; // System.Boolean CrazyMinnow.SALSA.Salsa::needAudioSource bool ___needAudioSource_67; // CrazyMinnow.SALSA.Salsa/GetExternalAnalysis CrazyMinnow.SALSA.Salsa::getExternalAnalysis GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * ___getExternalAnalysis_68; // CrazyMinnow.SALSA.Salsa/AudioAnalyzer CrazyMinnow.SALSA.Salsa::audioAnalyzer AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C * ___audioAnalyzer_69; // CrazyMinnow.SALSA.Salsa/ClipChannels CrazyMinnow.SALSA.Salsa::clipChannels ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * ___clipChannels_70; // CrazyMinnow.SALSA.Salsa/ClipFrequency CrazyMinnow.SALSA.Salsa::clipFrequency ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * ___clipFrequency_71; // CrazyMinnow.SALSA.Salsa/ClipSampleCount CrazyMinnow.SALSA.Salsa::clipSampleCount ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * ___clipSampleCount_72; // CrazyMinnow.SALSA.Salsa/GetClipData CrazyMinnow.SALSA.Salsa::getClipData GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * ___getClipData_73; // CrazyMinnow.SALSA.Salsa/ClipRecordHeadPointer CrazyMinnow.SALSA.Salsa::clipHeadPointer ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * ___clipHeadPointer_74; // CrazyMinnow.SALSA.Salsa/GetTriggerIndex CrazyMinnow.SALSA.Salsa::getTriggerIndex GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * ___getTriggerIndex_75; // CrazyMinnow.SALSA.Salsa/SalsaNotificationArgs CrazyMinnow.SALSA.Salsa::_eventNotificationArgs SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * ____eventNotificationArgs_80; // System.Boolean CrazyMinnow.SALSA.Salsa::inspStateFoldoutProcessing bool ___inspStateFoldoutProcessing_81; // System.Boolean CrazyMinnow.SALSA.Salsa::inspStateFoldoutSettings bool ___inspStateFoldoutSettings_82; // System.Boolean CrazyMinnow.SALSA.Salsa::inspStateFoldoutVisemes bool ___inspStateFoldoutVisemes_83; // System.Boolean CrazyMinnow.SALSA.Salsa::inspCollectionDisplayMode bool ___inspCollectionDisplayMode_84; // System.Boolean CrazyMinnow.SALSA.Salsa::inspAnalysisDisplay bool ___inspAnalysisDisplay_85; // System.Boolean CrazyMinnow.SALSA.Salsa::inspOverrideSecondaryMix bool ___inspOverrideSecondaryMix_86; // System.Boolean CrazyMinnow.SALSA.Salsa::inspDetailedTimingAdjustments bool ___inspDetailedTimingAdjustments_87; // System.Boolean CrazyMinnow.SALSA.Salsa::isPulseInterrupt bool ___isPulseInterrupt_88; // System.Boolean CrazyMinnow.SALSA.Salsa::doEditorConfigPreview bool ___doEditorConfigPreview_89; // System.String CrazyMinnow.SALSA.Salsa::inspGoOriginalName String_t* ___inspGoOriginalName_90; public: inline static int32_t get_offset_of_audioSrc_4() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___audioSrc_4)); } inline AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * get_audioSrc_4() const { return ___audioSrc_4; } inline AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B ** get_address_of_audioSrc_4() { return &___audioSrc_4; } inline void set_audioSrc_4(AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * value) { ___audioSrc_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___audioSrc_4), (void*)value); } inline static int32_t get_offset_of_waitForAudioSource_5() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___waitForAudioSource_5)); } inline bool get_waitForAudioSource_5() const { return ___waitForAudioSource_5; } inline bool* get_address_of_waitForAudioSource_5() { return &___waitForAudioSource_5; } inline void set_waitForAudioSource_5(bool value) { ___waitForAudioSource_5 = value; } inline static int32_t get_offset_of_useExternalAnalysis_6() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___useExternalAnalysis_6)); } inline bool get_useExternalAnalysis_6() const { return ___useExternalAnalysis_6; } inline bool* get_address_of_useExternalAnalysis_6() { return &___useExternalAnalysis_6; } inline void set_useExternalAnalysis_6(bool value) { ___useExternalAnalysis_6 = value; } inline static int32_t get_offset_of_audioSourceWaitTarget_7() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___audioSourceWaitTarget_7)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_audioSourceWaitTarget_7() const { return ___audioSourceWaitTarget_7; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_audioSourceWaitTarget_7() { return &___audioSourceWaitTarget_7; } inline void set_audioSourceWaitTarget_7(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___audioSourceWaitTarget_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___audioSourceWaitTarget_7), (void*)value); } inline static int32_t get_offset_of_queueProcessor_8() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___queueProcessor_8)); } inline QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * get_queueProcessor_8() const { return ___queueProcessor_8; } inline QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 ** get_address_of_queueProcessor_8() { return &___queueProcessor_8; } inline void set_queueProcessor_8(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * value) { ___queueProcessor_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___queueProcessor_8), (void*)value); } inline static int32_t get_offset_of_emoter_9() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___emoter_9)); } inline Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7 * get_emoter_9() const { return ___emoter_9; } inline Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7 ** get_address_of_emoter_9() { return &___emoter_9; } inline void set_emoter_9(Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7 * value) { ___emoter_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___emoter_9), (void*)value); } inline static int32_t get_offset_of_emphasizerTrigger_10() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___emphasizerTrigger_10)); } inline float get_emphasizerTrigger_10() const { return ___emphasizerTrigger_10; } inline float* get_address_of_emphasizerTrigger_10() { return &___emphasizerTrigger_10; } inline void set_emphasizerTrigger_10(float value) { ___emphasizerTrigger_10 = value; } inline static int32_t get_offset_of_analysisValue_11() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___analysisValue_11)); } inline float get_analysisValue_11() const { return ___analysisValue_11; } inline float* get_address_of_analysisValue_11() { return &___analysisValue_11; } inline void set_analysisValue_11(float value) { ___analysisValue_11 = value; } inline static int32_t get_offset_of_cachedAnalysisValue_12() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___cachedAnalysisValue_12)); } inline float get_cachedAnalysisValue_12() const { return ___cachedAnalysisValue_12; } inline float* get_address_of_cachedAnalysisValue_12() { return &___cachedAnalysisValue_12; } inline void set_cachedAnalysisValue_12(float value) { ___cachedAnalysisValue_12 = value; } inline static int32_t get_offset_of_prevAudioFrequency_13() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___prevAudioFrequency_13)); } inline int32_t get_prevAudioFrequency_13() const { return ___prevAudioFrequency_13; } inline int32_t* get_address_of_prevAudioFrequency_13() { return &___prevAudioFrequency_13; } inline void set_prevAudioFrequency_13(int32_t value) { ___prevAudioFrequency_13 = value; } inline static int32_t get_offset_of_sampleSize_14() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___sampleSize_14)); } inline int32_t get_sampleSize_14() const { return ___sampleSize_14; } inline int32_t* get_address_of_sampleSize_14() { return &___sampleSize_14; } inline void set_sampleSize_14(int32_t value) { ___sampleSize_14 = value; } inline static int32_t get_offset_of_audioSamples_15() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___audioSamples_15)); } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_audioSamples_15() const { return ___audioSamples_15; } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_audioSamples_15() { return &___audioSamples_15; } inline void set_audioSamples_15(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value) { ___audioSamples_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___audioSamples_15), (void*)value); } inline static int32_t get_offset_of_audioUpdateDelay_16() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___audioUpdateDelay_16)); } inline float get_audioUpdateDelay_16() const { return ___audioUpdateDelay_16; } inline float* get_address_of_audioUpdateDelay_16() { return &___audioUpdateDelay_16; } inline void set_audioUpdateDelay_16(float value) { ___audioUpdateDelay_16 = value; } inline static int32_t get_offset_of_updateTimeCheck_17() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___updateTimeCheck_17)); } inline float get_updateTimeCheck_17() const { return ___updateTimeCheck_17; } inline float* get_address_of_updateTimeCheck_17() { return &___updateTimeCheck_17; } inline void set_updateTimeCheck_17(float value) { ___updateTimeCheck_17 = value; } inline static int32_t get_offset_of_playheadBias_18() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___playheadBias_18)); } inline int32_t get_playheadBias_18() const { return ___playheadBias_18; } inline int32_t* get_address_of_playheadBias_18() { return &___playheadBias_18; } inline void set_playheadBias_18(int32_t value) { ___playheadBias_18 = value; } inline static int32_t get_offset_of_autoAdjustAnalysis_19() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___autoAdjustAnalysis_19)); } inline bool get_autoAdjustAnalysis_19() const { return ___autoAdjustAnalysis_19; } inline bool* get_address_of_autoAdjustAnalysis_19() { return &___autoAdjustAnalysis_19; } inline void set_autoAdjustAnalysis_19(bool value) { ___autoAdjustAnalysis_19 = value; } inline static int32_t get_offset_of_autoAdjustMicrophone_20() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___autoAdjustMicrophone_20)); } inline bool get_autoAdjustMicrophone_20() const { return ___autoAdjustMicrophone_20; } inline bool* get_address_of_autoAdjustMicrophone_20() { return &___autoAdjustMicrophone_20; } inline void set_autoAdjustMicrophone_20(bool value) { ___autoAdjustMicrophone_20 = value; } inline static int32_t get_offset_of_microphoneRecordHeadPointer_21() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___microphoneRecordHeadPointer_21)); } inline int32_t get_microphoneRecordHeadPointer_21() const { return ___microphoneRecordHeadPointer_21; } inline int32_t* get_address_of_microphoneRecordHeadPointer_21() { return &___microphoneRecordHeadPointer_21; } inline void set_microphoneRecordHeadPointer_21(int32_t value) { ___microphoneRecordHeadPointer_21 = value; } inline static int32_t get_offset_of_scaleExternalAnalysis_22() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___scaleExternalAnalysis_22)); } inline bool get_scaleExternalAnalysis_22() const { return ___scaleExternalAnalysis_22; } inline bool* get_address_of_scaleExternalAnalysis_22() { return &___scaleExternalAnalysis_22; } inline void set_scaleExternalAnalysis_22(bool value) { ___scaleExternalAnalysis_22 = value; } inline static int32_t get_offset_of_silencePulseThreshold_23() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___silencePulseThreshold_23)); } inline int32_t get_silencePulseThreshold_23() const { return ___silencePulseThreshold_23; } inline int32_t* get_address_of_silencePulseThreshold_23() { return &___silencePulseThreshold_23; } inline void set_silencePulseThreshold_23(int32_t value) { ___silencePulseThreshold_23 = value; } inline static int32_t get_offset_of_silencePulseCount_24() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___silencePulseCount_24)); } inline int32_t get_silencePulseCount_24() const { return ___silencePulseCount_24; } inline int32_t* get_address_of_silencePulseCount_24() { return &___silencePulseCount_24; } inline void set_silencePulseCount_24(int32_t value) { ___silencePulseCount_24 = value; } inline static int32_t get_offset_of_isSalsaingState_25() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___isSalsaingState_25)); } inline bool get_isSalsaingState_25() const { return ___isSalsaingState_25; } inline bool* get_address_of_isSalsaingState_25() { return &___isSalsaingState_25; } inline void set_isSalsaingState_25(bool value) { ___isSalsaingState_25 = value; } inline static int32_t get_offset_of_loCutoff_26() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___loCutoff_26)); } inline float get_loCutoff_26() const { return ___loCutoff_26; } inline float* get_address_of_loCutoff_26() { return &___loCutoff_26; } inline void set_loCutoff_26(float value) { ___loCutoff_26 = value; } inline static int32_t get_offset_of_hiCutoff_27() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___hiCutoff_27)); } inline float get_hiCutoff_27() const { return ___hiCutoff_27; } inline float* get_address_of_hiCutoff_27() { return &___hiCutoff_27; } inline void set_hiCutoff_27(float value) { ___hiCutoff_27 = value; } inline static int32_t get_offset_of_useAdvDyn_28() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___useAdvDyn_28)); } inline bool get_useAdvDyn_28() const { return ___useAdvDyn_28; } inline bool* get_address_of_useAdvDyn_28() { return &___useAdvDyn_28; } inline void set_useAdvDyn_28(bool value) { ___useAdvDyn_28 = value; } inline static int32_t get_offset_of_advDynPrimaryBias_29() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___advDynPrimaryBias_29)); } inline float get_advDynPrimaryBias_29() const { return ___advDynPrimaryBias_29; } inline float* get_address_of_advDynPrimaryBias_29() { return &___advDynPrimaryBias_29; } inline void set_advDynPrimaryBias_29(float value) { ___advDynPrimaryBias_29 = value; } inline static int32_t get_offset_of_useAdvDynJitter_30() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___useAdvDynJitter_30)); } inline bool get_useAdvDynJitter_30() const { return ___useAdvDynJitter_30; } inline bool* get_address_of_useAdvDynJitter_30() { return &___useAdvDynJitter_30; } inline void set_useAdvDynJitter_30(bool value) { ___useAdvDynJitter_30 = value; } inline static int32_t get_offset_of_advDynJitterAmount_31() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___advDynJitterAmount_31)); } inline float get_advDynJitterAmount_31() const { return ___advDynJitterAmount_31; } inline float* get_address_of_advDynJitterAmount_31() { return &___advDynJitterAmount_31; } inline void set_advDynJitterAmount_31(float value) { ___advDynJitterAmount_31 = value; } inline static int32_t get_offset_of_advDynJitterProb_32() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___advDynJitterProb_32)); } inline float get_advDynJitterProb_32() const { return ___advDynJitterProb_32; } inline float* get_address_of_advDynJitterProb_32() { return &___advDynJitterProb_32; } inline void set_advDynJitterProb_32(float value) { ___advDynJitterProb_32 = value; } inline static int32_t get_offset_of_useAdvDynSecondaryMix_33() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___useAdvDynSecondaryMix_33)); } inline bool get_useAdvDynSecondaryMix_33() const { return ___useAdvDynSecondaryMix_33; } inline bool* get_address_of_useAdvDynSecondaryMix_33() { return &___useAdvDynSecondaryMix_33; } inline void set_useAdvDynSecondaryMix_33(bool value) { ___useAdvDynSecondaryMix_33 = value; } inline static int32_t get_offset_of_advDynSecondaryMix_34() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___advDynSecondaryMix_34)); } inline float get_advDynSecondaryMix_34() const { return ___advDynSecondaryMix_34; } inline float* get_address_of_advDynSecondaryMix_34() { return &___advDynSecondaryMix_34; } inline void set_advDynSecondaryMix_34(float value) { ___advDynSecondaryMix_34 = value; } inline static int32_t get_offset_of_useAdvDynRollback_35() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___useAdvDynRollback_35)); } inline bool get_useAdvDynRollback_35() const { return ___useAdvDynRollback_35; } inline bool* get_address_of_useAdvDynRollback_35() { return &___useAdvDynRollback_35; } inline void set_useAdvDynRollback_35(bool value) { ___useAdvDynRollback_35 = value; } inline static int32_t get_offset_of_advDynRollback_36() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___advDynRollback_36)); } inline float get_advDynRollback_36() const { return ___advDynRollback_36; } inline float* get_address_of_advDynRollback_36() { return &___advDynRollback_36; } inline void set_advDynRollback_36(float value) { ___advDynRollback_36 = value; } inline static int32_t get_offset_of_globalFrac_37() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___globalFrac_37)); } inline float get_globalFrac_37() const { return ___globalFrac_37; } inline float* get_address_of_globalFrac_37() { return &___globalFrac_37; } inline void set_globalFrac_37(float value) { ___globalFrac_37 = value; } inline static int32_t get_offset_of_usePersistence_38() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___usePersistence_38)); } inline bool get_usePersistence_38() const { return ___usePersistence_38; } inline bool* get_address_of_usePersistence_38() { return &___usePersistence_38; } inline void set_usePersistence_38(bool value) { ___usePersistence_38 = value; } inline static int32_t get_offset_of_useTimingsOverride_39() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___useTimingsOverride_39)); } inline bool get_useTimingsOverride_39() const { return ___useTimingsOverride_39; } inline bool* get_address_of_useTimingsOverride_39() { return &___useTimingsOverride_39; } inline void set_useTimingsOverride_39(bool value) { ___useTimingsOverride_39 = value; } inline static int32_t get_offset_of_globalDurON_40() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___globalDurON_40)); } inline float get_globalDurON_40() const { return ___globalDurON_40; } inline float* get_address_of_globalDurON_40() { return &___globalDurON_40; } inline void set_globalDurON_40(float value) { ___globalDurON_40 = value; } inline static int32_t get_offset_of_globalDurOFF_41() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___globalDurOFF_41)); } inline float get_globalDurOFF_41() const { return ___globalDurOFF_41; } inline float* get_address_of_globalDurOFF_41() { return &___globalDurOFF_41; } inline void set_globalDurOFF_41(float value) { ___globalDurOFF_41 = value; } inline static int32_t get_offset_of_globalDurOffBalance_42() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___globalDurOffBalance_42)); } inline float get_globalDurOffBalance_42() const { return ___globalDurOffBalance_42; } inline float* get_address_of_globalDurOffBalance_42() { return &___globalDurOffBalance_42; } inline void set_globalDurOffBalance_42(float value) { ___globalDurOffBalance_42 = value; } inline static int32_t get_offset_of_originalUpdateDelay_43() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___originalUpdateDelay_43)); } inline float get_originalUpdateDelay_43() const { return ___originalUpdateDelay_43; } inline float* get_address_of_originalUpdateDelay_43() { return &___originalUpdateDelay_43; } inline void set_originalUpdateDelay_43(float value) { ___originalUpdateDelay_43 = value; } inline static int32_t get_offset_of_globalNuanceBalance_44() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___globalNuanceBalance_44)); } inline float get_globalNuanceBalance_44() const { return ___globalNuanceBalance_44; } inline float* get_address_of_globalNuanceBalance_44() { return &___globalNuanceBalance_44; } inline void set_globalNuanceBalance_44(float value) { ___globalNuanceBalance_44 = value; } inline static int32_t get_offset_of_useEasingOverride_45() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___useEasingOverride_45)); } inline bool get_useEasingOverride_45() const { return ___useEasingOverride_45; } inline bool* get_address_of_useEasingOverride_45() { return &___useEasingOverride_45; } inline void set_useEasingOverride_45(bool value) { ___useEasingOverride_45 = value; } inline static int32_t get_offset_of_globalEasing_46() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___globalEasing_46)); } inline int32_t get_globalEasing_46() const { return ___globalEasing_46; } inline int32_t* get_address_of_globalEasing_46() { return &___globalEasing_46; } inline void set_globalEasing_46(int32_t value) { ___globalEasing_46 = value; } inline static int32_t get_offset_of_visemes_47() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___visemes_47)); } inline List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * get_visemes_47() const { return ___visemes_47; } inline List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 ** get_address_of_visemes_47() { return &___visemes_47; } inline void set_visemes_47(List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * value) { ___visemes_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___visemes_47), (void*)value); } inline static int32_t get_offset_of_prevTriggeredIndex_48() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___prevTriggeredIndex_48)); } inline int32_t get_prevTriggeredIndex_48() const { return ___prevTriggeredIndex_48; } inline int32_t* get_address_of_prevTriggeredIndex_48() { return &___prevTriggeredIndex_48; } inline void set_prevTriggeredIndex_48(int32_t value) { ___prevTriggeredIndex_48 = value; } inline static int32_t get_offset_of_secondaryMixTrigger_49() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___secondaryMixTrigger_49)); } inline int32_t get_secondaryMixTrigger_49() const { return ___secondaryMixTrigger_49; } inline int32_t* get_address_of_secondaryMixTrigger_49() { return &___secondaryMixTrigger_49; } inline void set_secondaryMixTrigger_49(int32_t value) { ___secondaryMixTrigger_49 = value; } inline static int32_t get_offset_of_coroWaitForAudio_57() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___coroWaitForAudio_57)); } inline RuntimeObject* get_coroWaitForAudio_57() const { return ___coroWaitForAudio_57; } inline RuntimeObject** get_address_of_coroWaitForAudio_57() { return &___coroWaitForAudio_57; } inline void set_coroWaitForAudio_57(RuntimeObject* value) { ___coroWaitForAudio_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___coroWaitForAudio_57), (void*)value); } inline static int32_t get_offset_of_coroWaitForSalsa_58() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___coroWaitForSalsa_58)); } inline RuntimeObject* get_coroWaitForSalsa_58() const { return ___coroWaitForSalsa_58; } inline RuntimeObject** get_address_of_coroWaitForSalsa_58() { return &___coroWaitForSalsa_58; } inline void set_coroWaitForSalsa_58(RuntimeObject* value) { ___coroWaitForSalsa_58 = value; Il2CppCodeGenWriteBarrier((void**)(&___coroWaitForSalsa_58), (void*)value); } inline static int32_t get_offset_of_isSalsaProcessing_59() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___isSalsaProcessing_59)); } inline bool get_isSalsaProcessing_59() const { return ___isSalsaProcessing_59; } inline bool* get_address_of_isSalsaProcessing_59() { return &___isSalsaProcessing_59; } inline void set_isSalsaProcessing_59(bool value) { ___isSalsaProcessing_59 = value; } inline static int32_t get_offset_of_configReady_60() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___configReady_60)); } inline bool get_configReady_60() const { return ___configReady_60; } inline bool* get_address_of_configReady_60() { return &___configReady_60; } inline void set_configReady_60(bool value) { ___configReady_60 = value; } inline static int32_t get_offset_of_configNotReadyNotified_61() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___configNotReadyNotified_61)); } inline bool get_configNotReadyNotified_61() const { return ___configNotReadyNotified_61; } inline bool* get_address_of_configNotReadyNotified_61() { return &___configNotReadyNotified_61; } inline void set_configNotReadyNotified_61(bool value) { ___configNotReadyNotified_61 = value; } inline static int32_t get_offset_of_warnOnNullRefs_62() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___warnOnNullRefs_62)); } inline bool get_warnOnNullRefs_62() const { return ___warnOnNullRefs_62; } inline bool* get_address_of_warnOnNullRefs_62() { return &___warnOnNullRefs_62; } inline void set_warnOnNullRefs_62(bool value) { ___warnOnNullRefs_62 = value; } inline static int32_t get_offset_of_isAppQuitting_63() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___isAppQuitting_63)); } inline bool get_isAppQuitting_63() const { return ___isAppQuitting_63; } inline bool* get_address_of_isAppQuitting_63() { return &___isAppQuitting_63; } inline void set_isAppQuitting_63(bool value) { ___isAppQuitting_63 = value; } inline static int32_t get_offset_of_isDebug_64() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___isDebug_64)); } inline bool get_isDebug_64() const { return ___isDebug_64; } inline bool* get_address_of_isDebug_64() { return &___isDebug_64; } inline void set_isDebug_64(bool value) { ___isDebug_64 = value; } inline static int32_t get_offset_of_delegatesWired_65() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___delegatesWired_65)); } inline bool get_delegatesWired_65() const { return ___delegatesWired_65; } inline bool* get_address_of_delegatesWired_65() { return &___delegatesWired_65; } inline void set_delegatesWired_65(bool value) { ___delegatesWired_65 = value; } inline static int32_t get_offset_of_useAudioAnalysis_66() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___useAudioAnalysis_66)); } inline bool get_useAudioAnalysis_66() const { return ___useAudioAnalysis_66; } inline bool* get_address_of_useAudioAnalysis_66() { return &___useAudioAnalysis_66; } inline void set_useAudioAnalysis_66(bool value) { ___useAudioAnalysis_66 = value; } inline static int32_t get_offset_of_needAudioSource_67() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___needAudioSource_67)); } inline bool get_needAudioSource_67() const { return ___needAudioSource_67; } inline bool* get_address_of_needAudioSource_67() { return &___needAudioSource_67; } inline void set_needAudioSource_67(bool value) { ___needAudioSource_67 = value; } inline static int32_t get_offset_of_getExternalAnalysis_68() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___getExternalAnalysis_68)); } inline GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * get_getExternalAnalysis_68() const { return ___getExternalAnalysis_68; } inline GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 ** get_address_of_getExternalAnalysis_68() { return &___getExternalAnalysis_68; } inline void set_getExternalAnalysis_68(GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * value) { ___getExternalAnalysis_68 = value; Il2CppCodeGenWriteBarrier((void**)(&___getExternalAnalysis_68), (void*)value); } inline static int32_t get_offset_of_audioAnalyzer_69() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___audioAnalyzer_69)); } inline AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C * get_audioAnalyzer_69() const { return ___audioAnalyzer_69; } inline AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C ** get_address_of_audioAnalyzer_69() { return &___audioAnalyzer_69; } inline void set_audioAnalyzer_69(AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C * value) { ___audioAnalyzer_69 = value; Il2CppCodeGenWriteBarrier((void**)(&___audioAnalyzer_69), (void*)value); } inline static int32_t get_offset_of_clipChannels_70() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___clipChannels_70)); } inline ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * get_clipChannels_70() const { return ___clipChannels_70; } inline ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 ** get_address_of_clipChannels_70() { return &___clipChannels_70; } inline void set_clipChannels_70(ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * value) { ___clipChannels_70 = value; Il2CppCodeGenWriteBarrier((void**)(&___clipChannels_70), (void*)value); } inline static int32_t get_offset_of_clipFrequency_71() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___clipFrequency_71)); } inline ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * get_clipFrequency_71() const { return ___clipFrequency_71; } inline ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE ** get_address_of_clipFrequency_71() { return &___clipFrequency_71; } inline void set_clipFrequency_71(ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * value) { ___clipFrequency_71 = value; Il2CppCodeGenWriteBarrier((void**)(&___clipFrequency_71), (void*)value); } inline static int32_t get_offset_of_clipSampleCount_72() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___clipSampleCount_72)); } inline ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * get_clipSampleCount_72() const { return ___clipSampleCount_72; } inline ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 ** get_address_of_clipSampleCount_72() { return &___clipSampleCount_72; } inline void set_clipSampleCount_72(ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * value) { ___clipSampleCount_72 = value; Il2CppCodeGenWriteBarrier((void**)(&___clipSampleCount_72), (void*)value); } inline static int32_t get_offset_of_getClipData_73() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___getClipData_73)); } inline GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * get_getClipData_73() const { return ___getClipData_73; } inline GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB ** get_address_of_getClipData_73() { return &___getClipData_73; } inline void set_getClipData_73(GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * value) { ___getClipData_73 = value; Il2CppCodeGenWriteBarrier((void**)(&___getClipData_73), (void*)value); } inline static int32_t get_offset_of_clipHeadPointer_74() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___clipHeadPointer_74)); } inline ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * get_clipHeadPointer_74() const { return ___clipHeadPointer_74; } inline ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB ** get_address_of_clipHeadPointer_74() { return &___clipHeadPointer_74; } inline void set_clipHeadPointer_74(ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * value) { ___clipHeadPointer_74 = value; Il2CppCodeGenWriteBarrier((void**)(&___clipHeadPointer_74), (void*)value); } inline static int32_t get_offset_of_getTriggerIndex_75() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___getTriggerIndex_75)); } inline GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * get_getTriggerIndex_75() const { return ___getTriggerIndex_75; } inline GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD ** get_address_of_getTriggerIndex_75() { return &___getTriggerIndex_75; } inline void set_getTriggerIndex_75(GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * value) { ___getTriggerIndex_75 = value; Il2CppCodeGenWriteBarrier((void**)(&___getTriggerIndex_75), (void*)value); } inline static int32_t get_offset_of__eventNotificationArgs_80() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ____eventNotificationArgs_80)); } inline SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * get__eventNotificationArgs_80() const { return ____eventNotificationArgs_80; } inline SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F ** get_address_of__eventNotificationArgs_80() { return &____eventNotificationArgs_80; } inline void set__eventNotificationArgs_80(SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * value) { ____eventNotificationArgs_80 = value; Il2CppCodeGenWriteBarrier((void**)(&____eventNotificationArgs_80), (void*)value); } inline static int32_t get_offset_of_inspStateFoldoutProcessing_81() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___inspStateFoldoutProcessing_81)); } inline bool get_inspStateFoldoutProcessing_81() const { return ___inspStateFoldoutProcessing_81; } inline bool* get_address_of_inspStateFoldoutProcessing_81() { return &___inspStateFoldoutProcessing_81; } inline void set_inspStateFoldoutProcessing_81(bool value) { ___inspStateFoldoutProcessing_81 = value; } inline static int32_t get_offset_of_inspStateFoldoutSettings_82() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___inspStateFoldoutSettings_82)); } inline bool get_inspStateFoldoutSettings_82() const { return ___inspStateFoldoutSettings_82; } inline bool* get_address_of_inspStateFoldoutSettings_82() { return &___inspStateFoldoutSettings_82; } inline void set_inspStateFoldoutSettings_82(bool value) { ___inspStateFoldoutSettings_82 = value; } inline static int32_t get_offset_of_inspStateFoldoutVisemes_83() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___inspStateFoldoutVisemes_83)); } inline bool get_inspStateFoldoutVisemes_83() const { return ___inspStateFoldoutVisemes_83; } inline bool* get_address_of_inspStateFoldoutVisemes_83() { return &___inspStateFoldoutVisemes_83; } inline void set_inspStateFoldoutVisemes_83(bool value) { ___inspStateFoldoutVisemes_83 = value; } inline static int32_t get_offset_of_inspCollectionDisplayMode_84() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___inspCollectionDisplayMode_84)); } inline bool get_inspCollectionDisplayMode_84() const { return ___inspCollectionDisplayMode_84; } inline bool* get_address_of_inspCollectionDisplayMode_84() { return &___inspCollectionDisplayMode_84; } inline void set_inspCollectionDisplayMode_84(bool value) { ___inspCollectionDisplayMode_84 = value; } inline static int32_t get_offset_of_inspAnalysisDisplay_85() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___inspAnalysisDisplay_85)); } inline bool get_inspAnalysisDisplay_85() const { return ___inspAnalysisDisplay_85; } inline bool* get_address_of_inspAnalysisDisplay_85() { return &___inspAnalysisDisplay_85; } inline void set_inspAnalysisDisplay_85(bool value) { ___inspAnalysisDisplay_85 = value; } inline static int32_t get_offset_of_inspOverrideSecondaryMix_86() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___inspOverrideSecondaryMix_86)); } inline bool get_inspOverrideSecondaryMix_86() const { return ___inspOverrideSecondaryMix_86; } inline bool* get_address_of_inspOverrideSecondaryMix_86() { return &___inspOverrideSecondaryMix_86; } inline void set_inspOverrideSecondaryMix_86(bool value) { ___inspOverrideSecondaryMix_86 = value; } inline static int32_t get_offset_of_inspDetailedTimingAdjustments_87() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___inspDetailedTimingAdjustments_87)); } inline bool get_inspDetailedTimingAdjustments_87() const { return ___inspDetailedTimingAdjustments_87; } inline bool* get_address_of_inspDetailedTimingAdjustments_87() { return &___inspDetailedTimingAdjustments_87; } inline void set_inspDetailedTimingAdjustments_87(bool value) { ___inspDetailedTimingAdjustments_87 = value; } inline static int32_t get_offset_of_isPulseInterrupt_88() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___isPulseInterrupt_88)); } inline bool get_isPulseInterrupt_88() const { return ___isPulseInterrupt_88; } inline bool* get_address_of_isPulseInterrupt_88() { return &___isPulseInterrupt_88; } inline void set_isPulseInterrupt_88(bool value) { ___isPulseInterrupt_88 = value; } inline static int32_t get_offset_of_doEditorConfigPreview_89() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___doEditorConfigPreview_89)); } inline bool get_doEditorConfigPreview_89() const { return ___doEditorConfigPreview_89; } inline bool* get_address_of_doEditorConfigPreview_89() { return &___doEditorConfigPreview_89; } inline void set_doEditorConfigPreview_89(bool value) { ___doEditorConfigPreview_89 = value; } inline static int32_t get_offset_of_inspGoOriginalName_90() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B, ___inspGoOriginalName_90)); } inline String_t* get_inspGoOriginalName_90() const { return ___inspGoOriginalName_90; } inline String_t** get_address_of_inspGoOriginalName_90() { return &___inspGoOriginalName_90; } inline void set_inspGoOriginalName_90(String_t* value) { ___inspGoOriginalName_90 = value; Il2CppCodeGenWriteBarrier((void**)(&___inspGoOriginalName_90), (void*)value); } }; // CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer struct SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // CrazyMinnow.SALSA.Salsa CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::salsaInstance Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * ___salsaInstance_4; // System.Int32 CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::bufferSize int32_t ___bufferSize_5; // System.Single[] CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::samples SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___samples_6; // System.Single CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::silenceThreshold float ___silenceThreshold_7; // System.Single CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::timingStartPoint float ___timingStartPoint_8; // System.Single CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::timingEndVariance float ___timingEndVariance_9; // System.Single CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::silenceSampleWeight float ___silenceSampleWeight_10; // System.Int32 CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::silenceHits int32_t ___silenceHits_11; // System.Boolean CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::salsaCanAnalyzeAudio bool ___salsaCanAnalyzeAudio_12; // CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer/SilenceAnalyzer CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::silenceAnalyzer SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB * ___silenceAnalyzer_13; public: inline static int32_t get_offset_of_salsaInstance_4() { return static_cast(offsetof(SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1, ___salsaInstance_4)); } inline Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * get_salsaInstance_4() const { return ___salsaInstance_4; } inline Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B ** get_address_of_salsaInstance_4() { return &___salsaInstance_4; } inline void set_salsaInstance_4(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * value) { ___salsaInstance_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___salsaInstance_4), (void*)value); } inline static int32_t get_offset_of_bufferSize_5() { return static_cast(offsetof(SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1, ___bufferSize_5)); } inline int32_t get_bufferSize_5() const { return ___bufferSize_5; } inline int32_t* get_address_of_bufferSize_5() { return &___bufferSize_5; } inline void set_bufferSize_5(int32_t value) { ___bufferSize_5 = value; } inline static int32_t get_offset_of_samples_6() { return static_cast(offsetof(SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1, ___samples_6)); } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_samples_6() const { return ___samples_6; } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_samples_6() { return &___samples_6; } inline void set_samples_6(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value) { ___samples_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___samples_6), (void*)value); } inline static int32_t get_offset_of_silenceThreshold_7() { return static_cast(offsetof(SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1, ___silenceThreshold_7)); } inline float get_silenceThreshold_7() const { return ___silenceThreshold_7; } inline float* get_address_of_silenceThreshold_7() { return &___silenceThreshold_7; } inline void set_silenceThreshold_7(float value) { ___silenceThreshold_7 = value; } inline static int32_t get_offset_of_timingStartPoint_8() { return static_cast(offsetof(SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1, ___timingStartPoint_8)); } inline float get_timingStartPoint_8() const { return ___timingStartPoint_8; } inline float* get_address_of_timingStartPoint_8() { return &___timingStartPoint_8; } inline void set_timingStartPoint_8(float value) { ___timingStartPoint_8 = value; } inline static int32_t get_offset_of_timingEndVariance_9() { return static_cast(offsetof(SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1, ___timingEndVariance_9)); } inline float get_timingEndVariance_9() const { return ___timingEndVariance_9; } inline float* get_address_of_timingEndVariance_9() { return &___timingEndVariance_9; } inline void set_timingEndVariance_9(float value) { ___timingEndVariance_9 = value; } inline static int32_t get_offset_of_silenceSampleWeight_10() { return static_cast(offsetof(SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1, ___silenceSampleWeight_10)); } inline float get_silenceSampleWeight_10() const { return ___silenceSampleWeight_10; } inline float* get_address_of_silenceSampleWeight_10() { return &___silenceSampleWeight_10; } inline void set_silenceSampleWeight_10(float value) { ___silenceSampleWeight_10 = value; } inline static int32_t get_offset_of_silenceHits_11() { return static_cast(offsetof(SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1, ___silenceHits_11)); } inline int32_t get_silenceHits_11() const { return ___silenceHits_11; } inline int32_t* get_address_of_silenceHits_11() { return &___silenceHits_11; } inline void set_silenceHits_11(int32_t value) { ___silenceHits_11 = value; } inline static int32_t get_offset_of_salsaCanAnalyzeAudio_12() { return static_cast(offsetof(SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1, ___salsaCanAnalyzeAudio_12)); } inline bool get_salsaCanAnalyzeAudio_12() const { return ___salsaCanAnalyzeAudio_12; } inline bool* get_address_of_salsaCanAnalyzeAudio_12() { return &___salsaCanAnalyzeAudio_12; } inline void set_salsaCanAnalyzeAudio_12(bool value) { ___salsaCanAnalyzeAudio_12 = value; } inline static int32_t get_offset_of_silenceAnalyzer_13() { return static_cast(offsetof(SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1, ___silenceAnalyzer_13)); } inline SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB * get_silenceAnalyzer_13() const { return ___silenceAnalyzer_13; } inline SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB ** get_address_of_silenceAnalyzer_13() { return &___silenceAnalyzer_13; } inline void set_silenceAnalyzer_13(SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB * value) { ___silenceAnalyzer_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___silenceAnalyzer_13), (void*)value); } }; // CrazyMinnow.SALSA.SalsaSettingsConfigurator struct SalsaSettingsConfigurator_tF024356AC0D8C5BC3A3FFD1D1EDDE9AAB43D7D00 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.String CrazyMinnow.SALSA.SalsaSettingsConfigurator::texturePropertyName String_t* ___texturePropertyName_4; public: inline static int32_t get_offset_of_texturePropertyName_4() { return static_cast(offsetof(SalsaSettingsConfigurator_tF024356AC0D8C5BC3A3FFD1D1EDDE9AAB43D7D00, ___texturePropertyName_4)); } inline String_t* get_texturePropertyName_4() const { return ___texturePropertyName_4; } inline String_t** get_address_of_texturePropertyName_4() { return &___texturePropertyName_4; } inline void set_texturePropertyName_4(String_t* value) { ___texturePropertyName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___texturePropertyName_4), (void*)value); } }; // UnityEngine.EventSystems.UIBehaviour struct UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: public: }; // CrazyMinnow.SALSA.UmaUepEditorPreviewTwirler struct UmaUepEditorPreviewTwirler_t6DF6715F034E864B3C128D43A387501C5FEDBB83 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: public: }; // CrazyMinnow.SALSA.UmaUepProxy struct UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // CrazyMinnow.SALSA.UmaUepProxy/UepPose[] CrazyMinnow.SALSA.UmaUepProxy::poses UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* ___poses_5; // System.Boolean CrazyMinnow.SALSA.UmaUepProxy::isInitialized bool ___isInitialized_6; // System.Boolean CrazyMinnow.SALSA.UmaUepProxy::isPreviewing bool ___isPreviewing_7; public: inline static int32_t get_offset_of_poses_5() { return static_cast(offsetof(UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9, ___poses_5)); } inline UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* get_poses_5() const { return ___poses_5; } inline UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9** get_address_of_poses_5() { return &___poses_5; } inline void set_poses_5(UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* value) { ___poses_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___poses_5), (void*)value); } inline static int32_t get_offset_of_isInitialized_6() { return static_cast(offsetof(UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9, ___isInitialized_6)); } inline bool get_isInitialized_6() const { return ___isInitialized_6; } inline bool* get_address_of_isInitialized_6() { return &___isInitialized_6; } inline void set_isInitialized_6(bool value) { ___isInitialized_6 = value; } inline static int32_t get_offset_of_isPreviewing_7() { return static_cast(offsetof(UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9, ___isPreviewing_7)); } inline bool get_isPreviewing_7() const { return ___isPreviewing_7; } inline bool* get_address_of_isPreviewing_7() { return &___isPreviewing_7; } inline void set_isPreviewing_7(bool value) { ___isPreviewing_7 = value; } }; // UnityEngine.UI.Graphic struct Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 : public UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E { public: // UnityEngine.Material UnityEngine.UI.Graphic::m_Material Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___m_Material_6; // UnityEngine.Color UnityEngine.UI.Graphic::m_Color Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_Color_7; // System.Boolean UnityEngine.UI.Graphic::m_SkipLayoutUpdate bool ___m_SkipLayoutUpdate_8; // System.Boolean UnityEngine.UI.Graphic::m_SkipMaterialUpdate bool ___m_SkipMaterialUpdate_9; // System.Boolean UnityEngine.UI.Graphic::m_RaycastTarget bool ___m_RaycastTarget_10; // System.Boolean UnityEngine.UI.Graphic::m_RaycastTargetCache bool ___m_RaycastTargetCache_11; // UnityEngine.Vector4 UnityEngine.UI.Graphic::m_RaycastPadding Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___m_RaycastPadding_12; // UnityEngine.RectTransform UnityEngine.UI.Graphic::m_RectTransform RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___m_RectTransform_13; // UnityEngine.CanvasRenderer UnityEngine.UI.Graphic::m_CanvasRenderer CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * ___m_CanvasRenderer_14; // UnityEngine.Canvas UnityEngine.UI.Graphic::m_Canvas Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * ___m_Canvas_15; // System.Boolean UnityEngine.UI.Graphic::m_VertsDirty bool ___m_VertsDirty_16; // System.Boolean UnityEngine.UI.Graphic::m_MaterialDirty bool ___m_MaterialDirty_17; // UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyLayoutCallback UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___m_OnDirtyLayoutCallback_18; // UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyVertsCallback UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___m_OnDirtyVertsCallback_19; // UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyMaterialCallback UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___m_OnDirtyMaterialCallback_20; // UnityEngine.Mesh UnityEngine.UI.Graphic::m_CachedMesh Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___m_CachedMesh_23; // UnityEngine.Vector2[] UnityEngine.UI.Graphic::m_CachedUvs Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* ___m_CachedUvs_24; // UnityEngine.UI.CoroutineTween.TweenRunner`1 UnityEngine.UI.Graphic::m_ColorTweenRunner TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * ___m_ColorTweenRunner_25; // System.Boolean UnityEngine.UI.Graphic::k__BackingField bool ___U3CuseLegacyMeshGenerationU3Ek__BackingField_26; public: inline static int32_t get_offset_of_m_Material_6() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_Material_6)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_m_Material_6() const { return ___m_Material_6; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_m_Material_6() { return &___m_Material_6; } inline void set_m_Material_6(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___m_Material_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Material_6), (void*)value); } inline static int32_t get_offset_of_m_Color_7() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_Color_7)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_Color_7() const { return ___m_Color_7; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_Color_7() { return &___m_Color_7; } inline void set_m_Color_7(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_Color_7 = value; } inline static int32_t get_offset_of_m_SkipLayoutUpdate_8() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_SkipLayoutUpdate_8)); } inline bool get_m_SkipLayoutUpdate_8() const { return ___m_SkipLayoutUpdate_8; } inline bool* get_address_of_m_SkipLayoutUpdate_8() { return &___m_SkipLayoutUpdate_8; } inline void set_m_SkipLayoutUpdate_8(bool value) { ___m_SkipLayoutUpdate_8 = value; } inline static int32_t get_offset_of_m_SkipMaterialUpdate_9() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_SkipMaterialUpdate_9)); } inline bool get_m_SkipMaterialUpdate_9() const { return ___m_SkipMaterialUpdate_9; } inline bool* get_address_of_m_SkipMaterialUpdate_9() { return &___m_SkipMaterialUpdate_9; } inline void set_m_SkipMaterialUpdate_9(bool value) { ___m_SkipMaterialUpdate_9 = value; } inline static int32_t get_offset_of_m_RaycastTarget_10() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RaycastTarget_10)); } inline bool get_m_RaycastTarget_10() const { return ___m_RaycastTarget_10; } inline bool* get_address_of_m_RaycastTarget_10() { return &___m_RaycastTarget_10; } inline void set_m_RaycastTarget_10(bool value) { ___m_RaycastTarget_10 = value; } inline static int32_t get_offset_of_m_RaycastTargetCache_11() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RaycastTargetCache_11)); } inline bool get_m_RaycastTargetCache_11() const { return ___m_RaycastTargetCache_11; } inline bool* get_address_of_m_RaycastTargetCache_11() { return &___m_RaycastTargetCache_11; } inline void set_m_RaycastTargetCache_11(bool value) { ___m_RaycastTargetCache_11 = value; } inline static int32_t get_offset_of_m_RaycastPadding_12() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RaycastPadding_12)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_m_RaycastPadding_12() const { return ___m_RaycastPadding_12; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_m_RaycastPadding_12() { return &___m_RaycastPadding_12; } inline void set_m_RaycastPadding_12(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___m_RaycastPadding_12 = value; } inline static int32_t get_offset_of_m_RectTransform_13() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RectTransform_13)); } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get_m_RectTransform_13() const { return ___m_RectTransform_13; } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of_m_RectTransform_13() { return &___m_RectTransform_13; } inline void set_m_RectTransform_13(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value) { ___m_RectTransform_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_RectTransform_13), (void*)value); } inline static int32_t get_offset_of_m_CanvasRenderer_14() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_CanvasRenderer_14)); } inline CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * get_m_CanvasRenderer_14() const { return ___m_CanvasRenderer_14; } inline CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E ** get_address_of_m_CanvasRenderer_14() { return &___m_CanvasRenderer_14; } inline void set_m_CanvasRenderer_14(CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * value) { ___m_CanvasRenderer_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CanvasRenderer_14), (void*)value); } inline static int32_t get_offset_of_m_Canvas_15() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_Canvas_15)); } inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * get_m_Canvas_15() const { return ___m_Canvas_15; } inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA ** get_address_of_m_Canvas_15() { return &___m_Canvas_15; } inline void set_m_Canvas_15(Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * value) { ___m_Canvas_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Canvas_15), (void*)value); } inline static int32_t get_offset_of_m_VertsDirty_16() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_VertsDirty_16)); } inline bool get_m_VertsDirty_16() const { return ___m_VertsDirty_16; } inline bool* get_address_of_m_VertsDirty_16() { return &___m_VertsDirty_16; } inline void set_m_VertsDirty_16(bool value) { ___m_VertsDirty_16 = value; } inline static int32_t get_offset_of_m_MaterialDirty_17() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_MaterialDirty_17)); } inline bool get_m_MaterialDirty_17() const { return ___m_MaterialDirty_17; } inline bool* get_address_of_m_MaterialDirty_17() { return &___m_MaterialDirty_17; } inline void set_m_MaterialDirty_17(bool value) { ___m_MaterialDirty_17 = value; } inline static int32_t get_offset_of_m_OnDirtyLayoutCallback_18() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_OnDirtyLayoutCallback_18)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_m_OnDirtyLayoutCallback_18() const { return ___m_OnDirtyLayoutCallback_18; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_m_OnDirtyLayoutCallback_18() { return &___m_OnDirtyLayoutCallback_18; } inline void set_m_OnDirtyLayoutCallback_18(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___m_OnDirtyLayoutCallback_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyLayoutCallback_18), (void*)value); } inline static int32_t get_offset_of_m_OnDirtyVertsCallback_19() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_OnDirtyVertsCallback_19)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_m_OnDirtyVertsCallback_19() const { return ___m_OnDirtyVertsCallback_19; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_m_OnDirtyVertsCallback_19() { return &___m_OnDirtyVertsCallback_19; } inline void set_m_OnDirtyVertsCallback_19(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___m_OnDirtyVertsCallback_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyVertsCallback_19), (void*)value); } inline static int32_t get_offset_of_m_OnDirtyMaterialCallback_20() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_OnDirtyMaterialCallback_20)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_m_OnDirtyMaterialCallback_20() const { return ___m_OnDirtyMaterialCallback_20; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_m_OnDirtyMaterialCallback_20() { return &___m_OnDirtyMaterialCallback_20; } inline void set_m_OnDirtyMaterialCallback_20(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___m_OnDirtyMaterialCallback_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyMaterialCallback_20), (void*)value); } inline static int32_t get_offset_of_m_CachedMesh_23() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_CachedMesh_23)); } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * get_m_CachedMesh_23() const { return ___m_CachedMesh_23; } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 ** get_address_of_m_CachedMesh_23() { return &___m_CachedMesh_23; } inline void set_m_CachedMesh_23(Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * value) { ___m_CachedMesh_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CachedMesh_23), (void*)value); } inline static int32_t get_offset_of_m_CachedUvs_24() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_CachedUvs_24)); } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* get_m_CachedUvs_24() const { return ___m_CachedUvs_24; } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA** get_address_of_m_CachedUvs_24() { return &___m_CachedUvs_24; } inline void set_m_CachedUvs_24(Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* value) { ___m_CachedUvs_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CachedUvs_24), (void*)value); } inline static int32_t get_offset_of_m_ColorTweenRunner_25() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_ColorTweenRunner_25)); } inline TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * get_m_ColorTweenRunner_25() const { return ___m_ColorTweenRunner_25; } inline TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 ** get_address_of_m_ColorTweenRunner_25() { return &___m_ColorTweenRunner_25; } inline void set_m_ColorTweenRunner_25(TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * value) { ___m_ColorTweenRunner_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ColorTweenRunner_25), (void*)value); } inline static int32_t get_offset_of_U3CuseLegacyMeshGenerationU3Ek__BackingField_26() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___U3CuseLegacyMeshGenerationU3Ek__BackingField_26)); } inline bool get_U3CuseLegacyMeshGenerationU3Ek__BackingField_26() const { return ___U3CuseLegacyMeshGenerationU3Ek__BackingField_26; } inline bool* get_address_of_U3CuseLegacyMeshGenerationU3Ek__BackingField_26() { return &___U3CuseLegacyMeshGenerationU3Ek__BackingField_26; } inline void set_U3CuseLegacyMeshGenerationU3Ek__BackingField_26(bool value) { ___U3CuseLegacyMeshGenerationU3Ek__BackingField_26 = value; } }; // UnityEngine.UI.MaskableGraphic struct MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE : public Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 { public: // System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculateStencil bool ___m_ShouldRecalculateStencil_27; // UnityEngine.Material UnityEngine.UI.MaskableGraphic::m_MaskMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___m_MaskMaterial_28; // UnityEngine.UI.RectMask2D UnityEngine.UI.MaskableGraphic::m_ParentMask RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15 * ___m_ParentMask_29; // System.Boolean UnityEngine.UI.MaskableGraphic::m_Maskable bool ___m_Maskable_30; // System.Boolean UnityEngine.UI.MaskableGraphic::m_IsMaskingGraphic bool ___m_IsMaskingGraphic_31; // System.Boolean UnityEngine.UI.MaskableGraphic::m_IncludeForMasking bool ___m_IncludeForMasking_32; // UnityEngine.UI.MaskableGraphic/CullStateChangedEvent UnityEngine.UI.MaskableGraphic::m_OnCullStateChanged CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4 * ___m_OnCullStateChanged_33; // System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculate bool ___m_ShouldRecalculate_34; // System.Int32 UnityEngine.UI.MaskableGraphic::m_StencilValue int32_t ___m_StencilValue_35; // UnityEngine.Vector3[] UnityEngine.UI.MaskableGraphic::m_Corners Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___m_Corners_36; public: inline static int32_t get_offset_of_m_ShouldRecalculateStencil_27() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_ShouldRecalculateStencil_27)); } inline bool get_m_ShouldRecalculateStencil_27() const { return ___m_ShouldRecalculateStencil_27; } inline bool* get_address_of_m_ShouldRecalculateStencil_27() { return &___m_ShouldRecalculateStencil_27; } inline void set_m_ShouldRecalculateStencil_27(bool value) { ___m_ShouldRecalculateStencil_27 = value; } inline static int32_t get_offset_of_m_MaskMaterial_28() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_MaskMaterial_28)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_m_MaskMaterial_28() const { return ___m_MaskMaterial_28; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_m_MaskMaterial_28() { return &___m_MaskMaterial_28; } inline void set_m_MaskMaterial_28(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___m_MaskMaterial_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_MaskMaterial_28), (void*)value); } inline static int32_t get_offset_of_m_ParentMask_29() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_ParentMask_29)); } inline RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15 * get_m_ParentMask_29() const { return ___m_ParentMask_29; } inline RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15 ** get_address_of_m_ParentMask_29() { return &___m_ParentMask_29; } inline void set_m_ParentMask_29(RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15 * value) { ___m_ParentMask_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ParentMask_29), (void*)value); } inline static int32_t get_offset_of_m_Maskable_30() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_Maskable_30)); } inline bool get_m_Maskable_30() const { return ___m_Maskable_30; } inline bool* get_address_of_m_Maskable_30() { return &___m_Maskable_30; } inline void set_m_Maskable_30(bool value) { ___m_Maskable_30 = value; } inline static int32_t get_offset_of_m_IsMaskingGraphic_31() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_IsMaskingGraphic_31)); } inline bool get_m_IsMaskingGraphic_31() const { return ___m_IsMaskingGraphic_31; } inline bool* get_address_of_m_IsMaskingGraphic_31() { return &___m_IsMaskingGraphic_31; } inline void set_m_IsMaskingGraphic_31(bool value) { ___m_IsMaskingGraphic_31 = value; } inline static int32_t get_offset_of_m_IncludeForMasking_32() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_IncludeForMasking_32)); } inline bool get_m_IncludeForMasking_32() const { return ___m_IncludeForMasking_32; } inline bool* get_address_of_m_IncludeForMasking_32() { return &___m_IncludeForMasking_32; } inline void set_m_IncludeForMasking_32(bool value) { ___m_IncludeForMasking_32 = value; } inline static int32_t get_offset_of_m_OnCullStateChanged_33() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_OnCullStateChanged_33)); } inline CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4 * get_m_OnCullStateChanged_33() const { return ___m_OnCullStateChanged_33; } inline CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4 ** get_address_of_m_OnCullStateChanged_33() { return &___m_OnCullStateChanged_33; } inline void set_m_OnCullStateChanged_33(CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4 * value) { ___m_OnCullStateChanged_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnCullStateChanged_33), (void*)value); } inline static int32_t get_offset_of_m_ShouldRecalculate_34() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_ShouldRecalculate_34)); } inline bool get_m_ShouldRecalculate_34() const { return ___m_ShouldRecalculate_34; } inline bool* get_address_of_m_ShouldRecalculate_34() { return &___m_ShouldRecalculate_34; } inline void set_m_ShouldRecalculate_34(bool value) { ___m_ShouldRecalculate_34 = value; } inline static int32_t get_offset_of_m_StencilValue_35() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_StencilValue_35)); } inline int32_t get_m_StencilValue_35() const { return ___m_StencilValue_35; } inline int32_t* get_address_of_m_StencilValue_35() { return &___m_StencilValue_35; } inline void set_m_StencilValue_35(int32_t value) { ___m_StencilValue_35 = value; } inline static int32_t get_offset_of_m_Corners_36() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_Corners_36)); } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get_m_Corners_36() const { return ___m_Corners_36; } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of_m_Corners_36() { return &___m_Corners_36; } inline void set_m_Corners_36(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value) { ___m_Corners_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Corners_36), (void*)value); } }; // UnityEngine.UI.Image struct Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C : public MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE { public: // UnityEngine.Sprite UnityEngine.UI.Image::m_Sprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_Sprite_38; // UnityEngine.Sprite UnityEngine.UI.Image::m_OverrideSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_OverrideSprite_39; // UnityEngine.UI.Image/Type UnityEngine.UI.Image::m_Type int32_t ___m_Type_40; // System.Boolean UnityEngine.UI.Image::m_PreserveAspect bool ___m_PreserveAspect_41; // System.Boolean UnityEngine.UI.Image::m_FillCenter bool ___m_FillCenter_42; // UnityEngine.UI.Image/FillMethod UnityEngine.UI.Image::m_FillMethod int32_t ___m_FillMethod_43; // System.Single UnityEngine.UI.Image::m_FillAmount float ___m_FillAmount_44; // System.Boolean UnityEngine.UI.Image::m_FillClockwise bool ___m_FillClockwise_45; // System.Int32 UnityEngine.UI.Image::m_FillOrigin int32_t ___m_FillOrigin_46; // System.Single UnityEngine.UI.Image::m_AlphaHitTestMinimumThreshold float ___m_AlphaHitTestMinimumThreshold_47; // System.Boolean UnityEngine.UI.Image::m_Tracked bool ___m_Tracked_48; // System.Boolean UnityEngine.UI.Image::m_UseSpriteMesh bool ___m_UseSpriteMesh_49; // System.Single UnityEngine.UI.Image::m_PixelsPerUnitMultiplier float ___m_PixelsPerUnitMultiplier_50; // System.Single UnityEngine.UI.Image::m_CachedReferencePixelsPerUnit float ___m_CachedReferencePixelsPerUnit_51; public: inline static int32_t get_offset_of_m_Sprite_38() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_Sprite_38)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_Sprite_38() const { return ___m_Sprite_38; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_Sprite_38() { return &___m_Sprite_38; } inline void set_m_Sprite_38(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_Sprite_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Sprite_38), (void*)value); } inline static int32_t get_offset_of_m_OverrideSprite_39() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_OverrideSprite_39)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_OverrideSprite_39() const { return ___m_OverrideSprite_39; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_OverrideSprite_39() { return &___m_OverrideSprite_39; } inline void set_m_OverrideSprite_39(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_OverrideSprite_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OverrideSprite_39), (void*)value); } inline static int32_t get_offset_of_m_Type_40() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_Type_40)); } inline int32_t get_m_Type_40() const { return ___m_Type_40; } inline int32_t* get_address_of_m_Type_40() { return &___m_Type_40; } inline void set_m_Type_40(int32_t value) { ___m_Type_40 = value; } inline static int32_t get_offset_of_m_PreserveAspect_41() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_PreserveAspect_41)); } inline bool get_m_PreserveAspect_41() const { return ___m_PreserveAspect_41; } inline bool* get_address_of_m_PreserveAspect_41() { return &___m_PreserveAspect_41; } inline void set_m_PreserveAspect_41(bool value) { ___m_PreserveAspect_41 = value; } inline static int32_t get_offset_of_m_FillCenter_42() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillCenter_42)); } inline bool get_m_FillCenter_42() const { return ___m_FillCenter_42; } inline bool* get_address_of_m_FillCenter_42() { return &___m_FillCenter_42; } inline void set_m_FillCenter_42(bool value) { ___m_FillCenter_42 = value; } inline static int32_t get_offset_of_m_FillMethod_43() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillMethod_43)); } inline int32_t get_m_FillMethod_43() const { return ___m_FillMethod_43; } inline int32_t* get_address_of_m_FillMethod_43() { return &___m_FillMethod_43; } inline void set_m_FillMethod_43(int32_t value) { ___m_FillMethod_43 = value; } inline static int32_t get_offset_of_m_FillAmount_44() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillAmount_44)); } inline float get_m_FillAmount_44() const { return ___m_FillAmount_44; } inline float* get_address_of_m_FillAmount_44() { return &___m_FillAmount_44; } inline void set_m_FillAmount_44(float value) { ___m_FillAmount_44 = value; } inline static int32_t get_offset_of_m_FillClockwise_45() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillClockwise_45)); } inline bool get_m_FillClockwise_45() const { return ___m_FillClockwise_45; } inline bool* get_address_of_m_FillClockwise_45() { return &___m_FillClockwise_45; } inline void set_m_FillClockwise_45(bool value) { ___m_FillClockwise_45 = value; } inline static int32_t get_offset_of_m_FillOrigin_46() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillOrigin_46)); } inline int32_t get_m_FillOrigin_46() const { return ___m_FillOrigin_46; } inline int32_t* get_address_of_m_FillOrigin_46() { return &___m_FillOrigin_46; } inline void set_m_FillOrigin_46(int32_t value) { ___m_FillOrigin_46 = value; } inline static int32_t get_offset_of_m_AlphaHitTestMinimumThreshold_47() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_AlphaHitTestMinimumThreshold_47)); } inline float get_m_AlphaHitTestMinimumThreshold_47() const { return ___m_AlphaHitTestMinimumThreshold_47; } inline float* get_address_of_m_AlphaHitTestMinimumThreshold_47() { return &___m_AlphaHitTestMinimumThreshold_47; } inline void set_m_AlphaHitTestMinimumThreshold_47(float value) { ___m_AlphaHitTestMinimumThreshold_47 = value; } inline static int32_t get_offset_of_m_Tracked_48() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_Tracked_48)); } inline bool get_m_Tracked_48() const { return ___m_Tracked_48; } inline bool* get_address_of_m_Tracked_48() { return &___m_Tracked_48; } inline void set_m_Tracked_48(bool value) { ___m_Tracked_48 = value; } inline static int32_t get_offset_of_m_UseSpriteMesh_49() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_UseSpriteMesh_49)); } inline bool get_m_UseSpriteMesh_49() const { return ___m_UseSpriteMesh_49; } inline bool* get_address_of_m_UseSpriteMesh_49() { return &___m_UseSpriteMesh_49; } inline void set_m_UseSpriteMesh_49(bool value) { ___m_UseSpriteMesh_49 = value; } inline static int32_t get_offset_of_m_PixelsPerUnitMultiplier_50() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_PixelsPerUnitMultiplier_50)); } inline float get_m_PixelsPerUnitMultiplier_50() const { return ___m_PixelsPerUnitMultiplier_50; } inline float* get_address_of_m_PixelsPerUnitMultiplier_50() { return &___m_PixelsPerUnitMultiplier_50; } inline void set_m_PixelsPerUnitMultiplier_50(float value) { ___m_PixelsPerUnitMultiplier_50 = value; } inline static int32_t get_offset_of_m_CachedReferencePixelsPerUnit_51() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_CachedReferencePixelsPerUnit_51)); } inline float get_m_CachedReferencePixelsPerUnit_51() const { return ___m_CachedReferencePixelsPerUnit_51; } inline float* get_address_of_m_CachedReferencePixelsPerUnit_51() { return &___m_CachedReferencePixelsPerUnit_51; } inline void set_m_CachedReferencePixelsPerUnit_51(float value) { ___m_CachedReferencePixelsPerUnit_51 = value; } }; // System.Object // System.Object // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.List`1 struct List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ExpressionComponentU5BU5D_t1F5FE395D157E30BFBA492E8FCAADC95418F69EE* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545_StaticFields, ____emptyArray_5)); } inline ExpressionComponentU5BU5D_t1F5FE395D157E30BFBA492E8FCAADC95418F69EE* get__emptyArray_5() const { return ____emptyArray_5; } inline ExpressionComponentU5BU5D_t1F5FE395D157E30BFBA492E8FCAADC95418F69EE** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ExpressionComponentU5BU5D_t1F5FE395D157E30BFBA492E8FCAADC95418F69EE* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t35E2F3636689C080F259AD3469423EB15A85AF38_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray IExpressionControllerU5BU5D_tDEA2EFCFE26632D851223B93320BC14555B91BAD* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t35E2F3636689C080F259AD3469423EB15A85AF38_StaticFields, ____emptyArray_5)); } inline IExpressionControllerU5BU5D_tDEA2EFCFE26632D851223B93320BC14555B91BAD* get__emptyArray_5() const { return ____emptyArray_5; } inline IExpressionControllerU5BU5D_tDEA2EFCFE26632D851223B93320BC14555B91BAD** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(IExpressionControllerU5BU5D_tDEA2EFCFE26632D851223B93320BC14555B91BAD* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray InspectorControllerHelperDataU5BU5D_tC4990737FCEC2F59FBBEC71EE36085BF554D8A4F* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15_StaticFields, ____emptyArray_5)); } inline InspectorControllerHelperDataU5BU5D_tC4990737FCEC2F59FBBEC71EE36085BF554D8A4F* get__emptyArray_5() const { return ____emptyArray_5; } inline InspectorControllerHelperDataU5BU5D_tC4990737FCEC2F59FBBEC71EE36085BF554D8A4F** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(InspectorControllerHelperDataU5BU5D_tC4990737FCEC2F59FBBEC71EE36085BF554D8A4F* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray LipsyncExpressionU5BU5D_t64C43494D1E7B332EC6B34E8585A4CA345406525* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69_StaticFields, ____emptyArray_5)); } inline LipsyncExpressionU5BU5D_t64C43494D1E7B332EC6B34E8585A4CA345406525* get__emptyArray_5() const { return ____emptyArray_5; } inline LipsyncExpressionU5BU5D_t64C43494D1E7B332EC6B34E8585A4CA345406525** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(LipsyncExpressionU5BU5D_t64C43494D1E7B332EC6B34E8585A4CA345406525* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4_StaticFields, ____emptyArray_5)); } inline MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* get__emptyArray_5() const { return ____emptyArray_5; } inline MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ProcDirectionU5BU5D_t79A03372342A86714921658556ED443E56BE95C3* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB_StaticFields, ____emptyArray_5)); } inline ProcDirectionU5BU5D_t79A03372342A86714921658556ED443E56BE95C3* get__emptyArray_5() const { return ____emptyArray_5; } inline ProcDirectionU5BU5D_t79A03372342A86714921658556ED443E56BE95C3** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ProcDirectionU5BU5D_t79A03372342A86714921658556ED443E56BE95C3* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ProcLLPairU5BU5D_t47A186CEEAEA7D8B007544759928D8D58422B7C5* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57_StaticFields, ____emptyArray_5)); } inline ProcLLPairU5BU5D_t47A186CEEAEA7D8B007544759928D8D58422B7C5* get__emptyArray_5() const { return ____emptyArray_5; } inline ProcLLPairU5BU5D_t47A186CEEAEA7D8B007544759928D8D58422B7C5** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ProcLLPairU5BU5D_t47A186CEEAEA7D8B007544759928D8D58422B7C5* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB_StaticFields, ____emptyArray_5)); } inline QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6* get__emptyArray_5() const { return ____emptyArray_5; } inline QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD_StaticFields, ____emptyArray_5)); } inline QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860* get__emptyArray_5() const { return ____emptyArray_5; } inline QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA_StaticFields, ____emptyArray_5)); } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get__emptyArray_5() const { return ____emptyArray_5; } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880_StaticFields, ____emptyArray_5)); } inline SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* get__emptyArray_5() const { return ____emptyArray_5; } inline SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D_StaticFields, ____emptyArray_5)); } inline TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* get__emptyArray_5() const { return ____emptyArray_5; } inline TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0_StaticFields, ____emptyArray_5)); } inline TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D* get__emptyArray_5() const { return ____emptyArray_5; } inline TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181_StaticFields, ____emptyArray_5)); } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get__emptyArray_5() const { return ____emptyArray_5; } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray QueueOoOU5BU5D_tB767DE2C8EAB5B8902C81E9F9624705C58FC58E1* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9_StaticFields, ____emptyArray_5)); } inline QueueOoOU5BU5D_tB767DE2C8EAB5B8902C81E9F9624705C58FC58E1* get__emptyArray_5() const { return ____emptyArray_5; } inline QueueOoOU5BU5D_tB767DE2C8EAB5B8902C81E9F9624705C58FC58E1** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(QueueOoOU5BU5D_tB767DE2C8EAB5B8902C81E9F9624705C58FC58E1* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.Queue`1 // System.Collections.Generic.Queue`1 struct Il2CppArrayBounds; // System.Array struct Il2CppArrayBounds; // System.Array // System.EventArgs struct EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_StaticFields { public: // System.EventArgs System.EventArgs::Empty EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * ___Empty_0; public: inline static int32_t get_offset_of_Empty_0() { return static_cast(offsetof(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_StaticFields, ___Empty_0)); } inline EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * get_Empty_0() const { return ___Empty_0; } inline EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA ** get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * value) { ___Empty_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value); } }; // System.EventArgs // CrazyMinnow.SALSA.Expression // CrazyMinnow.SALSA.Expression // CrazyMinnow.SALSA.EyesExpression // CrazyMinnow.SALSA.EyesExpression // CrazyMinnow.SALSA.GenericController // CrazyMinnow.SALSA.GenericController // CrazyMinnow.SALSA.LerpEasings // CrazyMinnow.SALSA.LerpEasings // CrazyMinnow.SALSA.LipsyncExpression // CrazyMinnow.SALSA.LipsyncExpression // System.Reflection.MemberInfo // System.Reflection.MemberInfo // CrazyMinnow.SALSA.ProcDirections // CrazyMinnow.SALSA.ProcDirections // CrazyMinnow.SALSA.ProcFloats // CrazyMinnow.SALSA.ProcFloats // CrazyMinnow.SALSA.ProcLLPairs // CrazyMinnow.SALSA.ProcLLPairs // CrazyMinnow.SALSA.ProcTrans // CrazyMinnow.SALSA.ProcTrans // CrazyMinnow.SALSA.ProcTransOffset // CrazyMinnow.SALSA.ProcTransOffset // CrazyMinnow.SALSA.ProcVecs // CrazyMinnow.SALSA.ProcVecs // CrazyMinnow.SALSA.RuntimeController // CrazyMinnow.SALSA.RuntimeController // CrazyMinnow.SALSA.SalsaAudioAnalyzer struct SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields { public: // System.Single CrazyMinnow.SALSA.SalsaAudioAnalyzer::_dataSumThreshold float ____dataSumThreshold_0; // System.Single CrazyMinnow.SALSA.SalsaAudioAnalyzer::_dataSum float ____dataSum_1; // System.Int32 CrazyMinnow.SALSA.SalsaAudioAnalyzer::_dataCountThreshold int32_t ____dataCountThreshold_2; // System.Int32 CrazyMinnow.SALSA.SalsaAudioAnalyzer::_dataCount int32_t ____dataCount_3; public: inline static int32_t get_offset_of__dataSumThreshold_0() { return static_cast(offsetof(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields, ____dataSumThreshold_0)); } inline float get__dataSumThreshold_0() const { return ____dataSumThreshold_0; } inline float* get_address_of__dataSumThreshold_0() { return &____dataSumThreshold_0; } inline void set__dataSumThreshold_0(float value) { ____dataSumThreshold_0 = value; } inline static int32_t get_offset_of__dataSum_1() { return static_cast(offsetof(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields, ____dataSum_1)); } inline float get__dataSum_1() const { return ____dataSum_1; } inline float* get_address_of__dataSum_1() { return &____dataSum_1; } inline void set__dataSum_1(float value) { ____dataSum_1 = value; } inline static int32_t get_offset_of__dataCountThreshold_2() { return static_cast(offsetof(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields, ____dataCountThreshold_2)); } inline int32_t get__dataCountThreshold_2() const { return ____dataCountThreshold_2; } inline int32_t* get_address_of__dataCountThreshold_2() { return &____dataCountThreshold_2; } inline void set__dataCountThreshold_2(int32_t value) { ____dataCountThreshold_2 = value; } inline static int32_t get_offset_of__dataCount_3() { return static_cast(offsetof(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields, ____dataCount_3)); } inline int32_t get__dataCount_3() const { return ____dataCount_3; } inline int32_t* get_address_of__dataCount_3() { return &____dataCount_3; } inline void set__dataCount_3(int32_t value) { ____dataCount_3 = value; } }; // CrazyMinnow.SALSA.SalsaAudioAnalyzer // CrazyMinnow.SALSA.SalsaSettings struct SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_StaticFields { public: // System.String CrazyMinnow.SALSA.SalsaSettings::RenderPipelineTextureName String_t* ___RenderPipelineTextureName_0; public: inline static int32_t get_offset_of_RenderPipelineTextureName_0() { return static_cast(offsetof(SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_StaticFields, ___RenderPipelineTextureName_0)); } inline String_t* get_RenderPipelineTextureName_0() const { return ___RenderPipelineTextureName_0; } inline String_t** get_address_of_RenderPipelineTextureName_0() { return &___RenderPipelineTextureName_0; } inline void set_RenderPipelineTextureName_0(String_t* value) { ___RenderPipelineTextureName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___RenderPipelineTextureName_0), (void*)value); } }; // CrazyMinnow.SALSA.SalsaSettings // CrazyMinnow.SALSA.SalsaUtil struct SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields { public: // System.String CrazyMinnow.SALSA.SalsaUtil::suiteVersion String_t* ___suiteVersion_0; // System.Int32 CrazyMinnow.SALSA.SalsaUtil::versionMajor int32_t ___versionMajor_1; // System.Int32 CrazyMinnow.SALSA.SalsaUtil::versionMinor int32_t ___versionMinor_2; // System.Int32 CrazyMinnow.SALSA.SalsaUtil::versionPatch int32_t ___versionPatch_3; // System.Int32 CrazyMinnow.SALSA.SalsaUtil::versionInternal int32_t ___versionInternal_4; // System.Single CrazyMinnow.SALSA.SalsaUtil::editorTime float ___editorTime_5; public: inline static int32_t get_offset_of_suiteVersion_0() { return static_cast(offsetof(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields, ___suiteVersion_0)); } inline String_t* get_suiteVersion_0() const { return ___suiteVersion_0; } inline String_t** get_address_of_suiteVersion_0() { return &___suiteVersion_0; } inline void set_suiteVersion_0(String_t* value) { ___suiteVersion_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___suiteVersion_0), (void*)value); } inline static int32_t get_offset_of_versionMajor_1() { return static_cast(offsetof(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields, ___versionMajor_1)); } inline int32_t get_versionMajor_1() const { return ___versionMajor_1; } inline int32_t* get_address_of_versionMajor_1() { return &___versionMajor_1; } inline void set_versionMajor_1(int32_t value) { ___versionMajor_1 = value; } inline static int32_t get_offset_of_versionMinor_2() { return static_cast(offsetof(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields, ___versionMinor_2)); } inline int32_t get_versionMinor_2() const { return ___versionMinor_2; } inline int32_t* get_address_of_versionMinor_2() { return &___versionMinor_2; } inline void set_versionMinor_2(int32_t value) { ___versionMinor_2 = value; } inline static int32_t get_offset_of_versionPatch_3() { return static_cast(offsetof(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields, ___versionPatch_3)); } inline int32_t get_versionPatch_3() const { return ___versionPatch_3; } inline int32_t* get_address_of_versionPatch_3() { return &___versionPatch_3; } inline void set_versionPatch_3(int32_t value) { ___versionPatch_3 = value; } inline static int32_t get_offset_of_versionInternal_4() { return static_cast(offsetof(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields, ___versionInternal_4)); } inline int32_t get_versionInternal_4() const { return ___versionInternal_4; } inline int32_t* get_address_of_versionInternal_4() { return &___versionInternal_4; } inline void set_versionInternal_4(int32_t value) { ___versionInternal_4 = value; } inline static int32_t get_offset_of_editorTime_5() { return static_cast(offsetof(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields, ___editorTime_5)); } inline float get_editorTime_5() const { return ___editorTime_5; } inline float* get_address_of_editorTime_5() { return &___editorTime_5; } inline void set_editorTime_5(float value) { ___editorTime_5 = value; } }; // CrazyMinnow.SALSA.SalsaUtil // CrazyMinnow.SALSA.ShapeController // CrazyMinnow.SALSA.ShapeController // System.String 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.String // CrazyMinnow.SALSA.UmaController // CrazyMinnow.SALSA.UmaController // System.ValueType // System.ValueType // UnityEngine.YieldInstruction // UnityEngine.YieldInstruction // CrazyMinnow.SALSA.Emoter/<>c struct U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33_StaticFields { public: // CrazyMinnow.SALSA.Emoter/<>c CrazyMinnow.SALSA.Emoter/<>c::<>9 U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33 * ___U3CU3E9_0; // System.Predicate`1 CrazyMinnow.SALSA.Emoter/<>c::<>9__13_0 Predicate_1_tD20F9B8A0A0911404E536EAC227413EDDE1083FE * ___U3CU3E9__13_0_1; // System.Predicate`1 CrazyMinnow.SALSA.Emoter/<>c::<>9__18_0 Predicate_1_tD20F9B8A0A0911404E536EAC227413EDDE1083FE * ___U3CU3E9__18_0_2; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__13_0_1() { return static_cast(offsetof(U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33_StaticFields, ___U3CU3E9__13_0_1)); } inline Predicate_1_tD20F9B8A0A0911404E536EAC227413EDDE1083FE * get_U3CU3E9__13_0_1() const { return ___U3CU3E9__13_0_1; } inline Predicate_1_tD20F9B8A0A0911404E536EAC227413EDDE1083FE ** get_address_of_U3CU3E9__13_0_1() { return &___U3CU3E9__13_0_1; } inline void set_U3CU3E9__13_0_1(Predicate_1_tD20F9B8A0A0911404E536EAC227413EDDE1083FE * value) { ___U3CU3E9__13_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__13_0_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__18_0_2() { return static_cast(offsetof(U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33_StaticFields, ___U3CU3E9__18_0_2)); } inline Predicate_1_tD20F9B8A0A0911404E536EAC227413EDDE1083FE * get_U3CU3E9__18_0_2() const { return ___U3CU3E9__18_0_2; } inline Predicate_1_tD20F9B8A0A0911404E536EAC227413EDDE1083FE ** get_address_of_U3CU3E9__18_0_2() { return &___U3CU3E9__18_0_2; } inline void set_U3CU3E9__18_0_2(Predicate_1_tD20F9B8A0A0911404E536EAC227413EDDE1083FE * value) { ___U3CU3E9__18_0_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__18_0_2), (void*)value); } }; // CrazyMinnow.SALSA.Emoter/<>c // CrazyMinnow.SALSA.QueueProcessor/QueueOoO // CrazyMinnow.SALSA.QueueProcessor/QueueOoO // CrazyMinnow.SALSA.Salsa/<>c struct U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_StaticFields { public: // CrazyMinnow.SALSA.Salsa/<>c CrazyMinnow.SALSA.Salsa/<>c::<>9 U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2 * ___U3CU3E9_0; // System.Comparison`1 CrazyMinnow.SALSA.Salsa/<>c::<>9__150_0 Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 * ___U3CU3E9__150_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__150_0_1() { return static_cast(offsetof(U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_StaticFields, ___U3CU3E9__150_0_1)); } inline Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 * get_U3CU3E9__150_0_1() const { return ___U3CU3E9__150_0_1; } inline Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 ** get_address_of_U3CU3E9__150_0_1() { return &___U3CU3E9__150_0_1; } inline void set_U3CU3E9__150_0_1(Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 * value) { ___U3CU3E9__150_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__150_0_1), (void*)value); } }; // CrazyMinnow.SALSA.Salsa/<>c // CrazyMinnow.SALSA.Salsa/d__147 // CrazyMinnow.SALSA.Salsa/d__147 // CrazyMinnow.SALSA.Salsa/d__155 // CrazyMinnow.SALSA.Salsa/d__155 // CrazyMinnow.SALSA.UmaUepProxy/UepPose // CrazyMinnow.SALSA.UmaUepProxy/UepPose // CrazyMinnow.SALSA.UmaUepProxy/UepPoseDef // CrazyMinnow.SALSA.UmaUepProxy/UepPoseDef // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // CrazyMinnow.SALSA.AnimatorController // CrazyMinnow.SALSA.AnimatorController // System.Boolean 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.Boolean // UnityEngine.Color // UnityEngine.Color // System.Double struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // System.Double // System.Enum 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); } }; // System.Enum // CrazyMinnow.SALSA.EventController struct EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4_StaticFields { public: // System.EventHandler`1 CrazyMinnow.SALSA.EventController::AnimationStarting EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC * ___AnimationStarting_4; // System.EventHandler`1 CrazyMinnow.SALSA.EventController::AnimationON EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC * ___AnimationON_5; // System.EventHandler`1 CrazyMinnow.SALSA.EventController::AnimationEnding EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC * ___AnimationEnding_6; // System.EventHandler`1 CrazyMinnow.SALSA.EventController::AnimationOFF EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC * ___AnimationOFF_7; public: inline static int32_t get_offset_of_AnimationStarting_4() { return static_cast(offsetof(EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4_StaticFields, ___AnimationStarting_4)); } inline EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC * get_AnimationStarting_4() const { return ___AnimationStarting_4; } inline EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC ** get_address_of_AnimationStarting_4() { return &___AnimationStarting_4; } inline void set_AnimationStarting_4(EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC * value) { ___AnimationStarting_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___AnimationStarting_4), (void*)value); } inline static int32_t get_offset_of_AnimationON_5() { return static_cast(offsetof(EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4_StaticFields, ___AnimationON_5)); } inline EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC * get_AnimationON_5() const { return ___AnimationON_5; } inline EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC ** get_address_of_AnimationON_5() { return &___AnimationON_5; } inline void set_AnimationON_5(EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC * value) { ___AnimationON_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___AnimationON_5), (void*)value); } inline static int32_t get_offset_of_AnimationEnding_6() { return static_cast(offsetof(EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4_StaticFields, ___AnimationEnding_6)); } inline EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC * get_AnimationEnding_6() const { return ___AnimationEnding_6; } inline EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC ** get_address_of_AnimationEnding_6() { return &___AnimationEnding_6; } inline void set_AnimationEnding_6(EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC * value) { ___AnimationEnding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___AnimationEnding_6), (void*)value); } inline static int32_t get_offset_of_AnimationOFF_7() { return static_cast(offsetof(EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4_StaticFields, ___AnimationOFF_7)); } inline EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC * get_AnimationOFF_7() const { return ___AnimationOFF_7; } inline EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC ** get_address_of_AnimationOFF_7() { return &___AnimationOFF_7; } inline void set_AnimationOFF_7(EventHandler_1_t499669128562CCDF7EE3EBAC503F90487E74A9CC * value) { ___AnimationOFF_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___AnimationOFF_7), (void*)value); } }; // CrazyMinnow.SALSA.EventController // System.Int32 // System.Int32 // System.IntPtr 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; } }; // System.IntPtr // UnityEngine.Quaternion 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; } }; // UnityEngine.Quaternion // System.Single // System.Single // UnityEngine.Vector3 struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___negativeInfinityVector_14 = value; } }; // UnityEngine.Vector3 // UnityEngine.Vector4 struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields { public: // UnityEngine.Vector4 UnityEngine.Vector4::zeroVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___zeroVector_5; // UnityEngine.Vector4 UnityEngine.Vector4::oneVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___oneVector_6; // UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___positiveInfinityVector_7; // UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___negativeInfinityVector_8; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___zeroVector_5)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_zeroVector_5() const { return ___zeroVector_5; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___oneVector_6)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_oneVector_6() const { return ___oneVector_6; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___positiveInfinityVector_7)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; } inline void set_positiveInfinityVector_7(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___positiveInfinityVector_7 = value; } inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___negativeInfinityVector_8)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; } inline void set_negativeInfinityVector_8(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___negativeInfinityVector_8 = value; } }; // UnityEngine.Vector4 // System.Void // System.Void // CrazyMinnow.SALSA.EventController/EventControllerNotificationArgs // CrazyMinnow.SALSA.EventController/EventControllerNotificationArgs // CrazyMinnow.SALSA.QueueProcessor/QueueProcessorNotificationArgs // CrazyMinnow.SALSA.QueueProcessor/QueueProcessorNotificationArgs // CrazyMinnow.SALSA.Salsa/SalsaNotificationArgs // CrazyMinnow.SALSA.Salsa/SalsaNotificationArgs // UnityEngine.AnimatorControllerParameterType // UnityEngine.AnimatorControllerParameterType // System.Reflection.BindingFlags // System.Reflection.BindingFlags // UnityEngine.Coroutine // UnityEngine.Coroutine // System.Delegate // System.Delegate // System.Exception 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); } }; // System.Exception // UnityEngine.Object 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; } }; // UnityEngine.Object // CrazyMinnow.SALSA.ProcDirection // CrazyMinnow.SALSA.ProcDirection // CrazyMinnow.SALSA.ProcLLPair // CrazyMinnow.SALSA.ProcLLPair // System.RuntimeTypeHandle // System.RuntimeTypeHandle // CrazyMinnow.SALSA.TformBase // CrazyMinnow.SALSA.TformBase // CrazyMinnow.SALSA.EmoteRepeater/StartDelay // CrazyMinnow.SALSA.EmoteRepeater/StartDelay // CrazyMinnow.SALSA.Emoter/PoolType // CrazyMinnow.SALSA.Emoter/PoolType // CrazyMinnow.SALSA.ExpressionComponent/ControlType // CrazyMinnow.SALSA.ExpressionComponent/ControlType // CrazyMinnow.SALSA.ExpressionComponent/DirectionType // CrazyMinnow.SALSA.ExpressionComponent/DirectionType // CrazyMinnow.SALSA.ExpressionComponent/EmoteControlType // CrazyMinnow.SALSA.ExpressionComponent/EmoteControlType // CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler // CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler // CrazyMinnow.SALSA.ExpressionComponent/ExpressionType // CrazyMinnow.SALSA.ExpressionComponent/ExpressionType // CrazyMinnow.SALSA.ExpressionComponent/EyesControlType // CrazyMinnow.SALSA.ExpressionComponent/EyesControlType // CrazyMinnow.SALSA.ExpressionComponent/LipsyncControlType // CrazyMinnow.SALSA.ExpressionComponent/LipsyncControlType // CrazyMinnow.SALSA.Eyes/ClampAxes // CrazyMinnow.SALSA.Eyes/ClampAxes // CrazyMinnow.SALSA.Eyes/EyeTemplates // CrazyMinnow.SALSA.Eyes/EyeTemplates // CrazyMinnow.SALSA.Eyes/EyelidSelection // CrazyMinnow.SALSA.Eyes/EyelidSelection // CrazyMinnow.SALSA.Eyes/EyelidTemplates // CrazyMinnow.SALSA.Eyes/EyelidTemplates // CrazyMinnow.SALSA.Eyes/FlipType // CrazyMinnow.SALSA.Eyes/FlipType // CrazyMinnow.SALSA.Eyes/HeadTemplates // CrazyMinnow.SALSA.Eyes/HeadTemplates // CrazyMinnow.SALSA.Eyes/SectorCount // CrazyMinnow.SALSA.Eyes/SectorCount // UnityEngine.UI.Image/FillMethod // UnityEngine.UI.Image/FillMethod // UnityEngine.UI.Image/Type // UnityEngine.UI.Image/Type // CrazyMinnow.SALSA.LerpEasings/EasingType // CrazyMinnow.SALSA.LerpEasings/EasingType // CrazyMinnow.SALSA.Switcher/OnState // CrazyMinnow.SALSA.Switcher/OnState // UnityEngine.AnimatorControllerParameter // UnityEngine.AnimatorControllerParameter // UnityEngine.AudioClip // UnityEngine.AudioClip // CrazyMinnow.SALSA.BoneController // CrazyMinnow.SALSA.BoneController // UnityEngine.Component // UnityEngine.Component // CrazyMinnow.SALSA.ControllerData // CrazyMinnow.SALSA.ControllerData // CrazyMinnow.SALSA.EmoteExpression // CrazyMinnow.SALSA.EmoteExpression // CrazyMinnow.SALSA.ExpressionComponent // CrazyMinnow.SALSA.ExpressionComponent // UnityEngine.GameObject // UnityEngine.GameObject // CrazyMinnow.SALSA.InspectorControllerHelperData // CrazyMinnow.SALSA.InspectorControllerHelperData // UnityEngine.Material // UnityEngine.Material // UnityEngine.Mesh // UnityEngine.Mesh // System.MulticastDelegate // System.MulticastDelegate // CrazyMinnow.SALSA.QueueExpressionComponent // CrazyMinnow.SALSA.QueueExpressionComponent // UnityEngine.Sprite // UnityEngine.Sprite // CrazyMinnow.SALSA.Switcher // CrazyMinnow.SALSA.Switcher // System.SystemException // System.SystemException // UnityEngine.Texture struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE_StaticFields { public: // System.Int32 UnityEngine.Texture::GenerateAllMips int32_t ___GenerateAllMips_4; public: inline static int32_t get_offset_of_GenerateAllMips_4() { return static_cast(offsetof(Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE_StaticFields, ___GenerateAllMips_4)); } inline int32_t get_GenerateAllMips_4() const { return ___GenerateAllMips_4; } inline int32_t* get_address_of_GenerateAllMips_4() { return &___GenerateAllMips_4; } inline void set_GenerateAllMips_4(int32_t value) { ___GenerateAllMips_4 = value; } }; // UnityEngine.Texture // System.Type struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // System.Type // System.Comparison`1 // System.Comparison`1 // System.EventHandler`1 // System.EventHandler`1 // System.EventHandler`1 // System.EventHandler`1 // System.AsyncCallback // System.AsyncCallback // UnityEngine.Behaviour // UnityEngine.Behaviour // CrazyMinnow.SALSA.MaterialController // CrazyMinnow.SALSA.MaterialController // System.NotSupportedException // System.NotSupportedException // CrazyMinnow.SALSA.QueueData // CrazyMinnow.SALSA.QueueData // UnityEngine.Renderer // UnityEngine.Renderer // CrazyMinnow.SALSA.SpriteController // CrazyMinnow.SALSA.SpriteController // CrazyMinnow.SALSA.TextureController // CrazyMinnow.SALSA.TextureController // UnityEngine.Transform // UnityEngine.Transform // CrazyMinnow.SALSA.UguiController // CrazyMinnow.SALSA.UguiController // CrazyMinnow.SALSA.Salsa/AudioAnalyzer // CrazyMinnow.SALSA.Salsa/AudioAnalyzer // CrazyMinnow.SALSA.Salsa/ClipChannels // CrazyMinnow.SALSA.Salsa/ClipChannels // CrazyMinnow.SALSA.Salsa/ClipFrequency // CrazyMinnow.SALSA.Salsa/ClipFrequency // CrazyMinnow.SALSA.Salsa/ClipRecordHeadPointer // CrazyMinnow.SALSA.Salsa/ClipRecordHeadPointer // CrazyMinnow.SALSA.Salsa/ClipSampleCount // CrazyMinnow.SALSA.Salsa/ClipSampleCount // CrazyMinnow.SALSA.Salsa/GetClipData // CrazyMinnow.SALSA.Salsa/GetClipData // CrazyMinnow.SALSA.Salsa/GetExternalAnalysis // CrazyMinnow.SALSA.Salsa/GetExternalAnalysis // CrazyMinnow.SALSA.Salsa/GetTriggerIndex // CrazyMinnow.SALSA.Salsa/GetTriggerIndex // CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer/SilenceAnalyzer // CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer/SilenceAnalyzer // UnityEngine.Animator // UnityEngine.Animator // UnityEngine.AudioBehaviour // UnityEngine.AudioBehaviour // UnityEngine.MonoBehaviour // UnityEngine.MonoBehaviour // UnityEngine.SkinnedMeshRenderer // UnityEngine.SkinnedMeshRenderer // UnityEngine.SpriteRenderer // UnityEngine.SpriteRenderer // UnityEngine.AudioSource // UnityEngine.AudioSource // CrazyMinnow.SALSA.Emoter // CrazyMinnow.SALSA.Emoter // CrazyMinnow.SALSA.QueueProcessor struct QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_StaticFields { public: // System.EventHandler`1 CrazyMinnow.SALSA.QueueProcessor::ScaledTimeResumed EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * ___ScaledTimeResumed_16; public: inline static int32_t get_offset_of_ScaledTimeResumed_16() { return static_cast(offsetof(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_StaticFields, ___ScaledTimeResumed_16)); } inline EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * get_ScaledTimeResumed_16() const { return ___ScaledTimeResumed_16; } inline EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 ** get_address_of_ScaledTimeResumed_16() { return &___ScaledTimeResumed_16; } inline void set_ScaledTimeResumed_16(EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * value) { ___ScaledTimeResumed_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___ScaledTimeResumed_16), (void*)value); } }; // CrazyMinnow.SALSA.QueueProcessor // CrazyMinnow.SALSA.Salsa struct Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields { public: // System.EventHandler`1 CrazyMinnow.SALSA.Salsa::StartedSalsaing EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___StartedSalsaing_76; // System.EventHandler`1 CrazyMinnow.SALSA.Salsa::StoppedSalsaing EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___StoppedSalsaing_77; // System.EventHandler`1 CrazyMinnow.SALSA.Salsa::VisemeTriggered EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___VisemeTriggered_78; // System.EventHandler`1 CrazyMinnow.SALSA.Salsa::AudioSourceFound EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___AudioSourceFound_79; public: inline static int32_t get_offset_of_StartedSalsaing_76() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields, ___StartedSalsaing_76)); } inline EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * get_StartedSalsaing_76() const { return ___StartedSalsaing_76; } inline EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 ** get_address_of_StartedSalsaing_76() { return &___StartedSalsaing_76; } inline void set_StartedSalsaing_76(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * value) { ___StartedSalsaing_76 = value; Il2CppCodeGenWriteBarrier((void**)(&___StartedSalsaing_76), (void*)value); } inline static int32_t get_offset_of_StoppedSalsaing_77() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields, ___StoppedSalsaing_77)); } inline EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * get_StoppedSalsaing_77() const { return ___StoppedSalsaing_77; } inline EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 ** get_address_of_StoppedSalsaing_77() { return &___StoppedSalsaing_77; } inline void set_StoppedSalsaing_77(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * value) { ___StoppedSalsaing_77 = value; Il2CppCodeGenWriteBarrier((void**)(&___StoppedSalsaing_77), (void*)value); } inline static int32_t get_offset_of_VisemeTriggered_78() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields, ___VisemeTriggered_78)); } inline EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * get_VisemeTriggered_78() const { return ___VisemeTriggered_78; } inline EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 ** get_address_of_VisemeTriggered_78() { return &___VisemeTriggered_78; } inline void set_VisemeTriggered_78(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * value) { ___VisemeTriggered_78 = value; Il2CppCodeGenWriteBarrier((void**)(&___VisemeTriggered_78), (void*)value); } inline static int32_t get_offset_of_AudioSourceFound_79() { return static_cast(offsetof(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields, ___AudioSourceFound_79)); } inline EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * get_AudioSourceFound_79() const { return ___AudioSourceFound_79; } inline EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 ** get_address_of_AudioSourceFound_79() { return &___AudioSourceFound_79; } inline void set_AudioSourceFound_79(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * value) { ___AudioSourceFound_79 = value; Il2CppCodeGenWriteBarrier((void**)(&___AudioSourceFound_79), (void*)value); } }; // CrazyMinnow.SALSA.Salsa // CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer // CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer // CrazyMinnow.SALSA.SalsaSettingsConfigurator // CrazyMinnow.SALSA.SalsaSettingsConfigurator // UnityEngine.EventSystems.UIBehaviour // UnityEngine.EventSystems.UIBehaviour // CrazyMinnow.SALSA.UmaUepEditorPreviewTwirler // CrazyMinnow.SALSA.UmaUepEditorPreviewTwirler // CrazyMinnow.SALSA.UmaUepProxy struct UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9_StaticFields { public: // CrazyMinnow.SALSA.UmaUepProxy/UepPoseDef[] CrazyMinnow.SALSA.UmaUepProxy::BuiltInUepPoseDefs UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* ___BuiltInUepPoseDefs_4; public: inline static int32_t get_offset_of_BuiltInUepPoseDefs_4() { return static_cast(offsetof(UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9_StaticFields, ___BuiltInUepPoseDefs_4)); } inline UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* get_BuiltInUepPoseDefs_4() const { return ___BuiltInUepPoseDefs_4; } inline UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07** get_address_of_BuiltInUepPoseDefs_4() { return &___BuiltInUepPoseDefs_4; } inline void set_BuiltInUepPoseDefs_4(UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* value) { ___BuiltInUepPoseDefs_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___BuiltInUepPoseDefs_4), (void*)value); } }; // CrazyMinnow.SALSA.UmaUepProxy // UnityEngine.UI.Graphic struct Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields { public: // UnityEngine.Material UnityEngine.UI.Graphic::s_DefaultUI Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___s_DefaultUI_4; // UnityEngine.Texture2D UnityEngine.UI.Graphic::s_WhiteTexture Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___s_WhiteTexture_5; // UnityEngine.Mesh UnityEngine.UI.Graphic::s_Mesh Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___s_Mesh_21; // UnityEngine.UI.VertexHelper UnityEngine.UI.Graphic::s_VertexHelper VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 * ___s_VertexHelper_22; public: inline static int32_t get_offset_of_s_DefaultUI_4() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_DefaultUI_4)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_s_DefaultUI_4() const { return ___s_DefaultUI_4; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_s_DefaultUI_4() { return &___s_DefaultUI_4; } inline void set_s_DefaultUI_4(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___s_DefaultUI_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultUI_4), (void*)value); } inline static int32_t get_offset_of_s_WhiteTexture_5() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_WhiteTexture_5)); } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * get_s_WhiteTexture_5() const { return ___s_WhiteTexture_5; } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF ** get_address_of_s_WhiteTexture_5() { return &___s_WhiteTexture_5; } inline void set_s_WhiteTexture_5(Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * value) { ___s_WhiteTexture_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_WhiteTexture_5), (void*)value); } inline static int32_t get_offset_of_s_Mesh_21() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_Mesh_21)); } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * get_s_Mesh_21() const { return ___s_Mesh_21; } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 ** get_address_of_s_Mesh_21() { return &___s_Mesh_21; } inline void set_s_Mesh_21(Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * value) { ___s_Mesh_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Mesh_21), (void*)value); } inline static int32_t get_offset_of_s_VertexHelper_22() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_VertexHelper_22)); } inline VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 * get_s_VertexHelper_22() const { return ___s_VertexHelper_22; } inline VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 ** get_address_of_s_VertexHelper_22() { return &___s_VertexHelper_22; } inline void set_s_VertexHelper_22(VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 * value) { ___s_VertexHelper_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_VertexHelper_22), (void*)value); } }; // UnityEngine.UI.Graphic // UnityEngine.UI.MaskableGraphic // UnityEngine.UI.MaskableGraphic // UnityEngine.UI.Image struct Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields { public: // UnityEngine.Material UnityEngine.UI.Image::s_ETC1DefaultUI Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___s_ETC1DefaultUI_37; // UnityEngine.Vector2[] UnityEngine.UI.Image::s_VertScratch Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* ___s_VertScratch_52; // UnityEngine.Vector2[] UnityEngine.UI.Image::s_UVScratch Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* ___s_UVScratch_53; // UnityEngine.Vector3[] UnityEngine.UI.Image::s_Xy Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___s_Xy_54; // UnityEngine.Vector3[] UnityEngine.UI.Image::s_Uv Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___s_Uv_55; // System.Collections.Generic.List`1 UnityEngine.UI.Image::m_TrackedTexturelessImages List_1_t815A476B0A21E183042059E705F9E505478CD8AE * ___m_TrackedTexturelessImages_56; // System.Boolean UnityEngine.UI.Image::s_Initialized bool ___s_Initialized_57; public: inline static int32_t get_offset_of_s_ETC1DefaultUI_37() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_ETC1DefaultUI_37)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_s_ETC1DefaultUI_37() const { return ___s_ETC1DefaultUI_37; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_s_ETC1DefaultUI_37() { return &___s_ETC1DefaultUI_37; } inline void set_s_ETC1DefaultUI_37(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___s_ETC1DefaultUI_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ETC1DefaultUI_37), (void*)value); } inline static int32_t get_offset_of_s_VertScratch_52() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_VertScratch_52)); } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* get_s_VertScratch_52() const { return ___s_VertScratch_52; } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA** get_address_of_s_VertScratch_52() { return &___s_VertScratch_52; } inline void set_s_VertScratch_52(Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* value) { ___s_VertScratch_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_VertScratch_52), (void*)value); } inline static int32_t get_offset_of_s_UVScratch_53() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_UVScratch_53)); } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* get_s_UVScratch_53() const { return ___s_UVScratch_53; } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA** get_address_of_s_UVScratch_53() { return &___s_UVScratch_53; } inline void set_s_UVScratch_53(Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* value) { ___s_UVScratch_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_UVScratch_53), (void*)value); } inline static int32_t get_offset_of_s_Xy_54() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_Xy_54)); } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get_s_Xy_54() const { return ___s_Xy_54; } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of_s_Xy_54() { return &___s_Xy_54; } inline void set_s_Xy_54(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value) { ___s_Xy_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Xy_54), (void*)value); } inline static int32_t get_offset_of_s_Uv_55() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_Uv_55)); } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get_s_Uv_55() const { return ___s_Uv_55; } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of_s_Uv_55() { return &___s_Uv_55; } inline void set_s_Uv_55(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value) { ___s_Uv_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Uv_55), (void*)value); } inline static int32_t get_offset_of_m_TrackedTexturelessImages_56() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___m_TrackedTexturelessImages_56)); } inline List_1_t815A476B0A21E183042059E705F9E505478CD8AE * get_m_TrackedTexturelessImages_56() const { return ___m_TrackedTexturelessImages_56; } inline List_1_t815A476B0A21E183042059E705F9E505478CD8AE ** get_address_of_m_TrackedTexturelessImages_56() { return &___m_TrackedTexturelessImages_56; } inline void set_m_TrackedTexturelessImages_56(List_1_t815A476B0A21E183042059E705F9E505478CD8AE * value) { ___m_TrackedTexturelessImages_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TrackedTexturelessImages_56), (void*)value); } inline static int32_t get_offset_of_s_Initialized_57() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_Initialized_57)); } inline bool get_s_Initialized_57() const { return ___s_Initialized_57; } inline bool* get_address_of_s_Initialized_57() { return &___s_Initialized_57; } inline void set_s_Initialized_57(bool value) { ___s_Initialized_57 = value; } }; // UnityEngine.UI.Image #ifdef __clang__ #pragma clang diagnostic pop #endif // UnityEngine.Sprite[] struct SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77 : public RuntimeArray { public: ALIGN_FIELD (8) Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * m_Items[1]; public: inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** 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, Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // UnityEngine.Texture[] struct TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150 : public RuntimeArray { public: ALIGN_FIELD (8) Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * m_Items[1]; public: inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE ** 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, Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // UnityEngine.Material[] struct MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492 : public RuntimeArray { public: ALIGN_FIELD (8) Material_t8927C00353A72755313F046D0CE85178AE8218EE * m_Items[1]; public: inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** 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, Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Material_t8927C00353A72755313F046D0CE85178AE8218EE * 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.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); } }; // CrazyMinnow.SALSA.UmaUepProxy/UepPose[] struct UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9 : public RuntimeArray { public: ALIGN_FIELD (8) UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * m_Items[1]; public: inline UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 ** 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, UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // CrazyMinnow.SALSA.UmaUepProxy/UepPoseDef[] struct UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07 : public RuntimeArray { public: ALIGN_FIELD (8) UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * m_Items[1]; public: inline UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 ** 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, UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8 : public RuntimeArray { public: ALIGN_FIELD (8) Delegate_t * m_Items[1]; public: inline Delegate_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Delegate_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Delegate_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // 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); } }; // CrazyMinnow.SALSA.QueueData[] struct QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860 : public RuntimeArray { public: ALIGN_FIELD (8) QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 m_Items[1]; public: inline QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 * 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, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___queueExpressionComponent_0))->___controller_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___queueExpressionComponent_0))->___name_12), (void*)NULL); #endif } inline QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___queueExpressionComponent_0))->___controller_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___queueExpressionComponent_0))->___name_12), (void*)NULL); #endif } }; IL2CPP_EXTERN_C void QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshal_pinvoke(const QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376& unmarshaled, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshal_pinvoke_back(const QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_pinvoke& marshaled, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376& unmarshaled); IL2CPP_EXTERN_C void QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshal_pinvoke_cleanup(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshal_com(const QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376& unmarshaled, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_com& marshaled); IL2CPP_EXTERN_C void QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshal_com_back(const QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_com& marshaled, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376& unmarshaled); IL2CPP_EXTERN_C void QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshal_com_cleanup(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_com& marshaled); // System.Void System.Collections.Generic.List`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1/Enumerator::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // !0[] System.Collections.Generic.List`1::ToArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* List_1_ToArray_mA737986DE6389E9DD8FA8E3D4E222DE4DA34958D_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor(System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m1D864B65CCD0498EC4BFFBDA8F8D04AE5333195A_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m893CC03BA01C82718A6ED996182C83EA91A0E74C_gshared (List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m56C00E186C52C3A18C014B019D76A4D67D5EDC2D_gshared (List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mF8F23D572031748AD428623AE16803455997E297_gshared (List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * __this, const RuntimeMethod* method); // System.Void System.EventHandler`1::Invoke(System.Object,!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_1_Invoke_mEAFD7F9E52E7DF356F3C4F0262BCFBA7769C83C0_gshared (EventHandler_1_tFA1C30E54FA1061D79E711F65F9A174BFBD8CDCB * __this, RuntimeObject * ___sender0, RuntimeObject * ___e1, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_m2CBF4D2A2AD14BF03E3FA24BEC8058E5122048EF_gshared (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_gshared_inline (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::set_Item(System.Int32,!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_mE11D6701697DD3496003C8E783A855A902B7C33A_gshared (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, int32_t ___index0, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 ___value1, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_gshared_inline (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m64795E72997A23871C5C2AA968B296E02C2BA0D6_gshared (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 ___item0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m263EB6C52C97405E419D9C2C54C18C15AD02C391_gshared (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * __this, int32_t ___key0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::Add(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m2721B332C7315B8590D01121005560C8A4824279_gshared (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m52FA58EE86E30E940C623B4BBD0F67D7EE27E27A_gshared (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, int32_t ___index0, const RuntimeMethod* method); // !1 System.Collections.Generic.Dictionary`2::get_Item(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Item_mFFEEBA09EA430B994459C2D86ADEE218592742A1_gshared (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * __this, int32_t ___key0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::set_Item(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mD72184D856B7E64CF626DE131ACA0A6F651874C1_gshared (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mE4D6F6FA5A737865159110CFFF4034001E7F75C1_gshared (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6_gshared (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, const RuntimeMethod* method); // System.Void System.EventHandler`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_1__ctor_m55B15D6747B269625FC10375E6008AA99BD498B4_gshared (EventHandler_1_tFA1C30E54FA1061D79E711F65F9A174BFBD8CDCB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Comparison`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_mDE1798563694D30022D3B7E1010347C573690B4A_gshared (Comparison_1_tB56E8E7C2BF431D44E8EBD15EA3E6F41AAFF03D2 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Sort(System.Comparison`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m5EB3F127CD42F1ACA97F4DB8754C49F23B64D750_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, Comparison_1_tB56E8E7C2BF431D44E8EBD15EA3E6F41AAFF03D2 * ___comparison0, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Queue`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_1__ctor_mAF21CEAD55C8D16F8DCAEF21864939658136AA4D_gshared (Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F * __this, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Expression::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Expression__ctor_m33DDB757C5D5BACCCECE133F48DC7A06FDBCF33C (Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * __this, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.Mathf::Approximately(System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Mathf_Approximately_mFEB0CB3531393F6CBE07C6E0FCB473B3311F799A (float ___a0, float ___b1, const RuntimeMethod* method); // System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m4CCA077ACAB11548CE7A37FE67B013E1E7497ACD (List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mC02548306D1DD364615170E6269E5D583272EAF5 (List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * __this, const RuntimeMethod* method) { (( void (*) (List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::Clear() inline void List_1_Clear_m270B433DFAFDB8F334A30B01933A70F640EB14E1 (List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 *, const RuntimeMethod*))List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared)(__this, method); } // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() inline Enumerator_tAF21232E555CF5021E1A738792635D00943518BE List_1_GetEnumerator_mFD7AE7B38E8A329EBDF3DAAD35D2C8C5AD4CD2B0 (List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * __this, const RuntimeMethod* method) { return (( Enumerator_tAF21232E555CF5021E1A738792635D00943518BE (*) (List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 *, const RuntimeMethod*))List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared)(__this, method); } // !0 System.Collections.Generic.List`1/Enumerator::get_Current() inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * Enumerator_get_Current_m3269C400237E6533CA2BFEE15BA25E2F2002D668_inline (Enumerator_tAF21232E555CF5021E1A738792635D00943518BE * __this, const RuntimeMethod* method) { return (( Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * (*) (Enumerator_tAF21232E555CF5021E1A738792635D00943518BE *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m28122A5F1F50EF8394190DE6D5334ED44F08AA61 (List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * __this, Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 *, Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m36F5B2ABAE2B303034BB368EEE48EEFBFF26522C (Enumerator_tAF21232E555CF5021E1A738792635D00943518BE * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tAF21232E555CF5021E1A738792635D00943518BE *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() inline void Enumerator_Dispose_m39B1858B718D5D3276968B08614F66E402422A15 (Enumerator_tAF21232E555CF5021E1A738792635D00943518BE * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tAF21232E555CF5021E1A738792635D00943518BE *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::Clear() inline void List_1_Clear_m0EAC31AFE8F497D2D36E00A85143974CEC4F42AA (List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * __this, const RuntimeMethod* method) { (( void (*) (List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D *, const RuntimeMethod*))List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared)(__this, method); } // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() inline Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 List_1_GetEnumerator_m8004243A306ADA8172D24E91E9457AE4EBF3941A (List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * __this, const RuntimeMethod* method) { return (( Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 (*) (List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D *, const RuntimeMethod*))List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared)(__this, method); } // !0 System.Collections.Generic.List`1/Enumerator::get_Current() inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * Enumerator_get_Current_m66AEB5DD2F625DF2DE4B485DBB8AE5AB4884B7F0_inline (Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 * __this, const RuntimeMethod* method) { return (( Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * (*) (Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m52BF19F8E128AFF14D3F111ACA2594D1C7DC36A4 (List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * __this, Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D *, Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m134D44D2F4DD4EB582DFE5A640634F9DA817D401 (Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() inline void Enumerator_Dispose_m9F9B5CB0922398E74B599FFB450F24BF2B694219 (Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m497DA7006D664307F20A0546E5B717AA4B5E8A86 (List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::Clear() inline void List_1_Clear_m736C259A1E09CD44D00E684A387870B1E021F8CB (List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 *, const RuntimeMethod*))List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared)(__this, method); } // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() inline Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 List_1_GetEnumerator_m01E37193361B61CC3FF93E932ECCBB8FF556044C (List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * __this, const RuntimeMethod* method) { return (( Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 (*) (List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 *, const RuntimeMethod*))List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared)(__this, method); } // !0 System.Collections.Generic.List`1/Enumerator::get_Current() inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * Enumerator_get_Current_m0F57CB6207605CE09FE2619C57FECF7C5BEF3A0F_inline (Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 * __this, const RuntimeMethod* method) { return (( Material_t8927C00353A72755313F046D0CE85178AE8218EE * (*) (Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m93A08EA489A09A73780119772DE17BA06864EB10 (List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * __this, Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 *, Material_t8927C00353A72755313F046D0CE85178AE8218EE *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_mBDF9C2CE29A407750480474BA191248286A4CDD4 (Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() inline void Enumerator_Dispose_mB381E883DF3917B1939FCC6ACAFB0D2F261E84DC (Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, 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); // UnityEngine.Quaternion UnityEngine.Transform::get_localRotation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 Transform_get_localRotation_mA6472AE7509D762965275D79B645A14A9CCF5BE5 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __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.Void UnityEngine.Transform::set_localPosition(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_localPosition_m2A2B0033EF079077FAE7C65196078EAF5D041AFC (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Transform::set_localRotation(UnityEngine.Quaternion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_localRotation_m1A9101457EC4653AFC93FCC4065A29F2C78FA62C (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Transform::set_localScale(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_localScale_mF4D1611E48D1BA7566A1E166DC2DACF3ADD8BA3A (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::get_zero() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_get_zero_m92B6E46FC9A637D20B3A4C1FFAEABFCE095DD4C6 (const RuntimeMethod* method); // UnityEngine.Quaternion UnityEngine.Quaternion::get_identity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 Quaternion_get_identity_mB872ACF032ACC4D32EE3472D98A9694205AE2C8D (const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.TformBase::.ctor(UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TformBase__ctor_mC920C8F643AF451EE372A801F9B47291653D3584 (TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___pos0, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rot1, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___scale2, const RuntimeMethod* method); // !0[] System.Collections.Generic.List`1::ToArray() inline SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* List_1_ToArray_m0C5D4E993FBA98ABAAE66A3D06310E3E2C0BE4B8 (List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * __this, const RuntimeMethod* method) { return (( SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* (*) (List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 *, const RuntimeMethod*))List_1_ToArray_mA737986DE6389E9DD8FA8E3D4E222DE4DA34958D_gshared)(__this, method); } // !0[] System.Collections.Generic.List`1::ToArray() inline TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* List_1_ToArray_m0A77F65653C219CCD2A5B1063B205EEA24BCDCDE (List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * __this, const RuntimeMethod* method) { return (( TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* (*) (List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D *, const RuntimeMethod*))List_1_ToArray_mA737986DE6389E9DD8FA8E3D4E222DE4DA34958D_gshared)(__this, method); } // !0[] System.Collections.Generic.List`1::ToArray() inline MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* List_1_ToArray_m186505F66F97198D8539D9673736392642EE45CC (List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * __this, const RuntimeMethod* method) { return (( MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* (*) (List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 *, const RuntimeMethod*))List_1_ToArray_mA737986DE6389E9DD8FA8E3D4E222DE4DA34958D_gshared)(__this, method); } // System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.LerpEasings::CubicOut(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_CubicOut_m727882E2E688678AE78DA26F9BB8463F796E85BD (float ___t0, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.LerpEasings::CubicInOut(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_CubicInOut_mB003C50399E7779EDE90BF10AEFD8B5FE987F674 (float ___t0, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.LerpEasings::QuarticOut(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_QuarticOut_m8630B6E1772EC9417892AD995A73C808F2DECDF9 (float ___t0, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.LerpEasings::QuintOut(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_QuintOut_m67DAD0DDE2C0633A7C1AA395A2952D04663C4AFD (float ___t0, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.LerpEasings::SinOut(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_SinOut_m9DDE9A6CAB7973EE7515127EF118C1EC319CEF7C (float ___t0, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.LerpEasings::CircleOut(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_CircleOut_m47F58057907343943B191D7836094EE1F87E43FC (float ___t0, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.LerpEasings::CubicIn(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_CubicIn_m66D4616B7D32CD7C4ECE2E276F0636F5B9B7F460 (float ___t0, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.LerpEasings::CircleIn(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_CircleIn_m079CD3A616C0DE74756AAEFC6CC40DE7CFBF6A3A (float ___t0, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.LerpEasings::SinIn(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_SinIn_m0F232A38E383F04E3BA722F3A7F293EA6FD3C3A2 (float ___t0, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.LerpEasings::SquaredIn(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_SquaredIn_m91514A8F5975E5A681E8E3DE9BAA63E0E2F55722 (float ___t0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor(System.Collections.Generic.IEnumerable`1) inline void List_1__ctor_m5C8057DF1222EA6F5A84B7F14A98D7C18BC29249 (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { (( void (*) (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 *, RuntimeObject*, const RuntimeMethod*))List_1__ctor_m1D864B65CCD0498EC4BFFBDA8F8D04AE5333195A_gshared)(__this, ___collection0, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mBF0D7A9B3C2F4E9182ACEE9C5C4699C25F327789 (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void CrazyMinnow.SALSA.ExpressionComponent::.ctor(System.String,System.Single,System.Single,System.Single,CrazyMinnow.SALSA.ExpressionComponent/ExpressionType,CrazyMinnow.SALSA.LerpEasings/EasingType,CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionComponent__ctor_m7032EAF5ECE9620D5148C63A8D5E760C97EDE866 (ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * __this, String_t* ___name0, float ___durationOn1, float ___durationHold2, float ___durationOff3, int32_t ___expressionType4, int32_t ___easing5, int32_t ___expressionHandler6, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m4D8CDADC6E5846B67FD0B1D76CE04F6C2CA81649 (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * __this, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 *, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m931A772099ED222BB83B3F47BC5D8A0DE00B4546 (List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void CrazyMinnow.SALSA.InspectorControllerHelperData::.ctor(CrazyMinnow.SALSA.InspectorControllerHelperData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InspectorControllerHelperData__ctor_m2BF06F1E42FAED1218484B07F283D64537D92915 (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * ___helperData0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m58DF6FCFDD48862FDECD0AC6E2FAB14588F795FE (List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * __this, InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 *, InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // System.Void CrazyMinnow.SALSA.InspectorControllerHelperData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InspectorControllerHelperData__ctor_m4FDF274348A7A6722D23862A80B19EB5C54E3099 (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Switcher::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switcher__ctor_m67537B3923AABCB49B621465F0620500B829567F (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.Object::GetInstanceID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Object_GetInstanceID_m7CF962BC1DB5C03F3522F88728CB2F514582B501 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.Mathf::Clamp(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mathf_Clamp_m3899EEB9D73D22E0C4524189E89D36A647581CBF (int32_t ___value0, int32_t ___min1, int32_t ___max2, const RuntimeMethod* method); // System.Void UnityEngine.Renderer::set_sharedMaterial(UnityEngine.Material) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Renderer_set_sharedMaterial_m1E66766F93E95F692C3C9C2C09AFD795B156678B (Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * __this, Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___value0, const RuntimeMethod* method); // UnityEngine.GameObject UnityEngine.Component::get_gameObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.Void UnityEngine.Debug::Log(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A (RuntimeObject * ___message0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m21A27FC8855349BC0B29380C366CA2702BD7D011 (List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB * __this, const RuntimeMethod* method) { (( void (*) (List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m893CC03BA01C82718A6ED996182C83EA91A0E74C (List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA * __this, const RuntimeMethod* method) { (( void (*) (List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA *, const RuntimeMethod*))List_1__ctor_m893CC03BA01C82718A6ED996182C83EA91A0E74C_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m71FDD44E74399141E01027248077751CD2AACED8 (List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mF1D464BA700E6389AEA8AF2F197270F387D9A41F (List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m56C00E186C52C3A18C014B019D76A4D67D5EDC2D (List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB * __this, const RuntimeMethod* method) { (( void (*) (List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB *, const RuntimeMethod*))List_1__ctor_m56C00E186C52C3A18C014B019D76A4D67D5EDC2D_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mF8F23D572031748AD428623AE16803455997E297 (List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 *, const RuntimeMethod*))List_1__ctor_mF8F23D572031748AD428623AE16803455997E297_gshared)(__this, method); } // System.Void CrazyMinnow.SALSA.QueueExpressionComponent::.ctor(CrazyMinnow.SALSA.ExpressionComponent) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueExpressionComponent__ctor_m2070728740E1660D6F0AE41D0BA7A08D86E005C7 (QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 * __this, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___expEl0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.QueueData::.ctor(CrazyMinnow.SALSA.ExpressionComponent,System.Single,System.Single,System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueData__ctor_m869788F7850F5E9FA956C53E4F21FFB656011ACE (QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 * __this, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___expEl0, float ___lerpProgress1, float ___startTime2, bool ___isActivating3, int32_t ___itemId4, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.QueueExpressionComponent::.ctor(CrazyMinnow.SALSA.QueueExpressionComponent) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueExpressionComponent__ctor_m36912621696266F4638E6F38E2CFC386DDC0A76B (QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 * __this, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 ___expEl0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.QueueData::.ctor(CrazyMinnow.SALSA.QueueExpressionComponent,System.Single,System.Single,System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueData__ctor_mE61A60FB8F9B593A1DC705557CE0616F3E1FD1F6 (QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 * __this, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 ___expEl0, float ___lerpProgress1, float ___startTime2, bool ___isActivating3, int32_t ___itemId4, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.QueueExpressionComponent::.ctor(CrazyMinnow.SALSA.IExpressionController,CrazyMinnow.SALSA.ExpressionComponent/ControlType,System.Single,System.Single,System.Single,System.Single,System.Boolean,CrazyMinnow.SALSA.ExpressionComponent/ExpressionType,CrazyMinnow.SALSA.LerpEasings/EasingType,CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler,System.Boolean,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueExpressionComponent__ctor_m2AE432C1E57A79D5F465EE30CFFDE1DEFDC6F976 (QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 * __this, RuntimeObject* ___controller0, int32_t ___controlType1, float ___durDelay2, float ___durOn3, float ___durHold4, float ___durOff5, bool ___isPersistent6, int32_t ___type7, int32_t ___easing8, int32_t ___handler9, bool ___animatorControlled10, bool ___useOffset11, String_t* ___name12, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.QueueData::.ctor(CrazyMinnow.SALSA.IExpressionController,CrazyMinnow.SALSA.ExpressionComponent/ControlType,System.Single,System.Single,System.Single,System.Single,System.Boolean,CrazyMinnow.SALSA.ExpressionComponent/ExpressionType,CrazyMinnow.SALSA.LerpEasings/EasingType,CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueData__ctor_mBB7166CCFC77FD77222B1C14605C3F0B42311589 (QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 * __this, RuntimeObject* ___controller0, int32_t ___controlType1, float ___durDelay2, float ___durOn3, float ___durHold4, float ___durOff5, bool ___persistence6, int32_t ___type7, int32_t ___easing8, int32_t ___handler9, bool ___animatorControlled10, bool ___useOffset11, float ___lerpProgress12, float ___startTime13, bool ___isActivating14, int32_t ___itemId15, const RuntimeMethod* method); // System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Combine_mD9F4B83868AFAD9BF9F7DC4E3974B8C881092B31 (Delegate_t * ___a0, Delegate_t * ___b1, const RuntimeMethod* method); // System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Remove_mD84132DA8A72A81B1CDC5620B52E0E043D7FF0BF (Delegate_t * ___source0, Delegate_t * ___value1, const RuntimeMethod* method); // System.Void System.EventHandler`1::Invoke(System.Object,!0) inline void EventHandler_1_Invoke_m45252756B37E400159FCCDDDB7E64E19A6502253 (EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * __this, RuntimeObject * ___sender0, QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 * ___e1, const RuntimeMethod* method) { (( void (*) (EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 *, RuntimeObject *, QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 *, const RuntimeMethod*))EventHandler_1_Invoke_mEAFD7F9E52E7DF356F3C4F0262BCFBA7769C83C0_gshared)(__this, ___sender0, ___e1, method); } // System.Void CrazyMinnow.SALSA.QueueProcessor::ShutdownActiveQueue(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_ShutdownActiveQueue_m240528DFBDEABAF54E36697F89D6FA06321E12DE (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, int32_t ___queueOoO0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m9722D429C1D6FBF4E4F763847E80CB50BD83975F_inline (List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // System.Void CrazyMinnow.SALSA.QueueProcessor::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_Initialize_mEC65556C8ADE7446BCC2B23C1752770A6DA7778D (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.QueueProcessor::InitializeQueueOrderOfOperation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_InitializeQueueOrderOfOperation_m0B54061E1D2D33F2DF481BADA4A18C15EE6EB7EF (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.QueueProcessor/QueueProcessorNotificationArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessorNotificationArgs__ctor_m76BD181B7709738AB2C7EB20C365912E60DD02F2 (QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Clear() inline void List_1_Clear_mBA67EB750F751E78BB2D3489871D8484AB801557 (List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 *, const RuntimeMethod*))List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared)(__this, method); } // System.Void CrazyMinnow.SALSA.QueueProcessor/QueueOoO::.ctor(System.String,System.Collections.Generic.List`1,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueOoO__ctor_m97FB9C803279C26A8CCDA89F7C63BE985F8776EE (QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * __this, String_t* ___name0, List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * ___queue1, int32_t ___level2, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295 (List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * __this, QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 *, QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() inline Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 List_1_GetEnumerator_m12A102489545C7BD182D1487554E78253F9A129D (List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * __this, const RuntimeMethod* method) { return (( Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 (*) (List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 *, const RuntimeMethod*))List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared)(__this, method); } // !0 System.Collections.Generic.List`1/Enumerator::get_Current() inline QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * Enumerator_get_Current_mE2EB6B000E443315A798915D8FB63C38CEEAFA47_inline (Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 * __this, const RuntimeMethod* method) { return (( QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * (*) (Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.List`1::Clear() inline void List_1_Clear_m2CBF4D2A2AD14BF03E3FA24BEC8058E5122048EF (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, const RuntimeMethod* method) { (( void (*) (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *, const RuntimeMethod*))List_1_Clear_m2CBF4D2A2AD14BF03E3FA24BEC8058E5122048EF_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m9D54105B7DAF312514D71568AFE5B5EC6F9DF83D (Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() inline void Enumerator_Dispose_m4DAC8A03E88979B42189D98D5E0A2A9979C995AE (Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method); } // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_inline (List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * (*) (List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method); } // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, int32_t ___index0, const RuntimeMethod* method) { return (( QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 (*) (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *, int32_t, const RuntimeMethod*))List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_gshared_inline)(__this, ___index0, method); } // System.Single CrazyMinnow.SALSA.SalsaUtil::GetTime(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SalsaUtil_GetTime_m78C765D85FA03367E949348B2984576068E04547 (bool ___ignoreTimeScaling0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::set_Item(System.Int32,!0) inline void List_1_set_Item_mE11D6701697DD3496003C8E783A855A902B7C33A (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, int32_t ___index0, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 ___value1, const RuntimeMethod* method) { (( void (*) (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *, int32_t, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 , const RuntimeMethod*))List_1_set_Item_mE11D6701697DD3496003C8E783A855A902B7C33A_gshared)(__this, ___index0, ___value1, method); } // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_inline (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *, const RuntimeMethod*))List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_gshared_inline)(__this, method); } // System.Void CrazyMinnow.SALSA.QueueProcessor::ConfirmRegistration(CrazyMinnow.SALSA.QueueData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_ConfirmRegistration_mE5DC64971DA64E094A929224F14F6859050D9A08 (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 ___queueData0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.QueueProcessor::Register(CrazyMinnow.SALSA.IExpressionController,CrazyMinnow.SALSA.ExpressionComponent/ControlType,System.Single,System.Single,System.Single,System.Single,System.Boolean,CrazyMinnow.SALSA.ExpressionComponent/ExpressionType,CrazyMinnow.SALSA.LerpEasings/EasingType,CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler,System.Boolean,System.Boolean,System.Boolean,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_Register_m5F2F5571F5A7F76DAAA220324254F13FB4C56D9A (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, RuntimeObject* ___controller0, int32_t ___controlType1, float ___durDelay2, float ___durOn3, float ___durHold4, float ___durOff5, bool ___persistence6, int32_t ___type7, int32_t ___easing8, int32_t ___handler9, bool ___animatorControlled10, bool ___useOffset11, bool ___isActivating12, float ___frac13, const RuntimeMethod* method); // CrazyMinnow.SALSA.QueueProcessor/QueueOoO CrazyMinnow.SALSA.QueueProcessor::GetRegistrationQueue(CrazyMinnow.SALSA.ExpressionComponent/ExpressionType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * QueueProcessor_GetRegistrationQueue_m1935CA0004E0CB38DFEC2E86CD53C730A11E9845 (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, int32_t ___expressionType0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m64795E72997A23871C5C2AA968B296E02C2BA0D6 (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 , const RuntimeMethod*))List_1_Add_m64795E72997A23871C5C2AA968B296E02C2BA0D6_gshared)(__this, ___item0, method); } // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(!0) inline bool Dictionary_2_ContainsKey_m263EB6C52C97405E419D9C2C54C18C15AD02C391 (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * __this, int32_t ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, int32_t, const RuntimeMethod*))Dictionary_2_ContainsKey_m263EB6C52C97405E419D9C2C54C18C15AD02C391_gshared)(__this, ___key0, method); } // System.Void System.Collections.Generic.Dictionary`2::Add(!0,!1) inline void Dictionary_2_Add_m2721B332C7315B8590D01121005560C8A4824279 (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, int32_t, int32_t, const RuntimeMethod*))Dictionary_2_Add_m2721B332C7315B8590D01121005560C8A4824279_gshared)(__this, ___key0, ___value1, method); } // System.Void CrazyMinnow.SALSA.QueueProcessor::LateUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_LateUpdate_mA0A29E1E453C9BC2B142ED237211910590275BAC (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.QueueProcessor::ProcessQueue(System.Collections.Generic.List`1,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_ProcessQueue_mC6258813D82C24379B012F75321B620F570982BA (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * ___queue0, int32_t ___hierarchyLevel1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::RemoveAt(System.Int32) inline void List_1_RemoveAt_m52FA58EE86E30E940C623B4BBD0F67D7EE27E27A (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, int32_t ___index0, const RuntimeMethod* method) { (( void (*) (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *, int32_t, const RuntimeMethod*))List_1_RemoveAt_m52FA58EE86E30E940C623B4BBD0F67D7EE27E27A_gshared)(__this, ___index0, method); } // System.Single CrazyMinnow.SALSA.LerpEasings::Ease(System.Single,CrazyMinnow.SALSA.LerpEasings/EasingType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_Ease_m7A4498758814D0241A90F64213E1D12BFE4B8072 (float ___t0, int32_t ___easingType1, const RuntimeMethod* method); // System.Single UnityEngine.Mathf::Clamp(System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Clamp_m5EA831B060853D4246B8394A30599A0021F80AFF (float ___value0, float ___min1, float ___max2, const RuntimeMethod* method); // !1 System.Collections.Generic.Dictionary`2::get_Item(!0) inline int32_t Dictionary_2_get_Item_mFFEEBA09EA430B994459C2D86ADEE218592742A1 (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * __this, int32_t ___key0, const RuntimeMethod* method) { return (( int32_t (*) (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, int32_t, const RuntimeMethod*))Dictionary_2_get_Item_mFFEEBA09EA430B994459C2D86ADEE218592742A1_gshared)(__this, ___key0, method); } // System.Void System.Collections.Generic.Dictionary`2::set_Item(!0,!1) inline void Dictionary_2_set_Item_mD72184D856B7E64CF626DE131ACA0A6F651874C1 (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, int32_t, int32_t, const RuntimeMethod*))Dictionary_2_set_Item_mD72184D856B7E64CF626DE131ACA0A6F651874C1_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m513073B395DCDCF9B4A013BC3CD2FA2EC9DC2BF3 (List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_mE4D6F6FA5A737865159110CFFF4034001E7F75C1 (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, const RuntimeMethod*))Dictionary_2__ctor_mE4D6F6FA5A737865159110CFFF4034001E7F75C1_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6 (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, const RuntimeMethod* method) { (( void (*) (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *, const RuntimeMethod*))List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6_gshared)(__this, method); } // System.Void UnityEngine.MonoBehaviour::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mF1988BCA8453A6F7C9CADC31952D30BA7A4BCBD1 (List_1_t35E2F3636689C080F259AD3469423EB15A85AF38 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t35E2F3636689C080F259AD3469423EB15A85AF38 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.EventHandler`1::Invoke(System.Object,!0) inline void EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * __this, RuntimeObject * ___sender0, SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * ___e1, const RuntimeMethod* method) { (( void (*) (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *, RuntimeObject *, SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F *, const RuntimeMethod*))EventHandler_1_Invoke_mEAFD7F9E52E7DF356F3C4F0262BCFBA7769C83C0_gshared)(__this, ___sender0, ___e1, method); } // System.Int32 UnityEngine.Mathf::Max(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mathf_Max_mDE96ED504F75C9C7985CC49B099CF308AC52BF48 (int32_t ___a0, int32_t ___b1, const RuntimeMethod* method); // System.Int32 CrazyMinnow.SALSA.Salsa::get_TriggeredIndex() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Salsa_get_TriggeredIndex_m5F6A4E11FA84288C6833C7B478E3C665EE6D1609_inline (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_Initialize_mE15AC56C790D95BF3CB8A689A213C14D926B4489 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Boolean CrazyMinnow.SALSA.Salsa::CheckConfigIsReady() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Salsa_CheckConfigIsReady_m1F6631A85B7E08D672F38753987809DEA52AEB40 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::InitializeDelegates() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_InitializeDelegates_mD76D22EB8C34D9FFE5ECA49E8461157BE73A4A83 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::UpdateExpressionControllers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_UpdateExpressionControllers_m0E1F6DD71EBF047651EA41A9FF52B244B1B8F844 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa/SalsaNotificationArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaNotificationArgs__ctor_m86AA50938CAA960ECA10ADD8CBADD5AAD1033ABC (SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::SetPersistence(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_SetPersistence_mB4B5713E91C1A4FCF8AD04320555588FE58C0125 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, bool ___persistence0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::TurnOffAll() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_TurnOffAll_m6FBDEED841BD8DE16D4372C41C766417513398BC (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::StartWaitForAudio() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_StartWaitForAudio_m47C0E613C6AF55FD13E4BB95F6FE87F3D856E907 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void System.EventHandler`1::.ctor(System.Object,System.IntPtr) inline void EventHandler_1__ctor_m51767897650CD1E74ED8FC0125D652DF9D7D74A5 (EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventHandler_1__ctor_m55B15D6747B269625FC10375E6008AA99BD498B4_gshared)(__this, ___object0, ___method1, method); } // System.Void CrazyMinnow.SALSA.QueueProcessor::add_ScaledTimeResumed(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_add_ScaledTimeResumed_mDC6AE8394D4BD574AF1E604F7B990A4719F0024A (EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * ___value0, const RuntimeMethod* method); // System.Boolean CrazyMinnow.SALSA.Salsa::get_QueueProcessorScaledTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Salsa_get_QueueProcessorScaledTime_mBFE42A125987BCDAF74D281D1335134AFB405644 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void UnityEngine.MonoBehaviour::StopCoroutine(System.Collections.IEnumerator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour_StopCoroutine_m3AB89AE7770E06BDB33BF39104BE5C57DF90616B (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, RuntimeObject* ___routine0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.QueueProcessor::remove_ScaledTimeResumed(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_remove_ScaledTimeResumed_mBFB9594F4A7E5CB0545372FCF614B4353DE2E291 (EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * ___value0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa/GetExternalAnalysis::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GetExternalAnalysis__ctor_m77E5A87B31F1AFD205B33CAA8C313E9D00B76629 (GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa/AudioAnalyzer::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioAnalyzer__ctor_mA07C80DF68DE3E1E836706824305E71EA5208E1B (AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa/ClipChannels::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipChannels__ctor_mBBA733579FA36D09ACFAF37155075A53152B86A4 (ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa/ClipFrequency::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipFrequency__ctor_m88B0F7C910CF753F8719DA759C23784B775900FF (ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa/ClipSampleCount::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipSampleCount__ctor_mC181076F208EFE6615AE08399EA3FC9BCA13BC9D (ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa/GetClipData::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GetClipData__ctor_m75A90A2C5C6F8486437FC10855BCDF618F724FE8 (GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa/ClipRecordHeadPointer::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipRecordHeadPointer__ctor_m5711E8C2203B5A006592468D76EA426D502B9968 (ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa/GetTriggerIndex::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GetTriggerIndex__ctor_mBC2BFC1870A2CCE0A265BA6371BCB83E137D0818 (GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Boolean System.Delegate::op_Equality(System.Delegate,System.Delegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Delegate_op_Equality_m0CC379177BC80070E98252CD7B47D5489D8F9E07 (Delegate_t * ___d10, Delegate_t * ___d21, const RuntimeMethod* method); // System.Collections.IEnumerator CrazyMinnow.SALSA.Salsa::WaitForAudioSource() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Salsa_WaitForAudioSource_mD5C1A3235BC6993C6CAE64E603B865A5BB3CAD03 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine(System.Collections.IEnumerator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719 (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, RuntimeObject* ___routine0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::LateUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_LateUpdate_mDC7B07325DE883B78B67F3AA601324CCB8C820F2 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::ProcessAudioAnalysis() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_ProcessAudioAnalysis_m437098DAA809BC6F1CDF04F8779480FBA6C7B1FF (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Int32 CrazyMinnow.SALSA.Salsa/GetTriggerIndex::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GetTriggerIndex_Invoke_mD8807144445D0D977BEB9B5261E7BF05A6089EB7 (GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::FireStartedSalsaingEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_FireStartedSalsaingEvent_m82BFC9C22FDC79087BD474AF0502FEEB21C8BED2 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::ProcessEmphasizerEmote() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_ProcessEmphasizerEmote_m1D5E011C67233585B4AFB4C08882E50489EF2095 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::TurnPreviouslyTriggeredVisemeOff(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_TurnPreviouslyTriggeredVisemeOff_mB6F0A8420E9FA89BFAC04AA5AA59C142637B7348 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___triggeredIndex0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::TurnVisemeOn(System.Int32,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_TurnVisemeOn_m7072EBD688E4CCA3E51CEF358349E89A004D90DE (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___triggeredIndex0, float ___dynamicsAmount1, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::FireVisemeTriggeredEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_FireVisemeTriggeredEvent_mD904DE7DC81C552309FFF57EE402F478BC64228A (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::ProcessSilenceTrigger() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_ProcessSilenceTrigger_m44C31D3AAAE6AD63F4AC3B283368F1B3BB92939B (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::FireStoppedSalsaingEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_FireStoppedSalsaingEvent_m59B795C0C737BE732FB36C731E8636EDFD7B4A3B (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.Salsa::AnalyzeAudio() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Salsa_AnalyzeAudio_m1F47BA25642DDF4EF6F55A01CC42B1DEA4B47ACA (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.Salsa/GetExternalAnalysis::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GetExternalAnalysis_Invoke_mA5D89EF5A44B81239F02BDCC0E0ACCBFCCCFF9EB (GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * __this, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.Salsa::ScaleAudio(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Salsa_ScaleAudio_mFC2A90BECE72AED403F54B7E7862E7FA8F95616E (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, float ___audioValue0, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline (List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * (*) (List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method); } // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_inline (List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // System.Boolean UnityEngine.Object::op_Implicit(UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Implicit_m3B780F50367611CB9A34F3BF2032585E05DA1BFD (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___exists0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Emoter::TriggerLipSyncEmphasis(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Emoter_TriggerLipSyncEmphasis_m2AF6DC943444A01EE9121338CE0AAFF203183442 (Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7 * __this, float ___emphasisAmount0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::TurnVisemComponentsOff(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_TurnVisemComponentsOff_mB2F87AC392C36E5B62E0361E93D7BC36FB53EAA6 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___visemeIndex0, const RuntimeMethod* method); // System.Boolean CrazyMinnow.SALSA.SalsaUtil::CheckForInvalidComponent(UnityEngine.GameObject,System.String,CrazyMinnow.SALSA.Expression,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SalsaUtil_CheckForInvalidComponent_m3DCBA3DC78D34E0C6E1E2C33E012633F46DFABFB (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___go0, String_t* ___caller1, Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * ___expression2, int32_t ___index3, bool ___warnOnNullRefs4, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * (*) (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method); } // System.Void CrazyMinnow.SALSA.Salsa::RegisterComponentOff(CrazyMinnow.SALSA.ExpressionComponent,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_RegisterComponentOff_m2BA3ADEE9DBDE488FD8CB28B1E1685CB48C9584D (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___component0, float ___durOff1, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_inline (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // System.Void CrazyMinnow.SALSA.QueueProcessor::Register(CrazyMinnow.SALSA.IExpressionController,CrazyMinnow.SALSA.ExpressionComponent/ControlType,System.Single,System.Single,System.Single,System.Boolean,CrazyMinnow.SALSA.ExpressionComponent/ExpressionType,CrazyMinnow.SALSA.LerpEasings/EasingType,CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler,System.Boolean,System.Boolean,System.Boolean,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_Register_mC982EAFA114261C912F7D4E972BA007FCB7F0E8D (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, RuntimeObject* ___controller0, int32_t ___controlType1, float ___durOn2, float ___durHold3, float ___durOff4, bool ___persistence5, int32_t ___type6, int32_t ___easing7, int32_t ___handler8, bool ___animatorControlled9, bool ___useOffset10, bool ___isActivating11, float ___frac12, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.QueueProcessor::Register(CrazyMinnow.SALSA.ExpressionComponent,System.Boolean,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_Register_m081FE8ACE20CE9648A1BB1D8E8901FDD592E9761 (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___expressionComponent0, bool ___isActivating1, float ___frac2, const RuntimeMethod* method); // System.Single UnityEngine.Mathf::Clamp01(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Clamp01_m831CBA1D198C3CDE660E8172A67A4E41BD0D0171 (float ___value0, const RuntimeMethod* method); // System.Single UnityEngine.Random::Range(System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Random_Range_mA944A98B82AFE4D46D05EF533ED0068148EFAEA5 (float ___minInclusive0, float ___maxInclusive1, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.Salsa::CalcAdvancedDynamics(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Salsa_CalcAdvancedDynamics_m3522A677DE2438E5463248944EE10F38AB96A26D (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___triggeredIndex0, const RuntimeMethod* method); // System.Int32 CrazyMinnow.SALSA.Salsa::GetSecondaryMixIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Salsa_GetSecondaryMixIndex_mC20D3171A9D5BD663B58209EF83B7457B37CB32F (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___triggeredIndex0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::TurnVisemeComponentsOn(System.Int32,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_TurnVisemeComponentsOn_m6270BDD6BFE8831D7800978F26AE72C16CA36A75 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___triggeredIndex0, float ___fracAmount1, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::RegisterComponentOn(CrazyMinnow.SALSA.ExpressionComponent,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_RegisterComponentOn_mA7AA78F8098FD37C71CA43CAB15A701DB1821481 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___component0, float ___fracAmount1, const RuntimeMethod* method); // UnityEngine.AudioClip UnityEngine.AudioSource::get_clip() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * AudioSource_get_clip_mE4454E38D2C0A4C8CC780A435FC1DBD4D47D16DC (AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::AdjustAnalysisSettings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_AdjustAnalysisSettings_m3093BFD52C850590F5D4E3680248AB93315D877D (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.AudioSource::get_isPlaying() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AudioSource_get_isPlaying_mEA69477C77D542971F7B454946EF25DFBE0AF6A8 (AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * __this, const RuntimeMethod* method); // System.Int32 CrazyMinnow.SALSA.Salsa/ClipSampleCount::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ClipSampleCount_Invoke_mF0F112CD0A4C2CBA9D2F0E4D3B737CD741DEAF0E (ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * __this, const RuntimeMethod* method); // System.Int32 CrazyMinnow.SALSA.Salsa::CalcClipOffsetPointer(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Salsa_CalcClipOffsetPointer_m3E8BAD6CDE9870C60BDE881ABA42D665894FCEEE (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___clipLength0, const RuntimeMethod* method); // System.Boolean CrazyMinnow.SALSA.Salsa::IsOffsetPointerOutOfBounds(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Salsa_IsOffsetPointerOutOfBounds_m0D07F31F51E1288168FAE5B5175E95E283FF118C (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___clipOffsetPointer0, int32_t ___clipLength1, const RuntimeMethod* method); // System.Boolean CrazyMinnow.SALSA.Salsa/GetClipData::Invoke(System.Single[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GetClipData_Invoke_m967F4557D5DD4481C89F64C468BE81E864D62615 (GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * __this, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioData0, int32_t ___dataPointer1, const RuntimeMethod* method); // System.Int32 CrazyMinnow.SALSA.Salsa/ClipChannels::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ClipChannels_Invoke_m050CF7CE57A9379F76A87D40B8DCEE0659F48AC1 (ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * __this, const RuntimeMethod* method); // System.Single CrazyMinnow.SALSA.Salsa/AudioAnalyzer::Invoke(System.Int32,System.Single[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float AudioAnalyzer_Invoke_m38D61A2805EB6CD043D3D21F9FD50C12B5AC5A82 (AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C * __this, int32_t ___channels0, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioSampleData1, const RuntimeMethod* method); // System.Int32 CrazyMinnow.SALSA.Salsa/ClipRecordHeadPointer::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ClipRecordHeadPointer_Invoke_mF7799D5E209C42442281C4E5BCDE6241F52ADF71 (ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * __this, const RuntimeMethod* method); // System.Int32 CrazyMinnow.SALSA.Salsa::get_GetSalsaAudioPointer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Salsa_get_GetSalsaAudioPointer_mA37D6358FBE167D8B2AAFAC1DB41F1892B3C1298 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.AudioSource::get_timeSamples() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AudioSource_get_timeSamples_m2D16DA78011B58C24BCA679B44D2BF832DFCA0BE (AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * __this, const RuntimeMethod* method); // System.Int32 CrazyMinnow.SALSA.Salsa/ClipFrequency::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ClipFrequency_Invoke_mCCE6328F0965DA5DDFE77AE95D47DB0123CB5B53 (ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::SetPlayheadBias() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_SetPlayheadBias_mA34239734DE7551D7C11713D5E1D704CEFA394BC (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::SetSampleSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_SetSampleSize_m8CC64F2CC12C0C009EFE53B4CFF8342E52FE4CC2 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa/d__147::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWaitForAudioSourceU3Ed__147__ctor_mE197E75D9AFE8D236310F9436EAE656C351E1B53 (U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() inline Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 List_1_GetEnumerator_mAD3F2DAD3D0F4DF7B7BC973B3533891358C14A92 (List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * __this, const RuntimeMethod* method) { return (( Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 (*) (List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 *, const RuntimeMethod*))List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared)(__this, method); } // !0 System.Collections.Generic.List`1/Enumerator::get_Current() inline LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * Enumerator_get_Current_mB02C05394DC770A56E5FEB003C77FA0FA3BBB157_inline (Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 * __this, const RuntimeMethod* method) { return (( LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * (*) (Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method); } // System.Void CrazyMinnow.SALSA.SalsaUtil::RuntimeUpdateExpressionController(CrazyMinnow.SALSA.Expression) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaUtil_RuntimeUpdateExpressionController_m4AEB9DBBA6101A2DD5B15AFA43266F0665818AA5 (Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * ___expData0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m593B20DE4BB1CB044003F8A693DE974C651496DD (Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() inline void Enumerator_Dispose_m75665EC5C609211A20A209AB0A0B37A1BF4D7190 (Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method); } // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() inline Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA List_1_GetEnumerator_m19041D0DC52593D6F61EB3FB4E1EB48892A0FE6E (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * __this, const RuntimeMethod* method) { return (( Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA (*) (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 *, const RuntimeMethod*))List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared)(__this, method); } // !0 System.Collections.Generic.List`1/Enumerator::get_Current() inline ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * Enumerator_get_Current_mCF88776A724D5ED0F5CC88B6B8BA4C530789EE29_inline (Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA * __this, const RuntimeMethod* method) { return (( ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * (*) (Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m54933EE6D3CBFC64FD2C01531D412C12A7A6C7B4 (Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() inline void Enumerator_Dispose_mB0BA1641911700A5C3B3107D14A9D3B4EE369648 (Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method); } // System.Void System.Comparison`1::.ctor(System.Object,System.IntPtr) inline void Comparison_1__ctor_m2CB0665DA79F3EF427ACC064B30A52126F63BF12 (Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Comparison_1__ctor_mDE1798563694D30022D3B7E1010347C573690B4A_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Collections.Generic.List`1::Sort(System.Comparison`1) inline void List_1_Sort_m88099AEC681EFE07F57B5B1FE35A5EF033BA6452 (List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * __this, Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 * ___comparison0, const RuntimeMethod* method) { (( void (*) (List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 *, Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 *, const RuntimeMethod*))List_1_Sort_m5EB3F127CD42F1ACA97F4DB8754C49F23B64D750_gshared)(__this, ___comparison0, method); } // System.String UnityEngine.Object::get_name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Object_get_name_m0C7BC870ED2F0DC5A2FB09628136CD7D1CB82CFB (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * __this, const RuntimeMethod* method); // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m5D784E6CEEBE99ED8749AA4B9491D926273FD749 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogWarning(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0 (RuntimeObject * ___message0, const RuntimeMethod* method); // System.Single UnityEngine.Mathf::Lerp(System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Lerp_m04D5C368C4E4F1AB78230C6809A6651951A52C86 (float ___a0, float ___b1, float ___t2, const RuntimeMethod* method); // System.Collections.IEnumerator CrazyMinnow.SALSA.Salsa::WaitForSalsa() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Salsa_WaitForSalsa_m2815A25D22FBA78003ACB8A97A718EBD803853EC (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa/d__155::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWaitForSalsaU3Ed__155__ctor_m983EF20D01BE513D82650FC8745EB26066175A0B (U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Boolean UnityEngine.AudioClip::GetData(System.Single[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AudioClip_GetData_m2D7410645789EBED93CAA8146D271C79156E2CB0 (AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * __this, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___data0, int32_t ___offsetSamples1, const RuntimeMethod* method); // System.Int32 UnityEngine.AudioClip::get_samples() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AudioClip_get_samples_m741BFBA562FBFDBE67AFE98A38B1B4A871D2D567 (AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.AudioClip::get_frequency() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AudioClip_get_frequency_m5346F253EE3761A2535B20E0E27B6AB0B875BFCD (AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.AudioClip::get_channels() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AudioClip_get_channels_m7592B378317BFA41DF2228636124E4DD5B86D3B8 (AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mC4ECA0D4A96ACB515DE3CB9E3D1E95082E0AA203 (List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void UnityEngine.Object::Destroy(UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Destroy_mBDC17991A372E11E2E485EFC5C72F58972CBEC0F (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___obj0, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent() inline Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * Component_GetComponent_TisSalsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_m6ECD2880E8C4B788B2F9D75B2A53F0898FBEE0B0 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared)(__this, method); } // System.Void CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer/SilenceAnalyzer::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SilenceAnalyzer__ctor_m809747F30F21CBCFBFC6A519F7FDEDBE865F5884 (SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.EventHandler`1::.ctor(System.Object,System.IntPtr) inline void EventHandler_1__ctor_m06CBEE3FD45E335A0199C7D1654191E2F73D9B10 (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventHandler_1__ctor_m55B15D6747B269625FC10375E6008AA99BD498B4_gshared)(__this, ___object0, ___method1, method); } // System.Void CrazyMinnow.SALSA.Salsa::add_AudioSourceFound(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_add_AudioSourceFound_mF4C8A6D6154DB64334C3A9C4B43DF78DE1CD8A79 (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___value0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Salsa::remove_AudioSourceFound(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_remove_AudioSourceFound_mA38E57B716D9E4994DEC9EED6FEFC3C7353B184B (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___value0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::ProcessAudioStream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaAdvancedDynamicsSilenceAnalyzer_ProcessAudioStream_m430CEF0591446308550122109CD79FBEB1593850 (SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1 * __this, const RuntimeMethod* method); // System.Boolean CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer/SilenceAnalyzer::Invoke(System.Single[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SilenceAnalyzer_Invoke_m08C4B76A403B7F286DD435A00EED1930F9C03C12 (SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB * __this, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___samples0, const RuntimeMethod* method); // System.Boolean CrazyMinnow.SALSA.Salsa::IsWithinPulseCheckInterruptVariance(System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Salsa_IsWithinPulseCheckInterruptVariance_m6AE690752C299A71A552B0E5BB04616F664310B4 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, float ___startPoint0, float ___variance1, const RuntimeMethod* method); // UnityEngine.Mesh UnityEngine.SkinnedMeshRenderer::get_sharedMesh() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * SkinnedMeshRenderer_get_sharedMesh_mFD55E307943C1C4B2E2E8632F15B41CCBD8D91F2 (SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.Mesh::get_blendShapeCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mesh_get_blendShapeCount_mC80CCEA555E9E5609E3497EECF2B03F9B822CB77 (Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * __this, const RuntimeMethod* method); // System.String UnityEngine.Mesh::GetBlendShapeName(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Mesh_GetBlendShapeName_mF28E636D7F66608E6FD9152ACD9547B78C895000 (Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * __this, int32_t ___shapeIndex0, const RuntimeMethod* method); // System.Boolean UnityEngine.Application::get_isPlaying() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Application_get_isPlaying_m0388B541E40404CBB82D6AEB224A29053A0BC58C (const RuntimeMethod* method); // System.Single UnityEngine.Time::get_time() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_time_m52C9390086344FA8787001ED5911550D850CE515 (const RuntimeMethod* method); // System.Single UnityEngine.Time::get_unscaledTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_unscaledTime_mDBF04FC47709E0C1BBBB4BA4BDA5405D8EF632A1 (const RuntimeMethod* method); // System.Boolean UnityEngine.Animator::get_isInitialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Animator_get_isInitialized_mE2537C77C6C8DC4403C0D0C58FAFE755310A8FE0 (Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Animator::Rebind() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_Rebind_mE431618F7D87F4CB933C2ECBACD11CB47EA01615 (Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.Animator::get_parameterCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Animator_get_parameterCount_m87FC9BB7A51F40CFC666600392693821DA5114EB (Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * __this, const RuntimeMethod* method); // UnityEngine.AnimatorControllerParameter UnityEngine.Animator::GetParameter(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE * Animator_GetParameter_m8E2B8351264BE835BDAE9B6CCB6C99FCB197760D (Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * __this, int32_t ___index0, const RuntimeMethod* method); // System.String UnityEngine.AnimatorControllerParameter::get_name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AnimatorControllerParameter_get_name_m210BF40EC0AC18BA2E21F089F3182FE1CFCE3A55 (AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE * __this, const RuntimeMethod* method); // System.Void UnityEngine.Color::.ctor(System.Single,System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Color__ctor_m679019E6084BF7A6F82590F66F5F695F6A50ECC5 (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * __this, float ___r0, float ___g1, float ___b2, float ___a3, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline (List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * (*) (List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method); } // System.Void CrazyMinnow.SALSA.ShapeController::.ctor(UnityEngine.SkinnedMeshRenderer,System.Int32,System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShapeController__ctor_m5C516B1FDA7E963D9809304B01136E81F10AEE91 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * ___smr0, int32_t ___blendIndex1, float ___min2, float ___max3, float ___frac4, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.BoneController::.ctor(UnityEngine.Transform,CrazyMinnow.SALSA.TformBase,CrazyMinnow.SALSA.TformBase,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoneController__ctor_m4802A85329F431BE104174AD7997EC46C9D6B25F (BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C * __this, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___bone0, TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___min1, TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___max2, bool ___useConstraintPos3, bool ___useConstraintRot4, bool ___useConstraintScl5, bool ___useOffset6, bool ___useFollow7, float ___frac8, const RuntimeMethod* method); // UnityEngine.Sprite[] CrazyMinnow.SALSA.InspectorControllerHelperData::GetSprites() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* InspectorControllerHelperData_GetSprites_mE5940092676969BC9F63D28C309882F3DB616F02 (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.SpriteController::.ctor(UnityEngine.SpriteRenderer,UnityEngine.Sprite[],CrazyMinnow.SALSA.Switcher/OnState,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpriteController__ctor_mFE2740133E31B78FCAB0B36FFDE3146E636DC4B0 (SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 * __this, SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * ___renderer0, SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* ___animationFrames1, int32_t ___onState2, bool ___isRestNull3, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.UguiController::.ctor(UnityEngine.UI.Image,UnityEngine.Sprite[],CrazyMinnow.SALSA.Switcher/OnState,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UguiController__ctor_m16E0D998ACC0F04F200585B2078A74EFE25933F9 (UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B * __this, Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * ___renderer0, SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* ___animationFrames1, int32_t ___onState2, bool ___isRestNull3, const RuntimeMethod* method); // UnityEngine.Material[] CrazyMinnow.SALSA.InspectorControllerHelperData::GetMaterials() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* InspectorControllerHelperData_GetMaterials_m3F0B3A72C75F832BA0C57A2C9CF919BB3F3F146F (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.MaterialController::.ctor(UnityEngine.Renderer,UnityEngine.Material[],CrazyMinnow.SALSA.Switcher/OnState,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaterialController__ctor_m047FACC99D8708861861A4381686FF6FA9088A6A (MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 * __this, Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * ___renderer0, MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* ___animationFrames1, int32_t ___onState2, bool ___isRestNull3, const RuntimeMethod* method); // UnityEngine.Texture[] CrazyMinnow.SALSA.InspectorControllerHelperData::GetTextures() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* InspectorControllerHelperData_GetTextures_m19270F028D0A040262FA75BF0A59F94BF6910664 (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.TextureController::.ctor(UnityEngine.Renderer,System.Int32,UnityEngine.Texture[],CrazyMinnow.SALSA.Switcher/OnState,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureController__ctor_m69FAB6004583C9E38B95CB95105BE7D54F514CFA (TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 * __this, Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * ___renderer0, int32_t ___materialIndex1, TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* ___animationFrames2, int32_t ___onState3, bool ___isRestNull4, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.UmaController::.ctor(CrazyMinnow.SALSA.UmaUepProxy,System.Int32,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaController__ctor_m887575118976652B2AAF7005B8E1E3E2FFAE097F (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * ___umaUepProxy0, int32_t ___poseIndex1, float ___fullOnValue2, float ___frac3, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.AnimatorController::.ctor(UnityEngine.Animator,UnityEngine.AnimatorControllerParameter,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimatorController__ctor_m20030EE407DDE45C9CB8247E77E3BAB2562A1FF1 (AnimatorController_t9D96F6465E88F19768634AFD260141CF23B77E01 * __this, Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * ___controller0, AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE * ___animatorParameter1, int32_t ___parameterIndex2, bool ___isTriggerBiDirectional3, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.EventController::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventController__ctor_m2CE057B924DCD61C81E9C00769BD366D1C352A7A (EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4 * __this, String_t* ___name0, const RuntimeMethod* method); // System.String System.Int32::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411 (int32_t* __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m27B9C3007C7DABFABCC3726B37A3BE08CB40C417 (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___values0, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.SalsaUtil::SetSuiteVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaUtil_SetSuiteVersion_m22004EF2E51D54FD2548ECC59EB412200722B133 (const RuntimeMethod* method); // System.String UnityEngine.Application::get_dataPath() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Application_get_dataPath_m69F3B973BD60C419CB91DE0526D39396062947AC (const RuntimeMethod* method); // System.Boolean System.IO.File::Exists(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool File_Exists_mEFB0F2E165717ACA9A13202EF4ED17118858FAFE (String_t* ___path0, const RuntimeMethod* method); // System.String[] System.IO.File::ReadAllLines(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* File_ReadAllLines_m876C0DE12F88E8093F54B3DCC24BBC2B09BF1785 (String_t* ___path0, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m90616B2D8ACC645F389750FAE4F9A75BC5D82454 (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m9037DBF7895B78147B9F5931DA0AA9D2CBD8C3F0 (String_t* __this, String_t* ___value0, int32_t ___startIndex1, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // System.Int32 System.Int32::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_mFEA51DE5E5C0BCB4D8A587AD7779DAC158BE7184 (String_t* ___s0, 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.Void CrazyMinnow.SALSA.ShapeController::SetFrac(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShapeController_SetFrac_m3D23B4BF79F3E93B5FAF68BD0953DBF1E1756293 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, float ___frac0, const RuntimeMethod* method); // System.Void UnityEngine.SkinnedMeshRenderer::SetBlendShapeWeight(System.Int32,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkinnedMeshRenderer_SetBlendShapeWeight_mF546F3567C5039C217AD1E32157B992B4124B5FD (SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * __this, int32_t ___index0, float ___value1, const RuntimeMethod* method); // System.Single UnityEngine.SkinnedMeshRenderer::GetBlendShapeWeight(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SkinnedMeshRenderer_GetBlendShapeWeight_m3F662DD48CC110C8429E53FD2A2E33DE601AA792 (SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.ShapeController::SetLerp(System.Single,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShapeController_SetLerp_m080693B0DE6743BF8267ED3D90F0FA5DE1C18026 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, float ___lerper0, bool ___isActivating1, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.ControllerData::.ctor(CrazyMinnow.SALSA.TformBase,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ControllerData__ctor_mB835E971272F264A7CD4B4E780D9CA773D82F561 (ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 * __this, TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___tformData0, float ___floatData1, const RuntimeMethod* method); // System.Void UnityEngine.SpriteRenderer::set_sprite(UnityEngine.Sprite) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpriteRenderer_set_sprite_mBCFFBF3F10C068FD1174C4506DF73E204303FC1A (SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * __this, Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___value0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Switcher::SetFrac(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switcher_SetFrac_mB016C8AE914081415ECFC0D1D9AABD1CF9DDD1BB (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, float ___frac0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Switcher::SetLerp(System.Single,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switcher_SetLerp_m1318FEB344EEBA1FEF2CD825D83212B567F2FF6B (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, float ___lerper0, bool ___isActivating1, const RuntimeMethod* method); // UnityEngine.Material[] UnityEngine.Renderer::get_sharedMaterials() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* Renderer_get_sharedMaterials_m9B2D432CA8AD8CEC4348E61789CC1BB0C3A00AFD (Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * __this, const RuntimeMethod* method); // System.Void UnityEngine.Material::SetTexture(System.String,UnityEngine.Texture) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Material_SetTexture_m04A1CD55201841F85E475992931A210229C782CF (Material_t8927C00353A72755313F046D0CE85178AE8218EE * __this, String_t* ___name0, Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___value1, const RuntimeMethod* method); // System.Void UnityEngine.UI.Image::set_sprite(UnityEngine.Sprite) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Image_set_sprite_m55C50F18ABA0A98E926FC777F7D07FA18A7D04E4 (Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * __this, Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___value0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.UmaController::SetFrac(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaController_SetFrac_m9AB97E84F54D12731796BD9852D228478E2328AF (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, float ___frac0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.UmaUepProxy::SetPose(System.Int32,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaUepProxy_SetPose_mD3C74328602C1BF06AD8203218FCF410C209C5C1 (UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * __this, int32_t ___poseIndex0, float ___amount1, const RuntimeMethod* method); // CrazyMinnow.SALSA.UmaUepProxy/UepPose[] CrazyMinnow.SALSA.UmaUepProxy::get_Poses() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* UmaUepProxy_get_Poses_m8A22DDBEE10A74CD16AAF29574406F34493CFB8F_inline (UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * __this, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.UmaController::SetLerp(System.Single,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaController_SetLerp_m579D751C9AABB3F650FEBEB5E105C4A59F52535F (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, float ___lerper0, bool ___isActivating1, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.UmaUepProxy::InitializeUmaUepPoses(CrazyMinnow.SALSA.UmaUepProxy/UepPoseDef[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaUepProxy_InitializeUmaUepPoses_m66A94542595D50C31A6213AFAA6B92A39ED59E35 (UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * __this, UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* ___poseDefs0, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.UmaUepProxy/UepPose::.ctor(System.String,System.Boolean,System.Single,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UepPose__ctor_m2A7D17A76D26AF2F5F5A262E2B97389770FE976C (UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * __this, String_t* ___name0, bool ___biDirectional1, float ___amount2, bool ___isDirty3, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.UmaUepProxy/UepPoseDef::.ctor(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617 (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * __this, String_t* ___name0, bool ___isBidirectional1, const RuntimeMethod* method); // System.Void CrazyMinnow.SALSA.Emoter/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mC86556408D9FF84FBE11593B94D80025F0A4046F (U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33 * __this, const RuntimeMethod* method); // System.Void System.EventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m5ECB9A8ED0A9E2DBB1ED999BAC1CB44F4354E571 (EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Queue`1::.ctor() inline void Queue_1__ctor_mAF21CEAD55C8D16F8DCAEF21864939658136AA4D (Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F * __this, const RuntimeMethod* method) { (( void (*) (Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F *, const RuntimeMethod*))Queue_1__ctor_mAF21CEAD55C8D16F8DCAEF21864939658136AA4D_gshared)(__this, method); } // System.Void CrazyMinnow.SALSA.Salsa/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mB4F3AFFBAF791CD59B6B424DBCA08A58D1AA67C7 (U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2 * __this, const RuntimeMethod* method); // System.Int32 System.Single::CompareTo(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Single_CompareTo_m80B5B5A70A2343C3A8673F35635EBED4458109B4 (float* __this, float ___value0, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponent() inline AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * GameObject_GetComponent_TisAudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B_mAF312D503D6F1D34AF86F86AE5CD74920A901E53 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared)(__this, method); } // !!0 UnityEngine.Component::GetComponent() inline AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * Component_GetComponent_TisAudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B_mCC3B7A679ECE504BFAF8C70C4EF527511F46902F (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared)(__this, method); } // System.Void CrazyMinnow.SALSA.Salsa::FireAudioSourceFoundEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_FireAudioSourceFoundEvent_m93C2FBF643B61750ACFF250844F3F0FE402DBFE8 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, 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 System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBCBF2D9FD1B5F0D8D8595B15B7460889D60C8070 (const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void CrazyMinnow.SALSA.EyesExpression::.ctor(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EyesExpression__ctor_mB429B2E13FC29DAD70CCF61E40582BB9BA576FEB (EyesExpression_t1F268E78F13B5C0B6D5B584077A784046486EAAD * __this, String_t* ___name0, bool ___inspFoldout1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_0 = (Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D *)il2cpp_codegen_object_new(Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D_il2cpp_TypeInfo_var); Expression__ctor_m33DDB757C5D5BACCCECE133F48DC7A06FDBCF33C(L_0, /*hidden argument*/NULL); __this->set_expData_0(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_1 = __this->get_expData_0(); String_t* L_2 = ___name0; NullCheck(L_1); L_1->set_name_0(L_2); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_3 = __this->get_expData_0(); bool L_4 = ___inspFoldout1; NullCheck(L_3); L_3->set_inspFoldout_3(L_4); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean CrazyMinnow.SALSA.GenericController::HasDirtyInfluence() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GenericController_HasDirtyInfluence_m079864657E37D96A79322D82E1F36578811B4ED4 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean CrazyMinnow.SALSA.GenericController::GetInfluenceStatus() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GenericController_GetInfluenceStatus_m114931CBD2740758D09C23E31B1E0CA88CB24C43 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Single CrazyMinnow.SALSA.GenericController::GetNewDelta(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GenericController_GetNewDelta_mC00C87E55290BF051A671F625EE017FD3AB0195F (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, bool ___isActive0, bool ___isPersistent1, const RuntimeMethod* method) { { bool L_0 = ___isActive0; if (!L_0) { goto IL_0009; } } { return (0.0f); } IL_0009: { return (1.0f); } } // CrazyMinnow.SALSA.ControllerData CrazyMinnow.SALSA.GenericController::GetPreviousDeltaData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 GenericController_GetPreviousDeltaData_m57CFAF0A23638261DB1F813D41518A6B5A048717 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, const RuntimeMethod* method) { ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 )); ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 L_0 = V_0; return L_0; } } // System.Void CrazyMinnow.SALSA.GenericController::SetPreviousDeltaData(CrazyMinnow.SALSA.ControllerData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericController_SetPreviousDeltaData_mCC060E6AFD702D615616682A570E8CCD70C3D0B0 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 ___controllerData0, const RuntimeMethod* method) { { return; } } // System.Void CrazyMinnow.SALSA.GenericController::SetLerp(System.Single,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericController_SetLerp_mDB610D6D0D5ADD38FC65C8EA6AD15376A6E59678 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, float ___lerper0, bool ___isActivating1, const RuntimeMethod* method) { { bool L_0 = ___isActivating1; if (!L_0) { goto IL_002f; } } { bool L_1 = __this->get_hasStartedON_0(); if (L_1) { goto IL_002f; } } { bool L_2 = __this->get_hasFinishedON_1(); if (L_2) { goto IL_002f; } } { bool L_3 = __this->get_hasStartedOFF_2(); if (!L_3) { goto IL_0029; } } { bool L_4 = __this->get_hasFinishedOFF_3(); if (L_4) { goto IL_0029; } } { VirtActionInvoker0::Invoke(27 /* System.Void CrazyMinnow.SALSA.GenericController::OFF_Finish() */, __this); } IL_0029: { VirtActionInvoker0::Invoke(24 /* System.Void CrazyMinnow.SALSA.GenericController::ON_Start() */, __this); } IL_002f: { bool L_5 = ___isActivating1; if (!L_5) { goto IL_004d; } } { float L_6 = ___lerper0; bool L_7; L_7 = Mathf_Approximately_mFEB0CB3531393F6CBE07C6E0FCB473B3311F799A(L_6, (1.0f), /*hidden argument*/NULL); if (!L_7) { goto IL_004d; } } { bool L_8 = __this->get_hasFinishedON_1(); if (L_8) { goto IL_004d; } } { VirtActionInvoker0::Invoke(25 /* System.Void CrazyMinnow.SALSA.GenericController::ON_Finish() */, __this); } IL_004d: { bool L_9 = ___isActivating1; if (L_9) { goto IL_007c; } } { bool L_10 = __this->get_hasStartedOFF_2(); if (L_10) { goto IL_007c; } } { bool L_11 = __this->get_hasFinishedOFF_3(); if (L_11) { goto IL_007c; } } { bool L_12 = __this->get_hasStartedON_0(); if (!L_12) { goto IL_0076; } } { bool L_13 = __this->get_hasFinishedON_1(); if (L_13) { goto IL_0076; } } { VirtActionInvoker0::Invoke(25 /* System.Void CrazyMinnow.SALSA.GenericController::ON_Finish() */, __this); } IL_0076: { VirtActionInvoker0::Invoke(26 /* System.Void CrazyMinnow.SALSA.GenericController::OFF_Start() */, __this); } IL_007c: { bool L_14 = ___isActivating1; if (L_14) { goto IL_009a; } } { float L_15 = ___lerper0; bool L_16; L_16 = Mathf_Approximately_mFEB0CB3531393F6CBE07C6E0FCB473B3311F799A(L_15, (0.0f), /*hidden argument*/NULL); if (!L_16) { goto IL_009a; } } { bool L_17 = __this->get_hasFinishedOFF_3(); if (L_17) { goto IL_009a; } } { VirtActionInvoker0::Invoke(27 /* System.Void CrazyMinnow.SALSA.GenericController::OFF_Finish() */, __this); } IL_009a: { return; } } // System.Void CrazyMinnow.SALSA.GenericController::ON_Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericController_ON_Start_m8D47876103F95F12EB741CE004F6284EA5E0924C (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, const RuntimeMethod* method) { { __this->set_hasFinishedOFF_3((bool)0); __this->set_hasStartedON_0((bool)1); return; } } // System.Void CrazyMinnow.SALSA.GenericController::ON_Finish() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericController_ON_Finish_mBCC814CC09387D535389D810874BD4118B4849E1 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, const RuntimeMethod* method) { { __this->set_hasStartedON_0((bool)0); __this->set_hasFinishedON_1((bool)1); return; } } // System.Void CrazyMinnow.SALSA.GenericController::OFF_Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericController_OFF_Start_mCA5796D003F0985904CA05ACB05BF4A4E960AB19 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, const RuntimeMethod* method) { { __this->set_hasFinishedON_1((bool)0); __this->set_hasStartedOFF_2((bool)1); return; } } // System.Void CrazyMinnow.SALSA.GenericController::OFF_Finish() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericController_OFF_Finish_m18131A14D0D0437F39D3058DF87C5D0A53F7A3A9 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, const RuntimeMethod* method) { { __this->set_hasStartedOFF_2((bool)0); __this->set_hasFinishedOFF_3((bool)1); return; } } // System.Void CrazyMinnow.SALSA.GenericController::ProcessInfluence(System.Boolean,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericController_ProcessInfluence_mC24E007C2F97D78E902DFECAE9369AE4AA74C888 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, bool ___isInfluenced0, float ___lerper1, const RuntimeMethod* method) { { float L_0 = ___lerper1; VirtActionInvoker2< float, bool >::Invoke(23 /* System.Void CrazyMinnow.SALSA.GenericController::SetLerp(System.Single,System.Boolean) */, __this, L_0, (bool)0); return; } } // System.Void CrazyMinnow.SALSA.GenericController::SetFrac(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericController_SetFrac_m7721569EED180BA8676DE169C96607357A1C4BBE (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, float ___frac0, const RuntimeMethod* method) { { return; } } // System.Single CrazyMinnow.SALSA.GenericController::GetMinExtent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GenericController_GetMinExtent_m9ABFF39C4AE09D6AB420DA13CFA3074D56EC5779 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, const RuntimeMethod* method) { { return (0.0f); } } // System.Single CrazyMinnow.SALSA.GenericController::GetMaxExtent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GenericController_GetMaxExtent_mC163A958FB128305B6AC906D1B43257D5BB964D0 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, const RuntimeMethod* method) { { return (1.0f); } } // System.Void CrazyMinnow.SALSA.GenericController::SetTarget(CrazyMinnow.SALSA.TformBase,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericController_SetTarget_m2D9CAF89ED6DBB6EEC8F7DA127927F05022B2513 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___tform0, float ___frac1, const RuntimeMethod* method) { { return; } } // System.Void CrazyMinnow.SALSA.GenericController::SetDelta(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericController_SetDelta_m3F7B864FB0E10EADDB00FFE8EA3B982423B339D3 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __this, float ___delta0, const RuntimeMethod* method) { { return; } } // System.Void CrazyMinnow.SALSA.GenericController::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericController__ctor_mA3F94654E71FDC9D589C804CD2E9555D99F03750 (GenericController_tA7880CA2E2705C4404903A129D24F76E7833E6C7 * __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 CrazyMinnow.SALSA.InspectorControllerHelperData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InspectorControllerHelperData__ctor_m4FDF274348A7A6722D23862A80B19EB5C54E3099 (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m4CCA077ACAB11548CE7A37FE67B013E1E7497ACD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC02548306D1DD364615170E6269E5D583272EAF5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->set_fracPos_4((bool)1); __this->set_fracRot_5((bool)1); __this->set_fracScl_6((bool)1); __this->set_maxShape_14((1.0f)); __this->set_onState_19(2); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_0 = __this->get_spriteRenderer_22(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_004e; } } { List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * L_2 = __this->get_sprites_23(); if (L_2) { goto IL_004e; } } { List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * L_3 = (List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 *)il2cpp_codegen_object_new(List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880_il2cpp_TypeInfo_var); List_1__ctor_m4CCA077ACAB11548CE7A37FE67B013E1E7497ACD(L_3, /*hidden argument*/List_1__ctor_m4CCA077ACAB11548CE7A37FE67B013E1E7497ACD_RuntimeMethod_var); __this->set_sprites_23(L_3); } IL_004e: { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_4 = __this->get_textureRenderer_25(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_5; L_5 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_4, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_5) { goto IL_006f; } } { List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * L_6 = __this->get_textures_28(); if (L_6) { goto IL_006f; } } { List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * L_7 = (List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D *)il2cpp_codegen_object_new(List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D_il2cpp_TypeInfo_var); List_1__ctor_mC02548306D1DD364615170E6269E5D583272EAF5(L_7, /*hidden argument*/List_1__ctor_mC02548306D1DD364615170E6269E5D583272EAF5_RuntimeMethod_var); __this->set_textures_28(L_7); } IL_006f: { return; } } // System.Void CrazyMinnow.SALSA.InspectorControllerHelperData::.ctor(CrazyMinnow.SALSA.InspectorControllerHelperData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InspectorControllerHelperData__ctor_m2BF06F1E42FAED1218484B07F283D64537D92915 (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * ___helperData0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m39B1858B718D5D3276968B08614F66E402422A15_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m9F9B5CB0922398E74B599FFB450F24BF2B694219_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mB381E883DF3917B1939FCC6ACAFB0D2F261E84DC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m134D44D2F4DD4EB582DFE5A640634F9DA817D401_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m36F5B2ABAE2B303034BB368EEE48EEFBFF26522C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mBDF9C2CE29A407750480474BA191248286A4CDD4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m0F57CB6207605CE09FE2619C57FECF7C5BEF3A0F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m3269C400237E6533CA2BFEE15BA25E2F2002D668_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m66AEB5DD2F625DF2DE4B485DBB8AE5AB4884B7F0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m28122A5F1F50EF8394190DE6D5334ED44F08AA61_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m52BF19F8E128AFF14D3F111ACA2594D1C7DC36A4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m93A08EA489A09A73780119772DE17BA06864EB10_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m0EAC31AFE8F497D2D36E00A85143974CEC4F42AA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m270B433DFAFDB8F334A30B01933A70F640EB14E1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m736C259A1E09CD44D00E684A387870B1E021F8CB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m01E37193361B61CC3FF93E932ECCBB8FF556044C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m8004243A306ADA8172D24E91E9457AE4EBF3941A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mFD7AE7B38E8A329EBDF3DAAD35D2C8C5AD4CD2B0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m497DA7006D664307F20A0546E5B717AA4B5E8A86_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m4CCA077ACAB11548CE7A37FE67B013E1E7497ACD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC02548306D1DD364615170E6269E5D583272EAF5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Enumerator_tAF21232E555CF5021E1A738792635D00943518BE V_0; memset((&V_0), 0, sizeof(V_0)); Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * V_1 = NULL; Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 V_2; memset((&V_2), 0, sizeof(V_2)); Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * V_3 = NULL; Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 V_4; memset((&V_4), 0, sizeof(V_4)); Material_t8927C00353A72755313F046D0CE85178AE8218EE * V_5 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { __this->set_fracPos_4((bool)1); __this->set_fracRot_5((bool)1); __this->set_fracScl_6((bool)1); __this->set_maxShape_14((1.0f)); __this->set_onState_19(2); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_0 = ___helperData0; NullCheck(L_0); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_1 = L_0->get_bone_0(); __this->set_bone_0(L_1); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_2 = ___helperData0; NullCheck(L_2); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_3 = L_2->get_startTform_2(); __this->set_startTform_2(L_3); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_4 = ___helperData0; NullCheck(L_4); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_5 = L_4->get_endTform_3(); __this->set_endTform_3(L_5); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_6 = ___helperData0; NullCheck(L_6); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_7 = L_6->get_baseTform_1(); __this->set_baseTform_1(L_7); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_8 = ___helperData0; NullCheck(L_8); bool L_9 = L_8->get_fracPos_4(); __this->set_fracPos_4(L_9); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_10 = ___helperData0; NullCheck(L_10); bool L_11 = L_10->get_fracRot_5(); __this->set_fracRot_5(L_11); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_12 = ___helperData0; NullCheck(L_12); bool L_13 = L_12->get_fracScl_6(); __this->set_fracScl_6(L_13); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_14 = ___helperData0; NullCheck(L_14); bool L_15 = L_14->get_inspIsSetStart_7(); __this->set_inspIsSetStart_7(L_15); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_16 = ___helperData0; NullCheck(L_16); bool L_17 = L_16->get_inspIsSetEnd_8(); __this->set_inspIsSetEnd_8(L_17); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_18 = ___helperData0; NullCheck(L_18); UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_19 = L_18->get_umaUepProxy_9(); __this->set_umaUepProxy_9(L_19); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_20 = ___helperData0; NullCheck(L_20); SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_21 = L_20->get_smr_11(); __this->set_smr_11(L_21); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_22 = ___helperData0; NullCheck(L_22); int32_t L_23 = L_22->get_blendIndex_12(); __this->set_blendIndex_12(L_23); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_24 = ___helperData0; NullCheck(L_24); float L_25 = L_24->get_minShape_13(); __this->set_minShape_13(L_25); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_26 = ___helperData0; NullCheck(L_26); float L_27 = L_26->get_maxShape_14(); __this->set_maxShape_14(L_27); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_28 = ___helperData0; NullCheck(L_28); Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_29 = L_28->get_animator_16(); __this->set_animator_16(L_29); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_30 = ___helperData0; NullCheck(L_30); bool L_31 = L_30->get_isTriggerParameterBiDirectional_17(); __this->set_isTriggerParameterBiDirectional_17(L_31); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_32 = ___helperData0; NullCheck(L_32); String_t* L_33 = L_32->get_eventIdentityName_18(); __this->set_eventIdentityName_18(L_33); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_34 = ___helperData0; NullCheck(L_34); SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_35 = L_34->get_spriteRenderer_22(); __this->set_spriteRenderer_22(L_35); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_36 = ___helperData0; NullCheck(L_36); Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_37 = L_36->get_uguiRenderer_24(); __this->set_uguiRenderer_24(L_37); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_38 = ___helperData0; NullCheck(L_38); Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_39 = L_38->get_textureRenderer_25(); __this->set_textureRenderer_25(L_39); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_40 = ___helperData0; NullCheck(L_40); int32_t L_41 = L_40->get_materialIndex_26(); __this->set_materialIndex_26(L_41); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_42 = ___helperData0; NullCheck(L_42); Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_43 = L_42->get_materialRenderer_29(); __this->set_materialRenderer_29(L_43); List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * L_44 = __this->get_sprites_23(); if (L_44) { goto IL_0148; } } { List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * L_45 = (List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 *)il2cpp_codegen_object_new(List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880_il2cpp_TypeInfo_var); List_1__ctor_m4CCA077ACAB11548CE7A37FE67B013E1E7497ACD(L_45, /*hidden argument*/List_1__ctor_m4CCA077ACAB11548CE7A37FE67B013E1E7497ACD_RuntimeMethod_var); __this->set_sprites_23(L_45); } IL_0148: { InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_46 = ___helperData0; NullCheck(L_46); List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * L_47 = L_46->get_sprites_23(); if (L_47) { goto IL_015b; } } { InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_48 = ___helperData0; List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * L_49 = (List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 *)il2cpp_codegen_object_new(List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880_il2cpp_TypeInfo_var); List_1__ctor_m4CCA077ACAB11548CE7A37FE67B013E1E7497ACD(L_49, /*hidden argument*/List_1__ctor_m4CCA077ACAB11548CE7A37FE67B013E1E7497ACD_RuntimeMethod_var); NullCheck(L_48); L_48->set_sprites_23(L_49); } IL_015b: { List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * L_50 = __this->get_sprites_23(); NullCheck(L_50); List_1_Clear_m270B433DFAFDB8F334A30B01933A70F640EB14E1(L_50, /*hidden argument*/List_1_Clear_m270B433DFAFDB8F334A30B01933A70F640EB14E1_RuntimeMethod_var); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_51 = ___helperData0; NullCheck(L_51); List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * L_52 = L_51->get_sprites_23(); NullCheck(L_52); Enumerator_tAF21232E555CF5021E1A738792635D00943518BE L_53; L_53 = List_1_GetEnumerator_mFD7AE7B38E8A329EBDF3DAAD35D2C8C5AD4CD2B0(L_52, /*hidden argument*/List_1_GetEnumerator_mFD7AE7B38E8A329EBDF3DAAD35D2C8C5AD4CD2B0_RuntimeMethod_var); V_0 = L_53; } IL_0172: try { // begin try (depth: 1) { goto IL_0188; } IL_0174: { Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * L_54; L_54 = Enumerator_get_Current_m3269C400237E6533CA2BFEE15BA25E2F2002D668_inline((Enumerator_tAF21232E555CF5021E1A738792635D00943518BE *)(&V_0), /*hidden argument*/Enumerator_get_Current_m3269C400237E6533CA2BFEE15BA25E2F2002D668_RuntimeMethod_var); V_1 = L_54; List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * L_55 = __this->get_sprites_23(); Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * L_56 = V_1; NullCheck(L_55); List_1_Add_m28122A5F1F50EF8394190DE6D5334ED44F08AA61(L_55, L_56, /*hidden argument*/List_1_Add_m28122A5F1F50EF8394190DE6D5334ED44F08AA61_RuntimeMethod_var); } IL_0188: { bool L_57; L_57 = Enumerator_MoveNext_m36F5B2ABAE2B303034BB368EEE48EEFBFF26522C((Enumerator_tAF21232E555CF5021E1A738792635D00943518BE *)(&V_0), /*hidden argument*/Enumerator_MoveNext_m36F5B2ABAE2B303034BB368EEE48EEFBFF26522C_RuntimeMethod_var); if (L_57) { goto IL_0174; } } IL_0191: { IL2CPP_LEAVE(0x1A1, FINALLY_0193); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0193; } FINALLY_0193: { // begin finally (depth: 1) Enumerator_Dispose_m39B1858B718D5D3276968B08614F66E402422A15((Enumerator_tAF21232E555CF5021E1A738792635D00943518BE *)(&V_0), /*hidden argument*/Enumerator_Dispose_m39B1858B718D5D3276968B08614F66E402422A15_RuntimeMethod_var); IL2CPP_END_FINALLY(403) } // end finally (depth: 1) IL2CPP_CLEANUP(403) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x1A1, IL_01a1) } IL_01a1: { List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * L_58 = __this->get_textures_28(); if (L_58) { goto IL_01b4; } } { List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * L_59 = (List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D *)il2cpp_codegen_object_new(List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D_il2cpp_TypeInfo_var); List_1__ctor_mC02548306D1DD364615170E6269E5D583272EAF5(L_59, /*hidden argument*/List_1__ctor_mC02548306D1DD364615170E6269E5D583272EAF5_RuntimeMethod_var); __this->set_textures_28(L_59); } IL_01b4: { InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_60 = ___helperData0; NullCheck(L_60); List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * L_61 = L_60->get_textures_28(); if (L_61) { goto IL_01c7; } } { InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_62 = ___helperData0; List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * L_63 = (List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D *)il2cpp_codegen_object_new(List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D_il2cpp_TypeInfo_var); List_1__ctor_mC02548306D1DD364615170E6269E5D583272EAF5(L_63, /*hidden argument*/List_1__ctor_mC02548306D1DD364615170E6269E5D583272EAF5_RuntimeMethod_var); NullCheck(L_62); L_62->set_textures_28(L_63); } IL_01c7: { List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * L_64 = __this->get_textures_28(); NullCheck(L_64); List_1_Clear_m0EAC31AFE8F497D2D36E00A85143974CEC4F42AA(L_64, /*hidden argument*/List_1_Clear_m0EAC31AFE8F497D2D36E00A85143974CEC4F42AA_RuntimeMethod_var); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_65 = ___helperData0; NullCheck(L_65); List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * L_66 = L_65->get_textures_28(); NullCheck(L_66); Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 L_67; L_67 = List_1_GetEnumerator_m8004243A306ADA8172D24E91E9457AE4EBF3941A(L_66, /*hidden argument*/List_1_GetEnumerator_m8004243A306ADA8172D24E91E9457AE4EBF3941A_RuntimeMethod_var); V_2 = L_67; } IL_01de: try { // begin try (depth: 1) { goto IL_01f4; } IL_01e0: { Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * L_68; L_68 = Enumerator_get_Current_m66AEB5DD2F625DF2DE4B485DBB8AE5AB4884B7F0_inline((Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 *)(&V_2), /*hidden argument*/Enumerator_get_Current_m66AEB5DD2F625DF2DE4B485DBB8AE5AB4884B7F0_RuntimeMethod_var); V_3 = L_68; List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * L_69 = __this->get_textures_28(); Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * L_70 = V_3; NullCheck(L_69); List_1_Add_m52BF19F8E128AFF14D3F111ACA2594D1C7DC36A4(L_69, L_70, /*hidden argument*/List_1_Add_m52BF19F8E128AFF14D3F111ACA2594D1C7DC36A4_RuntimeMethod_var); } IL_01f4: { bool L_71; L_71 = Enumerator_MoveNext_m134D44D2F4DD4EB582DFE5A640634F9DA817D401((Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m134D44D2F4DD4EB582DFE5A640634F9DA817D401_RuntimeMethod_var); if (L_71) { goto IL_01e0; } } IL_01fd: { IL2CPP_LEAVE(0x20D, FINALLY_01ff); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01ff; } FINALLY_01ff: { // begin finally (depth: 1) Enumerator_Dispose_m9F9B5CB0922398E74B599FFB450F24BF2B694219((Enumerator_tEC1AA3333CF333A2669F76FFBB5631F890B075E0 *)(&V_2), /*hidden argument*/Enumerator_Dispose_m9F9B5CB0922398E74B599FFB450F24BF2B694219_RuntimeMethod_var); IL2CPP_END_FINALLY(511) } // end finally (depth: 1) IL2CPP_CLEANUP(511) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x20D, IL_020d) } IL_020d: { List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * L_72 = __this->get_materials_30(); if (L_72) { goto IL_0220; } } { List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * L_73 = (List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 *)il2cpp_codegen_object_new(List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4_il2cpp_TypeInfo_var); List_1__ctor_m497DA7006D664307F20A0546E5B717AA4B5E8A86(L_73, /*hidden argument*/List_1__ctor_m497DA7006D664307F20A0546E5B717AA4B5E8A86_RuntimeMethod_var); __this->set_materials_30(L_73); } IL_0220: { InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_74 = ___helperData0; NullCheck(L_74); List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * L_75 = L_74->get_materials_30(); if (L_75) { goto IL_0233; } } { InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_76 = ___helperData0; List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * L_77 = (List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 *)il2cpp_codegen_object_new(List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4_il2cpp_TypeInfo_var); List_1__ctor_m497DA7006D664307F20A0546E5B717AA4B5E8A86(L_77, /*hidden argument*/List_1__ctor_m497DA7006D664307F20A0546E5B717AA4B5E8A86_RuntimeMethod_var); NullCheck(L_76); L_76->set_materials_30(L_77); } IL_0233: { List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * L_78 = __this->get_materials_30(); NullCheck(L_78); List_1_Clear_m736C259A1E09CD44D00E684A387870B1E021F8CB(L_78, /*hidden argument*/List_1_Clear_m736C259A1E09CD44D00E684A387870B1E021F8CB_RuntimeMethod_var); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_79 = ___helperData0; NullCheck(L_79); List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * L_80 = L_79->get_materials_30(); NullCheck(L_80); Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 L_81; L_81 = List_1_GetEnumerator_m01E37193361B61CC3FF93E932ECCBB8FF556044C(L_80, /*hidden argument*/List_1_GetEnumerator_m01E37193361B61CC3FF93E932ECCBB8FF556044C_RuntimeMethod_var); V_4 = L_81; } IL_024b: try { // begin try (depth: 1) { goto IL_0263; } IL_024d: { Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_82; L_82 = Enumerator_get_Current_m0F57CB6207605CE09FE2619C57FECF7C5BEF3A0F_inline((Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 *)(&V_4), /*hidden argument*/Enumerator_get_Current_m0F57CB6207605CE09FE2619C57FECF7C5BEF3A0F_RuntimeMethod_var); V_5 = L_82; List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * L_83 = __this->get_materials_30(); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_84 = V_5; NullCheck(L_83); List_1_Add_m93A08EA489A09A73780119772DE17BA06864EB10(L_83, L_84, /*hidden argument*/List_1_Add_m93A08EA489A09A73780119772DE17BA06864EB10_RuntimeMethod_var); } IL_0263: { bool L_85; L_85 = Enumerator_MoveNext_mBDF9C2CE29A407750480474BA191248286A4CDD4((Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 *)(&V_4), /*hidden argument*/Enumerator_MoveNext_mBDF9C2CE29A407750480474BA191248286A4CDD4_RuntimeMethod_var); if (L_85) { goto IL_024d; } } IL_026c: { IL2CPP_LEAVE(0x27C, FINALLY_026e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_026e; } FINALLY_026e: { // begin finally (depth: 1) Enumerator_Dispose_mB381E883DF3917B1939FCC6ACAFB0D2F261E84DC((Enumerator_t3C12EFB053DE987953C2A8A4793E00F2E1FF9A83 *)(&V_4), /*hidden argument*/Enumerator_Dispose_mB381E883DF3917B1939FCC6ACAFB0D2F261E84DC_RuntimeMethod_var); IL2CPP_END_FINALLY(622) } // end finally (depth: 1) IL2CPP_CLEANUP(622) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x27C, IL_027c) } IL_027c: { InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_86 = ___helperData0; NullCheck(L_86); int32_t L_87 = L_86->get_onState_19(); __this->set_onState_19(L_87); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_88 = ___helperData0; NullCheck(L_88); bool L_89 = L_88->get_display2dImage_20(); __this->set_display2dImage_20(L_89); return; } } // System.Void CrazyMinnow.SALSA.InspectorControllerHelperData::StoreBoneBase() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InspectorControllerHelperData_StoreBoneBase_mFB840295B298519E279DE9AAA32863B297EAC7CB (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, const RuntimeMethod* method) { { TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * L_0 = __this->get_address_of_baseTform_1(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_1 = __this->get_bone_0(); NullCheck(L_1); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2; L_2 = Transform_get_localPosition_m527B8B5B625DA9A61E551E0FBCD3BE8CA4539FC2(L_1, /*hidden argument*/NULL); L_0->set_pos_0(L_2); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * L_3 = __this->get_address_of_baseTform_1(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_4 = __this->get_bone_0(); NullCheck(L_4); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_5; L_5 = Transform_get_localRotation_mA6472AE7509D762965275D79B645A14A9CCF5BE5(L_4, /*hidden argument*/NULL); L_3->set_rot_1(L_5); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * L_6 = __this->get_address_of_baseTform_1(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_7 = __this->get_bone_0(); NullCheck(L_7); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8; L_8 = Transform_get_localScale_mD9DF6CA81108C2A6002B5EA2BE25A6CD2723D046(L_7, /*hidden argument*/NULL); L_6->set_scale_2(L_8); return; } } // System.Void CrazyMinnow.SALSA.InspectorControllerHelperData::StoreStartTform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InspectorControllerHelperData_StoreStartTform_m120D086FE77023DC57B52460C305ECB3512150E3 (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, const RuntimeMethod* method) { { TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * L_0 = __this->get_address_of_startTform_2(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_1 = __this->get_bone_0(); NullCheck(L_1); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2; L_2 = Transform_get_localPosition_m527B8B5B625DA9A61E551E0FBCD3BE8CA4539FC2(L_1, /*hidden argument*/NULL); L_0->set_pos_0(L_2); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * L_3 = __this->get_address_of_startTform_2(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_4 = __this->get_bone_0(); NullCheck(L_4); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_5; L_5 = Transform_get_localRotation_mA6472AE7509D762965275D79B645A14A9CCF5BE5(L_4, /*hidden argument*/NULL); L_3->set_rot_1(L_5); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * L_6 = __this->get_address_of_startTform_2(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_7 = __this->get_bone_0(); NullCheck(L_7); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8; L_8 = Transform_get_localScale_mD9DF6CA81108C2A6002B5EA2BE25A6CD2723D046(L_7, /*hidden argument*/NULL); L_6->set_scale_2(L_8); __this->set_inspIsSetStart_7((bool)1); return; } } // System.Void CrazyMinnow.SALSA.InspectorControllerHelperData::StoreEndTform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InspectorControllerHelperData_StoreEndTform_m4176D62949C93C9E831F37CF8EB9DF1BCB7B4ACB (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, const RuntimeMethod* method) { { TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * L_0 = __this->get_address_of_endTform_3(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_1 = __this->get_bone_0(); NullCheck(L_1); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2; L_2 = Transform_get_localPosition_m527B8B5B625DA9A61E551E0FBCD3BE8CA4539FC2(L_1, /*hidden argument*/NULL); L_0->set_pos_0(L_2); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * L_3 = __this->get_address_of_endTform_3(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_4 = __this->get_bone_0(); NullCheck(L_4); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_5; L_5 = Transform_get_localRotation_mA6472AE7509D762965275D79B645A14A9CCF5BE5(L_4, /*hidden argument*/NULL); L_3->set_rot_1(L_5); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * L_6 = __this->get_address_of_endTform_3(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_7 = __this->get_bone_0(); NullCheck(L_7); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8; L_8 = Transform_get_localScale_mD9DF6CA81108C2A6002B5EA2BE25A6CD2723D046(L_7, /*hidden argument*/NULL); L_6->set_scale_2(L_8); __this->set_inspIsSetEnd_8((bool)1); return; } } // System.Void CrazyMinnow.SALSA.InspectorControllerHelperData::ResetBone(CrazyMinnow.SALSA.TformBase,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InspectorControllerHelperData_ResetBone_mF2258FDB275E314C8DEA5004D997AA16B255125A (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___modelTform0, bool ___resetAll1, const RuntimeMethod* method) { { bool L_0 = __this->get_fracPos_4(); bool L_1 = ___resetAll1; if (!((int32_t)((int32_t)L_0|(int32_t)L_1))) { goto IL_001b; } } { Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_2 = __this->get_bone_0(); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_3 = ___modelTform0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_4 = L_3.get_pos_0(); NullCheck(L_2); Transform_set_localPosition_m2A2B0033EF079077FAE7C65196078EAF5D041AFC(L_2, L_4, /*hidden argument*/NULL); } IL_001b: { bool L_5 = __this->get_fracRot_5(); bool L_6 = ___resetAll1; if (!((int32_t)((int32_t)L_5|(int32_t)L_6))) { goto IL_0036; } } { Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_7 = __this->get_bone_0(); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_8 = ___modelTform0; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_9 = L_8.get_rot_1(); NullCheck(L_7); Transform_set_localRotation_m1A9101457EC4653AFC93FCC4065A29F2C78FA62C(L_7, L_9, /*hidden argument*/NULL); } IL_0036: { bool L_10 = __this->get_fracScl_6(); bool L_11 = ___resetAll1; if (!((int32_t)((int32_t)L_10|(int32_t)L_11))) { goto IL_0051; } } { Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_12 = __this->get_bone_0(); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_13 = ___modelTform0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_14 = L_13.get_scale_2(); NullCheck(L_12); Transform_set_localScale_mF4D1611E48D1BA7566A1E166DC2DACF3ADD8BA3A(L_12, L_14, /*hidden argument*/NULL); } IL_0051: { return; } } // System.Void CrazyMinnow.SALSA.InspectorControllerHelperData::ClearStoredTforms() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InspectorControllerHelperData_ClearStoredTforms_m16DC9C339386557C4A32015BA55A6B44319C6126 (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, const RuntimeMethod* method) { { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0; L_0 = Vector3_get_zero_m92B6E46FC9A637D20B3A4C1FFAEABFCE095DD4C6(/*hidden argument*/NULL); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_1; L_1 = Quaternion_get_identity_mB872ACF032ACC4D32EE3472D98A9694205AE2C8D(/*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2; L_2 = Vector3_get_zero_m92B6E46FC9A637D20B3A4C1FFAEABFCE095DD4C6(/*hidden argument*/NULL); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_3; memset((&L_3), 0, sizeof(L_3)); TformBase__ctor_mC920C8F643AF451EE372A801F9B47291653D3584((&L_3), L_0, L_1, L_2, /*hidden argument*/NULL); __this->set_baseTform_1(L_3); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_4; L_4 = Vector3_get_zero_m92B6E46FC9A637D20B3A4C1FFAEABFCE095DD4C6(/*hidden argument*/NULL); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_5; L_5 = Quaternion_get_identity_mB872ACF032ACC4D32EE3472D98A9694205AE2C8D(/*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6; L_6 = Vector3_get_zero_m92B6E46FC9A637D20B3A4C1FFAEABFCE095DD4C6(/*hidden argument*/NULL); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_7; memset((&L_7), 0, sizeof(L_7)); TformBase__ctor_mC920C8F643AF451EE372A801F9B47291653D3584((&L_7), L_4, L_5, L_6, /*hidden argument*/NULL); __this->set_startTform_2(L_7); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8; L_8 = Vector3_get_zero_m92B6E46FC9A637D20B3A4C1FFAEABFCE095DD4C6(/*hidden argument*/NULL); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_9; L_9 = Quaternion_get_identity_mB872ACF032ACC4D32EE3472D98A9694205AE2C8D(/*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10; L_10 = Vector3_get_zero_m92B6E46FC9A637D20B3A4C1FFAEABFCE095DD4C6(/*hidden argument*/NULL); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_11; memset((&L_11), 0, sizeof(L_11)); TformBase__ctor_mC920C8F643AF451EE372A801F9B47291653D3584((&L_11), L_8, L_9, L_10, /*hidden argument*/NULL); __this->set_endTform_3(L_11); return; } } // UnityEngine.Sprite[] CrazyMinnow.SALSA.InspectorControllerHelperData::GetSprites() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* InspectorControllerHelperData_GetSprites_mE5940092676969BC9F63D28C309882F3DB616F02 (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m0C5D4E993FBA98ABAAE66A3D06310E3E2C0BE4B8_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 * L_0 = __this->get_sprites_23(); NullCheck(L_0); SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* L_1; L_1 = List_1_ToArray_m0C5D4E993FBA98ABAAE66A3D06310E3E2C0BE4B8(L_0, /*hidden argument*/List_1_ToArray_m0C5D4E993FBA98ABAAE66A3D06310E3E2C0BE4B8_RuntimeMethod_var); return L_1; } } // UnityEngine.Texture[] CrazyMinnow.SALSA.InspectorControllerHelperData::GetTextures() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* InspectorControllerHelperData_GetTextures_m19270F028D0A040262FA75BF0A59F94BF6910664 (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m0A77F65653C219CCD2A5B1063B205EEA24BCDCDE_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D * L_0 = __this->get_textures_28(); NullCheck(L_0); TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* L_1; L_1 = List_1_ToArray_m0A77F65653C219CCD2A5B1063B205EEA24BCDCDE(L_0, /*hidden argument*/List_1_ToArray_m0A77F65653C219CCD2A5B1063B205EEA24BCDCDE_RuntimeMethod_var); return L_1; } } // UnityEngine.Material[] CrazyMinnow.SALSA.InspectorControllerHelperData::GetMaterials() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* InspectorControllerHelperData_GetMaterials_m3F0B3A72C75F832BA0C57A2C9CF919BB3F3F146F (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m186505F66F97198D8539D9673736392642EE45CC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 * L_0 = __this->get_materials_30(); NullCheck(L_0); MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* L_1; L_1 = List_1_ToArray_m186505F66F97198D8539D9673736392642EE45CC(L_0, /*hidden argument*/List_1_ToArray_m186505F66F97198D8539D9673736392642EE45CC_RuntimeMethod_var); return L_1; } } // System.Boolean CrazyMinnow.SALSA.InspectorControllerHelperData::HasLinkedController(CrazyMinnow.SALSA.ExpressionComponent/ControlType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InspectorControllerHelperData_HasLinkedController_mD2C07CE206C7FF7F8B9AA2CEF4F64B4A619A9B7F (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, int32_t ___controller0, 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; } { int32_t L_0 = ___controller0; switch (L_0) { case 0: { goto IL_002f; } case 1: { goto IL_0041; } case 2: { goto IL_0053; } case 3: { goto IL_0065; } case 4: { goto IL_0089; } case 5: { goto IL_0077; } case 6: { goto IL_009b; } case 7: { goto IL_00ad; } case 8: { goto IL_00bf; } } } { goto IL_00c1; } IL_002f: { SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_1 = __this->get_smr_11(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_2; L_2 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_1, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_2) { goto IL_003f; } } { return (bool)0; } IL_003f: { return (bool)1; } IL_0041: { Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_3 = __this->get_bone_0(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_4; L_4 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_3, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_4) { goto IL_0051; } } { return (bool)0; } IL_0051: { return (bool)1; } IL_0053: { SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_5 = __this->get_spriteRenderer_22(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_6; L_6 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_5, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_6) { goto IL_0063; } } { return (bool)0; } IL_0063: { return (bool)1; } IL_0065: { Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_7 = __this->get_uguiRenderer_24(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_8; L_8 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_7, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_8) { goto IL_0075; } } { return (bool)0; } IL_0075: { return (bool)1; } IL_0077: { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_9 = __this->get_materialRenderer_29(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_10; L_10 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_9, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_10) { goto IL_0087; } } { return (bool)0; } IL_0087: { return (bool)1; } IL_0089: { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_11 = __this->get_textureRenderer_25(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_12; L_12 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_11, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_12) { goto IL_0099; } } { return (bool)0; } IL_0099: { return (bool)1; } IL_009b: { UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_13 = __this->get_umaUepProxy_9(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_14; L_14 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_13, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_14) { goto IL_00ab; } } { return (bool)0; } IL_00ab: { return (bool)1; } IL_00ad: { Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_15 = __this->get_animator_16(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_16; L_16 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_15, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_16) { goto IL_00bd; } } { return (bool)0; } IL_00bd: { return (bool)1; } IL_00bf: { return (bool)1; } IL_00c1: { return (bool)0; } } // System.Void CrazyMinnow.SALSA.InspectorControllerHelperData::RemoveUnusedLists(CrazyMinnow.SALSA.ExpressionComponent/ControlType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InspectorControllerHelperData_RemoveUnusedLists_m4168AF9A0B5741D111F4EC65AAF3A1F23C3BE7AD (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * __this, int32_t ___controlType0, const RuntimeMethod* method) { { int32_t L_0 = ___controlType0; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_000f; } } { int32_t L_1 = ___controlType0; if ((((int32_t)L_1) == ((int32_t)3))) { goto IL_000f; } } { __this->set_sprites_23((List_1_t99B54448C695C6F7103A0DE4320F1A7EF7B30880 *)NULL); } IL_000f: { int32_t L_2 = ___controlType0; if ((((int32_t)L_2) == ((int32_t)4))) { goto IL_001a; } } { __this->set_textures_28((List_1_t692E82B1A375B23285D8EAC6AA53F573315C6C3D *)NULL); } IL_001a: { int32_t L_3 = ___controlType0; if ((((int32_t)L_3) == ((int32_t)5))) { goto IL_0025; } } { __this->set_materials_30((List_1_t434825DCF3B4911FA61F9B2A235567430BDDD9F4 *)NULL); } IL_0025: { 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.Single CrazyMinnow.SALSA.LerpEasings::Ease(System.Single,CrazyMinnow.SALSA.LerpEasings/EasingType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_Ease_m7A4498758814D0241A90F64213E1D12BFE4B8072 (float ___t0, int32_t ___easingType1, const RuntimeMethod* method) { { int32_t L_0 = ___easingType1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1))) { case 0: { goto IL_0063; } case 1: { goto IL_0055; } case 2: { goto IL_005c; } case 3: { goto IL_0032; } case 4: { goto IL_0039; } case 5: { goto IL_0040; } case 6: { goto IL_0047; } case 7: { goto IL_006a; } case 8: { goto IL_004e; } case 9: { goto IL_0071; } } } { goto IL_0078; } IL_0032: { float L_1 = ___t0; float L_2; L_2 = LerpEasings_CubicOut_m727882E2E688678AE78DA26F9BB8463F796E85BD(L_1, /*hidden argument*/NULL); return L_2; } IL_0039: { float L_3 = ___t0; float L_4; L_4 = LerpEasings_CubicInOut_mB003C50399E7779EDE90BF10AEFD8B5FE987F674(L_3, /*hidden argument*/NULL); return L_4; } IL_0040: { float L_5 = ___t0; float L_6; L_6 = LerpEasings_QuarticOut_m8630B6E1772EC9417892AD995A73C808F2DECDF9(L_5, /*hidden argument*/NULL); return L_6; } IL_0047: { float L_7 = ___t0; float L_8; L_8 = LerpEasings_QuintOut_m67DAD0DDE2C0633A7C1AA395A2952D04663C4AFD(L_7, /*hidden argument*/NULL); return L_8; } IL_004e: { float L_9 = ___t0; float L_10; L_10 = LerpEasings_SinOut_m9DDE9A6CAB7973EE7515127EF118C1EC319CEF7C(L_9, /*hidden argument*/NULL); return L_10; } IL_0055: { float L_11 = ___t0; float L_12; L_12 = LerpEasings_CircleOut_m47F58057907343943B191D7836094EE1F87E43FC(L_11, /*hidden argument*/NULL); return L_12; } IL_005c: { float L_13 = ___t0; float L_14; L_14 = LerpEasings_CubicIn_m66D4616B7D32CD7C4ECE2E276F0636F5B9B7F460(L_13, /*hidden argument*/NULL); return L_14; } IL_0063: { float L_15 = ___t0; float L_16; L_16 = LerpEasings_CircleIn_m079CD3A616C0DE74756AAEFC6CC40DE7CFBF6A3A(L_15, /*hidden argument*/NULL); return L_16; } IL_006a: { float L_17 = ___t0; float L_18; L_18 = LerpEasings_SinIn_m0F232A38E383F04E3BA722F3A7F293EA6FD3C3A2(L_17, /*hidden argument*/NULL); return L_18; } IL_0071: { float L_19 = ___t0; float L_20; L_20 = LerpEasings_SquaredIn_m91514A8F5975E5A681E8E3DE9BAA63E0E2F55722(L_19, /*hidden argument*/NULL); return L_20; } IL_0078: { float L_21 = ___t0; return L_21; } } // System.Single CrazyMinnow.SALSA.LerpEasings::CubicOut(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_CubicOut_m727882E2E688678AE78DA26F9BB8463F796E85BD (float ___t0, const RuntimeMethod* method) { { float L_0 = ___t0; ___t0 = ((float)il2cpp_codegen_subtract((float)L_0, (float)(1.0f))); float L_1 = ___t0; float L_2 = ___t0; float L_3 = ___t0; return ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)L_1, (float)L_2)), (float)L_3)), (float)(1.0f))); } } // System.Single CrazyMinnow.SALSA.LerpEasings::CubicIn(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_CubicIn_m66D4616B7D32CD7C4ECE2E276F0636F5B9B7F460 (float ___t0, const RuntimeMethod* method) { { float L_0 = ___t0; float L_1 = ___t0; float L_2 = ___t0; return ((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)L_0, (float)L_1)), (float)L_2)); } } // System.Single CrazyMinnow.SALSA.LerpEasings::SquaredIn(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_SquaredIn_m91514A8F5975E5A681E8E3DE9BAA63E0E2F55722 (float ___t0, const RuntimeMethod* method) { { float L_0 = ___t0; float L_1 = ___t0; return ((float)il2cpp_codegen_multiply((float)L_0, (float)L_1)); } } // System.Single CrazyMinnow.SALSA.LerpEasings::CircleIn(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_CircleIn_m079CD3A616C0DE74756AAEFC6CC40DE7CFBF6A3A (float ___t0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___t0; float L_1 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); double L_2; L_2 = sqrt(((double)((double)((float)il2cpp_codegen_subtract((float)(1.0f), (float)((float)il2cpp_codegen_multiply((float)L_0, (float)L_1))))))); return ((float)il2cpp_codegen_subtract((float)(1.0f), (float)((float)((float)L_2)))); } } // System.Single CrazyMinnow.SALSA.LerpEasings::CircleOut(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_CircleOut_m47F58057907343943B191D7836094EE1F87E43FC (float ___t0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___t0; float L_1 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); double L_2; L_2 = sqrt(((double)((double)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_subtract((float)(2.0f), (float)L_0)), (float)L_1))))); return ((float)((float)L_2)); } } // System.Single CrazyMinnow.SALSA.LerpEasings::CubicInOut(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_CubicInOut_mB003C50399E7779EDE90BF10AEFD8B5FE987F674 (float ___t0, const RuntimeMethod* method) { { float L_0 = ___t0; if ((!(((float)L_0) < ((float)(0.5f))))) { goto IL_0014; } } { float L_1 = ___t0; float L_2 = ___t0; float L_3 = ___t0; return ((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)(4.0f), (float)L_1)), (float)L_2)), (float)L_3)); } IL_0014: { float L_4 = ___t0; ___t0 = ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_multiply((float)(2.0f), (float)L_4)), (float)(2.0f))); float L_5 = ___t0; float L_6 = ___t0; float L_7 = ___t0; return ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)(0.5f), (float)L_5)), (float)L_6)), (float)L_7)), (float)(1.0f))); } } // System.Single CrazyMinnow.SALSA.LerpEasings::QuintOut(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_QuintOut_m67DAD0DDE2C0633A7C1AA395A2952D04663C4AFD (float ___t0, const RuntimeMethod* method) { { float L_0 = ___t0; ___t0 = ((float)il2cpp_codegen_subtract((float)L_0, (float)(1.0f))); float L_1 = ___t0; float L_2 = ___t0; float L_3 = ___t0; float L_4 = ___t0; float L_5 = ___t0; return ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)L_1, (float)L_2)), (float)L_3)), (float)L_4)), (float)L_5)), (float)(1.0f))); } } // System.Single CrazyMinnow.SALSA.LerpEasings::QuarticOut(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_QuarticOut_m8630B6E1772EC9417892AD995A73C808F2DECDF9 (float ___t0, const RuntimeMethod* method) { float V_0 = 0.0f; { float L_0 = ___t0; V_0 = ((float)il2cpp_codegen_subtract((float)L_0, (float)(1.0f))); float L_1 = V_0; float L_2 = V_0; float L_3 = V_0; float L_4 = ___t0; return ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)L_1, (float)L_2)), (float)L_3)), (float)((float)il2cpp_codegen_subtract((float)(1.0f), (float)L_4)))), (float)(1.0f))); } } // System.Single CrazyMinnow.SALSA.LerpEasings::SinIn(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_SinIn_m0F232A38E383F04E3BA722F3A7F293EA6FD3C3A2 (float ___t0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); double L_1; L_1 = sin(((double)((double)((double)il2cpp_codegen_multiply((double)((double)((double)((float)il2cpp_codegen_subtract((float)L_0, (float)(1.0f))))), (double)(3.1415926535897931)))/(double)(2.0)))); return ((float)il2cpp_codegen_add((float)((float)((float)L_1)), (float)(1.0f))); } } // System.Single CrazyMinnow.SALSA.LerpEasings::SinOut(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LerpEasings_SinOut_m9DDE9A6CAB7973EE7515127EF118C1EC319CEF7C (float ___t0, const RuntimeMethod* method) { { float L_0 = ___t0; float L_1; L_1 = sinf(((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)L_0, (float)(3.14159274f))), (float)(0.5f)))); 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 CrazyMinnow.SALSA.LipsyncExpression::.ctor(System.String,System.Collections.Generic.List`1,System.Single,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LipsyncExpression__ctor_m6492F29C362FABBEC6A183233773BA87E34A76AE (LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * __this, String_t* ___name0, List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * ___components1, float ___trigger2, bool ___inspFoldout3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m5C8057DF1222EA6F5A84B7F14A98D7C18BC29249_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_0 = (Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D *)il2cpp_codegen_object_new(Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D_il2cpp_TypeInfo_var); Expression__ctor_m33DDB757C5D5BACCCECE133F48DC7A06FDBCF33C(L_0, /*hidden argument*/NULL); __this->set_expData_0(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_1 = __this->get_expData_0(); String_t* L_2 = ___name0; NullCheck(L_1); L_1->set_name_0(L_2); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_3 = __this->get_expData_0(); bool L_4 = ___inspFoldout3; NullCheck(L_3); L_3->set_inspFoldout_3(L_4); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_5 = __this->get_expData_0(); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_6 = ___components1; List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_7 = (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 *)il2cpp_codegen_object_new(List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545_il2cpp_TypeInfo_var); List_1__ctor_m5C8057DF1222EA6F5A84B7F14A98D7C18BC29249(L_7, L_6, /*hidden argument*/List_1__ctor_m5C8057DF1222EA6F5A84B7F14A98D7C18BC29249_RuntimeMethod_var); NullCheck(L_5); L_5->set_components_1(L_7); float L_8 = ___trigger2; __this->set_trigger_1(L_8); return; } } // System.Void CrazyMinnow.SALSA.LipsyncExpression::.ctor(System.String,CrazyMinnow.SALSA.InspectorControllerHelperData,System.Single,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LipsyncExpression__ctor_m150DF066C6BC08A4567BA6040981F5CFAFAF9CF5 (LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * __this, String_t* ___name0, InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * ___firstNewComponent1, float ___trigger2, bool ___inspFoldout3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m4D8CDADC6E5846B67FD0B1D76CE04F6C2CA81649_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m58DF6FCFDD48862FDECD0AC6E2FAB14588F795FE_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m931A772099ED222BB83B3F47BC5D8A0DE00B4546_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mBF0D7A9B3C2F4E9182ACEE9C5C4699C25F327789_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3EF9DB7FE837B05E2C912EF3A99B75A733476DD); s_Il2CppMethodInitialized = true; } { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_0 = (Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D *)il2cpp_codegen_object_new(Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D_il2cpp_TypeInfo_var); Expression__ctor_m33DDB757C5D5BACCCECE133F48DC7A06FDBCF33C(L_0, /*hidden argument*/NULL); __this->set_expData_0(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_1 = __this->get_expData_0(); String_t* L_2 = ___name0; NullCheck(L_1); L_1->set_name_0(L_2); float L_3 = ___trigger2; __this->set_trigger_1(L_3); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_4 = __this->get_expData_0(); bool L_5 = ___inspFoldout3; NullCheck(L_4); L_4->set_inspFoldout_3(L_5); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_6 = __this->get_expData_0(); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_7 = (List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 *)il2cpp_codegen_object_new(List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545_il2cpp_TypeInfo_var); List_1__ctor_mBF0D7A9B3C2F4E9182ACEE9C5C4699C25F327789(L_7, /*hidden argument*/List_1__ctor_mBF0D7A9B3C2F4E9182ACEE9C5C4699C25F327789_RuntimeMethod_var); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_8 = L_7; ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_9 = (ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D *)il2cpp_codegen_object_new(ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D_il2cpp_TypeInfo_var); ExpressionComponent__ctor_m7032EAF5ECE9620D5148C63A8D5E760C97EDE866(L_9, _stringLiteralB3EF9DB7FE837B05E2C912EF3A99B75A733476DD, (0.0799999982f), (0.0f), (0.0599999987f), 0, 4, 0, /*hidden argument*/NULL); NullCheck(L_8); List_1_Add_m4D8CDADC6E5846B67FD0B1D76CE04F6C2CA81649(L_8, L_9, /*hidden argument*/List_1_Add_m4D8CDADC6E5846B67FD0B1D76CE04F6C2CA81649_RuntimeMethod_var); NullCheck(L_6); L_6->set_components_1(L_8); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_10 = ___firstNewComponent1; if (!L_10) { goto IL_0083; } } { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_11 = __this->get_expData_0(); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_12 = (List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 *)il2cpp_codegen_object_new(List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15_il2cpp_TypeInfo_var); List_1__ctor_m931A772099ED222BB83B3F47BC5D8A0DE00B4546(L_12, /*hidden argument*/List_1__ctor_m931A772099ED222BB83B3F47BC5D8A0DE00B4546_RuntimeMethod_var); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_13 = L_12; InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_14 = ___firstNewComponent1; InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_15 = (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 *)il2cpp_codegen_object_new(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70_il2cpp_TypeInfo_var); InspectorControllerHelperData__ctor_m2BF06F1E42FAED1218484B07F283D64537D92915(L_15, L_14, /*hidden argument*/NULL); NullCheck(L_13); List_1_Add_m58DF6FCFDD48862FDECD0AC6E2FAB14588F795FE(L_13, L_15, /*hidden argument*/List_1_Add_m58DF6FCFDD48862FDECD0AC6E2FAB14588F795FE_RuntimeMethod_var); NullCheck(L_11); L_11->set_controllerVars_2(L_13); return; } IL_0083: { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_16 = __this->get_expData_0(); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_17 = (List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 *)il2cpp_codegen_object_new(List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15_il2cpp_TypeInfo_var); List_1__ctor_m931A772099ED222BB83B3F47BC5D8A0DE00B4546(L_17, /*hidden argument*/List_1__ctor_m931A772099ED222BB83B3F47BC5D8A0DE00B4546_RuntimeMethod_var); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_18 = L_17; InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_19 = (InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 *)il2cpp_codegen_object_new(InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70_il2cpp_TypeInfo_var); InspectorControllerHelperData__ctor_m4FDF274348A7A6722D23862A80B19EB5C54E3099(L_19, /*hidden argument*/NULL); NullCheck(L_18); List_1_Add_m58DF6FCFDD48862FDECD0AC6E2FAB14588F795FE(L_18, L_19, /*hidden argument*/List_1_Add_m58DF6FCFDD48862FDECD0AC6E2FAB14588F795FE_RuntimeMethod_var); NullCheck(L_16); L_16->set_controllerVars_2(L_18); 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 CrazyMinnow.SALSA.MaterialController::.ctor(UnityEngine.Renderer,UnityEngine.Material[],CrazyMinnow.SALSA.Switcher/OnState,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaterialController__ctor_m047FACC99D8708861861A4381686FF6FA9088A6A (MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 * __this, Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * ___renderer0, MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* ___animationFrames1, int32_t ___onState2, bool ___isRestNull3, const RuntimeMethod* method) { { Switcher__ctor_m67537B3923AABCB49B621465F0620500B829567F(__this, /*hidden argument*/NULL); Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_0 = ___renderer0; __this->set_renderer_5(L_0); MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* L_1 = ___animationFrames1; __this->set_animationFrames_6(L_1); int32_t L_2 = ___onState2; ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_onState_0(L_2); bool L_3 = ___isRestNull3; ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_isRestNull_3(L_3); MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* L_4 = ___animationFrames1; NullCheck(L_4); ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_frame_1(((float)((float)(1.0f)/(float)((float)((float)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))); return; } } // System.Int32 CrazyMinnow.SALSA.MaterialController::GetID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaterialController_GetID_m2BF86662D4EFEADE69F0B912B7F5276A67C3AFB6 (MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 * __this, const RuntimeMethod* method) { { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_0 = __this->get_renderer_5(); NullCheck(L_0); int32_t L_1; L_1 = Object_GetInstanceID_m7CF962BC1DB5C03F3522F88728CB2F514582B501(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void CrazyMinnow.SALSA.MaterialController::SetOn(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaterialController_SetOn_m7902C995602DADC1C5A6C898D745E402BC5ADB63 (MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 * __this, float ___lerper0, const RuntimeMethod* method) { int32_t V_0 = 0; { float L_0 = ___lerper0; float L_1 = ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->get_frame_1(); MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* L_2 = __this->get_animationFrames_6(); NullCheck(L_2); int32_t L_3; L_3 = Mathf_Clamp_m3899EEB9D73D22E0C4524189E89D36A647581CBF(il2cpp_codegen_cast_double_to_int(((float)((float)L_0/(float)L_1))), 0, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))), (int32_t)1)), /*hidden argument*/NULL); V_0 = L_3; Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_4 = __this->get_renderer_5(); MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* L_5 = __this->get_animationFrames_6(); int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_8 = (L_5)->GetAt(static_cast(L_7)); NullCheck(L_4); Renderer_set_sharedMaterial_m1E66766F93E95F692C3C9C2C09AFD795B156678B(L_4, L_8, /*hidden argument*/NULL); float L_9 = ___lerper0; ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_currentDelta_2(L_9); return; } } // System.Void CrazyMinnow.SALSA.MaterialController::SetOff() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaterialController_SetOff_mDF9CCDFBAEAE169083F7489CCA949841EE6E5952 (MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 * __this, const RuntimeMethod* method) { { bool L_0 = ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->get_isRestNull_3(); if (!L_0) { goto IL_0016; } } { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_1 = __this->get_renderer_5(); NullCheck(L_1); Renderer_set_sharedMaterial_m1E66766F93E95F692C3C9C2C09AFD795B156678B(L_1, (Material_t8927C00353A72755313F046D0CE85178AE8218EE *)NULL, /*hidden argument*/NULL); goto IL_0029; } IL_0016: { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_2 = __this->get_renderer_5(); MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* L_3 = __this->get_animationFrames_6(); NullCheck(L_3); int32_t L_4 = 0; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_5 = (L_3)->GetAt(static_cast(L_4)); NullCheck(L_2); Renderer_set_sharedMaterial_m1E66766F93E95F692C3C9C2C09AFD795B156678B(L_2, L_5, /*hidden argument*/NULL); } IL_0029: { ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_currentDelta_2((0.0f)); return; } } // UnityEngine.GameObject CrazyMinnow.SALSA.MaterialController::GetObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * MaterialController_GetObject_m630068306187A34C5F9E1945BF44467264CA83F6 (MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 * __this, const RuntimeMethod* method) { { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_0 = __this->get_renderer_5(); NullCheck(L_0); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1; L_1 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean CrazyMinnow.SALSA.MaterialController::HasInvalidController() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaterialController_HasInvalidController_mB9CF24A6279B884DB627C7D9B3E286124F549BB8 (MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 * __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; } { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_0 = __this->get_renderer_5(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); return L_1; } } // System.Void CrazyMinnow.SALSA.MaterialController::LogType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaterialController_LogType_mC879E10FDA6AB4E5A70370703ED44C8D1D798C4F (MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 * __this, 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*)&_stringLiteral9AC851BB9C1A7DCFAD69908C32B1463DDF09B48F); s_Il2CppMethodInitialized = true; } Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * G_B2_0 = NULL; String_t* G_B2_1 = NULL; Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * G_B1_0 = NULL; String_t* G_B1_1 = NULL; String_t* G_B3_0 = NULL; String_t* G_B3_1 = NULL; { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_0 = __this->get_renderer_5(); Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_1 = L_0; G_B1_0 = L_1; G_B1_1 = _stringLiteral9AC851BB9C1A7DCFAD69908C32B1463DDF09B48F; if (L_1) { G_B2_0 = L_1; G_B2_1 = _stringLiteral9AC851BB9C1A7DCFAD69908C32B1463DDF09B48F; goto IL_0012; } } { G_B3_0 = ((String_t*)(NULL)); G_B3_1 = G_B1_1; goto IL_0017; } IL_0012: { NullCheck(G_B2_0); String_t* L_2; L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B2_0); G_B3_0 = L_2; G_B3_1 = G_B2_1; } IL_0017: { String_t* L_3; L_3 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(G_B3_1, G_B3_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(L_3, /*hidden argument*/NULL); return; } } // System.Boolean CrazyMinnow.SALSA.MaterialController::Equals(CrazyMinnow.SALSA.IExpressionController) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaterialController_Equals_m8422B4FFB7ABAE4BF41AAFB7E89DCF63EF369132 (MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 * __this, RuntimeObject* ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 * V_0 = NULL; { RuntimeObject* L_0 = ___other0; V_0 = ((MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 *)IsInstClass((RuntimeObject*)L_0, MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2_il2cpp_TypeInfo_var)); MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 * L_1 = V_0; if (!L_1) { goto IL_001f; } } { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_2 = __this->get_renderer_5(); MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 * L_3 = V_0; NullCheck(L_3); Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_4 = L_3->get_renderer_5(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_5; L_5 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_2, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_001f; } } { return (bool)1; } IL_001f: { 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 CrazyMinnow.SALSA.ProcDirection::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProcDirection__ctor_mAE04E1A07192555A8DFB719AE95CDA5D96BA48C6 (ProcDirection_tC62B97B09CB51ED733151F401AA2BB9EBD161EA6 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_0 = __this->get_address_of_vec_0(); il2cpp_codegen_initobj(L_0, sizeof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * L_1 = __this->get_address_of_quat_1(); il2cpp_codegen_initobj(L_1, sizeof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 )); 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 CrazyMinnow.SALSA.ProcDirections::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProcDirections__ctor_m52C91C467E9B99E8E51E5386AE41BC5BDB351401 (ProcDirections_tFD40A6BAD2CCE4E304678BBE22B0F7C922A50052 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m21A27FC8855349BC0B29380C366CA2702BD7D011_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB * L_0 = (List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB *)il2cpp_codegen_object_new(List_1_tD84D7D885C4B4870758CFECD4A178E35BE374ECB_il2cpp_TypeInfo_var); List_1__ctor_m21A27FC8855349BC0B29380C366CA2702BD7D011(L_0, /*hidden argument*/List_1__ctor_m21A27FC8855349BC0B29380C366CA2702BD7D011_RuntimeMethod_var); __this->set_dir_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 CrazyMinnow.SALSA.ProcFloats::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProcFloats__ctor_m03AE904799E278AC308665915C901786C257A27F (ProcFloats_t331BCAA9EF5F265EDD79A38EA9FC27C6863390BD * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m893CC03BA01C82718A6ED996182C83EA91A0E74C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA * L_0 = (List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA *)il2cpp_codegen_object_new(List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA_il2cpp_TypeInfo_var); List_1__ctor_m893CC03BA01C82718A6ED996182C83EA91A0E74C(L_0, /*hidden argument*/List_1__ctor_m893CC03BA01C82718A6ED996182C83EA91A0E74C_RuntimeMethod_var); __this->set_amt_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 CrazyMinnow.SALSA.ProcLLPair::.ctor(UnityEngine.Vector3,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProcLLPair__ctor_m150C12200B6ED2F62F542B40E9A0E42228AD0816 (ProcLLPair_tB4838AECC69252E841D4A6D3C544BB2BA4AE27F5 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___pos0, int32_t ___pairId1, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = ___pos0; __this->set_pos_0(L_0); int32_t L_1 = ___pairId1; __this->set_pairId_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.Void CrazyMinnow.SALSA.ProcLLPairs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProcLLPairs__ctor_m16963B5573A529317AFA4534427F8330D0AD8AAD (ProcLLPairs_t215616DB07797A90817802C8678AFB280D155565 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m71FDD44E74399141E01027248077751CD2AACED8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57 * L_0 = (List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57 *)il2cpp_codegen_object_new(List_1_t5CCAB8B93E2976CAB1DCF1A88EC23956E1D28B57_il2cpp_TypeInfo_var); List_1__ctor_m71FDD44E74399141E01027248077751CD2AACED8(L_0, /*hidden argument*/List_1__ctor_m71FDD44E74399141E01027248077751CD2AACED8_RuntimeMethod_var); __this->set_pairs_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 CrazyMinnow.SALSA.ProcTrans::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProcTrans__ctor_mA98D2DBB2D72FA6102BEEFF05FE62FE8B5C1CE1E (ProcTrans_t2BB9171C261038F44C15497EBBDF6B000F5E8DCC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mF1D464BA700E6389AEA8AF2F197270F387D9A41F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * L_0 = (List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 *)il2cpp_codegen_object_new(List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0_il2cpp_TypeInfo_var); List_1__ctor_mF1D464BA700E6389AEA8AF2F197270F387D9A41F(L_0, /*hidden argument*/List_1__ctor_mF1D464BA700E6389AEA8AF2F197270F387D9A41F_RuntimeMethod_var); __this->set_trans_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 CrazyMinnow.SALSA.ProcTransOffset::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProcTransOffset__ctor_mAB847A2EA52BB6816A2FC08AD4D1876EB91C4F86 (ProcTransOffset_tB9141178E2515588F437171D5959747777F7C8DE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m56C00E186C52C3A18C014B019D76A4D67D5EDC2D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mF1D464BA700E6389AEA8AF2F197270F387D9A41F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * L_0 = (List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 *)il2cpp_codegen_object_new(List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0_il2cpp_TypeInfo_var); List_1__ctor_mF1D464BA700E6389AEA8AF2F197270F387D9A41F(L_0, /*hidden argument*/List_1__ctor_mF1D464BA700E6389AEA8AF2F197270F387D9A41F_RuntimeMethod_var); __this->set_trans_0(L_0); List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB * L_1 = (List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB *)il2cpp_codegen_object_new(List_1_t2558DEC96F7E6007750607B083ADB3AC48A30CCB_il2cpp_TypeInfo_var); List_1__ctor_m56C00E186C52C3A18C014B019D76A4D67D5EDC2D(L_1, /*hidden argument*/List_1__ctor_m56C00E186C52C3A18C014B019D76A4D67D5EDC2D_RuntimeMethod_var); __this->set_offset_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.Void CrazyMinnow.SALSA.ProcVecs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProcVecs__ctor_m262FA8C804E35E228FA8B6C64474080F3A7F40B8 (ProcVecs_tF94C0F6953466FC3D0080567195A571682BD02F3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mF8F23D572031748AD428623AE16803455997E297_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * L_0 = (List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 *)il2cpp_codegen_object_new(List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181_il2cpp_TypeInfo_var); List_1__ctor_mF8F23D572031748AD428623AE16803455997E297(L_0, /*hidden argument*/List_1__ctor_mF8F23D572031748AD428623AE16803455997E297_RuntimeMethod_var); __this->set_vec_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 // Conversion methods for marshalling of: CrazyMinnow.SALSA.QueueData IL2CPP_EXTERN_C void QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshal_pinvoke(const QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08& unmarshaled, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshaled_pinvoke& marshaled) { Exception_t* ___queueExpressionComponent_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'queueExpressionComponent' of type 'QueueData'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___queueExpressionComponent_0Exception, NULL); } IL2CPP_EXTERN_C void QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshal_pinvoke_back(const QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshaled_pinvoke& marshaled, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08& unmarshaled) { Exception_t* ___queueExpressionComponent_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'queueExpressionComponent' of type 'QueueData'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___queueExpressionComponent_0Exception, NULL); } // Conversion method for clean up from marshalling of: CrazyMinnow.SALSA.QueueData IL2CPP_EXTERN_C void QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshal_pinvoke_cleanup(QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: CrazyMinnow.SALSA.QueueData IL2CPP_EXTERN_C void QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshal_com(const QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08& unmarshaled, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshaled_com& marshaled) { Exception_t* ___queueExpressionComponent_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'queueExpressionComponent' of type 'QueueData'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___queueExpressionComponent_0Exception, NULL); } IL2CPP_EXTERN_C void QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshal_com_back(const QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshaled_com& marshaled, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08& unmarshaled) { Exception_t* ___queueExpressionComponent_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'queueExpressionComponent' of type 'QueueData'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___queueExpressionComponent_0Exception, NULL); } // Conversion method for clean up from marshalling of: CrazyMinnow.SALSA.QueueData IL2CPP_EXTERN_C void QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshal_com_cleanup(QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08_marshaled_com& marshaled) { } // System.Void CrazyMinnow.SALSA.QueueData::.ctor(CrazyMinnow.SALSA.ExpressionComponent,System.Single,System.Single,System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueData__ctor_m869788F7850F5E9FA956C53E4F21FFB656011ACE (QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 * __this, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___expEl0, float ___lerpProgress1, float ___startTime2, bool ___isActivating3, int32_t ___itemId4, const RuntimeMethod* method) { { ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_0 = ___expEl0; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_1; memset((&L_1), 0, sizeof(L_1)); QueueExpressionComponent__ctor_m2070728740E1660D6F0AE41D0BA7A08D86E005C7((&L_1), L_0, /*hidden argument*/NULL); __this->set_queueExpressionComponent_0(L_1); float L_2 = ___lerpProgress1; __this->set_lerpProgress_1(L_2); float L_3 = ___startTime2; __this->set_startTime_2(L_3); bool L_4 = ___isActivating3; __this->set_isActivating_3(L_4); int32_t L_5 = ___itemId4; __this->set_itemID_4(L_5); return; } } IL2CPP_EXTERN_C void QueueData__ctor_m869788F7850F5E9FA956C53E4F21FFB656011ACE_AdjustorThunk (RuntimeObject * __this, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___expEl0, float ___lerpProgress1, float ___startTime2, bool ___isActivating3, int32_t ___itemId4, const RuntimeMethod* method) { int32_t _offset = 1; QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 * _thisAdjusted = reinterpret_cast(__this + _offset); QueueData__ctor_m869788F7850F5E9FA956C53E4F21FFB656011ACE(_thisAdjusted, ___expEl0, ___lerpProgress1, ___startTime2, ___isActivating3, ___itemId4, method); } // System.Void CrazyMinnow.SALSA.QueueData::.ctor(CrazyMinnow.SALSA.QueueExpressionComponent,System.Single,System.Single,System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueData__ctor_mE61A60FB8F9B593A1DC705557CE0616F3E1FD1F6 (QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 * __this, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 ___expEl0, float ___lerpProgress1, float ___startTime2, bool ___isActivating3, int32_t ___itemId4, const RuntimeMethod* method) { { QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_0 = ___expEl0; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_1; memset((&L_1), 0, sizeof(L_1)); QueueExpressionComponent__ctor_m36912621696266F4638E6F38E2CFC386DDC0A76B((&L_1), L_0, /*hidden argument*/NULL); __this->set_queueExpressionComponent_0(L_1); float L_2 = ___lerpProgress1; __this->set_lerpProgress_1(L_2); float L_3 = ___startTime2; __this->set_startTime_2(L_3); bool L_4 = ___isActivating3; __this->set_isActivating_3(L_4); int32_t L_5 = ___itemId4; __this->set_itemID_4(L_5); return; } } IL2CPP_EXTERN_C void QueueData__ctor_mE61A60FB8F9B593A1DC705557CE0616F3E1FD1F6_AdjustorThunk (RuntimeObject * __this, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 ___expEl0, float ___lerpProgress1, float ___startTime2, bool ___isActivating3, int32_t ___itemId4, const RuntimeMethod* method) { int32_t _offset = 1; QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 * _thisAdjusted = reinterpret_cast(__this + _offset); QueueData__ctor_mE61A60FB8F9B593A1DC705557CE0616F3E1FD1F6(_thisAdjusted, ___expEl0, ___lerpProgress1, ___startTime2, ___isActivating3, ___itemId4, method); } // System.Void CrazyMinnow.SALSA.QueueData::.ctor(CrazyMinnow.SALSA.IExpressionController,CrazyMinnow.SALSA.ExpressionComponent/ControlType,System.Single,System.Single,System.Single,System.Single,System.Boolean,CrazyMinnow.SALSA.ExpressionComponent/ExpressionType,CrazyMinnow.SALSA.LerpEasings/EasingType,CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueData__ctor_mBB7166CCFC77FD77222B1C14605C3F0B42311589 (QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 * __this, RuntimeObject* ___controller0, int32_t ___controlType1, float ___durDelay2, float ___durOn3, float ___durHold4, float ___durOff5, bool ___persistence6, int32_t ___type7, int32_t ___easing8, int32_t ___handler9, bool ___animatorControlled10, bool ___useOffset11, float ___lerpProgress12, float ___startTime13, bool ___isActivating14, int32_t ___itemId15, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93D63F89578E35B17DD17088D9109BFBDE40C47B); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___controller0; int32_t L_1 = ___controlType1; float L_2 = ___durDelay2; float L_3 = ___durOn3; float L_4 = ___durHold4; float L_5 = ___durOff5; bool L_6 = ___persistence6; int32_t L_7 = ___type7; int32_t L_8 = ___easing8; int32_t L_9 = ___handler9; bool L_10 = ___animatorControlled10; bool L_11 = ___useOffset11; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_12; memset((&L_12), 0, sizeof(L_12)); QueueExpressionComponent__ctor_m2AE432C1E57A79D5F465EE30CFFDE1DEFDC6F976((&L_12), L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, L_8, L_9, L_10, L_11, _stringLiteral93D63F89578E35B17DD17088D9109BFBDE40C47B, /*hidden argument*/NULL); __this->set_queueExpressionComponent_0(L_12); float L_13 = ___lerpProgress12; __this->set_lerpProgress_1(L_13); float L_14 = ___startTime13; __this->set_startTime_2(L_14); bool L_15 = ___isActivating14; __this->set_isActivating_3(L_15); int32_t L_16 = ___itemId15; __this->set_itemID_4(L_16); return; } } IL2CPP_EXTERN_C void QueueData__ctor_mBB7166CCFC77FD77222B1C14605C3F0B42311589_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___controller0, int32_t ___controlType1, float ___durDelay2, float ___durOn3, float ___durHold4, float ___durOff5, bool ___persistence6, int32_t ___type7, int32_t ___easing8, int32_t ___handler9, bool ___animatorControlled10, bool ___useOffset11, float ___lerpProgress12, float ___startTime13, bool ___isActivating14, int32_t ___itemId15, const RuntimeMethod* method) { int32_t _offset = 1; QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 * _thisAdjusted = reinterpret_cast(__this + _offset); QueueData__ctor_mBB7166CCFC77FD77222B1C14605C3F0B42311589(_thisAdjusted, ___controller0, ___controlType1, ___durDelay2, ___durOn3, ___durHold4, ___durOff5, ___persistence6, ___type7, ___easing8, ___handler9, ___animatorControlled10, ___useOffset11, ___lerpProgress12, ___startTime13, ___isActivating14, ___itemId15, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: CrazyMinnow.SALSA.QueueExpressionComponent IL2CPP_EXTERN_C void QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshal_pinvoke(const QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376& unmarshaled, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_pinvoke& marshaled) { Exception_t* ___controller_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'controller' of type 'QueueExpressionComponent': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___controller_0Exception, NULL); } IL2CPP_EXTERN_C void QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshal_pinvoke_back(const QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_pinvoke& marshaled, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376& unmarshaled) { Exception_t* ___controller_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'controller' of type 'QueueExpressionComponent': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___controller_0Exception, NULL); } // Conversion method for clean up from marshalling of: CrazyMinnow.SALSA.QueueExpressionComponent IL2CPP_EXTERN_C void QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshal_pinvoke_cleanup(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: CrazyMinnow.SALSA.QueueExpressionComponent IL2CPP_EXTERN_C void QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshal_com(const QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376& unmarshaled, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_com& marshaled) { Exception_t* ___controller_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'controller' of type 'QueueExpressionComponent': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___controller_0Exception, NULL); } IL2CPP_EXTERN_C void QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshal_com_back(const QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_com& marshaled, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376& unmarshaled) { Exception_t* ___controller_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'controller' of type 'QueueExpressionComponent': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___controller_0Exception, NULL); } // Conversion method for clean up from marshalling of: CrazyMinnow.SALSA.QueueExpressionComponent IL2CPP_EXTERN_C void QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshal_com_cleanup(QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376_marshaled_com& marshaled) { } // System.Void CrazyMinnow.SALSA.QueueExpressionComponent::.ctor(CrazyMinnow.SALSA.ExpressionComponent) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueExpressionComponent__ctor_m2070728740E1660D6F0AE41D0BA7A08D86E005C7 (QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 * __this, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___expEl0, const RuntimeMethod* method) { { ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_0 = ___expEl0; NullCheck(L_0); RuntimeObject* L_1 = L_0->get_controller_1(); __this->set_controller_0(L_1); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_2 = ___expEl0; NullCheck(L_2); int32_t L_3 = L_2->get_controlType_2(); __this->set_controlType_1(L_3); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_4 = ___expEl0; NullCheck(L_4); float L_5 = L_4->get_durationDelay_6(); __this->set_durationDelay_2(L_5); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_6 = ___expEl0; NullCheck(L_6); float L_7 = L_6->get_durationOn_7(); __this->set_durationOn_3(L_7); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_8 = ___expEl0; NullCheck(L_8); float L_9 = L_8->get_durationHold_8(); __this->set_durationHold_4(L_9); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_10 = ___expEl0; NullCheck(L_10); float L_11 = L_10->get_durationOff_9(); __this->set_durationOff_5(L_11); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_12 = ___expEl0; NullCheck(L_12); bool L_13 = L_12->get_isPersistent_11(); __this->set_isPersistent_6(L_13); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_14 = ___expEl0; NullCheck(L_14); int32_t L_15 = L_14->get_expressionType_12(); __this->set_expressionType_7(L_15); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_16 = ___expEl0; NullCheck(L_16); int32_t L_17 = L_16->get_easing_13(); __this->set_easing_8(L_17); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_18 = ___expEl0; NullCheck(L_18); int32_t L_19 = L_18->get_expressionHandler_14(); __this->set_expressionHandler_9(L_19); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_20 = ___expEl0; NullCheck(L_20); bool L_21 = L_20->get_isAnimatorControlled_15(); __this->set_isAnimatorControlled_10(L_21); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_22 = ___expEl0; NullCheck(L_22); bool L_23 = L_22->get_useOffset_16(); __this->set_useOffset_11(L_23); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_24 = ___expEl0; NullCheck(L_24); String_t* L_25 = L_24->get_name_0(); __this->set_name_12(L_25); return; } } IL2CPP_EXTERN_C void QueueExpressionComponent__ctor_m2070728740E1660D6F0AE41D0BA7A08D86E005C7_AdjustorThunk (RuntimeObject * __this, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___expEl0, const RuntimeMethod* method) { int32_t _offset = 1; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 * _thisAdjusted = reinterpret_cast(__this + _offset); QueueExpressionComponent__ctor_m2070728740E1660D6F0AE41D0BA7A08D86E005C7(_thisAdjusted, ___expEl0, method); } // System.Void CrazyMinnow.SALSA.QueueExpressionComponent::.ctor(CrazyMinnow.SALSA.QueueExpressionComponent) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueExpressionComponent__ctor_m36912621696266F4638E6F38E2CFC386DDC0A76B (QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 * __this, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 ___expEl0, const RuntimeMethod* method) { { QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_0 = ___expEl0; RuntimeObject* L_1 = L_0.get_controller_0(); __this->set_controller_0(L_1); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_2 = ___expEl0; int32_t L_3 = L_2.get_controlType_1(); __this->set_controlType_1(L_3); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_4 = ___expEl0; float L_5 = L_4.get_durationDelay_2(); __this->set_durationDelay_2(L_5); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_6 = ___expEl0; float L_7 = L_6.get_durationOn_3(); __this->set_durationOn_3(L_7); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_8 = ___expEl0; float L_9 = L_8.get_durationHold_4(); __this->set_durationHold_4(L_9); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_10 = ___expEl0; float L_11 = L_10.get_durationOff_5(); __this->set_durationOff_5(L_11); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_12 = ___expEl0; bool L_13 = L_12.get_isPersistent_6(); __this->set_isPersistent_6(L_13); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_14 = ___expEl0; int32_t L_15 = L_14.get_expressionType_7(); __this->set_expressionType_7(L_15); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_16 = ___expEl0; int32_t L_17 = L_16.get_easing_8(); __this->set_easing_8(L_17); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_18 = ___expEl0; int32_t L_19 = L_18.get_expressionHandler_9(); __this->set_expressionHandler_9(L_19); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_20 = ___expEl0; bool L_21 = L_20.get_isAnimatorControlled_10(); __this->set_isAnimatorControlled_10(L_21); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_22 = ___expEl0; bool L_23 = L_22.get_useOffset_11(); __this->set_useOffset_11(L_23); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_24 = ___expEl0; String_t* L_25 = L_24.get_name_12(); __this->set_name_12(L_25); return; } } IL2CPP_EXTERN_C void QueueExpressionComponent__ctor_m36912621696266F4638E6F38E2CFC386DDC0A76B_AdjustorThunk (RuntimeObject * __this, QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 ___expEl0, const RuntimeMethod* method) { int32_t _offset = 1; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 * _thisAdjusted = reinterpret_cast(__this + _offset); QueueExpressionComponent__ctor_m36912621696266F4638E6F38E2CFC386DDC0A76B(_thisAdjusted, ___expEl0, method); } // System.Void CrazyMinnow.SALSA.QueueExpressionComponent::.ctor(CrazyMinnow.SALSA.IExpressionController,CrazyMinnow.SALSA.ExpressionComponent/ControlType,System.Single,System.Single,System.Single,System.Single,System.Boolean,CrazyMinnow.SALSA.ExpressionComponent/ExpressionType,CrazyMinnow.SALSA.LerpEasings/EasingType,CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler,System.Boolean,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueExpressionComponent__ctor_m2AE432C1E57A79D5F465EE30CFFDE1DEFDC6F976 (QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 * __this, RuntimeObject* ___controller0, int32_t ___controlType1, float ___durDelay2, float ___durOn3, float ___durHold4, float ___durOff5, bool ___isPersistent6, int32_t ___type7, int32_t ___easing8, int32_t ___handler9, bool ___animatorControlled10, bool ___useOffset11, String_t* ___name12, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___controller0; __this->set_controller_0(L_0); int32_t L_1 = ___controlType1; __this->set_controlType_1(L_1); float L_2 = ___durDelay2; __this->set_durationDelay_2(L_2); float L_3 = ___durOn3; __this->set_durationOn_3(L_3); float L_4 = ___durHold4; __this->set_durationHold_4(L_4); float L_5 = ___durOff5; __this->set_durationOff_5(L_5); bool L_6 = ___isPersistent6; __this->set_isPersistent_6(L_6); int32_t L_7 = ___type7; __this->set_expressionType_7(L_7); int32_t L_8 = ___easing8; __this->set_easing_8(L_8); int32_t L_9 = ___handler9; __this->set_expressionHandler_9(L_9); bool L_10 = ___animatorControlled10; __this->set_isAnimatorControlled_10(L_10); bool L_11 = ___useOffset11; __this->set_useOffset_11(L_11); String_t* L_12 = ___name12; __this->set_name_12(L_12); return; } } IL2CPP_EXTERN_C void QueueExpressionComponent__ctor_m2AE432C1E57A79D5F465EE30CFFDE1DEFDC6F976_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___controller0, int32_t ___controlType1, float ___durDelay2, float ___durOn3, float ___durHold4, float ___durOff5, bool ___isPersistent6, int32_t ___type7, int32_t ___easing8, int32_t ___handler9, bool ___animatorControlled10, bool ___useOffset11, String_t* ___name12, const RuntimeMethod* method) { int32_t _offset = 1; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 * _thisAdjusted = reinterpret_cast(__this + _offset); QueueExpressionComponent__ctor_m2AE432C1E57A79D5F465EE30CFFDE1DEFDC6F976(_thisAdjusted, ___controller0, ___controlType1, ___durDelay2, ___durOn3, ___durHold4, ___durOff5, ___isPersistent6, ___type7, ___easing8, ___handler9, ___animatorControlled10, ___useOffset11, ___name12, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void CrazyMinnow.SALSA.QueueProcessor::add_ScaledTimeResumed(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_add_ScaledTimeResumed_mDC6AE8394D4BD574AF1E604F7B990A4719F0024A (EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * V_0 = NULL; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * V_1 = NULL; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * V_2 = NULL; { EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_0 = ((QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_StaticFields*)il2cpp_codegen_static_fields_for(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_il2cpp_TypeInfo_var))->get_ScaledTimeResumed_16(); V_0 = L_0; } IL_0006: { EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_1 = V_0; V_1 = L_1; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_2 = V_1; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_3 = ___value0; Delegate_t * L_4; L_4 = Delegate_Combine_mD9F4B83868AFAD9BF9F7DC4E3974B8C881092B31(L_2, L_3, /*hidden argument*/NULL); V_2 = ((EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63_il2cpp_TypeInfo_var)); EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_5 = V_2; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_6 = V_1; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_7; L_7 = InterlockedCompareExchangeImpl((EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 **)(((QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_StaticFields*)il2cpp_codegen_static_fields_for(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_il2cpp_TypeInfo_var))->get_address_of_ScaledTimeResumed_16()), L_5, L_6); V_0 = L_7; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_8 = V_0; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_9 = V_1; if ((!(((RuntimeObject*)(EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 *)L_8) == ((RuntimeObject*)(EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 *)L_9)))) { goto IL_0006; } } { return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::remove_ScaledTimeResumed(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_remove_ScaledTimeResumed_mBFB9594F4A7E5CB0545372FCF614B4353DE2E291 (EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * V_0 = NULL; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * V_1 = NULL; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * V_2 = NULL; { EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_0 = ((QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_StaticFields*)il2cpp_codegen_static_fields_for(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_il2cpp_TypeInfo_var))->get_ScaledTimeResumed_16(); V_0 = L_0; } IL_0006: { EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_1 = V_0; V_1 = L_1; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_2 = V_1; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_3 = ___value0; Delegate_t * L_4; L_4 = Delegate_Remove_mD84132DA8A72A81B1CDC5620B52E0E043D7FF0BF(L_2, L_3, /*hidden argument*/NULL); V_2 = ((EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63_il2cpp_TypeInfo_var)); EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_5 = V_2; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_6 = V_1; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_7; L_7 = InterlockedCompareExchangeImpl((EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 **)(((QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_StaticFields*)il2cpp_codegen_static_fields_for(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_il2cpp_TypeInfo_var))->get_address_of_ScaledTimeResumed_16()), L_5, L_6); V_0 = L_7; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_8 = V_0; EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_9 = V_1; if ((!(((RuntimeObject*)(EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 *)L_8) == ((RuntimeObject*)(EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 *)L_9)))) { goto IL_0006; } } { return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::RespectScaledTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_RespectScaledTime_mCBEEA048DD821C227951223448E7679C609F2F81 (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_Invoke_m45252756B37E400159FCCDDDB7E64E19A6502253_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9722D429C1D6FBF4E4F763847E80CB50BD83975F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { __this->set_ignoreScaledTime_15((bool)0); EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_0 = ((QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_StaticFields*)il2cpp_codegen_static_fields_for(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_il2cpp_TypeInfo_var))->get_ScaledTimeResumed_16(); if (!L_0) { goto IL_002b; } } { QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 * L_1 = __this->get__eventNotificationArgs_17(); NullCheck(L_1); L_1->set_queueProcesor_1(__this); EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_2 = ((QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_StaticFields*)il2cpp_codegen_static_fields_for(QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45_il2cpp_TypeInfo_var))->get_ScaledTimeResumed_16(); QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 * L_3 = __this->get__eventNotificationArgs_17(); NullCheck(L_2); EventHandler_1_Invoke_m45252756B37E400159FCCDDDB7E64E19A6502253(L_2, __this, L_3, /*hidden argument*/EventHandler_1_Invoke_m45252756B37E400159FCCDDDB7E64E19A6502253_RuntimeMethod_var); } IL_002b: { V_0 = 0; goto IL_003a; } IL_002f: { int32_t L_4 = V_0; QueueProcessor_ShutdownActiveQueue_m240528DFBDEABAF54E36697F89D6FA06321E12DE(__this, L_4, /*hidden argument*/NULL); int32_t L_5 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); } IL_003a: { int32_t L_6 = V_0; List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_7 = __this->get_queueOrderOfOperation_4(); NullCheck(L_7); int32_t L_8; L_8 = List_1_get_Count_m9722D429C1D6FBF4E4F763847E80CB50BD83975F_inline(L_7, /*hidden argument*/List_1_get_Count_m9722D429C1D6FBF4E4F763847E80CB50BD83975F_RuntimeMethod_var); if ((((int32_t)L_6) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1))))) { goto IL_002f; } } { return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::Awake() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_Awake_mC3719F6B9359848699CD59AB82BBD763238DB356 (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, const RuntimeMethod* method) { { QueueProcessor_Initialize_mEC65556C8ADE7446BCC2B23C1752770A6DA7778D(__this, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::ResetQueues() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_ResetQueues_m74242BB74F704D1879DB0C7FCAA15E199BC25AA0 (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, const RuntimeMethod* method) { { __this->set_isQueueOrderOfOperationInitialized_5((bool)0); QueueProcessor_Initialize_mEC65556C8ADE7446BCC2B23C1752770A6DA7778D(__this, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_Initialize_mEC65556C8ADE7446BCC2B23C1752770A6DA7778D (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { QueueProcessor_InitializeQueueOrderOfOperation_m0B54061E1D2D33F2DF481BADA4A18C15EE6EB7EF(__this, /*hidden argument*/NULL); QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 * L_0 = (QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 *)il2cpp_codegen_object_new(QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470_il2cpp_TypeInfo_var); QueueProcessorNotificationArgs__ctor_m76BD181B7709738AB2C7EB20C365912E60DD02F2(L_0, /*hidden argument*/NULL); QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 * L_1 = L_0; NullCheck(L_1); L_1->set_queueProcesor_1(__this); __this->set__eventNotificationArgs_17(L_1); return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::InitializeQueueOrderOfOperation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_InitializeQueueOrderOfOperation_m0B54061E1D2D33F2DF481BADA4A18C15EE6EB7EF (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mBA67EB750F751E78BB2D3489871D8484AB801557_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral075D697610DE395DD47D56BDB84D5FA515D40299); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral141AA277D57FDC8158A39396457D4693540650BF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral25CF561E84471C2816A7D250265CC0B06D679C8F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral280FF42D962D78E609936D1D0658B3349AE96960); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3BF7876C63766492B2A94E6317BF07EFC53F5C48); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC0F7BF8A1ABDC67A132B9BF0B4E671DEBFF7B8C0); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_isQueueOrderOfOperationInitialized_5(); if (L_0) { goto IL_00be; } } { List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_1 = __this->get_queueOrderOfOperation_4(); NullCheck(L_1); List_1_Clear_mBA67EB750F751E78BB2D3489871D8484AB801557(L_1, /*hidden argument*/List_1_Clear_mBA67EB750F751E78BB2D3489871D8484AB801557_RuntimeMethod_var); List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_2 = __this->get_queueOrderOfOperation_4(); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_3 = __this->get_priorityQueueHeads_8(); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_4 = (QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF *)il2cpp_codegen_object_new(QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF_il2cpp_TypeInfo_var); QueueOoO__ctor_m97FB9C803279C26A8CCDA89F7C63BE985F8776EE(L_4, _stringLiteralC0F7BF8A1ABDC67A132B9BF0B4E671DEBFF7B8C0, L_3, 0, /*hidden argument*/NULL); NullCheck(L_2); List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295(L_2, L_4, /*hidden argument*/List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295_RuntimeMethod_var); List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_5 = __this->get_queueOrderOfOperation_4(); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_6 = __this->get_priorityQueueEyes_9(); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_7 = (QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF *)il2cpp_codegen_object_new(QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF_il2cpp_TypeInfo_var); QueueOoO__ctor_m97FB9C803279C26A8CCDA89F7C63BE985F8776EE(L_7, _stringLiteral280FF42D962D78E609936D1D0658B3349AE96960, L_6, 1, /*hidden argument*/NULL); NullCheck(L_5); List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295(L_5, L_7, /*hidden argument*/List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295_RuntimeMethod_var); List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_8 = __this->get_queueOrderOfOperation_4(); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_9 = __this->get_priorityQueueLids_10(); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_10 = (QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF *)il2cpp_codegen_object_new(QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF_il2cpp_TypeInfo_var); QueueOoO__ctor_m97FB9C803279C26A8CCDA89F7C63BE985F8776EE(L_10, _stringLiteral141AA277D57FDC8158A39396457D4693540650BF, L_9, 2, /*hidden argument*/NULL); NullCheck(L_8); List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295(L_8, L_10, /*hidden argument*/List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295_RuntimeMethod_var); List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_11 = __this->get_queueOrderOfOperation_4(); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_12 = __this->get_priorityQueueEmotes_11(); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_13 = (QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF *)il2cpp_codegen_object_new(QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF_il2cpp_TypeInfo_var); QueueOoO__ctor_m97FB9C803279C26A8CCDA89F7C63BE985F8776EE(L_13, _stringLiteral3BF7876C63766492B2A94E6317BF07EFC53F5C48, L_12, 3, /*hidden argument*/NULL); NullCheck(L_11); List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295(L_11, L_13, /*hidden argument*/List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295_RuntimeMethod_var); List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_14 = __this->get_queueOrderOfOperation_4(); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_15 = __this->get_priorityQueueLipsync_12(); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_16 = (QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF *)il2cpp_codegen_object_new(QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF_il2cpp_TypeInfo_var); QueueOoO__ctor_m97FB9C803279C26A8CCDA89F7C63BE985F8776EE(L_16, _stringLiteral075D697610DE395DD47D56BDB84D5FA515D40299, L_15, 4, /*hidden argument*/NULL); NullCheck(L_14); List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295(L_14, L_16, /*hidden argument*/List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295_RuntimeMethod_var); List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_17 = __this->get_queueOrderOfOperation_4(); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_18 = __this->get_priorityQueueBlinks_13(); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_19 = (QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF *)il2cpp_codegen_object_new(QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF_il2cpp_TypeInfo_var); QueueOoO__ctor_m97FB9C803279C26A8CCDA89F7C63BE985F8776EE(L_19, _stringLiteral25CF561E84471C2816A7D250265CC0B06D679C8F, L_18, 5, /*hidden argument*/NULL); NullCheck(L_17); List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295(L_17, L_19, /*hidden argument*/List_1_Add_m7F89201D8F7688363264D6B25A5DD4DDDB60F295_RuntimeMethod_var); } IL_00be: { __this->set_isQueueOrderOfOperationInitialized_5((bool)1); return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_Flush_m4579CB224E1439E95CF52F41C19B7E8B3C44CD88 (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m4DAC8A03E88979B42189D98D5E0A2A9979C995AE_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m9D54105B7DAF312514D71568AFE5B5EC6F9DF83D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mE2EB6B000E443315A798915D8FB63C38CEEAFA47_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m2CBF4D2A2AD14BF03E3FA24BEC8058E5122048EF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m12A102489545C7BD182D1487554E78253F9A129D_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 V_0; memset((&V_0), 0, sizeof(V_0)); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_0 = __this->get_queueOrderOfOperation_4(); NullCheck(L_0); Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 L_1; L_1 = List_1_GetEnumerator_m12A102489545C7BD182D1487554E78253F9A129D(L_0, /*hidden argument*/List_1_GetEnumerator_m12A102489545C7BD182D1487554E78253F9A129D_RuntimeMethod_var); V_0 = L_1; } IL_000c: try { // begin try (depth: 1) { goto IL_0021; } IL_000e: { QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_2; L_2 = Enumerator_get_Current_mE2EB6B000E443315A798915D8FB63C38CEEAFA47_inline((Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 *)(&V_0), /*hidden argument*/Enumerator_get_Current_mE2EB6B000E443315A798915D8FB63C38CEEAFA47_RuntimeMethod_var); V_1 = L_2; QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_3 = V_1; NullCheck(L_3); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_4 = L_3->get_queue_2(); NullCheck(L_4); List_1_Clear_m2CBF4D2A2AD14BF03E3FA24BEC8058E5122048EF(L_4, /*hidden argument*/List_1_Clear_m2CBF4D2A2AD14BF03E3FA24BEC8058E5122048EF_RuntimeMethod_var); } IL_0021: { bool L_5; L_5 = Enumerator_MoveNext_m9D54105B7DAF312514D71568AFE5B5EC6F9DF83D((Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_m9D54105B7DAF312514D71568AFE5B5EC6F9DF83D_RuntimeMethod_var); if (L_5) { goto IL_000e; } } IL_002a: { IL2CPP_LEAVE(0x3A, FINALLY_002c); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002c; } FINALLY_002c: { // begin finally (depth: 1) Enumerator_Dispose_m4DAC8A03E88979B42189D98D5E0A2A9979C995AE((Enumerator_tA6E798C632B7001D6834A42C0EC39DC6E8210935 *)(&V_0), /*hidden argument*/Enumerator_Dispose_m4DAC8A03E88979B42189D98D5E0A2A9979C995AE_RuntimeMethod_var); IL2CPP_END_FINALLY(44) } // end finally (depth: 1) IL2CPP_CLEANUP(44) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x3A, IL_003a) } IL_003a: { return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::ShutdownActiveQueue(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_ShutdownActiveQueue_m240528DFBDEABAF54E36697F89D6FA06321E12DE (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, int32_t ___queueOoO0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_mE11D6701697DD3496003C8E783A855A902B7C33A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * V_0 = NULL; int32_t V_1 = 0; { List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_0 = __this->get_queueOrderOfOperation_4(); int32_t L_1 = ___queueOoO0; NullCheck(L_0); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_2; L_2 = List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_RuntimeMethod_var); NullCheck(L_2); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_3 = L_2->get_queue_2(); V_0 = L_3; V_1 = 0; goto IL_007c; } IL_0016: { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_4 = V_0; int32_t L_5 = V_1; List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_6 = V_0; int32_t L_7 = V_1; NullCheck(L_6); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_8; L_8 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_6, L_7, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_9 = L_8.get_queueExpressionComponent_0(); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_10 = V_0; int32_t L_11 = V_1; NullCheck(L_10); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_12; L_12 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_10, L_11, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_13 = L_12.get_queueExpressionComponent_0(); RuntimeObject* L_14 = L_13.get_controller_0(); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_15 = V_0; int32_t L_16 = V_1; NullCheck(L_15); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_17; L_17 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_15, L_16, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_18 = L_17.get_queueExpressionComponent_0(); bool L_19 = L_18.get_isPersistent_6(); NullCheck(L_14); float L_20; L_20 = InterfaceFuncInvoker2< float, bool, bool >::Invoke(5 /* System.Single CrazyMinnow.SALSA.IExpressionController::GetNewDelta(System.Boolean,System.Boolean) */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_14, (bool)0, L_19); bool L_21 = __this->get_ignoreScaledTime_15(); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); float L_22; L_22 = SalsaUtil_GetTime_m78C765D85FA03367E949348B2984576068E04547(L_21, /*hidden argument*/NULL); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_23 = V_0; int32_t L_24 = V_1; NullCheck(L_23); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_25; L_25 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_23, L_24, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_26 = L_25.get_queueExpressionComponent_0(); RuntimeObject* L_27 = L_26.get_controller_0(); NullCheck(L_27); int32_t L_28; L_28 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 CrazyMinnow.SALSA.IExpressionController::GetID() */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_27); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_29; memset((&L_29), 0, sizeof(L_29)); QueueData__ctor_mE61A60FB8F9B593A1DC705557CE0616F3E1FD1F6((&L_29), L_9, L_20, L_22, (bool)0, L_28, /*hidden argument*/NULL); NullCheck(L_4); List_1_set_Item_mE11D6701697DD3496003C8E783A855A902B7C33A(L_4, L_5, L_29, /*hidden argument*/List_1_set_Item_mE11D6701697DD3496003C8E783A855A902B7C33A_RuntimeMethod_var); int32_t L_30 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1)); } IL_007c: { int32_t L_31 = V_1; List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_32 = V_0; NullCheck(L_32); int32_t L_33; L_33 = List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_inline(L_32, /*hidden argument*/List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_RuntimeMethod_var); if ((((int32_t)L_31) < ((int32_t)L_33))) { goto IL_0016; } } { return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::Register(CrazyMinnow.SALSA.ExpressionComponent,System.Boolean,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_Register_m081FE8ACE20CE9648A1BB1D8E8901FDD592E9761 (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___expressionComponent0, bool ___isActivating1, float ___frac2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 V_0; memset((&V_0), 0, sizeof(V_0)); { ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_0 = ___expressionComponent0; ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_1 = ___expressionComponent0; NullCheck(L_1); RuntimeObject* L_2 = L_1->get_controller_1(); bool L_3 = ___isActivating1; ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_4 = ___expressionComponent0; NullCheck(L_4); bool L_5 = L_4->get_isPersistent_11(); NullCheck(L_2); float L_6; L_6 = InterfaceFuncInvoker2< float, bool, bool >::Invoke(5 /* System.Single CrazyMinnow.SALSA.IExpressionController::GetNewDelta(System.Boolean,System.Boolean) */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_2, L_3, L_5); bool L_7 = __this->get_ignoreScaledTime_15(); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); float L_8; L_8 = SalsaUtil_GetTime_m78C765D85FA03367E949348B2984576068E04547(L_7, /*hidden argument*/NULL); bool L_9 = ___isActivating1; ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_10 = ___expressionComponent0; NullCheck(L_10); RuntimeObject* L_11 = L_10->get_controller_1(); NullCheck(L_11); int32_t L_12; L_12 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 CrazyMinnow.SALSA.IExpressionController::GetID() */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_11); QueueData__ctor_m869788F7850F5E9FA956C53E4F21FFB656011ACE((QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 *)(&V_0), L_0, L_6, L_8, L_9, L_12, /*hidden argument*/NULL); float L_13 = ___frac2; if ((!(((float)L_13) < ((float)(1.0f))))) { goto IL_004a; } } { QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_14 = V_0; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_15 = L_14.get_queueExpressionComponent_0(); RuntimeObject* L_16 = L_15.get_controller_0(); float L_17 = ___frac2; NullCheck(L_16); InterfaceActionInvoker1< float >::Invoke(8 /* System.Void CrazyMinnow.SALSA.IExpressionController::SetFrac(System.Single) */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_16, L_17); } IL_004a: { QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_18 = V_0; QueueProcessor_ConfirmRegistration_mE5DC64971DA64E094A929224F14F6859050D9A08(__this, L_18, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::Register(CrazyMinnow.SALSA.IExpressionController,CrazyMinnow.SALSA.ExpressionComponent/ControlType,System.Single,System.Single,System.Single,System.Boolean,CrazyMinnow.SALSA.ExpressionComponent/ExpressionType,CrazyMinnow.SALSA.LerpEasings/EasingType,CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler,System.Boolean,System.Boolean,System.Boolean,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_Register_mC982EAFA114261C912F7D4E972BA007FCB7F0E8D (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, RuntimeObject* ___controller0, int32_t ___controlType1, float ___durOn2, float ___durHold3, float ___durOff4, bool ___persistence5, int32_t ___type6, int32_t ___easing7, int32_t ___handler8, bool ___animatorControlled9, bool ___useOffset10, bool ___isActivating11, float ___frac12, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___controller0; int32_t L_1 = ___controlType1; float L_2 = ___durOn2; float L_3 = ___durHold3; float L_4 = ___durOff4; bool L_5 = ___persistence5; int32_t L_6 = ___type6; int32_t L_7 = ___easing7; int32_t L_8 = ___handler8; bool L_9 = ___animatorControlled9; bool L_10 = ___useOffset10; bool L_11 = ___isActivating11; float L_12 = ___frac12; QueueProcessor_Register_m5F2F5571F5A7F76DAAA220324254F13FB4C56D9A(__this, L_0, L_1, (0.0f), L_2, L_3, L_4, L_5, L_6, L_7, L_8, L_9, L_10, L_11, L_12, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::Register(CrazyMinnow.SALSA.IExpressionController,CrazyMinnow.SALSA.ExpressionComponent/ControlType,System.Single,System.Single,System.Single,System.Single,System.Boolean,CrazyMinnow.SALSA.ExpressionComponent/ExpressionType,CrazyMinnow.SALSA.LerpEasings/EasingType,CrazyMinnow.SALSA.ExpressionComponent/ExpressionHandler,System.Boolean,System.Boolean,System.Boolean,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_Register_m5F2F5571F5A7F76DAAA220324254F13FB4C56D9A (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, RuntimeObject* ___controller0, int32_t ___controlType1, float ___durDelay2, float ___durOn3, float ___durHold4, float ___durOff5, bool ___persistence6, int32_t ___type7, int32_t ___easing8, int32_t ___handler9, bool ___animatorControlled10, bool ___useOffset11, bool ___isActivating12, float ___frac13, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeObject* L_0 = ___controller0; int32_t L_1 = ___controlType1; float L_2 = ___durDelay2; float L_3 = ___durOn3; float L_4 = ___durHold4; float L_5 = ___durOff5; bool L_6 = ___persistence6; int32_t L_7 = ___type7; int32_t L_8 = ___easing8; int32_t L_9 = ___handler9; bool L_10 = ___animatorControlled10; bool L_11 = ___useOffset11; RuntimeObject* L_12 = ___controller0; bool L_13 = ___isActivating12; bool L_14 = ___persistence6; NullCheck(L_12); float L_15; L_15 = InterfaceFuncInvoker2< float, bool, bool >::Invoke(5 /* System.Single CrazyMinnow.SALSA.IExpressionController::GetNewDelta(System.Boolean,System.Boolean) */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_12, L_13, L_14); bool L_16 = __this->get_ignoreScaledTime_15(); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); float L_17; L_17 = SalsaUtil_GetTime_m78C765D85FA03367E949348B2984576068E04547(L_16, /*hidden argument*/NULL); bool L_18 = ___isActivating12; RuntimeObject* L_19 = ___controller0; NullCheck(L_19); int32_t L_20; L_20 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 CrazyMinnow.SALSA.IExpressionController::GetID() */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_19); QueueData__ctor_mBB7166CCFC77FD77222B1C14605C3F0B42311589((QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 *)(&V_0), L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, L_8, L_9, L_10, L_11, L_15, L_17, L_18, L_20, /*hidden argument*/NULL); float L_21 = ___frac13; if ((!(((float)L_21) < ((float)(1.0f))))) { goto IL_0054; } } { QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_22 = V_0; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_23 = L_22.get_queueExpressionComponent_0(); RuntimeObject* L_24 = L_23.get_controller_0(); float L_25 = ___frac13; NullCheck(L_24); InterfaceActionInvoker1< float >::Invoke(8 /* System.Void CrazyMinnow.SALSA.IExpressionController::SetFrac(System.Single) */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_24, L_25); } IL_0054: { QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_26 = V_0; QueueProcessor_ConfirmRegistration_mE5DC64971DA64E094A929224F14F6859050D9A08(__this, L_26, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::ConfirmRegistration(CrazyMinnow.SALSA.QueueData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_ConfirmRegistration_mE5DC64971DA64E094A929224F14F6859050D9A08 (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 ___queueData0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m2721B332C7315B8590D01121005560C8A4824279_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_m263EB6C52C97405E419D9C2C54C18C15AD02C391_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEquatable_1_t73DD506D14A80DF66BADEC3E87E58ADBB01AE680_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m64795E72997A23871C5C2AA968B296E02C2BA0D6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_mE11D6701697DD3496003C8E783A855A902B7C33A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * V_0 = NULL; int32_t V_1 = 0; { QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_0 = ___queueData0; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_1 = L_0.get_queueExpressionComponent_0(); int32_t L_2 = L_1.get_expressionType_7(); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_3; L_3 = QueueProcessor_GetRegistrationQueue_m1935CA0004E0CB38DFEC2E86CD53C730A11E9845(__this, L_2, /*hidden argument*/NULL); V_0 = L_3; V_1 = 0; goto IL_00c8; } IL_0019: { QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_4 = ___queueData0; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_5 = L_4.get_queueExpressionComponent_0(); int32_t L_6 = L_5.get_controlType_1(); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_7 = V_0; NullCheck(L_7); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_8 = L_7->get_queue_2(); int32_t L_9 = V_1; NullCheck(L_8); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_10; L_10 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_8, L_9, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_11 = L_10.get_queueExpressionComponent_0(); int32_t L_12 = L_11.get_controlType_1(); if ((!(((uint32_t)L_6) == ((uint32_t)L_12)))) { goto IL_00c4; } } { QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_13 = V_0; NullCheck(L_13); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_14 = L_13->get_queue_2(); int32_t L_15 = V_1; NullCheck(L_14); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_16; L_16 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_14, L_15, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_17 = L_16.get_queueExpressionComponent_0(); RuntimeObject* L_18 = L_17.get_controller_0(); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_19 = ___queueData0; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_20 = L_19.get_queueExpressionComponent_0(); RuntimeObject* L_21 = L_20.get_controller_0(); NullCheck(L_18); bool L_22; L_22 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.IEquatable`1::Equals(!0) */, IEquatable_1_t73DD506D14A80DF66BADEC3E87E58ADBB01AE680_il2cpp_TypeInfo_var, L_18, L_21); if (!L_22) { goto IL_00c4; } } { QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_23 = ___queueData0; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_24 = L_23.get_queueExpressionComponent_0(); int32_t L_25 = L_24.get_controlType_1(); if ((!(((uint32_t)L_25) == ((uint32_t)1)))) { goto IL_00b6; } } { QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_26 = ___queueData0; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_27 = L_26.get_queueExpressionComponent_0(); int32_t L_28 = L_27.get_expressionType_7(); if ((!(((uint32_t)L_28) == ((uint32_t)1)))) { goto IL_00b6; } } { QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_29 = ___queueData0; bool L_30 = L_29.get_isActivating_3(); if (!L_30) { goto IL_00b6; } } { QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_31 = ___queueData0; QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_32 = L_31.get_queueExpressionComponent_0(); RuntimeObject* L_33 = L_32.get_controller_0(); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_34 = V_0; NullCheck(L_34); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_35 = L_34->get_queue_2(); int32_t L_36 = V_1; NullCheck(L_35); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_37; L_37 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_35, L_36, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_38 = L_37.get_queueExpressionComponent_0(); RuntimeObject* L_39 = L_38.get_controller_0(); NullCheck(L_39); ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 L_40; L_40 = InterfaceFuncInvoker0< ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 >::Invoke(6 /* CrazyMinnow.SALSA.ControllerData CrazyMinnow.SALSA.IExpressionController::GetPreviousDeltaData() */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_39); NullCheck(L_33); InterfaceActionInvoker1< ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 >::Invoke(7 /* System.Void CrazyMinnow.SALSA.IExpressionController::SetPreviousDeltaData(CrazyMinnow.SALSA.ControllerData) */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_33, L_40); } IL_00b6: { QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_41 = V_0; NullCheck(L_41); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_42 = L_41->get_queue_2(); int32_t L_43 = V_1; QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_44 = ___queueData0; NullCheck(L_42); List_1_set_Item_mE11D6701697DD3496003C8E783A855A902B7C33A(L_42, L_43, L_44, /*hidden argument*/List_1_set_Item_mE11D6701697DD3496003C8E783A855A902B7C33A_RuntimeMethod_var); return; } IL_00c4: { int32_t L_45 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1)); } IL_00c8: { int32_t L_46 = V_1; QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_47 = V_0; NullCheck(L_47); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_48 = L_47->get_queue_2(); NullCheck(L_48); int32_t L_49; L_49 = List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_inline(L_48, /*hidden argument*/List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_RuntimeMethod_var); if ((((int32_t)L_46) < ((int32_t)L_49))) { goto IL_0019; } } { QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_50 = V_0; NullCheck(L_50); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_51 = L_50->get_queue_2(); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_52 = ___queueData0; NullCheck(L_51); List_1_Add_m64795E72997A23871C5C2AA968B296E02C2BA0D6(L_51, L_52, /*hidden argument*/List_1_Add_m64795E72997A23871C5C2AA968B296E02C2BA0D6_RuntimeMethod_var); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_53 = __this->get_lastWriteHierarchyDictionary_6(); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_54 = ___queueData0; int32_t L_55 = L_54.get_itemID_4(); NullCheck(L_53); bool L_56; L_56 = Dictionary_2_ContainsKey_m263EB6C52C97405E419D9C2C54C18C15AD02C391(L_53, L_55, /*hidden argument*/Dictionary_2_ContainsKey_m263EB6C52C97405E419D9C2C54C18C15AD02C391_RuntimeMethod_var); if (L_56) { goto IL_010f; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_57 = __this->get_lastWriteHierarchyDictionary_6(); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_58 = ___queueData0; int32_t L_59 = L_58.get_itemID_4(); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_60 = V_0; NullCheck(L_60); int32_t L_61 = L_60->get_hierarchyLevel_1(); NullCheck(L_57); Dictionary_2_Add_m2721B332C7315B8590D01121005560C8A4824279(L_57, L_59, L_61, /*hidden argument*/Dictionary_2_Add_m2721B332C7315B8590D01121005560C8A4824279_RuntimeMethod_var); } IL_010f: { return; } } // CrazyMinnow.SALSA.QueueProcessor/QueueOoO CrazyMinnow.SALSA.QueueProcessor::GetRegistrationQueue(CrazyMinnow.SALSA.ExpressionComponent/ExpressionType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * QueueProcessor_GetRegistrationQueue_m1935CA0004E0CB38DFEC2E86CD53C730A11E9845 (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, int32_t ___expressionType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_isQueueOrderOfOperationInitialized_5(); if (L_0) { goto IL_000e; } } { QueueProcessor_InitializeQueueOrderOfOperation_m0B54061E1D2D33F2DF481BADA4A18C15EE6EB7EF(__this, /*hidden argument*/NULL); } IL_000e: { int32_t L_1 = ___expressionType0; switch (L_1) { case 0: { goto IL_0062; } case 1: { goto IL_0055; } case 2: { goto IL_002e; } case 3: { goto IL_003b; } case 4: { goto IL_0048; } case 5: { goto IL_006f; } } } { goto IL_006f; } IL_002e: { List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_2 = __this->get_queueOrderOfOperation_4(); NullCheck(L_2); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_3; L_3 = List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_inline(L_2, 0, /*hidden argument*/List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_RuntimeMethod_var); return L_3; } IL_003b: { List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_4 = __this->get_queueOrderOfOperation_4(); NullCheck(L_4); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_5; L_5 = List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_inline(L_4, 1, /*hidden argument*/List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_RuntimeMethod_var); return L_5; } IL_0048: { List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_6 = __this->get_queueOrderOfOperation_4(); NullCheck(L_6); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_7; L_7 = List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_inline(L_6, 2, /*hidden argument*/List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_RuntimeMethod_var); return L_7; } IL_0055: { List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_8 = __this->get_queueOrderOfOperation_4(); NullCheck(L_8); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_9; L_9 = List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_inline(L_8, 3, /*hidden argument*/List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_RuntimeMethod_var); return L_9; } IL_0062: { List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_10 = __this->get_queueOrderOfOperation_4(); NullCheck(L_10); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_11; L_11 = List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_inline(L_10, 4, /*hidden argument*/List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_RuntimeMethod_var); return L_11; } IL_006f: { List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_12 = __this->get_queueOrderOfOperation_4(); NullCheck(L_12); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_13; L_13 = List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_inline(L_12, 5, /*hidden argument*/List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_RuntimeMethod_var); return L_13; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::PlayQueueInEditor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_PlayQueueInEditor_m6C32CC127B8D1BC29B1022890D21972DE84B2F23 (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, const RuntimeMethod* method) { { QueueProcessor_LateUpdate_mA0A29E1E453C9BC2B142ED237211910590275BAC(__this, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::LateUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_LateUpdate_mA0A29E1E453C9BC2B142ED237211910590275BAC (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9722D429C1D6FBF4E4F763847E80CB50BD83975F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { V_0 = 0; goto IL_0020; } IL_0004: { List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_0 = __this->get_queueOrderOfOperation_4(); int32_t L_1 = V_0; NullCheck(L_0); QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * L_2; L_2 = List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_mFF2FA23386F7961ACD9BBA40C6C198DB9559C7BB_RuntimeMethod_var); NullCheck(L_2); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_3 = L_2->get_queue_2(); int32_t L_4 = V_0; QueueProcessor_ProcessQueue_mC6258813D82C24379B012F75321B620F570982BA(__this, L_3, L_4, /*hidden argument*/NULL); int32_t L_5 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); } IL_0020: { int32_t L_6 = V_0; List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_7 = __this->get_queueOrderOfOperation_4(); NullCheck(L_7); int32_t L_8; L_8 = List_1_get_Count_m9722D429C1D6FBF4E4F763847E80CB50BD83975F_inline(L_7, /*hidden argument*/List_1_get_Count_m9722D429C1D6FBF4E4F763847E80CB50BD83975F_RuntimeMethod_var); if ((((int32_t)L_6) < ((int32_t)L_8))) { goto IL_0004; } } { return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::ProcessQueue(System.Collections.Generic.List`1,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor_ProcessQueue_mC6258813D82C24379B012F75321B620F570982BA (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * ___queue0, int32_t ___hierarchyLevel1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mFFEEBA09EA430B994459C2D86ADEE218592742A1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mD72184D856B7E64CF626DE131ACA0A6F651874C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m52FA58EE86E30E940C623B4BBD0F67D7EE27E27A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_mE11D6701697DD3496003C8E783A855A902B7C33A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; float V_1 = 0.0f; float V_2 = 0.0f; float V_3 = 0.0f; float V_4 = 0.0f; float V_5 = 0.0f; float V_6 = 0.0f; float V_7 = 0.0f; bool V_8 = false; bool V_9 = false; float V_10 = 0.0f; float G_B8_0 = 0.0f; float G_B11_0 = 0.0f; float G_B14_0 = 0.0f; int32_t G_B25_0 = 0; int32_t G_B32_0 = 0; { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_0 = ___queue0; NullCheck(L_0); int32_t L_1; L_1 = List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_inline(L_0, /*hidden argument*/List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_RuntimeMethod_var); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); goto IL_03ac; } IL_000e: { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_2 = ___queue0; int32_t L_3 = V_0; NullCheck(L_2); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_4; L_4 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_2, L_3, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_5 = L_4.get_queueExpressionComponent_0(); RuntimeObject* L_6 = L_5.get_controller_0(); NullCheck(L_6); bool L_7; L_7 = InterfaceFuncInvoker0< bool >::Invoke(12 /* System.Boolean CrazyMinnow.SALSA.IExpressionController::HasInvalidController() */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_6); if (!L_7) { goto IL_0032; } } { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_8 = ___queue0; int32_t L_9 = V_0; NullCheck(L_8); List_1_RemoveAt_m52FA58EE86E30E940C623B4BBD0F67D7EE27E27A(L_8, L_9, /*hidden argument*/List_1_RemoveAt_m52FA58EE86E30E940C623B4BBD0F67D7EE27E27A_RuntimeMethod_var); goto IL_03a8; } IL_0032: { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_10 = ___queue0; int32_t L_11 = V_0; NullCheck(L_10); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_12; L_12 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_10, L_11, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); bool L_13 = L_12.get_isActivating_3(); if (!L_13) { goto IL_006e; } } { bool L_14 = __this->get_ignoreScaledTime_15(); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); float L_15; L_15 = SalsaUtil_GetTime_m78C765D85FA03367E949348B2984576068E04547(L_14, /*hidden argument*/NULL); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_16 = ___queue0; int32_t L_17 = V_0; NullCheck(L_16); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_18; L_18 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_16, L_17, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); float L_19 = L_18.get_startTime_2(); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_20 = ___queue0; int32_t L_21 = V_0; NullCheck(L_20); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_22; L_22 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_20, L_21, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_23 = L_22.get_queueExpressionComponent_0(); float L_24 = L_23.get_durationDelay_2(); if ((((float)((float)il2cpp_codegen_subtract((float)L_15, (float)L_19))) < ((float)L_24))) { goto IL_03a8; } } IL_006e: { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_25 = ___queue0; int32_t L_26 = V_0; NullCheck(L_25); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_27; L_27 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_25, L_26, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); bool L_28 = L_27.get_isActivating_3(); if (L_28) { goto IL_0083; } } { G_B8_0 = (0.0f); goto IL_0094; } IL_0083: { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_29 = ___queue0; int32_t L_30 = V_0; NullCheck(L_29); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_31; L_31 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_29, L_30, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_32 = L_31.get_queueExpressionComponent_0(); float L_33 = L_32.get_durationDelay_2(); G_B8_0 = L_33; } IL_0094: { V_1 = G_B8_0; bool L_34 = __this->get_ignoreScaledTime_15(); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); float L_35; L_35 = SalsaUtil_GetTime_m78C765D85FA03367E949348B2984576068E04547(L_34, /*hidden argument*/NULL); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_36 = ___queue0; int32_t L_37 = V_0; NullCheck(L_36); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_38; L_38 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_36, L_37, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); float L_39 = L_38.get_startTime_2(); float L_40 = V_1; V_2 = ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_subtract((float)L_35, (float)L_39)), (float)L_40)); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_41 = ___queue0; int32_t L_42 = V_0; NullCheck(L_41); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_43; L_43 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_41, L_42, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_44 = L_43.get_queueExpressionComponent_0(); RuntimeObject* L_45 = L_44.get_controller_0(); NullCheck(L_45); float L_46; L_46 = InterfaceFuncInvoker0< float >::Invoke(10 /* System.Single CrazyMinnow.SALSA.IExpressionController::GetMaxExtent() */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_45); V_3 = L_46; List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_47 = ___queue0; int32_t L_48 = V_0; NullCheck(L_47); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_49; L_49 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_47, L_48, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_50 = L_49.get_queueExpressionComponent_0(); RuntimeObject* L_51 = L_50.get_controller_0(); NullCheck(L_51); float L_52; L_52 = InterfaceFuncInvoker0< float >::Invoke(9 /* System.Single CrazyMinnow.SALSA.IExpressionController::GetMinExtent() */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_51); V_4 = L_52; List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_53 = ___queue0; int32_t L_54 = V_0; NullCheck(L_53); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_55; L_55 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_53, L_54, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); bool L_56 = L_55.get_isActivating_3(); if (L_56) { goto IL_00f1; } } { float L_57 = V_4; G_B11_0 = L_57; goto IL_00f2; } IL_00f1: { float L_58 = V_3; G_B11_0 = L_58; } IL_00f2: { V_5 = G_B11_0; List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_59 = ___queue0; int32_t L_60 = V_0; NullCheck(L_59); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_61; L_61 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_59, L_60, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); bool L_62 = L_61.get_isActivating_3(); if (L_62) { goto IL_0115; } } { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_63 = ___queue0; int32_t L_64 = V_0; NullCheck(L_63); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_65; L_65 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_63, L_64, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_66 = L_65.get_queueExpressionComponent_0(); float L_67 = L_66.get_durationOff_5(); G_B14_0 = L_67; goto IL_0126; } IL_0115: { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_68 = ___queue0; int32_t L_69 = V_0; NullCheck(L_68); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_70; L_70 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_68, L_69, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_71 = L_70.get_queueExpressionComponent_0(); float L_72 = L_71.get_durationOn_3(); G_B14_0 = L_72; } IL_0126: { V_6 = G_B14_0; float L_73 = V_6; if ((!(((float)L_73) > ((float)(0.0f))))) { goto IL_01cf; } } { float L_74 = V_2; float L_75 = V_6; V_10 = ((float)((float)L_74/(float)L_75)); float L_76 = V_10; List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_77 = ___queue0; int32_t L_78 = V_0; NullCheck(L_77); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_79; L_79 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_77, L_78, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_80 = L_79.get_queueExpressionComponent_0(); int32_t L_81 = L_80.get_easing_8(); float L_82; L_82 = LerpEasings_Ease_m7A4498758814D0241A90F64213E1D12BFE4B8072(L_76, L_81, /*hidden argument*/NULL); V_10 = L_82; float L_83 = V_10; List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_84 = ___queue0; int32_t L_85 = V_0; NullCheck(L_84); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_86; L_86 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_84, L_85, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); float L_87 = L_86.get_lerpProgress_1(); float L_88 = V_5; IL2CPP_RUNTIME_CLASS_INIT(Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); float L_89; L_89 = fabsf(((float)il2cpp_codegen_subtract((float)L_87, (float)L_88))); V_10 = ((float)((float)L_83/(float)((float)((float)(1.0f)/(float)L_89)))); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_90 = ___queue0; int32_t L_91 = V_0; NullCheck(L_90); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_92; L_92 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_90, L_91, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); float L_93 = L_92.get_lerpProgress_1(); float L_94 = V_5; if ((!(((float)L_93) < ((float)L_94)))) { goto IL_01a9; } } { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_95 = ___queue0; int32_t L_96 = V_0; NullCheck(L_95); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_97; L_97 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_95, L_96, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); float L_98 = L_97.get_lerpProgress_1(); float L_99 = V_10; List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_100 = ___queue0; int32_t L_101 = V_0; NullCheck(L_100); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_102; L_102 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_100, L_101, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); float L_103 = L_102.get_lerpProgress_1(); float L_104 = V_5; float L_105; L_105 = Mathf_Clamp_m5EA831B060853D4246B8394A30599A0021F80AFF(((float)il2cpp_codegen_add((float)L_98, (float)L_99)), L_103, L_104, /*hidden argument*/NULL); V_7 = L_105; goto IL_01d3; } IL_01a9: { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_106 = ___queue0; int32_t L_107 = V_0; NullCheck(L_106); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_108; L_108 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_106, L_107, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); float L_109 = L_108.get_lerpProgress_1(); float L_110 = V_10; float L_111 = V_5; List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_112 = ___queue0; int32_t L_113 = V_0; NullCheck(L_112); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_114; L_114 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_112, L_113, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); float L_115 = L_114.get_lerpProgress_1(); float L_116; L_116 = Mathf_Clamp_m5EA831B060853D4246B8394A30599A0021F80AFF(((float)il2cpp_codegen_subtract((float)L_109, (float)L_110)), L_111, L_115, /*hidden argument*/NULL); V_7 = L_116; goto IL_01d3; } IL_01cf: { float L_117 = V_5; V_7 = L_117; } IL_01d3: { float L_118 = V_4; float L_119 = V_3; if ((!(((float)L_118) < ((float)L_119)))) { goto IL_01e6; } } { float L_120 = V_7; float L_121 = V_4; float L_122 = V_3; float L_123; L_123 = Mathf_Clamp_m5EA831B060853D4246B8394A30599A0021F80AFF(L_120, L_121, L_122, /*hidden argument*/NULL); V_7 = L_123; goto IL_01f2; } IL_01e6: { float L_124 = V_7; float L_125 = V_3; float L_126 = V_4; float L_127; L_127 = Mathf_Clamp_m5EA831B060853D4246B8394A30599A0021F80AFF(L_124, L_125, L_126, /*hidden argument*/NULL); V_7 = L_127; } IL_01f2: { bool L_128 = __this->get_useMergeWithInfluencer_14(); if (L_128) { goto IL_020d; } } { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_129 = ___queue0; int32_t L_130 = V_0; NullCheck(L_129); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_131; L_131 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_129, L_130, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_132 = L_131.get_queueExpressionComponent_0(); bool L_133 = L_132.get_isAnimatorControlled_10(); G_B25_0 = ((int32_t)(L_133)); goto IL_020e; } IL_020d: { G_B25_0 = 1; } IL_020e: { V_8 = (bool)G_B25_0; V_9 = (bool)0; bool L_134 = V_8; if (!L_134) { goto IL_0280; } } { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_135 = ___queue0; int32_t L_136 = V_0; NullCheck(L_135); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_137; L_137 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_135, L_136, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); bool L_138 = L_137.get_isActivating_3(); if (L_138) { goto IL_0280; } } { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_139 = ___queue0; int32_t L_140 = V_0; NullCheck(L_139); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_141; L_141 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_139, L_140, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_142 = L_141.get_queueExpressionComponent_0(); bool L_143 = L_142.get_isPersistent_6(); if (L_143) { goto IL_0280; } } { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_144 = ___queue0; int32_t L_145 = V_0; NullCheck(L_144); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_146; L_146 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_144, L_145, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_147 = L_146.get_queueExpressionComponent_0(); bool L_148 = L_147.get_isAnimatorControlled_10(); if (L_148) { goto IL_027d; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_149 = __this->get_lastWriteHierarchyDictionary_6(); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_150 = ___queue0; int32_t L_151 = V_0; NullCheck(L_150); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_152; L_152 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_150, L_151, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); int32_t L_153 = L_152.get_itemID_4(); NullCheck(L_149); int32_t L_154; L_154 = Dictionary_2_get_Item_mFFEEBA09EA430B994459C2D86ADEE218592742A1(L_149, L_153, /*hidden argument*/Dictionary_2_get_Item_mFFEEBA09EA430B994459C2D86ADEE218592742A1_RuntimeMethod_var); int32_t L_155 = ___hierarchyLevel1; if ((((int32_t)L_154) < ((int32_t)L_155))) { goto IL_027d; } } { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_156 = ___queue0; int32_t L_157 = V_0; NullCheck(L_156); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_158; L_158 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_156, L_157, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_159 = L_158.get_queueExpressionComponent_0(); RuntimeObject* L_160 = L_159.get_controller_0(); NullCheck(L_160); bool L_161; L_161 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean CrazyMinnow.SALSA.IExpressionController::HasDirtyInfluence() */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_160); G_B32_0 = ((int32_t)(L_161)); goto IL_027e; } IL_027d: { G_B32_0 = 1; } IL_027e: { V_9 = (bool)G_B32_0; } IL_0280: { bool L_162 = V_9; if (!L_162) { goto IL_02a0; } } { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_163 = ___queue0; int32_t L_164 = V_0; NullCheck(L_163); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_165; L_165 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_163, L_164, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_166 = L_165.get_queueExpressionComponent_0(); RuntimeObject* L_167 = L_166.get_controller_0(); bool L_168 = V_9; float L_169 = V_7; NullCheck(L_167); InterfaceActionInvoker2< bool, float >::Invoke(2 /* System.Void CrazyMinnow.SALSA.IExpressionController::ProcessInfluence(System.Boolean,System.Single) */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_167, L_168, L_169); goto IL_02c4; } IL_02a0: { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_170 = ___queue0; int32_t L_171 = V_0; NullCheck(L_170); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_172; L_172 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_170, L_171, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_173 = L_172.get_queueExpressionComponent_0(); RuntimeObject* L_174 = L_173.get_controller_0(); float L_175 = V_7; List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_176 = ___queue0; int32_t L_177 = V_0; NullCheck(L_176); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_178; L_178 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_176, L_177, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); bool L_179 = L_178.get_isActivating_3(); NullCheck(L_174); InterfaceActionInvoker2< float, bool >::Invoke(1 /* System.Void CrazyMinnow.SALSA.IExpressionController::SetLerp(System.Single,System.Boolean) */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_174, L_175, L_179); } IL_02c4: { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_180 = __this->get_lastWriteHierarchyDictionary_6(); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_181 = ___queue0; int32_t L_182 = V_0; NullCheck(L_181); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_183; L_183 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_181, L_182, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); int32_t L_184 = L_183.get_itemID_4(); int32_t L_185 = ___hierarchyLevel1; NullCheck(L_180); Dictionary_2_set_Item_mD72184D856B7E64CF626DE131ACA0A6F651874C1(L_180, L_184, L_185, /*hidden argument*/Dictionary_2_set_Item_mD72184D856B7E64CF626DE131ACA0A6F651874C1_RuntimeMethod_var); float L_186 = V_2; float L_187 = V_6; if ((((float)L_186) >= ((float)L_187))) { goto IL_02ef; } } { float L_188 = V_7; float L_189 = V_5; bool L_190; L_190 = Mathf_Approximately_mFEB0CB3531393F6CBE07C6E0FCB473B3311F799A(L_188, L_189, /*hidden argument*/NULL); if (!L_190) { goto IL_03a8; } } IL_02ef: { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_191 = ___queue0; int32_t L_192 = V_0; NullCheck(L_191); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_193; L_193 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_191, L_192, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_194 = L_193.get_queueExpressionComponent_0(); int32_t L_195 = L_194.get_expressionHandler_9(); if (!L_195) { goto IL_0310; } } { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_196 = ___queue0; int32_t L_197 = V_0; NullCheck(L_196); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_198; L_198 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_196, L_197, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); bool L_199 = L_198.get_isActivating_3(); if (L_199) { goto IL_032f; } } IL_0310: { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_200 = ___queue0; int32_t L_201 = V_0; NullCheck(L_200); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_202; L_202 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_200, L_201, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_203 = L_202.get_queueExpressionComponent_0(); bool L_204 = L_203.get_isPersistent_6(); if (L_204) { goto IL_03a8; } } { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_205 = ___queue0; int32_t L_206 = V_0; NullCheck(L_205); List_1_RemoveAt_m52FA58EE86E30E940C623B4BBD0F67D7EE27E27A(L_205, L_206, /*hidden argument*/List_1_RemoveAt_m52FA58EE86E30E940C623B4BBD0F67D7EE27E27A_RuntimeMethod_var); goto IL_03a8; } IL_032f: { float L_207 = V_2; float L_208 = V_6; List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_209 = ___queue0; int32_t L_210 = V_0; NullCheck(L_209); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_211; L_211 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_209, L_210, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_212 = L_211.get_queueExpressionComponent_0(); float L_213 = L_212.get_durationHold_4(); if ((!(((float)L_207) > ((float)((float)il2cpp_codegen_add((float)L_208, (float)L_213)))))) { goto IL_03a8; } } { List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_214 = ___queue0; int32_t L_215 = V_0; List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_216 = ___queue0; int32_t L_217 = V_0; NullCheck(L_216); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_218; L_218 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_216, L_217, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_219 = L_218.get_queueExpressionComponent_0(); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_220 = ___queue0; int32_t L_221 = V_0; NullCheck(L_220); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_222; L_222 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_220, L_221, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_223 = L_222.get_queueExpressionComponent_0(); RuntimeObject* L_224 = L_223.get_controller_0(); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_225 = ___queue0; int32_t L_226 = V_0; NullCheck(L_225); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_227; L_227 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_225, L_226, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_228 = L_227.get_queueExpressionComponent_0(); bool L_229 = L_228.get_isPersistent_6(); NullCheck(L_224); float L_230; L_230 = InterfaceFuncInvoker2< float, bool, bool >::Invoke(5 /* System.Single CrazyMinnow.SALSA.IExpressionController::GetNewDelta(System.Boolean,System.Boolean) */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_224, (bool)0, L_229); bool L_231 = __this->get_ignoreScaledTime_15(); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); float L_232; L_232 = SalsaUtil_GetTime_m78C765D85FA03367E949348B2984576068E04547(L_231, /*hidden argument*/NULL); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_233 = ___queue0; int32_t L_234 = V_0; NullCheck(L_233); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_235; L_235 = List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_inline(L_233, L_234, /*hidden argument*/List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_RuntimeMethod_var); QueueExpressionComponent_tC7718AE4502BCBF3E2697785D1F6CCBD33DB4376 L_236 = L_235.get_queueExpressionComponent_0(); RuntimeObject* L_237 = L_236.get_controller_0(); NullCheck(L_237); int32_t L_238; L_238 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 CrazyMinnow.SALSA.IExpressionController::GetID() */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_237); QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_239; memset((&L_239), 0, sizeof(L_239)); QueueData__ctor_mE61A60FB8F9B593A1DC705557CE0616F3E1FD1F6((&L_239), L_219, L_230, L_232, (bool)0, L_238, /*hidden argument*/NULL); NullCheck(L_214); List_1_set_Item_mE11D6701697DD3496003C8E783A855A902B7C33A(L_214, L_215, L_239, /*hidden argument*/List_1_set_Item_mE11D6701697DD3496003C8E783A855A902B7C33A_RuntimeMethod_var); } IL_03a8: { int32_t L_240 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_240, (int32_t)1)); } IL_03ac: { int32_t L_241 = V_0; if ((((int32_t)L_241) >= ((int32_t)0))) { goto IL_000e; } } { return; } } // System.Void CrazyMinnow.SALSA.QueueProcessor::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessor__ctor_m98D9DEFA87E636FE6166A7632F0D9E4FB4A9204A (QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mE4D6F6FA5A737865159110CFFF4034001E7F75C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m513073B395DCDCF9B4A013BC3CD2FA2EC9DC2BF3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 * L_0 = (List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9 *)il2cpp_codegen_object_new(List_1_tF6DB50B5EBC33F3D97476F795416D3C138C77FA9_il2cpp_TypeInfo_var); List_1__ctor_m513073B395DCDCF9B4A013BC3CD2FA2EC9DC2BF3(L_0, /*hidden argument*/List_1__ctor_m513073B395DCDCF9B4A013BC3CD2FA2EC9DC2BF3_RuntimeMethod_var); __this->set_queueOrderOfOperation_4(L_0); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)il2cpp_codegen_object_new(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08_il2cpp_TypeInfo_var); Dictionary_2__ctor_mE4D6F6FA5A737865159110CFFF4034001E7F75C1(L_1, /*hidden argument*/Dictionary_2__ctor_mE4D6F6FA5A737865159110CFFF4034001E7F75C1_RuntimeMethod_var); __this->set_lastWriteHierarchyDictionary_6(L_1); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_2 = (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *)il2cpp_codegen_object_new(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD_il2cpp_TypeInfo_var); List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6(L_2, /*hidden argument*/List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6_RuntimeMethod_var); __this->set_baseQueue_7(L_2); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_3 = (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *)il2cpp_codegen_object_new(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD_il2cpp_TypeInfo_var); List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6(L_3, /*hidden argument*/List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6_RuntimeMethod_var); __this->set_priorityQueueHeads_8(L_3); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_4 = (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *)il2cpp_codegen_object_new(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD_il2cpp_TypeInfo_var); List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6(L_4, /*hidden argument*/List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6_RuntimeMethod_var); __this->set_priorityQueueEyes_9(L_4); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_5 = (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *)il2cpp_codegen_object_new(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD_il2cpp_TypeInfo_var); List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6(L_5, /*hidden argument*/List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6_RuntimeMethod_var); __this->set_priorityQueueLids_10(L_5); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_6 = (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *)il2cpp_codegen_object_new(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD_il2cpp_TypeInfo_var); List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6(L_6, /*hidden argument*/List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6_RuntimeMethod_var); __this->set_priorityQueueEmotes_11(L_6); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_7 = (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *)il2cpp_codegen_object_new(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD_il2cpp_TypeInfo_var); List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6(L_7, /*hidden argument*/List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6_RuntimeMethod_var); __this->set_priorityQueueLipsync_12(L_7); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_8 = (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD *)il2cpp_codegen_object_new(List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD_il2cpp_TypeInfo_var); List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6(L_8, /*hidden argument*/List_1__ctor_m9DE5AB3F53CD107264A7B9E730919E08B7CC2CE6_RuntimeMethod_var); __this->set_priorityQueueBlinks_13(L_8); __this->set_useMergeWithInfluencer_14((bool)1); __this->set_inspHeight_18((150.0f)); __this->set_inspShowHeads_19((bool)1); __this->set_inspShowEmote_20((bool)1); __this->set_inspShowEyes_21((bool)1); __this->set_inspShowLids_22((bool)1); __this->set_inspShowLipsync_23((bool)1); __this->set_inspShowBlinks_24((bool)1); MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__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 CrazyMinnow.SALSA.RuntimeController::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeController__ctor_m34E0456F6CC0B1FDF5E3284FDFA509C5FE8043FF (RuntimeController_t1FA3996BCC7D2421B80767235C074F882122C037 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mF1988BCA8453A6F7C9CADC31952D30BA7A4BCBD1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t35E2F3636689C080F259AD3469423EB15A85AF38_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); List_1_t35E2F3636689C080F259AD3469423EB15A85AF38 * L_0 = (List_1_t35E2F3636689C080F259AD3469423EB15A85AF38 *)il2cpp_codegen_object_new(List_1_t35E2F3636689C080F259AD3469423EB15A85AF38_il2cpp_TypeInfo_var); List_1__ctor_mF1988BCA8453A6F7C9CADC31952D30BA7A4BCBD1(L_0, /*hidden argument*/List_1__ctor_mF1988BCA8453A6F7C9CADC31952D30BA7A4BCBD1_RuntimeMethod_var); __this->set_controllers_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.Single CrazyMinnow.SALSA.Salsa::get_CachedAnalysisValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Salsa_get_CachedAnalysisValue_mCFA56E72A407395A6ABD7F8DBA3B7A78D46200F7 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { float L_0 = __this->get_cachedAnalysisValue_12(); return L_0; } } // System.Boolean CrazyMinnow.SALSA.Salsa::get_QueueProcessorScaledTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Salsa_get_QueueProcessorScaledTime_mBFE42A125987BCDAF74D281D1335134AFB405644 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __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; } { QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * L_0 = __this->get_queueProcessor_8(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (L_1) { goto IL_001a; } } { QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * L_2 = __this->get_queueProcessor_8(); NullCheck(L_2); bool L_3 = L_2->get_ignoreScaledTime_15(); return L_3; } IL_001a: { return (bool)0; } } // System.Boolean CrazyMinnow.SALSA.Salsa::get_IsSALSAing() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Salsa_get_IsSALSAing_m08BB419CAD1A1852094610902B2A112DF2647F29 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { float L_0 = __this->get_cachedAnalysisValue_12(); if ((((float)L_0) > ((float)(0.0f)))) { goto IL_001c; } } { int32_t L_1 = __this->get_silencePulseCount_24(); int32_t L_2 = __this->get_silencePulseThreshold_23(); return (bool)((((int32_t)L_1) < ((int32_t)L_2))? 1 : 0); } IL_001c: { return (bool)1; } } // System.Int32 CrazyMinnow.SALSA.Salsa::get_TriggeredIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Salsa_get_TriggeredIndex_m5F6A4E11FA84288C6833C7B478E3C665EE6D1609 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_prevTriggeredIndex_48(); return L_0; } } // System.Void CrazyMinnow.SALSA.Salsa::add_StartedSalsaing(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_add_StartedSalsaing_mD7025F8D21B3C48708421E81AFFE1209E60D9849 (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_0 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_1 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_2 = NULL; { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_0 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_StartedSalsaing_76(); V_0 = L_0; } IL_0006: { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_1 = V_0; V_1 = L_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_2 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_3 = ___value0; Delegate_t * L_4; L_4 = Delegate_Combine_mD9F4B83868AFAD9BF9F7DC4E3974B8C881092B31(L_2, L_3, /*hidden argument*/NULL); V_2 = ((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var)); EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_5 = V_2; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_6 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_7; L_7 = InterlockedCompareExchangeImpl((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 **)(((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_address_of_StartedSalsaing_76()), L_5, L_6); V_0 = L_7; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_8 = V_0; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_9 = V_1; if ((!(((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_8) == ((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_9)))) { goto IL_0006; } } { return; } } // System.Void CrazyMinnow.SALSA.Salsa::remove_StartedSalsaing(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_remove_StartedSalsaing_m79C5DD154CADC55723B88289B9D946DAC5625036 (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_0 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_1 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_2 = NULL; { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_0 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_StartedSalsaing_76(); V_0 = L_0; } IL_0006: { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_1 = V_0; V_1 = L_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_2 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_3 = ___value0; Delegate_t * L_4; L_4 = Delegate_Remove_mD84132DA8A72A81B1CDC5620B52E0E043D7FF0BF(L_2, L_3, /*hidden argument*/NULL); V_2 = ((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var)); EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_5 = V_2; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_6 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_7; L_7 = InterlockedCompareExchangeImpl((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 **)(((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_address_of_StartedSalsaing_76()), L_5, L_6); V_0 = L_7; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_8 = V_0; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_9 = V_1; if ((!(((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_8) == ((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_9)))) { goto IL_0006; } } { return; } } // System.Void CrazyMinnow.SALSA.Salsa::add_StoppedSalsaing(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_add_StoppedSalsaing_m1E93D8B85FC86B0B9BC97B1F2A44DC0ECF203992 (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_0 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_1 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_2 = NULL; { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_0 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_StoppedSalsaing_77(); V_0 = L_0; } IL_0006: { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_1 = V_0; V_1 = L_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_2 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_3 = ___value0; Delegate_t * L_4; L_4 = Delegate_Combine_mD9F4B83868AFAD9BF9F7DC4E3974B8C881092B31(L_2, L_3, /*hidden argument*/NULL); V_2 = ((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var)); EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_5 = V_2; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_6 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_7; L_7 = InterlockedCompareExchangeImpl((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 **)(((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_address_of_StoppedSalsaing_77()), L_5, L_6); V_0 = L_7; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_8 = V_0; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_9 = V_1; if ((!(((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_8) == ((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_9)))) { goto IL_0006; } } { return; } } // System.Void CrazyMinnow.SALSA.Salsa::remove_StoppedSalsaing(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_remove_StoppedSalsaing_mD40D5CB47260364543F5E724E0850A6718FC4CE0 (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_0 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_1 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_2 = NULL; { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_0 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_StoppedSalsaing_77(); V_0 = L_0; } IL_0006: { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_1 = V_0; V_1 = L_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_2 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_3 = ___value0; Delegate_t * L_4; L_4 = Delegate_Remove_mD84132DA8A72A81B1CDC5620B52E0E043D7FF0BF(L_2, L_3, /*hidden argument*/NULL); V_2 = ((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var)); EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_5 = V_2; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_6 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_7; L_7 = InterlockedCompareExchangeImpl((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 **)(((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_address_of_StoppedSalsaing_77()), L_5, L_6); V_0 = L_7; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_8 = V_0; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_9 = V_1; if ((!(((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_8) == ((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_9)))) { goto IL_0006; } } { return; } } // System.Void CrazyMinnow.SALSA.Salsa::add_VisemeTriggered(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_add_VisemeTriggered_mCD3A7A50EBF866C9328D44F5F6AF735D7D69BA29 (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_0 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_1 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_2 = NULL; { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_0 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_VisemeTriggered_78(); V_0 = L_0; } IL_0006: { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_1 = V_0; V_1 = L_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_2 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_3 = ___value0; Delegate_t * L_4; L_4 = Delegate_Combine_mD9F4B83868AFAD9BF9F7DC4E3974B8C881092B31(L_2, L_3, /*hidden argument*/NULL); V_2 = ((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var)); EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_5 = V_2; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_6 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_7; L_7 = InterlockedCompareExchangeImpl((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 **)(((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_address_of_VisemeTriggered_78()), L_5, L_6); V_0 = L_7; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_8 = V_0; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_9 = V_1; if ((!(((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_8) == ((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_9)))) { goto IL_0006; } } { return; } } // System.Void CrazyMinnow.SALSA.Salsa::remove_VisemeTriggered(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_remove_VisemeTriggered_m22685F6876DBBEFA46CFFC7425B029C2EDAD1CFE (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_0 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_1 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_2 = NULL; { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_0 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_VisemeTriggered_78(); V_0 = L_0; } IL_0006: { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_1 = V_0; V_1 = L_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_2 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_3 = ___value0; Delegate_t * L_4; L_4 = Delegate_Remove_mD84132DA8A72A81B1CDC5620B52E0E043D7FF0BF(L_2, L_3, /*hidden argument*/NULL); V_2 = ((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var)); EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_5 = V_2; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_6 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_7; L_7 = InterlockedCompareExchangeImpl((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 **)(((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_address_of_VisemeTriggered_78()), L_5, L_6); V_0 = L_7; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_8 = V_0; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_9 = V_1; if ((!(((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_8) == ((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_9)))) { goto IL_0006; } } { return; } } // System.Void CrazyMinnow.SALSA.Salsa::add_AudioSourceFound(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_add_AudioSourceFound_mF4C8A6D6154DB64334C3A9C4B43DF78DE1CD8A79 (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_0 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_1 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_2 = NULL; { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_0 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_AudioSourceFound_79(); V_0 = L_0; } IL_0006: { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_1 = V_0; V_1 = L_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_2 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_3 = ___value0; Delegate_t * L_4; L_4 = Delegate_Combine_mD9F4B83868AFAD9BF9F7DC4E3974B8C881092B31(L_2, L_3, /*hidden argument*/NULL); V_2 = ((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var)); EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_5 = V_2; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_6 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_7; L_7 = InterlockedCompareExchangeImpl((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 **)(((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_address_of_AudioSourceFound_79()), L_5, L_6); V_0 = L_7; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_8 = V_0; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_9 = V_1; if ((!(((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_8) == ((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_9)))) { goto IL_0006; } } { return; } } // System.Void CrazyMinnow.SALSA.Salsa::remove_AudioSourceFound(System.EventHandler`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_remove_AudioSourceFound_mA38E57B716D9E4994DEC9EED6FEFC3C7353B184B (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_0 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_1 = NULL; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * V_2 = NULL; { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_0 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_AudioSourceFound_79(); V_0 = L_0; } IL_0006: { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_1 = V_0; V_1 = L_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_2 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_3 = ___value0; Delegate_t * L_4; L_4 = Delegate_Remove_mD84132DA8A72A81B1CDC5620B52E0E043D7FF0BF(L_2, L_3, /*hidden argument*/NULL); V_2 = ((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)CastclassSealed((RuntimeObject*)L_4, EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var)); EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_5 = V_2; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_6 = V_1; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_7; L_7 = InterlockedCompareExchangeImpl((EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 **)(((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_address_of_AudioSourceFound_79()), L_5, L_6); V_0 = L_7; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_8 = V_0; EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_9 = V_1; if ((!(((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_8) == ((RuntimeObject*)(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)L_9)))) { goto IL_0006; } } { return; } } // System.Void CrazyMinnow.SALSA.Salsa::FireStartedSalsaingEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_FireStartedSalsaingEvent_m82BFC9C22FDC79087BD474AF0502FEEB21C8BED2 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->set_silencePulseCount_24(0); bool L_0 = __this->get_isSalsaingState_25(); if (L_0) { goto IL_0033; } } { __this->set_isSalsaingState_25((bool)1); EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_1 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_StartedSalsaing_76(); if (!L_1) { goto IL_0033; } } { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_2 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_StartedSalsaing_76(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3; L_3 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * L_4 = __this->get__eventNotificationArgs_80(); NullCheck(L_2); EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE(L_2, L_3, L_4, /*hidden argument*/EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE_RuntimeMethod_var); } IL_0033: { return; } } // System.Void CrazyMinnow.SALSA.Salsa::FireStoppedSalsaingEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_FireStoppedSalsaingEvent_m59B795C0C737BE732FB36C731E8636EDFD7B4A3B (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_silencePulseCount_24(); __this->set_silencePulseCount_24(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); bool L_1 = __this->get_isSalsaingState_25(); if (!L_1) { goto IL_004e; } } { int32_t L_2 = __this->get_silencePulseCount_24(); int32_t L_3 = __this->get_silencePulseThreshold_23(); int32_t L_4; L_4 = Mathf_Max_mDE96ED504F75C9C7985CC49B099CF308AC52BF48(L_3, 1, /*hidden argument*/NULL); if ((((int32_t)L_2) < ((int32_t)L_4))) { goto IL_004e; } } { __this->set_isSalsaingState_25((bool)0); EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_5 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_StoppedSalsaing_77(); if (!L_5) { goto IL_004e; } } { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_6 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_StoppedSalsaing_77(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_7; L_7 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * L_8 = __this->get__eventNotificationArgs_80(); NullCheck(L_6); EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE(L_6, L_7, L_8, /*hidden argument*/EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE_RuntimeMethod_var); } IL_004e: { return; } } // System.Void CrazyMinnow.SALSA.Salsa::FireVisemeTriggeredEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_FireVisemeTriggeredEvent_mD904DE7DC81C552309FFF57EE402F478BC64228A (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * L_0 = __this->get__eventNotificationArgs_80(); int32_t L_1; L_1 = Salsa_get_TriggeredIndex_m5F6A4E11FA84288C6833C7B478E3C665EE6D1609_inline(__this, /*hidden argument*/NULL); NullCheck(L_0); L_0->set_visemeTrigger_2(L_1); EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_2 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_VisemeTriggered_78(); if (!L_2) { goto IL_002e; } } { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_3 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_VisemeTriggered_78(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_4; L_4 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * L_5 = __this->get__eventNotificationArgs_80(); NullCheck(L_3); EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE(L_3, L_4, L_5, /*hidden argument*/EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE_RuntimeMethod_var); } IL_002e: { return; } } // System.Void CrazyMinnow.SALSA.Salsa::FireAudioSourceFoundEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_FireAudioSourceFoundEvent_m93C2FBF643B61750ACFF250844F3F0FE402DBFE8 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_0 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_AudioSourceFound_79(); if (!L_0) { goto IL_001d; } } { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_1 = ((Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_StaticFields*)il2cpp_codegen_static_fields_for(Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_il2cpp_TypeInfo_var))->get_AudioSourceFound_79(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_2; L_2 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * L_3 = __this->get__eventNotificationArgs_80(); NullCheck(L_1); EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE(L_1, L_2, L_3, /*hidden argument*/EventHandler_1_Invoke_m31DCC1786DB51604C6A0AD20226899CC791701BE_RuntimeMethod_var); } IL_001d: { return; } } // System.Void CrazyMinnow.SALSA.Salsa::Awake() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_Awake_m8750E72A3B002D8AF2FD18F1F1CF49952160E9EF (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { Salsa_Initialize_mE15AC56C790D95BF3CB8A689A213C14D926B4489(__this, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.Salsa::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_Initialize_mE15AC56C790D95BF3CB8A689A213C14D926B4489 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = Salsa_CheckConfigIsReady_m1F6631A85B7E08D672F38753987809DEA52AEB40(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0009; } } { return; } IL_0009: { Salsa_InitializeDelegates_mD76D22EB8C34D9FFE5ECA49E8461157BE73A4A83(__this, /*hidden argument*/NULL); Salsa_UpdateExpressionControllers_m0E1F6DD71EBF047651EA41A9FF52B244B1B8F844(__this, /*hidden argument*/NULL); SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * L_1 = (SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F *)il2cpp_codegen_object_new(SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F_il2cpp_TypeInfo_var); SalsaNotificationArgs__ctor_m86AA50938CAA960ECA10ADD8CBADD5AAD1033ABC(L_1, /*hidden argument*/NULL); SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * L_2 = L_1; NullCheck(L_2); L_2->set_salsaInstance_1(__this); __this->set__eventNotificationArgs_80(L_2); return; } } // System.Void CrazyMinnow.SALSA.Salsa::OnEnable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_OnEnable_m45467B631D3844264A2AB3DB1A0AD07C6A4BB045 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1__ctor_m51767897650CD1E74ED8FC0125D652DF9D7D74A5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_OnScaledTimeResumed_m823E405261663E2A5BF8AB0D3D5BCF541FDDEF9E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = Salsa_CheckConfigIsReady_m1F6631A85B7E08D672F38753987809DEA52AEB40(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0009; } } { return; } IL_0009: { bool L_1 = __this->get_usePersistence_38(); Salsa_SetPersistence_mB4B5713E91C1A4FCF8AD04320555588FE58C0125(__this, L_1, /*hidden argument*/NULL); Salsa_TurnOffAll_m6FBDEED841BD8DE16D4372C41C766417513398BC(__this, /*hidden argument*/NULL); __this->set_analysisValue_11((0.0f)); bool L_2 = __this->get_autoAdjustAnalysis_19(); if (L_2) { goto IL_003f; } } { int32_t L_3 = __this->get_sampleSize_14(); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_4 = (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)SZArrayNew(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var, (uint32_t)L_3); __this->set_audioSamples_15(L_4); } IL_003f: { bool L_5 = __this->get_useExternalAnalysis_6(); if (L_5) { goto IL_0063; } } { bool L_6 = __this->get_waitForAudioSource_5(); if (!L_6) { goto IL_0063; } } { AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_7 = __this->get_audioSrc_4(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_8; L_8 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_7, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_8) { goto IL_0063; } } { Salsa_StartWaitForAudio_m47C0E613C6AF55FD13E4BB95F6FE87F3D856E907(__this, /*hidden argument*/NULL); } IL_0063: { EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_9 = (EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 *)il2cpp_codegen_object_new(EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63_il2cpp_TypeInfo_var); EventHandler_1__ctor_m51767897650CD1E74ED8FC0125D652DF9D7D74A5(L_9, __this, (intptr_t)((intptr_t)Salsa_OnScaledTimeResumed_m823E405261663E2A5BF8AB0D3D5BCF541FDDEF9E_RuntimeMethod_var), /*hidden argument*/EventHandler_1__ctor_m51767897650CD1E74ED8FC0125D652DF9D7D74A5_RuntimeMethod_var); QueueProcessor_add_ScaledTimeResumed_mDC6AE8394D4BD574AF1E604F7B990A4719F0024A(L_9, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.Salsa::OnScaledTimeResumed(System.Object,CrazyMinnow.SALSA.QueueProcessor/QueueProcessorNotificationArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_OnScaledTimeResumed_m823E405261663E2A5BF8AB0D3D5BCF541FDDEF9E (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, RuntimeObject * ___sender0, QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 * ___e1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 * L_0 = ___e1; NullCheck(L_0); QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * L_1 = L_0->get_queueProcesor_1(); QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * L_2 = __this->get_queueProcessor_8(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_3; L_3 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0024; } } { bool L_4; L_4 = Salsa_get_QueueProcessorScaledTime_mBFE42A125987BCDAF74D281D1335134AFB405644(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); float L_5; L_5 = SalsaUtil_GetTime_m78C765D85FA03367E949348B2984576068E04547(L_4, /*hidden argument*/NULL); __this->set_updateTimeCheck_17(L_5); } IL_0024: { return; } } // System.Void CrazyMinnow.SALSA.Salsa::OnDisable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_OnDisable_m7BD6142842F093F139832B87E65F923C80D2B76B (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1__ctor_m51767897650CD1E74ED8FC0125D652DF9D7D74A5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_OnScaledTimeResumed_m823E405261663E2A5BF8AB0D3D5BCF541FDDEF9E_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_coroWaitForAudio_57(); if (!L_0) { goto IL_0014; } } { RuntimeObject* L_1 = __this->get_coroWaitForAudio_57(); MonoBehaviour_StopCoroutine_m3AB89AE7770E06BDB33BF39104BE5C57DF90616B(__this, L_1, /*hidden argument*/NULL); } IL_0014: { bool L_2; L_2 = Salsa_CheckConfigIsReady_m1F6631A85B7E08D672F38753987809DEA52AEB40(__this, /*hidden argument*/NULL); if (L_2) { goto IL_001d; } } { return; } IL_001d: { bool L_3 = __this->get_isAppQuitting_63(); if (!L_3) { goto IL_0026; } } { return; } IL_0026: { __this->set_analysisValue_11((0.0f)); Salsa_SetPersistence_mB4B5713E91C1A4FCF8AD04320555588FE58C0125(__this, (bool)0, /*hidden argument*/NULL); Salsa_TurnOffAll_m6FBDEED841BD8DE16D4372C41C766417513398BC(__this, /*hidden argument*/NULL); EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 * L_4 = (EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63 *)il2cpp_codegen_object_new(EventHandler_1_t20A39B5FB68A093EF573D861166C9A4DEA779D63_il2cpp_TypeInfo_var); EventHandler_1__ctor_m51767897650CD1E74ED8FC0125D652DF9D7D74A5(L_4, __this, (intptr_t)((intptr_t)Salsa_OnScaledTimeResumed_m823E405261663E2A5BF8AB0D3D5BCF541FDDEF9E_RuntimeMethod_var), /*hidden argument*/EventHandler_1__ctor_m51767897650CD1E74ED8FC0125D652DF9D7D74A5_RuntimeMethod_var); QueueProcessor_remove_ScaledTimeResumed_mBFB9594F4A7E5CB0545372FCF614B4353DE2E291(L_4, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.Salsa::InitializeDelegates() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_InitializeDelegates_mD76D22EB8C34D9FFE5ECA49E8461157BE73A4A83 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaAudioAnalyzer_SalsaLssCalcSimpleAbs_m06F451CE1F610DFC5973EC05349551732156AFD6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_SalsaLssGetAudioClipChannels_mDF1EE8692AFD84D77FC340DC77E5B1BE6E22C691_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_SalsaLssGetAudioClipData_m245A41E162AED46736AE145FB8987D9D1F18B465_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_SalsaLssGetAudioClipFrequency_mDE74E4402B69164D77E27E5B4313BE2B4C14368F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_SalsaLssGetAudioClipSampleCount_m7E15A76B68C9161F693ACF81336222B7F3CEF485_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_SalsaLssGetBufferPointer_m558B4CA2A493CEFEBE66458AA4F2AF3EB38E5979_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_SalsaLssGetExternalAnalysisValue_m78B4642FEBEB85125DE4442A62319EE38F61BD65_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa_SalsaLssGetTriggeredIndex_m4097023016DF1E96D9CCC1A54A52FE88F8AAC78C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * L_0 = __this->get_getExternalAnalysis_68(); if (L_0) { goto IL_001a; } } { GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * L_1 = (GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 *)il2cpp_codegen_object_new(GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4_il2cpp_TypeInfo_var); GetExternalAnalysis__ctor_m77E5A87B31F1AFD205B33CAA8C313E9D00B76629(L_1, __this, (intptr_t)((intptr_t)Salsa_SalsaLssGetExternalAnalysisValue_m78B4642FEBEB85125DE4442A62319EE38F61BD65_RuntimeMethod_var), /*hidden argument*/NULL); __this->set_getExternalAnalysis_68(L_1); } IL_001a: { AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C * L_2 = __this->get_audioAnalyzer_69(); if (L_2) { goto IL_0034; } } { AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C * L_3 = (AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C *)il2cpp_codegen_object_new(AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C_il2cpp_TypeInfo_var); AudioAnalyzer__ctor_mA07C80DF68DE3E1E836706824305E71EA5208E1B(L_3, NULL, (intptr_t)((intptr_t)SalsaAudioAnalyzer_SalsaLssCalcSimpleAbs_m06F451CE1F610DFC5973EC05349551732156AFD6_RuntimeMethod_var), /*hidden argument*/NULL); __this->set_audioAnalyzer_69(L_3); } IL_0034: { ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * L_4 = __this->get_clipChannels_70(); if (L_4) { goto IL_004e; } } { ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * L_5 = (ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 *)il2cpp_codegen_object_new(ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3_il2cpp_TypeInfo_var); ClipChannels__ctor_mBBA733579FA36D09ACFAF37155075A53152B86A4(L_5, __this, (intptr_t)((intptr_t)Salsa_SalsaLssGetAudioClipChannels_mDF1EE8692AFD84D77FC340DC77E5B1BE6E22C691_RuntimeMethod_var), /*hidden argument*/NULL); __this->set_clipChannels_70(L_5); } IL_004e: { ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * L_6 = __this->get_clipFrequency_71(); if (L_6) { goto IL_0068; } } { ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * L_7 = (ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE *)il2cpp_codegen_object_new(ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE_il2cpp_TypeInfo_var); ClipFrequency__ctor_m88B0F7C910CF753F8719DA759C23784B775900FF(L_7, __this, (intptr_t)((intptr_t)Salsa_SalsaLssGetAudioClipFrequency_mDE74E4402B69164D77E27E5B4313BE2B4C14368F_RuntimeMethod_var), /*hidden argument*/NULL); __this->set_clipFrequency_71(L_7); } IL_0068: { ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * L_8 = __this->get_clipSampleCount_72(); if (L_8) { goto IL_0082; } } { ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * L_9 = (ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 *)il2cpp_codegen_object_new(ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63_il2cpp_TypeInfo_var); ClipSampleCount__ctor_mC181076F208EFE6615AE08399EA3FC9BCA13BC9D(L_9, __this, (intptr_t)((intptr_t)Salsa_SalsaLssGetAudioClipSampleCount_m7E15A76B68C9161F693ACF81336222B7F3CEF485_RuntimeMethod_var), /*hidden argument*/NULL); __this->set_clipSampleCount_72(L_9); } IL_0082: { GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * L_10 = __this->get_getClipData_73(); if (L_10) { goto IL_009c; } } { GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * L_11 = (GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB *)il2cpp_codegen_object_new(GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB_il2cpp_TypeInfo_var); GetClipData__ctor_m75A90A2C5C6F8486437FC10855BCDF618F724FE8(L_11, __this, (intptr_t)((intptr_t)Salsa_SalsaLssGetAudioClipData_m245A41E162AED46736AE145FB8987D9D1F18B465_RuntimeMethod_var), /*hidden argument*/NULL); __this->set_getClipData_73(L_11); } IL_009c: { ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * L_12 = __this->get_clipHeadPointer_74(); if (L_12) { goto IL_00b6; } } { ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * L_13 = (ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB *)il2cpp_codegen_object_new(ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB_il2cpp_TypeInfo_var); ClipRecordHeadPointer__ctor_m5711E8C2203B5A006592468D76EA426D502B9968(L_13, __this, (intptr_t)((intptr_t)Salsa_SalsaLssGetBufferPointer_m558B4CA2A493CEFEBE66458AA4F2AF3EB38E5979_RuntimeMethod_var), /*hidden argument*/NULL); __this->set_clipHeadPointer_74(L_13); } IL_00b6: { GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * L_14 = __this->get_getTriggerIndex_75(); if (L_14) { goto IL_00d0; } } { GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * L_15 = (GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD *)il2cpp_codegen_object_new(GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD_il2cpp_TypeInfo_var); GetTriggerIndex__ctor_mBC2BFC1870A2CCE0A265BA6371BCB83E137D0818(L_15, __this, (intptr_t)((intptr_t)Salsa_SalsaLssGetTriggeredIndex_m4097023016DF1E96D9CCC1A54A52FE88F8AAC78C_RuntimeMethod_var), /*hidden argument*/NULL); __this->set_getTriggerIndex_75(L_15); } IL_00d0: { GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * L_16 = __this->get_getTriggerIndex_75(); GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * L_17 = (GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD *)il2cpp_codegen_object_new(GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD_il2cpp_TypeInfo_var); GetTriggerIndex__ctor_mBC2BFC1870A2CCE0A265BA6371BCB83E137D0818(L_17, __this, (intptr_t)((intptr_t)Salsa_SalsaLssGetTriggeredIndex_m4097023016DF1E96D9CCC1A54A52FE88F8AAC78C_RuntimeMethod_var), /*hidden argument*/NULL); bool L_18; L_18 = Delegate_op_Equality_m0CC379177BC80070E98252CD7B47D5489D8F9E07(L_16, L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_00f0; } } { __this->set_useAudioAnalysis_66((bool)1); } IL_00f0: { return; } } // System.Void CrazyMinnow.SALSA.Salsa::StartWaitForAudio() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_StartWaitForAudio_m47C0E613C6AF55FD13E4BB95F6FE87F3D856E907 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_needAudioSource_67(); if (L_0) { goto IL_0009; } } { return; } IL_0009: { RuntimeObject* L_1 = __this->get_coroWaitForAudio_57(); if (!L_1) { goto IL_001d; } } { RuntimeObject* L_2 = __this->get_coroWaitForAudio_57(); MonoBehaviour_StopCoroutine_m3AB89AE7770E06BDB33BF39104BE5C57DF90616B(__this, L_2, /*hidden argument*/NULL); } IL_001d: { RuntimeObject* L_3; L_3 = Salsa_WaitForAudioSource_mD5C1A3235BC6993C6CAE64E603B865A5BB3CAD03(__this, /*hidden argument*/NULL); __this->set_coroWaitForAudio_57(L_3); RuntimeObject* L_4 = __this->get_coroWaitForAudio_57(); Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_5; L_5 = MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_4, /*hidden argument*/NULL); return; } } // System.Boolean CrazyMinnow.SALSA.Salsa::IsWithinPulseCheckInterruptVariance(System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Salsa_IsWithinPulseCheckInterruptVariance_m6AE690752C299A71A552B0E5BB04616F664310B4 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, float ___startPoint0, float ___variance1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } float V_0 = 0.0f; float V_1 = 0.0f; { bool L_0 = __this->get_isPulseInterrupt_88(); if (!L_0) { goto IL_000a; } } { return (bool)0; } IL_000a: { V_0 = (0.0f); float L_1 = ___startPoint0; float L_2 = __this->get_audioUpdateDelay_16(); ___startPoint0 = ((float)il2cpp_codegen_multiply((float)L_1, (float)L_2)); float L_3 = ___startPoint0; float L_4 = __this->get_audioUpdateDelay_16(); float L_5 = ___startPoint0; float L_6 = ___variance1; V_0 = ((float)il2cpp_codegen_add((float)L_3, (float)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_subtract((float)L_4, (float)L_5)), (float)L_6)))); bool L_7; L_7 = Salsa_get_QueueProcessorScaledTime_mBFE42A125987BCDAF74D281D1335134AFB405644(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); float L_8; L_8 = SalsaUtil_GetTime_m78C765D85FA03367E949348B2984576068E04547(L_7, /*hidden argument*/NULL); float L_9 = __this->get_updateTimeCheck_17(); V_1 = ((float)il2cpp_codegen_subtract((float)L_8, (float)L_9)); float L_10 = V_1; float L_11 = ___startPoint0; if ((!(((float)L_10) > ((float)L_11)))) { goto IL_004b; } } { float L_12 = V_1; float L_13 = V_0; if ((!(((float)L_12) < ((float)L_13)))) { goto IL_004b; } } { __this->set_isPulseInterrupt_88((bool)1); return (bool)1; } IL_004b: { return (bool)0; } } // System.Void CrazyMinnow.SALSA.Salsa::PlaySalsaInEditor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_PlaySalsaInEditor_mE4272E69EC5D43DEDD73B993E20B47AC493E23D9 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { Salsa_LateUpdate_mDC7B07325DE883B78B67F3AA601324CCB8C820F2(__this, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.Salsa::LateUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_LateUpdate_mDC7B07325DE883B78B67F3AA601324CCB8C820F2 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0; L_0 = Salsa_CheckConfigIsReady_m1F6631A85B7E08D672F38753987809DEA52AEB40(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0009; } } { return; } IL_0009: { bool L_1; L_1 = Salsa_get_QueueProcessorScaledTime_mBFE42A125987BCDAF74D281D1335134AFB405644(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); float L_2; L_2 = SalsaUtil_GetTime_m78C765D85FA03367E949348B2984576068E04547(L_1, /*hidden argument*/NULL); float L_3 = __this->get_updateTimeCheck_17(); float L_4 = __this->get_audioUpdateDelay_16(); if ((!(((float)((float)il2cpp_codegen_subtract((float)L_2, (float)L_3))) < ((float)L_4)))) { goto IL_0024; } } { return; } IL_0024: { __this->set_isPulseInterrupt_88((bool)0); __this->set_isSalsaProcessing_59((bool)1); bool L_5; L_5 = Salsa_get_QueueProcessorScaledTime_mBFE42A125987BCDAF74D281D1335134AFB405644(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); float L_6; L_6 = SalsaUtil_GetTime_m78C765D85FA03367E949348B2984576068E04547(L_5, /*hidden argument*/NULL); __this->set_updateTimeCheck_17(L_6); Salsa_ProcessAudioAnalysis_m437098DAA809BC6F1CDF04F8779480FBA6C7B1FF(__this, /*hidden argument*/NULL); GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * L_7 = __this->get_getTriggerIndex_75(); NullCheck(L_7); int32_t L_8; L_8 = GetTriggerIndex_Invoke_mD8807144445D0D977BEB9B5261E7BF05A6089EB7(L_7, /*hidden argument*/NULL); V_0 = L_8; int32_t L_9 = V_0; if ((((int32_t)L_9) == ((int32_t)(-1)))) { goto IL_0081; } } { Salsa_FireStartedSalsaingEvent_m82BFC9C22FDC79087BD474AF0502FEEB21C8BED2(__this, /*hidden argument*/NULL); Salsa_ProcessEmphasizerEmote_m1D5E011C67233585B4AFB4C08882E50489EF2095(__this, /*hidden argument*/NULL); int32_t L_10 = V_0; Salsa_TurnPreviouslyTriggeredVisemeOff_mB6F0A8420E9FA89BFAC04AA5AA59C142637B7348(__this, L_10, /*hidden argument*/NULL); int32_t L_11 = V_0; float L_12 = __this->get_globalFrac_37(); Salsa_TurnVisemeOn_m7072EBD688E4CCA3E51CEF358349E89A004D90DE(__this, L_11, L_12, /*hidden argument*/NULL); Salsa_FireVisemeTriggeredEvent_mD904DE7DC81C552309FFF57EE402F478BC64228A(__this, /*hidden argument*/NULL); goto IL_0087; } IL_0081: { Salsa_ProcessSilenceTrigger_m44C31D3AAAE6AD63F4AC3B283368F1B3BB92939B(__this, /*hidden argument*/NULL); } IL_0087: { int32_t L_13 = V_0; __this->set_prevTriggeredIndex_48(L_13); __this->set_isSalsaProcessing_59((bool)0); return; } } // System.Void CrazyMinnow.SALSA.Salsa::ProcessSilenceTrigger() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_ProcessSilenceTrigger_m44C31D3AAAE6AD63F4AC3B283368F1B3BB92939B (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { Salsa_FireStoppedSalsaingEvent_m59B795C0C737BE732FB36C731E8636EDFD7B4A3B(__this, /*hidden argument*/NULL); Salsa_TurnPreviouslyTriggeredVisemeOff_mB6F0A8420E9FA89BFAC04AA5AA59C142637B7348(__this, (-1), /*hidden argument*/NULL); __this->set_prevTriggeredIndex_48((-1)); __this->set_secondaryMixTrigger_49((-1)); return; } } // System.Void CrazyMinnow.SALSA.Salsa::ProcessAudioAnalysis() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_ProcessAudioAnalysis_m437098DAA809BC6F1CDF04F8779480FBA6C7B1FF (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * G_B5_0 = NULL; Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * G_B4_0 = NULL; float G_B6_0 = 0.0f; Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * G_B6_1 = NULL; { bool L_0 = __this->get_useAudioAnalysis_66(); if (!L_0) { goto IL_0049; } } { bool L_1 = __this->get_useExternalAnalysis_6(); if (L_1) { goto IL_001d; } } { float L_2; L_2 = Salsa_AnalyzeAudio_m1F47BA25642DDF4EF6F55A01CC42B1DEA4B47ACA(__this, /*hidden argument*/NULL); __this->set_cachedAnalysisValue_12(L_2); return; } IL_001d: { bool L_3 = __this->get_scaleExternalAnalysis_22(); G_B4_0 = __this; if (L_3) { G_B5_0 = __this; goto IL_0033; } } { GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * L_4 = __this->get_getExternalAnalysis_68(); NullCheck(L_4); float L_5; L_5 = GetExternalAnalysis_Invoke_mA5D89EF5A44B81239F02BDCC0E0ACCBFCCCFF9EB(L_4, /*hidden argument*/NULL); G_B6_0 = L_5; G_B6_1 = G_B4_0; goto IL_0044; } IL_0033: { GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * L_6 = __this->get_getExternalAnalysis_68(); NullCheck(L_6); float L_7; L_7 = GetExternalAnalysis_Invoke_mA5D89EF5A44B81239F02BDCC0E0ACCBFCCCFF9EB(L_6, /*hidden argument*/NULL); float L_8; L_8 = Salsa_ScaleAudio_mFC2A90BECE72AED403F54B7E7862E7FA8F95616E(__this, L_7, /*hidden argument*/NULL); G_B6_0 = L_8; G_B6_1 = G_B5_0; } IL_0044: { NullCheck(G_B6_1); G_B6_1->set_cachedAnalysisValue_12(G_B6_0); } IL_0049: { return; } } // System.Int32 CrazyMinnow.SALSA.Salsa::SalsaLssGetTriggeredIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Salsa_SalsaLssGetTriggeredIndex_m4097023016DF1E96D9CCC1A54A52FE88F8AAC78C (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { V_0 = (-1); V_1 = 0; goto IL_0025; } IL_0006: { float L_0 = __this->get_cachedAnalysisValue_12(); List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_1 = __this->get_visemes_47(); int32_t L_2 = V_1; NullCheck(L_1); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_3; L_3 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_1, L_2, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_3); float L_4 = L_3->get_trigger_1(); if ((!(((float)L_0) > ((float)L_4)))) { goto IL_0033; } } { int32_t L_5 = V_1; V_0 = L_5; int32_t L_6 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0025: { int32_t L_7 = V_1; List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_8 = __this->get_visemes_47(); NullCheck(L_8); int32_t L_9; L_9 = List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_inline(L_8, /*hidden argument*/List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); if ((((int32_t)L_7) < ((int32_t)L_9))) { goto IL_0006; } } IL_0033: { int32_t L_10 = V_0; return L_10; } } // System.Void CrazyMinnow.SALSA.Salsa::ProcessEmphasizerEmote() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_ProcessEmphasizerEmote_m1D5E011C67233585B4AFB4C08882E50489EF2095 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __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; } { Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7 * L_0 = __this->get_emoter_9(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Implicit_m3B780F50367611CB9A34F3BF2032585E05DA1BFD(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0063; } } { float L_2 = __this->get_cachedAnalysisValue_12(); float L_3 = __this->get_emphasizerTrigger_10(); if ((!(((float)L_2) > ((float)L_3)))) { goto IL_0063; } } { float L_4 = __this->get_emphasizerTrigger_10(); bool L_5; L_5 = Mathf_Approximately_mFEB0CB3531393F6CBE07C6E0FCB473B3311F799A(L_4, (1.0f), /*hidden argument*/NULL); if (!L_5) { goto IL_003e; } } { Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7 * L_6 = __this->get_emoter_9(); NullCheck(L_6); Emoter_TriggerLipSyncEmphasis_m2AF6DC943444A01EE9121338CE0AAFF203183442(L_6, (1.0f), /*hidden argument*/NULL); return; } IL_003e: { Emoter_tFC793B4C007B66C28BCA6AAED0087BB02C77B3A7 * L_7 = __this->get_emoter_9(); float L_8 = __this->get_cachedAnalysisValue_12(); float L_9 = __this->get_emphasizerTrigger_10(); float L_10 = __this->get_emphasizerTrigger_10(); NullCheck(L_7); Emoter_TriggerLipSyncEmphasis_m2AF6DC943444A01EE9121338CE0AAFF203183442(L_7, ((float)((float)((float)il2cpp_codegen_subtract((float)L_8, (float)L_9))/(float)((float)il2cpp_codegen_subtract((float)(1.0f), (float)L_10)))), /*hidden argument*/NULL); } IL_0063: { return; } } // System.Void CrazyMinnow.SALSA.Salsa::TurnPreviouslyTriggeredVisemeOff(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_TurnPreviouslyTriggeredVisemeOff_mB6F0A8420E9FA89BFAC04AA5AA59C142637B7348 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___triggeredIndex0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___triggeredIndex0; int32_t L_1 = __this->get_prevTriggeredIndex_48(); if ((!(((uint32_t)L_0) == ((uint32_t)L_1)))) { goto IL_000a; } } { return; } IL_000a: { int32_t L_2 = __this->get_prevTriggeredIndex_48(); if ((((int32_t)L_2) == ((int32_t)(-1)))) { goto IL_002d; } } { List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_3 = __this->get_visemes_47(); NullCheck(L_3); int32_t L_4; L_4 = List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_inline(L_3, /*hidden argument*/List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_002d; } } { int32_t L_5 = __this->get_prevTriggeredIndex_48(); Salsa_TurnVisemComponentsOff_mB2F87AC392C36E5B62E0361E93D7BC36FB53EAA6(__this, L_5, /*hidden argument*/NULL); } IL_002d: { int32_t L_6 = __this->get_secondaryMixTrigger_49(); if ((((int32_t)L_6) == ((int32_t)(-1)))) { goto IL_0050; } } { List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_7 = __this->get_visemes_47(); NullCheck(L_7); int32_t L_8; L_8 = List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_inline(L_7, /*hidden argument*/List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); if ((((int32_t)L_8) <= ((int32_t)1))) { goto IL_0050; } } { int32_t L_9 = __this->get_secondaryMixTrigger_49(); Salsa_TurnVisemComponentsOff_mB2F87AC392C36E5B62E0361E93D7BC36FB53EAA6(__this, L_9, /*hidden argument*/NULL); } IL_0050: { return; } } // System.Void CrazyMinnow.SALSA.Salsa::TurnVisemComponentsOff(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_TurnVisemComponentsOff_mB2F87AC392C36E5B62E0361E93D7BC36FB53EAA6 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___visemeIndex0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral722CBF7C918ACDCDB2F572739F33CFF2E9AA1C7D); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { V_0 = 0; goto IL_0075; } IL_0004: { GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_0; L_0 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_1 = __this->get_visemes_47(); int32_t L_2 = ___visemeIndex0; NullCheck(L_1); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_3; L_3 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_1, L_2, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_3); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_4 = L_3->get_expData_0(); int32_t L_5 = V_0; bool L_6 = __this->get_warnOnNullRefs_62(); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); bool L_7; L_7 = SalsaUtil_CheckForInvalidComponent_m3DCBA3DC78D34E0C6E1E2C33E012633F46DFABFB(L_0, _stringLiteral722CBF7C918ACDCDB2F572739F33CFF2E9AA1C7D, L_4, L_5, L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0071; } } { List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_8 = __this->get_visemes_47(); int32_t L_9 = ___visemeIndex0; NullCheck(L_8); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_10; L_10 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_8, L_9, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_10); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_11 = L_10->get_expData_0(); NullCheck(L_11); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_12 = L_11->get_components_1(); int32_t L_13 = V_0; NullCheck(L_12); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_14; L_14 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_12, L_13, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_15 = __this->get_visemes_47(); int32_t L_16 = ___visemeIndex0; NullCheck(L_15); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_17; L_17 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_15, L_16, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_17); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_18 = L_17->get_expData_0(); NullCheck(L_18); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_19 = L_18->get_components_1(); int32_t L_20 = V_0; NullCheck(L_19); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_21; L_21 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_19, L_20, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_21); float L_22 = L_21->get_durationOff_9(); Salsa_RegisterComponentOff_m2BA3ADEE9DBDE488FD8CB28B1E1685CB48C9584D(__this, L_14, L_22, /*hidden argument*/NULL); } IL_0071: { int32_t L_23 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0075: { int32_t L_24 = V_0; List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_25 = __this->get_visemes_47(); int32_t L_26 = ___visemeIndex0; NullCheck(L_25); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_27; L_27 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_25, L_26, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_27); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_28 = L_27->get_expData_0(); NullCheck(L_28); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_29 = L_28->get_components_1(); NullCheck(L_29); int32_t L_30; L_30 = List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_inline(L_29, /*hidden argument*/List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_RuntimeMethod_var); if ((((int32_t)L_24) < ((int32_t)L_30))) { goto IL_0004; } } { return; } } // System.Int32 CrazyMinnow.SALSA.Salsa::GetSecondaryMixIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Salsa_GetSecondaryMixIndex_mC20D3171A9D5BD663B58209EF83B7457B37CB32F (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___triggeredIndex0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t G_B5_0 = 0; { List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_0 = __this->get_visemes_47(); NullCheck(L_0); int32_t L_1; L_1 = List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_inline(L_0, /*hidden argument*/List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); if ((((int32_t)L_1) >= ((int32_t)2))) { goto IL_0010; } } { return (-1); } IL_0010: { int32_t L_2 = ___triggeredIndex0; List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_3 = __this->get_visemes_47(); NullCheck(L_3); int32_t L_4; L_4 = List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_inline(L_3, /*hidden argument*/List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); if ((((int32_t)L_2) == ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1))))) { goto IL_0025; } } { int32_t L_5 = ___triggeredIndex0; G_B5_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); goto IL_0028; } IL_0025: { int32_t L_6 = ___triggeredIndex0; G_B5_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)); } IL_0028: { V_0 = G_B5_0; int32_t L_7 = V_0; return L_7; } } // System.Void CrazyMinnow.SALSA.Salsa::RegisterComponentOn(CrazyMinnow.SALSA.ExpressionComponent,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_RegisterComponentOn_mA7AA78F8098FD37C71CA43CAB15A701DB1821481 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___component0, float ___fracAmount1, const RuntimeMethod* method) { float V_0 = 0.0f; float V_1 = 0.0f; int32_t V_2 = 0; float G_B5_0 = 0.0f; float G_B8_0 = 0.0f; int32_t G_B11_0 = 0; { bool L_0 = __this->get_useTimingsOverride_39(); if (L_0) { goto IL_0010; } } { bool L_1 = __this->get_useEasingOverride_45(); if (!L_1) { goto IL_0086; } } IL_0010: { bool L_2 = __this->get_useTimingsOverride_39(); if (L_2) { goto IL_0020; } } { ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_3 = ___component0; NullCheck(L_3); float L_4 = L_3->get_durationOn_7(); G_B5_0 = L_4; goto IL_0026; } IL_0020: { float L_5 = __this->get_globalDurON_40(); G_B5_0 = L_5; } IL_0026: { V_0 = G_B5_0; bool L_6 = __this->get_useTimingsOverride_39(); if (L_6) { goto IL_0037; } } { ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_7 = ___component0; NullCheck(L_7); float L_8 = L_7->get_durationOff_9(); G_B8_0 = L_8; goto IL_003d; } IL_0037: { float L_9 = __this->get_globalDurOFF_41(); G_B8_0 = L_9; } IL_003d: { V_1 = G_B8_0; bool L_10 = __this->get_useEasingOverride_45(); if (L_10) { goto IL_004e; } } { ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_11 = ___component0; NullCheck(L_11); int32_t L_12 = L_11->get_easing_13(); G_B11_0 = L_12; goto IL_0054; } IL_004e: { int32_t L_13 = __this->get_globalEasing_46(); G_B11_0 = L_13; } IL_0054: { V_2 = G_B11_0; QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * L_14 = __this->get_queueProcessor_8(); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_15 = ___component0; NullCheck(L_15); RuntimeObject* L_16 = L_15->get_controller_1(); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_17 = ___component0; NullCheck(L_17); int32_t L_18 = L_17->get_controlType_2(); float L_19 = V_0; float L_20 = V_1; bool L_21 = __this->get_usePersistence_38(); int32_t L_22 = V_2; ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_23 = ___component0; NullCheck(L_23); bool L_24 = L_23->get_isAnimatorControlled_15(); float L_25 = ___fracAmount1; NullCheck(L_14); QueueProcessor_Register_mC982EAFA114261C912F7D4E972BA007FCB7F0E8D(L_14, L_16, L_18, L_19, (0.0f), L_20, L_21, 0, L_22, 0, L_24, (bool)0, (bool)1, L_25, /*hidden argument*/NULL); return; } IL_0086: { QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * L_26 = __this->get_queueProcessor_8(); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_27 = ___component0; float L_28 = ___fracAmount1; NullCheck(L_26); QueueProcessor_Register_m081FE8ACE20CE9648A1BB1D8E8901FDD592E9761(L_26, L_27, (bool)1, L_28, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.Salsa::RegisterComponentOff(CrazyMinnow.SALSA.ExpressionComponent,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_RegisterComponentOff_m2BA3ADEE9DBDE488FD8CB28B1E1685CB48C9584D (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * ___component0, float ___durOff1, const RuntimeMethod* method) { float V_0 = 0.0f; int32_t V_1 = 0; float G_B5_0 = 0.0f; int32_t G_B8_0 = 0; { bool L_0 = __this->get_useTimingsOverride_39(); if (L_0) { goto IL_0010; } } { bool L_1 = __this->get_useEasingOverride_45(); if (!L_1) { goto IL_0072; } } IL_0010: { bool L_2 = __this->get_useTimingsOverride_39(); if (L_2) { goto IL_001b; } } { float L_3 = ___durOff1; G_B5_0 = L_3; goto IL_0021; } IL_001b: { float L_4 = __this->get_globalDurOFF_41(); G_B5_0 = L_4; } IL_0021: { V_0 = G_B5_0; bool L_5 = __this->get_useEasingOverride_45(); if (L_5) { goto IL_0032; } } { ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_6 = ___component0; NullCheck(L_6); int32_t L_7 = L_6->get_easing_13(); G_B8_0 = L_7; goto IL_0038; } IL_0032: { int32_t L_8 = __this->get_globalEasing_46(); G_B8_0 = L_8; } IL_0038: { V_1 = G_B8_0; QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * L_9 = __this->get_queueProcessor_8(); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_10 = ___component0; NullCheck(L_10); RuntimeObject* L_11 = L_10->get_controller_1(); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_12 = ___component0; NullCheck(L_12); int32_t L_13 = L_12->get_controlType_2(); float L_14 = V_0; ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_15 = ___component0; NullCheck(L_15); bool L_16 = L_15->get_isPersistent_11(); int32_t L_17 = V_1; ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_18 = ___component0; NullCheck(L_18); bool L_19 = L_18->get_isAnimatorControlled_15(); NullCheck(L_9); QueueProcessor_Register_mC982EAFA114261C912F7D4E972BA007FCB7F0E8D(L_9, L_11, L_13, (0.0f), (0.0f), L_14, L_16, 0, L_17, 0, L_19, (bool)0, (bool)0, (1.0f), /*hidden argument*/NULL); return; } IL_0072: { QueueProcessor_tEC2A0810C6DC63E05620372C02CDF8B75306CC45 * L_20 = __this->get_queueProcessor_8(); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_21 = ___component0; NullCheck(L_20); QueueProcessor_Register_m081FE8ACE20CE9648A1BB1D8E8901FDD592E9761(L_20, L_21, (bool)0, (1.0f), /*hidden argument*/NULL); return; } } // System.Single CrazyMinnow.SALSA.Salsa::CalcAdvancedDynamics(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Salsa_CalcAdvancedDynamics_m3522A677DE2438E5463248944EE10F38AB96A26D (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___triggeredIndex0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } float V_0 = 0.0f; float V_1 = 0.0f; float G_B5_0 = 0.0f; float G_B8_0 = 0.0f; float G_B7_0 = 0.0f; float G_B9_0 = 0.0f; float G_B9_1 = 0.0f; { bool L_0; L_0 = Salsa_CheckConfigIsReady_m1F6631A85B7E08D672F38753987809DEA52AEB40(__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { return (0.0f); } IL_000e: { int32_t L_1 = ___triggeredIndex0; List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_2 = __this->get_visemes_47(); NullCheck(L_2); int32_t L_3; L_3 = List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_inline(L_2, /*hidden argument*/List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); if ((((int32_t)L_1) == ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1))))) { goto IL_0033; } } { List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_4 = __this->get_visemes_47(); int32_t L_5 = ___triggeredIndex0; NullCheck(L_4); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_6; L_6 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_4, ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)), /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_6); float L_7 = L_6->get_trigger_1(); G_B5_0 = L_7; goto IL_0038; } IL_0033: { G_B5_0 = (1.0f); } IL_0038: { V_0 = G_B5_0; float L_8 = __this->get_cachedAnalysisValue_12(); List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_9 = __this->get_visemes_47(); int32_t L_10 = ___triggeredIndex0; NullCheck(L_9); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_11; L_11 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_9, L_10, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_11); float L_12 = L_11->get_trigger_1(); float L_13 = V_0; List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_14 = __this->get_visemes_47(); int32_t L_15 = ___triggeredIndex0; NullCheck(L_14); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_16; L_16 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_14, L_15, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_16); float L_17 = L_16->get_trigger_1(); V_1 = ((float)((float)((float)il2cpp_codegen_subtract((float)L_8, (float)L_12))/(float)((float)il2cpp_codegen_subtract((float)L_13, (float)L_17)))); float L_18 = __this->get_advDynPrimaryBias_29(); float L_19 = __this->get_advDynPrimaryBias_29(); float L_20 = V_1; float L_21; L_21 = Mathf_Clamp01_m831CBA1D198C3CDE660E8172A67A4E41BD0D0171(((float)il2cpp_codegen_add((float)L_18, (float)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_subtract((float)(1.0f), (float)L_19)), (float)L_20)))), /*hidden argument*/NULL); V_1 = L_21; bool L_22 = __this->get_useAdvDynJitter_30(); if (!L_22) { goto IL_00c7; } } { float L_23 = V_1; float L_24 = __this->get_advDynJitterProb_32(); float L_25; L_25 = Random_Range_mA944A98B82AFE4D46D05EF533ED0068148EFAEA5((0.0f), (1.0f), /*hidden argument*/NULL); G_B7_0 = L_23; if ((((float)L_24) > ((float)L_25))) { G_B8_0 = L_23; goto IL_00a8; } } { G_B9_0 = (1.0f); G_B9_1 = G_B7_0; goto IL_00c0; } IL_00a8: { float L_26 = __this->get_advDynJitterAmount_31(); float L_27 = __this->get_advDynJitterAmount_31(); float L_28; L_28 = Random_Range_mA944A98B82AFE4D46D05EF533ED0068148EFAEA5(((-L_26)), L_27, /*hidden argument*/NULL); G_B9_0 = ((float)il2cpp_codegen_add((float)L_28, (float)(1.0f))); G_B9_1 = G_B8_0; } IL_00c0: { float L_29; L_29 = Mathf_Clamp01_m831CBA1D198C3CDE660E8172A67A4E41BD0D0171(G_B9_0, /*hidden argument*/NULL); V_1 = ((float)il2cpp_codegen_multiply((float)G_B9_1, (float)L_29)); } IL_00c7: { float L_30 = V_1; return L_30; } } // System.Void CrazyMinnow.SALSA.Salsa::TurnVisemeOn(System.Int32,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_TurnVisemeOn_m7072EBD688E4CCA3E51CEF358349E89A004D90DE (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___triggeredIndex0, float ___dynamicsAmount1, const RuntimeMethod* method) { { bool L_0 = __this->get_useAdvDyn_28(); if (!L_0) { goto IL_004c; } } { int32_t L_1 = ___triggeredIndex0; float L_2; L_2 = Salsa_CalcAdvancedDynamics_m3522A677DE2438E5463248944EE10F38AB96A26D(__this, L_1, /*hidden argument*/NULL); float L_3 = __this->get_globalFrac_37(); ___dynamicsAmount1 = ((float)il2cpp_codegen_multiply((float)L_2, (float)L_3)); bool L_4 = __this->get_useAdvDynSecondaryMix_33(); if (!L_4) { goto IL_0056; } } { int32_t L_5 = ___triggeredIndex0; int32_t L_6; L_6 = Salsa_GetSecondaryMixIndex_mC20D3171A9D5BD663B58209EF83B7457B37CB32F(__this, L_5, /*hidden argument*/NULL); __this->set_secondaryMixTrigger_49(L_6); int32_t L_7 = __this->get_secondaryMixTrigger_49(); if ((((int32_t)L_7) == ((int32_t)(-1)))) { goto IL_0056; } } { int32_t L_8 = __this->get_secondaryMixTrigger_49(); float L_9 = ___dynamicsAmount1; float L_10 = __this->get_advDynSecondaryMix_34(); Salsa_TurnVisemeComponentsOn_m6270BDD6BFE8831D7800978F26AE72C16CA36A75(__this, L_8, ((float)il2cpp_codegen_multiply((float)L_9, (float)L_10)), /*hidden argument*/NULL); goto IL_0056; } IL_004c: { int32_t L_11 = ___triggeredIndex0; int32_t L_12 = __this->get_prevTriggeredIndex_48(); if ((!(((uint32_t)L_11) == ((uint32_t)L_12)))) { goto IL_0056; } } { return; } IL_0056: { int32_t L_13 = ___triggeredIndex0; float L_14 = ___dynamicsAmount1; Salsa_TurnVisemeComponentsOn_m6270BDD6BFE8831D7800978F26AE72C16CA36A75(__this, L_13, L_14, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.Salsa::TurnVisemeComponentsOn(System.Int32,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_TurnVisemeComponentsOn_m6270BDD6BFE8831D7800978F26AE72C16CA36A75 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___triggeredIndex0, float ___fracAmount1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral722CBF7C918ACDCDB2F572739F33CFF2E9AA1C7D); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; float V_1 = 0.0f; { V_0 = 0; goto IL_00f4; } IL_0007: { List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_0 = __this->get_visemes_47(); int32_t L_1 = ___triggeredIndex0; NullCheck(L_0); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_2; L_2 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_2); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_3 = L_2->get_expData_0(); NullCheck(L_3); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_4 = L_3->get_components_1(); int32_t L_5 = V_0; NullCheck(L_4); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_6; L_6 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_4, L_5, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_6); bool L_7 = L_6->get_enabled_19(); if (!L_7) { goto IL_00f0; } } { GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_8; L_8 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_9 = __this->get_visemes_47(); int32_t L_10 = ___triggeredIndex0; NullCheck(L_9); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_11; L_11 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_9, L_10, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_11); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_12 = L_11->get_expData_0(); int32_t L_13 = V_0; bool L_14 = __this->get_warnOnNullRefs_62(); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); bool L_15; L_15 = SalsaUtil_CheckForInvalidComponent_m3DCBA3DC78D34E0C6E1E2C33E012633F46DFABFB(L_8, _stringLiteral722CBF7C918ACDCDB2F572739F33CFF2E9AA1C7D, L_12, L_13, L_14, /*hidden argument*/NULL); if (L_15) { goto IL_00f0; } } { bool L_16 = __this->get_useAdvDynRollback_35(); if (!L_16) { goto IL_00cd; } } { int32_t L_17 = ___triggeredIndex0; int32_t L_18 = __this->get_prevTriggeredIndex_48(); if ((((int32_t)L_17) == ((int32_t)L_18))) { goto IL_00cd; } } { List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_19 = __this->get_visemes_47(); int32_t L_20 = ___triggeredIndex0; NullCheck(L_19); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_21; L_21 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_19, L_20, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_21); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_22 = L_21->get_expData_0(); NullCheck(L_22); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_23 = L_22->get_components_1(); int32_t L_24 = V_0; NullCheck(L_23); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_25; L_25 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_23, L_24, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_25); RuntimeObject* L_26 = L_25->get_controller_1(); NullCheck(L_26); float L_27; L_27 = InterfaceFuncInvoker2< float, bool, bool >::Invoke(5 /* System.Single CrazyMinnow.SALSA.IExpressionController::GetNewDelta(System.Boolean,System.Boolean) */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_26, (bool)1, (bool)0); V_1 = L_27; List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_28 = __this->get_visemes_47(); int32_t L_29 = ___triggeredIndex0; NullCheck(L_28); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_30; L_30 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_28, L_29, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_30); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_31 = L_30->get_expData_0(); NullCheck(L_31); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_32 = L_31->get_components_1(); int32_t L_33 = V_0; NullCheck(L_32); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_34; L_34 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_32, L_33, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_34); RuntimeObject* L_35 = L_34->get_controller_1(); float L_36 = V_1; float L_37 = __this->get_advDynRollback_36(); float L_38; L_38 = Mathf_Clamp01_m831CBA1D198C3CDE660E8172A67A4E41BD0D0171(((float)il2cpp_codegen_multiply((float)L_36, (float)((float)il2cpp_codegen_subtract((float)(1.0f), (float)L_37)))), /*hidden argument*/NULL); NullCheck(L_35); InterfaceActionInvoker1< float >::Invoke(14 /* System.Void CrazyMinnow.SALSA.IExpressionController::SetDelta(System.Single) */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_35, L_38); } IL_00cd: { List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_39 = __this->get_visemes_47(); int32_t L_40 = ___triggeredIndex0; NullCheck(L_39); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_41; L_41 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_39, L_40, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_41); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_42 = L_41->get_expData_0(); NullCheck(L_42); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_43 = L_42->get_components_1(); int32_t L_44 = V_0; NullCheck(L_43); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_45; L_45 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_43, L_44, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); float L_46 = ___fracAmount1; Salsa_RegisterComponentOn_mA7AA78F8098FD37C71CA43CAB15A701DB1821481(__this, L_45, L_46, /*hidden argument*/NULL); } IL_00f0: { int32_t L_47 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1)); } IL_00f4: { int32_t L_48 = V_0; List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_49 = __this->get_visemes_47(); int32_t L_50 = ___triggeredIndex0; NullCheck(L_49); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_51; L_51 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_49, L_50, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); NullCheck(L_51); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_52 = L_51->get_expData_0(); NullCheck(L_52); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_53 = L_52->get_components_1(); NullCheck(L_53); int32_t L_54; L_54 = List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_inline(L_53, /*hidden argument*/List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_RuntimeMethod_var); if ((((int32_t)L_48) < ((int32_t)L_54))) { goto IL_0007; } } { return; } } // System.Single CrazyMinnow.SALSA.Salsa::AnalyzeAudio() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Salsa_AnalyzeAudio_m1F47BA25642DDF4EF6F55A01CC42B1DEA4B47ACA (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __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; } int32_t V_0 = 0; int32_t V_1 = 0; { bool L_0 = __this->get_needAudioSource_67(); if (!L_0) { goto IL_002f; } } { AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_1 = __this->get_audioSrc_4(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_2; L_2 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_1, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (L_2) { goto IL_0029; } } { AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_3 = __this->get_audioSrc_4(); NullCheck(L_3); AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * L_4; L_4 = AudioSource_get_clip_mE4454E38D2C0A4C8CC780A435FC1DBD4D47D16DC(L_3, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_5; L_5 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_4, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_5) { goto IL_002f; } } IL_0029: { return (0.0f); } IL_002f: { bool L_6 = __this->get_useExternalAnalysis_6(); if (L_6) { goto IL_0045; } } { bool L_7 = __this->get_autoAdjustAnalysis_19(); if (!L_7) { goto IL_0045; } } { Salsa_AdjustAnalysisSettings_m3093BFD52C850590F5D4E3680248AB93315D877D(__this, /*hidden argument*/NULL); } IL_0045: { AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_8 = __this->get_audioSrc_4(); NullCheck(L_8); bool L_9; L_9 = AudioSource_get_isPlaying_mEA69477C77D542971F7B454946EF25DFBE0AF6A8(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_005a; } } { bool L_10 = __this->get_needAudioSource_67(); if (L_10) { goto IL_00b4; } } IL_005a: { ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * L_11 = __this->get_clipSampleCount_72(); NullCheck(L_11); int32_t L_12; L_12 = ClipSampleCount_Invoke_mF0F112CD0A4C2CBA9D2F0E4D3B737CD741DEAF0E(L_11, /*hidden argument*/NULL); V_1 = L_12; int32_t L_13 = V_1; int32_t L_14; L_14 = Salsa_CalcClipOffsetPointer_m3E8BAD6CDE9870C60BDE881ABA42D665894FCEEE(__this, L_13, /*hidden argument*/NULL); V_0 = L_14; int32_t L_15 = V_0; int32_t L_16 = V_1; bool L_17; L_17 = Salsa_IsOffsetPointerOutOfBounds_m0D07F31F51E1288168FAE5B5175E95E283FF118C(__this, L_15, L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_007e; } } { return (0.0f); } IL_007e: { GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * L_18 = __this->get_getClipData_73(); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_19 = __this->get_audioSamples_15(); int32_t L_20 = V_0; NullCheck(L_18); bool L_21; L_21 = GetClipData_Invoke_m967F4557D5DD4481C89F64C468BE81E864D62615(L_18, L_19, L_20, /*hidden argument*/NULL); AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C * L_22 = __this->get_audioAnalyzer_69(); ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * L_23 = __this->get_clipChannels_70(); NullCheck(L_23); int32_t L_24; L_24 = ClipChannels_Invoke_m050CF7CE57A9379F76A87D40B8DCEE0659F48AC1(L_23, /*hidden argument*/NULL); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_25 = __this->get_audioSamples_15(); NullCheck(L_22); float L_26; L_26 = AudioAnalyzer_Invoke_m38D61A2805EB6CD043D3D21F9FD50C12B5AC5A82(L_22, L_24, L_25, /*hidden argument*/NULL); float L_27; L_27 = Salsa_ScaleAudio_mFC2A90BECE72AED403F54B7E7862E7FA8F95616E(__this, L_26, /*hidden argument*/NULL); return L_27; } IL_00b4: { return (0.0f); } } // System.Boolean CrazyMinnow.SALSA.Salsa::IsOffsetPointerOutOfBounds(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Salsa_IsOffsetPointerOutOfBounds_m0D07F31F51E1288168FAE5B5175E95E283FF118C (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___clipOffsetPointer0, int32_t ___clipLength1, const RuntimeMethod* method) { { int32_t L_0 = ___clipOffsetPointer0; int32_t L_1 = __this->get_sampleSize_14(); int32_t L_2 = ___clipLength1; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)), (int32_t)1))) >= ((int32_t)L_2))) { goto IL_0012; } } { int32_t L_3 = ___clipOffsetPointer0; return (bool)((((int32_t)L_3) < ((int32_t)0))? 1 : 0); } IL_0012: { return (bool)1; } } // System.Int32 CrazyMinnow.SALSA.Salsa::CalcClipOffsetPointer(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Salsa_CalcClipOffsetPointer_m3E8BAD6CDE9870C60BDE881ABA42D665894FCEEE (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___clipLength0, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->get_needAudioSource_67(); if (!L_0) { goto IL_0010; } } { bool L_1 = __this->get_autoAdjustMicrophone_20(); if (!L_1) { goto IL_002f; } } IL_0010: { ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * L_2 = __this->get_clipHeadPointer_74(); NullCheck(L_2); int32_t L_3; L_3 = ClipRecordHeadPointer_Invoke_mF7799D5E209C42442281C4E5BCDE6241F52ADF71(L_2, /*hidden argument*/NULL); int32_t L_4 = __this->get_sampleSize_14(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_4)); int32_t L_5 = V_0; if ((((int32_t)L_5) >= ((int32_t)0))) { goto IL_0036; } } { int32_t L_6 = ___clipLength0; int32_t L_7 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), (int32_t)L_7)); goto IL_0036; } IL_002f: { int32_t L_8; L_8 = Salsa_get_GetSalsaAudioPointer_mA37D6358FBE167D8B2AAFAC1DB41F1892B3C1298(__this, /*hidden argument*/NULL); V_0 = L_8; } IL_0036: { int32_t L_9 = V_0; return L_9; } } // System.Int32 CrazyMinnow.SALSA.Salsa::get_GetSalsaAudioPointer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Salsa_get_GetSalsaAudioPointer_mA37D6358FBE167D8B2AAFAC1DB41F1892B3C1298 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_0 = __this->get_audioSrc_4(); NullCheck(L_0); int32_t L_1; L_1 = AudioSource_get_timeSamples_m2D16DA78011B58C24BCA679B44D2BF832DFCA0BE(L_0, /*hidden argument*/NULL); int32_t L_2 = __this->get_sampleSize_14(); int32_t L_3 = __this->get_playheadBias_18(); return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)((int32_t)L_2/(int32_t)2)))), (int32_t)L_3)); } } // System.Single CrazyMinnow.SALSA.Salsa::ScaleAudio(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Salsa_ScaleAudio_mFC2A90BECE72AED403F54B7E7862E7FA8F95616E (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, float ___audioValue0, const RuntimeMethod* method) { { float L_0 = ___audioValue0; float L_1 = __this->get_loCutoff_26(); float L_2 = __this->get_hiCutoff_27(); float L_3 = __this->get_loCutoff_26(); float L_4; L_4 = Mathf_Clamp01_m831CBA1D198C3CDE660E8172A67A4E41BD0D0171(((float)((float)((float)il2cpp_codegen_subtract((float)L_0, (float)L_1))/(float)((float)il2cpp_codegen_subtract((float)L_2, (float)L_3)))), /*hidden argument*/NULL); return L_4; } } // System.Void CrazyMinnow.SALSA.Salsa::AdjustAnalysisSettings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_AdjustAnalysisSettings_m3093BFD52C850590F5D4E3680248AB93315D877D (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { bool V_0 = false; { ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * L_0 = __this->get_clipFrequency_71(); NullCheck(L_0); int32_t L_1; L_1 = ClipFrequency_Invoke_mCCE6328F0965DA5DDFE77AE95D47DB0123CB5B53(L_0, /*hidden argument*/NULL); int32_t L_2 = __this->get_prevAudioFrequency_13(); V_0 = (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)L_2))? 1 : 0)) == ((int32_t)0))? 1 : 0); bool L_3 = V_0; if (L_3) { goto IL_0022; } } { bool L_4 = __this->get_autoAdjustMicrophone_20(); if (!L_4) { goto IL_0028; } } IL_0022: { Salsa_SetPlayheadBias_mA34239734DE7551D7C11713D5E1D704CEFA394BC(__this, /*hidden argument*/NULL); } IL_0028: { bool L_5 = __this->get_needAudioSource_67(); bool L_6 = V_0; if (!((int32_t)((int32_t)L_5&(int32_t)L_6))) { goto IL_0049; } } { Salsa_SetSampleSize_m8CC64F2CC12C0C009EFE53B4CFF8342E52FE4CC2(__this, /*hidden argument*/NULL); ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * L_7 = __this->get_clipFrequency_71(); NullCheck(L_7); int32_t L_8; L_8 = ClipFrequency_Invoke_mCCE6328F0965DA5DDFE77AE95D47DB0123CB5B53(L_7, /*hidden argument*/NULL); __this->set_prevAudioFrequency_13(L_8); } IL_0049: { return; } } // System.Void CrazyMinnow.SALSA.Salsa::SetPlayheadBias() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_SetPlayheadBias_mA34239734DE7551D7C11713D5E1D704CEFA394BC (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->get_autoAdjustMicrophone_20(); if (!L_0) { goto IL_001a; } } { ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * L_1 = __this->get_clipHeadPointer_74(); NullCheck(L_1); int32_t L_2; L_2 = ClipRecordHeadPointer_Invoke_mF7799D5E209C42442281C4E5BCDE6241F52ADF71(L_1, /*hidden argument*/NULL); __this->set_playheadBias_18(L_2); return; } IL_001a: { ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * L_3 = __this->get_clipFrequency_71(); NullCheck(L_3); int32_t L_4; L_4 = ClipFrequency_Invoke_mCCE6328F0965DA5DDFE77AE95D47DB0123CB5B53(L_3, /*hidden argument*/NULL); if ((((int32_t)L_4) <= ((int32_t)((int32_t)30000)))) { goto IL_0031; } } { V_0 = ((int32_t)20); goto IL_0062; } IL_0031: { ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * L_5 = __this->get_clipFrequency_71(); NullCheck(L_5); int32_t L_6; L_6 = ClipFrequency_Invoke_mCCE6328F0965DA5DDFE77AE95D47DB0123CB5B53(L_5, /*hidden argument*/NULL); if ((((int32_t)L_6) <= ((int32_t)((int32_t)20000)))) { goto IL_0048; } } { V_0 = ((int32_t)25); goto IL_0062; } IL_0048: { ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * L_7 = __this->get_clipFrequency_71(); NullCheck(L_7); int32_t L_8; L_8 = ClipFrequency_Invoke_mCCE6328F0965DA5DDFE77AE95D47DB0123CB5B53(L_7, /*hidden argument*/NULL); if ((((int32_t)L_8) <= ((int32_t)((int32_t)10000)))) { goto IL_005f; } } { V_0 = ((int32_t)35); goto IL_0062; } IL_005f: { V_0 = ((int32_t)45); } IL_0062: { ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * L_9 = __this->get_clipFrequency_71(); NullCheck(L_9); int32_t L_10; L_10 = ClipFrequency_Invoke_mCCE6328F0965DA5DDFE77AE95D47DB0123CB5B53(L_9, /*hidden argument*/NULL); int32_t L_11 = V_0; __this->set_playheadBias_18(((int32_t)((int32_t)L_10/(int32_t)L_11))); return; } } // System.Void CrazyMinnow.SALSA.Salsa::SetSampleSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_SetSampleSize_m8CC64F2CC12C0C009EFE53B4CFF8342E52FE4CC2 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_0 = __this->get_audioSrc_4(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Implicit_m3B780F50367611CB9A34F3BF2032585E05DA1BFD(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_00e5; } } { AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_2 = __this->get_audioSrc_4(); NullCheck(L_2); AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * L_3; L_3 = AudioSource_get_clip_mE4454E38D2C0A4C8CC780A435FC1DBD4D47D16DC(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_4; L_4 = Object_op_Implicit_m3B780F50367611CB9A34F3BF2032585E05DA1BFD(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_00e5; } } { ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * L_5 = __this->get_clipFrequency_71(); NullCheck(L_5); int32_t L_6; L_6 = ClipFrequency_Invoke_mCCE6328F0965DA5DDFE77AE95D47DB0123CB5B53(L_5, /*hidden argument*/NULL); if ((((int32_t)L_6) <= ((int32_t)((int32_t)30000)))) { goto IL_0053; } } { ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * L_7 = __this->get_clipChannels_70(); NullCheck(L_7); int32_t L_8; L_8 = ClipChannels_Invoke_m050CF7CE57A9379F76A87D40B8DCEE0659F48AC1(L_7, /*hidden argument*/NULL); __this->set_sampleSize_14(((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)512), (int32_t)L_8))); goto IL_00e5; } IL_0053: { ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * L_9 = __this->get_clipFrequency_71(); NullCheck(L_9); int32_t L_10; L_10 = ClipFrequency_Invoke_mCCE6328F0965DA5DDFE77AE95D47DB0123CB5B53(L_9, /*hidden argument*/NULL); if ((((int32_t)L_10) <= ((int32_t)((int32_t)20000)))) { goto IL_007e; } } { ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * L_11 = __this->get_clipChannels_70(); NullCheck(L_11); int32_t L_12; L_12 = ClipChannels_Invoke_m050CF7CE57A9379F76A87D40B8DCEE0659F48AC1(L_11, /*hidden argument*/NULL); __this->set_sampleSize_14(((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)256), (int32_t)L_12))); goto IL_00e5; } IL_007e: { ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * L_13 = __this->get_clipFrequency_71(); NullCheck(L_13); int32_t L_14; L_14 = ClipFrequency_Invoke_mCCE6328F0965DA5DDFE77AE95D47DB0123CB5B53(L_13, /*hidden argument*/NULL); if ((((int32_t)L_14) <= ((int32_t)((int32_t)15000)))) { goto IL_00a9; } } { ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * L_15 = __this->get_clipChannels_70(); NullCheck(L_15); int32_t L_16; L_16 = ClipChannels_Invoke_m050CF7CE57A9379F76A87D40B8DCEE0659F48AC1(L_15, /*hidden argument*/NULL); __this->set_sampleSize_14(((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)128), (int32_t)L_16))); goto IL_00e5; } IL_00a9: { ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * L_17 = __this->get_clipFrequency_71(); NullCheck(L_17); int32_t L_18; L_18 = ClipFrequency_Invoke_mCCE6328F0965DA5DDFE77AE95D47DB0123CB5B53(L_17, /*hidden argument*/NULL); if ((((int32_t)L_18) <= ((int32_t)((int32_t)10000)))) { goto IL_00d1; } } { ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * L_19 = __this->get_clipChannels_70(); NullCheck(L_19); int32_t L_20; L_20 = ClipChannels_Invoke_m050CF7CE57A9379F76A87D40B8DCEE0659F48AC1(L_19, /*hidden argument*/NULL); __this->set_sampleSize_14(((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)64), (int32_t)L_20))); goto IL_00e5; } IL_00d1: { ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * L_21 = __this->get_clipChannels_70(); NullCheck(L_21); int32_t L_22; L_22 = ClipChannels_Invoke_m050CF7CE57A9379F76A87D40B8DCEE0659F48AC1(L_21, /*hidden argument*/NULL); __this->set_sampleSize_14(((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)32), (int32_t)L_22))); } IL_00e5: { int32_t L_23 = __this->get_sampleSize_14(); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_24 = (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)SZArrayNew(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var, (uint32_t)L_23); __this->set_audioSamples_15(L_24); return; } } // System.Collections.IEnumerator CrazyMinnow.SALSA.Salsa::WaitForAudioSource() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Salsa_WaitForAudioSource_mD5C1A3235BC6993C6CAE64E603B865A5BB3CAD03 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91 * L_0 = (U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91 *)il2cpp_codegen_object_new(U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91_il2cpp_TypeInfo_var); U3CWaitForAudioSourceU3Ed__147__ctor_mE197E75D9AFE8D236310F9436EAE656C351E1B53(L_0, 0, /*hidden argument*/NULL); U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91 * L_1 = L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_2(__this); return L_1; } } // System.Void CrazyMinnow.SALSA.Salsa::UpdateExpressionControllers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_UpdateExpressionControllers_m0E1F6DD71EBF047651EA41A9FF52B244B1B8F844 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m75665EC5C609211A20A209AB0A0B37A1BF4D7190_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m593B20DE4BB1CB044003F8A693DE974C651496DD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mB02C05394DC770A56E5FEB003C77FA0FA3BBB157_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mAD3F2DAD3D0F4DF7B7BC973B3533891358C14A92_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 V_0; memset((&V_0), 0, sizeof(V_0)); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_0 = __this->get_visemes_47(); NullCheck(L_0); Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 L_1; L_1 = List_1_GetEnumerator_mAD3F2DAD3D0F4DF7B7BC973B3533891358C14A92(L_0, /*hidden argument*/List_1_GetEnumerator_mAD3F2DAD3D0F4DF7B7BC973B3533891358C14A92_RuntimeMethod_var); V_0 = L_1; } IL_000c: try { // begin try (depth: 1) { goto IL_0021; } IL_000e: { LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_2; L_2 = Enumerator_get_Current_mB02C05394DC770A56E5FEB003C77FA0FA3BBB157_inline((Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 *)(&V_0), /*hidden argument*/Enumerator_get_Current_mB02C05394DC770A56E5FEB003C77FA0FA3BBB157_RuntimeMethod_var); V_1 = L_2; LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_3 = V_1; NullCheck(L_3); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_4 = L_3->get_expData_0(); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); SalsaUtil_RuntimeUpdateExpressionController_m4AEB9DBBA6101A2DD5B15AFA43266F0665818AA5(L_4, /*hidden argument*/NULL); } IL_0021: { bool L_5; L_5 = Enumerator_MoveNext_m593B20DE4BB1CB044003F8A693DE974C651496DD((Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_m593B20DE4BB1CB044003F8A693DE974C651496DD_RuntimeMethod_var); if (L_5) { goto IL_000e; } } IL_002a: { IL2CPP_LEAVE(0x3A, FINALLY_002c); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002c; } FINALLY_002c: { // begin finally (depth: 1) Enumerator_Dispose_m75665EC5C609211A20A209AB0A0B37A1BF4D7190((Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 *)(&V_0), /*hidden argument*/Enumerator_Dispose_m75665EC5C609211A20A209AB0A0B37A1BF4D7190_RuntimeMethod_var); IL2CPP_END_FINALLY(44) } // end finally (depth: 1) IL2CPP_CLEANUP(44) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x3A, IL_003a) } IL_003a: { bool L_6 = __this->get_usePersistence_38(); Salsa_SetPersistence_mB4B5713E91C1A4FCF8AD04320555588FE58C0125(__this, L_6, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.Salsa::SetPersistence(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_SetPersistence_mB4B5713E91C1A4FCF8AD04320555588FE58C0125 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, bool ___persistence0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m75665EC5C609211A20A209AB0A0B37A1BF4D7190_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mB0BA1641911700A5C3B3107D14A9D3B4EE369648_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m54933EE6D3CBFC64FD2C01531D412C12A7A6C7B4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m593B20DE4BB1CB044003F8A693DE974C651496DD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mB02C05394DC770A56E5FEB003C77FA0FA3BBB157_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mCF88776A724D5ED0F5CC88B6B8BA4C530789EE29_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m19041D0DC52593D6F61EB3FB4E1EB48892A0FE6E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mAD3F2DAD3D0F4DF7B7BC973B3533891358C14A92_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 V_0; memset((&V_0), 0, sizeof(V_0)); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * V_1 = NULL; Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA V_2; memset((&V_2), 0, sizeof(V_2)); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_0 = __this->get_visemes_47(); NullCheck(L_0); Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 L_1; L_1 = List_1_GetEnumerator_mAD3F2DAD3D0F4DF7B7BC973B3533891358C14A92(L_0, /*hidden argument*/List_1_GetEnumerator_mAD3F2DAD3D0F4DF7B7BC973B3533891358C14A92_RuntimeMethod_var); V_0 = L_1; } IL_000c: try { // begin try (depth: 1) { goto IL_0051; } IL_000e: { LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_2; L_2 = Enumerator_get_Current_mB02C05394DC770A56E5FEB003C77FA0FA3BBB157_inline((Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 *)(&V_0), /*hidden argument*/Enumerator_get_Current_mB02C05394DC770A56E5FEB003C77FA0FA3BBB157_RuntimeMethod_var); V_1 = L_2; LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_3 = V_1; NullCheck(L_3); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_4 = L_3->get_expData_0(); NullCheck(L_4); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_5 = L_4->get_components_1(); NullCheck(L_5); Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA L_6; L_6 = List_1_GetEnumerator_m19041D0DC52593D6F61EB3FB4E1EB48892A0FE6E(L_5, /*hidden argument*/List_1_GetEnumerator_m19041D0DC52593D6F61EB3FB4E1EB48892A0FE6E_RuntimeMethod_var); V_2 = L_6; } IL_0027: try { // begin try (depth: 2) { goto IL_0038; } IL_0029: { ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_7; L_7 = Enumerator_get_Current_mCF88776A724D5ED0F5CC88B6B8BA4C530789EE29_inline((Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA *)(&V_2), /*hidden argument*/Enumerator_get_Current_mCF88776A724D5ED0F5CC88B6B8BA4C530789EE29_RuntimeMethod_var); V_3 = L_7; ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_8 = V_3; bool L_9 = ___persistence0; NullCheck(L_8); L_8->set_isPersistent_11(L_9); } IL_0038: { bool L_10; L_10 = Enumerator_MoveNext_m54933EE6D3CBFC64FD2C01531D412C12A7A6C7B4((Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m54933EE6D3CBFC64FD2C01531D412C12A7A6C7B4_RuntimeMethod_var); if (L_10) { goto IL_0029; } } IL_0041: { IL2CPP_LEAVE(0x51, FINALLY_0043); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0043; } FINALLY_0043: { // begin finally (depth: 2) Enumerator_Dispose_mB0BA1641911700A5C3B3107D14A9D3B4EE369648((Enumerator_t32C1B419C27478CED9CA86B7FB6232CB60C8F5FA *)(&V_2), /*hidden argument*/Enumerator_Dispose_mB0BA1641911700A5C3B3107D14A9D3B4EE369648_RuntimeMethod_var); IL2CPP_END_FINALLY(67) } // end finally (depth: 2) IL2CPP_CLEANUP(67) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x51, IL_0051) } IL_0051: { bool L_11; L_11 = Enumerator_MoveNext_m593B20DE4BB1CB044003F8A693DE974C651496DD((Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_m593B20DE4BB1CB044003F8A693DE974C651496DD_RuntimeMethod_var); if (L_11) { goto IL_000e; } } IL_005a: { IL2CPP_LEAVE(0x6A, FINALLY_005c); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_005c; } FINALLY_005c: { // begin finally (depth: 1) Enumerator_Dispose_m75665EC5C609211A20A209AB0A0B37A1BF4D7190((Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 *)(&V_0), /*hidden argument*/Enumerator_Dispose_m75665EC5C609211A20A209AB0A0B37A1BF4D7190_RuntimeMethod_var); IL2CPP_END_FINALLY(92) } // end finally (depth: 1) IL2CPP_CLEANUP(92) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x6A, IL_006a) } IL_006a: { return; } } // System.Void CrazyMinnow.SALSA.Salsa::SortLipsyncExpressionsOnTrigger() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_SortLipsyncExpressionsOnTrigger_m8BFD2E12817ED8E151761135A2B13B3C535A8293 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparison_1__ctor_m2CB0665DA79F3EF427ACC064B30A52126F63BF12_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_m88099AEC681EFE07F57B5B1FE35A5EF033BA6452_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CSortLipsyncExpressionsOnTriggerU3Eb__150_0_m046C809C00D58C3FA06EECFB4D83CB700DB1E28D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 * G_B4_0 = NULL; List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * G_B4_1 = NULL; Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 * G_B3_0 = NULL; List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * G_B3_1 = NULL; { List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_0 = __this->get_visemes_47(); NullCheck(L_0); int32_t L_1; L_1 = List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_inline(L_0, /*hidden argument*/List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); if (L_1) { goto IL_000e; } } { return; } IL_000e: { List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_2 = __this->get_visemes_47(); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_il2cpp_TypeInfo_var); Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 * L_3 = ((U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_il2cpp_TypeInfo_var))->get_U3CU3E9__150_0_1(); Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 * L_4 = L_3; G_B3_0 = L_4; G_B3_1 = L_2; if (L_4) { G_B4_0 = L_4; G_B4_1 = L_2; goto IL_0033; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_il2cpp_TypeInfo_var); U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2 * L_5 = ((U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 * L_6 = (Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 *)il2cpp_codegen_object_new(Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0_il2cpp_TypeInfo_var); Comparison_1__ctor_m2CB0665DA79F3EF427ACC064B30A52126F63BF12(L_6, L_5, (intptr_t)((intptr_t)U3CU3Ec_U3CSortLipsyncExpressionsOnTriggerU3Eb__150_0_m046C809C00D58C3FA06EECFB4D83CB700DB1E28D_RuntimeMethod_var), /*hidden argument*/Comparison_1__ctor_m2CB0665DA79F3EF427ACC064B30A52126F63BF12_RuntimeMethod_var); Comparison_1_t4DEB0E60FFC02E06716E3E26E35482DACC940FD0 * L_7 = L_6; ((U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_il2cpp_TypeInfo_var))->set_U3CU3E9__150_0_1(L_7); G_B4_0 = L_7; G_B4_1 = G_B3_1; } IL_0033: { NullCheck(G_B4_1); List_1_Sort_m88099AEC681EFE07F57B5B1FE35A5EF033BA6452(G_B4_1, G_B4_0, /*hidden argument*/List_1_Sort_m88099AEC681EFE07F57B5B1FE35A5EF033BA6452_RuntimeMethod_var); return; } } // System.Void CrazyMinnow.SALSA.Salsa::TurnOffAll() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_TurnOffAll_m6FBDEED841BD8DE16D4372C41C766417513398BC (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m75665EC5C609211A20A209AB0A0B37A1BF4D7190_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m593B20DE4BB1CB044003F8A693DE974C651496DD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mB02C05394DC770A56E5FEB003C77FA0FA3BBB157_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mAD3F2DAD3D0F4DF7B7BC973B3533891358C14A92_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral722CBF7C918ACDCDB2F572739F33CFF2E9AA1C7D); s_Il2CppMethodInitialized = true; } Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 V_0; memset((&V_0), 0, sizeof(V_0)); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * V_1 = NULL; List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * V_2 = NULL; int32_t V_3 = 0; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * G_B10_0 = NULL; Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * G_B10_1 = NULL; ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * G_B9_0 = NULL; Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * G_B9_1 = NULL; float G_B11_0 = 0.0f; ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * G_B11_1 = NULL; Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * G_B11_2 = NULL; { bool L_0; L_0 = Salsa_CheckConfigIsReady_m1F6631A85B7E08D672F38753987809DEA52AEB40(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0009; } } { return; } IL_0009: { List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_1 = __this->get_visemes_47(); NullCheck(L_1); Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 L_2; L_2 = List_1_GetEnumerator_mAD3F2DAD3D0F4DF7B7BC973B3533891358C14A92(L_1, /*hidden argument*/List_1_GetEnumerator_mAD3F2DAD3D0F4DF7B7BC973B3533891358C14A92_RuntimeMethod_var); V_0 = L_2; } IL_0015: try { // begin try (depth: 1) { goto IL_00aa; } IL_001a: { LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_3; L_3 = Enumerator_get_Current_mB02C05394DC770A56E5FEB003C77FA0FA3BBB157_inline((Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 *)(&V_0), /*hidden argument*/Enumerator_get_Current_mB02C05394DC770A56E5FEB003C77FA0FA3BBB157_RuntimeMethod_var); V_1 = L_3; LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_4 = V_1; NullCheck(L_4); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_5 = L_4->get_expData_0(); NullCheck(L_5); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_6 = L_5->get_components_1(); V_2 = L_6; V_3 = 0; goto IL_00a1; } IL_0032: { GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_7; L_7 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_8 = V_1; NullCheck(L_8); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_9 = L_8->get_expData_0(); int32_t L_10 = V_3; bool L_11 = __this->get_warnOnNullRefs_62(); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); bool L_12; L_12 = SalsaUtil_CheckForInvalidComponent_m3DCBA3DC78D34E0C6E1E2C33E012633F46DFABFB(L_7, _stringLiteral722CBF7C918ACDCDB2F572739F33CFF2E9AA1C7D, L_9, L_10, L_11, /*hidden argument*/NULL); if (L_12) { goto IL_009d; } } IL_0051: { List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_13 = V_2; int32_t L_14 = V_3; NullCheck(L_13); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_15; L_15 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_13, L_14, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_15); int32_t L_16 = L_15->get_controlType_2(); if ((((int32_t)L_16) == ((int32_t)8))) { goto IL_009d; } } IL_0060: { List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_17 = V_2; int32_t L_18 = V_3; NullCheck(L_17); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_19; L_19 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_17, L_18, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_19); int32_t L_20 = L_19->get_controlType_2(); if ((((int32_t)L_20) == ((int32_t)7))) { goto IL_009d; } } IL_006f: { List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_21 = V_2; int32_t L_22 = V_3; NullCheck(L_21); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_23; L_23 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_21, L_22, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_24 = V_2; int32_t L_25 = V_3; NullCheck(L_24); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_26; L_26 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_24, L_25, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_26); bool L_27 = L_26->get_isSmoothDisable_10(); G_B9_0 = L_23; G_B9_1 = __this; if (L_27) { G_B10_0 = L_23; G_B10_1 = __this; goto IL_008c; } } IL_0085: { G_B11_0 = (0.0f); G_B11_1 = G_B9_0; G_B11_2 = G_B9_1; goto IL_0098; } IL_008c: { List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_30; L_30 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_28, L_29, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_30); float L_31 = L_30->get_durationOff_9(); G_B11_0 = L_31; G_B11_1 = G_B10_0; G_B11_2 = G_B10_1; } IL_0098: { NullCheck(G_B11_2); Salsa_RegisterComponentOff_m2BA3ADEE9DBDE488FD8CB28B1E1685CB48C9584D(G_B11_2, G_B11_1, G_B11_0, /*hidden argument*/NULL); } IL_009d: { int32_t L_32 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); } IL_00a1: { int32_t L_33 = V_3; List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_34 = V_2; NullCheck(L_34); int32_t L_35; L_35 = List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_inline(L_34, /*hidden argument*/List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_RuntimeMethod_var); if ((((int32_t)L_33) < ((int32_t)L_35))) { goto IL_0032; } } IL_00aa: { bool L_36; L_36 = Enumerator_MoveNext_m593B20DE4BB1CB044003F8A693DE974C651496DD((Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_m593B20DE4BB1CB044003F8A693DE974C651496DD_RuntimeMethod_var); if (L_36) { goto IL_001a; } } IL_00b6: { IL2CPP_LEAVE(0xC6, FINALLY_00b8); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b8; } FINALLY_00b8: { // begin finally (depth: 1) Enumerator_Dispose_m75665EC5C609211A20A209AB0A0B37A1BF4D7190((Enumerator_t5E5398B23B9A2CDF388B3AB851E38BC4403A7F29 *)(&V_0), /*hidden argument*/Enumerator_Dispose_m75665EC5C609211A20A209AB0A0B37A1BF4D7190_RuntimeMethod_var); IL2CPP_END_FINALLY(184) } // end finally (depth: 1) IL2CPP_CLEANUP(184) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xC6, IL_00c6) } IL_00c6: { return; } } // System.Boolean CrazyMinnow.SALSA.Salsa::CheckConfigIsReady() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Salsa_CheckConfigIsReady_m1F6631A85B7E08D672F38753987809DEA52AEB40 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, 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*)&_stringLiteral5583A6C0598CF26694C21D7CA3666DD44488DFC5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral942364C5FE5DD7C4EA573B9FAA2E044856B81D4E); s_Il2CppMethodInitialized = true; } Type_t * G_B4_0 = NULL; String_t* G_B4_1 = NULL; String_t* G_B4_2 = NULL; Type_t * G_B3_0 = NULL; String_t* G_B3_1 = NULL; String_t* G_B3_2 = NULL; String_t* G_B5_0 = NULL; String_t* G_B5_1 = NULL; String_t* G_B5_2 = NULL; { bool L_0 = __this->get_configReady_60(); if (L_0) { goto IL_0045; } } { bool L_1 = __this->get_configNotReadyNotified_61(); if (L_1) { goto IL_0043; } } { String_t* L_2; L_2 = Object_get_name_m0C7BC870ED2F0DC5A2FB09628136CD7D1CB82CFB(__this, /*hidden argument*/NULL); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(__this, /*hidden argument*/NULL); Type_t * L_4 = L_3; G_B3_0 = L_4; G_B3_1 = _stringLiteral5583A6C0598CF26694C21D7CA3666DD44488DFC5; G_B3_2 = L_2; if (L_4) { G_B4_0 = L_4; G_B4_1 = _stringLiteral5583A6C0598CF26694C21D7CA3666DD44488DFC5; G_B4_2 = L_2; goto IL_0028; } } { G_B5_0 = ((String_t*)(NULL)); G_B5_1 = G_B3_1; G_B5_2 = G_B3_2; goto IL_002d; } IL_0028: { NullCheck(G_B4_0); String_t* L_5; L_5 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B4_0); G_B5_0 = L_5; G_B5_1 = G_B4_1; G_B5_2 = G_B4_2; } IL_002d: { String_t* L_6; L_6 = String_Concat_m5D784E6CEEBE99ED8749AA4B9491D926273FD749(G_B5_2, G_B5_1, G_B5_0, _stringLiteral942364C5FE5DD7C4EA573B9FAA2E044856B81D4E, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(L_6, /*hidden argument*/NULL); __this->set_configNotReadyNotified_61((bool)1); } IL_0043: { return (bool)0; } IL_0045: { __this->set_configNotReadyNotified_61((bool)0); return (bool)1; } } // System.Void CrazyMinnow.SALSA.Salsa::DistributeTriggers(CrazyMinnow.SALSA.LerpEasings/EasingType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_DistributeTriggers_m6B4C3933FF8ED0FCE4C4039C614CB2D7E2EA506F (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, int32_t ___easing0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; float V_1 = 0.0f; float V_2 = 0.0f; { V_0 = 0; goto IL_0041; } IL_0004: { int32_t L_0 = V_0; List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_1 = __this->get_visemes_47(); NullCheck(L_1); int32_t L_2; L_2 = List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_inline(L_1, /*hidden argument*/List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); V_1 = ((float)((float)((float)((float)L_0))/(float)((float)((float)L_2)))); float L_3 = V_1; int32_t L_4 = ___easing0; float L_5; L_5 = LerpEasings_Ease_m7A4498758814D0241A90F64213E1D12BFE4B8072(L_3, L_4, /*hidden argument*/NULL); V_2 = L_5; List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_6 = __this->get_visemes_47(); int32_t L_7 = V_0; NullCheck(L_6); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_8; L_8 = List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_inline(L_6, L_7, /*hidden argument*/List_1_get_Item_m5D26B34F291CBE8AE291DC51CB594984D096D806_RuntimeMethod_var); float L_9 = V_2; float L_10; L_10 = Mathf_Lerp_m04D5C368C4E4F1AB78230C6809A6651951A52C86((0.0f), (1.0f), L_9, /*hidden argument*/NULL); NullCheck(L_8); L_8->set_trigger_1(L_10); int32_t L_11 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_0041: { int32_t L_12 = V_0; List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_13 = __this->get_visemes_47(); NullCheck(L_13); int32_t L_14; L_14 = List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_inline(L_13, /*hidden argument*/List_1_get_Count_mDD8DDBF4966BB963F17A683BF401DE480F0F1FA5_RuntimeMethod_var); if ((((int32_t)L_12) < ((int32_t)L_14))) { goto IL_0004; } } { return; } } // System.Void CrazyMinnow.SALSA.Salsa::SalsaUndoRedoCallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_SalsaUndoRedoCallback_m9E35205369478702613A00D62AF7D4D19CFA5F01 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->get_coroWaitForSalsa_58(); if (!L_0) { goto IL_0009; } } { return; } IL_0009: { RuntimeObject* L_1; L_1 = Salsa_WaitForSalsa_m2815A25D22FBA78003ACB8A97A718EBD803853EC(__this, /*hidden argument*/NULL); __this->set_coroWaitForSalsa_58(L_1); RuntimeObject* L_2 = __this->get_coroWaitForSalsa_58(); Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_3; L_3 = MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_2, /*hidden argument*/NULL); return; } } // System.Collections.IEnumerator CrazyMinnow.SALSA.Salsa::WaitForSalsa() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Salsa_WaitForSalsa_m2815A25D22FBA78003ACB8A97A718EBD803853EC (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498 * L_0 = (U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498 *)il2cpp_codegen_object_new(U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498_il2cpp_TypeInfo_var); U3CWaitForSalsaU3Ed__155__ctor_m983EF20D01BE513D82650FC8745EB26066175A0B(L_0, 0, /*hidden argument*/NULL); U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498 * L_1 = L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_2(__this); return L_1; } } // System.Single CrazyMinnow.SALSA.Salsa::SalsaLssGetExternalAnalysisValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Salsa_SalsaLssGetExternalAnalysisValue_m78B4642FEBEB85125DE4442A62319EE38F61BD65 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { float L_0 = __this->get_analysisValue_11(); return L_0; } } // System.Boolean CrazyMinnow.SALSA.Salsa::SalsaLssGetAudioClipData(System.Single[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Salsa_SalsaLssGetAudioClipData_m245A41E162AED46736AE145FB8987D9D1F18B465 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audiodata0, int32_t ___datapointer1, const RuntimeMethod* method) { { AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_0 = __this->get_audioSrc_4(); NullCheck(L_0); AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * L_1; L_1 = AudioSource_get_clip_mE4454E38D2C0A4C8CC780A435FC1DBD4D47D16DC(L_0, /*hidden argument*/NULL); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_2 = ___audiodata0; int32_t L_3 = ___datapointer1; NullCheck(L_1); bool L_4; L_4 = AudioClip_GetData_m2D7410645789EBED93CAA8146D271C79156E2CB0(L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Int32 CrazyMinnow.SALSA.Salsa::SalsaLssGetBufferPointer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Salsa_SalsaLssGetBufferPointer_m558B4CA2A493CEFEBE66458AA4F2AF3EB38E5979 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_microphoneRecordHeadPointer_21(); return L_0; } } // System.Int32 CrazyMinnow.SALSA.Salsa::SalsaLssGetAudioClipSampleCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Salsa_SalsaLssGetAudioClipSampleCount_m7E15A76B68C9161F693ACF81336222B7F3CEF485 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_0 = __this->get_audioSrc_4(); NullCheck(L_0); AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * L_1; L_1 = AudioSource_get_clip_mE4454E38D2C0A4C8CC780A435FC1DBD4D47D16DC(L_0, /*hidden argument*/NULL); NullCheck(L_1); int32_t L_2; L_2 = AudioClip_get_samples_m741BFBA562FBFDBE67AFE98A38B1B4A871D2D567(L_1, /*hidden argument*/NULL); return L_2; } } // System.Int32 CrazyMinnow.SALSA.Salsa::SalsaLssGetAudioClipFrequency() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Salsa_SalsaLssGetAudioClipFrequency_mDE74E4402B69164D77E27E5B4313BE2B4C14368F (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_0 = __this->get_audioSrc_4(); NullCheck(L_0); AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * L_1; L_1 = AudioSource_get_clip_mE4454E38D2C0A4C8CC780A435FC1DBD4D47D16DC(L_0, /*hidden argument*/NULL); NullCheck(L_1); int32_t L_2; L_2 = AudioClip_get_frequency_m5346F253EE3761A2535B20E0E27B6AB0B875BFCD(L_1, /*hidden argument*/NULL); return L_2; } } // System.Int32 CrazyMinnow.SALSA.Salsa::SalsaLssGetAudioClipChannels() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Salsa_SalsaLssGetAudioClipChannels_mDF1EE8692AFD84D77FC340DC77E5B1BE6E22C691 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_0 = __this->get_audioSrc_4(); NullCheck(L_0); AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * L_1; L_1 = AudioSource_get_clip_mE4454E38D2C0A4C8CC780A435FC1DBD4D47D16DC(L_0, /*hidden argument*/NULL); NullCheck(L_1); int32_t L_2; L_2 = AudioClip_get_channels_m7592B378317BFA41DF2228636124E4DD5B86D3B8(L_1, /*hidden argument*/NULL); return L_2; } } // System.Void CrazyMinnow.SALSA.Salsa::OnApplicationQuit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa_OnApplicationQuit_m3C9F202B5B1184117E10739DE47BC397005AAD58 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { __this->set_isAppQuitting_63((bool)1); return; } } // System.Void CrazyMinnow.SALSA.Salsa::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa__ctor_m009A32DD10B776DB9C12DE3FA0BCD6E9472FADD6 (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC4ECA0D4A96ACB515DE3CB9E3D1E95082E0AA203_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->set_sampleSize_14(((int32_t)512)); __this->set_audioUpdateDelay_16((0.0799999982f)); __this->set_playheadBias_18(((int32_t)2800)); __this->set_autoAdjustAnalysis_19((bool)1); __this->set_silencePulseThreshold_23(3); __this->set_loCutoff_26((0.0299999993f)); __this->set_hiCutoff_27((0.75f)); __this->set_advDynPrimaryBias_29((0.5f)); __this->set_advDynJitterAmount_31((0.25f)); __this->set_advDynJitterProb_32((0.25f)); __this->set_advDynRollback_36((0.300000012f)); __this->set_globalFrac_37((1.0f)); __this->set_globalDurON_40((0.0799999982f)); __this->set_globalDurOFF_41((0.0599999987f)); __this->set_globalEasing_46(4); List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 * L_0 = (List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69 *)il2cpp_codegen_object_new(List_1_tC531EAE234B4BB75BFF10BEE28896A4496906A69_il2cpp_TypeInfo_var); List_1__ctor_mC4ECA0D4A96ACB515DE3CB9E3D1E95082E0AA203(L_0, /*hidden argument*/List_1__ctor_mC4ECA0D4A96ACB515DE3CB9E3D1E95082E0AA203_RuntimeMethod_var); __this->set_visemes_47(L_0); __this->set_prevTriggeredIndex_48((-1)); __this->set_secondaryMixTrigger_49((-1)); __this->set_configReady_60((bool)1); __this->set_warnOnNullRefs_62((bool)1); __this->set_delegatesWired_65((bool)1); __this->set_useAudioAnalysis_66((bool)1); __this->set_needAudioSource_67((bool)1); MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__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 CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaAdvancedDynamicsSilenceAnalyzer_Start_m895BC730482B1F8A3F38B52D9EB6C3178A0C97A6 (SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisSalsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_m6ECD2880E8C4B788B2F9D75B2A53F0898FBEE0B0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaAdvancedDynamicsSilenceAnalyzer_SalsaAdsaCheckForSilence_m4DCFEF43414EB518FE260DB0837394CFE168128C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_0 = __this->get_salsaInstance_4(); NullCheck(L_0); bool L_1 = L_0->get_useExternalAnalysis_6(); if (!L_1) { goto IL_0013; } } { IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); Object_Destroy_mBDC17991A372E11E2E485EFC5C72F58972CBEC0F(__this, /*hidden argument*/NULL); } IL_0013: { __this->set_silenceHits_11(0); int32_t L_2 = __this->get_bufferSize_5(); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_3 = (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)SZArrayNew(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_samples_6(L_3); Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_4; L_4 = Component_GetComponent_TisSalsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_m6ECD2880E8C4B788B2F9D75B2A53F0898FBEE0B0(__this, /*hidden argument*/Component_GetComponent_TisSalsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B_m6ECD2880E8C4B788B2F9D75B2A53F0898FBEE0B0_RuntimeMethod_var); __this->set_salsaInstance_4(L_4); SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB * L_5 = __this->get_silenceAnalyzer_13(); if (L_5) { goto IL_0051; } } { SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB * L_6 = (SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB *)il2cpp_codegen_object_new(SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB_il2cpp_TypeInfo_var); SilenceAnalyzer__ctor_m809747F30F21CBCFBFC6A519F7FDEDBE865F5884(L_6, __this, (intptr_t)((intptr_t)SalsaAdvancedDynamicsSilenceAnalyzer_SalsaAdsaCheckForSilence_m4DCFEF43414EB518FE260DB0837394CFE168128C_RuntimeMethod_var), /*hidden argument*/NULL); __this->set_silenceAnalyzer_13(L_6); } IL_0051: { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_7 = __this->get_salsaInstance_4(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_8; L_8 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_7, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (L_8) { goto IL_0072; } } { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_9 = __this->get_salsaInstance_4(); NullCheck(L_9); AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_10 = L_9->get_audioSrc_4(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_11; L_11 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_10, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_11) { goto IL_0079; } } IL_0072: { __this->set_salsaCanAnalyzeAudio_12((bool)0); } IL_0079: { return; } } // System.Void CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::OnEnable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaAdvancedDynamicsSilenceAnalyzer_OnEnable_m8B1C2CE3CBF052FD26069DF1433ED19A2C757BB2 (SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1__ctor_m06CBEE3FD45E335A0199C7D1654191E2F73D9B10_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaAdvancedDynamicsSilenceAnalyzer_OnSalsaAudioSourceFound_m2B5CC1BE364C53CAD459120ABE13CC61448E57FA_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_0 = (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)il2cpp_codegen_object_new(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var); EventHandler_1__ctor_m06CBEE3FD45E335A0199C7D1654191E2F73D9B10(L_0, __this, (intptr_t)((intptr_t)SalsaAdvancedDynamicsSilenceAnalyzer_OnSalsaAudioSourceFound_m2B5CC1BE364C53CAD459120ABE13CC61448E57FA_RuntimeMethod_var), /*hidden argument*/EventHandler_1__ctor_m06CBEE3FD45E335A0199C7D1654191E2F73D9B10_RuntimeMethod_var); Salsa_add_AudioSourceFound_mF4C8A6D6154DB64334C3A9C4B43DF78DE1CD8A79(L_0, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::OnDisable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaAdvancedDynamicsSilenceAnalyzer_OnDisable_m94964AFB0D7CB4FF880224102B6EE648CBB8B401 (SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1__ctor_m06CBEE3FD45E335A0199C7D1654191E2F73D9B10_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaAdvancedDynamicsSilenceAnalyzer_OnSalsaAudioSourceFound_m2B5CC1BE364C53CAD459120ABE13CC61448E57FA_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 * L_0 = (EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8 *)il2cpp_codegen_object_new(EventHandler_1_t48A770AFE60A1FABBFFBD93FC1FEE91612245BE8_il2cpp_TypeInfo_var); EventHandler_1__ctor_m06CBEE3FD45E335A0199C7D1654191E2F73D9B10(L_0, __this, (intptr_t)((intptr_t)SalsaAdvancedDynamicsSilenceAnalyzer_OnSalsaAudioSourceFound_m2B5CC1BE364C53CAD459120ABE13CC61448E57FA_RuntimeMethod_var), /*hidden argument*/EventHandler_1__ctor_m06CBEE3FD45E335A0199C7D1654191E2F73D9B10_RuntimeMethod_var); Salsa_remove_AudioSourceFound_mA38E57B716D9E4994DEC9EED6FEFC3C7353B184B(L_0, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::OnSalsaAudioSourceFound(System.Object,CrazyMinnow.SALSA.Salsa/SalsaNotificationArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaAdvancedDynamicsSilenceAnalyzer_OnSalsaAudioSourceFound_m2B5CC1BE364C53CAD459120ABE13CC61448E57FA (SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1 * __this, RuntimeObject * ___sender0, SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * ___args1, 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; } { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_0 = __this->get_salsaInstance_4(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0028; } } { SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * L_2 = ___args1; NullCheck(L_2); Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_3 = L_2->get_salsaInstance_1(); Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_4 = __this->get_salsaInstance_4(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_5; L_5 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0028; } } { __this->set_salsaCanAnalyzeAudio_12((bool)1); } IL_0028: { return; } } // System.Void CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::LateUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaAdvancedDynamicsSilenceAnalyzer_LateUpdate_m82BE925F8C7AF794EC189F5F9588ABB6DD712ACB (SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_salsaCanAnalyzeAudio_12(); if (!L_0) { goto IL_001a; } } { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_1 = __this->get_salsaInstance_4(); NullCheck(L_1); AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_2 = L_1->get_audioSrc_4(); NullCheck(L_2); bool L_3; L_3 = AudioSource_get_isPlaying_mEA69477C77D542971F7B454946EF25DFBE0AF6A8(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0027; } } IL_001a: { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_4 = __this->get_salsaInstance_4(); NullCheck(L_4); bool L_5 = L_4->get_needAudioSource_67(); if (L_5) { goto IL_002d; } } IL_0027: { SalsaAdvancedDynamicsSilenceAnalyzer_ProcessAudioStream_m430CEF0591446308550122109CD79FBEB1593850(__this, /*hidden argument*/NULL); } IL_002d: { return; } } // System.Void CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::ProcessAudioStream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaAdvancedDynamicsSilenceAnalyzer_ProcessAudioStream_m430CEF0591446308550122109CD79FBEB1593850 (SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; int32_t G_B8_0 = 0; { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_0 = __this->get_salsaInstance_4(); NullCheck(L_0); ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * L_1 = L_0->get_clipSampleCount_72(); NullCheck(L_1); int32_t L_2; L_2 = ClipSampleCount_Invoke_mF0F112CD0A4C2CBA9D2F0E4D3B737CD741DEAF0E(L_1, /*hidden argument*/NULL); V_1 = L_2; Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_3 = __this->get_salsaInstance_4(); int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5; L_5 = Salsa_CalcClipOffsetPointer_m3E8BAD6CDE9870C60BDE881ABA42D665894FCEEE(L_3, L_4, /*hidden argument*/NULL); V_0 = L_5; int32_t L_6 = __this->get_bufferSize_5(); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_7 = __this->get_samples_6(); NullCheck(L_7); if ((((int32_t)L_6) == ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))) { goto IL_003f; } } { int32_t L_8 = __this->get_bufferSize_5(); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_9 = (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)SZArrayNew(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var, (uint32_t)L_8); __this->set_samples_6(L_9); } IL_003f: { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_10 = __this->get_salsaInstance_4(); int32_t L_11 = V_0; int32_t L_12 = V_1; NullCheck(L_10); bool L_13; L_13 = Salsa_IsOffsetPointerOutOfBounds_m0D07F31F51E1288168FAE5B5175E95E283FF118C(L_10, L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_004f; } } { return; } IL_004f: { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_14 = __this->get_salsaInstance_4(); NullCheck(L_14); GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * L_15 = L_14->get_getClipData_73(); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_16 = __this->get_samples_6(); int32_t L_17 = V_0; NullCheck(L_15); bool L_18; L_18 = GetClipData_Invoke_m967F4557D5DD4481C89F64C468BE81E864D62615(L_15, L_16, L_17, /*hidden argument*/NULL); SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB * L_19 = __this->get_silenceAnalyzer_13(); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_20 = __this->get_samples_6(); NullCheck(L_19); bool L_21; L_21 = SilenceAnalyzer_Invoke_m08C4B76A403B7F286DD435A00EED1930F9C03C12(L_19, L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_00bf; } } { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_22 = __this->get_salsaInstance_4(); NullCheck(L_22); int32_t L_23; L_23 = Salsa_get_TriggeredIndex_m5F6A4E11FA84288C6833C7B478E3C665EE6D1609_inline(L_22, /*hidden argument*/NULL); if ((((int32_t)L_23) < ((int32_t)0))) { goto IL_00a1; } } { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_24 = __this->get_salsaInstance_4(); float L_25 = __this->get_timingStartPoint_8(); float L_26 = __this->get_timingEndVariance_9(); NullCheck(L_24); bool L_27; L_27 = Salsa_IsWithinPulseCheckInterruptVariance_m6AE690752C299A71A552B0E5BB04616F664310B4(L_24, L_25, L_26, /*hidden argument*/NULL); G_B8_0 = ((int32_t)(L_27)); goto IL_00a2; } IL_00a1: { G_B8_0 = 0; } IL_00a2: { V_2 = (bool)G_B8_0; bool L_28 = V_2; if (!L_28) { goto IL_00bf; } } { int32_t L_29 = __this->get_silenceHits_11(); __this->set_silenceHits_11(((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1))); Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_30 = __this->get_salsaInstance_4(); NullCheck(L_30); Salsa_ProcessSilenceTrigger_m44C31D3AAAE6AD63F4AC3B283368F1B3BB92939B(L_30, /*hidden argument*/NULL); } IL_00bf: { return; } } // System.Boolean CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::SalsaAdsaCheckForSilence(System.Single[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SalsaAdvancedDynamicsSilenceAnalyzer_SalsaAdsaCheckForSilence_m4DCFEF43414EB518FE260DB0837394CFE168128C (SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1 * __this, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___samples0, const RuntimeMethod* method) { float V_0 = 0.0f; int32_t V_1 = 0; int32_t V_2 = 0; bool V_3 = false; int32_t V_4 = 0; bool V_5 = false; float G_B4_0 = 0.0f; { V_0 = (0.0f); V_1 = 0; Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_0 = __this->get_salsaInstance_4(); NullCheck(L_0); ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * L_1 = L_0->get_clipChannels_70(); NullCheck(L_1); int32_t L_2; L_2 = ClipChannels_Invoke_m050CF7CE57A9379F76A87D40B8DCEE0659F48AC1(L_1, /*hidden argument*/NULL); V_2 = L_2; V_4 = 0; goto IL_005f; } IL_001e: { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_3 = ___samples0; int32_t L_4 = V_4; NullCheck(L_3); int32_t L_5 = L_4; float L_6 = (L_3)->GetAt(static_cast(L_5)); if ((((float)L_6) < ((float)(0.0f)))) { goto IL_002f; } } { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_7 = ___samples0; int32_t L_8 = V_4; NullCheck(L_7); int32_t L_9 = L_8; float L_10 = (L_7)->GetAt(static_cast(L_9)); G_B4_0 = L_10; goto IL_0039; } IL_002f: { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_11 = ___samples0; int32_t L_12 = V_4; NullCheck(L_11); int32_t L_13 = L_12; float L_14 = (L_11)->GetAt(static_cast(L_13)); G_B4_0 = ((float)il2cpp_codegen_multiply((float)L_14, (float)(-1.0f))); } IL_0039: { V_0 = G_B4_0; float L_15 = V_0; float L_16 = __this->get_silenceThreshold_7(); Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_17 = __this->get_salsaInstance_4(); NullCheck(L_17); float L_18 = L_17->get_loCutoff_26(); V_5 = (bool)((((float)L_15) > ((float)((float)il2cpp_codegen_multiply((float)L_16, (float)L_18))))? 1 : 0); bool L_19 = V_5; if (!L_19) { goto IL_0059; } } { int32_t L_20 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0059: { int32_t L_21 = V_4; int32_t L_22 = V_2; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)L_22)); } IL_005f: { int32_t L_23 = V_4; SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_24 = ___samples0; NullCheck(L_24); if ((((int32_t)L_23) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))))) { goto IL_001e; } } { int32_t L_25 = V_1; SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_26 = ___samples0; NullCheck(L_26); float L_27 = __this->get_silenceSampleWeight_10(); V_3 = (bool)((((float)((float)((float)L_25))) < ((float)((float)il2cpp_codegen_multiply((float)((float)((float)((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))))), (float)((float)il2cpp_codegen_subtract((float)(1.0f), (float)L_27))))))? 1 : 0); bool L_28 = V_3; return L_28; } } // System.Void CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaAdvancedDynamicsSilenceAnalyzer__ctor_mC3E304EEE4DF57BAA51C193C051A37638732E1A0 (SalsaAdvancedDynamicsSilenceAnalyzer_tD480EF53C45D26A6AEEC1B0F43760E5CCD29F7B1 * __this, const RuntimeMethod* method) { { __this->set_bufferSize_5(((int32_t)512)); __this->set_silenceThreshold_7((0.600000024f)); __this->set_timingStartPoint_8((0.400000006f)); __this->set_timingEndVariance_9((0.970000029f)); __this->set_silenceSampleWeight_10((0.949999988f)); __this->set_salsaCanAnalyzeAudio_12((bool)1); MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__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.Single CrazyMinnow.SALSA.SalsaAudioAnalyzer::CalcSimple(System.Int32,System.Single[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SalsaAudioAnalyzer_CalcSimple_mE5368AC3008C22C884D1AFAA14CD30213B01C8D5 (int32_t ___channels0, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioData1, const RuntimeMethod* method) { float V_0 = 0.0f; int32_t V_1 = 0; { V_0 = (0.0f); V_1 = 0; goto IL_0018; } IL_000a: { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_0 = ___audioData1; int32_t L_1 = V_1; NullCheck(L_0); int32_t L_2 = L_1; float L_3 = (L_0)->GetAt(static_cast(L_2)); float L_4 = V_0; if ((!(((float)L_3) > ((float)L_4)))) { goto IL_0014; } } { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_5 = ___audioData1; int32_t L_6 = V_1; NullCheck(L_5); int32_t L_7 = L_6; float L_8 = (L_5)->GetAt(static_cast(L_7)); V_0 = L_8; } IL_0014: { int32_t L_9 = V_1; int32_t L_10 = ___channels0; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)L_10)); } IL_0018: { int32_t L_11 = V_1; SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_12 = ___audioData1; NullCheck(L_12); if ((((int32_t)L_11) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))) { goto IL_000a; } } { float L_13 = V_0; return L_13; } } // System.Single CrazyMinnow.SALSA.SalsaAudioAnalyzer::SalsaLssCalcSimpleAbs(System.Int32,System.Single[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SalsaAudioAnalyzer_SalsaLssCalcSimpleAbs_m06F451CE1F610DFC5973EC05349551732156AFD6 (int32_t ___channels0, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioData1, const RuntimeMethod* method) { float V_0 = 0.0f; float V_1 = 0.0f; int32_t V_2 = 0; float G_B4_0 = 0.0f; { V_0 = (0.0f); V_1 = (0.0f); V_2 = 0; goto IL_0033; } IL_0010: { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_0 = ___audioData1; int32_t L_1 = V_2; NullCheck(L_0); int32_t L_2 = L_1; float L_3 = (L_0)->GetAt(static_cast(L_2)); if ((((float)L_3) < ((float)(0.0f)))) { goto IL_001f; } } { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_4 = ___audioData1; int32_t L_5 = V_2; NullCheck(L_4); int32_t L_6 = L_5; float L_7 = (L_4)->GetAt(static_cast(L_6)); G_B4_0 = L_7; goto IL_0028; } IL_001f: { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_8 = ___audioData1; int32_t L_9 = V_2; NullCheck(L_8); int32_t L_10 = L_9; float L_11 = (L_8)->GetAt(static_cast(L_10)); G_B4_0 = ((float)il2cpp_codegen_multiply((float)L_11, (float)(-1.0f))); } IL_0028: { V_1 = G_B4_0; float L_12 = V_1; float L_13 = V_0; if ((!(((float)L_12) > ((float)L_13)))) { goto IL_002f; } } { float L_14 = V_1; V_0 = L_14; } IL_002f: { int32_t L_15 = V_2; int32_t L_16 = ___channels0; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16)); } IL_0033: { int32_t L_17 = V_2; SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_18 = ___audioData1; NullCheck(L_18); if ((((int32_t)L_17) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))) { goto IL_0010; } } { float L_19 = V_0; return L_19; } } // System.Single CrazyMinnow.SALSA.SalsaAudioAnalyzer::CalcSumThreshold(System.Int32,System.Single[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SalsaAudioAnalyzer_CalcSumThreshold_m23BF54D52C909A2D5B40E3E3FC24AE3CD4614DD7 (int32_t ___channels0, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioData1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } float V_0 = 0.0f; float V_1 = 0.0f; int32_t V_2 = 0; float G_B4_0 = 0.0f; { V_0 = (0.0f); V_1 = (0.0f); V_2 = 0; goto IL_003f; } IL_0010: { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_0 = ___audioData1; int32_t L_1 = V_2; NullCheck(L_0); int32_t L_2 = L_1; float L_3 = (L_0)->GetAt(static_cast(L_2)); if ((((float)L_3) < ((float)(0.0f)))) { goto IL_001f; } } { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_4 = ___audioData1; int32_t L_5 = V_2; NullCheck(L_4); int32_t L_6 = L_5; float L_7 = (L_4)->GetAt(static_cast(L_6)); G_B4_0 = L_7; goto IL_0028; } IL_001f: { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_8 = ___audioData1; int32_t L_9 = V_2; NullCheck(L_8); int32_t L_10 = L_9; float L_11 = (L_8)->GetAt(static_cast(L_10)); G_B4_0 = ((float)il2cpp_codegen_multiply((float)L_11, (float)(-1.0f))); } IL_0028: { V_1 = G_B4_0; IL2CPP_RUNTIME_CLASS_INIT(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var); float L_12 = ((SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields*)il2cpp_codegen_static_fields_for(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var))->get__dataSum_1(); float L_13 = V_1; ((SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields*)il2cpp_codegen_static_fields_for(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var))->set__dataSum_1(((float)il2cpp_codegen_add((float)L_12, (float)L_13))); float L_14 = V_1; float L_15 = V_0; if ((!(((float)L_14) > ((float)L_15)))) { goto IL_003b; } } { float L_16 = V_1; V_0 = L_16; } IL_003b: { int32_t L_17 = V_2; int32_t L_18 = ___channels0; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18)); } IL_003f: { int32_t L_19 = V_2; SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_20 = ___audioData1; NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))))) { goto IL_0010; } } { IL2CPP_RUNTIME_CLASS_INIT(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var); float L_21 = ((SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields*)il2cpp_codegen_static_fields_for(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var))->get__dataSum_1(); float L_22 = ((SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields*)il2cpp_codegen_static_fields_for(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var))->get__dataSumThreshold_0(); if ((((float)L_21) > ((float)L_22))) { goto IL_0057; } } { return (0.0f); } IL_0057: { float L_23 = V_0; return L_23; } } // System.Single CrazyMinnow.SALSA.SalsaAudioAnalyzer::CalcSampleThreshold(System.Int32,System.Single[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SalsaAudioAnalyzer_CalcSampleThreshold_m0AE0DBA7FDE8940EAFCE40DE4686A318B931428F (int32_t ___channels0, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioData1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } float V_0 = 0.0f; float V_1 = 0.0f; int32_t V_2 = 0; float G_B4_0 = 0.0f; { V_0 = (0.0f); V_1 = (0.0f); V_2 = 0; goto IL_0047; } IL_0010: { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_0 = ___audioData1; int32_t L_1 = V_2; NullCheck(L_0); int32_t L_2 = L_1; float L_3 = (L_0)->GetAt(static_cast(L_2)); if ((((float)L_3) < ((float)(0.0f)))) { goto IL_001f; } } { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_4 = ___audioData1; int32_t L_5 = V_2; NullCheck(L_4); int32_t L_6 = L_5; float L_7 = (L_4)->GetAt(static_cast(L_6)); G_B4_0 = L_7; goto IL_0028; } IL_001f: { SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_8 = ___audioData1; int32_t L_9 = V_2; NullCheck(L_8); int32_t L_10 = L_9; float L_11 = (L_8)->GetAt(static_cast(L_10)); G_B4_0 = ((float)il2cpp_codegen_multiply((float)L_11, (float)(-1.0f))); } IL_0028: { V_1 = G_B4_0; float L_12 = V_1; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_003d; } } { IL2CPP_RUNTIME_CLASS_INIT(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var); int32_t L_13 = ((SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields*)il2cpp_codegen_static_fields_for(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var))->get__dataCount_3(); ((SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields*)il2cpp_codegen_static_fields_for(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var))->set__dataCount_3(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_003d: { float L_14 = V_1; float L_15 = V_0; if ((!(((float)L_14) > ((float)L_15)))) { goto IL_0043; } } { float L_16 = V_1; V_0 = L_16; } IL_0043: { int32_t L_17 = V_2; int32_t L_18 = ___channels0; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18)); } IL_0047: { int32_t L_19 = V_2; SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_20 = ___audioData1; NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))))) { goto IL_0010; } } { IL2CPP_RUNTIME_CLASS_INIT(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var); int32_t L_21 = ((SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields*)il2cpp_codegen_static_fields_for(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var))->get__dataCount_3(); int32_t L_22 = ((SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields*)il2cpp_codegen_static_fields_for(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var))->get__dataCountThreshold_2(); if ((((int32_t)L_21) > ((int32_t)L_22))) { goto IL_005f; } } { return (0.0f); } IL_005f: { float L_23 = V_0; return L_23; } } // System.Void CrazyMinnow.SALSA.SalsaAudioAnalyzer::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaAudioAnalyzer__cctor_m6F39C151DA9CCE3FAF01391C67C802F3C0A627C3 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ((SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields*)il2cpp_codegen_static_fields_for(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var))->set__dataSumThreshold_0((2.0f)); ((SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields*)il2cpp_codegen_static_fields_for(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var))->set__dataSum_1((0.0f)); ((SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields*)il2cpp_codegen_static_fields_for(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var))->set__dataCountThreshold_2(((int32_t)10)); ((SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_StaticFields*)il2cpp_codegen_static_fields_for(SalsaAudioAnalyzer_t63E580BDB0FCF1A4BC3DCF75D9F33F134156CF16_il2cpp_TypeInfo_var))->set__dataCount_3(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 CrazyMinnow.SALSA.SalsaSettings::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaSettings__cctor_mCAD58A9D209EAA3B96130D5697EF6E7FEF45F012 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B8146FB95E4F51B29DA41EB5F6D60F8FD0ECF21); s_Il2CppMethodInitialized = true; } { ((SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_StaticFields*)il2cpp_codegen_static_fields_for(SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var))->set_RenderPipelineTextureName_0(_stringLiteral4B8146FB95E4F51B29DA41EB5F6D60F8FD0ECF21); 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 CrazyMinnow.SALSA.SalsaSettingsConfigurator::SetName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaSettingsConfigurator_SetName_m63B08619CA283B2DB353BD1880B435FFE5D59D50 (SalsaSettingsConfigurator_tF024356AC0D8C5BC3A3FFD1D1EDDE9AAB43D7D00 * __this, String_t* ___newName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___newName0; IL2CPP_RUNTIME_CLASS_INIT(SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var); ((SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_StaticFields*)il2cpp_codegen_static_fields_for(SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var))->set_RenderPipelineTextureName_0(L_0); return; } } // System.Void CrazyMinnow.SALSA.SalsaSettingsConfigurator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaSettingsConfigurator__ctor_m5151D118DC2F28A20997A2097FB2269CC4538D2F (SalsaSettingsConfigurator_tF024356AC0D8C5BC3A3FFD1D1EDDE9AAB43D7D00 * __this, const RuntimeMethod* method) { { MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__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.Single CrazyMinnow.SALSA.SalsaUtil::ScaleRange(System.Single,System.Single,System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SalsaUtil_ScaleRange_m94FB5ACE857079234DFAA90ED478973741E686EB (float ___val0, float ___inMin1, float ___inMax2, float ___outMin3, float ___outMax4, const RuntimeMethod* method) { float V_0 = 0.0f; { float L_0 = ___val0; float L_1 = ___inMin1; float L_2 = ___inMax2; float L_3; L_3 = Mathf_Clamp_m5EA831B060853D4246B8394A30599A0021F80AFF(L_0, L_1, L_2, /*hidden argument*/NULL); ___val0 = L_3; float L_4 = ___val0; float L_5 = ___inMin1; float L_6 = ___outMax4; float L_7 = ___outMin3; float L_8 = ___inMax2; float L_9 = ___inMin1; float L_10 = ___outMin3; V_0 = ((float)il2cpp_codegen_add((float)((float)((float)((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_subtract((float)L_4, (float)L_5)), (float)((float)il2cpp_codegen_subtract((float)L_6, (float)L_7))))/(float)((float)il2cpp_codegen_subtract((float)L_8, (float)L_9)))), (float)L_10)); float L_11 = V_0; float L_12; L_12 = fabsf(L_11); float L_13 = ___outMin3; float L_14 = ___outMax4; float L_15; L_15 = Mathf_Clamp_m5EA831B060853D4246B8394A30599A0021F80AFF(L_12, L_13, L_14, /*hidden argument*/NULL); return L_15; } } // System.String[] CrazyMinnow.SALSA.SalsaUtil::GetBlendShapes(UnityEngine.SkinnedMeshRenderer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* SalsaUtil_GetBlendShapes_m609A7DE3A210F18723D9A421D13975A2FAC08C7E (SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * ___smr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* V_0 = NULL; int32_t V_1 = 0; { SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_0 = ___smr0; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_004b; } } { SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_2 = ___smr0; NullCheck(L_2); Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * L_3; L_3 = SkinnedMeshRenderer_get_sharedMesh_mFD55E307943C1C4B2E2E8632F15B41CCBD8D91F2(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_4; L_4 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_3, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_4) { goto IL_004b; } } { SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_5 = ___smr0; NullCheck(L_5); Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * L_6; L_6 = SkinnedMeshRenderer_get_sharedMesh_mFD55E307943C1C4B2E2E8632F15B41CCBD8D91F2(L_5, /*hidden argument*/NULL); NullCheck(L_6); int32_t L_7; L_7 = Mesh_get_blendShapeCount_mC80CCEA555E9E5609E3497EECF2B03F9B822CB77(L_6, /*hidden argument*/NULL); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)L_7); V_0 = L_8; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = V_0; NullCheck(L_9); if (!(((RuntimeArray*)L_9)->max_length)) { goto IL_0052; } } { V_1 = 0; goto IL_0043; } IL_0030: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_10 = V_0; int32_t L_11 = V_1; SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_12 = ___smr0; NullCheck(L_12); Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * L_13; L_13 = SkinnedMeshRenderer_get_sharedMesh_mFD55E307943C1C4B2E2E8632F15B41CCBD8D91F2(L_12, /*hidden argument*/NULL); int32_t L_14 = V_1; NullCheck(L_13); String_t* L_15; L_15 = Mesh_GetBlendShapeName_mF28E636D7F66608E6FD9152ACD9547B78C895000(L_13, L_14, /*hidden argument*/NULL); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_15); (L_10)->SetAt(static_cast(L_11), (String_t*)L_15); int32_t L_16 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_0043: { int32_t L_17 = V_1; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_18 = V_0; NullCheck(L_18); if ((((int32_t)L_17) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))) { goto IL_0030; } } { goto IL_0052; } IL_004b: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_19 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)0); V_0 = L_19; } IL_0052: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_20 = V_0; return L_20; } } // System.Single CrazyMinnow.SALSA.SalsaUtil::GetTime(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SalsaUtil_GetTime_m78C765D85FA03367E949348B2984576068E04547 (bool ___ignoreTimeScaling0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } float V_0 = 0.0f; float G_B3_0 = 0.0f; { bool L_0; L_0 = Application_get_isPlaying_m0388B541E40404CBB82D6AEB224A29053A0BC58C(/*hidden argument*/NULL); if (!L_0) { goto IL_000e; } } { float L_1; L_1 = Time_get_time_m52C9390086344FA8787001ED5911550D850CE515(/*hidden argument*/NULL); G_B3_0 = L_1; goto IL_0013; } IL_000e: { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); float L_2 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_editorTime_5(); G_B3_0 = L_2; } IL_0013: { V_0 = G_B3_0; bool L_3 = ___ignoreTimeScaling0; if (L_3) { goto IL_0019; } } { float L_4 = V_0; return L_4; } IL_0019: { float L_5; L_5 = Time_get_unscaledTime_mDBF04FC47709E0C1BBBB4BA4BDA5405D8EF632A1(/*hidden argument*/NULL); return L_5; } } // System.String[] CrazyMinnow.SALSA.SalsaUtil::GetAnimatorParameters(UnityEngine.Animator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* SalsaUtil_GetAnimatorParameters_m4DF69C884D7442E35BB1988B4BA2FD22A6460250 (Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * ___animator0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* V_0 = NULL; int32_t V_1 = 0; { Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_0 = ___animator0; NullCheck(L_0); bool L_1; L_1 = Animator_get_isInitialized_mE2537C77C6C8DC4403C0D0C58FAFE755310A8FE0(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_000e; } } { Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_2 = ___animator0; NullCheck(L_2); Animator_Rebind_mE431618F7D87F4CB933C2ECBACD11CB47EA01615(L_2, /*hidden argument*/NULL); } IL_000e: { Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_3 = ___animator0; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_4; L_4 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_3, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_4) { goto IL_0046; } } { Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_5 = ___animator0; NullCheck(L_5); int32_t L_6; L_6 = Animator_get_parameterCount_m87FC9BB7A51F40CFC666600392693821DA5114EB(L_5, /*hidden argument*/NULL); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_7 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)L_6); V_0 = L_7; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = V_0; NullCheck(L_8); if (!(((RuntimeArray*)L_8)->max_length)) { goto IL_004d; } } { V_1 = 0; goto IL_003e; } IL_002b: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = V_0; int32_t L_10 = V_1; Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_11 = ___animator0; int32_t L_12 = V_1; NullCheck(L_11); AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE * L_13; L_13 = Animator_GetParameter_m8E2B8351264BE835BDAE9B6CCB6C99FCB197760D(L_11, L_12, /*hidden argument*/NULL); NullCheck(L_13); String_t* L_14; L_14 = AnimatorControllerParameter_get_name_m210BF40EC0AC18BA2E21F089F3182FE1CFCE3A55(L_13, /*hidden argument*/NULL); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_14); (L_9)->SetAt(static_cast(L_10), (String_t*)L_14); int32_t L_15 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_003e: { int32_t L_16 = V_1; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_17 = V_0; NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))) { goto IL_002b; } } { goto IL_004d; } IL_0046: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_18 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)0); V_0 = L_18; } IL_004d: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_19 = V_0; return L_19; } } // UnityEngine.Color CrazyMinnow.SALSA.SalsaUtil::ConvertColor(System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 SalsaUtil_ConvertColor_m6F4E420FAD49E6236292DFB917E12900804C5988 (int32_t ___r0, int32_t ___g1, int32_t ___b2, int32_t ___a3, const RuntimeMethod* method) { { int32_t L_0 = ___r0; int32_t L_1 = ___g1; int32_t L_2 = ___b2; int32_t L_3 = ___a3; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_4; memset((&L_4), 0, sizeof(L_4)); Color__ctor_m679019E6084BF7A6F82590F66F5F695F6A50ECC5((&L_4), ((float)((float)((float)((float)L_0))/(float)(255.0f))), ((float)((float)((float)((float)L_1))/(float)(255.0f))), ((float)((float)((float)((float)L_2))/(float)(255.0f))), ((float)((float)((float)((float)L_3))/(float)(255.0f))), /*hidden argument*/NULL); return L_4; } } // System.Void CrazyMinnow.SALSA.SalsaUtil::RuntimeUpdateExpressionController(CrazyMinnow.SALSA.Expression) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaUtil_RuntimeUpdateExpressionController_m4AEB9DBBA6101A2DD5B15AFA43266F0665818AA5 (Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * ___expData0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimatorController_t9D96F6465E88F19768634AFD260141CF23B77E01_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8F0928025AE54960E7B1CAC092D6EBBD9F7CA184); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAC6EBEFEDFC7AA6B34D9D79F19B66DC47697070D); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { V_0 = 0; goto IL_03f4; } IL_0007: { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_0 = ___expData0; NullCheck(L_0); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_1 = L_0->get_components_1(); int32_t L_2 = V_0; NullCheck(L_1); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_3; L_3 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_1, L_2, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_3); int32_t L_4 = L_3->get_controlType_2(); V_1 = L_4; int32_t L_5 = V_1; switch (L_5) { case 0: { goto IL_0048; } case 1: { goto IL_00ac; } case 2: { goto IL_0154; } case 3: { goto IL_01b3; } case 4: { goto IL_0271; } case 5: { goto IL_0212; } case 6: { goto IL_02e1; } case 7: { goto IL_0334; } case 8: { goto IL_03a6; } } } { goto IL_03cf; } IL_0048: { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_6 = ___expData0; NullCheck(L_6); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_7 = L_6->get_components_1(); int32_t L_8 = V_0; NullCheck(L_7); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_9; L_9 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_7, L_8, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_10 = ___expData0; NullCheck(L_10); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_11 = L_10->get_controllerVars_2(); int32_t L_12 = V_0; NullCheck(L_11); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_13; L_13 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_11, L_12, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_13); SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_14 = L_13->get_smr_11(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_15 = ___expData0; NullCheck(L_15); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_16 = L_15->get_controllerVars_2(); int32_t L_17 = V_0; NullCheck(L_16); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_18; L_18 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_16, L_17, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_18); int32_t L_19 = L_18->get_blendIndex_12(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_20 = ___expData0; NullCheck(L_20); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_21 = L_20->get_controllerVars_2(); int32_t L_22 = V_0; NullCheck(L_21); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_23; L_23 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_21, L_22, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_23); float L_24 = L_23->get_minShape_13(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_25 = ___expData0; NullCheck(L_25); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_26 = L_25->get_controllerVars_2(); int32_t L_27 = V_0; NullCheck(L_26); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_28; L_28 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_26, L_27, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_28); float L_29 = L_28->get_maxShape_14(); ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * L_30 = (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 *)il2cpp_codegen_object_new(ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95_il2cpp_TypeInfo_var); ShapeController__ctor_m5C516B1FDA7E963D9809304B01136E81F10AEE91(L_30, L_14, L_19, L_24, L_29, (1.0f), /*hidden argument*/NULL); NullCheck(L_9); L_9->set_controller_1(L_30); goto IL_03f0; } IL_00ac: { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_31 = ___expData0; NullCheck(L_31); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_32 = L_31->get_components_1(); int32_t L_33 = V_0; NullCheck(L_32); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_34; L_34 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_32, L_33, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_35 = ___expData0; NullCheck(L_35); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_36 = L_35->get_controllerVars_2(); int32_t L_37 = V_0; NullCheck(L_36); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_38; L_38 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_36, L_37, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_38); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_39 = L_38->get_bone_0(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_40 = ___expData0; NullCheck(L_40); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_41 = L_40->get_controllerVars_2(); int32_t L_42 = V_0; NullCheck(L_41); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_43; L_43 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_41, L_42, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_43); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_44 = L_43->get_startTform_2(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_45 = ___expData0; NullCheck(L_45); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_46 = L_45->get_controllerVars_2(); int32_t L_47 = V_0; NullCheck(L_46); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_48; L_48 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_46, L_47, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_48); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_49 = L_48->get_endTform_3(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_50 = ___expData0; NullCheck(L_50); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_51 = L_50->get_controllerVars_2(); int32_t L_52 = V_0; NullCheck(L_51); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_53; L_53 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_51, L_52, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_53); bool L_54 = L_53->get_fracPos_4(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_55 = ___expData0; NullCheck(L_55); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_56 = L_55->get_controllerVars_2(); int32_t L_57 = V_0; NullCheck(L_56); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_58; L_58 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_56, L_57, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_58); bool L_59 = L_58->get_fracRot_5(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_60 = ___expData0; NullCheck(L_60); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_61 = L_60->get_controllerVars_2(); int32_t L_62 = V_0; NullCheck(L_61); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_63; L_63 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_61, L_62, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_63); bool L_64 = L_63->get_fracScl_6(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_65 = ___expData0; NullCheck(L_65); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_66 = L_65->get_components_1(); int32_t L_67 = V_0; NullCheck(L_66); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_68; L_68 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_66, L_67, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_68); bool L_69 = L_68->get_useOffset_16(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_70 = ___expData0; NullCheck(L_70); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_71 = L_70->get_components_1(); int32_t L_72 = V_0; NullCheck(L_71); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_73; L_73 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_71, L_72, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_73); bool L_74 = L_73->get_useOffsetFollow_17(); BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C * L_75 = (BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C *)il2cpp_codegen_object_new(BoneController_t02D75D8508AD00D9A622C2E2F829527325B3F52C_il2cpp_TypeInfo_var); BoneController__ctor_m4802A85329F431BE104174AD7997EC46C9D6B25F(L_75, L_39, L_44, L_49, L_54, L_59, L_64, L_69, L_74, (1.0f), /*hidden argument*/NULL); NullCheck(L_34); L_34->set_controller_1(L_75); goto IL_03f0; } IL_0154: { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_76 = ___expData0; NullCheck(L_76); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_77 = L_76->get_components_1(); int32_t L_78 = V_0; NullCheck(L_77); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_79; L_79 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_77, L_78, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_80 = ___expData0; NullCheck(L_80); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_81 = L_80->get_controllerVars_2(); int32_t L_82 = V_0; NullCheck(L_81); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_83; L_83 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_81, L_82, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_83); SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_84 = L_83->get_spriteRenderer_22(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_85 = ___expData0; NullCheck(L_85); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_86 = L_85->get_controllerVars_2(); int32_t L_87 = V_0; NullCheck(L_86); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_88; L_88 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_86, L_87, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_88); SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* L_89; L_89 = InspectorControllerHelperData_GetSprites_mE5940092676969BC9F63D28C309882F3DB616F02(L_88, /*hidden argument*/NULL); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_90 = ___expData0; NullCheck(L_90); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_91 = L_90->get_controllerVars_2(); int32_t L_92 = V_0; NullCheck(L_91); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_93; L_93 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_91, L_92, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_93); int32_t L_94 = L_93->get_onState_19(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_95 = ___expData0; NullCheck(L_95); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_96 = L_95->get_controllerVars_2(); int32_t L_97 = V_0; NullCheck(L_96); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_98; L_98 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_96, L_97, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_98); bool L_99 = L_98->get_isRestNull_21(); SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 * L_100 = (SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 *)il2cpp_codegen_object_new(SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37_il2cpp_TypeInfo_var); SpriteController__ctor_mFE2740133E31B78FCAB0B36FFDE3146E636DC4B0(L_100, L_84, L_89, L_94, L_99, /*hidden argument*/NULL); NullCheck(L_79); L_79->set_controller_1(L_100); goto IL_03f0; } IL_01b3: { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_101 = ___expData0; NullCheck(L_101); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_102 = L_101->get_components_1(); int32_t L_103 = V_0; NullCheck(L_102); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_104; L_104 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_102, L_103, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_105 = ___expData0; NullCheck(L_105); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_106 = L_105->get_controllerVars_2(); int32_t L_107 = V_0; NullCheck(L_106); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_108; L_108 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_106, L_107, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_108); Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_109 = L_108->get_uguiRenderer_24(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_110 = ___expData0; NullCheck(L_110); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_111 = L_110->get_controllerVars_2(); int32_t L_112 = V_0; NullCheck(L_111); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_113; L_113 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_111, L_112, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_113); SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* L_114; L_114 = InspectorControllerHelperData_GetSprites_mE5940092676969BC9F63D28C309882F3DB616F02(L_113, /*hidden argument*/NULL); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_115 = ___expData0; NullCheck(L_115); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_116 = L_115->get_controllerVars_2(); int32_t L_117 = V_0; NullCheck(L_116); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_118; L_118 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_116, L_117, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_118); int32_t L_119 = L_118->get_onState_19(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_120 = ___expData0; NullCheck(L_120); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_121 = L_120->get_controllerVars_2(); int32_t L_122 = V_0; NullCheck(L_121); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_123; L_123 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_121, L_122, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_123); bool L_124 = L_123->get_isRestNull_21(); UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B * L_125 = (UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B *)il2cpp_codegen_object_new(UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B_il2cpp_TypeInfo_var); UguiController__ctor_m16E0D998ACC0F04F200585B2078A74EFE25933F9(L_125, L_109, L_114, L_119, L_124, /*hidden argument*/NULL); NullCheck(L_104); L_104->set_controller_1(L_125); goto IL_03f0; } IL_0212: { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_126 = ___expData0; NullCheck(L_126); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_127 = L_126->get_components_1(); int32_t L_128 = V_0; NullCheck(L_127); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_129; L_129 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_127, L_128, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_130 = ___expData0; NullCheck(L_130); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_131 = L_130->get_controllerVars_2(); int32_t L_132 = V_0; NullCheck(L_131); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_133; L_133 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_131, L_132, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_133); Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_134 = L_133->get_materialRenderer_29(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_135 = ___expData0; NullCheck(L_135); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_136 = L_135->get_controllerVars_2(); int32_t L_137 = V_0; NullCheck(L_136); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_138; L_138 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_136, L_137, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_138); MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* L_139; L_139 = InspectorControllerHelperData_GetMaterials_m3F0B3A72C75F832BA0C57A2C9CF919BB3F3F146F(L_138, /*hidden argument*/NULL); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_140 = ___expData0; NullCheck(L_140); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_141 = L_140->get_controllerVars_2(); int32_t L_142 = V_0; NullCheck(L_141); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_143; L_143 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_141, L_142, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_143); int32_t L_144 = L_143->get_onState_19(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_145 = ___expData0; NullCheck(L_145); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_146 = L_145->get_controllerVars_2(); int32_t L_147 = V_0; NullCheck(L_146); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_148; L_148 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_146, L_147, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_148); bool L_149 = L_148->get_isRestNull_21(); MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 * L_150 = (MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2 *)il2cpp_codegen_object_new(MaterialController_t4E38F18F098AA61A8C700C10CDBAA11E5198D8A2_il2cpp_TypeInfo_var); MaterialController__ctor_m047FACC99D8708861861A4381686FF6FA9088A6A(L_150, L_134, L_139, L_144, L_149, /*hidden argument*/NULL); NullCheck(L_129); L_129->set_controller_1(L_150); goto IL_03f0; } IL_0271: { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_151 = ___expData0; NullCheck(L_151); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_152 = L_151->get_components_1(); int32_t L_153 = V_0; NullCheck(L_152); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_154; L_154 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_152, L_153, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_155 = ___expData0; NullCheck(L_155); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_156 = L_155->get_controllerVars_2(); int32_t L_157 = V_0; NullCheck(L_156); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_158; L_158 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_156, L_157, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_158); Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_159 = L_158->get_textureRenderer_25(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_160 = ___expData0; NullCheck(L_160); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_161 = L_160->get_controllerVars_2(); int32_t L_162 = V_0; NullCheck(L_161); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_163; L_163 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_161, L_162, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_163); int32_t L_164 = L_163->get_materialIndex_26(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_165 = ___expData0; NullCheck(L_165); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_166 = L_165->get_controllerVars_2(); int32_t L_167 = V_0; NullCheck(L_166); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_168; L_168 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_166, L_167, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_168); TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* L_169; L_169 = InspectorControllerHelperData_GetTextures_m19270F028D0A040262FA75BF0A59F94BF6910664(L_168, /*hidden argument*/NULL); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_170 = ___expData0; NullCheck(L_170); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_171 = L_170->get_controllerVars_2(); int32_t L_172 = V_0; NullCheck(L_171); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_173; L_173 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_171, L_172, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_173); int32_t L_174 = L_173->get_onState_19(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_175 = ___expData0; NullCheck(L_175); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_176 = L_175->get_controllerVars_2(); int32_t L_177 = V_0; NullCheck(L_176); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_178; L_178 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_176, L_177, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_178); bool L_179 = L_178->get_isRestNull_21(); TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 * L_180 = (TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 *)il2cpp_codegen_object_new(TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045_il2cpp_TypeInfo_var); TextureController__ctor_m69FAB6004583C9E38B95CB95105BE7D54F514CFA(L_180, L_159, L_164, L_169, L_174, L_179, /*hidden argument*/NULL); NullCheck(L_154); L_154->set_controller_1(L_180); goto IL_03f0; } IL_02e1: { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_181 = ___expData0; NullCheck(L_181); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_182 = L_181->get_components_1(); int32_t L_183 = V_0; NullCheck(L_182); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_184; L_184 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_182, L_183, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_185 = ___expData0; NullCheck(L_185); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_186 = L_185->get_controllerVars_2(); int32_t L_187 = V_0; NullCheck(L_186); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_188; L_188 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_186, L_187, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_188); UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_189 = L_188->get_umaUepProxy_9(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_190 = ___expData0; NullCheck(L_190); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_191 = L_190->get_controllerVars_2(); int32_t L_192 = V_0; NullCheck(L_191); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_193; L_193 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_191, L_192, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_193); int32_t L_194 = L_193->get_blendIndex_12(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_195 = ___expData0; NullCheck(L_195); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_196 = L_195->get_controllerVars_2(); int32_t L_197 = V_0; NullCheck(L_196); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_198; L_198 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_196, L_197, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_198); float L_199 = L_198->get_uepAmount_10(); UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * L_200 = (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD *)il2cpp_codegen_object_new(UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD_il2cpp_TypeInfo_var); UmaController__ctor_m887575118976652B2AAF7005B8E1E3E2FFAE097F(L_200, L_189, L_194, L_199, (1.0f), /*hidden argument*/NULL); NullCheck(L_184); L_184->set_controller_1(L_200); goto IL_03f0; } IL_0334: { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_201 = ___expData0; NullCheck(L_201); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_202 = L_201->get_components_1(); int32_t L_203 = V_0; NullCheck(L_202); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_204; L_204 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_202, L_203, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_205 = ___expData0; NullCheck(L_205); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_206 = L_205->get_controllerVars_2(); int32_t L_207 = V_0; NullCheck(L_206); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_208; L_208 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_206, L_207, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_208); Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_209 = L_208->get_animator_16(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_210 = ___expData0; NullCheck(L_210); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_211 = L_210->get_controllerVars_2(); int32_t L_212 = V_0; NullCheck(L_211); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_213; L_213 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_211, L_212, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_213); Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_214 = L_213->get_animator_16(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_215 = ___expData0; NullCheck(L_215); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_216 = L_215->get_controllerVars_2(); int32_t L_217 = V_0; NullCheck(L_216); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_218; L_218 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_216, L_217, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_218); int32_t L_219 = L_218->get_blendIndex_12(); NullCheck(L_214); AnimatorControllerParameter_t8E7EB3AF7837189FB5523DC4E21D9D51CEA70FEE * L_220; L_220 = Animator_GetParameter_m8E2B8351264BE835BDAE9B6CCB6C99FCB197760D(L_214, L_219, /*hidden argument*/NULL); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_221 = ___expData0; NullCheck(L_221); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_222 = L_221->get_controllerVars_2(); int32_t L_223 = V_0; NullCheck(L_222); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_224; L_224 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_222, L_223, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_224); int32_t L_225 = L_224->get_blendIndex_12(); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_226 = ___expData0; NullCheck(L_226); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_227 = L_226->get_controllerVars_2(); int32_t L_228 = V_0; NullCheck(L_227); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_229; L_229 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_227, L_228, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_229); bool L_230 = L_229->get_isTriggerParameterBiDirectional_17(); AnimatorController_t9D96F6465E88F19768634AFD260141CF23B77E01 * L_231 = (AnimatorController_t9D96F6465E88F19768634AFD260141CF23B77E01 *)il2cpp_codegen_object_new(AnimatorController_t9D96F6465E88F19768634AFD260141CF23B77E01_il2cpp_TypeInfo_var); AnimatorController__ctor_m20030EE407DDE45C9CB8247E77E3BAB2562A1FF1(L_231, L_209, L_220, L_225, L_230, /*hidden argument*/NULL); NullCheck(L_204); L_204->set_controller_1(L_231); goto IL_03f0; } IL_03a6: { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_232 = ___expData0; NullCheck(L_232); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_233 = L_232->get_components_1(); int32_t L_234 = V_0; NullCheck(L_233); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_235; L_235 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_233, L_234, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_236 = ___expData0; NullCheck(L_236); List_1_tD7B198697273422DE2D6AF9F077FF5355F24CA15 * L_237 = L_236->get_controllerVars_2(); int32_t L_238 = V_0; NullCheck(L_237); InspectorControllerHelperData_t1A20CF0080C549BEBF958C08D73BB57068379D70 * L_239; L_239 = List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_inline(L_237, L_238, /*hidden argument*/List_1_get_Item_m5A6499CDB29FB15313154ECE4D7858B08D3A45C3_RuntimeMethod_var); NullCheck(L_239); String_t* L_240 = L_239->get_eventIdentityName_18(); EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4 * L_241 = (EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4 *)il2cpp_codegen_object_new(EventController_t31CB3636E0FBDC77D073403BE5888809141D18E4_il2cpp_TypeInfo_var); EventController__ctor_m2CE057B924DCD61C81E9C00769BD366D1C352A7A(L_241, L_240, /*hidden argument*/NULL); NullCheck(L_235); L_235->set_controller_1(L_241); goto IL_03f0; } IL_03cf: { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_242 = ___expData0; NullCheck(L_242); String_t* L_243 = L_242->get_name_0(); String_t* L_244; L_244 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_0), /*hidden argument*/NULL); String_t* L_245; L_245 = String_Concat_m5D784E6CEEBE99ED8749AA4B9491D926273FD749(_stringLiteralAC6EBEFEDFC7AA6B34D9D79F19B66DC47697070D, L_243, _stringLiteral8F0928025AE54960E7B1CAC092D6EBBD9F7CA184, L_244, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(L_245, /*hidden argument*/NULL); } IL_03f0: { int32_t L_246 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_246, (int32_t)1)); } IL_03f4: { int32_t L_247 = V_0; Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_248 = ___expData0; NullCheck(L_248); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_249 = L_248->get_components_1(); NullCheck(L_249); int32_t L_250; L_250 = List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_inline(L_249, /*hidden argument*/List_1_get_Count_m9A332596A7661A159AC549C2C7DD68216DD2C9FD_RuntimeMethod_var); if ((((int32_t)L_247) < ((int32_t)L_250))) { goto IL_0007; } } { return; } } // System.Boolean CrazyMinnow.SALSA.SalsaUtil::CheckForInvalidComponent(UnityEngine.GameObject,System.String,CrazyMinnow.SALSA.Expression,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SalsaUtil_CheckForInvalidComponent_m3DCBA3DC78D34E0C6E1E2C33E012633F46DFABFB (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___go0, String_t* ___caller1, Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * ___expression2, int32_t ___index3, bool ___warnOnNullRefs4, 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*)&IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral03194EA6CECB543B0C57DE303B48A657EEB4D0E7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE3810E6A4851C828C16C6F2FCCF8F28428DF92); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5295380188F75D696383F8BDB2147F0053791372); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCF4DAA4BA5F76F7DD1341AACE954BF2FC4614B5); s_Il2CppMethodInitialized = true; } { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_0 = ___expression2; NullCheck(L_0); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_1 = L_0->get_components_1(); int32_t L_2 = ___index3; NullCheck(L_1); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_3; L_3 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_1, L_2, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_3); RuntimeObject* L_4 = L_3->get_controller_1(); if (!L_4) { goto IL_008b; } } { Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_5 = ___expression2; NullCheck(L_5); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_6 = L_5->get_components_1(); int32_t L_7 = ___index3; NullCheck(L_6); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_8; L_8 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_6, L_7, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_8); RuntimeObject* L_9 = L_8->get_controller_1(); NullCheck(L_9); bool L_10; L_10 = InterfaceFuncInvoker0< bool >::Invoke(12 /* System.Boolean CrazyMinnow.SALSA.IExpressionController::HasInvalidController() */, IExpressionController_t6BF3119963628EF4906080ACCB425C8CB28BE610_il2cpp_TypeInfo_var, L_9); if (!L_10) { goto IL_008b; } } { bool L_11 = ___warnOnNullRefs4; if (!L_11) { goto IL_0089; } } { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)8); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_13 = L_12; String_t* L_14 = ___caller1; NullCheck(L_13); ArrayElementTypeCheck (L_13, L_14); (L_13)->SetAt(static_cast(0), (String_t*)L_14); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = L_13; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteral03194EA6CECB543B0C57DE303B48A657EEB4D0E7); (L_15)->SetAt(static_cast(1), (String_t*)_stringLiteral03194EA6CECB543B0C57DE303B48A657EEB4D0E7); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = L_15; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_17 = ___go0; NullCheck(L_17); String_t* L_18; L_18 = Object_get_name_m0C7BC870ED2F0DC5A2FB09628136CD7D1CB82CFB(L_17, /*hidden argument*/NULL); NullCheck(L_16); ArrayElementTypeCheck (L_16, L_18); (L_16)->SetAt(static_cast(2), (String_t*)L_18); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_19 = L_16; NullCheck(L_19); ArrayElementTypeCheck (L_19, _stringLiteralBCF4DAA4BA5F76F7DD1341AACE954BF2FC4614B5); (L_19)->SetAt(static_cast(3), (String_t*)_stringLiteralBCF4DAA4BA5F76F7DD1341AACE954BF2FC4614B5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_20 = L_19; Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_21 = ___expression2; NullCheck(L_21); String_t* L_22 = L_21->get_name_0(); NullCheck(L_20); ArrayElementTypeCheck (L_20, L_22); (L_20)->SetAt(static_cast(4), (String_t*)L_22); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_23 = L_20; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteral5295380188F75D696383F8BDB2147F0053791372); (L_23)->SetAt(static_cast(5), (String_t*)_stringLiteral5295380188F75D696383F8BDB2147F0053791372); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_24 = L_23; Expression_t3BC18525F3B0285F91AB91E0AFAEEEE50337742D * L_25 = ___expression2; NullCheck(L_25); List_1_tA9DEF3DC8C1C5B531BDA7B8904BDC70355F51545 * L_26 = L_25->get_components_1(); int32_t L_27 = ___index3; NullCheck(L_26); ExpressionComponent_tBDE3C641F6D6E0CC47EBBC64234FB5E0731FA58D * L_28; L_28 = List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_inline(L_26, L_27, /*hidden argument*/List_1_get_Item_mC7A97BD32035D325E703E5E0325A572C6E120C54_RuntimeMethod_var); NullCheck(L_28); String_t* L_29 = L_28->get_name_0(); NullCheck(L_24); ArrayElementTypeCheck (L_24, L_29); (L_24)->SetAt(static_cast(6), (String_t*)L_29); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_30 = L_24; NullCheck(L_30); ArrayElementTypeCheck (L_30, _stringLiteral0DE3810E6A4851C828C16C6F2FCCF8F28428DF92); (L_30)->SetAt(static_cast(7), (String_t*)_stringLiteral0DE3810E6A4851C828C16C6F2FCCF8F28428DF92); String_t* L_31; L_31 = String_Concat_m27B9C3007C7DABFABCC3726B37A3BE08CB40C417(L_30, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(L_31, /*hidden argument*/NULL); } IL_0089: { return (bool)1; } IL_008b: { return (bool)0; } } // System.String CrazyMinnow.SALSA.SalsaUtil::get_SuiteVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SalsaUtil_get_SuiteVersion_mE884DF6FA91308C2FB1AFAA8FB5C48E0BA8E5A1C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3D33C07EFC6E7DDD66C4C69B3ABF1E4750C139B7); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); String_t* L_0 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_suiteVersion_0(); bool L_1; L_1 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_0, _stringLiteral3D33C07EFC6E7DDD66C4C69B3ABF1E4750C139B7, /*hidden argument*/NULL); if (!L_1) { goto IL_0016; } } { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); SalsaUtil_SetSuiteVersion_m22004EF2E51D54FD2548ECC59EB412200722B133(/*hidden argument*/NULL); } IL_0016: { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); String_t* L_2 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_suiteVersion_0(); return L_2; } } // System.Int32 CrazyMinnow.SALSA.SalsaUtil::get_VersionMajor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SalsaUtil_get_VersionMajor_mEF9AA8DFDD37B39742CD769EDD1F535D9C539B5E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); int32_t L_0 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_versionMajor_1(); if (L_0) { goto IL_000c; } } { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); SalsaUtil_SetSuiteVersion_m22004EF2E51D54FD2548ECC59EB412200722B133(/*hidden argument*/NULL); } IL_000c: { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); int32_t L_1 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_versionMajor_1(); return L_1; } } // System.Int32 CrazyMinnow.SALSA.SalsaUtil::get_VersionMinor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SalsaUtil_get_VersionMinor_m1B71E350FC85783B2D9E3AF0CEBEF250E8B36943 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); int32_t L_0 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_versionMajor_1(); if (L_0) { goto IL_000c; } } { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); SalsaUtil_SetSuiteVersion_m22004EF2E51D54FD2548ECC59EB412200722B133(/*hidden argument*/NULL); } IL_000c: { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); int32_t L_1 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_versionMinor_2(); return L_1; } } // System.Int32 CrazyMinnow.SALSA.SalsaUtil::get_VersionPatch() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SalsaUtil_get_VersionPatch_mE407E5C8293600401A670E3FE22C370C1BDAE18C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); int32_t L_0 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_versionMajor_1(); if (L_0) { goto IL_000c; } } { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); SalsaUtil_SetSuiteVersion_m22004EF2E51D54FD2548ECC59EB412200722B133(/*hidden argument*/NULL); } IL_000c: { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); int32_t L_1 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_versionPatch_3(); return L_1; } } // System.Int32 CrazyMinnow.SALSA.SalsaUtil::get_VersionInternal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SalsaUtil_get_VersionInternal_m22246D3175E9DF268318492EEBD2EB44F5E39218 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); int32_t L_0 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_versionMajor_1(); if (L_0) { goto IL_000c; } } { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); SalsaUtil_SetSuiteVersion_m22004EF2E51D54FD2548ECC59EB412200722B133(/*hidden argument*/NULL); } IL_000c: { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); int32_t L_1 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_versionInternal_4(); return L_1; } } // System.Void CrazyMinnow.SALSA.SalsaUtil::SetSuiteVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaUtil_SetSuiteVersion_m22004EF2E51D54FD2548ECC59EB412200722B133 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral57346CDA5727977D30919E5B9D3BBA1DEA8757BF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { String_t* L_0; L_0 = Application_get_dataPath_m69F3B973BD60C419CB91DE0526D39396062947AC(/*hidden argument*/NULL); String_t* L_1; L_1 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_0, _stringLiteral57346CDA5727977D30919E5B9D3BBA1DEA8757BF, /*hidden argument*/NULL); V_0 = L_1; String_t* L_2 = V_0; bool L_3; L_3 = File_Exists_mEFB0F2E165717ACA9A13202EF4ED17118858FAFE(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_00d1; } } { String_t* L_4 = V_0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_5; L_5 = File_ReadAllLines_m876C0DE12F88E8093F54B3DCC24BBC2B09BF1785(L_4, /*hidden argument*/NULL); NullCheck(L_5); int32_t L_6 = 0; String_t* L_7 = (L_5)->GetAt(static_cast(L_6)); IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->set_suiteVersion_0(L_7); String_t* L_8 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_suiteVersion_0(); NullCheck(L_8); int32_t L_9; L_9 = String_IndexOf_m90616B2D8ACC645F389750FAE4F9A75BC5D82454(L_8, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, /*hidden argument*/NULL); V_1 = L_9; String_t* L_10 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_suiteVersion_0(); int32_t L_11 = V_1; NullCheck(L_10); int32_t L_12; L_12 = String_IndexOf_m9037DBF7895B78147B9F5931DA0AA9D2CBD8C3F0(L_10, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)), /*hidden argument*/NULL); V_2 = L_12; String_t* L_13 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_suiteVersion_0(); int32_t L_14 = V_2; NullCheck(L_13); int32_t L_15; L_15 = String_IndexOf_m9037DBF7895B78147B9F5931DA0AA9D2CBD8C3F0(L_13, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)), /*hidden argument*/NULL); V_3 = L_15; String_t* L_16 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_suiteVersion_0(); int32_t L_17 = V_1; NullCheck(L_16); String_t* L_18; L_18 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_16, 0, L_17, /*hidden argument*/NULL); int32_t L_19; L_19 = Int32_Parse_mFEA51DE5E5C0BCB4D8A587AD7779DAC158BE7184(L_18, /*hidden argument*/NULL); ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->set_versionMajor_1(L_19); String_t* L_20 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_suiteVersion_0(); int32_t L_21 = V_1; int32_t L_22 = V_2; int32_t L_23 = V_1; NullCheck(L_20); String_t* L_24; L_24 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_20, ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)L_23)), (int32_t)1)), /*hidden argument*/NULL); int32_t L_25; L_25 = Int32_Parse_mFEA51DE5E5C0BCB4D8A587AD7779DAC158BE7184(L_24, /*hidden argument*/NULL); ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->set_versionMinor_2(L_25); String_t* L_26 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_suiteVersion_0(); int32_t L_27 = V_2; int32_t L_28 = V_3; int32_t L_29 = V_2; NullCheck(L_26); String_t* L_30; L_30 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_26, ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)L_29)), (int32_t)1)), /*hidden argument*/NULL); int32_t L_31; L_31 = Int32_Parse_mFEA51DE5E5C0BCB4D8A587AD7779DAC158BE7184(L_30, /*hidden argument*/NULL); ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->set_versionPatch_3(L_31); String_t* L_32 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_suiteVersion_0(); int32_t L_33 = V_3; String_t* L_34 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_suiteVersion_0(); NullCheck(L_34); int32_t L_35; L_35 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_34, /*hidden argument*/NULL); int32_t L_36 = V_3; NullCheck(L_32); String_t* L_37; L_37 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_32, ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)L_36)), (int32_t)1)), /*hidden argument*/NULL); int32_t L_38; L_38 = Int32_Parse_mFEA51DE5E5C0BCB4D8A587AD7779DAC158BE7184(L_37, /*hidden argument*/NULL); ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->set_versionInternal_4(L_38); } IL_00d1: { return; } } // System.Boolean CrazyMinnow.SALSA.SalsaUtil::IsVersionGreaterThan(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SalsaUtil_IsVersionGreaterThan_mA8B48E965EF6E84488ED13C637B6E97DB80F5F63 (int32_t ___maj0, int32_t ___min1, int32_t ___pat2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); int32_t L_0 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_versionMajor_1(); int32_t L_1 = ___maj0; if ((((int32_t)L_0) < ((int32_t)L_1))) { goto IL_0012; } } { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); int32_t L_2 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_versionMinor_2(); int32_t L_3 = ___min1; if ((((int32_t)L_2) <= ((int32_t)L_3))) { goto IL_0012; } } { return (bool)1; } IL_0012: { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); int32_t L_4 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_versionMinor_2(); int32_t L_5 = ___min1; if ((!(((uint32_t)L_4) == ((uint32_t)L_5)))) { goto IL_0024; } } { IL2CPP_RUNTIME_CLASS_INIT(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); int32_t L_6 = ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->get_versionPatch_3(); int32_t L_7 = ___pat2; if ((((int32_t)L_6) < ((int32_t)L_7))) { goto IL_0024; } } { return (bool)1; } IL_0024: { return (bool)0; } } // System.Void CrazyMinnow.SALSA.SalsaUtil::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaUtil__cctor_m405727F9D47821CAEDE59868E96E89E5BF3D2CB9 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3D33C07EFC6E7DDD66C4C69B3ABF1E4750C139B7); s_Il2CppMethodInitialized = true; } { ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->set_suiteVersion_0(_stringLiteral3D33C07EFC6E7DDD66C4C69B3ABF1E4750C139B7); ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->set_versionMajor_1(0); ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->set_versionMinor_2(0); ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->set_versionPatch_3(0); ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->set_versionInternal_4(0); ((SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_StaticFields*)il2cpp_codegen_static_fields_for(SalsaUtil_tA357F6D97924303A4BCEDF25E1D46832F0FB6B85_il2cpp_TypeInfo_var))->set_editorTime_5((0.0f)); 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 CrazyMinnow.SALSA.ShapeController::.ctor(UnityEngine.SkinnedMeshRenderer,System.Int32,System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShapeController__ctor_m5C516B1FDA7E963D9809304B01136E81F10AEE91 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * ___smr0, int32_t ___blendIndex1, float ___min2, float ___max3, float ___frac4, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_0 = ___smr0; __this->set_smr_0(L_0); int32_t L_1 = ___blendIndex1; __this->set_blendIndex_1(L_1); float L_2 = ___min2; __this->set_min_2(L_2); float L_3 = ___max3; __this->set_max_4(L_3); float L_4 = ___min2; __this->set_previous_8(L_4); float L_5 = ___frac4; ShapeController_SetFrac_m3D23B4BF79F3E93B5FAF68BD0953DBF1E1756293(__this, L_5, /*hidden argument*/NULL); float L_6 = ___min2; __this->set_minOriginal_3(L_6); return; } } // System.Int32 CrazyMinnow.SALSA.ShapeController::GetID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ShapeController_GetID_mDFA8098590D3011E8493A2EBA0A1FDF776FB6303 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, const RuntimeMethod* method) { { SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_0 = __this->get_smr_0(); NullCheck(L_0); int32_t L_1; L_1 = Object_GetInstanceID_m7CF962BC1DB5C03F3522F88728CB2F514582B501(L_0, /*hidden argument*/NULL); int32_t L_2 = __this->get_blendIndex_1(); return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)1000))), (int32_t)L_2)); } } // System.Void CrazyMinnow.SALSA.ShapeController::SetLerp(System.Single,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShapeController_SetLerp_m080693B0DE6743BF8267ED3D90F0FA5DE1C18026 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, float ___lerper0, bool ___isActivating1, const RuntimeMethod* method) { { bool L_0 = ___isActivating1; if (!L_0) { goto IL_001d; } } { float L_1 = __this->get_start_6(); float L_2 = __this->get_fracMax_5(); float L_3 = ___lerper0; float L_4; L_4 = Mathf_Lerp_m04D5C368C4E4F1AB78230C6809A6651951A52C86(L_1, L_2, L_3, /*hidden argument*/NULL); __this->set_previous_8(L_4); goto IL_0035; } IL_001d: { float L_5 = __this->get_min_2(); float L_6 = __this->get_start_6(); float L_7 = ___lerper0; float L_8; L_8 = Mathf_Lerp_m04D5C368C4E4F1AB78230C6809A6651951A52C86(L_5, L_6, L_7, /*hidden argument*/NULL); __this->set_previous_8(L_8); } IL_0035: { SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_9 = __this->get_smr_0(); int32_t L_10 = __this->get_blendIndex_1(); float L_11 = __this->get_previous_8(); NullCheck(L_9); SkinnedMeshRenderer_SetBlendShapeWeight_mF546F3567C5039C217AD1E32157B992B4124B5FD(L_9, L_10, ((float)il2cpp_codegen_multiply((float)L_11, (float)(100.0f))), /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.ShapeController::ProcessInfluence(System.Boolean,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShapeController_ProcessInfluence_m5638176DFC79A0FA382B7347F79BA64909B7192F (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, bool ___isInfluenced0, float ___lerper1, const RuntimeMethod* method) { { bool L_0 = ___isInfluenced0; __this->set_isInfluenced_9(L_0); SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_1 = __this->get_smr_0(); int32_t L_2 = __this->get_blendIndex_1(); NullCheck(L_1); float L_3; L_3 = SkinnedMeshRenderer_GetBlendShapeWeight_m3F662DD48CC110C8429E53FD2A2E33DE601AA792(L_1, L_2, /*hidden argument*/NULL); __this->set_min_2(((float)((float)L_3/(float)(100.0f)))); float L_4 = ___lerper1; ShapeController_SetLerp_m080693B0DE6743BF8267ED3D90F0FA5DE1C18026(__this, L_4, (bool)0, /*hidden argument*/NULL); return; } } // System.Boolean CrazyMinnow.SALSA.ShapeController::HasDirtyInfluence() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ShapeController_HasDirtyInfluence_m2FDF7D73EF7953E903D3CDAAB020B5A4996BB626 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, const RuntimeMethod* method) { { SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_0 = __this->get_smr_0(); int32_t L_1 = __this->get_blendIndex_1(); NullCheck(L_0); float L_2; L_2 = SkinnedMeshRenderer_GetBlendShapeWeight_m3F662DD48CC110C8429E53FD2A2E33DE601AA792(L_0, L_1, /*hidden argument*/NULL); float L_3 = __this->get_previous_8(); bool L_4; L_4 = Mathf_Approximately_mFEB0CB3531393F6CBE07C6E0FCB473B3311F799A(((float)((float)L_2/(float)(100.0f))), L_3, /*hidden argument*/NULL); __this->set_isInfluenced_9((bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0)); bool L_5 = __this->get_isInfluenced_9(); return L_5; } } // System.Boolean CrazyMinnow.SALSA.ShapeController::GetInfluenceStatus() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ShapeController_GetInfluenceStatus_m3A20B11350BF963788DA8D3B5E6C9C38447D3EFD (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isInfluenced_9(); return L_0; } } // System.Single CrazyMinnow.SALSA.ShapeController::GetNewDelta(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ShapeController_GetNewDelta_m9929CA7D84EC8048B674CDF267448AABD432BD80 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, bool ___isActive0, bool ___isPersistent1, const RuntimeMethod* method) { { SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_0 = __this->get_smr_0(); int32_t L_1 = __this->get_blendIndex_1(); NullCheck(L_0); float L_2; L_2 = SkinnedMeshRenderer_GetBlendShapeWeight_m3F662DD48CC110C8429E53FD2A2E33DE601AA792(L_0, L_1, /*hidden argument*/NULL); __this->set_current_7(((float)((float)L_2/(float)(100.0f)))); bool L_3 = ___isPersistent1; if (!L_3) { goto IL_002e; } } { float L_4 = __this->get_previous_8(); __this->set_start_6(L_4); goto IL_003a; } IL_002e: { float L_5 = __this->get_current_7(); __this->set_start_6(L_5); } IL_003a: { bool L_6 = ___isActive0; if (L_6) { goto IL_0043; } } { return (1.0f); } IL_0043: { return (0.0f); } } // CrazyMinnow.SALSA.ControllerData CrazyMinnow.SALSA.ShapeController::GetPreviousDeltaData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 ShapeController_GetPreviousDeltaData_m6D1EF2A9DD50ECB996CBFED6165480BC0CB82186 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, const RuntimeMethod* method) { TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 )); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_0 = V_0; float L_1 = __this->get_previous_8(); ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 L_2; memset((&L_2), 0, sizeof(L_2)); ControllerData__ctor_mB835E971272F264A7CD4B4E780D9CA773D82F561((&L_2), L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void CrazyMinnow.SALSA.ShapeController::SetPreviousDeltaData(CrazyMinnow.SALSA.ControllerData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShapeController_SetPreviousDeltaData_m4B658901A51432ECBBB22DC59514B50634891562 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 ___controllerData0, const RuntimeMethod* method) { { ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 L_0 = ___controllerData0; float L_1 = L_0.get_floatData_1(); __this->set_previous_8(L_1); return; } } // System.Void CrazyMinnow.SALSA.ShapeController::SetFrac(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShapeController_SetFrac_m3D23B4BF79F3E93B5FAF68BD0953DBF1E1756293 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, float ___frac0, const RuntimeMethod* method) { { float L_0 = __this->get_min_2(); float L_1 = __this->get_max_4(); float L_2 = ___frac0; float L_3; L_3 = Mathf_Lerp_m04D5C368C4E4F1AB78230C6809A6651951A52C86(L_0, L_1, L_2, /*hidden argument*/NULL); __this->set_fracMax_5(L_3); return; } } // System.Boolean CrazyMinnow.SALSA.ShapeController::Equals(CrazyMinnow.SALSA.IExpressionController) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ShapeController_Equals_mD89DA06AAFD9E4F8E5D45A51CF9A9B1F15569159 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, RuntimeObject* ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * V_0 = NULL; { RuntimeObject* L_0 = ___other0; V_0 = ((ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 *)IsInstClass((RuntimeObject*)L_0, ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95_il2cpp_TypeInfo_var)); ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * L_1 = V_0; if (!L_1) { goto IL_0032; } } { SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_2 = __this->get_smr_0(); NullCheck(L_2); int32_t L_3; L_3 = Object_GetInstanceID_m7CF962BC1DB5C03F3522F88728CB2F514582B501(L_2, /*hidden argument*/NULL); ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * L_4 = V_0; NullCheck(L_4); SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_5 = L_4->get_smr_0(); NullCheck(L_5); int32_t L_6; L_6 = Object_GetInstanceID_m7CF962BC1DB5C03F3522F88728CB2F514582B501(L_5, /*hidden argument*/NULL); if ((!(((uint32_t)L_3) == ((uint32_t)L_6)))) { goto IL_0032; } } { int32_t L_7 = __this->get_blendIndex_1(); ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * L_8 = V_0; NullCheck(L_8); int32_t L_9 = L_8->get_blendIndex_1(); if ((!(((uint32_t)L_7) == ((uint32_t)L_9)))) { goto IL_0032; } } { return (bool)1; } IL_0032: { return (bool)0; } } // System.Single CrazyMinnow.SALSA.ShapeController::GetMaxExtent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ShapeController_GetMaxExtent_mD01B9B398E93425A74DDC7F733457B552DF9D01E (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, const RuntimeMethod* method) { { return (1.0f); } } // System.Single CrazyMinnow.SALSA.ShapeController::GetMinExtent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ShapeController_GetMinExtent_m2A2A05D778DC81DD4B937FC3822A121C08BAAA61 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, const RuntimeMethod* method) { { __this->set_isInfluenced_9((bool)0); float L_0 = __this->get_minOriginal_3(); __this->set_min_2(L_0); float L_1 = __this->get_min_2(); return L_1; } } // UnityEngine.GameObject CrazyMinnow.SALSA.ShapeController::GetObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ShapeController_GetObject_m513F55F791A3ACE0FA5ADFC1B79CE4CDB4444A48 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, const RuntimeMethod* method) { { SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_0 = __this->get_smr_0(); NullCheck(L_0); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1; L_1 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean CrazyMinnow.SALSA.ShapeController::HasInvalidController() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ShapeController_HasInvalidController_mBA82397201C0E16BBE994B745731E38FDE9C4FB6 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __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; } { SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_0 = __this->get_smr_0(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); return L_1; } } // System.Void CrazyMinnow.SALSA.ShapeController::SetTarget(CrazyMinnow.SALSA.TformBase,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShapeController_SetTarget_m2F924C692C25FE98B76AA9D0E0C3846DA1587E5D (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___tform0, float ___frac1, const RuntimeMethod* method) { { TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_0 = ___tform0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_1 = L_0.get_pos_0(); float L_2 = L_1.get_x_2(); __this->set_fracMax_5(L_2); return; } } // System.Void CrazyMinnow.SALSA.ShapeController::SetDelta(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShapeController_SetDelta_mC5A87E41260A9E72BBA4E52DE3B3A8E23AFF8A2E (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, float ___delta0, const RuntimeMethod* method) { { return; } } // System.Void CrazyMinnow.SALSA.ShapeController::LogType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShapeController_LogType_m40B9FF8058B0C76AFFF8ADA8B6E1BAD596D8B784 (ShapeController_t515E8059B1E4D876BCBF730357AEE6FDFCDE7C95 * __this, 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*)&_stringLiteralE4B8FF96F140CFE2D668E3CF98AFBF2FAD84206A); s_Il2CppMethodInitialized = true; } SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * G_B2_0 = NULL; String_t* G_B2_1 = NULL; SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * G_B1_0 = NULL; String_t* G_B1_1 = NULL; String_t* G_B3_0 = NULL; String_t* G_B3_1 = NULL; { SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_0 = __this->get_smr_0(); SkinnedMeshRenderer_t126F4D6010E0F4B2685A7817B0A9171805D8F496 * L_1 = L_0; G_B1_0 = L_1; G_B1_1 = _stringLiteralE4B8FF96F140CFE2D668E3CF98AFBF2FAD84206A; if (L_1) { G_B2_0 = L_1; G_B2_1 = _stringLiteralE4B8FF96F140CFE2D668E3CF98AFBF2FAD84206A; goto IL_0012; } } { G_B3_0 = ((String_t*)(NULL)); G_B3_1 = G_B1_1; goto IL_0017; } IL_0012: { NullCheck(G_B2_0); String_t* L_2; L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B2_0); G_B3_0 = L_2; G_B3_1 = G_B2_1; } IL_0017: { String_t* L_3; L_3 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(G_B3_1, G_B3_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(L_3, /*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 CrazyMinnow.SALSA.SpriteController::.ctor(UnityEngine.SpriteRenderer,UnityEngine.Sprite[],CrazyMinnow.SALSA.Switcher/OnState,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpriteController__ctor_mFE2740133E31B78FCAB0B36FFDE3146E636DC4B0 (SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 * __this, SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * ___renderer0, SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* ___animationFrames1, int32_t ___onState2, bool ___isRestNull3, const RuntimeMethod* method) { { Switcher__ctor_m67537B3923AABCB49B621465F0620500B829567F(__this, /*hidden argument*/NULL); SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_0 = ___renderer0; __this->set_renderer_5(L_0); SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* L_1 = ___animationFrames1; __this->set_animationFrames_6(L_1); int32_t L_2 = ___onState2; ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_onState_0(L_2); bool L_3 = ___isRestNull3; ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_isRestNull_3(L_3); SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* L_4 = ___animationFrames1; NullCheck(L_4); ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_frame_1(((float)((float)(1.0f)/(float)((float)((float)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))); return; } } // System.Int32 CrazyMinnow.SALSA.SpriteController::GetID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SpriteController_GetID_m60261941DE8F388F8DEF3360748BAAD61EA355F0 (SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 * __this, const RuntimeMethod* method) { { SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_0 = __this->get_renderer_5(); NullCheck(L_0); int32_t L_1; L_1 = Object_GetInstanceID_m7CF962BC1DB5C03F3522F88728CB2F514582B501(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void CrazyMinnow.SALSA.SpriteController::SetOn(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpriteController_SetOn_m3E9C80B998537C136E4B096E1EAA83D9A222E24E (SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 * __this, float ___lerper0, const RuntimeMethod* method) { int32_t V_0 = 0; { float L_0 = ___lerper0; float L_1 = ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->get_frame_1(); SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* L_2 = __this->get_animationFrames_6(); NullCheck(L_2); int32_t L_3; L_3 = Mathf_Clamp_m3899EEB9D73D22E0C4524189E89D36A647581CBF(il2cpp_codegen_cast_double_to_int(((float)((float)L_0/(float)L_1))), 0, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))), (int32_t)1)), /*hidden argument*/NULL); V_0 = L_3; SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_4 = __this->get_renderer_5(); SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* L_5 = __this->get_animationFrames_6(); int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * L_8 = (L_5)->GetAt(static_cast(L_7)); NullCheck(L_4); SpriteRenderer_set_sprite_mBCFFBF3F10C068FD1174C4506DF73E204303FC1A(L_4, L_8, /*hidden argument*/NULL); float L_9 = ___lerper0; ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_currentDelta_2(L_9); return; } } // System.Void CrazyMinnow.SALSA.SpriteController::SetOff() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpriteController_SetOff_m4650D36DAF1090197EF9AFCB94BAA2D935625A7F (SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 * __this, const RuntimeMethod* method) { { bool L_0 = ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->get_isRestNull_3(); if (!L_0) { goto IL_0016; } } { SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_1 = __this->get_renderer_5(); NullCheck(L_1); SpriteRenderer_set_sprite_mBCFFBF3F10C068FD1174C4506DF73E204303FC1A(L_1, (Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 *)NULL, /*hidden argument*/NULL); goto IL_0029; } IL_0016: { SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_2 = __this->get_renderer_5(); SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* L_3 = __this->get_animationFrames_6(); NullCheck(L_3); int32_t L_4 = 0; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * L_5 = (L_3)->GetAt(static_cast(L_4)); NullCheck(L_2); SpriteRenderer_set_sprite_mBCFFBF3F10C068FD1174C4506DF73E204303FC1A(L_2, L_5, /*hidden argument*/NULL); } IL_0029: { ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_currentDelta_2((0.0f)); return; } } // System.Boolean CrazyMinnow.SALSA.SpriteController::Equals(CrazyMinnow.SALSA.IExpressionController) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SpriteController_Equals_m0EBE9A24BEA8D8BDEDF5162FB2A614179F75E673 (SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 * __this, RuntimeObject* ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 * V_0 = NULL; { RuntimeObject* L_0 = ___other0; V_0 = ((SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 *)IsInstClass((RuntimeObject*)L_0, SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37_il2cpp_TypeInfo_var)); SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 * L_1 = V_0; if (!L_1) { goto IL_001f; } } { SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_2 = __this->get_renderer_5(); SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 * L_3 = V_0; NullCheck(L_3); SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_4 = L_3->get_renderer_5(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_5; L_5 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_2, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_001f; } } { return (bool)1; } IL_001f: { return (bool)0; } } // UnityEngine.GameObject CrazyMinnow.SALSA.SpriteController::GetObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * SpriteController_GetObject_m3FBB0FDA2CDBE13E823D6277999E6B8A7BE11C11 (SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 * __this, const RuntimeMethod* method) { { SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_0 = __this->get_renderer_5(); NullCheck(L_0); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1; L_1 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean CrazyMinnow.SALSA.SpriteController::HasInvalidController() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SpriteController_HasInvalidController_m9887722B92879F379FF26962F2C42900D7E7D5DF (SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 * __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; } { SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_0 = __this->get_renderer_5(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); return L_1; } } // System.Void CrazyMinnow.SALSA.SpriteController::LogType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpriteController_LogType_m675CBD72BA8D1717A5AA7078D50E82637681CE46 (SpriteController_tAC8A6F338906F0A557263685593A163B9D6D2F37 * __this, 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*)&_stringLiteral654827579049CC54F7326C4D26A690A80A4D8C28); s_Il2CppMethodInitialized = true; } SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * G_B2_0 = NULL; String_t* G_B2_1 = NULL; SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * G_B1_0 = NULL; String_t* G_B1_1 = NULL; String_t* G_B3_0 = NULL; String_t* G_B3_1 = NULL; { SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_0 = __this->get_renderer_5(); SpriteRenderer_t3F35AD5498243C170B46F5FFDB582AAEF78615EF * L_1 = L_0; G_B1_0 = L_1; G_B1_1 = _stringLiteral654827579049CC54F7326C4D26A690A80A4D8C28; if (L_1) { G_B2_0 = L_1; G_B2_1 = _stringLiteral654827579049CC54F7326C4D26A690A80A4D8C28; goto IL_0012; } } { G_B3_0 = ((String_t*)(NULL)); G_B3_1 = G_B1_1; goto IL_0017; } IL_0012: { NullCheck(G_B2_0); String_t* L_2; L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B2_0); G_B3_0 = L_2; G_B3_1 = G_B2_1; } IL_0017: { String_t* L_3; L_3 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(G_B3_1, G_B3_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(L_3, /*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 CrazyMinnow.SALSA.Switcher::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switcher__ctor_m67537B3923AABCB49B621465F0620500B829567F (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, const RuntimeMethod* method) { { __this->set_onState_0(2); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); Switcher_SetFrac_mB016C8AE914081415ECFC0D1D9AABD1CF9DDD1BB(__this, (1.0f), /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.Switcher::SetLerp(System.Single,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switcher_SetLerp_m1318FEB344EEBA1FEF2CD825D83212B567F2FF6B (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, float ___lerper0, bool ___isActivating1, const RuntimeMethod* method) { int32_t V_0 = 0; { float L_0 = ___lerper0; __this->set_currentDelta_2(L_0); int32_t L_1 = __this->get_onState_0(); V_0 = L_1; int32_t L_2 = V_0; switch (L_2) { case 0: { goto IL_0022; } case 1: { goto IL_0036; } case 2: { goto IL_0064; } } } { goto IL_0064; } IL_0022: { bool L_3 = ___isActivating1; if (!L_3) { goto IL_002c; } } { float L_4 = ___lerper0; VirtActionInvoker1< float >::Invoke(22 /* System.Void CrazyMinnow.SALSA.Switcher::SetOn(System.Single) */, __this, L_4); } IL_002c: { bool L_5 = ___isActivating1; if (L_5) { goto IL_007a; } } { VirtActionInvoker0::Invoke(23 /* System.Void CrazyMinnow.SALSA.Switcher::SetOff() */, __this); return; } IL_0036: { bool L_6 = ___isActivating1; if (!L_6) { goto IL_004d; } } { float L_7 = ___lerper0; bool L_8; L_8 = Mathf_Approximately_mFEB0CB3531393F6CBE07C6E0FCB473B3311F799A(L_7, (1.0f), /*hidden argument*/NULL); if (!L_8) { goto IL_004d; } } { float L_9 = ___lerper0; VirtActionInvoker1< float >::Invoke(22 /* System.Void CrazyMinnow.SALSA.Switcher::SetOn(System.Single) */, __this, L_9); } IL_004d: { bool L_10 = ___isActivating1; if (L_10) { goto IL_007a; } } { float L_11 = ___lerper0; bool L_12; L_12 = Mathf_Approximately_mFEB0CB3531393F6CBE07C6E0FCB473B3311F799A(L_11, (0.0f), /*hidden argument*/NULL); if (!L_12) { goto IL_007a; } } { VirtActionInvoker0::Invoke(23 /* System.Void CrazyMinnow.SALSA.Switcher::SetOff() */, __this); return; } IL_0064: { float L_13 = ___lerper0; if ((!(((float)L_13) > ((float)(0.0f))))) { goto IL_0074; } } { float L_14 = ___lerper0; VirtActionInvoker1< float >::Invoke(22 /* System.Void CrazyMinnow.SALSA.Switcher::SetOn(System.Single) */, __this, L_14); return; } IL_0074: { VirtActionInvoker0::Invoke(23 /* System.Void CrazyMinnow.SALSA.Switcher::SetOff() */, __this); } IL_007a: { return; } } // System.Void CrazyMinnow.SALSA.Switcher::ProcessInfluence(System.Boolean,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switcher_ProcessInfluence_mFF68898EE2999B7FDCAEFB1E8017E464CEEF9D11 (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, bool ___isInfluenced0, float ___lerper1, const RuntimeMethod* method) { { float L_0 = ___lerper1; Switcher_SetLerp_m1318FEB344EEBA1FEF2CD825D83212B567F2FF6B(__this, L_0, (bool)0, /*hidden argument*/NULL); return; } } // System.Boolean CrazyMinnow.SALSA.Switcher::HasDirtyInfluence() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Switcher_HasDirtyInfluence_mD288F94E40BE07F2EF80263169701E6664353D7B (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean CrazyMinnow.SALSA.Switcher::GetInfluenceStatus() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Switcher_GetInfluenceStatus_m57C9F17D447010437C1BBAAE1A99656C0BD9444C (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, const RuntimeMethod* method) { { return (bool)0; } } // CrazyMinnow.SALSA.ControllerData CrazyMinnow.SALSA.Switcher::GetPreviousDeltaData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 Switcher_GetPreviousDeltaData_m8E6B55BDD377181D26D9446BBEC4844731CA9D70 (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, const RuntimeMethod* method) { ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 )); ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 L_0 = V_0; return L_0; } } // System.Void CrazyMinnow.SALSA.Switcher::SetPreviousDeltaData(CrazyMinnow.SALSA.ControllerData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switcher_SetPreviousDeltaData_m1E9D90083028820BD6C85EE9DC88BF3425014327 (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 ___controllerData0, const RuntimeMethod* method) { { return; } } // System.Void CrazyMinnow.SALSA.Switcher::SetFrac(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switcher_SetFrac_mB016C8AE914081415ECFC0D1D9AABD1CF9DDD1BB (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, float ___frac0, const RuntimeMethod* method) { { float L_0 = ___frac0; float L_1; L_1 = Mathf_Lerp_m04D5C368C4E4F1AB78230C6809A6651951A52C86((0.0f), (1.0f), L_0, /*hidden argument*/NULL); __this->set_fracMax_4(L_1); return; } } // System.Single CrazyMinnow.SALSA.Switcher::GetMinExtent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Switcher_GetMinExtent_m34DDBD1AFBDECB4CBD7640C993262FB45289D0E6 (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, const RuntimeMethod* method) { { return (0.0f); } } // System.Single CrazyMinnow.SALSA.Switcher::GetMaxExtent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Switcher_GetMaxExtent_mFF6E8999AFAD58BD7F27A8ED24593BA6C75FA503 (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, const RuntimeMethod* method) { { float L_0 = __this->get_fracMax_4(); return L_0; } } // System.Single CrazyMinnow.SALSA.Switcher::GetNewDelta(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Switcher_GetNewDelta_mCF11D34091ADF0D0568D051C1F35E1A39853E8EC (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, bool ___isActive0, bool ___isPersistent1, const RuntimeMethod* method) { { float L_0 = __this->get_currentDelta_2(); return L_0; } } // System.Void CrazyMinnow.SALSA.Switcher::SetTarget(CrazyMinnow.SALSA.TformBase,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switcher_SetTarget_m110B196470A83D4D9B225B6A994C7308A567E4D7 (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___tform0, float ___frac1, const RuntimeMethod* method) { { TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_0 = ___tform0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_1 = L_0.get_pos_0(); float L_2 = L_1.get_x_2(); __this->set_fracMax_4(L_2); return; } } // System.Void CrazyMinnow.SALSA.Switcher::SetDelta(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Switcher_SetDelta_m804447511A190D9FBC259588FE0959046A677184 (Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 * __this, float ___delta0, const RuntimeMethod* method) { { float L_0 = ___delta0; __this->set_currentDelta_2(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 CrazyMinnow.SALSA.TextureController::.ctor(UnityEngine.Renderer,System.Int32,UnityEngine.Texture[],CrazyMinnow.SALSA.Switcher/OnState,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureController__ctor_m69FAB6004583C9E38B95CB95105BE7D54F514CFA (TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 * __this, Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * ___renderer0, int32_t ___materialIndex1, TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* ___animationFrames2, int32_t ___onState3, bool ___isRestNull4, const RuntimeMethod* method) { { Switcher__ctor_m67537B3923AABCB49B621465F0620500B829567F(__this, /*hidden argument*/NULL); Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_0 = ___renderer0; __this->set_renderer_5(L_0); int32_t L_1 = ___materialIndex1; __this->set_materialIndex_6(L_1); TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* L_2 = ___animationFrames2; __this->set_animationFrames_7(L_2); int32_t L_3 = ___onState3; ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_onState_0(L_3); bool L_4 = ___isRestNull4; ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_isRestNull_3(L_4); TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* L_5 = ___animationFrames2; NullCheck(L_5); ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_frame_1(((float)((float)(1.0f)/(float)((float)((float)((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))))))); return; } } // System.Int32 CrazyMinnow.SALSA.TextureController::GetID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextureController_GetID_m42D1846316CCE7C214B633B6E420FDE8F0E5258D (TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 * __this, const RuntimeMethod* method) { { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_0 = __this->get_renderer_5(); NullCheck(L_0); int32_t L_1; L_1 = Object_GetInstanceID_m7CF962BC1DB5C03F3522F88728CB2F514582B501(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void CrazyMinnow.SALSA.TextureController::SetOn(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureController_SetOn_m7CCB962FD67177494184100F47052FF8EE581641 (TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 * __this, float ___lerper0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { float L_0 = ___lerper0; float L_1 = ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->get_frame_1(); TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* L_2 = __this->get_animationFrames_7(); NullCheck(L_2); int32_t L_3; L_3 = Mathf_Clamp_m3899EEB9D73D22E0C4524189E89D36A647581CBF(il2cpp_codegen_cast_double_to_int(((float)((float)L_0/(float)L_1))), 0, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))), (int32_t)1)), /*hidden argument*/NULL); V_0 = L_3; Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_4 = __this->get_renderer_5(); NullCheck(L_4); MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* L_5; L_5 = Renderer_get_sharedMaterials_m9B2D432CA8AD8CEC4348E61789CC1BB0C3A00AFD(L_4, /*hidden argument*/NULL); int32_t L_6 = __this->get_materialIndex_6(); NullCheck(L_5); int32_t L_7 = L_6; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_8 = (L_5)->GetAt(static_cast(L_7)); IL2CPP_RUNTIME_CLASS_INIT(SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var); String_t* L_9 = ((SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_StaticFields*)il2cpp_codegen_static_fields_for(SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var))->get_RenderPipelineTextureName_0(); TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* L_10 = __this->get_animationFrames_7(); int32_t L_11 = V_0; NullCheck(L_10); int32_t L_12 = L_11; Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * L_13 = (L_10)->GetAt(static_cast(L_12)); NullCheck(L_8); Material_SetTexture_m04A1CD55201841F85E475992931A210229C782CF(L_8, L_9, L_13, /*hidden argument*/NULL); float L_14 = ___lerper0; ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_currentDelta_2(L_14); return; } } // System.Void CrazyMinnow.SALSA.TextureController::SetOff() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureController_SetOff_mC97B188462B2BEE5D5F164E9905CEB914E97CC7D (TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->get_isRestNull_3(); if (!L_0) { goto IL_0027; } } { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_1 = __this->get_renderer_5(); NullCheck(L_1); MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* L_2; L_2 = Renderer_get_sharedMaterials_m9B2D432CA8AD8CEC4348E61789CC1BB0C3A00AFD(L_1, /*hidden argument*/NULL); int32_t L_3 = __this->get_materialIndex_6(); NullCheck(L_2); int32_t L_4 = L_3; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_5 = (L_2)->GetAt(static_cast(L_4)); IL2CPP_RUNTIME_CLASS_INIT(SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var); String_t* L_6 = ((SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_StaticFields*)il2cpp_codegen_static_fields_for(SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var))->get_RenderPipelineTextureName_0(); NullCheck(L_5); Material_SetTexture_m04A1CD55201841F85E475992931A210229C782CF(L_5, L_6, (Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE *)NULL, /*hidden argument*/NULL); goto IL_004b; } IL_0027: { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_7 = __this->get_renderer_5(); NullCheck(L_7); MaterialU5BU5D_t3AE4936F3CA08FB9EE182A935E665EA9CDA5E492* L_8; L_8 = Renderer_get_sharedMaterials_m9B2D432CA8AD8CEC4348E61789CC1BB0C3A00AFD(L_7, /*hidden argument*/NULL); int32_t L_9 = __this->get_materialIndex_6(); NullCheck(L_8); int32_t L_10 = L_9; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_11 = (L_8)->GetAt(static_cast(L_10)); IL2CPP_RUNTIME_CLASS_INIT(SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var); String_t* L_12 = ((SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_StaticFields*)il2cpp_codegen_static_fields_for(SalsaSettings_tA9F3BEB153F8884191E7BA9E4541899BE806EDDE_il2cpp_TypeInfo_var))->get_RenderPipelineTextureName_0(); TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* L_13 = __this->get_animationFrames_7(); NullCheck(L_13); int32_t L_14 = 0; Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * L_15 = (L_13)->GetAt(static_cast(L_14)); NullCheck(L_11); Material_SetTexture_m04A1CD55201841F85E475992931A210229C782CF(L_11, L_12, L_15, /*hidden argument*/NULL); } IL_004b: { ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_currentDelta_2((0.0f)); return; } } // System.Boolean CrazyMinnow.SALSA.TextureController::Equals(CrazyMinnow.SALSA.IExpressionController) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextureController_Equals_mC123628BCB68D18201DBDB30511E9BFF8D53CACD (TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 * __this, RuntimeObject* ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 * V_0 = NULL; { RuntimeObject* L_0 = ___other0; V_0 = ((TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 *)IsInstClass((RuntimeObject*)L_0, TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045_il2cpp_TypeInfo_var)); TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 * L_1 = V_0; if (!L_1) { goto IL_001f; } } { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_2 = __this->get_renderer_5(); TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 * L_3 = V_0; NullCheck(L_3); Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_4 = L_3->get_renderer_5(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_5; L_5 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_2, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_001f; } } { return (bool)1; } IL_001f: { return (bool)0; } } // UnityEngine.GameObject CrazyMinnow.SALSA.TextureController::GetObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * TextureController_GetObject_m142C1202339A9F257648E52F6BF3CB96E1B9094E (TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 * __this, const RuntimeMethod* method) { { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_0 = __this->get_renderer_5(); NullCheck(L_0); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1; L_1 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean CrazyMinnow.SALSA.TextureController::HasInvalidController() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextureController_HasInvalidController_mFAF6B3A0DF33ADF58707E9A757D1C22C35CA01BF (TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 * __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; } { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_0 = __this->get_renderer_5(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); return L_1; } } // System.Void CrazyMinnow.SALSA.TextureController::LogType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureController_LogType_mA5F95312A3A133775C030AFF8356A537594A94F8 (TextureController_tBE51A7F3B8B6BF42C5C04251A69A26BB16EDF045 * __this, 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*)&_stringLiteralE892B646DE427D943A7C403B00EBD6F0A00FD462); s_Il2CppMethodInitialized = true; } Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * G_B2_0 = NULL; String_t* G_B2_1 = NULL; Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * G_B1_0 = NULL; String_t* G_B1_1 = NULL; String_t* G_B3_0 = NULL; String_t* G_B3_1 = NULL; { Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_0 = __this->get_renderer_5(); Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_1 = L_0; G_B1_0 = L_1; G_B1_1 = _stringLiteralE892B646DE427D943A7C403B00EBD6F0A00FD462; if (L_1) { G_B2_0 = L_1; G_B2_1 = _stringLiteralE892B646DE427D943A7C403B00EBD6F0A00FD462; goto IL_0012; } } { G_B3_0 = ((String_t*)(NULL)); G_B3_1 = G_B1_1; goto IL_0017; } IL_0012: { NullCheck(G_B2_0); String_t* L_2; L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B2_0); G_B3_0 = L_2; G_B3_1 = G_B2_1; } IL_0017: { String_t* L_3; L_3 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(G_B3_1, G_B3_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(L_3, /*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 CrazyMinnow.SALSA.TformBase::.ctor(UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TformBase__ctor_mC920C8F643AF451EE372A801F9B47291653D3584 (TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___pos0, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rot1, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___scale2, const RuntimeMethod* method) { { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = ___pos0; __this->set_pos_0(L_0); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_1 = ___rot1; __this->set_rot_1(L_1); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2 = ___scale2; __this->set_scale_2(L_2); return; } } IL2CPP_EXTERN_C void TformBase__ctor_mC920C8F643AF451EE372A801F9B47291653D3584_AdjustorThunk (RuntimeObject * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___pos0, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rot1, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___scale2, const RuntimeMethod* method) { int32_t _offset = 1; TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 * _thisAdjusted = reinterpret_cast(__this + _offset); TformBase__ctor_mC920C8F643AF451EE372A801F9B47291653D3584(_thisAdjusted, ___pos0, ___rot1, ___scale2, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void CrazyMinnow.SALSA.UguiController::.ctor(UnityEngine.UI.Image,UnityEngine.Sprite[],CrazyMinnow.SALSA.Switcher/OnState,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UguiController__ctor_m16E0D998ACC0F04F200585B2078A74EFE25933F9 (UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B * __this, Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * ___renderer0, SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* ___animationFrames1, int32_t ___onState2, bool ___isRestNull3, const RuntimeMethod* method) { { Switcher__ctor_m67537B3923AABCB49B621465F0620500B829567F(__this, /*hidden argument*/NULL); Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_0 = ___renderer0; __this->set_renderer_5(L_0); SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* L_1 = ___animationFrames1; __this->set_animationFrames_6(L_1); int32_t L_2 = ___onState2; ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_onState_0(L_2); bool L_3 = ___isRestNull3; ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_isRestNull_3(L_3); SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* L_4 = ___animationFrames1; NullCheck(L_4); ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_frame_1(((float)((float)(1.0f)/(float)((float)((float)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))); return; } } // System.Int32 CrazyMinnow.SALSA.UguiController::GetID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UguiController_GetID_m0493D4C18EBCF9D9A4FB35C85CAD622016658B03 (UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B * __this, const RuntimeMethod* method) { { Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_0 = __this->get_renderer_5(); NullCheck(L_0); int32_t L_1; L_1 = Object_GetInstanceID_m7CF962BC1DB5C03F3522F88728CB2F514582B501(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void CrazyMinnow.SALSA.UguiController::SetOn(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UguiController_SetOn_mA7712BB1EB21451F47471F6242FDA45BCC5C379B (UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B * __this, float ___lerper0, const RuntimeMethod* method) { int32_t V_0 = 0; { float L_0 = ___lerper0; float L_1 = ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->get_frame_1(); SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* L_2 = __this->get_animationFrames_6(); NullCheck(L_2); int32_t L_3; L_3 = Mathf_Clamp_m3899EEB9D73D22E0C4524189E89D36A647581CBF(il2cpp_codegen_cast_double_to_int(((float)((float)L_0/(float)L_1))), 0, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))), (int32_t)1)), /*hidden argument*/NULL); V_0 = L_3; Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_4 = __this->get_renderer_5(); SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* L_5 = __this->get_animationFrames_6(); int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * L_8 = (L_5)->GetAt(static_cast(L_7)); NullCheck(L_4); Image_set_sprite_m55C50F18ABA0A98E926FC777F7D07FA18A7D04E4(L_4, L_8, /*hidden argument*/NULL); float L_9 = ___lerper0; ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_currentDelta_2(L_9); return; } } // System.Void CrazyMinnow.SALSA.UguiController::SetOff() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UguiController_SetOff_mFC2C292D5DB15F9AD379573657EC52CE93E0001C (UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B * __this, const RuntimeMethod* method) { { bool L_0 = ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->get_isRestNull_3(); if (!L_0) { goto IL_0016; } } { Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_1 = __this->get_renderer_5(); NullCheck(L_1); Image_set_sprite_m55C50F18ABA0A98E926FC777F7D07FA18A7D04E4(L_1, (Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 *)NULL, /*hidden argument*/NULL); goto IL_0029; } IL_0016: { Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_2 = __this->get_renderer_5(); SpriteU5BU5D_t8DB77E112FFC97B722E701189DCB4059F943FD77* L_3 = __this->get_animationFrames_6(); NullCheck(L_3); int32_t L_4 = 0; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * L_5 = (L_3)->GetAt(static_cast(L_4)); NullCheck(L_2); Image_set_sprite_m55C50F18ABA0A98E926FC777F7D07FA18A7D04E4(L_2, L_5, /*hidden argument*/NULL); } IL_0029: { ((Switcher_t1BCA259B41B313DB0F684CC7F35ADAB49A83C385 *)__this)->set_currentDelta_2((0.0f)); return; } } // System.Boolean CrazyMinnow.SALSA.UguiController::Equals(CrazyMinnow.SALSA.IExpressionController) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UguiController_Equals_mB1F42A2B1E20E7989062079167FBBE1A51F04854 (UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B * __this, RuntimeObject* ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B * V_0 = NULL; { RuntimeObject* L_0 = ___other0; V_0 = ((UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B *)IsInstClass((RuntimeObject*)L_0, UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B_il2cpp_TypeInfo_var)); UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B * L_1 = V_0; if (!L_1) { goto IL_001f; } } { Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_2 = __this->get_renderer_5(); UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B * L_3 = V_0; NullCheck(L_3); Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_4 = L_3->get_renderer_5(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_5; L_5 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_2, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_001f; } } { return (bool)1; } IL_001f: { return (bool)0; } } // UnityEngine.GameObject CrazyMinnow.SALSA.UguiController::GetObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * UguiController_GetObject_mFDD0D97DDAD893454F8FC71F472F796B4EA4A587 (UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B * __this, const RuntimeMethod* method) { { Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_0 = __this->get_renderer_5(); NullCheck(L_0); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1; L_1 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean CrazyMinnow.SALSA.UguiController::HasInvalidController() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UguiController_HasInvalidController_mB2B3414B4922CAB36BBE3B7EC7657F8126021618 (UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B * __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; } { Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_0 = __this->get_renderer_5(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); return L_1; } } // System.Void CrazyMinnow.SALSA.UguiController::LogType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UguiController_LogType_mCB9B1A86AE650724ABEBEF97E4FBBA59AB08E2C9 (UguiController_tF0B6858DD6EE4B5DB960C603569F9D5C4B7A942B * __this, 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*)&_stringLiteral4D887FD7283E0CD12E13BF2610E5DDDF5E042AAD); s_Il2CppMethodInitialized = true; } Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * G_B2_0 = NULL; String_t* G_B2_1 = NULL; Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * G_B1_0 = NULL; String_t* G_B1_1 = NULL; String_t* G_B3_0 = NULL; String_t* G_B3_1 = NULL; { Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_0 = __this->get_renderer_5(); Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_1 = L_0; G_B1_0 = L_1; G_B1_1 = _stringLiteral4D887FD7283E0CD12E13BF2610E5DDDF5E042AAD; if (L_1) { G_B2_0 = L_1; G_B2_1 = _stringLiteral4D887FD7283E0CD12E13BF2610E5DDDF5E042AAD; goto IL_0012; } } { G_B3_0 = ((String_t*)(NULL)); G_B3_1 = G_B1_1; goto IL_0017; } IL_0012: { NullCheck(G_B2_0); String_t* L_2; L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B2_0); G_B3_0 = L_2; G_B3_1 = G_B2_1; } IL_0017: { String_t* L_3; L_3 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(G_B3_1, G_B3_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(L_3, /*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 CrazyMinnow.SALSA.UmaController::.ctor(CrazyMinnow.SALSA.UmaUepProxy,System.Int32,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaController__ctor_m887575118976652B2AAF7005B8E1E3E2FFAE097F (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * ___umaUepProxy0, int32_t ___poseIndex1, float ___fullOnValue2, float ___frac3, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_0 = ___umaUepProxy0; __this->set_umaUepProxy_0(L_0); int32_t L_1 = ___poseIndex1; __this->set_poseIndex_1(L_1); float L_2 = ___fullOnValue2; __this->set_fullOnValue_4(L_2); float L_3 = ___frac3; UmaController_SetFrac_m9AB97E84F54D12731796BD9852D228478E2328AF(__this, L_3, /*hidden argument*/NULL); return; } } // System.Int32 CrazyMinnow.SALSA.UmaController::GetID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UmaController_GetID_mB29131FB7E3ED0E600E9EAE35BDA94D34AFC2201 (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, const RuntimeMethod* method) { { UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_0 = __this->get_umaUepProxy_0(); NullCheck(L_0); int32_t L_1; L_1 = Object_GetInstanceID_m7CF962BC1DB5C03F3522F88728CB2F514582B501(L_0, /*hidden argument*/NULL); int32_t L_2 = __this->get_poseIndex_1(); return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)((int32_t)1000))), (int32_t)L_2)); } } // System.Void CrazyMinnow.SALSA.UmaController::SetLerp(System.Single,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaController_SetLerp_m579D751C9AABB3F650FEBEB5E105C4A59F52535F (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, float ___lerper0, bool ___isActivating1, const RuntimeMethod* method) { { bool L_0 = ___isActivating1; if (!L_0) { goto IL_001d; } } { float L_1 = __this->get_start_3(); float L_2 = __this->get_fracMax_6(); float L_3 = ___lerper0; float L_4; L_4 = Mathf_Lerp_m04D5C368C4E4F1AB78230C6809A6651951A52C86(L_1, L_2, L_3, /*hidden argument*/NULL); __this->set_previousValue_5(L_4); goto IL_0035; } IL_001d: { float L_5 = __this->get_min_2(); float L_6 = __this->get_start_3(); float L_7 = ___lerper0; float L_8; L_8 = Mathf_Lerp_m04D5C368C4E4F1AB78230C6809A6651951A52C86(L_5, L_6, L_7, /*hidden argument*/NULL); __this->set_previousValue_5(L_8); } IL_0035: { UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_9 = __this->get_umaUepProxy_0(); int32_t L_10 = __this->get_poseIndex_1(); float L_11 = __this->get_previousValue_5(); NullCheck(L_9); UmaUepProxy_SetPose_mD3C74328602C1BF06AD8203218FCF410C209C5C1(L_9, L_10, L_11, /*hidden argument*/NULL); return; } } // System.Void CrazyMinnow.SALSA.UmaController::ProcessInfluence(System.Boolean,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaController_ProcessInfluence_mE932895AB0D126B4C4A9541FE8CC8CD22790389E (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, bool ___isInfluenced0, float ___lerper1, const RuntimeMethod* method) { { bool L_0 = ___isInfluenced0; __this->set_isInfluenced_7(L_0); UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_1 = __this->get_umaUepProxy_0(); NullCheck(L_1); UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_2; L_2 = UmaUepProxy_get_Poses_m8A22DDBEE10A74CD16AAF29574406F34493CFB8F_inline(L_1, /*hidden argument*/NULL); int32_t L_3 = __this->get_poseIndex_1(); NullCheck(L_2); int32_t L_4 = L_3; UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * L_5 = (L_2)->GetAt(static_cast(L_4)); NullCheck(L_5); float L_6 = L_5->get_amount_2(); __this->set_min_2(L_6); float L_7 = ___lerper1; UmaController_SetLerp_m579D751C9AABB3F650FEBEB5E105C4A59F52535F(__this, L_7, (bool)0, /*hidden argument*/NULL); return; } } // System.Boolean CrazyMinnow.SALSA.UmaController::HasDirtyInfluence() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UmaController_HasDirtyInfluence_m8088D3A308A9E35D0B3FB74F7CC06A7765F31845 (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, const RuntimeMethod* method) { { UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_0 = __this->get_umaUepProxy_0(); NullCheck(L_0); UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_1; L_1 = UmaUepProxy_get_Poses_m8A22DDBEE10A74CD16AAF29574406F34493CFB8F_inline(L_0, /*hidden argument*/NULL); int32_t L_2 = __this->get_poseIndex_1(); NullCheck(L_1); int32_t L_3 = L_2; UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * L_4 = (L_1)->GetAt(static_cast(L_3)); NullCheck(L_4); float L_5 = L_4->get_amount_2(); float L_6 = __this->get_previousValue_5(); bool L_7; L_7 = Mathf_Approximately_mFEB0CB3531393F6CBE07C6E0FCB473B3311F799A(L_5, L_6, /*hidden argument*/NULL); __this->set_isInfluenced_7((bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0)); bool L_8 = __this->get_isInfluenced_7(); return L_8; } } // System.Boolean CrazyMinnow.SALSA.UmaController::GetInfluenceStatus() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UmaController_GetInfluenceStatus_mB4173402FFD4A70C928DE31D4E81D8ECC9E2DC3D (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isInfluenced_7(); return L_0; } } // System.Single CrazyMinnow.SALSA.UmaController::GetNewDelta(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UmaController_GetNewDelta_m5E6421E7DF087D72A538D3E9191B5432F58E5539 (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, bool ___isActive0, bool ___isPersistent1, const RuntimeMethod* method) { { bool L_0 = ___isPersistent1; if (!L_0) { goto IL_0011; } } { float L_1 = __this->get_previousValue_5(); __this->set_start_3(L_1); goto IL_002e; } IL_0011: { UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_2 = __this->get_umaUepProxy_0(); NullCheck(L_2); UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_3; L_3 = UmaUepProxy_get_Poses_m8A22DDBEE10A74CD16AAF29574406F34493CFB8F_inline(L_2, /*hidden argument*/NULL); int32_t L_4 = __this->get_poseIndex_1(); NullCheck(L_3); int32_t L_5 = L_4; UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * L_6 = (L_3)->GetAt(static_cast(L_5)); NullCheck(L_6); float L_7 = L_6->get_amount_2(); __this->set_start_3(L_7); } IL_002e: { bool L_8 = ___isActive0; if (L_8) { goto IL_0037; } } { return (1.0f); } IL_0037: { return (0.0f); } } // CrazyMinnow.SALSA.ControllerData CrazyMinnow.SALSA.UmaController::GetPreviousDeltaData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 UmaController_GetPreviousDeltaData_m3CF8425F2002261DC0DBADA420B2164C5B889F03 (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, const RuntimeMethod* method) { TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 )); TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_0 = V_0; float L_1 = __this->get_previousValue_5(); ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 L_2; memset((&L_2), 0, sizeof(L_2)); ControllerData__ctor_mB835E971272F264A7CD4B4E780D9CA773D82F561((&L_2), L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void CrazyMinnow.SALSA.UmaController::SetPreviousDeltaData(CrazyMinnow.SALSA.ControllerData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaController_SetPreviousDeltaData_m96D1A0C9A3F0F32BD91411EEFCCF6F81E3BEBE65 (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 ___controllerData0, const RuntimeMethod* method) { { ControllerData_t97DF505943447F8555AF7DC9F26E2643A014D771 L_0 = ___controllerData0; float L_1 = L_0.get_floatData_1(); __this->set_previousValue_5(L_1); return; } } // System.Void CrazyMinnow.SALSA.UmaController::SetFrac(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaController_SetFrac_m9AB97E84F54D12731796BD9852D228478E2328AF (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, float ___frac0, const RuntimeMethod* method) { { float L_0 = __this->get_min_2(); float L_1 = __this->get_fullOnValue_4(); float L_2 = ___frac0; float L_3; L_3 = Mathf_Lerp_m04D5C368C4E4F1AB78230C6809A6651951A52C86(L_0, L_1, L_2, /*hidden argument*/NULL); __this->set_fracMax_6(L_3); return; } } // System.Boolean CrazyMinnow.SALSA.UmaController::Equals(CrazyMinnow.SALSA.IExpressionController) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UmaController_Equals_m5F5305F4E0F68ECE4FAB911BD1B1FB1DF31FCE42 (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, RuntimeObject* ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * V_0 = NULL; { RuntimeObject* L_0 = ___other0; V_0 = ((UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD *)IsInstClass((RuntimeObject*)L_0, UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD_il2cpp_TypeInfo_var)); UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * L_1 = V_0; if (!L_1) { goto IL_0032; } } { UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_2 = __this->get_umaUepProxy_0(); NullCheck(L_2); int32_t L_3; L_3 = Object_GetInstanceID_m7CF962BC1DB5C03F3522F88728CB2F514582B501(L_2, /*hidden argument*/NULL); UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * L_4 = V_0; NullCheck(L_4); UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_5 = L_4->get_umaUepProxy_0(); NullCheck(L_5); int32_t L_6; L_6 = Object_GetInstanceID_m7CF962BC1DB5C03F3522F88728CB2F514582B501(L_5, /*hidden argument*/NULL); if ((!(((uint32_t)L_3) == ((uint32_t)L_6)))) { goto IL_0032; } } { int32_t L_7 = __this->get_poseIndex_1(); UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * L_8 = V_0; NullCheck(L_8); int32_t L_9 = L_8->get_poseIndex_1(); if ((!(((uint32_t)L_7) == ((uint32_t)L_9)))) { goto IL_0032; } } { return (bool)1; } IL_0032: { return (bool)0; } } // System.Single CrazyMinnow.SALSA.UmaController::GetMaxExtent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UmaController_GetMaxExtent_m6DD957039D7245CF657BFB3E15CD3ECA6EBD264A (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, const RuntimeMethod* method) { { return (1.0f); } } // System.Single CrazyMinnow.SALSA.UmaController::GetMinExtent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UmaController_GetMinExtent_m0BC6E812A9A24F1D0ADC33336C86D9544ECA1B0C (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, const RuntimeMethod* method) { { __this->set_isInfluenced_7((bool)0); __this->set_min_2((0.0f)); float L_0 = __this->get_min_2(); return L_0; } } // UnityEngine.GameObject CrazyMinnow.SALSA.UmaController::GetObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * UmaController_GetObject_m860A494A07351788A576E7F4B6269AD14C91F418 (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, const RuntimeMethod* method) { { UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_0 = __this->get_umaUepProxy_0(); NullCheck(L_0); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1; L_1 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean CrazyMinnow.SALSA.UmaController::HasInvalidController() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UmaController_HasInvalidController_m69A41E73CE5B858CFB821BF70F7D1319E35F1DA1 (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __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; } { UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_0 = __this->get_umaUepProxy_0(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); return L_1; } } // System.Void CrazyMinnow.SALSA.UmaController::SetTarget(CrazyMinnow.SALSA.TformBase,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaController_SetTarget_m1EEB092DBA483681F316B33CF1A1719F93C4CC48 (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 ___tform0, float ___frac1, const RuntimeMethod* method) { { TformBase_tEFD4120A0F40E04DD62E6A49717973EF410674B4 L_0 = ___tform0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_1 = L_0.get_pos_0(); float L_2 = L_1.get_x_2(); __this->set_fracMax_6(L_2); return; } } // System.Void CrazyMinnow.SALSA.UmaController::SetDelta(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaController_SetDelta_m9B24A1710E20CF21EEF5427C582A0344ACE6CD25 (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, float ___delta0, const RuntimeMethod* method) { { return; } } // System.Void CrazyMinnow.SALSA.UmaController::LogType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaController_LogType_m6667781ED604A07A7F8A32A9CDC9EE11F468E50F (UmaController_t8E93011D41126B05575E9FBAA4B01C935E6AA6CD * __this, 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*)&_stringLiteral282A315922DE0991E94F1397077839F37DB35904); s_Il2CppMethodInitialized = true; } UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * G_B2_0 = NULL; String_t* G_B2_1 = NULL; UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * G_B1_0 = NULL; String_t* G_B1_1 = NULL; String_t* G_B3_0 = NULL; String_t* G_B3_1 = NULL; { UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_0 = __this->get_umaUepProxy_0(); UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * L_1 = L_0; G_B1_0 = L_1; G_B1_1 = _stringLiteral282A315922DE0991E94F1397077839F37DB35904; if (L_1) { G_B2_0 = L_1; G_B2_1 = _stringLiteral282A315922DE0991E94F1397077839F37DB35904; goto IL_0012; } } { G_B3_0 = ((String_t*)(NULL)); G_B3_1 = G_B1_1; goto IL_0017; } IL_0012: { NullCheck(G_B2_0); String_t* L_2; L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B2_0); G_B3_0 = L_2; G_B3_1 = G_B2_1; } IL_0017: { String_t* L_3; L_3 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(G_B3_1, G_B3_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(L_3, /*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 CrazyMinnow.SALSA.UmaUepEditorPreviewTwirler::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaUepEditorPreviewTwirler__ctor_mFE8A808BBEABF4911ACE50CEA402968CA7BC7F03 (UmaUepEditorPreviewTwirler_t6DF6715F034E864B3C128D43A387501C5FEDBB83 * __this, const RuntimeMethod* method) { { MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__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 CrazyMinnow.SALSA.UmaUepProxy::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaUepProxy__ctor_mF815CA6779BE0C1E39DB40AC7DE74F50550494F9 (UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__this, /*hidden argument*/NULL); bool L_0 = __this->get_isInitialized_6(); if (L_0) { goto IL_0019; } } { IL2CPP_RUNTIME_CLASS_INIT(UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9_il2cpp_TypeInfo_var); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_1 = ((UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9_StaticFields*)il2cpp_codegen_static_fields_for(UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9_il2cpp_TypeInfo_var))->get_BuiltInUepPoseDefs_4(); UmaUepProxy_InitializeUmaUepPoses_m66A94542595D50C31A6213AFAA6B92A39ED59E35(__this, L_1, /*hidden argument*/NULL); } IL_0019: { return; } } // CrazyMinnow.SALSA.UmaUepProxy/UepPose[] CrazyMinnow.SALSA.UmaUepProxy::get_Poses() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* UmaUepProxy_get_Poses_m8A22DDBEE10A74CD16AAF29574406F34493CFB8F (UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * __this, const RuntimeMethod* method) { { UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_0 = __this->get_poses_5(); return L_0; } } // System.Void CrazyMinnow.SALSA.UmaUepProxy::InitializeUmaUepPoses(CrazyMinnow.SALSA.UmaUepProxy/UepPoseDef[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaUepProxy_InitializeUmaUepPoses_m66A94542595D50C31A6213AFAA6B92A39ED59E35 (UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * __this, UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* ___poseDefs0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_0 = ___poseDefs0; NullCheck(L_0); UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_1 = (UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9*)(UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9*)SZArrayNew(UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))); __this->set_poses_5(L_1); V_0 = 0; goto IL_0039; } IL_0012: { UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_2 = __this->get_poses_5(); int32_t L_3 = V_0; UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_4 = ___poseDefs0; int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_7 = (L_4)->GetAt(static_cast(L_6)); NullCheck(L_7); String_t* L_8 = L_7->get_name_0(); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_9 = ___poseDefs0; int32_t L_10 = V_0; NullCheck(L_9); int32_t L_11 = L_10; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_12 = (L_9)->GetAt(static_cast(L_11)); NullCheck(L_12); bool L_13 = L_12->get_isBidirectional_1(); UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * L_14 = (UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 *)il2cpp_codegen_object_new(UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92_il2cpp_TypeInfo_var); UepPose__ctor_m2A7D17A76D26AF2F5F5A262E2B97389770FE976C(L_14, L_8, L_13, (0.0f), (bool)0, /*hidden argument*/NULL); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_14); (L_2)->SetAt(static_cast(L_3), (UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 *)L_14); int32_t L_15 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0039: { int32_t L_16 = V_0; UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_17 = __this->get_poses_5(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))) { goto IL_0012; } } { __this->set_isInitialized_6((bool)1); return; } } // System.Boolean CrazyMinnow.SALSA.UmaUepProxy::GetMode(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UmaUepProxy_GetMode_m122E943E9C6D37C9EF68F72EAE5E134F5BB9DA41 (UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * __this, int32_t ___poseIndex0, const RuntimeMethod* method) { { UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_0 = __this->get_poses_5(); int32_t L_1 = ___poseIndex0; NullCheck(L_0); int32_t L_2 = L_1; UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * L_3 = (L_0)->GetAt(static_cast(L_2)); NullCheck(L_3); bool L_4 = L_3->get_biDirectional_1(); return L_4; } } // System.String[] CrazyMinnow.SALSA.UmaUepProxy::GetPoseNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* UmaUepProxy_GetPoseNames_m5CA2324D7C61A4B62972D54410321498531DD4A1 (UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* V_0 = NULL; int32_t V_1 = 0; { UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_0 = __this->get_poses_5(); NullCheck(L_0); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))); V_0 = L_1; V_1 = 0; goto IL_0026; } IL_0012: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = V_0; int32_t L_3 = V_1; UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_4 = __this->get_poses_5(); int32_t L_5 = V_1; NullCheck(L_4); int32_t L_6 = L_5; UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * L_7 = (L_4)->GetAt(static_cast(L_6)); NullCheck(L_7); String_t* L_8 = L_7->get_name_0(); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_8); (L_2)->SetAt(static_cast(L_3), (String_t*)L_8); int32_t L_9 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); } IL_0026: { int32_t L_10 = V_1; UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_11 = __this->get_poses_5(); NullCheck(L_11); if ((((int32_t)L_10) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))) { goto IL_0012; } } { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = V_0; return L_12; } } // System.Int32 CrazyMinnow.SALSA.UmaUepProxy::GetPoseIndex(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UmaUepProxy_GetPoseIndex_mD6906C94C8EC9DCFE16D0BA4825502530028A1CD (UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * __this, String_t* ___poseName0, const RuntimeMethod* method) { int32_t V_0 = 0; { V_0 = 0; goto IL_001f; } IL_0004: { UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_0 = __this->get_poses_5(); int32_t L_1 = V_0; NullCheck(L_0); int32_t L_2 = L_1; UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * L_3 = (L_0)->GetAt(static_cast(L_2)); NullCheck(L_3); String_t* L_4 = L_3->get_name_0(); String_t* L_5 = ___poseName0; bool L_6; L_6 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_4, L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_001b; } } { int32_t L_7 = V_0; return L_7; } IL_001b: { int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_001f: { int32_t L_9 = V_0; UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_10 = __this->get_poses_5(); NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))) { goto IL_0004; } } { return (-1); } } // System.Void CrazyMinnow.SALSA.UmaUepProxy::ClearDirty(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaUepProxy_ClearDirty_m2D10F6A398C90FBC794736A003E4A5182B69BC4B (UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * __this, int32_t ___poseIndex0, const RuntimeMethod* method) { { UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_0 = __this->get_poses_5(); int32_t L_1 = ___poseIndex0; NullCheck(L_0); int32_t L_2 = L_1; UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * L_3 = (L_0)->GetAt(static_cast(L_2)); NullCheck(L_3); L_3->set_isDirty_3((bool)0); return; } } // System.Void CrazyMinnow.SALSA.UmaUepProxy::SetPose(System.Int32,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaUepProxy_SetPose_mD3C74328602C1BF06AD8203218FCF410C209C5C1 (UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * __this, int32_t ___poseIndex0, float ___amount1, const RuntimeMethod* method) { { UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_0 = __this->get_poses_5(); int32_t L_1 = ___poseIndex0; NullCheck(L_0); int32_t L_2 = L_1; UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * L_3 = (L_0)->GetAt(static_cast(L_2)); float L_4 = ___amount1; NullCheck(L_3); L_3->set_amount_2(L_4); UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_5 = __this->get_poses_5(); int32_t L_6 = ___poseIndex0; NullCheck(L_5); int32_t L_7 = L_6; UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * L_8 = (L_5)->GetAt(static_cast(L_7)); NullCheck(L_8); L_8->set_isDirty_3((bool)1); return; } } // System.Void CrazyMinnow.SALSA.UmaUepProxy::LooseSetPose(System.Int32,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaUepProxy_LooseSetPose_m1991E3422754C45BE2535620D1DBCA5F6D1574BC (UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * __this, int32_t ___poseIndex0, float ___amount1, const RuntimeMethod* method) { { UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_0 = __this->get_poses_5(); int32_t L_1 = ___poseIndex0; NullCheck(L_0); int32_t L_2 = L_1; UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * L_3 = (L_0)->GetAt(static_cast(L_2)); float L_4 = ___amount1; NullCheck(L_3); L_3->set_amount_2(L_4); return; } } // System.Void CrazyMinnow.SALSA.UmaUepProxy::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UmaUepProxy__cctor_mAB7FB92E1CA2B66FAC6FD52E68FF2B8EC9CCD115 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral08C5B995FACD33C579DA045DAF281E96D184EE29); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral129C0DBCA9BDDB19FFDEBEFAAA8EBC335FF6EAAB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral12F0D5834CF602E9DF6B5BB96349925E9E080AFA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1342E00533C5A3204C8654AE8C2E6CD8132487F3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral28007DF4B914B77A6D81677C969928EEA6C4F818); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3902019B527DBC7AA32EF2FBAE98904A68F6A91D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral44BFA10981CA046D2CA6CB96A3A5D80822B55967); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B834130F365D4188B04AC6C4AD40F210E76182E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4BF5009B64A3561A1FDDDF1F66A98A002A232F20); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4DEFD35274F79BC8CD34BD45427B910EE4D122C7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral585CAD55448537D7107032161BCE5CE12C1FAA86); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A0FE0F1FD0A3045F5843C550E021ABC45D18DB8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CBA7E1F41091391CA0B5724C2076CF9A7B82E04); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral701415F0F28B150E63FC17EDEC4293FCD6ACBA8E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral72AFFB2B01B52DC3DC13F955051C5B4E762E6247); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral902A67E91B67B4852E8AC1C949E6FE6FB5E377EE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9DC712A8E70A2CBBD74A6D4A28B1D8ADB67089F1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9E7384E8E3B6E334507D5C4272DD9D57AB0E58C9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA42C805591E42541F688940AAE4596CCB5EABD19); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA6F1EAC798FFE1EE2A06CB507F06704EF9BB7B20); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAB5C478C555C7ACD352AE6A3232D39D1F52A2AE4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAD081D7C01890D88485860615375CFCC31999855); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB65EEFE208591DF39E34395A0E148E6FC100157B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB86F141FA37096D2D5AF7F08D238AE8636A046C8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBB9352EF06D51E7125729041EF4401EFBF97DB1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBE9AEDA87C409551BD2C437087BFCDAF77929110); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD22DB958DFBE41FEBAF708AD4C0EB849A03E49F3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4D24D2950DD3C4587C26FF0083CC809436BCADE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD658CDC6C27912AA68AF360AEFEC2C4092A4BB61); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8A80A9F4A176020C172E3ABE48BBF28BD7782A2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2BF4306A56A68510ADA2CAEBF1AD705A3493635); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2DF3A322B225C5FB72EF21694AA1D5F093470BD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED4892BFB13282398FCAD0C01F8F19CAA0DA2A87); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1EA17C918344EFED79132C05DBEB15A932AB47A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF412947170ECEAA101661EED219B7F3E11A7DBA3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFF7592D5CC37F05D4756C1E995D8BC008050F03C); s_Il2CppMethodInitialized = true; } { UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_0 = (UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07*)(UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07*)SZArrayNew(UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07_il2cpp_TypeInfo_var, (uint32_t)((int32_t)36)); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_1 = L_0; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_2 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_2, _stringLiteralD22DB958DFBE41FEBAF708AD4C0EB849A03E49F3, (bool)1, /*hidden argument*/NULL); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast(0), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_2); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_3 = L_1; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_4 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_4, _stringLiteral585CAD55448537D7107032161BCE5CE12C1FAA86, (bool)1, /*hidden argument*/NULL); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_4); (L_3)->SetAt(static_cast(1), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_4); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_5 = L_3; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_6 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_6, _stringLiteral28007DF4B914B77A6D81677C969928EEA6C4F818, (bool)1, /*hidden argument*/NULL); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_6); (L_5)->SetAt(static_cast(2), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_6); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_7 = L_5; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_8 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_8, _stringLiteralA42C805591E42541F688940AAE4596CCB5EABD19, (bool)1, /*hidden argument*/NULL); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_8); (L_7)->SetAt(static_cast(3), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_8); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_9 = L_7; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_10 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_10, _stringLiteralAB5C478C555C7ACD352AE6A3232D39D1F52A2AE4, (bool)1, /*hidden argument*/NULL); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_10); (L_9)->SetAt(static_cast(4), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_10); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_11 = L_9; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_12 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_12, _stringLiteral72AFFB2B01B52DC3DC13F955051C5B4E762E6247, (bool)1, /*hidden argument*/NULL); NullCheck(L_11); ArrayElementTypeCheck (L_11, L_12); (L_11)->SetAt(static_cast(5), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_12); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_13 = L_11; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_14 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_14, _stringLiteral9DC712A8E70A2CBBD74A6D4A28B1D8ADB67089F1, (bool)1, /*hidden argument*/NULL); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_14); (L_13)->SetAt(static_cast(6), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_14); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_15 = L_13; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_16 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_16, _stringLiteralED4892BFB13282398FCAD0C01F8F19CAA0DA2A87, (bool)1, /*hidden argument*/NULL); NullCheck(L_15); ArrayElementTypeCheck (L_15, L_16); (L_15)->SetAt(static_cast(7), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_16); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_17 = L_15; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_18 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_18, _stringLiteral129C0DBCA9BDDB19FFDEBEFAAA8EBC335FF6EAAB, (bool)1, /*hidden argument*/NULL); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_18); (L_17)->SetAt(static_cast(8), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_18); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_19 = L_17; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_20 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_20, _stringLiteralD4D24D2950DD3C4587C26FF0083CC809436BCADE, (bool)1, /*hidden argument*/NULL); NullCheck(L_19); ArrayElementTypeCheck (L_19, L_20); (L_19)->SetAt(static_cast(((int32_t)9)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_20); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_21 = L_19; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_22 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_22, _stringLiteral08C5B995FACD33C579DA045DAF281E96D184EE29, (bool)1, /*hidden argument*/NULL); NullCheck(L_21); ArrayElementTypeCheck (L_21, L_22); (L_21)->SetAt(static_cast(((int32_t)10)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_22); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_23 = L_21; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_24 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_24, _stringLiteral12F0D5834CF602E9DF6B5BB96349925E9E080AFA, (bool)1, /*hidden argument*/NULL); NullCheck(L_23); ArrayElementTypeCheck (L_23, L_24); (L_23)->SetAt(static_cast(((int32_t)11)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_24); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_25 = L_23; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_26 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_26, _stringLiteralD8A80A9F4A176020C172E3ABE48BBF28BD7782A2, (bool)0, /*hidden argument*/NULL); NullCheck(L_25); ArrayElementTypeCheck (L_25, L_26); (L_25)->SetAt(static_cast(((int32_t)12)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_26); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_27 = L_25; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_28 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_28, _stringLiteral902A67E91B67B4852E8AC1C949E6FE6FB5E377EE, (bool)0, /*hidden argument*/NULL); NullCheck(L_27); ArrayElementTypeCheck (L_27, L_28); (L_27)->SetAt(static_cast(((int32_t)13)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_28); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_29 = L_27; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_30 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_30, _stringLiteral5A0FE0F1FD0A3045F5843C550E021ABC45D18DB8, (bool)1, /*hidden argument*/NULL); NullCheck(L_29); ArrayElementTypeCheck (L_29, L_30); (L_29)->SetAt(static_cast(((int32_t)14)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_30); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_31 = L_29; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_32 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_32, _stringLiteral9E7384E8E3B6E334507D5C4272DD9D57AB0E58C9, (bool)1, /*hidden argument*/NULL); NullCheck(L_31); ArrayElementTypeCheck (L_31, L_32); (L_31)->SetAt(static_cast(((int32_t)15)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_32); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_33 = L_31; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_34 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_34, _stringLiteral4B834130F365D4188B04AC6C4AD40F210E76182E, (bool)1, /*hidden argument*/NULL); NullCheck(L_33); ArrayElementTypeCheck (L_33, L_34); (L_33)->SetAt(static_cast(((int32_t)16)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_34); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_35 = L_33; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_36 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_36, _stringLiteralBE9AEDA87C409551BD2C437087BFCDAF77929110, (bool)1, /*hidden argument*/NULL); NullCheck(L_35); ArrayElementTypeCheck (L_35, L_36); (L_35)->SetAt(static_cast(((int32_t)17)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_36); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_37 = L_35; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_38 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_38, _stringLiteral44BFA10981CA046D2CA6CB96A3A5D80822B55967, (bool)1, /*hidden argument*/NULL); NullCheck(L_37); ArrayElementTypeCheck (L_37, L_38); (L_37)->SetAt(static_cast(((int32_t)18)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_38); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_39 = L_37; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_40 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_40, _stringLiteralA6F1EAC798FFE1EE2A06CB507F06704EF9BB7B20, (bool)1, /*hidden argument*/NULL); NullCheck(L_39); ArrayElementTypeCheck (L_39, L_40); (L_39)->SetAt(static_cast(((int32_t)19)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_40); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_41 = L_39; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_42 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_42, _stringLiteralB86F141FA37096D2D5AF7F08D238AE8636A046C8, (bool)1, /*hidden argument*/NULL); NullCheck(L_41); ArrayElementTypeCheck (L_41, L_42); (L_41)->SetAt(static_cast(((int32_t)20)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_42); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_43 = L_41; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_44 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_44, _stringLiteral3902019B527DBC7AA32EF2FBAE98904A68F6A91D, (bool)1, /*hidden argument*/NULL); NullCheck(L_43); ArrayElementTypeCheck (L_43, L_44); (L_43)->SetAt(static_cast(((int32_t)21)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_44); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_45 = L_43; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_46 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_46, _stringLiteralE2DF3A322B225C5FB72EF21694AA1D5F093470BD, (bool)1, /*hidden argument*/NULL); NullCheck(L_45); ArrayElementTypeCheck (L_45, L_46); (L_45)->SetAt(static_cast(((int32_t)22)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_46); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_47 = L_45; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_48 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_48, _stringLiteralFF7592D5CC37F05D4756C1E995D8BC008050F03C, (bool)1, /*hidden argument*/NULL); NullCheck(L_47); ArrayElementTypeCheck (L_47, L_48); (L_47)->SetAt(static_cast(((int32_t)23)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_48); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_49 = L_47; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_50 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_50, _stringLiteral4BF5009B64A3561A1FDDDF1F66A98A002A232F20, (bool)1, /*hidden argument*/NULL); NullCheck(L_49); ArrayElementTypeCheck (L_49, L_50); (L_49)->SetAt(static_cast(((int32_t)24)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_50); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_51 = L_49; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_52 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_52, _stringLiteralBBB9352EF06D51E7125729041EF4401EFBF97DB1, (bool)0, /*hidden argument*/NULL); NullCheck(L_51); ArrayElementTypeCheck (L_51, L_52); (L_51)->SetAt(static_cast(((int32_t)25)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_52); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_53 = L_51; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_54 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_54, _stringLiteral1342E00533C5A3204C8654AE8C2E6CD8132487F3, (bool)1, /*hidden argument*/NULL); NullCheck(L_53); ArrayElementTypeCheck (L_53, L_54); (L_53)->SetAt(static_cast(((int32_t)26)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_54); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_55 = L_53; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_56 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_56, _stringLiteralF1EA17C918344EFED79132C05DBEB15A932AB47A, (bool)1, /*hidden argument*/NULL); NullCheck(L_55); ArrayElementTypeCheck (L_55, L_56); (L_55)->SetAt(static_cast(((int32_t)27)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_56); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_57 = L_55; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_58 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_58, _stringLiteralB65EEFE208591DF39E34395A0E148E6FC100157B, (bool)1, /*hidden argument*/NULL); NullCheck(L_57); ArrayElementTypeCheck (L_57, L_58); (L_57)->SetAt(static_cast(((int32_t)28)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_58); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_59 = L_57; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_60 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_60, _stringLiteralAD081D7C01890D88485860615375CFCC31999855, (bool)1, /*hidden argument*/NULL); NullCheck(L_59); ArrayElementTypeCheck (L_59, L_60); (L_59)->SetAt(static_cast(((int32_t)29)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_60); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_61 = L_59; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_62 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_62, _stringLiteral4DEFD35274F79BC8CD34BD45427B910EE4D122C7, (bool)1, /*hidden argument*/NULL); NullCheck(L_61); ArrayElementTypeCheck (L_61, L_62); (L_61)->SetAt(static_cast(((int32_t)30)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_62); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_63 = L_61; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_64 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_64, _stringLiteral701415F0F28B150E63FC17EDEC4293FCD6ACBA8E, (bool)1, /*hidden argument*/NULL); NullCheck(L_63); ArrayElementTypeCheck (L_63, L_64); (L_63)->SetAt(static_cast(((int32_t)31)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_64); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_65 = L_63; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_66 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_66, _stringLiteral6CBA7E1F41091391CA0B5724C2076CF9A7B82E04, (bool)0, /*hidden argument*/NULL); NullCheck(L_65); ArrayElementTypeCheck (L_65, L_66); (L_65)->SetAt(static_cast(((int32_t)32)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_66); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_67 = L_65; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_68 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_68, _stringLiteralE2BF4306A56A68510ADA2CAEBF1AD705A3493635, (bool)1, /*hidden argument*/NULL); NullCheck(L_67); ArrayElementTypeCheck (L_67, L_68); (L_67)->SetAt(static_cast(((int32_t)33)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_68); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_69 = L_67; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_70 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_70, _stringLiteralF412947170ECEAA101661EED219B7F3E11A7DBA3, (bool)1, /*hidden argument*/NULL); NullCheck(L_69); ArrayElementTypeCheck (L_69, L_70); (L_69)->SetAt(static_cast(((int32_t)34)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_70); UepPoseDefU5BU5D_tBC22EEDC7DE1327818480C4AEB441016BC65BB07* L_71 = L_69; UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * L_72 = (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)il2cpp_codegen_object_new(UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269_il2cpp_TypeInfo_var); UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617(L_72, _stringLiteralD658CDC6C27912AA68AF360AEFEC2C4092A4BB61, (bool)1, /*hidden argument*/NULL); NullCheck(L_71); ArrayElementTypeCheck (L_71, L_72); (L_71)->SetAt(static_cast(((int32_t)35)), (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 *)L_72); ((UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9_StaticFields*)il2cpp_codegen_static_fields_for(UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9_il2cpp_TypeInfo_var))->set_BuiltInUepPoseDefs_4(L_71); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void CrazyMinnow.SALSA.Emoter/<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mB641B563D747E4881BE895014401A94034568930 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33 * L_0 = (U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33 *)il2cpp_codegen_object_new(U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33_il2cpp_TypeInfo_var); U3CU3Ec__ctor_mC86556408D9FF84FBE11593B94D80025F0A4046F(L_0, /*hidden argument*/NULL); ((U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void CrazyMinnow.SALSA.Emoter/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mC86556408D9FF84FBE11593B94D80025F0A4046F (U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Boolean CrazyMinnow.SALSA.Emoter/<>c::b__13_0(CrazyMinnow.SALSA.EmoteExpression) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3Cget_InspectorBasedRandomEmotesCountU3Eb__13_0_m17D7AF97FAF3BEBAA1A0987CA9F10519C6885560 (U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33 * __this, EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B * ___x0, const RuntimeMethod* method) { { EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B * L_0 = ___x0; NullCheck(L_0); bool L_1 = L_0->get_isRandomEmote_1(); return L_1; } } // System.Boolean CrazyMinnow.SALSA.Emoter/<>c::b__18_0(CrazyMinnow.SALSA.EmoteExpression) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3Cget_InspectorBasedRandomEmphasizerCountU3Eb__18_0_mADC4BAE9AC1E3BC6588D6715FBC80F5E926AE967 (U3CU3Ec_tB9501E27FA81BD46027CE788548D403ADEA2CE33 * __this, EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B * ___x0, const RuntimeMethod* method) { { EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B * L_0 = ___x0; NullCheck(L_0); bool L_1 = L_0->get_isLipsyncEmphasisEmote_2(); if (!L_1) { goto IL_0012; } } { EmoteExpression_tF6094EDCD5755325F24A8E62718855398682273B * L_2 = ___x0; NullCheck(L_2); bool L_3 = L_2->get_isAlwaysEmphasisEmote_8(); return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0); } IL_0012: { 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 #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 CrazyMinnow.SALSA.EventController/EventControllerNotificationArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventControllerNotificationArgs__ctor_mF3C8C19D12FFA6B7D81CD0A6C444DF076779DEC5 (EventControllerNotificationArgs_t899F6A19A15FACB072401967EB3315408810A603 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); EventArgs__ctor_m5ECB9A8ED0A9E2DBB1ED999BAC1CB44F4354E571(__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 #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #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 CrazyMinnow.SALSA.QueueProcessor/QueueOoO::.ctor(System.String,System.Collections.Generic.List`1,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueOoO__ctor_m97FB9C803279C26A8CCDA89F7C63BE985F8776EE (QueueOoO_tAA66CA2A4EB6D71DA916E6892BE8E625DBF832DF * __this, String_t* ___name0, List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * ___queue1, int32_t ___level2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_1__ctor_mAF21CEAD55C8D16F8DCAEF21864939658136AA4D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F * L_0 = (Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F *)il2cpp_codegen_object_new(Queue_1_t9E8E273A339CBAE3B981AFE6B2CB2C46C550FA0F_il2cpp_TypeInfo_var); Queue_1__ctor_mAF21CEAD55C8D16F8DCAEF21864939658136AA4D(L_0, /*hidden argument*/Queue_1__ctor_mAF21CEAD55C8D16F8DCAEF21864939658136AA4D_RuntimeMethod_var); __this->set_trailingMaxCount_3(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_1 = ___name0; __this->set_name_0(L_1); List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * L_2 = ___queue1; __this->set_queue_2(L_2); int32_t L_3 = ___level2; __this->set_hierarchyLevel_1(L_3); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void CrazyMinnow.SALSA.QueueProcessor/QueueProcessorNotificationArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueProcessorNotificationArgs__ctor_m76BD181B7709738AB2C7EB20C365912E60DD02F2 (QueueProcessorNotificationArgs_tF9E759C84DE8F320C3413ACCE70492EE4D5AC470 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); EventArgs__ctor_m5ECB9A8ED0A9E2DBB1ED999BAC1CB44F4354E571(__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 CrazyMinnow.SALSA.Salsa/<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m0F3079ADB1C386F18186D3B533B732B87688E2AD (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2 * L_0 = (U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2 *)il2cpp_codegen_object_new(U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_il2cpp_TypeInfo_var); U3CU3Ec__ctor_mB4F3AFFBAF791CD59B6B424DBCA08A58D1AA67C7(L_0, /*hidden argument*/NULL); ((U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void CrazyMinnow.SALSA.Salsa/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mB4F3AFFBAF791CD59B6B424DBCA08A58D1AA67C7 (U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Int32 CrazyMinnow.SALSA.Salsa/<>c::b__150_0(CrazyMinnow.SALSA.LipsyncExpression,CrazyMinnow.SALSA.LipsyncExpression) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CSortLipsyncExpressionsOnTriggerU3Eb__150_0_m046C809C00D58C3FA06EECFB4D83CB700DB1E28D (U3CU3Ec_t5517ECA60FDBD8585D15B04231337343BF49ACE2 * __this, LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * ___a0, LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * ___b1, const RuntimeMethod* method) { { LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_0 = ___a0; NullCheck(L_0); float* L_1 = L_0->get_address_of_trigger_1(); LipsyncExpression_tAB7A8AF1E1C59432BC0E1E26945CD564CBF5040A * L_2 = ___b1; NullCheck(L_2); float L_3 = L_2->get_trigger_1(); int32_t L_4; L_4 = Single_CompareTo_m80B5B5A70A2343C3A8673F35635EBED4458109B4((float*)L_1, L_3, /*hidden argument*/NULL); return L_4; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void CrazyMinnow.SALSA.Salsa/d__147::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWaitForAudioSourceU3Ed__147__ctor_mE197E75D9AFE8D236310F9436EAE656C351E1B53 (U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void CrazyMinnow.SALSA.Salsa/d__147::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWaitForAudioSourceU3Ed__147_System_IDisposable_Dispose_m48C5225EB3E250450A811ACA3E50E89DB6008D71 (U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean CrazyMinnow.SALSA.Salsa/d__147::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CWaitForAudioSourceU3Ed__147_MoveNext_m6E628249D4F0D40EEC301D920A2EE6B789F125F4 (U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisAudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B_mCC3B7A679ECE504BFAF8C70C4EF527511F46902F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_GetComponent_TisAudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B_mAF312D503D6F1D34AF86F86AE5CD74920A901E53_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1CBB351BFC23B12475507733956EAC09CE669A53); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2864B51E91421FCB6D3DBCFB7ED3594F883DC2D7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB92A0CD78574275C1EE82509BA45B51D259A3529); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * V_1 = NULL; String_t* G_B20_0 = NULL; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_0017; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0086; } } { return (bool)0; } IL_0017: { __this->set_U3CU3E1__state_0((-1)); Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_4 = V_1; NullCheck(L_4); bool L_5 = L_4->get_isDebug_64(); if (!L_5) { goto IL_008d; } } { IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(_stringLiteralB92A0CD78574275C1EE82509BA45B51D259A3529, /*hidden argument*/NULL); goto IL_008d; } IL_0032: { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_6 = V_1; NullCheck(L_6); AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_7 = L_6->get_audioSrc_4(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_8; L_8 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_7, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_8) { goto IL_0049; } } { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_9 = V_1; NullCheck(L_9); L_9->set_waitForAudioSource_5((bool)0); goto IL_0095; } IL_0049: { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_10 = V_1; NullCheck(L_10); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_11 = L_10->get_audioSourceWaitTarget_7(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_12; L_12 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_11, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_12) { goto IL_006a; } } { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_13 = V_1; Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_14 = V_1; NullCheck(L_14); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_15 = L_14->get_audioSourceWaitTarget_7(); NullCheck(L_15); AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_16; L_16 = GameObject_GetComponent_TisAudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B_mAF312D503D6F1D34AF86F86AE5CD74920A901E53(L_15, /*hidden argument*/GameObject_GetComponent_TisAudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B_mAF312D503D6F1D34AF86F86AE5CD74920A901E53_RuntimeMethod_var); NullCheck(L_13); L_13->set_audioSrc_4(L_16); goto IL_0076; } IL_006a: { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_17 = V_1; Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_18 = V_1; NullCheck(L_18); AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_19; L_19 = Component_GetComponent_TisAudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B_mCC3B7A679ECE504BFAF8C70C4EF527511F46902F(L_18, /*hidden argument*/Component_GetComponent_TisAudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B_mCC3B7A679ECE504BFAF8C70C4EF527511F46902F_RuntimeMethod_var); NullCheck(L_17); L_17->set_audioSrc_4(L_19); } IL_0076: { __this->set_U3CU3E2__current_1(NULL); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_0086: { __this->set_U3CU3E1__state_0((-1)); } IL_008d: { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_20 = V_1; NullCheck(L_20); bool L_21 = L_20->get_waitForAudioSource_5(); if (L_21) { goto IL_0032; } } IL_0095: { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_22 = V_1; NullCheck(L_22); AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_23 = L_22->get_audioSrc_4(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_24; L_24 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_23, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_24) { goto IL_00ac; } } { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_25 = V_1; NullCheck(L_25); L_25->set_configReady_60((bool)0); goto IL_00b2; } IL_00ac: { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_26 = V_1; NullCheck(L_26); Salsa_FireAudioSourceFoundEvent_m93C2FBF643B61750ACFF250844F3F0FE402DBFE8(L_26, /*hidden argument*/NULL); } IL_00b2: { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_27 = V_1; NullCheck(L_27); bool L_28 = L_27->get_isDebug_64(); if (!L_28) { goto IL_00d9; } } { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_29 = V_1; NullCheck(L_29); AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_30 = L_29->get_audioSrc_4(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_31; L_31 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_30, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (L_31) { goto IL_00cf; } } { G_B20_0 = _stringLiteral2864B51E91421FCB6D3DBCFB7ED3594F883DC2D7; goto IL_00d4; } IL_00cf: { G_B20_0 = _stringLiteral1CBB351BFC23B12475507733956EAC09CE669A53; } IL_00d4: { IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(G_B20_0, /*hidden argument*/NULL); } IL_00d9: { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_32 = V_1; NullCheck(L_32); L_32->set_coroWaitForAudio_57((RuntimeObject*)NULL); return (bool)0; } } // System.Object CrazyMinnow.SALSA.Salsa/d__147::System.Collections.Generic.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CWaitForAudioSourceU3Ed__147_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m48459E5FC4D76282BBCD560A3DA7686B28F925AF (U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void CrazyMinnow.SALSA.Salsa/d__147::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWaitForAudioSourceU3Ed__147_System_Collections_IEnumerator_Reset_m8196E2CB577C2A82175B19207DBF8027E5E90F25 (U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91 * __this, const RuntimeMethod* method) { { 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*)&U3CWaitForAudioSourceU3Ed__147_System_Collections_IEnumerator_Reset_m8196E2CB577C2A82175B19207DBF8027E5E90F25_RuntimeMethod_var))); } } // System.Object CrazyMinnow.SALSA.Salsa/d__147::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CWaitForAudioSourceU3Ed__147_System_Collections_IEnumerator_get_Current_mDCC32F6B48D2DCA7CE0ABDB8B59CF617965717D9 (U3CWaitForAudioSourceU3Ed__147_t30BB3AC6F70D0CB2DBCEAA3AB7876D654E5AAB91 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void CrazyMinnow.SALSA.Salsa/d__155::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWaitForSalsaU3Ed__155__ctor_m983EF20D01BE513D82650FC8745EB26066175A0B (U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void CrazyMinnow.SALSA.Salsa/d__155::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWaitForSalsaU3Ed__155_System_IDisposable_Dispose_m737EE1136C21D78C7E3D715E4FBA68006EF78142 (U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean CrazyMinnow.SALSA.Salsa/d__155::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CWaitForSalsaU3Ed__155_MoveNext_m7E1D008AFC22E646B36AB85FDEFC06FD8DC6065F (U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * V_1 = NULL; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_0017; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0043; } } { return (bool)0; } IL_0017: { __this->set_U3CU3E1__state_0((-1)); Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_4 = V_1; NullCheck(L_4); bool L_5 = L_4->get_configReady_60(); __this->set_U3CisConfigReadyU3E5__2_3(L_5); Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_6 = V_1; NullCheck(L_6); L_6->set_configReady_60((bool)0); goto IL_004a; } IL_0033: { __this->set_U3CU3E2__current_1(NULL); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_0043: { __this->set_U3CU3E1__state_0((-1)); } IL_004a: { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_7 = V_1; NullCheck(L_7); bool L_8 = L_7->get_isSalsaProcessing_59(); if (L_8) { goto IL_0033; } } { Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_9 = V_1; NullCheck(L_9); Salsa_UpdateExpressionControllers_m0E1F6DD71EBF047651EA41A9FF52B244B1B8F844(L_9, /*hidden argument*/NULL); Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * L_10 = V_1; bool L_11 = __this->get_U3CisConfigReadyU3E5__2_3(); NullCheck(L_10); L_10->set_configReady_60(L_11); return (bool)0; } } // System.Object CrazyMinnow.SALSA.Salsa/d__155::System.Collections.Generic.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CWaitForSalsaU3Ed__155_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m7C5236D4905D17051CE5A7B28025451E57D644AD (U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void CrazyMinnow.SALSA.Salsa/d__155::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWaitForSalsaU3Ed__155_System_Collections_IEnumerator_Reset_mBFBA6137F35BC826D722AC897C92591DDE10DA49 (U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498 * __this, const RuntimeMethod* method) { { 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*)&U3CWaitForSalsaU3Ed__155_System_Collections_IEnumerator_Reset_mBFBA6137F35BC826D722AC897C92591DDE10DA49_RuntimeMethod_var))); } } // System.Object CrazyMinnow.SALSA.Salsa/d__155::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CWaitForSalsaU3Ed__155_System_Collections_IEnumerator_get_Current_mEAC79CCDA122D351AB4376E876363FA44122391A (U3CWaitForSalsaU3Ed__155_t3CEC7B48975235CD68F96640F15EB6FD64DD6498 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C float DelegatePInvokeWrapper_AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C (AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C * __this, int32_t ___channels0, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioSampleData1, const RuntimeMethod* method) { typedef float (DEFAULT_CALL *PInvokeFunc)(int32_t, float*); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Marshaling of parameter '___audioSampleData1' to native representation float* ____audioSampleData1_marshaled = NULL; if (___audioSampleData1 != NULL) { ____audioSampleData1_marshaled = reinterpret_cast((___audioSampleData1)->GetAddressAtUnchecked(0)); } // Native function invocation float returnValue = il2cppPInvokeFunc(___channels0, ____audioSampleData1_marshaled); return returnValue; } // System.Void CrazyMinnow.SALSA.Salsa/AudioAnalyzer::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioAnalyzer__ctor_mA07C80DF68DE3E1E836706824305E71EA5208E1B (AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Single CrazyMinnow.SALSA.Salsa/AudioAnalyzer::Invoke(System.Int32,System.Single[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float AudioAnalyzer_Invoke_m38D61A2805EB6CD043D3D21F9FD50C12B5AC5A82 (AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C * __this, int32_t ___channels0, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioSampleData1, const RuntimeMethod* method) { float result = 0.0f; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef float (*FunctionPointerType) (int32_t, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___channels0, ___audioSampleData1, targetMethod); } else { // closed typedef float (*FunctionPointerType) (void*, int32_t, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___channels0, ___audioSampleData1, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< float, int32_t, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* >::Invoke(targetMethod, targetThis, ___channels0, ___audioSampleData1); else result = GenericVirtFuncInvoker2< float, int32_t, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* >::Invoke(targetMethod, targetThis, ___channels0, ___audioSampleData1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< float, int32_t, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___channels0, ___audioSampleData1); else result = VirtFuncInvoker2< float, int32_t, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___channels0, ___audioSampleData1); } } else { typedef float (*FunctionPointerType) (void*, int32_t, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___channels0, ___audioSampleData1, targetMethod); } } } return result; } // System.IAsyncResult CrazyMinnow.SALSA.Salsa/AudioAnalyzer::BeginInvoke(System.Int32,System.Single[],System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AudioAnalyzer_BeginInvoke_mFBCCDB67962BAC22DE886CA320A0A0493AD23DA7 (AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C * __this, int32_t ___channels0, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioSampleData1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___channels0); __d_args[1] = ___audioSampleData1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);; } // System.Single CrazyMinnow.SALSA.Salsa/AudioAnalyzer::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float AudioAnalyzer_EndInvoke_m2877DBC8AC378C19AEB783E96D12FE83C8714B07 (AudioAnalyzer_t2FBFB156B1F62B7E170AA6FD77792D9136A3CE8C * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(float*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C int32_t DelegatePInvokeWrapper_ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 (ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * __this, const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc)(); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Native function invocation int32_t returnValue = il2cppPInvokeFunc(); return returnValue; } // System.Void CrazyMinnow.SALSA.Salsa/ClipChannels::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipChannels__ctor_mBBA733579FA36D09ACFAF37155075A53152B86A4 (ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Int32 CrazyMinnow.SALSA.Salsa/ClipChannels::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ClipChannels_Invoke_m050CF7CE57A9379F76A87D40B8DCEE0659F48AC1 (ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * __this, const RuntimeMethod* method) { int32_t result = 0; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 0) { // open typedef int32_t (*FunctionPointerType) (const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetMethod); } else { // closed typedef int32_t (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< int32_t >::Invoke(targetMethod, targetThis); else result = GenericVirtFuncInvoker0< int32_t >::Invoke(targetMethod, targetThis); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis); else result = VirtFuncInvoker0< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis); } } else { typedef int32_t (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } } return result; } // System.IAsyncResult CrazyMinnow.SALSA.Salsa/ClipChannels::BeginInvoke(System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClipChannels_BeginInvoke_m86A353516E7B573EA1FF642FD369FF965E943246 (ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * __this, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method) { void *__d_args[1] = {0}; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);; } // System.Int32 CrazyMinnow.SALSA.Salsa/ClipChannels::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ClipChannels_EndInvoke_m1DFA9F8DBCCA50E6721DAA3E9E617EE853B187F4 (ClipChannels_t924A14F43ACB0A511496EED7D4DC3C1A4023C8B3 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(int32_t*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C int32_t DelegatePInvokeWrapper_ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE (ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * __this, const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc)(); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Native function invocation int32_t returnValue = il2cppPInvokeFunc(); return returnValue; } // System.Void CrazyMinnow.SALSA.Salsa/ClipFrequency::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipFrequency__ctor_m88B0F7C910CF753F8719DA759C23784B775900FF (ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Int32 CrazyMinnow.SALSA.Salsa/ClipFrequency::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ClipFrequency_Invoke_mCCE6328F0965DA5DDFE77AE95D47DB0123CB5B53 (ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * __this, const RuntimeMethod* method) { int32_t result = 0; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 0) { // open typedef int32_t (*FunctionPointerType) (const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetMethod); } else { // closed typedef int32_t (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< int32_t >::Invoke(targetMethod, targetThis); else result = GenericVirtFuncInvoker0< int32_t >::Invoke(targetMethod, targetThis); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis); else result = VirtFuncInvoker0< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis); } } else { typedef int32_t (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } } return result; } // System.IAsyncResult CrazyMinnow.SALSA.Salsa/ClipFrequency::BeginInvoke(System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClipFrequency_BeginInvoke_mE935D16C5F50A1B4C62407449237211754A54E49 (ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * __this, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method) { void *__d_args[1] = {0}; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);; } // System.Int32 CrazyMinnow.SALSA.Salsa/ClipFrequency::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ClipFrequency_EndInvoke_mFD8EE66038891F92B7B11FB74C9717420C6125E1 (ClipFrequency_tA1617F67016BF99DF92D0031632FFDB516E403BE * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(int32_t*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C int32_t DelegatePInvokeWrapper_ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB (ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * __this, const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc)(); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Native function invocation int32_t returnValue = il2cppPInvokeFunc(); return returnValue; } // System.Void CrazyMinnow.SALSA.Salsa/ClipRecordHeadPointer::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipRecordHeadPointer__ctor_m5711E8C2203B5A006592468D76EA426D502B9968 (ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Int32 CrazyMinnow.SALSA.Salsa/ClipRecordHeadPointer::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ClipRecordHeadPointer_Invoke_mF7799D5E209C42442281C4E5BCDE6241F52ADF71 (ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * __this, const RuntimeMethod* method) { int32_t result = 0; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 0) { // open typedef int32_t (*FunctionPointerType) (const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetMethod); } else { // closed typedef int32_t (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< int32_t >::Invoke(targetMethod, targetThis); else result = GenericVirtFuncInvoker0< int32_t >::Invoke(targetMethod, targetThis); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis); else result = VirtFuncInvoker0< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis); } } else { typedef int32_t (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } } return result; } // System.IAsyncResult CrazyMinnow.SALSA.Salsa/ClipRecordHeadPointer::BeginInvoke(System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClipRecordHeadPointer_BeginInvoke_m625E5A5287BFAEAA4C1CAB37C5B661CF7233DADF (ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * __this, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method) { void *__d_args[1] = {0}; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);; } // System.Int32 CrazyMinnow.SALSA.Salsa/ClipRecordHeadPointer::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ClipRecordHeadPointer_EndInvoke_m48D1619BEBF6C7FD049524DA06AD5269392CE928 (ClipRecordHeadPointer_tBB84A080DA915247ED4B3C7E5E602D3E86E3F0EB * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(int32_t*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C int32_t DelegatePInvokeWrapper_ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 (ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * __this, const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc)(); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Native function invocation int32_t returnValue = il2cppPInvokeFunc(); return returnValue; } // System.Void CrazyMinnow.SALSA.Salsa/ClipSampleCount::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipSampleCount__ctor_mC181076F208EFE6615AE08399EA3FC9BCA13BC9D (ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Int32 CrazyMinnow.SALSA.Salsa/ClipSampleCount::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ClipSampleCount_Invoke_mF0F112CD0A4C2CBA9D2F0E4D3B737CD741DEAF0E (ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * __this, const RuntimeMethod* method) { int32_t result = 0; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 0) { // open typedef int32_t (*FunctionPointerType) (const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetMethod); } else { // closed typedef int32_t (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< int32_t >::Invoke(targetMethod, targetThis); else result = GenericVirtFuncInvoker0< int32_t >::Invoke(targetMethod, targetThis); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis); else result = VirtFuncInvoker0< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis); } } else { typedef int32_t (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } } return result; } // System.IAsyncResult CrazyMinnow.SALSA.Salsa/ClipSampleCount::BeginInvoke(System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClipSampleCount_BeginInvoke_mFE42F71666C193EDC2B32FC47365DB74BB13B627 (ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * __this, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method) { void *__d_args[1] = {0}; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);; } // System.Int32 CrazyMinnow.SALSA.Salsa/ClipSampleCount::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ClipSampleCount_EndInvoke_mBC1F9072A411A3B427C154EE4E75C1AD74EE3CBB (ClipSampleCount_t9C752D4A543525371507B7414E55198F34BC4A63 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(int32_t*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C bool DelegatePInvokeWrapper_GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB (GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * __this, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioData0, int32_t ___dataPointer1, const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc)(float*, int32_t); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Marshaling of parameter '___audioData0' to native representation float* ____audioData0_marshaled = NULL; if (___audioData0 != NULL) { ____audioData0_marshaled = reinterpret_cast((___audioData0)->GetAddressAtUnchecked(0)); } // Native function invocation int32_t returnValue = il2cppPInvokeFunc(____audioData0_marshaled, ___dataPointer1); return static_cast(returnValue); } // System.Void CrazyMinnow.SALSA.Salsa/GetClipData::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GetClipData__ctor_m75A90A2C5C6F8486437FC10855BCDF618F724FE8 (GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean CrazyMinnow.SALSA.Salsa/GetClipData::Invoke(System.Single[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GetClipData_Invoke_m967F4557D5DD4481C89F64C468BE81E864D62615 (GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * __this, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioData0, int32_t ___dataPointer1, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef bool (*FunctionPointerType) (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___audioData0, ___dataPointer1, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___audioData0, ___dataPointer1, targetMethod); } } else if (___parameterCount != 2) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, int32_t >::Invoke(targetMethod, ___audioData0, ___dataPointer1); else result = GenericVirtFuncInvoker1< bool, int32_t >::Invoke(targetMethod, ___audioData0, ___dataPointer1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___audioData0, ___dataPointer1); else result = VirtFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___audioData0, ___dataPointer1); } } else { typedef bool (*FunctionPointerType) (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___audioData0, ___dataPointer1, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< bool, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, int32_t >::Invoke(targetMethod, targetThis, ___audioData0, ___dataPointer1); else result = GenericVirtFuncInvoker2< bool, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, int32_t >::Invoke(targetMethod, targetThis, ___audioData0, ___dataPointer1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< bool, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___audioData0, ___dataPointer1); else result = VirtFuncInvoker2< bool, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___audioData0, ___dataPointer1); } } else { if (___parameterCount == 1) { typedef bool (*FunctionPointerType) (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___audioData0, ___dataPointer1, targetMethod); } else { typedef bool (*FunctionPointerType) (void*, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___audioData0, ___dataPointer1, targetMethod); } } } } return result; } // System.IAsyncResult CrazyMinnow.SALSA.Salsa/GetClipData::BeginInvoke(System.Single[],System.Int32,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GetClipData_BeginInvoke_m1F8FF312AE282A8C79213E250A051FBFECBED033 (GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * __this, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioData0, int32_t ___dataPointer1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = ___audioData0; __d_args[1] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___dataPointer1); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);; } // System.Boolean CrazyMinnow.SALSA.Salsa/GetClipData::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GetClipData_EndInvoke_m42CEFB12C80C6CA35188D2D37EDD69DCEB7023A8 (GetClipData_t02828C0DD4F5976E9600C9F4B0F8E223696C55CB * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C float DelegatePInvokeWrapper_GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 (GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * __this, const RuntimeMethod* method) { typedef float (DEFAULT_CALL *PInvokeFunc)(); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Native function invocation float returnValue = il2cppPInvokeFunc(); return returnValue; } // System.Void CrazyMinnow.SALSA.Salsa/GetExternalAnalysis::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GetExternalAnalysis__ctor_m77E5A87B31F1AFD205B33CAA8C313E9D00B76629 (GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Single CrazyMinnow.SALSA.Salsa/GetExternalAnalysis::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GetExternalAnalysis_Invoke_mA5D89EF5A44B81239F02BDCC0E0ACCBFCCCFF9EB (GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * __this, const RuntimeMethod* method) { float result = 0.0f; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 0) { // open typedef float (*FunctionPointerType) (const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetMethod); } else { // closed typedef float (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< float >::Invoke(targetMethod, targetThis); else result = GenericVirtFuncInvoker0< float >::Invoke(targetMethod, targetThis); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis); else result = VirtFuncInvoker0< float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis); } } else { typedef float (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } } return result; } // System.IAsyncResult CrazyMinnow.SALSA.Salsa/GetExternalAnalysis::BeginInvoke(System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GetExternalAnalysis_BeginInvoke_mC80225B614EDF48C4AFCADF5B88A9FA0A1DE1D91 (GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * __this, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method) { void *__d_args[1] = {0}; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);; } // System.Single CrazyMinnow.SALSA.Salsa/GetExternalAnalysis::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GetExternalAnalysis_EndInvoke_m625515D1CCD735D689A086A1FD624AA4A3D74EB1 (GetExternalAnalysis_tB095003B22094B84617AC685A16D218E9E4F5EB4 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(float*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C int32_t DelegatePInvokeWrapper_GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD (GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * __this, const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc)(); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Native function invocation int32_t returnValue = il2cppPInvokeFunc(); return returnValue; } // System.Void CrazyMinnow.SALSA.Salsa/GetTriggerIndex::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GetTriggerIndex__ctor_mBC2BFC1870A2CCE0A265BA6371BCB83E137D0818 (GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Int32 CrazyMinnow.SALSA.Salsa/GetTriggerIndex::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GetTriggerIndex_Invoke_mD8807144445D0D977BEB9B5261E7BF05A6089EB7 (GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * __this, const RuntimeMethod* method) { int32_t result = 0; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 0) { // open typedef int32_t (*FunctionPointerType) (const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetMethod); } else { // closed typedef int32_t (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< int32_t >::Invoke(targetMethod, targetThis); else result = GenericVirtFuncInvoker0< int32_t >::Invoke(targetMethod, targetThis); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis); else result = VirtFuncInvoker0< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis); } } else { typedef int32_t (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } } return result; } // System.IAsyncResult CrazyMinnow.SALSA.Salsa/GetTriggerIndex::BeginInvoke(System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GetTriggerIndex_BeginInvoke_mE0D02680315FDCF678C5247D24E7B6C866B8D487 (GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * __this, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method) { void *__d_args[1] = {0}; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);; } // System.Int32 CrazyMinnow.SALSA.Salsa/GetTriggerIndex::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GetTriggerIndex_EndInvoke_m73A415F42BCD3120C03A79A0B258D25FE7BBA3C0 (GetTriggerIndex_tDC77E99063B1AE51FC42A308B612D154F1AAA6DD * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(int32_t*)UnBox ((RuntimeObject*)__result);; } #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 CrazyMinnow.SALSA.Salsa/SalsaNotificationArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SalsaNotificationArgs__ctor_m86AA50938CAA960ECA10ADD8CBADD5AAD1033ABC (SalsaNotificationArgs_tF14DF4C6B31206DAD1AA6CCCBDC105EEEBB5C70F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); EventArgs__ctor_m5ECB9A8ED0A9E2DBB1ED999BAC1CB44F4354E571(__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 IL2CPP_EXTERN_C bool DelegatePInvokeWrapper_SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB (SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB * __this, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___samples0, const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc)(float*); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Marshaling of parameter '___samples0' to native representation float* ____samples0_marshaled = NULL; if (___samples0 != NULL) { ____samples0_marshaled = reinterpret_cast((___samples0)->GetAddressAtUnchecked(0)); } // Native function invocation int32_t returnValue = il2cppPInvokeFunc(____samples0_marshaled); return static_cast(returnValue); } // System.Void CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer/SilenceAnalyzer::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SilenceAnalyzer__ctor_m809747F30F21CBCFBFC6A519F7FDEDBE865F5884 (SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer/SilenceAnalyzer::Invoke(System.Single[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SilenceAnalyzer_Invoke_m08C4B76A403B7F286DD435A00EED1930F9C03C12 (SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB * __this, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___samples0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___samples0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___samples0, targetMethod); } } else if (___parameterCount != 1) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< bool >::Invoke(targetMethod, ___samples0); else result = GenericVirtFuncInvoker0< bool >::Invoke(targetMethod, ___samples0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___samples0); else result = VirtFuncInvoker0< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___samples0); } } else { typedef bool (*FunctionPointerType) (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___samples0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* >::Invoke(targetMethod, targetThis, ___samples0); else result = GenericVirtFuncInvoker1< bool, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* >::Invoke(targetMethod, targetThis, ___samples0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___samples0); else result = VirtFuncInvoker1< bool, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___samples0); } } else { if (___parameterCount == 0) { typedef bool (*FunctionPointerType) (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___samples0, targetMethod); } else { typedef bool (*FunctionPointerType) (void*, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___samples0, targetMethod); } } } } return result; } // System.IAsyncResult CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer/SilenceAnalyzer::BeginInvoke(System.Single[],System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SilenceAnalyzer_BeginInvoke_m609D69A846ADA8F58294A33C1653C8DC68EFE306 (SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB * __this, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___samples0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { void *__d_args[2] = {0}; __d_args[0] = ___samples0; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Boolean CrazyMinnow.SALSA.SalsaAdvancedDynamicsSilenceAnalyzer/SilenceAnalyzer::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SilenceAnalyzer_EndInvoke_mB0A99D387B800D5D35BB26DCB9D7918F01F7CE5A (SilenceAnalyzer_t45F7F5C783B620FB85922F786659C535289D7CEB * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void CrazyMinnow.SALSA.UmaUepProxy/UepPose::.ctor(System.String,System.Boolean,System.Single,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UepPose__ctor_m2A7D17A76D26AF2F5F5A262E2B97389770FE976C (UepPose_t5533A026F3DB5AF08235DF66ED5D9E242A981A92 * __this, String_t* ___name0, bool ___biDirectional1, float ___amount2, bool ___isDirty3, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; __this->set_name_0(L_0); bool L_1 = ___biDirectional1; __this->set_biDirectional_1(L_1); float L_2 = ___amount2; __this->set_amount_2(L_2); bool L_3 = ___isDirty3; __this->set_isDirty_3(L_3); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void CrazyMinnow.SALSA.UmaUepProxy/UepPoseDef::.ctor(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UepPoseDef__ctor_m2409E7A2D4DE7FF4B5FE795C30F30A9B1D082617 (UepPoseDef_t499D61DF2FF9A32A57E763FAF217A2645D022269 * __this, String_t* ___name0, bool ___isBidirectional1, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; __this->set_name_0(L_0); bool L_1 = ___isBidirectional1; __this->set_isBidirectional_1(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Salsa_get_TriggeredIndex_m5F6A4E11FA84288C6833C7B478E3C665EE6D1609_inline (Salsa_t74E5A82755E5E59F703B221CFB917DEB4B770D4B * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_prevTriggeredIndex_48(); return L_0; } } 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 UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* UmaUepProxy_get_Poses_m8A22DDBEE10A74CD16AAF29574406F34493CFB8F_inline (UmaUepProxy_t260F487A4B72402F6BC32D27EF2B7D342CAFB1E9 * __this, const RuntimeMethod* method) { { UepPoseU5BU5D_t25D856D0EBBA6832E7F9E4F42B0C1EEB5A50B3D9* L_0 = __this->get_poses_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mBCBF2D9FD1B5F0D8D8595B15B7460889D60C8070(/*hidden argument*/NULL); } IL_000e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_1(); int32_t L_3 = ___index0; RuntimeObject * L_4; L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)L_3); return (RuntimeObject *)L_4; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 List_1_get_Item_mCEFFE2AB8321C0276F5093740773AB04F7C10F54_gshared_inline (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mBCBF2D9FD1B5F0D8D8595B15B7460889D60C8070(/*hidden argument*/NULL); } IL_000e: { QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860* L_2 = (QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860*)__this->get__items_1(); int32_t L_3 = ___index0; QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 L_4; L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((QueueDataU5BU5D_tE903EC1013EA7AA10DD2DB553F72911BAF55C860*)L_2, (int32_t)L_3); return (QueueData_t763FF68F31C75CE4AED3076335CBB8255CE00B08 )L_4; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m535BB26800279D1D88A0B92FBD496CB7F4D091FB_gshared_inline (List_1_t7C9323C81D81B1EA8CBAD929AB14FB5D3184CCDD * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return (int32_t)L_0; } }