Decompiled source of kinatoolkit v0.1.1

kinatoolkit.dll

Decompiled 13 hours ago
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using System.Text;
using BepInEx;
using BepInEx.Bootstrap;
using BepInEx.Configuration;
using BepInEx.Logging;
using DebugToolkit;
using HG.Reflection;
using KinematicCharacterController;
using Microsoft.CodeAnalysis;
using Newtonsoft.Json;
using On.RoR2;
using On.RoR2.UI;
using On.RoR2.UI.MainMenu;
using R2API;
using RiskOfOptions;
using RiskOfOptions.OptionConfigs;
using RiskOfOptions.Options;
using RoR2;
using RoR2.Artifacts;
using RoR2.CharacterAI;
using RoR2.ConVar;
using RoR2.UI;
using RoR2.UI.MainMenu;
using UnityEngine;
using UnityEngine.AddressableAssets;
using UnityEngine.Networking;
using kinatoolkit.patches;
using kinatoolkit.patches.basegame;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: OptIn]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("kinatoolkit")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0+ea37e9b9274ec1de31a0476d51225908f724386a")]
[assembly: AssemblyProduct("kinatoolkit")]
[assembly: AssemblyTitle("kinatoolkit")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.0.0.0")]
[module: UnverifiableCode]
[module: RefSafetyRules(11)]
[module: UnverifiableCode]
namespace Microsoft.CodeAnalysis
{
	[CompilerGenerated]
	[Embedded]
	internal sealed class EmbeddedAttribute : Attribute
	{
	}
}
namespace System.Runtime.CompilerServices
{
	[CompilerGenerated]
	[Embedded]
	[AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)]
	internal sealed class RefSafetyRulesAttribute : Attribute
	{
		public readonly int Version;

		public RefSafetyRulesAttribute(int P_0)
		{
			Version = P_0;
		}
	}
}
namespace kinatoolkit
{
	[BepInDependency(/*Could not decode attribute arguments.*/)]
	[BepInPlugin("kina.kinatoolkit", "kinatoolkit", "0.1.1")]
	public class kinatoolkit : BaseUnityPlugin
	{
		private const string PluginGUID = "kina.kinatoolkit";

		private const string PluginAuthor = "kina";

		private const string PluginName = "kinatoolkit";

		private const string PluginVersion = "0.1.1";

		public static kinatoolkit instance;

		public void Awake()
		{
			instance = this;
			Log.Init(((BaseUnityPlugin)this).Logger);
			commands.Init();
			foreach (Type item in from type in Assembly.GetExecutingAssembly().GetTypes()
				where !type.IsAbstract && type.IsSubclassOf(typeof(PatchBase))
				select type)
			{
				try
				{
					PatchBase obj = (PatchBase)Activator.CreateInstance(item);
					obj.Config(((BaseUnityPlugin)this).Config);
					obj.PreInit();
				}
				catch (Exception data)
				{
					Log.Warning("failed to patch something ! probably fine if you dont have whatever mod that was attempted to be patched enabled ,..,,.");
					Log.Warning(data);
				}
			}
		}
	}
	internal static class Log
	{
		private static ManualLogSource _logSource;

		internal static void Init(ManualLogSource logSource)
		{
			_logSource = logSource;
		}

		internal static void Debug(object data)
		{
			_logSource.LogDebug(data);
		}

		internal static void Error(object data)
		{
			_logSource.LogError(data);
		}

		internal static void Fatal(object data)
		{
			_logSource.LogFatal(data);
		}

		internal static void Info(object data)
		{
			_logSource.LogInfo(data);
		}

		internal static void Message(object data)
		{
			_logSource.LogMessage(data);
		}

		internal static void Warning(object data)
		{
			_logSource.LogWarning(data);
		}
	}
	public static class Utils
	{
		public static void SliderConfig(float min, float max, ConfigEntry<float> config)
		{
			//IL_0000: Unknown result type (might be due to invalid IL or missing references)
			//IL_0005: Unknown result type (might be due to invalid IL or missing references)
			//IL_000c: Unknown result type (might be due to invalid IL or missing references)
			//IL_0013: Unknown result type (might be due to invalid IL or missing references)
			//IL_001f: Expected O, but got Unknown
			//IL_0021: Unknown result type (might be due to invalid IL or missing references)
			//IL_002b: Expected O, but got Unknown
			StepSliderConfig val = new StepSliderConfig
			{
				max = max,
				min = min,
				FormatString = "{0:0}"
			};
			ModSettingsManager.AddOption((BaseOption)new StepSliderOption(config, val));
		}

		public static void SliderConfig(int min, int max, ConfigEntry<int> config)
		{
			//IL_0000: Unknown result type (might be due to invalid IL or missing references)
			//IL_0005: Unknown result type (might be due to invalid IL or missing references)
			//IL_000c: Unknown result type (might be due to invalid IL or missing references)
			//IL_0013: Unknown result type (might be due to invalid IL or missing references)
			//IL_001f: Expected O, but got Unknown
			//IL_0021: Unknown result type (might be due to invalid IL or missing references)
			//IL_002b: Expected O, but got Unknown
			IntSliderConfig val = new IntSliderConfig
			{
				max = max,
				min = min,
				formatString = "{0:0}"
			};
			ModSettingsManager.AddOption((BaseOption)new IntSliderOption(config, val));
		}

		public static void CheckboxConfig(ConfigEntry<bool> config, bool restartRequired = false)
		{
			//IL_0000: Unknown result type (might be due to invalid IL or missing references)
			//IL_0006: Expected O, but got Unknown
			//IL_000f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0019: Expected O, but got Unknown
			CheckBoxConfig val = new CheckBoxConfig();
			((BaseOptionConfig)val).restartRequired = restartRequired;
			ModSettingsManager.AddOption((BaseOption)new CheckBoxOption(config, val));
		}

		public static void StringConfig(ConfigEntry<string> config)
		{
			//IL_0000: Unknown result type (might be due to invalid IL or missing references)
			//IL_0006: Expected O, but got Unknown
			//IL_0008: Unknown result type (might be due to invalid IL or missing references)
			//IL_0012: Expected O, but got Unknown
			InputFieldConfig val = new InputFieldConfig();
			ModSettingsManager.AddOption((BaseOption)new StringInputFieldOption(config, val));
		}

		public static void KeyboardConfig(ConfigEntry<KeyboardShortcut> config)
		{
			//IL_0000: Unknown result type (might be due to invalid IL or missing references)
			//IL_0006: Expected O, but got Unknown
			//IL_0008: Unknown result type (might be due to invalid IL or missing references)
			//IL_0012: Expected O, but got Unknown
			KeyBindConfig val = new KeyBindConfig();
			ModSettingsManager.AddOption((BaseOption)new KeyBindOption(config, val));
		}
	}
}
namespace kinatoolkit.patches
{
	public static class commands
	{
		[CompilerGenerated]
		private static class <>O
		{
			public static hook_Spawn <0>__InteractableSpawnCardOnSpawn;

			public static Action <1>__OnLoad;

			public static Action<CharacterBody> <2>__ChangeSpawnPos;
		}

		public static bool disableInteractables;

		public static TeamIndex dummyTeamIndex;

		public static List<GameObject> JSONObjects = new List<GameObject>();

		public static List<CharacterMaster> JSONMasters = new List<CharacterMaster>();

		[ConCommand(/*Could not decode attribute arguments.*/)]
		public static void CreateSkin(ConCommandArgs args)
		{
			bool? flag = ((ConCommandArgs)(ref args)).TryGetArgBool(0);
			if (flag.HasValue)
			{
				disableInteractables = flag.Value;
			}
			else
			{
				disableInteractables = !disableInteractables;
			}
			string arg = (disableInteractables ? "green" : "red");
			Debug.Log((object)$"Disabled interactables <color={arg}>{disableInteractables}</color>.");
		}

		public static void Init()
		{
			//IL_0010: Unknown result type (might be due to invalid IL or missing references)
			//IL_0015: Unknown result type (might be due to invalid IL or missing references)
			//IL_001b: Expected O, but got Unknown
			//IL_004f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0054: Unknown result type (might be due to invalid IL or missing references)
			//IL_005f: Unknown result type (might be due to invalid IL or missing references)
			//IL_006a: Unknown result type (might be due to invalid IL or missing references)
			//IL_0082: Unknown result type (might be due to invalid IL or missing references)
			//IL_0093: Unknown result type (might be due to invalid IL or missing references)
			//IL_00aa: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b4: Expected O, but got Unknown
			//IL_00b4: Expected O, but got Unknown
			//IL_00af: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b4: Unknown result type (might be due to invalid IL or missing references)
			object obj = <>O.<0>__InteractableSpawnCardOnSpawn;
			if (obj == null)
			{
				hook_Spawn val = InteractableSpawnCardOnSpawn;
				<>O.<0>__InteractableSpawnCardOnSpawn = val;
				obj = (object)val;
			}
			InteractableSpawnCard.Spawn += (hook_Spawn)obj;
			RoR2Application.onLoad = (Action)Delegate.Combine(RoR2Application.onLoad, new Action(OnLoad));
			dummyTeamIndex = TeamsAPI.RegisterTeam(new TeamDef
			{
				nameToken = "dummyTeam",
				softCharacterLimit = 999,
				levelUpEffect = TeamCatalog.GetTeamDef((TeamIndex)2)?.levelUpEffect,
				friendlyFireScaling = TeamCatalog.GetTeamDef((TeamIndex)2).friendlyFireScaling,
				levelUpSound = TeamCatalog.GetTeamDef((TeamIndex)2).levelUpSound
			}, new TeamBehavior("kinaToolkitDummy", (TeamClassification)2));
		}

		private static void OnLoad()
		{
			//IL_0000: Unknown result type (might be due to invalid IL or missing references)
			//IL_0005: Unknown result type (might be due to invalid IL or missing references)
			//IL_003a: Unknown result type (might be due to invalid IL or missing references)
			//IL_0050: Unknown result type (might be due to invalid IL or missing references)
			AutoCompleteParser val = new AutoCompleteParser();
			val.RegisterStaticVariable("ai", MasterCatalog.allAiMasters.Select((CharacterMaster i) => $"{(int)i.masterIndex}|{((Object)i).name}|{StringFinder.GetLangInvar(StringFinder.GetMasterName(i))}"), 1);
			val.RegisterStaticVariable("soundID", (IEnumerable<string>)soundIDs.soundID.Keys, 1);
			val.RegisterStaticVariable("effect", EffectCatalog.entries.Select((EffectDef i) => i.prefabName), 1);
			val.Scan(Assembly.GetExecutingAssembly());
		}

		private static void InteractableSpawnCardOnSpawn(orig_Spawn orig, InteractableSpawnCard self, Vector3 position, Quaternion rotation, DirectorSpawnRequest directorspawnrequest, ref SpawnResult result)
		{
			//IL_000a: Unknown result type (might be due to invalid IL or missing references)
			//IL_000b: Unknown result type (might be due to invalid IL or missing references)
			if (!disableInteractables)
			{
				orig.Invoke(self, position, rotation, directorspawnrequest, ref result);
			}
		}

		[ConCommand(/*Could not decode attribute arguments.*/)]
		[AutoComplete("Requires 1 argument: {soundID}")]
		public static void akplaysound(ConCommandArgs args)
		{
			//IL_0000: Unknown result type (might be due to invalid IL or missing references)
			foreach (string userArg in args.userArgs)
			{
				if (int.TryParse(userArg, out var result))
				{
					uint num = AkSoundEngine.PostEvent((uint)result, ((Component)((ConCommandArgs)(ref args)).senderBody).gameObject);
					if (num != 0)
					{
						Debug.Log((object)$"Started playing sound with id {num}. Use \"stop_sound {num}\" to kill it if it loops forever.");
					}
					else
					{
						Debug.LogWarning((object)$"Couldnt find sound with id {result}.");
					}
				}
				else if (userArg != "")
				{
					if (soundIDs.soundID.TryGetValue(userArg, out var value))
					{
						uint num2 = AkSoundEngine.PostEvent(value, ((Component)((ConCommandArgs)(ref args)).senderBody).gameObject);
						if (num2 != 0)
						{
							Debug.Log((object)$"Started playing sound with id {num2}. Use \"stop_sound {num2}\" to kill it if it loops forever.");
						}
						else
						{
							Debug.LogWarning((object)("Couldnt find sound with id " + userArg + "."));
						}
					}
					else
					{
						Debug.LogWarning((object)("Couldn't find sound with id " + userArg + "."));
					}
				}
				else
				{
					Debug.LogWarning((object)"No sound ID provided.");
				}
			}
		}

		[ConCommand(/*Could not decode attribute arguments.*/)]
		public static void akstopsound(ConCommandArgs args)
		{
			int? num = ((ConCommandArgs)(ref args)).TryGetArgInt(0);
			if (num.HasValue)
			{
				AkSoundEngine.StopPlayingID((uint)num.Value);
				Debug.Log((object)$"Stopped sound {num}.");
			}
			else
			{
				Debug.Log((object)"No sound id provided.");
			}
		}

		[ConCommand(/*Could not decode attribute arguments.*/)]
		public static void listEffect(ConCommandArgs args)
		{
			StringBuilder stringBuilder = new StringBuilder();
			EffectDef[] entries = EffectCatalog.entries;
			foreach (EffectDef val in entries)
			{
				stringBuilder.Append(val.prefabName);
				stringBuilder.Append("\n");
			}
			Log.Info(stringBuilder);
		}

		[ConCommand(/*Could not decode attribute arguments.*/)]
		[AutoComplete("Requires 1 argument: {effect}")]
		public static void spawnEffect(ConCommandArgs args)
		{
			//IL_007e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0083: Unknown result type (might be due to invalid IL or missing references)
			//IL_0088: Unknown result type (might be due to invalid IL or missing references)
			//IL_0090: Unknown result type (might be due to invalid IL or missing references)
			//IL_009a: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a1: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a2: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a7: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ac: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b7: Expected O, but got Unknown
			float scale = 1f;
			if (((ConCommandArgs)(ref args)).TryGetArgFloat(1).HasValue)
			{
				scale = ((ConCommandArgs)(ref args)).GetArgFloat(1);
			}
			string effectName = ((ConCommandArgs)(ref args)).TryGetArgString(0);
			if (!(effectName == ""))
			{
				EffectDef val = ((IEnumerable<EffectDef>)EffectCatalog.entries).FirstOrDefault((Func<EffectDef, bool>)((EffectDef effectDef) => effectDef.prefabName == effectName));
				if (val == null)
				{
					Debug.LogWarning((object)("Couldnt find effect " + effectName + "."));
					return;
				}
				EffectManager.SpawnEffect(val.index, new EffectData
				{
					origin = ((ConCommandArgs)(ref args)).senderBody.footPosition,
					scale = scale,
					rotation = Util.QuaternionSafeLookRotation(Vector3.up)
				}, true);
				Debug.Log((object)("Spawned effect " + effectName + "."));
			}
		}

		[ConCommand(/*Could not decode attribute arguments.*/)]
		[AutoComplete("Requires 1 argument: {ai}")]
		public static void SpawnDummy(ConCommandArgs args)
		{
			//IL_001f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0024: Unknown result type (might be due to invalid IL or missing references)
			string text = ((ConCommandArgs)(ref args)).TryGetArgString(0);
			if (!(text == ""))
			{
				SpawnDummy(text, ((ConCommandArgs)(ref args)).senderBody.corePosition, Quaternion.identity, (TeamIndex)2);
			}
		}

		public static CharacterMaster SpawnDummy(string masterName, Vector3 position, Quaternion rotation = default(Quaternion), TeamIndex teamIndex = (TeamIndex)(-1))
		{
			//IL_0033: Unknown result type (might be due to invalid IL or missing references)
			//IL_0035: Invalid comparison between Unknown and I4
			//IL_003e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0037: Unknown result type (might be due to invalid IL or missing references)
			//IL_004b: Unknown result type (might be due to invalid IL or missing references)
			//IL_004c: Unknown result type (might be due to invalid IL or missing references)
			GameObject val = MasterCatalog.FindMasterPrefab(masterName);
			if (Object.op_Implicit((Object)(object)val))
			{
				GameObject val2 = Object.Instantiate<GameObject>(val);
				CharacterMaster component = val2.GetComponent<CharacterMaster>();
				component.inventory.GiveItemPermanent(Items.BoostHp, 9999999);
				component.teamIndex = (((int)teamIndex != -1) ? teamIndex : dummyTeamIndex);
				NetworkServer.Spawn(val2);
				component.SpawnBody(position, rotation);
				BaseAI[] aiComponents = component.aiComponents;
				for (int i = 0; i < aiComponents.Length; i++)
				{
					Object.Destroy((Object)(object)aiComponents[i]);
				}
				component.aiComponents = Array.Empty<BaseAI>();
				return component;
			}
			Log.Warning("Couldn't find master prefab of " + masterName + ".");
			return null;
		}

		[ConCommand(/*Could not decode attribute arguments.*/)]
		public static void LoadJson(ConCommandArgs args)
		{
			foreach (GameObject item in JSONObjects.Where((GameObject interactable) => Object.op_Implicit((Object)(object)interactable)))
			{
				Object.Destroy((Object)(object)item);
			}
			foreach (CharacterMaster item2 in JSONMasters.Where((CharacterMaster master) => Object.op_Implicit((Object)(object)master)))
			{
				item2.TrueKill();
			}
			LoadJson();
		}

		public static void ChangeSpawnPos(CharacterBody body)
		{
			//IL_0037: Unknown result type (might be due to invalid IL or missing references)
			//IL_0082: Unknown result type (might be due to invalid IL or missing references)
			debugplainsJSON.JSONedit jSONedit = debugplainsJSON.loadJSON();
			TeleportHelper.TeleportBody(body, new Vector3(jSONedit.spawnPos.position.x, jSONedit.spawnPos.position.y, jSONedit.spawnPos.position.z), true);
			((BaseCharacterController)((Component)body).gameObject.GetComponent<CharacterMotor>()).Motor.SetRotation(Quaternion.Euler(jSONedit.spawnPos.rotation.x, jSONedit.spawnPos.rotation.y, jSONedit.spawnPos.rotation.z), true);
			PlayerCharacterMasterController._instances[0].master.onBodyStart -= ChangeSpawnPos;
		}

		public static void LoadJson()
		{
			//IL_0077: Unknown result type (might be due to invalid IL or missing references)
			//IL_009d: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e3: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e8: Unknown result type (might be due to invalid IL or missing references)
			//IL_0142: Unknown result type (might be due to invalid IL or missing references)
			//IL_016b: Unknown result type (might be due to invalid IL or missing references)
			//IL_0178: Unknown result type (might be due to invalid IL or missing references)
			//IL_0182: Expected O, but got Unknown
			//IL_017d: Unknown result type (might be due to invalid IL or missing references)
			//IL_0182: Unknown result type (might be due to invalid IL or missing references)
			//IL_0184: Unknown result type (might be due to invalid IL or missing references)
			//IL_01b4: Unknown result type (might be due to invalid IL or missing references)
			//IL_01c3: Unknown result type (might be due to invalid IL or missing references)
			//IL_01f8: Unknown result type (might be due to invalid IL or missing references)
			//IL_020e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0272: Unknown result type (might be due to invalid IL or missing references)
			//IL_0437: Unknown result type (might be due to invalid IL or missing references)
			//IL_0355: Unknown result type (might be due to invalid IL or missing references)
			//IL_035a: Unknown result type (might be due to invalid IL or missing references)
			//IL_0366: Unknown result type (might be due to invalid IL or missing references)
			//IL_0370: Unknown result type (might be due to invalid IL or missing references)
			//IL_037a: Unknown result type (might be due to invalid IL or missing references)
			//IL_037f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0390: Unknown result type (might be due to invalid IL or missing references)
			//IL_0397: Unknown result type (might be due to invalid IL or missing references)
			//IL_03cc: Unknown result type (might be due to invalid IL or missing references)
			//IL_03e0: Unknown result type (might be due to invalid IL or missing references)
			//IL_0305: Unknown result type (might be due to invalid IL or missing references)
			//IL_030a: Unknown result type (might be due to invalid IL or missing references)
			//IL_02d5: Unknown result type (might be due to invalid IL or missing references)
			//IL_02da: Unknown result type (might be due to invalid IL or missing references)
			debugplainsJSON.JSONedit jSONedit = debugplainsJSON.loadJSON();
			PlayerCharacterMasterController._instances[0].master.onBodyStart += ChangeSpawnPos;
			foreach (debugplainsJSON.Dummy dummy in jSONedit.dummies)
			{
				JSONMasters.Add(SpawnDummy(dummy.masterName, new Vector3(dummy.position.x, dummy.position.y, dummy.position.z), Quaternion.Euler(dummy.rotation.x, dummy.rotation.y, dummy.rotation.z), (TeamIndex)(-1)));
			}
			foreach (debugplainsJSON.Interactables interactable in jSONedit.interactables)
			{
				InteractableSpawnCard val = Addressables.LoadAssetAsync<InteractableSpawnCard>((object)interactable.interactableCard).WaitForCompletion();
				if (!Object.op_Implicit((Object)(object)val))
				{
					Log.Warning("Couldn't load interactable card " + interactable.interactableCard + ".");
					break;
				}
				SpawnResult val2 = ((SpawnCard)val).DoSpawn(new Vector3(interactable.position.x, interactable.position.y, interactable.position.z), Quaternion.Euler(interactable.rotation.x, interactable.rotation.y, interactable.rotation.z), new DirectorSpawnRequest((SpawnCard)(object)val, (DirectorPlacementRule)null, RoR2Application.rng));
				val2.spawnedInstance.transform.rotation = Quaternion.Euler(interactable.rotation.x, interactable.rotation.y, interactable.rotation.z);
				JSONObjects.Add(val2.spawnedInstance);
			}
			bool flag = RunArtifactManager.instance._enabledArtifacts[CommandArtifactManager.myArtifact.artifactIndex];
			RunArtifactManager.instance._enabledArtifacts[CommandArtifactManager.myArtifact.artifactIndex] = true;
			debugplains.enableAllFoodItems = true;
			foreach (debugplainsJSON.commandPickup commandPickup in jSONedit.commandPickups)
			{
				ItemTierDef? obj = ((IEnumerable<ItemTierDef>)ItemTierCatalog.itemTierDefs).FirstOrDefault((Func<ItemTierDef, bool>)((ItemTierDef def) => ((Object)def).name.Replace("Def", "") == commandPickup.tier));
				ItemTier? searchTier = ((obj != null) ? new ItemTier?(obj.tier) : ((ItemTier?)null));
				PickupIndex? val3;
				if (!searchTier.HasValue)
				{
					if (commandPickup.tier == "LunarTierEquip")
					{
						val3 = PickupCatalog.FindPickupIndex(((IEnumerable<EquipmentDef>)EquipmentCatalog.equipmentDefs).FirstOrDefault((Func<EquipmentDef, bool>)((EquipmentDef def) => ((Object)def).name == "Tonic")).equipmentIndex);
					}
					else
					{
						if (!(commandPickup.tier == "BossTier"))
						{
							Log.Warning("Couldn't find tier " + commandPickup.tier + " in ItemTierCatalog.");
							continue;
						}
						val3 = PickupCatalog.FindPickupIndex(Items.Knurl.itemIndex);
					}
				}
				else
				{
					val3 = PickupCatalog.FindPickupIndex(ItemCatalog.itemDefs.First((ItemDef item) => (ItemTier?)item.tier == searchTier).itemIndex);
				}
				CreatePickupInfo val4 = default(CreatePickupInfo);
				((CreatePickupInfo)(ref val4)).pickup = new UniquePickup
				{
					pickupIndex = val3.Value,
					decayValue = 0f
				};
				PickupDropletController.CreatePickupDroplet(val4, new Vector3(commandPickup.position.x, commandPickup.position.y, commandPickup.position.z), new Vector3(0f, 0f, 0f));
			}
			Run.onRunDestroyGlobal += delegate
			{
				debugplains.enableAllFoodItems = false;
			};
			RunArtifactManager.instance._enabledArtifacts[CommandArtifactManager.myArtifact.artifactIndex] = flag;
		}
	}
	public abstract class PatchBase<T> : PatchBase where T : PatchBase<T>
	{
		public static T instance { get; private set; }

		public PatchBase()
		{
			if (instance != null)
			{
				throw new InvalidOperationException("Singleton class \"" + typeof(T).Name + "\" inheriting ItemBase was instantiated twice");
			}
			instance = this as T;
		}
	}
	public abstract class PatchBase
	{
		public virtual string chainLoaderKey => "";

		public void PreInit()
		{
			if (Utility.IsNullOrWhiteSpace(chainLoaderKey) || Chainloader.PluginInfos.ContainsKey(chainLoaderKey))
			{
				Init();
			}
			else
			{
				Log.Debug("didnt finds " + chainLoaderKey + " loaded !!! not applyings patches ,.,,.");
			}
		}

		public abstract void Init();

		public abstract void Config(ConfigFile config);

		public virtual void Hooks()
		{
		}
	}
}
namespace kinatoolkit.patches.basegame
{
	public class cursorfree : PatchBase<cursorfree>
	{
		private static GameObject cursorFree;

		private ConfigEntry<KeyboardShortcut> cursorFreeEnabled;

		private ConfigEntry<bool> enabled;

		public override void Init()
		{
			applyHooks();
		}

		private void applyHooks()
		{
			if (enabled.Value)
			{
				RoR2Application.onUpdate += OnUpdate;
			}
			else
			{
				RoR2Application.onUpdate -= OnUpdate;
			}
		}

		private void OnUpdate()
		{
			//IL_0014: Unknown result type (might be due to invalid IL or missing references)
			//IL_0019: Unknown result type (might be due to invalid IL or missing references)
			//IL_001c: Unknown result type (might be due to invalid IL or missing references)
			//IL_0045: Unknown result type (might be due to invalid IL or missing references)
			//IL_004f: Expected O, but got Unknown
			if (!enabled.Value)
			{
				return;
			}
			KeyboardShortcut value = cursorFreeEnabled.Value;
			if (Input.GetKeyDown(((KeyboardShortcut)(ref value)).MainKey))
			{
				if (Object.op_Implicit((Object)(object)cursorFree))
				{
					Object.Destroy((Object)(object)cursorFree);
					return;
				}
				cursorFree = new GameObject("CursorFree");
				MPEventSystemProvider obj = cursorFree.AddComponent<MPEventSystemProvider>();
				cursorFree.AddComponent<MPEventSystemLocator>().eventSystemProvider = cursorFree.GetComponent<MPEventSystemProvider>();
				obj.eventSystem = MPEventSystemManager.kbmEventSystem;
				cursorFree.AddComponent<CursorOpener>();
			}
		}

		public override void Config(ConfigFile config)
		{
			//IL_0055: Unknown result type (might be due to invalid IL or missing references)
			enabled = config.Bind<bool>("kinaToolkit - free cursor", "Enable hooks for free cursor.", true, "");
			Utils.CheckboxConfig(enabled);
			enabled.SettingChanged += delegate
			{
				applyHooks();
			};
			cursorFreeEnabled = config.Bind<KeyboardShortcut>("kinaToolkit - free cursor", "Keybind to free the cursor.", new KeyboardShortcut((KeyCode)326, Array.Empty<KeyCode>()), "Spawns a gameobject to free the cursor, hitting again kills gameobject and unfrees the cursor.");
			Utils.KeyboardConfig(cursorFreeEnabled);
		}
	}
	public class debugplains : PatchBase<debugplains>
	{
		[CompilerGenerated]
		private static class <>O
		{
			public static hook_OnEnter <0>__BaseMainMenuScreenOnOnEnter;

			public static hook_Awake <1>__CharacterSelectControllerOnAwake;

			public static hook_OnEnable <2>__RunOnOnEnable;

			public static hook_GetPlayerSpawnTransform <3>__StageOnGetPlayerSpawnTransform;

			public static Action<Run> <4>__OnRunStart;

			public static hook_Start <5>__StageOnStart;
		}

		private static bool singleplayerPressed;

		private static bool lobbyPressed;

		private static bool enteredScene;

		private static int changedSpawnTransform;

		private static bool oldDisableInteractables;

		private static bool runStartCommands;

		private static bool stageStartCommands;

		public static bool enableAllFoodItems;

		private ConfigEntry<bool> enabled;

		private static ConfigEntry<bool> skipTitle;

		private static ConfigEntry<bool> skipLobby;

		private static ConfigEntry<string> sceneEntry;

		private static ConfigEntry<bool> disableInteractables;

		private static ConfigEntry<string> runCommands;

		private static ConfigEntry<string> stageCommands;

		public override void Init()
		{
			applyHooks();
		}

		private void applyHooks()
		{
			//IL_00f2: Unknown result type (might be due to invalid IL or missing references)
			//IL_00f7: Unknown result type (might be due to invalid IL or missing references)
			//IL_00fd: Expected O, but got Unknown
			//IL_0020: Unknown result type (might be due to invalid IL or missing references)
			//IL_0025: Unknown result type (might be due to invalid IL or missing references)
			//IL_002b: Expected O, but got Unknown
			//IL_0112: Unknown result type (might be due to invalid IL or missing references)
			//IL_0117: Unknown result type (might be due to invalid IL or missing references)
			//IL_011d: Expected O, but got Unknown
			//IL_0040: Unknown result type (might be due to invalid IL or missing references)
			//IL_0045: Unknown result type (might be due to invalid IL or missing references)
			//IL_004b: Expected O, but got Unknown
			//IL_0132: Unknown result type (might be due to invalid IL or missing references)
			//IL_0137: Unknown result type (might be due to invalid IL or missing references)
			//IL_013d: Expected O, but got Unknown
			//IL_0060: Unknown result type (might be due to invalid IL or missing references)
			//IL_0065: Unknown result type (might be due to invalid IL or missing references)
			//IL_006b: Expected O, but got Unknown
			//IL_0152: Unknown result type (might be due to invalid IL or missing references)
			//IL_0157: Unknown result type (might be due to invalid IL or missing references)
			//IL_015d: Expected O, but got Unknown
			//IL_0080: Unknown result type (might be due to invalid IL or missing references)
			//IL_0085: Unknown result type (might be due to invalid IL or missing references)
			//IL_008b: Expected O, but got Unknown
			//IL_01a9: Unknown result type (might be due to invalid IL or missing references)
			//IL_01b3: Expected O, but got Unknown
			//IL_0192: Unknown result type (might be due to invalid IL or missing references)
			//IL_0197: Unknown result type (might be due to invalid IL or missing references)
			//IL_019d: Expected O, but got Unknown
			//IL_00d7: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e1: Expected O, but got Unknown
			//IL_00c0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00cb: Expected O, but got Unknown
			if (enabled.Value)
			{
				object obj = <>O.<0>__BaseMainMenuScreenOnOnEnter;
				if (obj == null)
				{
					hook_OnEnter val = BaseMainMenuScreenOnOnEnter;
					<>O.<0>__BaseMainMenuScreenOnOnEnter = val;
					obj = (object)val;
				}
				BaseMainMenuScreen.OnEnter += (hook_OnEnter)obj;
				object obj2 = <>O.<1>__CharacterSelectControllerOnAwake;
				if (obj2 == null)
				{
					hook_Awake val2 = CharacterSelectControllerOnAwake;
					<>O.<1>__CharacterSelectControllerOnAwake = val2;
					obj2 = (object)val2;
				}
				CharacterSelectController.Awake += (hook_Awake)obj2;
				object obj3 = <>O.<2>__RunOnOnEnable;
				if (obj3 == null)
				{
					hook_OnEnable val3 = RunOnOnEnable;
					<>O.<2>__RunOnOnEnable = val3;
					obj3 = (object)val3;
				}
				Run.OnEnable += (hook_OnEnable)obj3;
				object obj4 = <>O.<3>__StageOnGetPlayerSpawnTransform;
				if (obj4 == null)
				{
					hook_GetPlayerSpawnTransform val4 = StageOnGetPlayerSpawnTransform;
					<>O.<3>__StageOnGetPlayerSpawnTransform = val4;
					obj4 = (object)val4;
				}
				Stage.GetPlayerSpawnTransform += (hook_GetPlayerSpawnTransform)obj4;
				Run.onRunStartGlobal += OnRunStart;
				object obj5 = <>O.<5>__StageOnStart;
				if (obj5 == null)
				{
					hook_Start val5 = StageOnStart;
					<>O.<5>__StageOnStart = val5;
					obj5 = (object)val5;
				}
				Stage.Start += (hook_Start)obj5;
				PickupTransmutationManager.GetGroupFromPickupIndex += new hook_GetGroupFromPickupIndex(PickupTransmutationManagerOnGetGroupFromPickupIndex);
			}
			else
			{
				object obj6 = <>O.<0>__BaseMainMenuScreenOnOnEnter;
				if (obj6 == null)
				{
					hook_OnEnter val6 = BaseMainMenuScreenOnOnEnter;
					<>O.<0>__BaseMainMenuScreenOnOnEnter = val6;
					obj6 = (object)val6;
				}
				BaseMainMenuScreen.OnEnter -= (hook_OnEnter)obj6;
				object obj7 = <>O.<1>__CharacterSelectControllerOnAwake;
				if (obj7 == null)
				{
					hook_Awake val7 = CharacterSelectControllerOnAwake;
					<>O.<1>__CharacterSelectControllerOnAwake = val7;
					obj7 = (object)val7;
				}
				CharacterSelectController.Awake -= (hook_Awake)obj7;
				object obj8 = <>O.<2>__RunOnOnEnable;
				if (obj8 == null)
				{
					hook_OnEnable val8 = RunOnOnEnable;
					<>O.<2>__RunOnOnEnable = val8;
					obj8 = (object)val8;
				}
				Run.OnEnable -= (hook_OnEnable)obj8;
				object obj9 = <>O.<3>__StageOnGetPlayerSpawnTransform;
				if (obj9 == null)
				{
					hook_GetPlayerSpawnTransform val9 = StageOnGetPlayerSpawnTransform;
					<>O.<3>__StageOnGetPlayerSpawnTransform = val9;
					obj9 = (object)val9;
				}
				Stage.GetPlayerSpawnTransform -= (hook_GetPlayerSpawnTransform)obj9;
				Run.onRunStartGlobal -= OnRunStart;
				object obj10 = <>O.<5>__StageOnStart;
				if (obj10 == null)
				{
					hook_Start val10 = StageOnStart;
					<>O.<5>__StageOnStart = val10;
					obj10 = (object)val10;
				}
				Stage.Start -= (hook_Start)obj10;
				PickupTransmutationManager.GetGroupFromPickupIndex -= new hook_GetGroupFromPickupIndex(PickupTransmutationManagerOnGetGroupFromPickupIndex);
			}
		}

		private PickupIndex[] PickupTransmutationManagerOnGetGroupFromPickupIndex(orig_GetGroupFromPickupIndex orig, PickupIndex pickupindex)
		{
			//IL_0007: Unknown result type (might be due to invalid IL or missing references)
			//IL_0008: Unknown result type (might be due to invalid IL or missing references)
			//IL_000f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0033: Unknown result type (might be due to invalid IL or missing references)
			//IL_003a: Invalid comparison between Unknown and I4
			PickupIndex[] result = orig.Invoke(pickupindex);
			if (enableAllFoodItems)
			{
				PickupDef pickupDef = ((PickupIndex)(ref pickupindex)).pickupDef;
				if (pickupDef != null && (int)pickupDef.itemTier == 10)
				{
					return (from entry in PickupCatalog.entries
						where (ItemTier?)entry.itemTier == ((PickupIndex)(ref pickupindex)).pickupDef?.itemTier && (int)entry.itemIndex != -1
						select entry.pickupIndex).ToArray();
				}
			}
			return result;
		}

		private static void CharacterSelectControllerOnAwake(orig_Awake orig, CharacterSelectController self)
		{
			orig.Invoke(self);
			if (!lobbyPressed && skipLobby.Value)
			{
				lobbyPressed = true;
				Log.Debug("lobbyPressed");
				((Component)PreGameController.instance).gameObject.GetComponent<VoteController>().ReceiveUserVote(LocalUserManager.GetFirstLocalUser().currentNetworkUser, 0);
			}
		}

		private static void BaseMainMenuScreenOnOnEnter(orig_OnEnter orig, BaseMainMenuScreen self, MainMenuController mainmenucontroller)
		{
			orig.Invoke(self, mainmenucontroller);
			if (!singleplayerPressed && skipTitle.Value)
			{
				singleplayerPressed = true;
				Log.Debug("singleplayerPressed");
				((Component)self).gameObject.GetComponent<TitleMenuController>().consoleFunctions.SubmitCmd("transition_command \"gamemode ClassicRun; host 0;\"");
			}
		}

		private static Transform StageOnGetPlayerSpawnTransform(orig_GetPlayerSpawnTransform orig, Stage self)
		{
			Transform result = orig.Invoke(self);
			if (!enteredScene || changedSpawnTransform >= 2)
			{
				return result;
			}
			changedSpawnTransform++;
			if (changedSpawnTransform == 2)
			{
				commands.LoadJson();
			}
			if (disableInteractables.Value)
			{
				commands.disableInteractables = oldDisableInteractables;
			}
			return result;
		}

		private static void RunOnOnEnable(orig_OnEnable orig, Run self)
		{
			//IL_0028: Unknown result type (might be due to invalid IL or missing references)
			//IL_0036: Unknown result type (might be due to invalid IL or missing references)
			//IL_0037: Unknown result type (might be due to invalid IL or missing references)
			//IL_0047: Unknown result type (might be due to invalid IL or missing references)
			//IL_0048: Unknown result type (might be due to invalid IL or missing references)
			SceneDef sceneDefFromSceneName = SceneCatalog.GetSceneDefFromSceneName(sceneEntry.Value);
			if (!enteredScene && (Object)(object)sceneDefFromSceneName != (Object)null)
			{
				enteredScene = true;
				SceneEntry val = new SceneEntry
				{
					sceneDef = sceneDefFromSceneName
				};
				SceneCollection val2 = ScriptableObject.CreateInstance<SceneCollection>();
				val2._sceneEntries = (SceneEntry[])(object)new SceneEntry[1] { val };
				self.startingSceneGroup = val2;
				if (disableInteractables.Value)
				{
					oldDisableInteractables = commands.disableInteractables;
					commands.disableInteractables = true;
				}
			}
			orig.Invoke(self);
		}

		private static IEnumerator StageOnStart(orig_Start orig, Stage self)
		{
			if (!stageStartCommands)
			{
				stageStartCommands = true;
				string[] array = stageCommands.Value.Split(";");
				for (int i = 0; i < array.Length; i++)
				{
					List<string> list = array[i].Trim().Split(" ").ToList();
					string text = list[0];
					list.RemoveAt(0);
					string text2 = list.Aggregate("", (string current, string arg) => current + arg + " ");
					Log.Debug("Running command: " + text + " with args " + text2);
					Console.instance.RunCmd(CmdSender.op_Implicit(LocalUserManager.GetFirstLocalUser()), text, list);
				}
			}
			yield return orig.Invoke(self);
		}

		private static void OnRunStart(Run run)
		{
			//IL_00a0: Unknown result type (might be due to invalid IL or missing references)
			if (runStartCommands)
			{
				return;
			}
			runStartCommands = true;
			string[] array = runCommands.Value.Split(";");
			for (int i = 0; i < array.Length; i++)
			{
				List<string> list = array[i].Trim().Split(" ").ToList();
				string text = list[0];
				list.RemoveAt(0);
				string text2 = list.Aggregate("", (string current, string arg) => current + arg + " ");
				Log.Debug("Running command: " + text + " with args " + text2);
				Console.instance.RunCmd(CmdSender.op_Implicit(LocalUserManager.GetFirstLocalUser()), text, list);
			}
		}

		public override void Config(ConfigFile config)
		{
			enabled = config.Bind<bool>("kinaToolkit - debugplains", "Enable DebugPlains", true, "");
			Utils.CheckboxConfig(enabled);
			enabled.SettingChanged += delegate
			{
				applyHooks();
			};
			skipTitle = config.Bind<bool>("kinaToolkit - debugplains", "Skip title screen", true, "Whether or not to skip the title screen.");
			Utils.CheckboxConfig(skipTitle);
			skipLobby = config.Bind<bool>("kinaToolkit - debugplains", "Skip character select", true, "Whether or not to skip the character select screen.");
			Utils.CheckboxConfig(skipLobby);
			sceneEntry = config.Bind<string>("kinaToolkit - debugplains", "Starting scene", "golemplains", "Default scene to send the player to upon starting a run for the first time. Set to blank or an invalid scene name to disable.");
			Utils.StringConfig(sceneEntry);
			disableInteractables = config.Bind<bool>("kinaToolkit - debugplains", "Disable naturally spawning interactables in Debug Plains", true, "Run disable_interactables as the scene loads to prevent any interactables from spawning in.");
			Utils.CheckboxConfig(disableInteractables);
			runCommands = config.Bind<string>("kinaToolkit - debugplains", "Debug Plains run start commands", "no_enemies true; stage1_pod 0", "Commands run upon starting a Debug Plains run.");
			Utils.StringConfig(runCommands);
			stageCommands = config.Bind<string>("kinaToolkit - debugplains", "Debug Plains stage start commands", "stop_timer 1; give_money 99999", "Comamnds run upon starting in the Debug Plains stage.");
			Utils.StringConfig(stageCommands);
		}
	}
	public class debugplainsJSON
	{
		public class JSONedit
		{
			public IList<Dummy> dummies;

			public IList<Interactables> interactables;

			public IList<commandPickup> commandPickups;

			public spawnPos spawnPos { get; set; }
		}

		public class spawnPos
		{
			public string tier { get; set; }

			public Position position { get; set; }

			public Rotation rotation { get; set; }
		}

		public class commandPickup
		{
			public string tier { get; set; }

			public Position position { get; set; }
		}

		public class Interactables
		{
			public string interactableCard { get; set; }

			public Position position { get; set; }

			public Rotation rotation { get; set; }
		}

		public class Dummy
		{
			public string masterName { get; set; }

			public Position position { get; set; }

			public Rotation rotation { get; set; }
		}

		public class Position
		{
			public float x { get; set; }

			public float y { get; set; }

			public float z { get; set; }
		}

		public class Rotation
		{
			public float x { get; set; }

			public float y { get; set; }

			public float z { get; set; }
		}

		public static JSONedit loadJSON()
		{
			string text = Path.Combine(Path.GetDirectoryName(Paths.ConfigPath), "config", "kinaToolkit");
			if (!Directory.Exists(text))
			{
				Directory.CreateDirectory(text);
			}
			using StreamReader streamReader = new StreamReader(Path.Combine(text, "debugPlains.json"));
			return JsonConvert.DeserializeObject<JSONedit>(streamReader.ReadToEnd());
		}
	}
	public class lowfpsinbg : PatchBase<lowfpsinbg>
	{
		private static int oldFramerate;

		private static bool applyFramerate;

		private ConfigEntry<bool> enabled;

		private ConfigEntry<int> targetFPS;

		public override void Init()
		{
			applyHooks();
			RoR2Application.onLoad = (Action)Delegate.Combine(RoR2Application.onLoad, (Action)delegate
			{
				applyFramerate = true;
				OnApplicationFocus(Application.isFocused);
			});
		}

		private void applyHooks()
		{
			//IL_0038: Unknown result type (might be due to invalid IL or missing references)
			//IL_0042: Expected O, but got Unknown
			//IL_0014: Unknown result type (might be due to invalid IL or missing references)
			//IL_001e: Expected O, but got Unknown
			if (enabled.Value)
			{
				FpsMaxConVar.GetString += new hook_GetString(FpsMaxConVarOnGetString);
				Application.focusChanged += OnApplicationFocus;
			}
			else
			{
				FpsMaxConVar.GetString -= new hook_GetString(FpsMaxConVarOnGetString);
				Application.focusChanged -= OnApplicationFocus;
			}
			OnApplicationFocus(Application.isFocused);
		}

		private string FpsMaxConVarOnGetString(orig_GetString orig, BaseConVar self)
		{
			//IL_0009: Unknown result type (might be due to invalid IL or missing references)
			//IL_0013: Expected O, but got Unknown
			if (oldFramerate == 0)
			{
				return orig.Invoke((FpsMaxConVar)self);
			}
			return oldFramerate.ToString();
		}

		private void OnApplicationFocus(bool hasFocus)
		{
			if (applyFramerate)
			{
				if (hasFocus && oldFramerate != 0)
				{
					Application.targetFrameRate = oldFramerate;
					oldFramerate = 0;
					Log.Debug($"back in focus ! set fps back to {Application.targetFrameRate} ,..,");
				}
				else if (!hasFocus)
				{
					oldFramerate = Application.targetFrameRate;
					Application.targetFrameRate = targetFPS.Value;
					Log.Debug($"out of focus ! previous fps {oldFramerate} ,..,");
				}
			}
		}

		public override void Config(ConfigFile config)
		{
			enabled = config.Bind<bool>("kinaToolkit - lowfpsinbg", "Enable low FPS in background.", true, "Lowers the FPS of the game while it is in the background.");
			Utils.CheckboxConfig(enabled);
			enabled.SettingChanged += delegate
			{
				applyHooks();
			};
			targetFPS = config.Bind<int>("kinaToolkit - lowfpsinbg", "Target FPS while in background.", 30, "What framerate to target while RoR2 is in the background.");
			Utils.SliderConfig(0, 144, targetFPS);
		}
	}
	public class soundIDs
	{
		public static Dictionary<string, uint> soundID = new Dictionary<string, uint>
		{
			{ "Play_AMB_zone_damp_cave_simple", 1142851345u },
			{ "Stop_env_dampCave_crystalLight_loop", 1176518915u },
			{ "Stop_env_dampCave_steamVent_loop", 2061687186u },
			{ "Play_env_dampCave_steamVent_loop", 2932480344u },
			{ "Play_env_dampCave_crystalLight_loop", 3080548713u },
			{ "Play_merc_shift_slice", 68402651u },
			{ "Play_merc_utility_variant_buildup", 103882784u },
			{ "Play_merc_shift_end", 736404446u },
			{ "Play_merc_R_end", 1603633668u },
			{ "Play_merc_m2_uppercut", 1892656648u },
			{ "Play_merc_R_slicingBlades_flight_loop", 2847996807u },
			{ "Play_merc_sword_impact", 2884474380u },
			{ "Play_merc_R_slicingBlades_throw", 2911481668u },
			{ "Play_merc_R_start", 3475430583u },
			{ "Play_merc_sword_swing", 3675283896u },
			{ "Play_merc_shift_start", 3770997429u },
			{ "Stop_merc_R_slicingBlades_flight_loop", 3963063609u },
			{ "Play_merc_m1_hard_swing", 4028970009u },
			{ "Play_merc_R_dash", 4156900065u },
			{ "Play_minorConstruct_attack_bodyOpen", 102085366u },
			{ "Play_minorConstruct_death", 234636383u },
			{ "Play_minorConstruct_attack_chargeUp", 553643209u },
			{ "Stop_minorConstruct_attack_chargeUp", 650586463u },
			{ "Play_minorConstruct_attack_shoot", 945784279u },
			{ "Stop_minorConstruct_attack_flight_loop", 1626489975u },
			{ "Play_minorConstruct_attack_bodyClose", 2087632802u },
			{ "Play_minorConstruct_attack_flight_loop", 2248627301u },
			{ "Play_minorConstruct_spawn", 2481199304u },
			{ "Play_minorConstruct_hide", 3168353919u },
			{ "Play_minorConstruct_attack_explode", 3214992105u },
			{ "Play_minorConstruct_VO_idle", 3224588039u },
			{ "Play_GG_Tanker_Accelerant_Impact", 114700014u },
			{ "Play_GG_Tanker_Bark", 467651127u },
			{ "Stop_GG_Tanker_Idle_LP", 853097348u },
			{ "Play_GG_Tanker_FlameThrower", 1161590163u },
			{ "Play_GG_Tanker_Spawn", 1752179090u },
			{ "Play_GG_Tanker_Accelerant_Transfer", 2088505513u },
			{ "Stop_GG_Tanker_PuddleIgnite", 2099681477u },
			{ "Play_tankerUnit_attack_oil_chargeUp", 2125646255u },
			{ "Play_tankerUnit_attack_oil_exit", 2458988636u },
			{ "Play_tankerUnit_attack_oil_enter", 2960302038u },
			{ "Play_GG_Tanker_Accelerant_Shoot", 3165814173u },
			{ "Play_GG_Tanker_PuddleIgnite", 3557836315u },
			{ "Play_GG_Tanker_Idle_LP", 3982344122u },
			{ "Play_GG_Tanker_Death", 4231191869u },
			{ "Play_GG_CHAR_Skill_G_Force_Loop", 567561320u },
			{ "Stop_GG_CHAR_Skill_G_Force_Loop", 735634454u },
			{ "Play_GG_CHAR_Skill_G_Force_Activate", 1113223081u },
			{ "Play_AMB_zone_skyMeadow_hiddenLab", 3040657526u },
			{ "Play_AMB_zone_dark_rain", 938309267u },
			{ "Play_commando_M2_grenade_beep", 767972256u },
			{ "Play_commando_R_stun", 856897882u },
			{ "Play_loader_m2_launch", 1515255731u },
			{ "Play_commando_M2_grenade_explo", 1805372450u },
			{ "Play_commando_M2_grenade_bounce", 2406813524u },
			{ "Play_commando_M2_grenade_throw", 2891623396u },
			{ "Play_bandit2_R_load", 3765877048u },
			{ "Play_commando_M2_impact", 3856027043u },
			{ "Play_commando_shift", 4030773325u },
			{ "Play_commando_M1", 4060526873u },
			{ "Stop_SolusWeb_BitClear_Loop", 104057480u },
			{ "Play_SolusWeb_DDOS_Summon_Slow", 309757325u },
			{ "Play_SolusWeb_Underclock_Explode", 371087099u },
			{ "Play_SolusWeb_DDOS_Summon_Fast", 404827724u },
			{ "Play_SolusWeb_AcceptOffering_Start", 492137010u },
			{ "Play_SolusWeb_Underclock_Loop", 925568230u },
			{ "Play_SolusWeb_BitClear_Windup", 1000350873u },
			{ "Play_SolusWeb_Underclock_Spawn", 1063609745u },
			{ "Play_SolusWeb_BitClear_End", 1268038271u },
			{ "Stop_SolusWeb_MercyForm_Idle_Loop", 1284298693u },
			{ "Play_SolusWeb_BitClear_Anim_Start", 1328703074u },
			{ "Play_SolusWeb_AcceptOffering_Flower_Loop", 1462295532u },
			{ "Stop_SolusWeb_AcceptOffering_Flower_Loop", 1582861238u },
			{ "Play_SolusWeb_BitClear_Start", 1928247708u },
			{ "Play_SolusWeb_AcceptOffering_Player_Vanish", 2089399629u },
			{ "Stop_SolusWeb_Death_Final_Portal_Loop", 2257841624u },
			{ "Play_SolusWeb_Intro", 2406195501u },
			{ "Play_SolusWeb_BitClear_Loop", 2609368050u },
			{ "Play_SolusWeb_Death_Fight_FallSequence_MoveToMercy", 2730653828u },
			{ "Stop_SolusWeb_Underclock_Loop", 2748437656u },
			{ "Play_SolusWeb_MercyForm_Idle_Loop", 2865633555u },
			{ "Play_SolusWeb_Teleport", 3143821740u },
			{ "Play_SolusWeb_HammerSmash", 3564101793u },
			{ "Play_SolusWeb_Death_Final_Portal_Appear", 3572063743u },
			{ "Play_SolusWeb_Death_Final_Portal_Loop", 3767055398u },
			{ "Play_SolusWeb_Death_Fight_FallSequence_Impact", 3771282562u },
			{ "Play_SolusWeb_HammerSmash_BuildUp", 4171060899u },
			{ "Play_AMB_zone_habitat", 853228031u },
			{ "Play_alloyHunter_pauldronLasers_04_activateLasers", 22462842u },
			{ "Play_alloyHunter_spawn_FULL", 204425339u },
			{ "Play_alloyHunter_death_ground_start", 348651281u },
			{ "Stop_alloyHunter_flight_move_loop", 360970657u },
			{ "Play_alloyHunter_VO_short_loud", 393774277u },
			{ "Play_alloyHunter_spearThrow_impact", 469384542u },
			{ "Play_alloyHunter_death_air_whoosh", 664666932u },
			{ "Play_alloyHunter_flight_idle_loop", 752123012u },
			{ "Play_alloyHunter_pauldronLasers_01_incoming", 927385798u },
			{ "Stop_alloyHunter_flight_idle_loop", 962082386u },
			{ "Play_alloyHunter_flight_lift_off", 1073362924u },
			{ "Play_alloyHunter_flight_move_loop", 1305140211u },
			{ "Stop_alloyHunter_laserSweep_laser_loop", 1413254306u },
			{ "Play_alloyHunter_spawn_02_killshoot", 1492225878u },
			{ "Play_alloyHunter_spearThrow_toss_pre", 1597493795u },
			{ "Play_alloyHunter_spawn_03_dive", 1679841036u },
			{ "Play_alloyHunter_laserSweep_bomb_impact", 1713157995u },
			{ "Play_alloyHunter_spawn_01_start", 1991894340u },
			{ "Play_alloyHunter_death_air_explode", 2002294689u },
			{ "Play_alloyHunter_pauldronLasers_laser_loop", 2083448956u },
			{ "Stop_alloyHunter_spearThrow_cyclone_loop", 2141435826u },
			{ "Play_alloyHunter_pauldronLasers_03_pauldronExtend", 2169622547u },
			{ "Play_alloyHunter_spearThrow_toss_teleportOut", 2230654575u },
			{ "Play_alloyHunter_laserSweep_bomb_explode", 2302102404u },
			{ "Play_alloyHunter_laserSweep_bomb_charge", 2304205369u },
			{ "Play_alloyHunter_VO_med", 2499311190u },
			{ "Play_alloyHunter_calldown_impact", 2758668581u },
			{ "Play_alloyHunter_spawn_04_explosion", 2767536888u },
			{ "Play_alloyHunter_spearThrow_toss_teleportIn", 2813823848u },
			{ "Stop_alloyHunter_pauldronLasers_laser_loop", 2879469046u },
			{ "Play_alloyHunter_spearThrow_explode", 2987466863u },
			{ "Play_alloyHunter_laserSweep_laser_loop", 3042951256u },
			{ "Play_alloyHunter_death_ground_spear_whoosh", 3078531303u },
			{ "Play_alloyHunter_death_air_start", 3162111274u },
			{ "Play_alloyHunter_spearThrow_cyclone_loop", 3224225420u },
			{ "Play_alloyHunter_calldown_warning", 3328599213u },
			{ "Play_alloyHunter_VO_death", 3622816202u },
			{ "Play_alloyHunter_death_ground_spear_stab", 3728903905u },
			{ "Play_alloyHunter_takehit", 3763298104u },
			{ "Play_alloyHunter_calldown_target", 3915010224u },
			{ "Play_alloyHunter_calldown_fire_loop", 3926377128u },
			{ "Play_alloyHunter_laserSweep_warning", 3974440618u },
			{ "Play_alloyHunter_pauldronLasers_02_land", 4005656196u },
			{ "Stop_alloyHunter_calldown_fire_loop", 4062271214u },
			{ "Play_drifter_cleanup_hold_loop", 6342922u },
			{ "Play_drifter_repossess_success", 162633206u },
			{ "Play_drifter_tornadoSlam_start", 311754406u },
			{ "Play_engi_seekerMissile_lockOn", 407672846u },
			{ "Stop_drifter_repossess_bagWiggle_Loop", 458976253u },
			{ "Stop_drifter_tornadoSlam_spin_loop", 471382973u },
			{ "Play_GG_CHAR_Drifter_AltSec_JumpPad_Explode", 557614465u },
			{ "Play_drifter_repossess_expel_impact", 598452486u },
			{ "Play_engi_R_place", 643340344u },
			{ "Play_drifter_repossess_bagWiggle_Loop", 688867763u },
			{ "Play_engi_shift_start", 729856403u },
			{ "Play_captain_R_turret_healing_loop", 788149618u },
			{ "Play_GG_CHAR_Drifter_Jump", 938927785u },
			{ "Play_drifter_cleanup_throw_impact", 975597091u },
			{ "Play_engi_M1_chargeLoop", 1143106461u },
			{ "Play_difter_altSpecial_activate", 1298481535u },
			{ "Stop_drifter_cleanup_hold_loop", 1300724264u },
			{ "Play_engi_shift_end", 1395092584u },
			{ "Play_wJanitorShoot4_1", 1410865383u },
			{ "Play_MULT_m2_main_explode", 1416927996u },
			{ "Stop_captain_R_turret_healing_loop", 1504065608u },
			{ "Play_GG_CHAR_Drifter_TornadoSlam_Slap", 1606807272u },
			{ "Play_GG_CHAR_Drifter_Primary_BluntForce", 1882629058u },
			{ "Stop_engi_M1_chargeLoop", 1939044551u },
			{ "Play_engi_M2_land", 1942736441u },
			{ "Play_GG_CHAR_Drifter_Step", 1979775295u },
			{ "Play_GG_CHAR_Drifter_Land", 2033189542u },
			{ "Play_GG_CHAR_Drifter_AltSec_JumpPad_Bounce", 2035604314u },
			{ "Play_GG_CHAR_Drifter_Utility_Suffocate", 2043661060u },
			{ "Play_drifter_tornadoSlam_slam", 2247196593u },
			{ "Play_drifter_repossess_swing", 2312372269u },
			{ "Stop_engi_shift_loop", 2454510477u },
			{ "Play_engi_M1_explo", 2460302619u },
			{ "Stop_Drifter_AltSpecial_Loop", 2462874322u },
			{ "Play_drifter_tornadoSlam_spin_loop", 2619416943u },
			{ "Play_drifter_altSpecial_cast", 2693896031u },
			{ "Play_drifter_repossess_expel_toss", 2699276733u },
			{ "Play_GG_CHAR_Drifter_Destroyed", 2804646874u },
			{ "Play_GG_CHAR_Drifter_TornadoSlam_Wind", 2862096548u },
			{ "Play_drifter_repossess_dash", 2907010977u },
			{ "Play_Drifter_AltSpecial_Loop", 2912165268u },
			{ "Play_MULT_m2_secondary_explode", 2935238587u },
			{ "Play_GG_CHAR_Drifter_BluntForce_02", 3180905104u },
			{ "Play_GG_CHAR_Drifter_BluntForce_03", 3180905105u },
			{ "Play_GG_CHAR_Drifter_BluntForce_01", 3180905107u },
			{ "Play_GG_CHAR_Drifter_Sprint", 3236448481u },
			{ "Play_GG_CHAR_Drifter_Special_Salvage", 3439178480u },
			{ "Play_drifter_cleanup_throw_launch", 3489857732u },
			{ "Play_drifter_repossess_fail", 3560591209u },
			{ "Play_GG_CHAR_Drifter_Secondary_Cleanup", 3670753312u },
			{ "Play_drifter_repossess_heavyWalk", 3912167929u },
			{ "Play_GG_CHAR_Drifter_CleanUp_Impact", 3977581864u },
			{ "Play_GG_CHAR_Drifter_AltSec_JumpPad_Hit", 4011332757u },
			{ "Play_drifter_cleanup_ready", 4037008975u },
			{ "Play_GG_CHAR_Drifter_AltSec_JumpPad_Create", 4049346414u },
			{ "Play_AMB_zone_arena", 1539048487u },
			{ "Play_child_impact", 344091393u },
			{ "Play_child_spawn", 461350500u },
			{ "Play_child_death", 925315123u },
			{ "Play_child_attack2_reappear", 1019261982u },
			{ "Play_child_attack1_explode", 1294402482u },
			{ "Stop_child_attack1_flight_loop", 2146566000u },
			{ "Play_child_attack1_shoot", 2814796512u },
			{ "Play_child_attack1_flight_loop", 3205385374u },
			{ "Play_child_attack2_teleport", 3337570671u },
			{ "Play_child_attack1_chargeUp", 3600925324u },
			{ "Play_child_idle_VO", 3665222037u },
			{ "Play_child_step", 4067548089u },
			{ "Play_env_helminth_jumppad_launch", 804535113u },
			{ "Play_env_helminth_jumppad_loop", 1121351506u },
			{ "Play_AMB_zone_helminthRoost", 1401190132u },
			{ "Play_env_hiddenLab_laptop_button_cycle", 1729294674u },
			{ "Stop_env_helminth_jumppad_loop", 1859759472u },
			{ "Play_item_proc_triggerEnemyDebuffs", 3210081566u },
			{ "Play_GG_DefectiveUnit_Bark", 94356153u },
			{ "Play_defectiveUnit_attack_melee_chargeup", 419277705u },
			{ "Play_defectiveUnit_attack_projectile_explosion", 541237696u },
			{ "Play_GG_DefectiveUnit_Detonate_Charge", 602408374u },
			{ "Play_defectiveUnit_attack_projectile_shoot", 865433072u },
			{ "Stop_GG_DefectiveUnit_DenialFX_LP", 1020875313u },
			{ "Play_GG_DefectiveUnit_EMPZone_Charge", 1494305412u },
			{ "Play_defectiveUnit_jump", 1773521302u },
			{ "Stop_GG_DefectiveUnit_DetonateFX_LP", 1783996498u },
			{ "Play_defectiveUnit_attack_projectile_impact", 1862931725u },
			{ "Play_defectiveUnit_attack_projectile_chargeup", 1880272092u },
			{ "Play_GG_DefectiveUnit_DetonateFX_LP", 1883066148u },
			{ "Play_GG_DefectiveUnit_Idle_LP", 2067345456u },
			{ "Play_GG_DefectiveUnit_DenialFX_LP", 2380402943u },
			{ "Stop_GG_DefectiveUnit_Idle_LP", 2476701226u },
			{ "Play_GG_DefectiveUnit_Death", 2599058775u },
			{ "Play_defectiveUnit_movement_roll_loop", 2694224042u },
			{ "Play_defectiveUnit_attack_melee_explosion", 2798355155u },
			{ "Play_GG_DefectiveUnit_EMPZone_Start", 3414137396u },
			{ "Play_GG_DefectiveUnit_Spawn", 3729255424u },
			{ "Play_defectiveUnit_attack_projectile_flight_loop", 3803381518u },
			{ "Stop_defectiveUnit_attack_projectile_flight_loop", 3981061744u },
			{ "Stop_defectiveUnit_movement_roll_loop", 4279750368u },
			{ "Play_GG_MONSTER_ExtractorUnit_Beam", 253627042u },
			{ "Play_extractorUnit_dash", 285461883u },
			{ "Play_GG_MONSTER_ExtractorUnit_Spawn", 504817556u },
			{ "Play_extractorUnit_step", 565594161u },
			{ "Play_GG_MONSTER_ExtractorUnit_Extract", 569949822u },
			{ "Stop_extractorUnit_itemShare_loop", 848172506u },
			{ "Play_GG_ExtractorUnit_Bark", 959254036u },
			{ "Play_GG_MONSTER_ExtractorUnit_Death", 1455473507u },
			{ "Stop_GG_MONSTER_ExtractorUnit_Beam", 1455974896u },
			{ "Play_extractorUnit_itemShare", 1553395379u },
			{ "Play_extractorUnit_itemShare_loop", 1969955072u },
			{ "Play_GG_MONSTER_ExtractorUnit_Extract_Success", 2054357174u },
			{ "Play_extractorUnit_scanning_loop", 2122403167u },
			{ "Stop_extractorUnit_scanning_loop", 2349299829u },
			{ "Play_extractorUnit_grab", 2613160345u },
			{ "Play_extractorUnit_lockon", 2904477589u },
			{ "Play_GG_ExtractorUnit_Extract_Start", 2908376096u },
			{ "Stop_GG_ExtractorUnit_Idle", 3206215078u },
			{ "Play_extractorUnit_grab_alert", 3480642670u },
			{ "Play_GG_ExtractorUnit_Idle", 4224506640u },
			{ "Play_item_use_JumpDamageStrike_loop", 999631236u },
			{ "Play_JumpDamageStrike_Activate", 1992644921u },
			{ "Stop_item_use_JumpDamageStrike_loop", 2282312158u },
			{ "Play_item_proc_goldOnStageStart", 3109903834u },
			{ "Play_item_proc_increasePrimaryDamage", 3525110178u },
			{ "Play_treeBot_m2_impact", 323005434u },
			{ "Play_treeBot_shift_charge", 335233555u },
			{ "Play_treeBot_R_variant_seed_land", 533231672u },
			{ "Play_treeBot_sprint_end", 592738334u },
			{ "Play_treeBot_shift_shoot", 641898280u },
			{ "Stop_treeBot_sprint_loop", 968123379u },
			{ "Play_treeBot_R_expire", 1254293392u },
			{ "Play_treeBot_m2_seedRain_loop", 1388761226u },
			{ "Play_treeBot_R_constrict", 1414602716u },
			{ "Play_treeBot_m1_hit_heal", 1461667197u },
			{ "Play_treeBot_m1_shoot", 1706423866u },
			{ "Play_treeBot_sprint_start", 1788171509u },
			{ "Play_treeBot_m1_impact", 2074366515u },
			{ "Stop_treeBot_m2_seedRain_loop", 2500290320u },
			{ "Play_treeBot_R_yank", 2638772870u },
			{ "Play_treeBot_R_variant_burst", 2656396187u },
			{ "Play_treeBot_R_impact", 2833507695u },
			{ "Play_treeBot_m2_launch", 2886069581u },
			{ "Play_treeBot_R_shoot", 2893248438u },
			{ "Play_treeBot_R_variant_impact", 2966376717u },
			{ "Play_treeBot_m1_3rd_hit", 3381653860u },
			{ "Play_treeBot_R_tether", 3415846421u },
			{ "Stop_treeBot_R_activeLoop", 3757914531u },
			{ "Play_treeBot_step", 4191740994u },
			{ "Play_treeBot_R_variant_shoot", 4193307120u },
			{ "Play_AMB_zone_villageNight", 446631000u },
			{ "Play_freezeDrone_flight_loop", 1678304177u },
			{ "Stop_freezeDrone_flight_loop", 2895294147u },
			{ "Play_freezeDrone_impact", 2983793816u },
			{ "Play_freezeDrone_chargeup", 3173663717u },
			{ "Play_GG_CopyCatDrone_PreFire", 3533225328u },
			{ "Play_GG_CopyCatDrone_Scan", 3614885158u },
			{ "Stop_GG_CopyCatDrone_Idle", 3744856625u },
			{ "Play_GG_CopyCatDrone_Idle", 3866267603u },
			{ "Stop_env_artifactworld_waterfall_loop", 1939913642u },
			{ "Play_env_artifactworld_waterfall_loop", 2147820956u },
			{ "Play_AMB_zone_artifactWorld01", 3295766357u },
			{ "Play_AMB_zone_artifactWorld02", 3295766358u },
			{ "Play_AMB_zone_artifactWorld03", 3295766359u },
			{ "Play_GG_HaulerDrone_Release", 376702624u },
			{ "Play_GG_HaulerDrone_Beam", 656592548u },
			{ "Stop_GG_HaulerDrone_Propellers", 1128554187u },
			{ "Play_GG_HaulerDrone_Grab", 1561261715u },
			{ "Stop_GG_HaulerDrone_Beam", 1906291938u },
			{ "Play_GG_HaulerDrone_Propellers", 4212909193u },
			{ "Play_MULT_m1_sawblade_stop", 252608982u },
			{ "Play_MULT_shift_turnSqueal", 317428472u },
			{ "Play_MULT_m1_sawblade_active_loop", 368776509u },
			{ "Play_MULT_shift_end", 837713779u },
			{ "Play_MULT_m1_grenade_launcher_shoot", 844837473u },
			{ "Play_MULT_R_variant_activate", 943999695u },
			{ "Play_MULT_m1_smg_shoot", 1162985099u },
			{ "Play_MULT_shift_hit", 1393096435u },
			{ "Stop_MULT_m1_sawblade_impact_loop", 1522301903u },
			{ "Play_MULT_m1_sawblade_impact_loop", 1630218497u },
			{ "Play_MULT_m2_aim", 1632759044u },
			{ "Play_MULT_R_variant_end", 1674327467u },
			{ "Play_MULT_m1_grenade_launcher_beep", 1882452288u },
			{ "Stop_MULT_m1_sawblade_active_loop", 1895482407u },
			{ "Play_MULT_m1_snipe_charge", 1908474992u },
			{ "Play_MULT_m2_throw", 2075679355u },
			{ "Stop_MULT_shift_active_loop", 2157922517u },
			{ "Play_MULT_m1_snipe_shoot", 2172180833u },
			{ "Stop_MULT_move_loop", 2239494943u },
			{ "Play_MULT_m1_sawblade_start", 2280547798u },
			{ "Play_MULT_move_loop", 2331366233u },
			{ "Play_MULT_m1_grenade_launcher_explo", 2695190594u },
			{ "Play_MULT_R_toSnipe", 2981295322u },
			{ "Play_MULT_shift_start", 3163992584u },
			{ "Play_MULT_crate_land", 3440819688u },
			{ "Play_MULT_R_toSMG", 3594476652u },
			{ "Stop_MULT_R_variant_loop", 3948480916u },
			{ "Play_MULT_m1_smg_impact", 4066695960u },
			{ "Play_MULT_m1_snipe_charge_end", 4185275926u },
			{ "Stop_elite_collective_balanceHealth_loop", 148144336u },
			{ "Play_elite_collective_balanceHealth_loop", 159413526u },
			{ "Stop_elite_collective_loop", 1818308237u },
			{ "Play_elite_collective_spawn", 2110791754u },
			{ "Play_elite_collective_pawnDetonate", 2119311431u },
			{ "Play_elite_collective_loop", 3197559043u },
			{ "Play_env_solusWeb_cube_move_start", 284827771u },
			{ "Play_AMB_zone_solusWeb", 2108608830u },
			{ "Play_env_solusWeb_cube_move_end", 2588529056u },
			{ "Play_env_solusWeb_cube_dissolve", 2614826452u },
			{ "Stop_AMB_zone_solusWeb", 3609509460u },
			{ "Play_GG_AMB_RepurposedCrater_TubeLoop", 132034407u },
			{ "Stop_GG_AMB_RepurposedCrater", 1203765970u },
			{ "Stop_GG_AMB_RepurposedCrater_TubeLoop", 1221574773u },
			{ "Play_GildedElite_MoneyPack_Drop", 461715332u },
			{ "Play_GildedElite_Pillar_Explosion", 767747389u },
			{ "Play_BeadedElite_Projectile_Growth", 952718998u },
			{ "Play_BeadedElite_Projectile_Spawn", 1148469684u },
			{ "Play_BeadedElite_Projectile_Chase_Launch", 2161592903u },
			{ "Stop_BeadedElite_Projectile_LP", 2233851509u },
			{ "Play_GildedElite_Pillar_Activation", 2642003408u },
			{ "Play_BeadedElite_Projectile_Prelaunch", 2742307495u },
			{ "Stop_BeadedElite_Tether_Spawn", 2932791431u },
			{ "Play_GildedElite_Pillar_Spawn", 2982519333u },
			{ "Play_BeadedElite_Tether_Spawn", 3508559645u },
			{ "Play_BeadedElite_Projectile_Explode", 3821678118u },
			{ "Play_GG_CHAR_DroneTech_Swarm_Activate", 28752191u },
			{ "Play_GG_CHAR_DroneTech_Teleport_Out", 52211715u },
			{ "Play_DroneTech_Lobby_Idle_Loop", 86790883u },
			{ "Play_DroneTech_Utility_Drone_Command", 110210772u },
			{ "Play_GG_CHAR_DroneTech_NanoBomb_Fire", 121743368u },
			{ "Play_GG_CHAR_DroneTech_Shield_DroneLoss", 221185558u },
			{ "Play_DroneTech_SecondaryAlt_DroneFlight_Impact", 233524710u },
			{ "Play_GG_CHAR_DroneTech_Shield_Fire_Green", 261396491u },
			{ "Play_GG_CHAR_DroneTech_Shield_break", 292073796u },
			{ "Play_GG_CHAR_DroneTech_Pickup_Loop", 293693352u },
			{ "Play_DroneTech_Special_Throw", 298338229u },
			{ "Play_Command_Flamethrower_End", 307637904u },
			{ "Play_GG_CHAR_DroneTech_CMD_Activate_Attack", 337974298u },
			{ "Play_Command_Healnova", 359058676u },
			{ "Play_GG_CHAR_DroneTech_Shield_Release", 391221294u },
			{ "Stop_DroneTech_SecondaryAlt_DroneFlight_Loop", 413370504u },
			{ "Play_GG_CHAR_DroneTech_Shield_Fire_Yellow", 420678938u },
			{ "Play_DroneTech_SecondaryAlt_GUI_Enter", 427416087u },
			{ "Stop_DroneTech_SecondaryAlt_GUI_Hold_Loop", 509882011u },
			{ "Stop_DroneTech_Utility_Glide_Loop", 521008334u },
			{ "Play_DroneTech_Utility_Glide_Loop", 541698792u },
			{ "Stop_DroneTech_Primary_Charge_Ready_Loop", 579681509u },
			{ "Play_Command_Drone_Missile", 598131371u },
			{ "Stop_GG_CHAR_DroneTech_Pickup_Loop", 617256610u },
			{ "Stop_GG_CHAR_DroneTech_ShieldLoop", 619434244u },
			{ "Play_DroneTech_Special_Projectile_Impact", 641222375u },
			{ "Play_DroneTech_UtilityAlt_Enter", 846249209u },
			{ "Play_GG_CHAR_DroneTech_Shield_Fire_Orange", 862912704u },
			{ "Play_GG_CHAR_DroneTech_NanoPistol_AOE", 870889992u },
			{ "Play_GG_CHAR_DroneTech_Shield_Idle", 891142789u },
			{ "Play_DroneTech_Special_Projectile_Charge", 926632677u },
			{ "Play_DroneTech_Lobby_Fidget1", 986225676u },
			{ "Play_DroneTech_Lobby_Fidget2", 986225679u },
			{ "Play_GG_CHAR_DroneTech_Sprint_Start", 986660430u },
			{ "Play_Command_Healnova_Hit", 1029117674u },
			{ "Play_Command_Drone_Fire", 1056958585u },
			{ "Play_DroneTech_Special_Windup", 1204322886u },
			{ "Play_DroneTech_Utility_Enter", 1236766874u },
			{ "Play_DroneTech_SpecialAlt_Projectile_Idle_Loop", 1238964875u },
			{ "Play_GG_CHAR_DroneTech_Shield_Fire_Red", 1267819743u },
			{ "Play_Command_Drone_Heal", 1289365279u },
			{ "Stop_DroneTech_Lobby_Idle_Loop", 1397638877u },
			{ "Play_DroneTech_Primary_Shoot_Charged_Full", 1397845942u },
			{ "Play_GG_CHAR_DroneTech_CMD_Activate_Recall", 1435406981u },
			{ "Play_DroneTech_Special_Projectile_Explosion", 1504122914u },
			{ "Play_DroneTech_SecondaryAlt_GUI_Lockon", 1551241569u },
			{ "Play_DroneTech_Utility_Recast", 1596181350u },
			{ "Play_DroneTech_Primary_Ricochet_Impact", 1702233774u },
			{ "Play_DroneTech_Primary_Shoot_Charged_Partial", 1825865556u },
			{ "Play_DroneTech_Secondary_Activate_Combat", 1969153732u },
			{ "Play_GG_CHAR_DroneTech_Shield_Activate", 2054420924u },
			{ "Stop_DroneTech_Special_Nanobug_Debuff_Loop", 2059482057u },
			{ "Play_GG_CHAR_DroneTech_NanoPistol_Impact", 2146012257u },
			{ "Play_DroneTech_Utility_Drone_Enable", 2173941144u },
			{ "Play_GG_CHAR_DroneTech_StrafeRun_Return", 2195618774u },
			{ "Stop_DroneTech_SpecialAlt_Projectile_Idle_Loop", 2234163373u },
			{ "Play_GG_CHAR_DroneTech_DistPatrol_Initiate", 2278544661u },
			{ "Play_DroneTech_SpecialAlt_Projectile_Explosion", 2288655785u },
			{ "Play_DroneTech_Primary_Shoot_Uncharged", 2304839497u },
			{ "Play_DroneTech_Secondary_Activate_Heal", 2595063642u },
			{ "Play_GG_CHAR_DroneTech_Sprint_Stop", 2606374574u },
			{ "Play_DroneTech_Special_Nanobug_Spawn", 2649840729u },
			{ "Play_DroneTech_Primary_Richochet_Start", 2677896948u },
			{ "Play_DroneTech_SpecialAlt_Projectile_Damaged", 2694410225u },
			{ "Play_DroneTech_SecondaryAlt_GUI_Hold_Loop", 2700488193u },
			{ "Play_DroneTech_SecondaryAlt_Activate", 2775665936u },
			{ "Play_DroneTech_Special_Nanobug_Hit", 2801471907u },
			{ "Play_Command_Junk_Explosion", 2931678594u },
			{ "Play_DroneTech_SecondaryAlt_DroneFlight_Loop", 2967431146u },
			{ "Play_GG_CHAR_DroneTech_Teleport_In", 2999090564u },
			{ "Stop_DroneTech_UtilityAlt_Charge_Loop", 3000396096u },
			{ "Play_DroneTech_SecondaryAlt_GUI_Exit", 3122547423u },
			{ "Play_GG_CHAR_DroneTech_NanoBomb_Explode", 3140104819u },
			{ "Play_grandParent_attack1_boulderSmall_impact", 3157690056u },
			{ "Play_DroneTech_Utility_Drone_Grab", 3176778591u },
			{ "Stop_GG_CHAR_DroneTech_Swarm_Loop", 3196425096u },
			{ "Play_GG_CHAR_DroneTech_NanoPistol_Fire", 3197675991u },
			{ "Play_DroneTech_Primary_Charge_Ready_Loop", 3202585915u },
			{ "Play_DroneTech_UtilityAlt_Projectile_Shoot", 3213167956u },
			{ "Play_DroneTech_Special_Nanobug_Debuff_Loop", 3238093119u },
			{ "Play_DroneTech_SpecialAlt_Projectile_Damaged_Max", 3240212022u },
			{ "Play_DroneTech_Utility_Drone_Disable", 3405812107u },
			{ "Play_GG_CHAR_DroneTech_Swarm_Prep", 3427484229u },
			{ "Play_Command_Flamethrower_Start", 3455458603u },
			{ "Play_DroneTech_SpecialAlt_Projectile_Death", 3476722146u },
			{ "Play_DroneTech_Secondary_Activate_Utility", 3582252028u },
			{ "Play_GG_CHAR_DroneTech_StrafeRun_Send", 3597684150u },
			{ "Play_DroneTech_UtilityAlt_Projectile_Death", 3688497251u },
			{ "Play_GG_CHAR_DroneTech_DistPatrol_TauntingLoop", 3690405746u },
			{ "Play_DroneTech_UtilityAlt_Projectile_Impact", 3743292401u },
			{ "Play_GG_CHAR_DroneTech_CMD_Activate_Heal", 3867423180u },
			{ "Play_DroneTech_SecondaryAlt_DroneFlight_Start", 3877169716u },
			{ "Play_GG_CHAR_DroneTech_Step", 3894383777u },
			{ "Play_GG_CHAR_DroneTech_Swarm_Loop", 3914897542u },
			{ "Play_DroneTech_Lobby_Intro", 3926305914u },
			{ "Play_DroneTech_Utility_Jump", 3992397276u },
			{ "Play_GG_CHAR_DroneTech_NanoBomb_Impact", 3998831298u },
			{ "Play_DroneTech_UtilityAlt_Charge_Loop", 4024050266u },
			{ "Play_GG_CHAR_DroneTech_PickUp_Initiate", 4065413403u },
			{ "Play_boss_falseson_skill4_primeDevastator_cast", 17501662u },
			{ "Play_boss_falseson_VO_groan", 50188013u },
			{ "Stop_boss_falseson_skill4_primeDevastator_orb_loop", 165647621u },
			{ "Play_boss_falseson_death", 211130168u },
			{ "Play_boss_falseson_skill2_lunarPillar_explode", 293099034u },
			{ "Play_boss_falseson_phaseTransition_jumpAway_final", 355013274u },
			{ "Play_boss_falseson_skill3_lunarRain_Warning", 723805134u },
			{ "Play_boss_falseson_step", 750538184u },
			{ "Play_boss_falseson_skill4_primeDevastator_lightning_buildup", 776610501u },
			{ "Play_boss_falseson_skill4_primeDevastator_orb_loop", 900009363u },
			{ "Play_boss_falseson_skill4_primeDevastator_orb_appear", 979629506u },
			{ "Stop_boss_falseson_skill1_column_loop", 1017842862u },
			{ "Play_boss_falseson_skill4_primeDevastator_impact", 1296012921u },
			{ "Play_boss_falseson_skill4_primeDevastator_lightning_tether_impact", 1301571599u },
			{ "Play_boss_falseson_skill2_lunarPillar_cast", 1396749426u },
			{ "Play_boss_falseson_skill3_lunarGaze_impact", 1445799919u },
			{ "Play_falseson_LunarGaze_EnergyWindup", 1623530759u },
			{ "Play_boss_falseson_phaseTransition_kneel", 1704077156u },
			{ "Play_boss_falseson_skill4_taintedOffering_cast", 1705963391u },
			{ "Play_boss_falseson_phaseTransition_land_impact", 1922243627u },
			{ "Play_boss_falseson_skill1_column_end", 1945649397u },
			{ "Play_boss_falseson_spawn", 1990184411u },
			{ "Play_boss_falseson_skill3plus_lunarGaze_active_loop", 2172333104u },
			{ "Play_boss_falseson_skill1_column_loop", 2281818144u },
			{ "Play_boss_falseson_skill3plus_lunarGaze_start", 2286155039u },
			{ "Play_boss_falseson_skill3_lunarGaze_start", 2325192591u },
			{ "Play_boss_falseson_sprint", 2348740350u },
			{ "Play_boss_falseson_VO_anger", 2536634195u },
			{ "Play_boss_falseson_skill3_lunarGaze_end", 2637052460u },
			{ "Play_boss_falseson_spike_explode", 2640355686u },
			{ "Play_boss_falseson_skill3_lunarGaze_active_loop", 2677915296u },
			{ "Play_boss_falseson_skill1_column_start", 2986681278u },
			{ "Play_boss_falseson_VO_defeat", 3209216803u },
			{ "Play_boss_falseson_spawn_preWhoosh", 3331568715u },
			{ "Play_boss_falseson_skill1_column_groundFX_tell", 3399356109u },
			{ "Play_boss_falseson_skill3_lunarGaze_chargeup", 3431934662u },
			{ "Play_boss_falseson_impact", 3514098288u },
			{ "Play_boss_falseson_VO_idle", 3528618132u },
			{ "Play_boss_falseson_skill1_swing_impact", 3543599818u },
			{ "Play_boss_falseson_skill3plus_lunarGaze_end", 3646205052u },
			{ "Play_boss_falseson_skill3_dash", 3658277703u },
			{ "Stop_boss_falseson_skill3_lunarGaze_active_loop", 3742053546u },
			{ "Play_boss_falseson_VO_spawn", 3768144587u },
			{ "Stop_boss_falseson_skill3plus_lunarGaze_active_loop", 3796171590u },
			{ "Play_boss_falseson_skill2_lunarPillar_land", 3867459404u },
			{ "Play_boss_falseson_phaseTransition_distantThunder", 4243149442u },
			{ "Play_bandit2_m1_reload_bullet", 452712768u },
			{ "Play_bandit2_m2_alt_throw", 595565201u },
			{ "Play_bandit2_shift_exit", 850833398u },
			{ "Play_bandit2_m1_reload_finish", 888917029u },
			{ "Play_bandit_shift_land", 1259710815u },
			{ "Play_bandit_shift_jump", 1325724668u },
			{ "Play_bandit2_R_fire", 1435016856u },
			{ "Play_bandit2_step_sprint", 1764271662u },
			{ "Play_bandit_M1_pump", 1853111450u },
			{ "Play_bandit_M2_shot", 1980580961u },
			{ "Play_bandit_M2_load", 2190546849u },
			{ "Play_bandit2_m2_impact", 2278422317u },
			{ "Play_bandit2_m1_rifle", 2347126876u },
			{ "Play_bandit_shift_end", 2770013503u },
			{ "Play_bandit2_shift_enter", 2967307668u },
			{ "Play_bandit_M1_shot", 3033552564u },
			{ "Play_bandit2_R_kill", 3719464252u },
			{ "Stop_bandit2_shift_loop", 4046424402u },
			{ "Play_bandit2_m2_slash", 4103120750u },
			{ "Play_bandit2_R_alt_kill", 4143438424u },
			{ "Play_bandit2_m1_shotgun", 4206201632u },
			{ "Stop_item_proc_lowerHealthHigherDamage_active_loop", 1766373184u },
			{ "Play_item_proc_lowerHealthHigherDamage_active_loop", 2806077218u },
			{ "Play_item_proc_lowerHealthHigherDamage_proc", 3144264115u },
			{ "Play_LuminousShot_Thunder", 16387259u },
			{ "Play_AntlerShield_Timeout", 28050097u },
			{ "Play_NoxiousThorns_Transfer", 106003447u },
			{ "Play_GrowthNectar_IncreaseBuffToTwo", 276801687u },
			{ "Play_GrowthNectar_IncreaseBuffToOne", 398335193u },
			{ "Play_WarpedEcho_SecondDamage", 629787596u },
			{ "Play_AntlerShield_Spawn", 732084197u },
			{ "Play_WarBonds_MissleExplosion", 1352833701u },
			{ "Play_WarpedEcho_Damage", 1715802820u },
			{ "Play_GrowthNectar_RemoveBuff", 1734526520u },
			{ "Play_AntlerShield_Pickup", 1898231492u },
			{ "Stop_Unstable_Trasnmitter_Shpere_Loop", 2088591195u },
			{ "Play_WarBonds_MissleImpact", 2306432654u },
			{ "Play_Item_PrayerBeads_Scrapped", 2524234915u },
			{ "Play_PrayerBeads_LevelUp", 2783770738u },
			{ "Play_GrowthNectar_IncreaseBuffToThree", 3022151461u },
			{ "Play_ChronicExpansion_OnBuffTimingOut", 3261203976u },
			{ "Play_Unstable_Transmitter_Explode", 3300713972u },
			{ "Play_Item_LongstandingSolitude", 3502697235u },
			{ "Stop_AntlerShield_Idle", 3655706880u },
			{ "Play_Unstable_Transmitter_Sphere_Loop", 3664227123u },
			{ "Play_GrowthNectar_FullBuff", 3668078139u },
			{ "Play_ChronicExpansion_ItemBuffGain", 3687004549u },
			{ "Play_WarBonds_MissleMovement", 3793304255u },
			{ "Play_LuminousShot_Explosion", 4051551568u },
			{ "Play_KnockbackFin_Knockup", 4105597920u },
			{ "Play_WarBonds_Start", 4212677471u },
			{ "Play_item_proc_TransferDebuffOnHit_enemy_loop", 249454490u },
			{ "Play_item_proc_TransferDebuffOnHit_pickup", 926762499u },
			{ "Stop_item_proc_TransferDebuffOnHit_loop", 1107572859u },
			{ "Stop_item_proc_TransferDebuffOnHit_enemy_loop", 1616229584u },
			{ "Play_item_proc_TransferDebuffOnHit_loop", 1957497669u },
			{ "Play_item_proc_TransferDebuffOnHit_applyToEnemy", 3512537690u },
			{ "Play_heretic_sprint_start", 19266142u },
			{ "Play_heretic_squawk", 48852143u },
			{ "Play_heretic_step", 303018737u },
			{ "Play_heretic_sprint_end", 789491861u },
			{ "Play_heretic_transform", 1223237669u },
			{ "Play_heretic_step_sprint", 3042543384u },
			{ "Play_OBJ_FalseSonCore_pulse", 1054642772u },
			{ "Stop_OBJ_FalseSonCore_loop", 2772482569u },
			{ "Play_OBJ_FalseSonCore_loop", 3437224379u },
			{ "Play_item_proc_negateAttack", 3006242687u },
			{ "Play_item_proc_teleportOnLowHealth", 784847973u },
			{ "Play_GG_StageEvent_AccessCodes_CorrectActivation", 28416811u },
			{ "Play_GG_Stages_HiddenRealm_CoinSlot", 3145990662u },
			{ "Play_GG_StageEvent_AccessCodes_WrongActivation", 3368533290u },
			{ "Play_workerUnit_movement_loop", 8875247u },
			{ "Stop_GG_WorkerUnit_Idle", 31713514u },
			{ "Play_workerUnit_idle_loop", 196725384u },
			{ "Play_GG_MONSTER_WorkerUnit_Drill", 412478580u },
			{ "Play_GG_ExtractorUnit_Extract_Start_01", 454872214u },
			{ "Stop_workerUnit_idle_loop", 1159668694u },
			{ "Play_workerUnit_attack_drill_dash", 1200821866u },
			{ "Play_workerUnit_attack_drill_windup", 1606427003u },
			{ "Play_GG_WorkerUnit_Idle", 2210580636u },
			{ "Stop_GG_WorkerUnit_Mine_Movement_LP", 2372428382u },
			{ "Stop_workerUnit_movement_loop", 3041730945u },
			{ "Play_GG_WorkerUnit_Bark", 3599998584u },
			{ "Play_GG_MONSTER_WorkerUnit_PlantMine", 3746517121u },
			{ "Play_GG_MONSTER_WorkerUnit_Death", 4236198749u },
			{ "Play_AMB_Nest", 345740763u },
			{ "Stop_AMB_Nest", 2999831937u },
			{ "Play_item_use_shieldBooster_shatter", 1247435225u },
			{ "Play_item_use_shieldBooster_regen", 3892664341u },
			{ "Play_moonBrother_phase4_itemSuck_stealBackSingle", 248987608u },
			{ "Stop_moonBrother_orb_slam_orbLoop", 372458675u },
			{ "Play_moonBrother_m1_laser_shoot", 625852214u },
			{ "Play_moonBrother_idle_VO", 1249692364u },
			{ "Play_moonBrother_death", 1391457286u },
			{ "Play_moonBrother_phaseJump_kneel", 1438626783u },
			{ "Stop_moonBrother_phase4_itemSuck_loop", 1453289600u },
			{ "Play_moonBrother_phaseJump_shockwave_single", 1473186892u },
			{ "Play_moonBrother_swing_vertical", 1525938463u },
			{ "Play_moonBrother_step", 1687759686u },
			{ "Play_moonBrother_phase4_itemSuck_start", 1717433628u },
			{ "Play_moonBrother_m1_laser_impact", 1753379823u },
			{ "Play_moonBrother_blueWall_explode", 1820467490u },
			{ "Play_moonBrother_firePillar_loop", 1901482441u },
			{ "Play_moonBrother_blueWall_active_loop", 1912330522u },
			{ "Play_moonBrother_orb_slam_pre", 2003858883u },
			{ "Stop_moonBrother_blueWall_active_loop", 2027020888u },
			{ "Stop_moonBrother_phaseJump_shockwave_loop", 2057891728u },
			{ "Play_moonBrother_phase4_transition", 2158807115u },
			{ "Stop_moonBrother_firePillar_loop", 2297144163u },
			{ "Play_moonBrother_phase4_itemSuck_takeSingle", 2333254273u },
			{ "Play_moonBrother_dash", 2471009076u },
			{ "Play_moonBrother_phaseJump_land_preWhoosh", 2555746427u },
			{ "Play_moonBrother_orb_slam_orbLoop", 2645733969u },
			{ "Play_acrid_m2_bite_hit", 2714436782u },
			{ "Play_moonBrother_phaseJump_jumpAway", 2778579998u },
			{ "Stop_moonBrother_swing_horizontal", 2889455687u },
			{ "Play_moonBrother_orb_slam_impact", 2897735846u },
			{ "Stop_moonBrother_swing_vertical", 2914306101u },
			{ "Play_moonBrother_spawn_preWhoosh", 3276170341u },
			{ "Play_moonBrother_phaseJump_shockwave_loop", 3289985618u },
			{ "Play_moonBrother_sprint", 3298429148u },
			{ "Play_moonBrother_blueWall_slam_start", 3502735825u },
			{ "Play_moonBrother_swing_horizontal", 3781745233u },
			{ "Play_moonBrother_phaseJump_land_impact", 3884053696u },
			{ "Play_moonBrother_phase4_step", 3907097568u },
			{ "Play_moonBrother_phase4_itemSuck_returnSingle", 3958297650u },
			{ "Play_moonBrother_phase4_itemSuck_end", 4243565055u },
			{ "Play_moonBrother_impact", 4276506230u },
			{ "Play_AMB_zone_lemurianTemple", 3331788076u },
			{ "Play_obj_chefWok_item1_place", 181915450u },
			{ "Play_obj_chefWok_cook_complete", 905238138u },
			{ "Play_obj_chefWok_item2_place", 1144347929u },
			{ "Play_obj_chefWok_item3_place", 1179206912u },
			{ "Play_obj_chefsWok_idle_loop", 2164207818u },
			{ "Play_obj_chefWok_cook_all", 3870204216u },
			{ "Play_item_proc_barrierOnCooldown_gulp", 127801345u },
			{ "Play_OBJ_MealPrep_Menu_Open", 370378857u },
			{ "Play_OBJ_MealPrep_Idle_VO", 894510593u },
			{ "Play_OBJ_MealPrep_Cook", 1211630715u },
			{ "Play_OBJ_MealPrep_Knife_Sharpen", 2943995446u },
			{ "Play_AMB_zone_habitatFall", 1829165784u },
			{ "Play_item_proc_increaseDamageMultiKill", 1802378181u },
			{ "Play_halcyonite_impact", 33305611u },
			{ "Play_halcyonite_skill3_loop", 67562408u },
			{ "Play_halcyonite_move_loop", 480080479u },
			{ "Play_halcyonite_skill1_swing", 936256326u },
			{ "Play_halcyonite_skill3_start", 970916454u },
			{ "Play_halcyonite_idle_loop", 983867080u },
			{ "Play_halcyonite_skill1_thrust", 1083715706u },
			{ "Play_halcyonite_skill1_chargeup", 1290182503u },
			{ "Play_halcyonite_VO_alert", 1322088115u },
			{ "Stop_halcyonite_idle_loop", 1332844866u },
			{ "Stop_halcyonite_move_loop", 2962578225u },
			{ "Stop_halcyonite_skill3_loop", 3070087286u },
			{ "Play_halcyonite_skill3_end", 3079505645u },
			{ "Play_halcyonite_skill2_shoot", 3274455546u },
			{ "Play_halcyonite_death", 3525343637u },
			{ "Play_halcyonite_spawn", 3688151658u },
			{ "Play_halcyonite_skill2_chargeup", 3979952754u },
			{ "Play_item_proc_sauteedWorms_death", 1730197471u },
			{ "Play_item_proc_sauteedWorms_damage_enemy", 1951791297u },
			{ "Stop_item_proc_sauteedWorms_idle_loop", 2460105652u },
			{ "Play_item_proc_sauteedWorms_spawn", 3976760392u },
			{ "Play_item_proc_sauteedWorms_idle_roar", 3983594000u },
			{ "Play_item_proc_sauteedWorms_idle_loop", 4216555070u },
			{ "Play_GG_JunkDrone_BombsAway", 554881945u },
			{ "Play_GG_Boss_SolusAmalgamator_Part_Detach", 1291686937u },
			{ "Play_GG_JunkDrone_EngineLoop", 3904487548u },
			{ "Play_GG_JunkDrone_BombExplode", 4130919571u },
			{ "Stop_GG_JunkDrone_EngineLoop", 4251328746u },
			{ "Stop_env_lakes_jumppad_loop", 417186615u },
			{ "Stop_env_lakesNight_waterfall_loop", 909637674u },
			{ "Play_env_lakes_waterfall_loop", 1015031338u },
			{ "Play_env_lakes_jumppad_launch", 1567260962u },
			{ "Play_env_lakesNight_waterfall_loop", 2194652352u },
			{ "Play_env_lakes_jumppad_loop", 3135402281u },
			{ "Play_AMB_zone_lakesNight", 3151035464u },
			{ "Stop_env_lakes_waterfall_loop", 3880166920u },
			{ "Play_item_use_healAndRevive_activate", 36402680u },
			{ "Play_item_use_healAndRevive_healOrb_gather", 453060054u },
			{ "Play_item_use_healAndRevive_healPlantGrow", 1261250865u },
			{ "Play_item_use_healAndRevive_reviveTreeGrow", 2695957161u },
			{ "Play_GG_BombardmentDrone_Fire", 138309679u },
			{ "Play_GG_BombardmentDrone_PreFire", 1154403162u },
			{ "Play_GG_BombardmentDrone_Idle", 2296024645u },
			{ "Stop_GG_BombardmentDrone_Idle", 2386666003u },
			{ "Play_captain_drone_quick_move", 8118127u },
			{ "Play_captain_m2_tazer_impact", 58834266u },
			{ "Play_captain_R_aim", 364785367u },
			{ "Play_captain_m1_shootWide", 532604026u },
			{ "Play_captain_shift_end", 803261989u },
			{ "Play_captain_m2_tazer_shoot", 832597929u },
			{ "Play_captain_drone_idle_VO", 1028355892u },
			{ "Play_captain_R_aiming_loop", 1040620982u },
			{ "Play_captain_shift_preImpact", 1069989355u },
			{ "Play_captain_sprint_stop", 1094493224u },
			{ "Play_captain_step", 1226612947u },
			{ "Play_captain_m1_shotgun_shootTight", 1348536996u },
			{ "Play_captain_utility_variant_impact", 1357225738u },
			{ "Play_captain_R_turret_build", 1359756347u },
			{ "Play_captain_R_confirmLocation", 1531948689u },
			{ "Play_captain_m2_tazer_bounce", 1888136956u },
			{ "Play_captain_shift_start", 2113266862u },
			{ "Play_captain_shift_confirm", 2140775262u },
			{ "Play_captain_m1_reload", 2226849933u },
			{ "Stop_captain_m1_shotgun_charge_loop", 2353287746u },
			{ "Play_captain_utility_variant_laser_loop", 2451237826u },
			{ "Play_captain_m1_shotgun_charge_loop", 2453063032u },
			{ "Play_captain_m1_chargeStart", 2544146878u },
			{ "Play_captain_step_sprint", 2831720022u },
			{ "Stop_captain_R_aiming_loop", 2857041920u },
			{ "Play_captain_m2_tazed_loop", 3117407908u },
			{ "Stop_captain_m2_tazed_loop", 3177313418u },
			{ "Play_captain_shift_impact", 3269630552u },
			{ "Stop_captain_utility_variant_laser_loop", 3363507140u },
			{ "Play_captain_sprint_start", 3430012852u },
			{ "Play_captain_utility_variant_preImpact", 3461917085u },
			{ "Stop_captain_shift_active_loop", 3521385491u },
			{ "Play_captain_m1_hit", 3819278833u },
			{ "Play_captain_R_impact", 3902637834u },
			{ "Play_captain_shift_active_loop", 3941125189u },
			{ "Play_captain_drone_zap", 3992615829u },
			{ "Stop_roboBall_attack2_mini_active_loop", 222128300u },
			{ "Play_roboBall_death_start", 227016555u },
			{ "Play_roboBall_death_final_explo", 353938708u },
			{ "Play_roboBall_attack1_explode", 414673691u },
			{ "Stop_roboBall_idle_loop", 457362181u },
			{ "Stop_roboBall_attack1_flightLoop", 512740862u },
			{ "Play_roboBall_attack1_flightLoop", 926946976u },
			{ "Play_roboBall_attack3_gravityBump_explo", 1532407255u },
			{ "Play_roboBall_attack2_mini_active_loop", 1625935406u },
			{ "Play_roboBall_spawn", 2233082961u },
			{ "Play_roboBall_attack1_charge", 2356432344u },
			{ "Play_roboBall_attack1_shoot", 2453128921u },
			{ "Play_roboBall_idle_loop", 2608942291u },
			{ "Play_roboBall_idle_VO", 2623497928u },
			{ "Play_roboBall_takehit", 2898574144u },
			{ "Play_roboBall_attack2_mini_spawn", 3103470308u },
			{ "Play_roboBall_attack2_createMini", 3305531308u },
			{ "Play_roboBall_attack2_mini_laser_stop", 3542004415u },
			{ "Play_roboBall_attack2_mini_death", 3567434931u },
			{ "Play_roboBall_death_small_explo", 3826098169u },
			{ "Play_roboBall_attack3_gravityBump_charge", 4148122655u },
			{ "Play_roboBall_attack2_mini_laser_start", 4267852861u },
			{ "Play_Boss_SolusWing_VultureDeath", 208872513u },
			{ "Stop_GG_BOSS_SolusWing_ExpandingLaser_Loop", 295767447u },
			{ "Stop_Boss_SolusWing_LaserBurstTravelLoop", 309955827u },
			{ "Play_GG_BOSS_SolusWing_Phase3", 529356593u },
			{ "Stop_Boss_SolusWing_LaserMuzzle_LP", 626440913u },
			{ "Play_SolusWing_Gravpulse_Flight_Loop", 663787247u },
			{ "Play_SolusWing_OverheatLaser_Player_Hit", 713901113u },
			{ "Play_Boss_SolusWing_WakeUp", 734640485u },
			{ "Play_Boss_SolusWing_ChargeLaserBurst", 849419511u },
			{ "Play_SolusWing_LaserGrid_End", 858616267u },
			{ "Play_SolusWing_OverheatLaser_Beam_Loop", 971814694u },
			{ "Play_GG_BOSS_SolusWing_ShockField_Fire", 1018622362u },
			{ "Play_Boss_SolusWing_LaserMuzzle_LP", 1079607691u },
			{ "Play_Boss_SolusWing_SecurityLaserLoop", 1158322127u },
			{ "Play_Boss_SolusWing_SecurityLaserCharge", 1234665725u },
			{ "Stop_SolusWing_Glitchphase_Flight_Loop", 1327167324u },
			{ "Play_Boss_SolusWing_BreakAway", 1359714765u },
			{ "Stop_SolusWing_Gravpulse_Flight_Loop", 1489147717u },
			{ "Play_Boss_SolusWing_SummonVultureAllies", 1503286760u },
			{ "Play_SolusWing_Weakpoint_Destroy", 1648930901u },
			{ "Play_SolusWing_LaserGrid_Start", 1718106800u },
			{ "Play_SolusWing_Overheat_Amb_Loop", 1848248414u },
			{ "Play_Boss_SolusWing_TakeFlight", 1968752221u },
			{ "Play_Boss_SolusWing_Destroyed", 1980314671u },
			{ "Play_SolusWing_LaserGrid_Loop", 2059772278u },
			{ "Play_SolusWing_Heat_damageLoop", 2157385232u },
			{ "Play_SolusWing_Gravpulse_Windup", 2206567749u },
			{ "Play_GG_SOLUSWING_VultureGroupSpawn", 2325708734u },
			{ "Play_GG_BOSS_SolusWing_ExpandingLaser_Loop", 2331297633u },
			{ "Play_Boss_SolusWing_Exhaust_Destroy", 2438534347u },
			{ "Play_GG_BOSS_SolusWing_SuppressionLaser_AOE", 2459048107u },
			{ "Play_GG_SOLUSWING_DownedState", 2539825665u },
			{ "Play_Boss_SolusWing_Exhaust_Open", 2612220519u },
			{ "Play_SolusWing_OverheatLaser_Beam_Shoot", 2660641273u },
			{ "Play_Boss_SolusWing_LaserBurstImpactExplosion", 2672613818u },
			{ "Play_GG_BOSS_SolusWing_ShockField_Loop", 2723350280u },
			{ "Play_Boss_SolusWing_ChargeMovingLaser", 2759894025u },
			{ "Stop_GG_BOSS_SolusWing_SuppressionLaserLoop", 2790412131u },
			{ "Play_SolusWing_OverheatLaser_Windup", 2897563445u },
			{ "Stop_SolusWing_OverheatLaser_Beam_Loop", 2898232804u },
			{ "Play_Boss_SolusWing_Exhaust_ActiveLoop", 2916942435u },
			{ "Play_SolusWing_Glitchphase_Enter", 2961352883u },
			{ "Stop_Boss_SolusWing_Exhaust_ActiveLoop", 3047408365u },
			{ "Play_Boss_SolusWing_LaserBurstTravelLoop", 3066434957u },
			{ "Stop_SolusWing_Heat_damageLoop", 3131539118u },
			{ "Play_SolusWing_LaserGrid_Player_Hit", 3226333001u },
			{ "Play_Boss_SolusWing_Intro", 3295638628u },
			{ "Play_Boss_SolusWing_VultureSpawn", 3329861582u },
			{ "Play_GG_BOSS_SolusWing_ExpandingLaser_PreFire", 3394877030u },
			{ "Stop_GG_BOSS_SolusWing_ShockField_Loop", 3443873014u },
			{ "Stop_SolusWing_LaserGrid_Loop", 3446882212u },
			{ "Stop_Boss_SolusWing_LaserHit_LP", 3534124279u },
			{ "Stop_Boss_SolusWing_SecurityLaserLoop", 3547169553u },
			{ "Play_Boss_SolusWing_LaserMuzzle_Charge", 3651080827u },
			{ "Play_SolusWing_Gravpulse_Blast_Thin", 3662029684u },
			{ "Play_SolusWing_Glitchphase_Flight_Loop", 3699403154u },
			{ "Play_GG_BOSS_SolusWing_ExpandingLaser_Fire", 3719684667u },
			{ "Play_Boss_SolusWing_ChargeSecurityLaser", 3730219517u },
			{ "Stop_SolusWing_Overheat_Amb_Loop", 3774238836u },
			{ "Play_GG_BOSS_SolusWing_SuppressionLaserLoop", 4086027793u },
			{ "Play_Boss_SolusWing_LaserHit_LP", 4100635557u },
			{ "Play_SolusWing_LaserGrid_Windup", 4142703877u },
			{ "Play_Boss_SolusWing_FireLaserBurst", 4238703283u },
			{ "Play_SolusWing_Gravpulse_Blast_Large", 4263824602u },
			{ "Play_item_use_groundEnemies_hit", 3669106083u },
			{ "Stop_cleanUpDrone_vacuum_loop", 349753953u },
			{ "Play_cleanUpDrone_vacuum_end", 960223316u },
			{ "Play_GG_CleanupDrone_Vacuum_AOE", 991069641u },
			{ "Play_GG_CleanupDrone_DropHealingOrb", 1529989338u },
			{ "Play_cleanUpDrone_vacuum_loop", 1577185991u },
			{ "Stop_GG_CleanupDrone_LP", 2021077682u },
			{ "Play_GG_CleanupDrone_LP", 3522220312u },
			{ "Play_cleanUpDrone_vacuum_start", 3848841159u },
			{ "Stop_acrid_shift_puddle_loop", 272804744u },
			{ "Play_acrid_shift_land", 320622162u },
			{ "Play_acrid_step", 372958860u },
			{ "Play_acrid_m2_bite_shoot", 456215952u },
			{ "Play_acrid_shift_fly_loop", 642600073u },
			{ "Play_acrid_m2_fly_loop", 644013190u },
			{ "Stop_acrid_shift_fly_loop", 688824855u },
			{ "Play_acrid_sprint_start", 801642819u },
			{ "Stop_acrid_m2_fly_loop", 973475236u },
			{ "Play_acrid_m2_shoot", 999289595u },
			{ "Play_acrid_R_infect", 1007919396u },
			{ "Play_acrid_R_shoot", 1160201708u },
			{ "Play_acrid_shift_puddle_loop", 1556265730u },
			{ "Play_acrid_m1_bigSlash", 1656148530u },
			{ "Stop_acrid_R_fly_loop", 1700199421u },
			{ "Play_acrid_m1_slash", 1719910342u },
			{ "Play_acrid_shift_jump", 1749522733u },
			{ "Play_acrid_m1_hit", 1822928838u },
			{ "Play_acrid_R_fly_loop", 1915769387u },
			{ "Play_acrid_step_sprint", 2575316715u },
			{ "Play_acrid_m2_explode", 2736075181u },
			{ "Play_acrid_step_sprint_hand", 3560327381u },
			{ "Play_acrid_sprint_stop", 3680364993u },
			{ "Play_GG_RechargeDrone_ShieldDroneBeam", 557848877u },
			{ "Stop_GG_RechargeDrone_Idle", 1777743501u },
			{ "Play_GG_RechargeDrone_BeamFire", 1936223588u },
			{ "Stop_GG_RechargeDrone_ShieldDroneBeam", 3413797947u },
			{ "Play_GG_RechargeDrone_Idle", 3734072607u },
			{ "Stop_GG_RechargeDrone_HealDroneBeam", 3866519468u },
			{ "Play_GG_RechargeDrone_HealDroneBeam", 4237496730u },
			{ "Stop_SolusWing_Pod_Coolant_Beam_Loop", 199390947u },
			{ "Play_SolusWing_Pod_Coolant_Beam_Loop", 517282553u },
			{ "Play_SolusWing_Pod_Emerge", 696441831u },
			{ "Play_SolusWing_Pod_Coolant_Start", 774152871u },
			{ "Play_SolusWing_Death_Explode_Smalls", 853461547u },
			{ "Stop_SolusWing_Pod_Coolant_Broken_Loop", 891521861u },
			{ "Play_GG_AMB_SolutionalHaunt_DropTube", 1124395460u },
			{ "Play_SolusWing_Pod_Coolant_Broken_Loop", 1236877347u },
			{ "Play_SolusWing_Intro_02_EyeOn", 1388341170u },
			{ "Play_SolusWing_Pod_Death", 1447750598u },
			{ "Play_SolusWing_Pod_Coolant_Broken_Start", 1579422595u },
			{ "Play_SolusWing_Intro_03_Door_Slam", 1769719027u },
			{ "Play_GG_AMB_SolutionalHaunt_TubeFall_End", 1856124878u },
			{ "Play_SolusWing_Death_Start", 2008497403u },
			{ "Play_GG_AMB_SolutionalHaunt_GlassCannisterBreak", 2021048777u },
			{ "Play_SolusWing_Pod_Heating_Idle_Loop", 2249025152u },
			{ "Play_SolusWing_Pod_Heat_Pulse", 2564866576u },
			{ "Play_SolusWing_Intro_DoorOpen", 2598547893u },
			{ "Play_GG_AMB_SolutionalHaunt_BED", 2829562850u },
			{ "Play_GG_AMB_SolutonalHaunt_WaterFall", 3095448324u },
			{ "Play_SolusWing_Intro_01_Start", 3135122965u },
			{ "Stop_GG_AMB_SolutionalHaunt", 3643969996u },
			{ "Stop_SolusWing_Pod_Heating_Idle_Loop", 3738543102u },
			{ "Play_SolusWing_Pod_Retract", 4255117999u },
			{ "Play_env_moon_planet_destroying_loop", 56354104u },
			{ "Play_env_moon_shuttle_engineIdle_loop", 979450395u },
			{ "Stop_env_moon_planet_destroying_loop", 2966767678u },
			{ "Play_AMB_zone_moon", 3075336325u },
			{ "Stop_env_moon_shuttle_engineIdle_loop", 3908448765u },
			{ "Play_item_use_droneDropDynamite_loop", 522845095u },
			{ "Stop_item_use_droneDropDynamite_loop", 1050775089u },
			{ "Play_item_use_droneDropDynamite_explosion", 2488198002u },
			{ "Play_item_use_droneDropDynamite_spawn", 2828200462u },
			{ "Stop_railgunner_R_gun_rebooting_loop", 65047742u },
			{ "Play_railgunner_R_gun_swap", 89410791u },
			{ "Play_railgunner_shift_chargeUp", 277844730u },
			{ "Play_railgunner_R_preFire", 639561466u },
			{ "Stop_railgunner_shift_slowField_loop", 648116725u },
			{ "Play_railgunner_R_gun_ready", 747189219u },
			{ "Play_railgunner_R_gun_rebooting_loop", 752268156u },
			{ "Play_railgunner_step", 909005004u },
			{ "Play_railgunner_step_sprint", 938334763u },
			{ "Play_railgunner_shift_slowField_loop", 948974347u },
			{ "Play_railgunner_R_gun_rebooted", 1110075238u },
			{ "Play_railgunner_m2_alt_fire", 1123745322u },
			{ "Play_railgunner_m2_scope_loop", 1156887411u },
			{ "Play_railgunner_m2_reload_fail", 1165349380u },
			{ "Play_railgunner_R_gun_chargeUp", 1433734405u },
			{ "Play_railgunner_m2_fire", 1503231250u },
			{ "Play_railgunner_m2_reload_basic", 1519777290u },
			{ "Play_railgunner_shift_explo", 1744190021u },
			{ "Play_railgunner_m2_reload_pass", 2134590459u },
			{ "Play_railgunner_R_fire", 2208219471u },
			{ "Play_railgunner_m2_scope_out", 2323813871u },
			{ "Play_railgunner_R_alt_fire", 2346534403u },
			{ "Play_railgunner_shift_land", 2500532114u },
			{ "Play_railgunner_shift_throw", 2700781839u },
			{ "Stop_railgunner_R_gun_timer_loop", 2705723860u },
			{ "Play_railgunner_R_gun_timer_loop", 3062488286u },
			{ "Play_railgunner_shift_alt_explo", 3210684213u },
			{ "Play_railgunner_m2_scope_in", 3426860520u },
			{ "Play_railgunner_m1_fire", 3663213371u },
			{ "Play_railgunner_selectScreen_idle", 3805369911u },
			{ "Play_railgunner_m2_headshot", 4207848420u },
			{ "Stop_railgunner_m2_scope_loop", 4230781297u },
			{ "Play_Chef_Secondary_IceBox_Impact", 20919017u },
			{ "Play_chef_skill1_boosted_shoot", 278018054u },
			{ "Play_Chef_Utility_OilSpill_LaunchBoosted", 289324272u },
			{ "Play_chef_skill2_boosted_start", 519370328u },
			{ "Stop_chef_skill2_loop", 554429433u },
			{ "Stop_chef_skill3_boosted_active_loop", 625060188u },
			{ "Play_chef_skill2_boosted_end", 649673859u },
			{ "Stop_chef_skill2_boosted_loop", 712367108u },
			{ "Play_chef_skill3_charge2", 792061316u },
			{ "Play_chef_skill3_charge3", 792061317u },
			{ "Play_chef_skill3_charge1", 792061319u },
			{ "Play_chef_skill4_shoot", 835788848u },
			{ "Stop_chef_move_loop", 906699361u },
			{ "Stop_chef_skill3_charge_loop", 918882745u },
			{ "Play_Chef_Secondary_IceBox_Boosted_Fire", 1039699530u },
			{ "Play_Chef_OilSpill_ChefSpinning_Loop", 1143892757u },
			{ "Play_chef_skill4_flame_aoe_off", 1162690346u },
			{ "Play_chef_skill4_activate", 1207058864u },
			{ "Play_chef_skill1_shoot", 1210132285u },
			{ "Play_Chef_Utility_OilSpill_ImpactBoosted", 1406405933u },
			{ "Play_chef_skill2_end", 1456801428u },
			{ "Play_chef_skill1_flight_loop", 1618966139u },
			{ "Play_Chef_Secondary_IceBox_Boosted_Impact", 1660189104u },
			{ "Stop_Chef_OilSpill_ChefSpinning_Loop", 1684571911u },
			{ "Play_chef_skill2_start", 1749073671u },
			{ "Play_chef_skill4_boost_activate", 1789550620u },
			{ "Play_chef_skill1_return", 2009736922u },
			{ "Play_chef_skill3_charge_start", 2165778643u },
			{ "Stop_chef_selectScreen_idle", 2199242400u },
			{ "Play_chef_skill1_hit", 2316218703u },
			{ "Play_chef_selectScreen_begin", 2411765227u },
			{ "Play_chef_skill3_boosted_active_loop", 2440803366u },
			{ "Stop_chef_skill4_flame_aoe_active_loop", 2583043324u },
			{ "Play_chef_skill4_impact", 2708165197u },
			{ "Play_chef_skill2_boosted_fireball_explode", 2735392377u },
			{ "Stop_chef_servo_loop", 2821690459u },
			{ "Play_chef_skill2_boosted_fireball_shoot", 2844162727u },
			{ "Play_chef_skill2_boosted_fireball_flight_loop", 2878509205u },
			{ "Play_chef_skill3_boosted_hit", 3109556778u },
			{ "Play_chef_selectScreen_idle", 3180211794u },
			{ "Play_chef_servo_loop", 3274525689u },
			{ "Stop_chef_skill2_boosted_fireball_flight_loop", 3297240927u },
			{ "Play_chef_skill3_hit", 3351165325u },
			{ "Play_chef_skill4_flame_aoe_on", 3370484492u },
			{ "Play_chef_skill1_return_hit", 3455773660u },
			{ "Play_Chef_Secondary_IceBox_Fire", 3469726703u },
			{ "Stop_chef_skill3_active_loop", 3673317627u },
			{ "Play_chef_skill3_start", 3822040738u },
			{ "Play_Chef_Secondary_IceBox_Blizzard", 3914543017u },
			{ "Play_chef_skill3_end", 3936557809u },
			{ "Play_chef_move_loop", 4027595243u },
			{ "Stop_chef_selectScreen_motor_loop", 4120786162u },
			{ "Play_chef_skill4_flame_aoe_active_loop", 4131820326u },
			{ "Stop_chef_skill1_flight_loop", 4222257129u },
			{ "Play_obj_portalShaping_activate", 3169369792u },
			{ "Play_AMB_zone_wisp_graveyard", 751162865u },
			{ "Play_Item_FriendUnit_Launch", 287840054u },
			{ "Play_Item_FriendUnit_VO_Happy_Pet", 943153679u },
			{ "Play_Item_FriendUnit_Aura_End", 990689220u },
			{ "Stop_Item_FriendUnit_VO_Rolling_Slow_Loop", 1121067027u },
			{ "Stop_Item_FriendUnit_VO_Rolling_Med_Loop", 1195152018u },
			{ "Play_Item_FriendUnit_Start", 1294578921u },
			{ "Play_Item_FriendUnit_Rolling_Loop", 1334813987u },
			{ "Play_Item_FriendUnit_VO_Hurt", 1790229798u },
			{ "Stop_Item_FriendUnit_VO_Rolling_Fast_Loop", 2090797776u },
			{ "Play_Item_FriendUnit_Hit_TooLarge", 2108724986u },
			{ "Play_Item_FriendUnit_VO_Rolling_Med_Loop", 2129704508u },
			{ "Play_Item_FriendUnit_VO_Player_Bump", 2150182849u },
			{ "Play_Item_FriendUnit_VO_Attack_Med", 2229031934u },
			{ "Play_Item_FriendUnit_Jump", 2234254267u },
			{ "Play_Item_FriendUnit_VO_Singing", 2338604296u },
			{ "Play_Item_FriendUnit_VO_Attack_Long", 2414244022u },
			{ "Play_Item_FriendUnit_VO_Passive", 2480615740u },
			{ "Play_Item_FriendUnit_VO_Rolling_Fast_Loop", 2636883894u },
			{ "Play_Item_FriendUnit_VO_Rolling_Slow_Loop", 2831929133u },
			{ "Stop_Item_FriendUnit_Rolling_Loop", 3065755805u },
			{ "Play_Item_FriendUnit_VO_Whistle", 3175186473u },
			{ "Stop_Item_FriendUnit_Aura_Loop", 3648685505u },
			{ "Play_Item_FriendUnit_Aura_Loop", 3922859191u },
			{ "Play_Item_FriendUnit_VO_Death", 4050209621u },
			{ "Play_item_proc_boostAllStats", 2850283152u },
			{ "Play_lunar_wisp_attack1_windLoop", 56999587u },
			{ "Play_lunar_wisp_attack2_windUp", 151413227u },
			{ "Play_lunar_wisp_idle_VO", 304696105u },
			{ "Play_lunar_wisp_attack2_aliveLoop", 452148407u },
			{ "Play_lunar_wisp_attack1_windUp", 495897210u },
			{ "Stop_lunar_wisp_attack2_aliveLoop", 739918417u },
			{ "Stop_lunar_wisp_idle_loop", 1502032816u },
			{ "Play_lunar_wisp_attack1_shoot_bullet", 1858233191u },
			{ "Play_lunar_wisp_attack1_windDown", 1909826189u },
			{ "Play_lunar_wisp_attack1_shoot_impact", 1992390953u },
			{ "Play_lunar_wisp_idle_loop", 2168381742u },
			{ "Play_lunar_wisp_spawn", 2629300184u },
			{ "Play_lunar_wisp_attack1_shootLoop", 2909507110u },
			{ "Play_lunar_wisp_attack2_launch", 2936354523u },
			{ "Play_lunar_wisp_attack2_windDown", 3165958184u },
			{ "Stop_lunar_wisp_attack2_chargeLoop", 3403955490u },
			{ "Play_clayBruiser_attack1_shoot_flyby", 3572694566u },
			{ "Play_lunar_wisp_attack2_explode", 3621412217u },
			{ "Play_lunar_wisp_impact", 3773914237u },
			{ "Stop_lunar_wisp_attack1_windLoop", 4108358281u },
			{ "Play_lunar_wisp_attack2_chargeLoop", 4144327796u },
			{ "Play_lunar_wisp_death", 4190910447u },
			{ "Stop_lunar_wisp_attack1_shootLoop", 4205293660u },
			{ "Play_item_proc_critAtLowerElevation_full", 37376178u },
			{ "Play_item_proc_critAtLowerElevation_stack", 3356380431u },
			{ "Play_AMB_zone_tundra", 38798342u },
			{ "Play_item_proc_onLevelUpFreeUnlock_activate", 2156400271u },
			{ "Play_item_proc_onLevelUpFreeUnlock_idle", 2826299554u },
			{ "Play_seeker_skill1_fire_orb", 39374599u },
			{ "Play_seeker_skill3_start", 90951373u },
			{ "Stop_seeker_skill2_active_loop", 127139369u },
			{ "Play_seeker_skill4_combo_correct", 177463755u },
			{ "Play_Seeker_PalmBlast_Charge", 544331923u },
			{ "Play_seeker_skill4_win", 732991608u },
			{ "Play_seeker_skill4_combo_wrong", 884291666u },
			{ "Play_seeker_skill3_explo", 985996859u },
			{ "Play_seeker_skill2_start", 1063538712u },
			{ "Play_seeker_step_sprint", 1145656191u },
			{ "Play_Seeker_PalmBlast_HealImpact", 1211909667u },
			{ "Stop_seeker_skill3_loop", 1337233567u },
			{ "Stop_Seeker_PalmBlast_LP", 1465591441u },
			{ "Play_Seeker_PalmBlast_Fire", 1777119467u },
			{ "Play_seeker_selectScreen_idle", 1955843131u },
			{ "Play_seeker_skill2_fire", 2101638456u },
			{ "Play_seeker_skill2_active_loop", 2229939235u },
			{ "Play_seeker_skill4_timeout", 2305681923u },
			{ "Stop_seeker_skill4_start", 2327375048u },
			{ "Play_seeker_skill1_impact", 2378122475u },
			{ "Play_seeker_skill2_alt_loop", 2382979698u },
			{ "Stop_Seeker_Cyclone_LP", 2496588438u },
			{ "Stop_Seeker_PalmBlast_Charge", 2498702653u },
			{ "Play_Seeker_Cyclone_Impact", 2624544410u },
			{ "Stop_seeker_skill2_flight_loop", 2720151021u },
			{ "Play_Seeker_Cyclone_LP", 2750597664u },
			{ "Play_seeker_skill2_alt_fire", 3268729620u },
			{ "Play_seeker_skill4_start", 3296174602u },
			{ "Play_Seeker_PalmBlast_Damage", 3705997736u },
			{ "Stop_seeker_skill2_alt_loop", 3707674044u },
			{ "Play_seeker_skill2_flight_loop", 3838730855u },
			{ "Play_seek