Decompiled source of FishFun CN v1.2.3

HowToFish_ChinesePatch.dll

Decompiled 2 days ago
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Reflection.Emit;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Text.RegularExpressions;
using BepInEx;
using BepInEx.Logging;
using HarmonyLib;
using TMPro;
using UnityEngine;
using UnityEngine.UI;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("HowToFish_ChinesePatch")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("HowToFish_ChinesePatch")]
[assembly: AssemblyTitle("HowToFish_ChinesePatch")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace HowToFish_ChinesePatch;

[BepInPlugin("com.howtofish.chinesepatch", "渔力全开 中文汉化补丁", "1.2.3")]
public class Plugin : BaseUnityPlugin
{
	internal static ManualLogSource Log;

	internal static Harmony HarmonyInstance;

	internal static Dictionary<string, string> Translations;

	private void Awake()
	{
		//IL_004c: Unknown result type (might be due to invalid IL or missing references)
		//IL_0056: Expected O, but got Unknown
		//IL_008a: Unknown result type (might be due to invalid IL or missing references)
		//IL_0098: Expected O, but got Unknown
		//IL_0502: Unknown result type (might be due to invalid IL or missing references)
		//IL_0507: Unknown result type (might be due to invalid IL or missing references)
		//IL_050d: Expected O, but got Unknown
		//IL_021c: Unknown result type (might be due to invalid IL or missing references)
		//IL_022a: Expected O, but got Unknown
		//IL_02eb: Unknown result type (might be due to invalid IL or missing references)
		//IL_02f9: Expected O, but got Unknown
		//IL_011b: Unknown result type (might be due to invalid IL or missing references)
		//IL_0129: Expected O, but got Unknown
		//IL_0350: Unknown result type (might be due to invalid IL or missing references)
		//IL_035e: Expected O, but got Unknown
		//IL_03b5: Unknown result type (might be due to invalid IL or missing references)
		//IL_03c3: Expected O, but got Unknown
		//IL_0427: Unknown result type (might be due to invalid IL or missing references)
		//IL_0435: Expected O, but got Unknown
		//IL_018d: Unknown result type (might be due to invalid IL or missing references)
		//IL_019b: Expected O, but got Unknown
		//IL_04a6: Unknown result type (might be due to invalid IL or missing references)
		//IL_04b4: Expected O, but got Unknown
		Log = ((BaseUnityPlugin)this).Logger;
		Log.LogInfo((object)"正在加载 渔力全开 中文汉化补丁 v1.2.3...");
		Translations = TranslationDictionary.Build();
		Log.LogInfo((object)$"已加载 {Translations.Count} 条翻译");
		HarmonyInstance = new Harmony("com.howtofish.chinesepatch");
		try
		{
			MethodInfo methodInfo = AccessTools.PropertySetter(typeof(Text), "text");
			if (methodInfo != null)
			{
				HarmonyInstance.Patch((MethodBase)methodInfo, new HarmonyMethod(typeof(TextPatch), "Prefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
				Log.LogInfo((object)"已补丁 UnityEngine.UI.Text.text setter");
			}
			else
			{
				Log.LogWarning((object)"未找到 UnityEngine.UI.Text.text setter");
			}
		}
		catch (Exception ex)
		{
			Log.LogError((object)("补丁 UnityEngine.UI.Text 失败: " + ex.Message));
		}
		try
		{
			Type type = AccessTools.TypeByName("TMPro.TMP_Text");
			if (type != null)
			{
				MethodInfo methodInfo2 = AccessTools.PropertySetter(type, "text");
				if (methodInfo2 != null)
				{
					HarmonyInstance.Patch((MethodBase)methodInfo2, new HarmonyMethod(typeof(TMPTextPatch), "Prefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
					Log.LogInfo((object)"已补丁 TMPro.TMP_Text.text setter");
				}
				else
				{
					Log.LogWarning((object)"未找到 TMPro.TMP_Text.text setter");
				}
				try
				{
					MethodInfo methodInfo3 = AccessTools.Method(type, "SetText", new Type[1] { typeof(string) }, (Type[])null);
					if (methodInfo3 != null)
					{
						HarmonyInstance.Patch((MethodBase)methodInfo3, new HarmonyMethod(typeof(TMPTextPatch), "SetTextPrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
						Log.LogInfo((object)"已补丁 TMPro.TMP_Text.SetText(string)");
					}
				}
				catch (Exception ex2)
				{
					Log.LogWarning((object)("补丁 SetText(string) 失败: " + ex2.Message));
				}
				try
				{
					MethodInfo methodInfo4 = AccessTools.Method(type, "SetText", new Type[2]
					{
						typeof(string),
						typeof(bool)
					}, (Type[])null);
					if (methodInfo4 != null)
					{
						HarmonyInstance.Patch((MethodBase)methodInfo4, new HarmonyMethod(typeof(TMPTextPatch), "SetText2Prefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
						Log.LogInfo((object)"已补丁 TMPro.TMP_Text.SetText(string, bool)");
					}
				}
				catch (Exception ex3)
				{
					Log.LogWarning((object)("补丁 SetText(string, bool) 失败: " + ex3.Message));
				}
			}
			else
			{
				Log.LogWarning((object)"未找到 TMPro.TMP_Text 类型");
			}
		}
		catch (Exception ex4)
		{
			Log.LogError((object)("补丁 TMPro.TMP_Text 失败: " + ex4.Message));
		}
		try
		{
			Type typeFromHandle = typeof(GUI);
			int num = 0;
			MethodInfo methodInfo5 = AccessTools.Method(typeFromHandle, "Label", new Type[2]
			{
				typeof(Rect),
				typeof(string)
			}, (Type[])null);
			if (methodInfo5 != null)
			{
				HarmonyInstance.Patch((MethodBase)methodInfo5, new HarmonyMethod(typeof(IMGUI_Patch), "LabelPrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
				num++;
			}
			MethodInfo methodInfo6 = AccessTools.Method(typeFromHandle, "Button", new Type[2]
			{
				typeof(Rect),
				typeof(string)
			}, (Type[])null);
			if (methodInfo6 != null)
			{
				HarmonyInstance.Patch((MethodBase)methodInfo6, new HarmonyMethod(typeof(IMGUI_Patch), "ButtonPrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
				num++;
			}
			MethodInfo methodInfo7 = AccessTools.Method(typeFromHandle, "Box", new Type[2]
			{
				typeof(Rect),
				typeof(string)
			}, (Type[])null);
			if (methodInfo7 != null)
			{
				HarmonyInstance.Patch((MethodBase)methodInfo7, new HarmonyMethod(typeof(IMGUI_Patch), "BoxPrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
				num++;
			}
			MethodInfo methodInfo8 = AccessTools.Method(typeFromHandle, "Toggle", new Type[3]
			{
				typeof(Rect),
				typeof(bool),
				typeof(string)
			}, (Type[])null);
			if (methodInfo8 != null)
			{
				HarmonyInstance.Patch((MethodBase)methodInfo8, new HarmonyMethod(typeof(IMGUI_Patch), "TogglePrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
				num++;
			}
			MethodInfo methodInfo9 = AccessTools.Method(typeFromHandle, "Window", new Type[4]
			{
				typeof(int),
				typeof(Rect),
				typeof(WindowFunction),
				typeof(string)
			}, (Type[])null);
			if (methodInfo9 != null)
			{
				HarmonyInstance.Patch((MethodBase)methodInfo9, new HarmonyMethod(typeof(IMGUI_Patch), "WindowPrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
				num++;
			}
			if (num > 0)
			{
				Log.LogInfo((object)$"已补丁 IMGUI ({num} 个方法)");
			}
		}
		catch (Exception ex5)
		{
			Log.LogError((object)("补丁 IMGUI 失败: " + ex5.Message));
		}
		try
		{
			GameObject val = new GameObject("ChinesePatch_UITranslationManager");
			Object.DontDestroyOnLoad((Object)val);
			val.AddComponent<UITranslationManager>();
			Log.LogInfo((object)"已启动 UI 文本扫描管理器");
		}
		catch (Exception ex6)
		{
			Log.LogError((object)("启动 UI 文本扫描管理器失败: " + ex6.Message));
		}
		Log.LogInfo((object)"渔力全开 中文汉化补丁 加载完成!");
	}

	private static IEnumerable<CodeInstruction> TranslateOnGUIStrings(IEnumerable<CodeInstruction> instructions)
	{
		List<CodeInstruction> list = new List<CodeInstruction>(instructions);
		for (int i = 0; i < list.Count; i++)
		{
			if (!(list[i].opcode == OpCodes.Ldstr))
			{
				continue;
			}
			string text = list[i].operand as string;
			if (!string.IsNullOrEmpty(text))
			{
				string text2 = TryTranslate(text);
				if (text2 != text)
				{
					list[i].operand = text2;
				}
			}
		}
		return list.AsEnumerable();
	}

	private IEnumerator DelayedPatchGUILayout()
	{
		Log.LogInfo((object)"等待游戏完全启动后再补丁 GUILayout...");
		yield return (object)new WaitForSeconds(5f);
		for (int i = 0; i < 30; i++)
		{
			yield return null;
		}
		try
		{
			string targetAssemblyName = "HowToFishCheatMenu";
			Assembly assembly = AppDomain.CurrentDomain.GetAssemblies().FirstOrDefault((Assembly a) => a.GetName().Name == targetAssemblyName);
			if (assembly == null)
			{
				Log.LogWarning((object)"未找到目标 MOD 程序集 HowToFishCheatMenu,跳过 GUILayout 补丁");
				yield break;
			}
			int num = 0;
			Type[] array;
			try
			{
				array = assembly.GetTypes();
			}
			catch (ReflectionTypeLoadException ex)
			{
				array = ex.Types.Where((Type t) => t != null).ToArray();
			}
			Type[] array2 = array;
			foreach (Type type in array2)
			{
				if (!(type == null))
				{
					MethodInfo method = type.GetMethod("OnGUI", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
					if (method != null && !method.IsAbstract)
					{
						HarmonyInstance.Patch((MethodBase)method, (HarmonyMethod)null, (HarmonyMethod)null, new HarmonyMethod(typeof(Plugin), "TranslateOnGUIStrings", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null);
						HarmonyInstance.Patch((MethodBase)method, new HarmonyMethod(typeof(TargetModOnGUIPatch), "Prefix", (Type[])null), new HarmonyMethod(typeof(TargetModOnGUIPatch), "Postfix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
						num++;
						Log.LogInfo((object)("已补丁目标 MOD OnGUI (Transpiler+入口): " + type.FullName));
					}
				}
			}
			if (num > 0)
			{
				Type typeFromHandle = typeof(GUILayout);
				int num3 = 0;
				MethodInfo methodInfo = AccessTools.Method(typeFromHandle, "Label", new Type[2]
				{
					typeof(string),
					typeof(GUILayoutOption[])
				}, (Type[])null);
				if (methodInfo != null)
				{
					HarmonyInstance.Patch((MethodBase)methodInfo, new HarmonyMethod(typeof(SafeGUILayoutPatch), "LabelPrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
					num3++;
				}
				MethodInfo methodInfo2 = AccessTools.Method(typeFromHandle, "Button", new Type[2]
				{
					typeof(string),
					typeof(GUILayoutOption[])
				}, (Type[])null);
				if (methodInfo2 != null)
				{
					HarmonyInstance.Patch((MethodBase)methodInfo2, new HarmonyMethod(typeof(SafeGUILayoutPatch), "ButtonPrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
					num3++;
				}
				MethodInfo methodInfo3 = AccessTools.Method(typeFromHandle, "Box", new Type[2]
				{
					typeof(string),
					typeof(GUILayoutOption[])
				}, (Type[])null);
				if (methodInfo3 != null)
				{
					HarmonyInstance.Patch((MethodBase)methodInfo3, new HarmonyMethod(typeof(SafeGUILayoutPatch), "BoxPrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
					num3++;
				}
				MethodInfo methodInfo4 = AccessTools.Method(typeFromHandle, "Toggle", new Type[3]
				{
					typeof(bool),
					typeof(string),
					typeof(GUILayoutOption[])
				}, (Type[])null);
				if (methodInfo4 != null)
				{
					HarmonyInstance.Patch((MethodBase)methodInfo4, new HarmonyMethod(typeof(SafeGUILayoutPatch), "TogglePrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
					num3++;
				}
				MethodInfo methodInfo5 = AccessTools.Method(typeFromHandle, "Label", new Type[3]
				{
					typeof(string),
					typeof(GUIStyle),
					typeof(GUILayoutOption[])
				}, (Type[])null);
				if (methodInfo5 != null)
				{
					HarmonyInstance.Patch((MethodBase)methodInfo5, new HarmonyMethod(typeof(SafeGUILayoutPatch), "LabelStylePrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
					num3++;
				}
				MethodInfo methodInfo6 = AccessTools.Method(typeFromHandle, "Button", new Type[3]
				{
					typeof(string),
					typeof(GUIStyle),
					typeof(GUILayoutOption[])
				}, (Type[])null);
				if (methodInfo6 != null)
				{
					HarmonyInstance.Patch((MethodBase)methodInfo6, new HarmonyMethod(typeof(SafeGUILayoutPatch), "ButtonStylePrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
					num3++;
				}
				MethodInfo methodInfo7 = AccessTools.Method(typeFromHandle, "Box", new Type[3]
				{
					typeof(string),
					typeof(GUIStyle),
					typeof(GUILayoutOption[])
				}, (Type[])null);
				if (methodInfo7 != null)
				{
					HarmonyInstance.Patch((MethodBase)methodInfo7, new HarmonyMethod(typeof(SafeGUILayoutPatch), "BoxStylePrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
					num3++;
				}
				MethodInfo methodInfo8 = AccessTools.Method(typeFromHandle, "Toggle", new Type[4]
				{
					typeof(bool),
					typeof(string),
					typeof(GUIStyle),
					typeof(GUILayoutOption[])
				}, (Type[])null);
				if (methodInfo8 != null)
				{
					HarmonyInstance.Patch((MethodBase)methodInfo8, new HarmonyMethod(typeof(SafeGUILayoutPatch), "ToggleStylePrefix", (Type[])null), (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null, (HarmonyMethod)null);
					num3++;
				}
				if (num3 > 0)
				{
					Log.LogInfo((object)$"已补丁延迟安全 GUILayout ({num3} 个方法,仅目标 MOD 生效)");
				}
			}
		}
		catch (Exception ex2)
		{
			Log.LogError((object)("延迟 GUILayout 补丁失败: " + ex2.Message));
		}
	}

	internal static string TryTranslate(string input)
	{
		if (string.IsNullOrEmpty(input))
		{
			return input;
		}
		if (Translations == null || Translations.Count == 0)
		{
			return input;
		}
		string text = input.Trim();
		if (string.IsNullOrEmpty(text))
		{
			return input;
		}
		if (Translations.TryGetValue(text, out var value))
		{
			return PreserveWhitespace(input, value);
		}
		foreach (KeyValuePair<string, string> translation in Translations)
		{
			if (string.Equals(translation.Key, text, StringComparison.OrdinalIgnoreCase))
			{
				return PreserveWhitespace(input, translation.Value);
			}
		}
		Match match = Regex.Match(text, "^(.*?)\\s+(v\\d+\\.\\d+\\.\\d+.*)$");
		if (match.Success)
		{
			string text2 = match.Groups[1].Value.Trim();
			string value2 = match.Groups[2].Value;
			if (Translations.TryGetValue(text2, out var value3))
			{
				return PreserveWhitespace(input, value3 + " " + value2);
			}
			foreach (KeyValuePair<string, string> translation2 in Translations)
			{
				if (string.Equals(translation2.Key, text2, StringComparison.OrdinalIgnoreCase))
				{
					return PreserveWhitespace(input, translation2.Value + " " + value2);
				}
			}
		}
		if (text.Contains(" / "))
		{
			string[] array = text.Split(new string[1] { " / " }, StringSplitOptions.None);
			if (array.Length == 2)
			{
				string text3 = TranslateSingle(array[0].Trim());
				string text4 = TranslateSingle(array[1].Trim());
				if (text3 != array[0].Trim() || text4 != array[1].Trim())
				{
					return PreserveWhitespace(input, text3 + " / " + text4);
				}
			}
		}
		return input;
	}

	internal static string TryTranslateInterned(string input)
	{
		string text = TryTranslate(input);
		if (text == input)
		{
			return input;
		}
		return string.Intern(text);
	}

	private static string TranslateSingle(string text)
	{
		if (string.IsNullOrEmpty(text))
		{
			return text;
		}
		if (Translations.TryGetValue(text, out var value))
		{
			return value;
		}
		foreach (KeyValuePair<string, string> translation in Translations)
		{
			if (string.Equals(translation.Key, text, StringComparison.OrdinalIgnoreCase))
			{
				return translation.Value;
			}
		}
		return text;
	}

	private static string PreserveWhitespace(string original, string translated)
	{
		string text = original.Substring(0, original.Length - original.TrimStart().Length);
		string text2 = original.Substring(original.TrimEnd().Length);
		return text + translated + text2;
	}
}
public static class TextPatch
{
	public static void Prefix(ref string value)
	{
		if (!string.IsNullOrEmpty(value))
		{
			value = Plugin.TryTranslate(value);
		}
	}
}
public static class TMPTextPatch
{
	public static void Prefix(ref string value)
	{
		if (!string.IsNullOrEmpty(value))
		{
			value = Plugin.TryTranslate(value);
		}
	}

	public static void SetTextPrefix(ref string sourceText)
	{
		if (!string.IsNullOrEmpty(sourceText))
		{
			sourceText = Plugin.TryTranslate(sourceText);
		}
	}

	public static void SetText2Prefix(ref string sourceText, bool parseTags)
	{
		if (!string.IsNullOrEmpty(sourceText))
		{
			sourceText = Plugin.TryTranslate(sourceText);
		}
	}
}
public static class IMGUI_Patch
{
	public static void LabelPrefix(Rect position, ref string text)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}

	public static void ButtonPrefix(Rect position, ref string text)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}

	public static void BoxPrefix(Rect position, ref string text)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}

	public static void TogglePrefix(Rect position, bool value, ref string text)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}

	public static void WindowPrefix(int id, Rect clientRect, WindowFunction func, ref string text)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}

	public static void GUILayoutLabelPrefix(ref string text, GUILayoutOption[] options)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}

	public static void GUILayoutButtonPrefix(ref string text, GUILayoutOption[] options)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}

	public static void GUILayoutBoxPrefix(ref string text, GUILayoutOption[] options)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}

	public static void GUILayoutTogglePrefix(bool value, ref string text, GUILayoutOption[] options)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}

	public static void GUILayoutLabelStylePrefix(ref string text, GUIStyle style, GUILayoutOption[] options)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}

	public static void GUILayoutButtonStylePrefix(ref string text, GUIStyle style, GUILayoutOption[] options)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}

	public static void GUILayoutBoxStylePrefix(ref string text, GUIStyle style, GUILayoutOption[] options)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}

	public static void GUILayoutToggleStylePrefix(bool value, ref string text, GUIStyle style, GUILayoutOption[] options)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}
}
public static class TargetModOnGUIPatch
{
	[ThreadStatic]
	public static bool InTargetModGUI;

	public static void Prefix()
	{
		InTargetModGUI = true;
	}

	public static void Postfix()
	{
		InTargetModGUI = false;
	}
}
public static class SafeGUILayoutPatch
{
	[ThreadStatic]
	private static int _depth;

	private static bool Enter()
	{
		if (!TargetModOnGUIPatch.InTargetModGUI)
		{
			return false;
		}
		if (_depth > 0)
		{
			return false;
		}
		_depth++;
		return true;
	}

	private static void Exit()
	{
		_depth--;
	}

	public static void LabelPrefix(ref string text, GUILayoutOption[] options)
	{
		if (!Enter())
		{
			return;
		}
		try
		{
			if (!string.IsNullOrEmpty(text))
			{
				text = Plugin.TryTranslateInterned(text);
			}
		}
		finally
		{
			Exit();
		}
	}

	public static void ButtonPrefix(ref string text, GUILayoutOption[] options)
	{
		if (!Enter())
		{
			return;
		}
		try
		{
			if (!string.IsNullOrEmpty(text))
			{
				text = Plugin.TryTranslateInterned(text);
			}
		}
		finally
		{
			Exit();
		}
	}

	public static void BoxPrefix(ref string text, GUILayoutOption[] options)
	{
		if (!Enter())
		{
			return;
		}
		try
		{
			if (!string.IsNullOrEmpty(text))
			{
				text = Plugin.TryTranslateInterned(text);
			}
		}
		finally
		{
			Exit();
		}
	}

	public static void TogglePrefix(bool value, ref string text, GUILayoutOption[] options)
	{
		if (!Enter())
		{
			return;
		}
		try
		{
			if (!string.IsNullOrEmpty(text))
			{
				text = Plugin.TryTranslateInterned(text);
			}
		}
		finally
		{
			Exit();
		}
	}

	public static void LabelStylePrefix(ref string text, GUIStyle style, GUILayoutOption[] options)
	{
		if (!Enter())
		{
			return;
		}
		try
		{
			if (!string.IsNullOrEmpty(text))
			{
				text = Plugin.TryTranslateInterned(text);
			}
		}
		finally
		{
			Exit();
		}
	}

	public static void ButtonStylePrefix(ref string text, GUIStyle style, GUILayoutOption[] options)
	{
		if (!Enter())
		{
			return;
		}
		try
		{
			if (!string.IsNullOrEmpty(text))
			{
				text = Plugin.TryTranslateInterned(text);
			}
		}
		finally
		{
			Exit();
		}
	}

	public static void BoxStylePrefix(ref string text, GUIStyle style, GUILayoutOption[] options)
	{
		if (!Enter())
		{
			return;
		}
		try
		{
			if (!string.IsNullOrEmpty(text))
			{
				text = Plugin.TryTranslateInterned(text);
			}
		}
		finally
		{
			Exit();
		}
	}

	public static void ToggleStylePrefix(bool value, ref string text, GUIStyle style, GUILayoutOption[] options)
	{
		if (!Enter())
		{
			return;
		}
		try
		{
			if (!string.IsNullOrEmpty(text))
			{
				text = Plugin.TryTranslateInterned(text);
			}
		}
		finally
		{
			Exit();
		}
	}
}
public static class GUIContentPatch
{
	public static void CtorPrefix(ref string text)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}

	public static void Ctor3Prefix(ref string text, Texture image, ref string tooltip)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
		if (!string.IsNullOrEmpty(tooltip))
		{
			tooltip = Plugin.TryTranslate(tooltip);
		}
	}

	public static void ImplicitPrefix(ref string text)
	{
		if (!string.IsNullOrEmpty(text))
		{
			text = Plugin.TryTranslate(text);
		}
	}
}
public class UITranslationManager : MonoBehaviour
{
	private HashSet<Text> processedUGUI = new HashSet<Text>();

	private HashSet<TMP_Text> processedTMP = new HashSet<TMP_Text>();

	private bool isScanning;

	private int frameCount;

	private void Start()
	{
		((MonoBehaviour)this).StartCoroutine(InitialScan());
	}

	private IEnumerator InitialScan()
	{
		yield return (object)new WaitForSeconds(1f);
		ScanAll();
		yield return (object)new WaitForSeconds(2f);
		ScanAll();
		Plugin.Log.LogInfo((object)"UI 文本初始扫描完成");
	}

	private void Update()
	{
		frameCount++;
		if (frameCount % 60 == 0)
		{
			ScanAll();
		}
	}

	private void ScanAll()
	{
		if (isScanning)
		{
			return;
		}
		isScanning = true;
		try
		{
			Text[] array = Resources.FindObjectsOfTypeAll<Text>();
			foreach (Text val in array)
			{
				if (!((Object)(object)val == (Object)null) && !processedUGUI.Contains(val) && !string.IsNullOrEmpty(val.text))
				{
					string text = Plugin.TryTranslate(val.text);
					if (text != val.text)
					{
						val.text = text;
					}
					processedUGUI.Add(val);
				}
			}
			TMP_Text[] array2 = Resources.FindObjectsOfTypeAll<TMP_Text>();
			foreach (TMP_Text val2 in array2)
			{
				if (!((Object)(object)val2 == (Object)null) && !processedTMP.Contains(val2) && !string.IsNullOrEmpty(val2.text))
				{
					string text2 = Plugin.TryTranslate(val2.text);
					if (text2 != val2.text)
					{
						val2.text = text2;
					}
					processedTMP.Add(val2);
				}
			}
			processedUGUI.RemoveWhere((Text x) => (Object)(object)x == (Object)null);
			processedTMP.RemoveWhere((TMP_Text x) => (Object)(object)x == (Object)null);
		}
		catch (Exception)
		{
		}
		finally
		{
			isScanning = false;
		}
	}
}
public static class PluginInfo
{
	public const string PLUGIN_GUID = "com.howtofish.chinesepatch";

	public const string PLUGIN_NAME = "渔力全开 中文汉化补丁";

	public const string PLUGIN_VERSION = "1.2.3";
}
public static class TranslationDictionary
{
	public static Dictionary<string, string> Build()
	{
		Dictionary<string, string> dictionary = new Dictionary<string, string>();
		dictionary["Installed Mods"] = "已安装模组";
		dictionary["Mod Menu"] = "模组菜单";
		dictionary["Reset to Defaults"] = "恢复默认";
		dictionary["Reset to default"] = "恢复默认";
		dictionary["Version"] = "版本";
		dictionary["Enabled"] = "已启用";
		dictionary["Disabled"] = "已禁用";
		dictionary["Configure"] = "配置";
		dictionary["Config"] = "配置";
		dictionary["Settings"] = "设置";
		dictionary["Options"] = "选项";
		dictionary["About"] = "关于";
		dictionary["Description"] = "描述";
		dictionary["Author"] = "作者";
		dictionary["GUID"] = "GUID";
		dictionary["Open Config"] = "打开配置";
		dictionary["Open Documentation"] = "打开文档";
		dictionary["Homepage"] = "主页";
		dictionary["Source Code"] = "源代码";
		dictionary["Always Win Roulette"] = "必胜轮盘";
		dictionary["Complete Cheat Menu"] = "完整作弊菜单";
		dictionary["Fish Aimbot"] = "鱼类自瞄";
		dictionary["How To Fish - Magic Bullet"] = "渔力全开 - 魔法子弹";
		dictionary["How to Fish - Magic Bullet"] = "渔力全开 - 魔法子弹";
		dictionary["How to Fish Cheat Menu"] = "渔力全开作弊菜单";
		dictionary["Keep Inventory"] = "死亡不掉落";
		dictionary["OnePunch"] = "一拳超人";
		dictionary["One Punch"] = "一拳超人";
		dictionary["Aimbot Revised"] = "自瞄修订版";
		dictionary["AimbotRevised"] = "自瞄修订版";
		dictionary["Magic Bullet"] = "魔法子弹";
		dictionary["Cheat Menu"] = "作弊菜单";
		dictionary["New Game"] = "新游戏";
		dictionary["Continue"] = "继续游戏";
		dictionary["Load Game"] = "加载游戏";
		dictionary["Save Game"] = "保存游戏";
		dictionary["Quit"] = "退出";
		dictionary["Quit Game"] = "退出游戏";
		dictionary["Exit"] = "退出";
		dictionary["Exit to Menu"] = "返回主菜单";
		dictionary["Exit to Desktop"] = "退出到桌面";
		dictionary["Main Menu"] = "主菜单";
		dictionary["Pause Menu"] = "暂停菜单";
		dictionary["Paused"] = "已暂停";
		dictionary["Resume"] = "继续";
		dictionary["Restart"] = "重新开始";
		dictionary["Back"] = "返回";
		dictionary["Confirm"] = "确认";
		dictionary["Cancel"] = "取消";
		dictionary["OK"] = "确定";
		dictionary["Okay"] = "确定";
		dictionary["Yes"] = "是";
		dictionary["No"] = "否";
		dictionary["Apply"] = "应用";
		dictionary["Save"] = "保存";
		dictionary["Load"] = "加载";
		dictionary["Delete"] = "删除";
		dictionary["Remove"] = "移除";
		dictionary["Edit"] = "编辑";
		dictionary["Add"] = "添加";
		dictionary["Create"] = "创建";
		dictionary["Join"] = "加入";
		dictionary["Host"] = "房主";
		dictionary["Connect"] = "连接";
		dictionary["Disconnect"] = "断开连接";
		dictionary["Refresh"] = "刷新";
		dictionary["Search"] = "搜索";
		dictionary["Filter"] = "筛选";
		dictionary["Sort"] = "排序";
		dictionary["Category"] = "分类";
		dictionary["All"] = "全部";
		dictionary["None"] = "无";
		dictionary["Default"] = "默认";
		dictionary["Custom"] = "自定义";
		dictionary["Advanced"] = "高级";
		dictionary["General"] = "常规";
		dictionary["Help"] = "帮助";
		dictionary["Credits"] = "制作人员";
		dictionary["Update"] = "更新";
		dictionary["Download"] = "下载";
		dictionary["Upload"] = "上传";
		dictionary["Install"] = "安装";
		dictionary["Uninstall"] = "卸载";
		dictionary["Enable"] = "启用";
		dictionary["Disable"] = "禁用";
		dictionary["On"] = "开";
		dictionary["Off"] = "关";
		dictionary["Toggle"] = "切换";
		dictionary["Show"] = "显示";
		dictionary["Hide"] = "隐藏";
		dictionary["Visible"] = "可见";
		dictionary["Invisible"] = "不可见";
		dictionary["Open"] = "打开";
		dictionary["Close"] = "关闭";
		dictionary["Locked"] = "已锁定";
		dictionary["Unlocked"] = "已解锁";
		dictionary["Unlock"] = "解锁";
		dictionary["Lock"] = "锁定";
		dictionary["Equip"] = "装备";
		dictionary["Unequip"] = "卸下";
		dictionary["Equipped"] = "已装备";
		dictionary["Use"] = "使用";
		dictionary["Drop"] = "丢弃";
		dictionary["Throw"] = "投掷";
		dictionary["Pick Up"] = "拾取";
		dictionary["Interact"] = "互动";
		dictionary["Talk"] = "交谈";
		dictionary["Buy"] = "购买";
		dictionary["Sell"] = "出售";
		dictionary["Trade"] = "交易";
		dictionary["Shop"] = "商店";
		dictionary["Store"] = "商店";
		dictionary["Market"] = "市场";
		dictionary["Price"] = "价格";
		dictionary["Value"] = "价值";
		dictionary["Cost"] = "费用";
		dictionary["Money"] = "金钱";
		dictionary["Gold"] = "金币";
		dictionary["Cash"] = "现金";
		dictionary["Coins"] = "硬币";
		dictionary["Free"] = "免费";
		dictionary["Inventory"] = "背包";
		dictionary["Bag"] = "袋子";
		dictionary["Backpack"] = "背包";
		dictionary["Storage"] = "存储";
		dictionary["Chest"] = "箱子";
		dictionary["Box"] = "盒子";
		dictionary["Container"] = "容器";
		dictionary["Slot"] = "栏位";
		dictionary["Empty"] = "空";
		dictionary["Full"] = "满";
		dictionary["Weight"] = "重量";
		dictionary["Capacity"] = "容量";
		dictionary["Stack"] = "堆叠";
		dictionary["Quantity"] = "数量";
		dictionary["Amount"] = "数量";
		dictionary["Count"] = "计数";
		dictionary["Total"] = "总计";
		dictionary["Max"] = "最大";
		dictionary["Min"] = "最小";
		dictionary["Maximum"] = "最大值";
		dictionary["Minimum"] = "最小值";
		dictionary["Current"] = "当前";
		dictionary["Language"] = "语言";
		dictionary["English"] = "英语";
		dictionary["Chinese"] = "中文";
		dictionary["Simplified Chinese"] = "简体中文";
		dictionary["Traditional Chinese"] = "繁体中文";
		dictionary["Japanese"] = "日语";
		dictionary["Korean"] = "韩语";
		dictionary["Graphics"] = "图形";
		dictionary["Audio"] = "音频";
		dictionary["Sound"] = "声音";
		dictionary["Music"] = "音乐";
		dictionary["Volume"] = "音量";
		dictionary["Master Volume"] = "主音量";
		dictionary["Music Volume"] = "音乐音量";
		dictionary["SFX Volume"] = "音效音量";
		dictionary["Voice Volume"] = "语音音量";
		dictionary["Controls"] = "控制";
		dictionary["Keybinds"] = "按键绑定";
		dictionary["Hotkeys"] = "快捷键";
		dictionary["Keyboard"] = "键盘";
		dictionary["Mouse"] = "鼠标";
		dictionary["Controller"] = "手柄";
		dictionary["Gamepad"] = "游戏手柄";
		dictionary["Sensitivity"] = "灵敏度";
		dictionary["Mouse Sensitivity"] = "鼠标灵敏度";
		dictionary["Invert Mouse"] = "反转鼠标";
		dictionary["Resolution"] = "分辨率";
		dictionary["Fullscreen"] = "全屏";
		dictionary["Windowed"] = "窗口化";
		dictionary["Borderless"] = "无边框";
		dictionary["Fullscreen Mode"] = "全屏模式";
		dictionary["Display Mode"] = "显示模式";
		dictionary["VSync"] = "垂直同步";
		dictionary["V-Sync"] = "垂直同步";
		dictionary["Frame Rate"] = "帧率";
		dictionary["FPS Limit"] = "帧率限制";
		dictionary["Quality"] = "质量";
		dictionary["Graphics Quality"] = "图形质量";
		dictionary["Texture Quality"] = "纹理质量";
		dictionary["Shadow Quality"] = "阴影质量";
		dictionary["Effect Quality"] = "特效质量";
		dictionary["Anti-aliasing"] = "抗锯齿";
		dictionary["Post Processing"] = "后处理";
		dictionary["Post-Processing"] = "后处理";
		dictionary["Bloom"] = "泛光";
		dictionary["Motion Blur"] = "运动模糊";
		dictionary["Depth of Field"] = "景深";
		dictionary["Brightness"] = "亮度";
		dictionary["Contrast"] = "对比度";
		dictionary["Low"] = "低";
		dictionary["Medium"] = "中";
		dictionary["High"] = "高";
		dictionary["Ultra"] = "极高";
		dictionary["Epic"] = "史诗";
		dictionary["Performance"] = "性能";
		dictionary["Balanced"] = "平衡";
		dictionary["Player"] = "玩家";
		dictionary["Character"] = "角色";
		dictionary["Avatar"] = "头像";
		dictionary["Skin"] = "皮肤";
		dictionary["Costume"] = "服装";
		dictionary["Outfit"] = "套装";
		dictionary["Appearance"] = "外观";
		dictionary["Name"] = "名字";
		dictionary["Level"] = "等级";
		dictionary["Lv."] = "等级";
		dictionary["XP"] = "经验";
		dictionary["EXP"] = "经验";
		dictionary["Experience"] = "经验值";
		dictionary["Skill"] = "技能";
		dictionary["Talent"] = "天赋";
		dictionary["Perk"] = "特权";
		dictionary["Ability"] = "能力";
		dictionary["Power"] = "力量";
		dictionary["Strength"] = "力量";
		dictionary["Agility"] = "敏捷";
		dictionary["Intelligence"] = "智力";
		dictionary["Vitality"] = "活力";
		dictionary["Luck"] = "运气";
		dictionary["Stamina"] = "体力";
		dictionary["Energy"] = "能量";
		dictionary["Mana"] = "法力";
		dictionary["MP"] = "法力";
		dictionary["HP"] = "生命";
		dictionary["Health"] = "生命";
		dictionary["Health Points"] = "生命值";
		dictionary["Hunger"] = "饥饿";
		dictionary["Thirst"] = "口渴";
		dictionary["Mood"] = "心情";
		dictionary["Oxygen"] = "氧气";
		dictionary["Breath"] = "呼吸";
		dictionary["Temperature"] = "温度";
		dictionary["Damage"] = "伤害";
		dictionary["Defense"] = "防御";
		dictionary["Armor"] = "护甲";
		dictionary["Armour"] = "护甲";
		dictionary["Speed"] = "速度";
		dictionary["Move Speed"] = "移动速度";
		dictionary["Attack Speed"] = "攻击速度";
		dictionary["Attack"] = "攻击";
		dictionary["Attack Power"] = "攻击力";
		dictionary["Critical"] = "暴击";
		dictionary["Crit"] = "暴击";
		dictionary["Critical Chance"] = "暴击率";
		dictionary["Critical Damage"] = "暴击伤害";
		dictionary["Weapon"] = "武器";
		dictionary["Weapons"] = "武器";
		dictionary["Tool"] = "工具";
		dictionary["Tools"] = "工具";
		dictionary["Item"] = "物品";
		dictionary["Items"] = "物品";
		dictionary["Equipment"] = "装备";
		dictionary["Gear"] = "装备";
		dictionary["Accessory"] = "饰品";
		dictionary["Accessories"] = "饰品";
		dictionary["Consumable"] = "消耗品";
		dictionary["Consumables"] = "消耗品";
		dictionary["Material"] = "材料";
		dictionary["Materials"] = "材料";
		dictionary["Resource"] = "资源";
		dictionary["Resources"] = "资源";
		dictionary["Quest"] = "任务";
		dictionary["Quests"] = "任务";
		dictionary["Mission"] = "任务";
		dictionary["Missions"] = "任务";
		dictionary["Objective"] = "目标";
		dictionary["Objectives"] = "目标";
		dictionary["Reward"] = "奖励";
		dictionary["Rewards"] = "奖励";
		dictionary["Bonus"] = "奖励";
		dictionary["Loot"] = "战利品";
		dictionary["Rarity"] = "稀有度";
		dictionary["Common"] = "普通";
		dictionary["Uncommon"] = "罕见";
		dictionary["Rare"] = "稀有";
		dictionary["Legendary"] = "传说";
		dictionary["Mythic"] = "神话";
		dictionary["Normal"] = "普通";
		dictionary["Magic"] = "魔法";
		dictionary["Unique"] = "独特";
		dictionary["Set"] = "套装";
		dictionary["Ancient"] = "远古";
		dictionary["Fish"] = "鱼";
		dictionary["Fishing"] = "钓鱼";
		dictionary["Fisherman"] = "渔夫";
		dictionary["Angler"] = "钓鱼者";
		dictionary["Rod"] = "鱼竿";
		dictionary["Fishing Rod"] = "鱼竿";
		dictionary["Reel"] = "渔轮";
		dictionary["Fishing Reel"] = "渔轮";
		dictionary["Line"] = "鱼线";
		dictionary["Fishing Line"] = "鱼线";
		dictionary["Hook"] = "鱼钩";
		dictionary["Fish Hook"] = "鱼钩";
		dictionary["Bait"] = "鱼饵";
		dictionary["Lure"] = "假饵";
		dictionary["Bobber"] = "浮漂";
		dictionary["Float"] = "浮漂";
		dictionary["Sinker"] = "铅坠";
		dictionary["Tackle"] = "钓具";
		dictionary["Tackle Box"] = "钓具盒";
		dictionary["Cast"] = "抛竿";
		dictionary["Casting"] = "抛竿中";
		dictionary["Reel In"] = "收线";
		dictionary["Reeling"] = "收线中";
		dictionary["Reel Out"] = "放线";
		dictionary["Hooked"] = "上钩了";
		dictionary["Bite"] = "咬钩";
		dictionary["Catch"] = "捕获";
		dictionary["Caught"] = "已捕获";
		dictionary["Catch Rate"] = "捕获率";
		dictionary["Escape"] = "逃脱";
		dictionary["Escaped"] = "已逃脱";
		dictionary["Got Away"] = "逃跑了";
		dictionary["The fish got away"] = "鱼逃跑了";
		dictionary["Size"] = "大小";
		dictionary["Length"] = "长度";
		dictionary["Species"] = "种类";
		dictionary["Type"] = "类型";
		dictionary["Description"] = "描述";
		dictionary["Info"] = "信息";
		dictionary["Details"] = "详情";
		dictionary["Statistics"] = "统计";
		dictionary["Stats"] = "属性";
		dictionary["Record"] = "记录";
		dictionary["Records"] = "记录";
		dictionary["Best"] = "最佳";
		dictionary["Personal Best"] = "个人最佳";
		dictionary["World Record"] = "世界纪录";
		dictionary["Trophy"] = "奖杯";
		dictionary["Trophies"] = "奖杯";
		dictionary["Achievement"] = "成就";
		dictionary["Achievements"] = "成就";
		dictionary["Collection"] = "收藏";
		dictionary["Collections"] = "收藏";
		dictionary["Codex"] = "图鉴";
		dictionary["Bestiary"] = "怪物图鉴";
		dictionary["Journal"] = "日志";
		dictionary["Log"] = "日志";
		dictionary["Map"] = "地图";
		dictionary["World Map"] = "世界地图";
		dictionary["Mini Map"] = "小地图";
		dictionary["Minimap"] = "小地图";
		dictionary["Compass"] = "指南针";
		dictionary["Waypoint"] = "航点";
		dictionary["Marker"] = "标记";
		dictionary["Location"] = "位置";
		dictionary["Position"] = "位置";
		dictionary["Coordinates"] = "坐标";
		dictionary["Island"] = "岛屿";
		dictionary["Islands"] = "岛屿";
		dictionary["Boat"] = "船";
		dictionary["Boats"] = "船";
		dictionary["Ship"] = "船";
		dictionary["Vessel"] = "船只";
		dictionary["Yacht"] = "游艇";
		dictionary["Kayak"] = "皮划艇";
		dictionary["Canoe"] = "独木舟";
		dictionary["Raft"] = "木筏";
		dictionary["Motorboat"] = "摩托艇";
		dictionary["Speedboat"] = "快艇";
		dictionary["Fishing Boat"] = "渔船";
		dictionary["Sail"] = "航行";
		dictionary["Sailing"] = "航行中";
		dictionary["Anchor"] = "锚";
		dictionary["Drop Anchor"] = "抛锚";
		dictionary["Raise Anchor"] = "起锚";
		dictionary["Dock"] = "码头";
		dictionary["Pier"] = "码头";
		dictionary["Port"] = "港口";
		dictionary["Harbor"] = "海港";
		dictionary["Dock"] = "靠岸";
		dictionary["Undock"] = "离岸";
		dictionary["Fuel"] = "燃料";
		dictionary["Gas"] = "汽油";
		dictionary["Engine"] = "引擎";
		dictionary["Motor"] = "马达";
		dictionary["Steering"] = "转向";
		dictionary["Wheel"] = "方向盘";
		dictionary["Hull"] = "船体";
		dictionary["Deck"] = "甲板";
		dictionary["Cabin"] = "船舱";
		dictionary["Cockpit"] = "驾驶舱";
		dictionary["Bow"] = "船头";
		dictionary["Stern"] = "船尾";
		dictionary["Port Side"] = "左舷";
		dictionary["Starboard"] = "右舷";
		dictionary["Multiplayer"] = "多人游戏";
		dictionary["Singleplayer"] = "单人游戏";
		dictionary["Host"] = "房主";
		dictionary["Join"] = "加入";
		dictionary["Server"] = "服务器";
		dictionary["Client"] = "客户端";
		dictionary["Connect"] = "连接";
		dictionary["Disconnect"] = "断开连接";
		dictionary["Connected"] = "已连接";
		dictionary["Disconnected"] = "已断开连接";
		dictionary["Connection Failed"] = "连接失败";
		dictionary["Connection Lost"] = "连接丢失";
		dictionary["Timeout"] = "超时";
		dictionary["Timed Out"] = "已超时";
		dictionary["Online"] = "在线";
		dictionary["Offline"] = "离线";
		dictionary["Local"] = "本地";
		dictionary["Remote"] = "远程";
		dictionary["Public"] = "公开";
		dictionary["Private"] = "私有";
		dictionary["Password"] = "密码";
		dictionary["Lobby"] = "大厅";
		dictionary["Room"] = "房间";
		dictionary["Matchmaking"] = "匹配";
		dictionary["Quick Match"] = "快速匹配";
		dictionary["Custom Match"] = "自定义匹配";
		dictionary["Ranked"] = "排位";
		dictionary["Casual"] = "休闲";
		dictionary["Competitive"] = "竞技";
		dictionary["Co-op"] = "合作";
		dictionary["Coop"] = "合作";
		dictionary["Versus"] = "对抗";
		dictionary["PvP"] = "玩家对战";
		dictionary["PvE"] = "玩家对战环境";
		dictionary["Team"] = "队伍";
		dictionary["Squad"] = "小队";
		dictionary["Party"] = "派对";
		dictionary["Clan"] = "氏族";
		dictionary["Guild"] = "公会";
		dictionary["Friend"] = "朋友";
		dictionary["Friends"] = "朋友";
		dictionary["Enemy"] = "敌人";
		dictionary["Enemies"] = "敌人";
		dictionary["Ally"] = "盟友";
		dictionary["Allies"] = "盟友";
		dictionary["Teammate"] = "队友";
		dictionary["Teammates"] = "队友";
		dictionary["Companion"] = "同伴";
		dictionary["Companions"] = "同伴";
		dictionary["NPC"] = "NPC";
		dictionary["AI"] = "AI";
		dictionary["Bot"] = "机器人";
		dictionary["Bots"] = "机器人";
		dictionary["God Mode"] = "无敌模式";
		dictionary["Godmode"] = "无敌模式";
		dictionary["Invincible"] = "无敌";
		dictionary["Infinite Health"] = "无限生命";
		dictionary["Unlimited Health"] = "无限生命";
		dictionary["Infinite Stamina"] = "无限体力";
		dictionary["Unlimited Stamina"] = "无限体力";
		dictionary["Infinite Oxygen"] = "无限氧气";
		dictionary["Unlimited Oxygen"] = "无限氧气";
		dictionary["Infinite Money"] = "无限金钱";
		dictionary["Unlimited Money"] = "无限金钱";
		dictionary["Infinite Ammo"] = "无限弹药";
		dictionary["Unlimited Ammo"] = "无限弹药";
		dictionary["No Reload"] = "无需换弹";
		dictionary["No Recoil"] = "无后坐力";
		dictionary["No Spread"] = "无散射";
		dictionary["No Sway"] = "无晃动";
		dictionary["No Damage"] = "无伤害";
		dictionary["One Hit Kill"] = "一击必杀";
		dictionary["One Shot Kill"] = "一击必杀";
		dictionary["Instant Kill"] = "瞬杀";
		dictionary["Kill All"] = "全部击杀";
		dictionary["Kill Aura"] = "杀戮光环";
		dictionary["Fly"] = "飞行";
		dictionary["Flying"] = "飞行中";
		dictionary["Flight"] = "飞行";
		dictionary["Noclip"] = "穿墙";
		dictionary["No Clip"] = "穿墙";
		dictionary["Speed Hack"] = "速度修改";
		dictionary["Speed Multiplier"] = "速度倍率";
		dictionary["Jump Multiplier"] = "跳跃倍率";
		dictionary["Super Jump"] = "超级跳跃";
		dictionary["High Jump"] = "高跳";
		dictionary["Free Camera"] = "自由视角";
		dictionary["Freecam"] = "自由视角";
		dictionary["Spectator"] = "观察者";
		dictionary["Spectate"] = "观战";
		dictionary["Third Person"] = "第三人称";
		dictionary["First Person"] = "第一人称";
		dictionary["FOV"] = "视野";
		dictionary["Field of View"] = "视野";
		dictionary["Zoom"] = "缩放";
		dictionary["Crosshair"] = "准星";
		dictionary["Hitmarker"] = "命中标记";
		dictionary["Damage Numbers"] = "伤害数字";
		dictionary["Health Bar"] = "生命条";
		dictionary["Player ESP"] = "玩家透视";
		dictionary["Item ESP"] = "物品透视";
		dictionary["Enemy ESP"] = "敌人透视";
		dictionary["Fish ESP"] = "鱼类透视";
		dictionary["Box ESP"] = "方框透视";
		dictionary["Name ESP"] = "名称透视";
		dictionary["Distance ESP"] = "距离透视";
		dictionary["Tracer"] = "追踪线";
		dictionary["Tracers"] = "追踪线";
		dictionary["Aimbot"] = "自瞄";
		dictionary["Aim Assist"] = "瞄准辅助";
		dictionary["Auto Aim"] = "自动瞄准";
		dictionary["Trigger Bot"] = "扳机机器人";
		dictionary["Wallhack"] = "透视";
		dictionary["No Fog"] = "无雾";
		dictionary["No Grass"] = "无草";
		dictionary["No Trees"] = "无树";
		dictionary["No Water"] = "无水";
		dictionary["Instant Fish"] = "即时钓鱼";
		dictionary["Auto Fish"] = "自动钓鱼";
		dictionary["Auto Reel"] = "自动收线";
		dictionary["Auto Loot"] = "自动拾取";
		dictionary["Auto Collect"] = "自动收集";
		dictionary["Auto Sell"] = "自动出售";
		dictionary["Instant Catch"] = "即时捕获";
		dictionary["Always Win"] = "必胜";
		dictionary["Roulette"] = "轮盘";
		dictionary["Lucky"] = "幸运";
		dictionary["Keep Inventory"] = "死亡不掉落";
		dictionary["No Death Penalty"] = "无死亡惩罚";
		dictionary["Death Penalty"] = "死亡惩罚";
		dictionary["Magic Bullet"] = "魔法子弹";
		dictionary["One Punch"] = "一拳超人";
		dictionary["OnePunch"] = "一拳超人";
		dictionary["One Hit"] = "一击";
		dictionary["Damage Multiplier"] = "伤害倍率";
		dictionary["Defense Multiplier"] = "防御倍率";
		dictionary["Money Multiplier"] = "金钱倍率";
		dictionary["XP Multiplier"] = "经验倍率";
		dictionary["Loot Multiplier"] = "掉落倍率";
		dictionary["Spawn Rate"] = "刷新率";
		dictionary["Spawn Multiplier"] = "刷新倍率";
		dictionary["Unlimited"] = "无限";
		dictionary["Infinite"] = "无限";
		dictionary["Movement"] = "移动";
		dictionary["World"] = "世界";
		dictionary["Teleport"] = "传送";
		dictionary["Spawn"] = "生成";
		dictionary["Visuals"] = "视觉";
		dictionary["ESP"] = "透视";
		dictionary["Aim"] = "瞄准";
		dictionary["Misc"] = "杂项";
		dictionary["Miscellaneous"] = "杂项";
		dictionary["Master Switch"] = "主开关";
		dictionary["Enable All"] = "全部启用";
		dictionary["Disable All"] = "全部禁用";
		dictionary["Unload"] = "卸载";
		dictionary["Reload"] = "重新加载";
		dictionary["Save Config"] = "保存配置";
		dictionary["Load Config"] = "加载配置";
		dictionary["Reset Config"] = "重置配置";
		dictionary["Keybinds"] = "按键绑定";
		dictionary["Hotkeys"] = "快捷键";
		dictionary["Config"] = "配置";
		dictionary["About"] = "关于";
		dictionary["Player"] = "玩家";
		dictionary["Weapon"] = "武器";
		dictionary["Weapons"] = "武器";
		dictionary["Inventory"] = "背包";
		dictionary["Money"] = "金钱";
		dictionary["Stats"] = "属性";
		dictionary["Settings"] = "设置";
		dictionary["Cheat"] = "作弊";
		dictionary["Cheats"] = "作弊";
		dictionary["Cheat Menu"] = "作弊菜单";
		dictionary["Mod"] = "模组";
		dictionary["Mods"] = "模组";
		dictionary["Mod Menu"] = "模组菜单";
		dictionary["Mod Manager"] = "模组管理器";
		dictionary["Plugin"] = "插件";
		dictionary["Plugins"] = "插件";
		dictionary["Trainer"] = "修改器";
		dictionary["Hack"] = "黑客";
		dictionary["Hacks"] = "黑客";
		dictionary["Loading"] = "加载中";
		dictionary["Loading..."] = "加载中...";
		dictionary["Please Wait"] = "请稍候";
		dictionary["Connecting"] = "连接中";
		dictionary["Error"] = "错误";
		dictionary["Warning"] = "警告";
		dictionary["Notice"] = "注意";
		dictionary["Info"] = "信息";
		dictionary["Debug"] = "调试";
		dictionary["Success"] = "成功";
		dictionary["Failed"] = "失败";
		dictionary["Complete"] = "完成";
		dictionary["Completed"] = "已完成";
		dictionary["Finished"] = "已完成";
		dictionary["Done"] = "完成";
		dictionary["Ready"] = "就绪";
		dictionary["Not Ready"] = "未就绪";
		dictionary["Pending"] = "待处理";
		dictionary["Processing"] = "处理中";
		dictionary["Saving"] = "保存中";
		dictionary["Saved"] = "已保存";
		dictionary["Loaded"] = "已加载";
		dictionary["Installed"] = "已安装";
		dictionary["Updated"] = "已更新";
		dictionary["Deleted"] = "已删除";
		dictionary["Removed"] = "已移除";
		dictionary["Added"] = "已添加";
		dictionary["Created"] = "已创建";
		dictionary["Modified"] = "已修改";
		dictionary["Changed"] = "已更改";
		dictionary["Activated"] = "已激活";
		dictionary["Deactivated"] = "已停用";
		dictionary["Started"] = "已开始";
		dictionary["Stopped"] = "已停止";
		dictionary["Paused"] = "已暂停";
		dictionary["Resumed"] = "已继续";
		dictionary["Restarted"] = "已重启";
		dictionary["Slider"] = "滑块";
		dictionary["Toggle"] = "切换";
		dictionary["Button"] = "按钮";
		dictionary["Dropdown"] = "下拉菜单";
		dictionary["Input"] = "输入";
		dictionary["Text"] = "文本";
		dictionary["Label"] = "标签";
		dictionary["Header"] = "标题";
		dictionary["Category"] = "分类";
		dictionary["Tab"] = "标签页";
		dictionary["Panel"] = "面板";
		dictionary["Window"] = "窗口";
		dictionary["Menu"] = "菜单";
		dictionary["Popup"] = "弹窗";
		dictionary["Dialog"] = "对话框";
		dictionary["Tooltip"] = "提示";
		dictionary["Hint"] = "提示";
		dictionary["Help"] = "帮助";
		dictionary["Search"] = "搜索";
		dictionary["Filter"] = "筛选";
		dictionary["Sort"] = "排序";
		dictionary["Refresh"] = "刷新";
		dictionary["Reload"] = "重新加载";
		dictionary["Update"] = "更新";
		dictionary["Upgrade"] = "升级";
		dictionary["Downgrade"] = "降级";
		dictionary["Install"] = "安装";
		dictionary["Uninstall"] = "卸载";
		dictionary["Enable"] = "启用";
		dictionary["Disable"] = "禁用";
		dictionary["Activate"] = "激活";
		dictionary["Deactivate"] = "停用";
		dictionary["Open"] = "打开";
		dictionary["Close"] = "关闭";
		dictionary["Show"] = "显示";
		dictionary["Hide"] = "隐藏";
		dictionary["Visible"] = "可见";
		dictionary["Invisible"] = "不可见";
		dictionary["Locked"] = "已锁定";
		dictionary["Unlocked"] = "已解锁";
		dictionary["Equipped"] = "已装备";
		dictionary["Unequipped"] = "未装备";
		dictionary["Selected"] = "已选中";
		dictionary["Deselected"] = "未选中";
		dictionary["Checked"] = "已勾选";
		dictionary["Unchecked"] = "未勾选";
		dictionary["On"] = "开";
		dictionary["Off"] = "关";
		dictionary["Yes"] = "是";
		dictionary["No"] = "否";
		dictionary["OK"] = "确定";
		dictionary["Okay"] = "确定";
		dictionary["Cancel"] = "取消";
		dictionary["Confirm"] = "确认";
		dictionary["Apply"] = "应用";
		dictionary["Save"] = "保存";
		dictionary["Load"] = "加载";
		dictionary["Delete"] = "删除";
		dictionary["Edit"] = "编辑";
		dictionary["Copy"] = "复制";
		dictionary["Paste"] = "粘贴";
		dictionary["Cut"] = "剪切";
		dictionary["Undo"] = "撤销";
		dictionary["Redo"] = "重做";
		dictionary["Select All"] = "全选";
		dictionary["Deselect All"] = "全不选";
		dictionary["Back"] = "返回";
		dictionary["Next"] = "下一个";
		dictionary["Previous"] = "上一个";
		dictionary["First"] = "第一个";
		dictionary["Last"] = "最后一个";
		dictionary["Home"] = "主页";
		dictionary["End"] = "结束";
		dictionary["Top"] = "顶部";
		dictionary["Bottom"] = "底部";
		dictionary["Left"] = "左";
		dictionary["Right"] = "右";
		dictionary["Up"] = "上";
		dictionary["Down"] = "下";
		dictionary["Center"] = "居中";
		dictionary["Middle"] = "中间";
		dictionary["Color"] = "颜色";
		dictionary["Colour"] = "颜色";
		dictionary["Opacity"] = "不透明度";
		dictionary["Transparency"] = "透明度";
		dictionary["Transparent"] = "透明";
		dictionary["Opaque"] = "不透明";
		dictionary["Size"] = "大小";
		dictionary["Width"] = "宽度";
		dictionary["Height"] = "高度";
		dictionary["Scale"] = "缩放";
		dictionary["Rotation"] = "旋转";
		dictionary["Angle"] = "角度";
		dictionary["Position"] = "位置";
		dictionary["Alignment"] = "对齐方式";
		dictionary["Align"] = "对齐";
		dictionary["Font"] = "字体";
		dictionary["Font Size"] = "字号";
		dictionary["Theme"] = "主题";
		dictionary["Style"] = "样式";
		dictionary["Language"] = "语言";
		dictionary["Region"] = "地区";
		dictionary["Locale"] = "区域设置";
		dictionary["Timezone"] = "时区";
		dictionary["Time Zone"] = "时区";
		dictionary["Date Format"] = "日期格式";
		dictionary["Time Format"] = "时间格式";
		dictionary["24-hour"] = "24小时制";
		dictionary["12-hour"] = "12小时制";
		dictionary["AM/PM"] = "上午/下午";
		dictionary["Metric"] = "公制";
		dictionary["Imperial"] = "英制";
		dictionary["Celsius"] = "摄氏度";
		dictionary["Fahrenheit"] = "华氏度";
		dictionary["Kilometers"] = "公里";
		dictionary["Miles"] = "英里";
		dictionary["Kilograms"] = "公斤";
		dictionary["Pounds"] = "磅";
		dictionary["Meters"] = "米";
		dictionary["Feet"] = "英尺";
		dictionary["Centimeters"] = "厘米";
		dictionary["Inches"] = "英寸";
		dictionary["Liters"] = "升";
		dictionary["Gallons"] = "加仑";
		dictionary["Milliliters"] = "毫升";
		dictionary["Ounces"] = "盎司";
		dictionary["Grams"] = "克";
		dictionary["Tons"] = "吨";
		dictionary["Tonnes"] = "公吨";
		dictionary["Kilobytes"] = "千字节";
		dictionary["Megabytes"] = "兆字节";
		dictionary["Gigabytes"] = "吉字节";
		dictionary["Terabytes"] = "太字节";
		dictionary["KB"] = "KB";
		dictionary["MB"] = "MB";
		dictionary["GB"] = "GB";
		dictionary["TB"] = "TB";
		dictionary["Kbps"] = "Kbps";
		dictionary["Mbps"] = "Mbps";
		dictionary["Gbps"] = "Gbps";
		dictionary["Ping"] = "延迟";
		dictionary["Latency"] = "延迟";
		dictionary["Packet Loss"] = "丢包";
		dictionary["Jitter"] = "抖动";
		dictionary["Bandwidth"] = "带宽";
		dictionary["Upload Speed"] = "上传速度";
		dictionary["Download Speed"] = "下载速度";
		dictionary["Connection"] = "连接";
		dictionary["Network"] = "网络";
		dictionary["Internet"] = "互联网";
		dictionary["Online"] = "在线";
		dictionary["Offline"] = "离线";
		dictionary["Local"] = "本地";
		dictionary["Remote"] = "远程";
		dictionary["Server"] = "服务器";
		dictionary["Client"] = "客户端";
		dictionary["Host"] = "主机";
		dictionary["Peer"] = "对等端";
		dictionary["IP Address"] = "IP地址";
		dictionary["Port"] = "端口";
		dictionary["Protocol"] = "协议";
		dictionary["TCP"] = "TCP";
		dictionary["UDP"] = "UDP";
		dictionary["HTTP"] = "HTTP";
		dictionary["HTTPS"] = "HTTPS";
		dictionary["FTP"] = "FTP";
		dictionary["SSH"] = "SSH";
		dictionary["VPN"] = "VPN";
		dictionary["Proxy"] = "代理";
		dictionary["Firewall"] = "防火墙";
		dictionary["Router"] = "路由器";
		dictionary["Modem"] = "调制解调器";
		dictionary["DNS"] = "DNS";
		dictionary["Domain"] = "域名";
		dictionary["URL"] = "网址";
		dictionary["Link"] = "链接";
		dictionary["Website"] = "网站";
		dictionary["Webpage"] = "网页";
		dictionary["Homepage"] = "主页";
		dictionary["Login Page"] = "登录页面";
		dictionary["Dashboard"] = "仪表盘";
		dictionary["Panel"] = "面板";
		dictionary["Console"] = "控制台";
		dictionary["Terminal"] = "终端";
		dictionary["Command Line"] = "命令行";
		dictionary["Shell"] = "Shell";
		dictionary["Script"] = "脚本";
		dictionary["Code"] = "代码";
		dictionary["Program"] = "程序";
		dictionary["Software"] = "软件";
		dictionary["Hardware"] = "硬件";
		dictionary["Device"] = "设备";
		dictionary["Machine"] = "机器";
		dictionary["Computer"] = "计算机";
		dictionary["PC"] = "PC";
		dictionary["Laptop"] = "笔记本电脑";
		dictionary["Desktop"] = "桌面";
		dictionary["Memory"] = "内存";
		dictionary["RAM"] = "内存";
		dictionary["CPU"] = "处理器";
		dictionary["GPU"] = "显卡";
		dictionary["Graphics Card"] = "显卡";
		dictionary["Hard Drive"] = "硬盘";
		dictionary["SSD"] = "固态硬盘";
		dictionary["HDD"] = "机械硬盘";
		dictionary["Storage"] = "存储";
		dictionary["Disk"] = "磁盘";
		dictionary["Drive"] = "驱动器";
		dictionary["Folder"] = "文件夹";
		dictionary["Directory"] = "目录";
		dictionary["File"] = "文件";
		dictionary["Path"] = "路径";
		dictionary["Filename"] = "文件名";
		dictionary["Extension"] = "扩展名";
		dictionary["Format"] = "格式";
		dictionary["Type"] = "类型";
		dictionary["Size"] = "大小";
		dictionary["Date Modified"] = "修改日期";
		dictionary["Date Created"] = "创建日期";
		dictionary["Date Accessed"] = "访问日期";
		dictionary["Author"] = "作者";
		dictionary["Owner"] = "所有者";
		dictionary["Permissions"] = "权限";
		dictionary["Read Only"] = "只读";
		dictionary["Hidden"] = "隐藏";
		dictionary["System"] = "系统";
		dictionary["Archive"] = "归档";
		dictionary["Compressed"] = "已压缩";
		dictionary["Encrypted"] = "已加密";
		dictionary["Shared"] = "已共享";
		dictionary["Public"] = "公开";
		dictionary["Private"] = "私有";
		dictionary["Protected"] = "受保护";
		dictionary["Secure"] = "安全";
		dictionary["Unsecure"] = "不安全";
		dictionary["Safe"] = "安全";
		dictionary["Dangerous"] = "危险";
		dictionary["Risk"] = "风险";
		dictionary["Threat"] = "威胁";
		dictionary["Virus"] = "病毒";
		dictionary["Malware"] = "恶意软件";
		dictionary["Spyware"] = "间谍软件";
		dictionary["Adware"] = "广告软件";
		dictionary["Ransomware"] = "勒索软件";
		dictionary["Trojan"] = "木马";
		dictionary["Worm"] = "蠕虫";
		dictionary["Backdoor"] = "后门";
		dictionary["Exploit"] = "漏洞利用";
		dictionary["Vulnerability"] = "漏洞";
		dictionary["Patch"] = "补丁";
		dictionary["Update"] = "更新";
		dictionary["Upgrade"] = "升级";
		dictionary["Downgrade"] = "降级";
		dictionary["Release"] = "发布";
		dictionary["Version"] = "版本";
		dictionary["Build"] = "构建";
		dictionary["Revision"] = "修订";
		dictionary["Edition"] = "版本";
		dictionary["License"] = "许可证";
		dictionary["Agreement"] = "协议";
		dictionary["Terms"] = "条款";
		dictionary["Privacy"] = "隐私";
		dictionary["Policy"] = "政策";
		dictionary["Rules"] = "规则";
		dictionary["Guidelines"] = "指南";
		dictionary["Instructions"] = "说明";
		dictionary["Manual"] = "手册";
		dictionary["Documentation"] = "文档";
		dictionary["Docs"] = "文档";
		dictionary["Readme"] = "说明文件";
		dictionary["Changelog"] = "更新日志";
		dictionary["Release Notes"] = "发布说明";
		dictionary["FAQ"] = "常见问题";
		dictionary["Support"] = "支持";
		dictionary["Help"] = "帮助";
		dictionary["Contact"] = "联系";
		dictionary["About"] = "关于";
		dictionary["Credits"] = "致谢";
		dictionary["Thanks"] = "感谢";
		dictionary["Special Thanks"] = "特别感谢";
		dictionary["Made by"] = "制作";
		dictionary["Created by"] = "创建者";
		dictionary["Developed by"] = "开发者";
		dictionary["Published by"] = "发行商";
		dictionary["Distributed by"] = "分销商";
		dictionary["Copyright"] = "版权";
		dictionary["All Rights Reserved"] = "保留所有权利";
		dictionary["Trademarks"] = "商标";
		dictionary["Patents"] = "专利";
		dictionary["Open Source"] = "开源";
		dictionary["Free Software"] = "自由软件";
		dictionary["Donation"] = "捐赠";
		dictionary["PayPal"] = "PayPal";
		dictionary["Patreon"] = "Patreon";
		dictionary["Bitcoin"] = "比特币";
		dictionary["Ethereum"] = "以太坊";
		dictionary["Crypto"] = "加密货币";
		dictionary["Wallet"] = "钱包";
		dictionary["Address"] = "地址";
		dictionary["Balance"] = "余额";
		dictionary["Transaction"] = "交易";
		dictionary["Send"] = "发送";
		dictionary["Receive"] = "接收";
		dictionary["Withdraw"] = "提现";
		dictionary["Deposit"] = "存款";
		dictionary["Transfer"] = "转账";
		dictionary["Exchange"] = "兑换";
		dictionary["Trade"] = "交易";
		dictionary["Buy"] = "买入";
		dictionary["Sell"] = "卖出";
		dictionary["Order"] = "订单";
		dictionary["Market Order"] = "市价单";
		dictionary["Limit Order"] = "限价单";
		dictionary["Stop Order"] = "止损单";
		dictionary["Bid"] = "买入价";
		dictionary["Ask"] = "卖出价";
		dictionary["Spread"] = "点差";
		dictionary["Volume"] = "成交量";
		dictionary["Liquidity"] = "流动性";
		dictionary["Volatility"] = "波动性";
		dictionary["Trend"] = "趋势";
		dictionary["Bullish"] = "看涨";
		dictionary["Bearish"] = "看跌";
		dictionary["Long"] = "做多";
		dictionary["Short"] = "做空";
		dictionary["Leverage"] = "杠杆";
		dictionary["Margin"] = "保证金";
		dictionary["Collateral"] = "抵押品";
		dictionary["Interest"] = "利息";
		dictionary["Fee"] = "费用";
		dictionary["Commission"] = "佣金";
		dictionary["Tax"] = "税";
		dictionary["Price"] = "价格";
		dictionary["Value"] = "价值";
		dictionary["Cost"] = "成本";
		dictionary["Profit"] = "利润";
		dictionary["Loss"] = "亏损";
		dictionary["Gain"] = "收益";
		dictionary["Return"] = "回报";
		dictionary["ROI"] = "投资回报率";
		dictionary["APY"] = "年化收益率";
		dictionary["APR"] = "年利率";
		dictionary["Compound"] = "复利";
		dictionary["Simple"] = "单利";
		dictionary["Principal"] = "本金";
		dictionary["Investment"] = "投资";
		dictionary["Asset"] = "资产";
		dictionary["Liability"] = "负债";
		dictionary["Equity"] = "权益";
		dictionary["Debt"] = "债务";
		dictionary["Credit"] = "信用";
		dictionary["Loan"] = "贷款";
		dictionary["Mortgage"] = "抵押贷款";
		dictionary["Insurance"] = "保险";
		dictionary["Premium"] = "保费";
		dictionary["Claim"] = "理赔";
		dictionary["Policy"] = "保单";
		dictionary["Coverage"] = "保额";
		dictionary["Deductible"] = "免赔额";
		dictionary["Beneficiary"] = "受益人";
		dictionary["Insured"] = "被保险人";
		dictionary["Insurer"] = "保险人";
		dictionary["Underwriter"] = "核保人";
		dictionary["Agent"] = "代理人";
		dictionary["Broker"] = "经纪人";
		dictionary["Advisor"] = "顾问";
		dictionary["Consultant"] = "咨询师";
		dictionary["Manager"] = "经理";
		dictionary["Director"] = "总监";
		dictionary["CEO"] = "首席执行官";
		dictionary["CFO"] = "首席财务官";
		dictionary["CTO"] = "首席技术官";
		dictionary["COO"] = "首席运营官";
		dictionary["President"] = "总裁";
		dictionary["Vice President"] = "副总裁";
		dictionary["Chairman"] = "董事长";
		dictionary["Board"] = "董事会";
		dictionary["Shareholder"] = "股东";
		dictionary["Stakeholder"] = "利益相关者";
		dictionary["Investor"] = "投资者";
		dictionary["Partner"] = "合伙人";
		dictionary["Associate"] = "助理";
		dictionary["Assistant"] = "助手";
		dictionary["Intern"] = "实习生";
		dictionary["Employee"] = "员工";
		dictionary["Employer"] = "雇主";
		dictionary["Staff"] = "员工";
		dictionary["Team"] = "团队";
		dictionary["Crew"] = "船员";
		dictionary["Member"] = "成员";
		dictionary["Leader"] = "领导者";
		dictionary["Captain"] = "船长";
		dictionary["Skipper"] = "船长";
		dictionary["Mate"] = "大副";
		dictionary["Engineer"] = "工程师";
		dictionary["Mechanic"] = "机械师";
		dictionary["Technician"] = "技术员";
		dictionary["Operator"] = "操作员";
		dictionary["Worker"] = "工人";
		dictionary["Laborer"] = "劳动者";
		dictionary["Craftsman"] = "工匠";
		dictionary["Artisan"] = "手艺人";
		dictionary["Builder"] = "建造者";
		dictionary["Architect"] = "建筑师";
		dictionary["Designer"] = "设计师";
		dictionary["Artist"] = "艺术家";
		dictionary["Painter"] = "画家";
		dictionary["Sculptor"] = "雕塑家";
		dictionary["Musician"] = "音乐家";
		dictionary["Composer"] = "作曲家";
		dictionary["Singer"] = "歌手";
		dictionary["Dancer"] = "舞者";
		dictionary["Actor"] = "演员";
		dictionary["Actress"] = "女演员";
		dictionary["Director"] = "导演";
		dictionary["Producer"] = "制片人";
		dictionary["Writer"] = "作家";
		dictionary["Author"] = "作者";
		dictionary["Poet"] = "诗人";
		dictionary["Novelist"] = "小说家";
		dictionary["Journalist"] = "记者";
		dictionary["Reporter"] = "记者";
		dictionary["Editor"] = "编辑";
		dictionary["Publisher"] = "出版商";
		dictionary["Librarian"] = "图书管理员";
		dictionary["Teacher"] = "老师";
		dictionary["Professor"] = "教授";
		dictionary["Lecturer"] = "讲师";
		dictionary["Tutor"] = "家教";
		dictionary["Student"] = "学生";
		dictionary["Pupil"] = "小学生";
		dictionary["Scholar"] = "学者";
		dictionary["Researcher"] = "研究员";
		dictionary["Scientist"] = "科学家";
		dictionary["Doctor"] = "医生";
		dictionary["Physician"] = "内科医生";
		dictionary["Surgeon"] = "外科医生";
		dictionary["Nurse"] = "护士";
		dictionary["Dentist"] = "牙医";
		dictionary["Veterinarian"] = "兽医";
		dictionary["Pharmacist"] = "药剂师";
		dictionary["Therapist"] = "治疗师";
		dictionary["Psychologist"] = "心理学家";
		dictionary["Psychiatrist"] = "精神科医生";
		dictionary["Counselor"] = "咨询师";
		dictionary["Lawyer"] = "律师";
		dictionary["Attorney"] = "律师";
		dictionary["Judge"] = "法官";
		dictionary["Prosecutor"] = "检察官";
		dictionary["Defendant"] = "被告";
		dictionary["Plaintiff"] = "原告";
		dictionary["Witness"] = "证人";
		dictionary["Jury"] = "陪审团";
		dictionary["Bailiff"] = "法警";
		dictionary["Police"] = "警察";
		dictionary["Officer"] = "警官";
		dictionary["Detective"] = "侦探";
		dictionary["Sheriff"] = "警长";
		dictionary["Deputy"] = "副警长";
		dictionary["Marshal"] = "法警";
		dictionary["Ranger"] = "护林员";
		dictionary["Guard"] = "守卫";
		dictionary["Security"] = "保安";
		dictionary["Soldier"] = "士兵";
		dictionary["Warrior"] = "战士";
		dictionary["Knight"] = "骑士";
		dictionary["Paladin"] = "圣骑士";
		dictionary["Archer"] = "弓箭手";
		dictionary["Mage"] = "法师";
		dictionary["Wizard"] = "巫师";
		dictionary["Sorcerer"] = "术士";
		dictionary["Warlock"] = "术士";
		dictionary["Necromancer"] = "死灵法师";
		dictionary["Druid"] = "德鲁伊";
		dictionary["Shaman"] = "萨满";
		dictionary["Priest"] = "牧师";
		dictionary["Cleric"] = "神职人员";
		dictionary["Monk"] = "僧侣";
		dictionary["Rogue"] = "盗贼";
		dictionary["Thief"] = "小偷";
		dictionary["Assassin"] = "刺客";
		dictionary["Bard"] = "吟游诗人";
		dictionary["Ranger"] = "游侠";
		dictionary["Beastmaster"] = "驯兽师";
		dictionary["Summoner"] = "召唤师";
		dictionary["Ninja"] = "忍者";
		dictionary["Samurai"] = "武士";
		dictionary["Pirate"] = "海盗";
		dictionary["Cowboy"] = "牛仔";
		dictionary["Hunter"] = "猎人";
		dictionary["Fisherman"] = "渔夫";
		dictionary["Farmer"] = "农民";
		dictionary["Miner"] = "矿工";
		dictionary["Lumberjack"] = "伐木工";
		dictionary["Blacksmith"] = "铁匠";
		dictionary["Carpenter"] = "木匠";
		dictionary["Tailor"] = "裁缝";
		dictionary["Cook"] = "厨师";
		dictionary["Chef"] = "主厨";
		dictionary["Baker"] = "面包师";
		dictionary["Butcher"] = "屠夫";
		dictionary["Brewer"] = "酿酒师";
		dictionary["Merchant"] = "商人";
		dictionary["Trader"] = "交易者";
		dictionary["Vendor"] = "小贩";
		dictionary["Shopkeeper"] = "店主";
		dictionary["Innkeeper"] = "客栈老板";
		dictionary["Bartender"] = "酒保";
		dictionary["Waiter"] = "服务员";
		dictionary["Waitress"] = "女服务员";
		dictionary["Driver"] = "司机";
		dictionary["Pilot"] = "飞行员";
		dictionary["Captain"] = "船长";
		dictionary["Navigator"] = "领航员";
		dictionary["Explorer"] = "探险家";
		dictionary["Adventurer"] = "冒险家";
		dictionary["Traveler"] = "旅行者";
		dictionary["Tourist"] = "游客";
		dictionary["Visitor"] = "访客";
		dictionary["Guest"] = "客人";
		dictionary["Host"] = "主人";
		dictionary["Hostess"] = "女主人";
		dictionary["Owner"] = "所有者";
		dictionary["Landlord"] = "房东";
		dictionary["Tenant"] = "房客";
		dictionary["Neighbor"] = "邻居";
		dictionary["Friend"] = "朋友";
		dictionary["Enemy"] = "敌人";
		dictionary["Rival"] = "对手";
		dictionary["Ally"] = "盟友";
		dictionary["Companion"] = "同伴";
		dictionary["Partner"] = "伙伴";
		dictionary["Teammate"] = "队友";
		dictionary["Colleague"] = "同事";
		dictionary["Coworker"] = "同事";
		dictionary["Boss"] = "老板";
		dictionary["Supervisor"] = "主管";
		dictionary["Subordinate"] = "下属";
		dictionary["Senior"] = "资深";
		dictionary["Junior"] = "初级";
		dictionary["Apprentice"] = "学徒";
		dictionary["Master"] = "大师";
		dictionary["Expert"] = "专家";
		dictionary["Novice"] = "新手";
		dictionary["Beginner"] = "初学者";
		dictionary["Amateur"] = "业余爱好者";
		dictionary["Professional"] = "专业人士";
		dictionary["Veteran"] = "老兵";
		dictionary["Rookie"] = "菜鸟";
		dictionary["Newbie"] = "新手";
		dictionary["Noob"] = "菜鸟";
		dictionary["Pro"] = "高手";
		dictionary["Elite"] = "精英";
		dictionary["Legend"] = "传奇";
		dictionary["Hero"] = "英雄";
		dictionary["Villain"] = "反派";
		dictionary["Protagonist"] = "主角";
		dictionary["Antagonist"] = "对手";
		dictionary["NPC"] = "NPC";
		dictionary["AI"] = "AI";
		dictionary["Bot"] = "机器人";
		dictionary["Character"] = "角色";
		dictionary["Avatar"] = "头像";
		dictionary["Skin"] = "皮肤";
		dictionary["Cosmetic"] = "装饰品";
		dictionary["Emote"] = "表情";
		dictionary["Emoji"] = "表情符号";
		dictionary["Sticker"] = "贴纸";
		dictionary["Badge"] = "徽章";
		dictionary["Title"] = "称号";
		dictionary["Rank"] = "段位";
		dictionary["Tier"] = "层级";
		dictionary["Level"] = "等级";
		dictionary["Grade"] = "品级";
		dictionary["Class"] = "职业";
		dictionary["Job"] = "职业";
		dictionary["Role"] = "角色";
		dictionary["Position"] = "位置";
		dictionary["Duty"] = "责任";
		dictionary["Responsibility"] = "职责";
		dictionary["Task"] = "任务";
		dictionary["Mission"] = "使命";
		dictionary["Goal"] = "目标";
		dictionary["Objective"] = "目标";
		dictionary["Target"] = "目标";
		dictionary["Purpose"] = "目的";
		dictionary["Reason"] = "原因";
		dictionary["Cause"] = "起因";
		dictionary["Effect"] = "效果";
		dictionary["Result"] = "结果";
		dictionary["Outcome"] = "成果";
		dictionary["Consequence"] = "后果";
		dictionary["Impact"] = "影响";
		dictionary["Influence"] = "影响力";
		dictionary["Function"] = "功能";
		dictionary["Feature"] = "特性";
		dictionary["Characteristic"] = "特征";
		dictionary["Property"] = "属性";
		dictionary["Attribute"] = "属性";
		dictionary["Quality"] = "品质";
		dictionary["Trait"] = "特质";
		dictionary["Habit"] = "习惯";
		dictionary["Custom"] = "习俗";
		dictionary["Tradition"] = "传统";
		dictionary["Culture"] = "文化";
		dictionary["Civilization"] = "文明";
		dictionary["Society"] = "社会";
		dictionary["Community"] = "社区";
		dictionary["Population"] = "人口";
		dictionary["People"] = "人们";
		dictionary["Person"] = "人";
		dictionary["Human"] = "人类";
		dictionary["Humanity"] = "人性";
		dictionary["Mankind"] = "人类";
		dictionary["Man"] = "男人";
		dictionary["Woman"] = "女人";
		dictionary["Boy"] = "男孩";
		dictionary["Girl"] = "女孩";
		dictionary["Child"] = "孩子";
		dictionary["Children"] = "孩子们";
		dictionary["Baby"] = "婴儿";
		dictionary["Infant"] = "婴儿";
		dictionary["Toddler"] = "幼儿";
		dictionary["Kid"] = "小孩";
		dictionary["Teen"] = "青少年";
		dictionary["Teenager"] = "青少年";
		dictionary["Adult"] = "成年人";
		dictionary["Elder"] = "长者";
		dictionary["Elderly"] = "老年人";
		dictionary["Old"] = "老";
		dictionary["Young"] = "年轻";
		dictionary["Age"] = "年龄";
		dictionary["Birthday"] = "生日";
		dictionary["Birth"] = "出生";
		dictionary["Death"] = "死亡";
		dictionary["Life"] = "生命";
		dictionary["Lifetime"] = "一生";
		dictionary["Lifespan"] = "寿命";
		dictionary["Health"] = "健康";
		dictionary["Sickness"] = "疾病";
		dictionary["Illness"] = "疾病";
		dictionary["Disease"] = "疾病";
		dictionary["Disorder"] = "紊乱";
		dictionary["Condition"] = "状况";
		dictionary["Symptom"] = "症状";
		dictionary["Diagnosis"] = "诊断";
		dictionary["Treatment"] = "治疗";
		dictionary["Therapy"] = "疗法";
		dictionary["Medicine"] = "药物";
		dictionary["Drug"] = "药品";
		dictionary["Pill"] = "药丸";
		dictionary["Tablet"] = "药片";
		dictionary["Capsule"] = "胶囊";
		dictionary["Syrup"] = "糖浆";
		dictionary["Injection"] = "注射";
		dictionary["Vaccine"] = "疫苗";
		dictionary["Antibiotic"] = "抗生素";
		dictionary["Painkiller"] = "止痛药";
		dictionary["Aspirin"] = "阿司匹林";
		dictionary["Vitamin"] = "维生素";
		dictionary["Supplement"] = "补充剂";
		dictionary["Herbal"] = "草药";
		dictionary["Natural"] = "天然";
		dictionary["Organic"] = "有机";
		dictionary["Healthy"] = "健康";
		dictionary["Unhealthy"] = "不健康";
		dictionary["Nutritious"] = "有营养";
		dictionary["Delicious"] = "美味";
		dictionary["Tasty"] = "好吃";
		dictionary["Yummy"] = "好吃";
		dictionary["Disgusting"] = "恶心";
		dictionary["Gross"] = "恶心";
		dictionary["Sweet"] = "甜";
		dictionary["Sour"] = "酸";
		dictionary["Bitter"] = "苦";
		dictionary["Salty"] = "咸";
		dictionary["Spicy"] = "辣";
		dictionary["Hot"] = "热";
		dictionary["Cold"] = "冷";
		dictionary["Warm"] = "温暖";
		dictionary["Cool"] = "凉爽";
		dictionary["Fresh"] = "新鲜";
		dictionary["Stale"] = "不新鲜";
		dictionary["Raw"] = "生";
		dictionary["Cooked"] = "熟";
		dictionary["Rare"] = "一分熟";
		dictionary["Medium Rare"] = "三分熟";
		dictionary["Medium"] = "五分熟";
		dictionary["Medium Well"] = "七分熟";
		dictionary["Well Done"] = "全熟";
		dictionary["Burnt"] = "烧焦";
		dictionary["Overcooked"] = "煮过头";
		dictionary["Undercooked"] = "没煮熟";
		dictionary["Food"] = "食物";
		dictionary["Drink"] = "饮料";
		dictionary["Beverage"] = "饮品";
		dictionary["Meal"] = "一餐";
		dictionary["Dish"] = "菜肴";
		dictionary["Cuisine"] = "菜系";
		dictionary["Recipe"] = "食谱";
		dictionary["Ingredient"] = "食材";
		dictionary["Seasoning"] = "调味料";
		dictionary["Spice"] = "香料";
		dictionary["Herb"] = "香草";
		dictionary["Sauce"] = "酱汁";
		dictionary["Dressing"] = "调味汁";
		dictionary["Condiment"] = "调味品";
		dictionary["Garnish"] = "装饰";
		dictionary["Topping"] = "配料";
		dictionary["Filling"] = "馅料";
		dictionary["Crust"] = "外皮";
		dictionary["Frosting"] = "糖霜";
		dictionary["Icing"] = "糖衣";
		dictionary["Glaze"] = "淋面";
		dictionary["Syrup"] = "糖浆";
		dictionary["Honey"] = "蜂蜜";
		dictionary["Sugar"] = "糖";
		dictionary["Salt"] = "盐";
		dictionary["Pepper"] = "胡椒";
		dictionary["Oil"] = "油";
		dictionary["Butter"] = "黄油";
		dictionary["Margarine"] = "人造黄油";
		dictionary["Lard"] = "猪油";
		dictionary["Fat"] = "脂肪";
		dictionary["Grease"] = "油脂";
		dictionary["Flour"] = "面粉";
		dictionary["Starch"] = "淀粉";
		dictionary["Cornstarch"] = "玉米淀粉";
		dictionary["Baking Powder"] = "泡打粉";
		dictionary["Baking Soda"] = "小苏打";
		dictionary["Yeast"] = "酵母";
		dictionary["Egg"] = "鸡蛋";
		dictionary["Milk"] = "牛奶";
		dictionary["Cream"] = "奶油";
		dictionary["Yogurt"] = "酸奶";
		dictionary["Cheese"] = "奶酪";
		dictionary["Meat"] = "肉";
		dictionary["Beef"] = "牛肉";
		dictionary["Pork"] = "猪肉";
		dictionary["Lamb"] = "羊肉";
		dictionary["Mutton"] = "羊肉";
		dictionary["Chicken"] = "鸡肉";
		dictionary["Turkey"] = "火鸡";
		dictionary["Duck"] = "鸭肉";
		dictionary["Goose"] = "鹅肉";
		dictionary["Fish"] = "鱼";
		dictionary["Seafood"] = "海鲜";
		dictionary["Shrimp"] = "虾";
		dictionary["Prawn"] = "对虾";
		dictionary["Crab"] = "螃蟹";
		dictionary["Lobster"] = "龙虾";
		dictionary["Oyster"] = "牡蛎";
		dictionary["Clam"] = "蛤蜊";
		dictionary["Mussel"] = "贻贝";
		dictionary["Scallop"] = "扇贝";
		dictionary["Squid"] = "鱿鱼";
		dictionary["Octopus"] = "章鱼";
		dictionary["Cuttlefish"] = "墨鱼";
		dictionary["Seaweed"] = "海藻";
		dictionary["Kelp"] = "海带";
		dictionary["Nori"] = "海苔";
		dictionary["Vegetable"] = "蔬菜";
		dictionary["Fruit"] = "水果";
		dictionary["Nut"] = "坚果";
		dictionary["Seed"] = "种子";
		dictionary["Grain"] = "谷物";
		dictionary["Rice"] = "米饭";
		dictionary["Wheat"] = "小麦";
		dictionary["Barley"] = "大麦";
		dictionary["Oat"] = "燕麦";
		dictionary["Corn"] = "玉米";
		dictionary["Maize"] = "玉米";
		dictionary["Potato"] = "土豆";
		dictionary["Tomato"] = "番茄";
		dictionary["Onion"] = "洋葱";
		dictionary["Garlic"] = "大蒜";
		dictionary["Ginger"] = "姜";
		dictionary["Carrot"] = "胡萝卜";
		dictionary["Cabbage"] = "卷心菜";
		dictionary["Lettuce"] = "生菜";
		dictionary["Spinach"] = "菠菜";
		dictionary["Broccoli"] = "西兰花";
		dictionary["Cauliflower"] = "花椰菜";
		dictionary["Cucumber"] = "黄瓜";
		dictionary["Zucchini"] = "西葫芦";
		dictionary["Pumpkin"] = "南瓜";
		dictionary["Squash"] = "南瓜";
		dictionary["Eggplant"] = "茄子";
		dictionary["Aubergine"] = "茄子";
		dictionary["Pepper"] = "甜椒";
		dictionary["Bell Pepper"] = "灯笼椒";
		dictionary["Chili"] = "辣椒";
		dictionary["Chili Pepper"] = "辣椒";
		dictionary["Mushroom"] = "蘑菇";
		dictionary["Truffle"] = "松露";
		dictionary["Apple"] = "苹果";
		dictionary["Banana"] = "香蕉";
		dictionary["Orange"] = "橙子";
		dictionary["Lemon"] = "柠檬";
		dictionary["Lime"] = "青柠";
		dictionary["Grape"] = "葡萄";
		dictionary["Strawberry"] = "草莓";
		dictionary["Blueberry"] = "蓝莓";
		dictionary["Raspberry"] = "树莓";
		dictionary["Blackberry"] = "黑莓";
		dictionary["Cranberry"] = "蔓越莓";
		dictionary["Cherry"] = "樱桃";
		dictionary["Peach"] = "桃子";
		dictionary["Pear"] = "梨";
		dictionary["Plum"] = "李子";
		dictionary["Mango"] = "芒果";
		dictionary["Pineapple"] = "菠萝";
		dictionary["Coconut"] = "椰子";
		dictionary["Watermelon"] = "西瓜";
		dictionary["Melon"] = "甜瓜";
		dictionary["Cantaloupe"] = "哈密瓜";
		dictionary["Honeydew"] = "白兰瓜";
		dictionary["Kiwi"] = "猕猴桃";
		dictionary["Avocado"] = "牛油果";
		dictionary["Papaya"] = "木瓜";
		dictionary["Guava"] = "番石榴";
		dictionary["Lychee"] = "荔枝";
		dictionary["Longan"] = "龙眼";
		dictionary["Rambutan"] = "红毛丹";
		dictionary["Mangosteen"] = "山竹";
		dictionary["Durian"] = "榴莲";
		dictionary["Jackfruit"] = "菠萝蜜";
		dictionary["Passion Fruit"] = "百香果";
		dictionary["Dragon Fruit"] = "火龙果";
		dictionary["Star Fruit"] = "杨桃";
		dictionary["Fig"] = "无花果";
		dictionary["Date"] = "椰枣";
		dictionary["Prune"] = "西梅";
		dictionary["Raisin"] = "葡萄干";
		dictionary["Apricot"] = "杏";
		dictionary["Nectarine"] = "油桃";
		dictionary["Tangerine"] = "橘子";
		dictionary["Mandarin"] = "柑橘";
		dictionary["Clementine"] = "克莱门氏小柑橘";
		dictionary["Grapefruit"] = "西柚";
		dictionary["Pomelo"] = "柚子";
		dictionary["Walnut"] = "核桃";
		dictionary["Almond"] = "杏仁";
		dictionary["Cashew"] = "腰果";
		dictionary["Pistachio"] = "开心果";
		dictionary["Hazelnut"] = "榛子";
		dictionary["Macadamia"] = "夏威夷果";
		dictionary["Pecan"] = "碧根果";
		dictionary["Brazil Nut"] = "巴西坚果";
		dictionary["Chestnut"] = "栗子";
		dictionary["Acorn"] = "橡子";
		dictionary["Peanut"] = "花生";
		dictionary["Sunflower Seed"] = "葵花籽";
		dictionary["Pumpkin Seed"] = "南瓜籽";
		dictionary["Sesame"] = "芝麻";
		dictionary["Chia Seed"] = "奇亚籽";
		dictionary["Flax Seed"] = "亚麻籽";
		dictionary["Poppy Seed"] = "罂粟籽";
		dictionary["Quinoa"] = "藜麦";
		dictionary["Buckwheat"] = "荞麦";
		dictionary["Millet"] = "小米";
		dictionary["Sorghum"] = "高粱";
		dictionary["Rye"] = "黑麦";
		dictionary["Triticale"] = "小黑麦";
		dictionary["Spelt"] = "斯佩尔特小麦";
		dictionary["Kamut"] = "卡姆特小麦";
		dictionary["Amaranth"] = "苋菜";
		dictionary["Teff"] = "画眉草";
		dictionary["Fonio"] = "福尼奥米";
		dictionary["Wild Rice"] = "野生稻";
		dictionary["Black Rice"] = "黑米";
		dictionary["Brown Rice"] = "糙米";
		dictionary["White Rice"] = "白米";
		dictionary["Red Rice"] = "红米";
		dictionary["Jasmine Rice"] = "香米";
		dictionary["Basmati Rice"] = "印度香米";
		dictionary["Arborio Rice"] = "意大利米";
		dictionary["Sushi Rice"] = "寿司米";
		dictionary["Glutinous Rice"] = "糯米";
		dictionary["Sticky Rice"] = "糯米";
		dictionary["Sweet Rice"] = "甜米";
		dictionary["Mochi"] = "麻糬";
		dictionary["Rice Cake"] = "年糕";
		dictionary["Rice Noodle"] = "米粉";
		dictionary["Rice Vinegar"] = "米醋";
		dictionary["Rice Wine"] = "米酒";
		dictionary["Sake"] = "清酒";
		dictionary["Shochu"] = "烧酎";
		dictionary["Soju"] = "烧酒";
		dictionary["Whiskey"] = "威士忌";
		dictionary["Whisky"] = "威士忌";
		dictionary["Scotch"] = "苏格兰威士忌";
		dictionary["Bourbon"] = "波本威士忌";
		dictionary["Rye Whiskey"] = "黑麦威士忌";
		dictionary["Irish Whiskey"] = "爱尔兰威士忌";
		dictionary["Canadian Whisky"] = "加拿大威士忌";
		dictionary["Japanese Whisky"] = "日本威士忌";
		dictionary["Brandy"] = "白兰地";
		dictionary["Cognac"] = "干邑";
		dictionary["Armagnac"] = "雅文邑";
		dictionary["Calvados"] = "卡尔瓦多斯";
		dictionary["Grappa"] = "格拉帕";
		dictionary["Pisco"] = "皮斯科";
		dictionary["Rum"] = "朗姆酒";
		dictionary["White Rum"] = "白朗姆酒";
		dictionary["Dark Rum"] = "黑朗姆酒";
		dictionary["Spiced Rum"] = "香料朗姆酒";
		dictionary["Gin"] = "金酒";
		dictionary["London Dry Gin"] = "伦敦干金酒";
		dictionary["Plymouth Gin"] = "普利茅斯金酒";
		dictionary["Old Tom Gin"] = "老汤姆金酒";
		dictionary["Vodka"] = "伏特加";
		dictionary["Tequila"] = "龙舌兰酒";
		dictionary["Mezcal"] = "梅斯卡尔";
		dictionary["Absinthe"] = "苦艾酒";
		dictionary["Sambuca"] = "萨姆布卡";
		dictionary["Ouzo"] = "乌佐酒";
		dictionary["Raki"] = "拉克酒";
		dictionary["Arak"] = "亚力酒";
		dictionary["Pastis"] = "帕斯提斯";
		dictionary["Anisette"] = "茴香酒";
		dictionary["Liqueur"] = "利口酒";
		dictionary["Cordial"] = "甜酒";
		dictionary["Amaretto"] = "杏仁利口酒";
		dictionary["Baileys"] = "百利甜酒";
		dictionary["Kahlua"] = "咖啡利口酒";
		dictionary["Tia Maria"] = "咖啡酒";
		dictionary["Cointreau"] = "君度";
		dictionary["Grand Marnier"] = "柑曼怡";
		dictionary["Triple Sec"] = "橙皮酒";
		dictionary["Curacao"] = "库拉索酒";
		dictionary["Blue Curacao"] = "蓝橙酒";
		dictionary["Midori"] = "蜜瓜利口酒";
		dictionary["Chambord"] = "香博皇家力娇酒";
		dictionary["Frangelico"] = "榛子利口酒";
		dictionary["Strega"] = "圣鹿利口酒";
		dictionary["Galliano"] = "加利安奴";
		dictionary["Jägermeister"] = "野格";
		dictionary["Jagermeister"] = "野格";
		dictionary["Chartreuse"] = "查特酒";
		dictionary["Benedictine"] = "廊酒";
		dictionary["Drambuie"] = "杜林标";
		dictionary["Southern Comfort"] = "南方安逸";
		dictionary["Fireball"] = "火球肉桂威士忌";
		dictionary["Campari"] = "金巴利";
		dictionary["Aperol"] = "阿佩罗";
		dictionary["Cynar"] = "西那";
		dictionary["Fernet"] = "菲奈特";
		dictionary["Fernet-Branca"] = "菲奈特布兰卡";
		dictionary["Suze"] = "苏兹";
		dictionary["Lillet"] = "利莱酒";
		dictionary["Dubonnet"] = "杜本内";
		dictionary["Pimm's"] = "飘仙一号";
		dictionary["Pimms"] = "飘仙一号";
		dictionary["Vermouth"] = "味美思";
		dictionary["Dry Vermouth"] = "干味美思";
		dictionary["Sweet Vermouth"] = "甜味美思";
		dictionary["Red Vermouth"] = "红味美思";
		dictionary["White Vermouth"] = "白味美思";
		dictionary["Rosso"] = "红味美思";
		dictionary["Bianco"] = "白味美思";
		dictionary["Extra Dry"] = "超干";
		dictionary["Martini"] = "马提尼";
		dictionary["Manhattan"] = "曼哈顿";
		dictionary["Old Fashioned"] = "古典鸡尾酒";
		dictionary["Negroni"] = "尼格罗尼";
		dictionary["Mojito"] = "莫吉托";
		dictionary["Caipirinha"] = "卡皮林哈";
		dictionary["Margarita"] = "玛格丽特";
		dictionary["Daiquiri"] = "代基里";
		dictionary["Cosmopolitan"] = "大都会";
		dictionary["Long Island Iced Tea"] = "长岛冰茶";
		dictionary["Sex on the Beach"] = "性感海滩";
		dictionary["Pina Colada"] = "椰林飘香";
		dictionary["Piña Colada"] = "椰林飘香";
		dictionary["Mai Tai"] = "迈泰";
		dictionary["Zombie"] = "僵尸";
		dictionary["Hurricane"] = "飓风";
		dictionary["Singapore Sling"] = "新加坡司令";
		dictionary["Tom Collins"] = "汤姆柯林斯";
		dictionary["John Collins"] = "约翰柯林斯";
		dictionary["Moscow Mule"] = "莫斯科骡子";
		dictionary["Dark 'n' Stormy"] = "黑暗风暴";
		dictionary["Mint Julep"] = "薄荷朱利普";
		dictionary["Whiskey Sour"] = "威士忌酸";
		dictionary["Amaretto Sour"] = "杏仁酸";
		dictionary["Tequila Sunrise"] = "龙舌兰日出";
		dictionary["Bloody Mary"] = "血腥玛丽";
		dictionary["Caesar"] = "凯撒";
		dictionary["Michelada"] = "米切拉达";
		dictionary["Screwdriver"] = "螺丝起子";
		dictionary["Mimosa"] = "含羞草";
		dictionary["Bellini"] = "贝利尼";
		dictionary["Spritz"] = "斯普里兹";
		dictionary["Aperol Spritz"] = "阿佩罗斯普里兹";
		dictionary["Campari Spritz"] = "金巴利斯普里兹";
		dictionary["Prosecco"] = "普罗塞克";
		dictionary["Champagne"] = "香槟";
		dictionary["Sparkling Wine"] = "起泡酒";
		dictionary["Cava"] = "卡瓦";
		dictionary["Sekt"] = "塞克特";
		dictionary["Asti"] = "阿斯蒂";
		dictionary["Moscato d'Asti"] = "莫斯卡托阿斯蒂";
		dictionary["Lambrusco"] = "蓝布鲁斯科";
		dictionary["Red Wine"] = "红葡萄酒";
		dictionary["White Wine"] = "白葡萄酒";
		dictionary["Rosé"] = "桃红葡萄酒";
		dictionary["Rose"] = "桃红葡萄酒";
		dictionary["Blush"] = "粉红酒";
		dictionary["Cabernet Sauvignon"] = "赤霞珠";
		dictionary["Merlot"] = "梅洛";
		dictionary["Pinot Noir"] = "黑皮诺";
		dictionary["Syrah"] = "西拉";
		dictionary["Shiraz"] = "设拉子";
		dictionary["Zinfandel"] = "仙粉黛";
		dictionary["Malbec"] = "马尔贝克";
		dictionary["Tempranillo"] = "丹魄";
		dictionary["Rioja"] = "里奥哈";
		dictionary["Chianti"] = "基安蒂";
		dictionary["Sangiovese"] = "桑娇维塞";
		dictionary["Nebbiolo"] = "内比奥罗";
		dictionary["Barolo"] = "巴罗洛";
		dictionary["Barbaresco"] = "巴巴莱斯科";
		dictionary["Brunello"] = "布鲁奈罗";
		dictionary["Aglianico"] = "艾格尼科";
		dictionary["Carmenere"] = "佳美娜";
		dictionary["Petit Verdot"] = "小维多";
		dictionary["Cabernet Franc"] = "品丽珠";
		dictionary["Gamay"] = "佳美";
		dictionary["Grenache"] = "歌海娜";
		dictionary["Garnacha"] = "加尔纳恰";
		dictionary["Mourvedre"] = "慕合怀特";
		dictionary["Monastrell"] = "莫纳斯特雷尔";
		dictionary["Carignan"] = "佳丽酿";
		dictionary["Cinsault"] = "神索";
		dictionary["Pinotage"] = "皮诺塔吉";
		dictionary["Saperavi"] = "萨别拉维";
		dictionary["Chardonnay"] = "霞多丽";
		dictionary["Sauvignon Blanc"] = "长相思";
		dictionary["Pinot Grigio"] = "灰皮诺";
		dictionary["Pinot Gris"] = "灰皮诺";
		dictionary["Riesling"] = "雷司令";
		dictionary["Gewürztraminer"] = "琼瑶浆";
		dictionary["Gewurztraminer"] = "琼瑶浆";
		dictionary["Viognier"] = "维欧尼";
		dictionary["Chenin Blanc"] = "白诗南";
		dictionary["Semillon"] = "赛美蓉";
		dictionary["Muscadet"] = "密斯卡岱";
		dictionary["Albarino"] = "阿尔巴利诺";
		dictionary["Verdejo"] = "弗德乔";
		dictionary["Gruner Veltliner"] = "绿维特利纳";
		dictionary["Grüner Veltliner"] = "绿维特利纳";
		dictionary["Torrontes"] = "特浓情";
		dictionary["Vermentino"] = "维蒙蒂诺";
		dictionary["Fiano"] = "菲亚诺";
		dictionary["Greco"] = "格雷克";
		dictionary["Falanghina"] = "法兰吉娜";
		dictionary["Trebbiano"] = "特雷比奥罗";
		dictionary["Ugni Blanc"] = "白玉霓";
		dictionary["Colombard"] = "鸽笼白";
		dictionary["Muller-Thurgau"] = "米勒-图高";
		dictionary["Müller-Thurgau"] = "米勒-图高";
		dictionary["Kerner"] = "克尔纳";
		dictionary["Scheurebe"] = "施埃博";
		dictionary["Silvaner"] = "西万尼";
		dictionary["Dornfelder"] = "丹菲特";
		dictionary["Blaufrankisch"] = "蓝佛朗克";
		dictionary["Blaufränkisch"] = "蓝佛朗克";
		dictionary["Zweigelt"] = "茨威格";
		dictionary["St. Laurent"] = "圣罗兰";
		dictionary["Baga"] = "巴加";
		dictionary["Touriga Nacional"] = "国产多瑞加";
		dictionary["Touriga Franca"] = "弗兰卡多瑞加";
		dictionary["Tinta Roriz"] = "罗丽红";
		dictionary["Tinta Barroca"] = "巴罗卡红";
		dictionary["Tinto Cao"] = "国产多瑞加";
		dictionary["Tinta Cão"] = "国产多瑞加";
		dictionary["Mod Settings"] = "模组设置";
		dictionary["Use the left and right arrows to change values"] = "使用左右方向键更改数值";
		dictionary["Press any key"] = "按任意键";
		dictionary["Press ESC to close"] = "按 ESC 关闭";
		dictionary["No description"] = "无描述";
		dictionary["Unknown"] = "未知";
		dictionary["Default"] = "默认";
		dictionary["Custom"] = "自定义";
		dictionary["ToggleKey"] = "切换按键";
		dictionary["AutoEnableCheats"] = "自动启用作弊";
		dictionary["BackupSaves"] = "备份存档";
		dictionary["EnableAllKeybinds"] = "启用全部按键";
		dictionary["God mode"] = "无敌模式";
		dictionary["God Mode"] = "无敌模式";
		dictionary["Fly"] = "飞行";
		dictionary["ESP"] = "透视";
		dictionary["Free camera"] = "自由视角";
		dictionary["Free Camera"] = "自由视角";
		dictionary["One-shot kills"] = "一击必杀";
		dictionary["One Shot Kills"] = "一击必杀";
		dictionary["Infinite stamina"] = "无限体力";
		dictionary["Infinite Stamina"] = "无限体力";
		dictionary["Infinite oxygen"] = "无限氧气";
		dictionary["Infinite Oxygen"] = "无限氧气";
		dictionary["No damage"] = "无伤害";
		dictionary["No Damage"] = "无伤害";
		dictionary["Speed multiplier"] = "速度倍率";
		dictionary["Speed Multiplier"] = "速度倍率";
		dictionary["Jump multiplier"] = "跳跃倍率";
		dictionary["Jump Multiplier"] = "跳跃倍率";
		dictionary["Player ESP"] = "玩家透视";
		dictionary["Fish ESP"] = "鱼类透视";
		dictionary["Item ESP"] = "物品透视";
		dictionary["Box ESP"] = "方框透视";
		dictionary["Name ESP"] = "名称透视";
		dictionary["Distance ESP"] = "距离透视";
		dictionary["Tracers"] = "追踪线";
		dictionary["Tracer"] = "追踪线";
		dictionary["Aimbot"] = "自瞄";
		dictionary["Aim assist"] = "瞄准辅助";
		dictionary["Aim Assist"] = "瞄准辅助";
		dictionary["Trigger bot"] = "扳机机器人";
		dictionary["Trigger Bot"] = "扳机机器人";
		dictionary["No fog"] = "无雾";
		dictionary["No Fog"] = "无雾";
		dictionary["No grass"] = "无草";
		dictionary["No Grass"] = "无草";
		dictionary["Instant fish"] = "即时钓鱼";
		dictionary["Instant Fish"] = "即时钓鱼";
		dictionary["Auto fish"] = "自动钓鱼";
		dictionary["Auto Fish"] = "自动钓鱼";
		dictionary["Auto reel"] = "自动收线";
		dictionary["Auto Reel"] = "自动收线";
		dictionary["Auto loot"] = "自动拾取";
		dictionary["Auto Loot"] = "自动拾取";
		dictionary["Always win"] = "必胜";
		dictionary["Always Win"] = "必胜";
		dictionary["Keep inventory"] = "死亡不掉落";
		dictionary["Keep Inventory"] = "死亡不掉落";
		dictionary["Magic bullet"] = "魔法子弹";
		dictionary["Magic Bullet"] = "魔法子弹";
		dictionary["One punch"] = "一拳超人";
		dictionary["One Punch"] = "一拳超人";
		dictionary["Damage multiplier"] = "伤害倍率";
		dictionary["Damage Multiplier"] = "伤害倍率";
		dictionary["Money multiplier"] = "金钱倍率";
		dictionary["Money Multiplier"] = "金钱倍率";
		dictionary["XP multiplier"] = "经验倍率";
		dictionary["XP Multiplier"] = "经验倍率";
		dictionary["Visuals"] = "视觉";
		dictionary["Targeting"] = "瞄准";
		dictionary["Filtering"] = "过滤";
		dictionary["Keybinds"] = "按键绑定";
		dictionary["General"] = "常规";
		dictionary["Movement"] = "移动";
		dictionary["World"] = "世界";
		dictionary["Misc"] = "杂项";
		dictionary["Miscellaneous"] = "杂项";
		dictionary["ShowTargetLine"] = "显示目标线";
		dictionary["TargetMode"] = "目标模式";
		dictionary["FOV"] = "视野";
		dictionary["FOVStep"] = "视野步进";
		dictionary["MaxTargetDistance"] = "最大目标距离";
		dictionary["MaxPredictionTime"] = "最大预测时间";
		dictionary["StickyTarget"] = "粘性目标";
		dictionary["StickyFOVMultiplier"] = "粘性视野倍率";
		dictionary["RequireLineOfSight"] = "需要视线";
		dictionary["WallPenetration"] = "穿墙";
		dictionary["TargetFish"] = "目标鱼类";
		dictionary["TargetBirds"] = "目标鸟类";
		dictionary["TargetAlbatross"] = "目标信天翁";
		dictionary["TargetShark"] = "目标鲨鱼";
		dictionary["TargetJellyfish"] = "目标水母";
		dictionary["TargetCrab"] = "目标螃蟹";
		dictionary["TargetLobster"] = "目标龙虾";
		dictionary["TargetSquid"] = "目标鱿鱼";
		dictionary["TargetOctopus"] = "目标章鱼";
		dictionary["TargetTurtle"] = "目标海龟";
		dictionary["TargetDolphin"] = "目标海豚";
		dictionary["TargetWhale"] = "目标鲸鱼";
		dictionary["TargetSeal"] = "目标海豹";
		dictionary["TargetPenguin"] = "目标企鹅";
		dictionary["TargetPelican"] = "目标鹈鹕";
		dictionary["TargetSeagull"] = "目标海鸥";
		dictionary["TargetHeron"] = "目标苍鹭";
		dictionary["TargetFlamingo"] = "目标火烈鸟";
		dictionary["TargetSwan"] = "目标天鹅";
		dictionary["TargetDuck"] = "目标鸭子";
		dictionary["TargetGoose"] = "目标鹅";
		dictionary["TargetCormorant"] = "目标鸬鹚";
		dictionary["TargetKingfisher"] = "目标翠鸟";
		dictionary["TargetOsprey"] = "目标鱼鹰";
		dictionary["TargetEagle"] = "目标老鹰";
		dictionary["TargetHawk"] = "目标鹰";
		dictionary["TargetOwl"] = "目标猫头鹰";
		dictionary["TargetCrow"] = "目标乌鸦";
		dictionary["TargetRaven"] = "目标渡鸦";
		dictionary["TargetParrot"] = "目标鹦鹉";
		dictionary["TargetToucan"] = "目标巨嘴鸟";
		dictionary["TargetWoodpecker"] = "目标啄木鸟";
		dictionary["TargetHummingbird"] = "目标蜂鸟";
		dictionary["TargetPigeon"] = "目标鸽子";
		dictionary["TargetSparrow"] = "目标麻雀";
		dictionary["TargetRobin"] = "目标知更鸟";
		dictionary["TargetBluejay"] = "目标冠蓝鸦";
		dictionary["TargetCardinal"] = "目标主红雀";
		dictionary["TargetFinch"] = "目标雀类";
		dictionary["TargetWarbler"] = "目标莺类";
		dictionary["TargetWren"] = "目标鹪鹩";
		dictionary["TargetNuthatch"] = "目标䴓鸟";
		dictionary["TargetChickadee"] = "目标山雀";
		dictionary["TargetTitmouse"] = "目标凤头山雀";
		dictionary["TargetMockingbird"] = "目标反舌鸟";
		dictionary["TargetThrasher"] = "目标嘲鸫";
		dictionary["TargetCatbird"] = "目标猫鹊";
		dictionary["TargetOriole"] = "目标黄鹂";
		dictionary["TargetGrackle"] = "目标拟八哥";
		dictionary["TargetBlackbird"] = "目标黑鸟";
		dictionary["TargetStarling"] = "目标椋鸟";
		dictionary["TargetMyna"] = "目标八哥";
		dictionary["TargetMynah"] = "目标八哥";
		dictionary["TargetLark"] = "目标云雀";
		dictionary["TargetSwallow"] = "目标燕子";
		dictionary["TargetMartin"] = "目标崖燕";
		dictionary["TargetSwift"] = "目标雨燕";
		dictionary["TargetNightjar"] = "目标夜鹰";
		dictionary["TargetWhip-poor-will"] = "目标三声夜鹰";
		dictionary["TargetNighthawk"] = "目标美洲夜鹰";
		dictionary["TargetPoorwill"] = "目标弱夜鹰";
		dictionary["TargetOilbird"] = "目标油鸱";
		dictionary["TargetFrogmouth"] = "目标蟆口鸱";
		dictionary["TargetPotoo"] = "目标林鸱";
		dictionary["TargetTrogon"] = "目标咬鹃";
		dictionary["TargetQuetzal"] = "目标凤尾绿咬鹃";
		dictionary["TargetMotmot"] = "目标翠鴗";
		dictionary["TargetKingfisher"] = "目标翠鸟";
		dictionary["TargetBee-eater"] = "目标蜂虎";
		dictionary["TargetRoller"] = "目标佛法僧";
		dictionary["TargetHoopoe"] = "目标戴胜";
		dictionary["TargetHornbill"] = "目标犀鸟";
		dictionary["TargetToucan"] = "目标巨嘴鸟";
		dictionary["TargetBarbet"] = "目标拟啄木鸟";
		dictionary["TargetHoneyguide"] = "目标响蜜鴷";
		dictionary["TargetWoodpecker"] = "目标啄木鸟";
		dictionary["TargetWryneck"] = "目标蚁鴷";
		dictionary["TargetJacamar"] = "目标鹟鴷";
		dictionary["TargetPuffbird"] = "目标喷鴷";
		dictionary["TargetTody"] = "目标短尾鴗";
		dictionary["TargetMotmot"] = "目标翠鴗";
		dictionary["TargetBee-eater"] = "目标蜂虎";
		dictionary["TargetRoller"] = "目标佛法僧";
		dictionary["TargetHoopoe"] = "目标戴胜";
		dictionary["TargetHornbill"] = "目标犀鸟";
		dictionary["TargetToucan"] = "目标巨嘴鸟";
		dictionary["TargetBarbet"] = "目标拟啄木鸟";
		dictionary["TargetHoneyguide"] = "目标响蜜鴷";
		dictionary["TargetWoodpecker"] = "目标啄木鸟";
		dictionary["TargetWryneck"] = "目标蚁鴷";
		dictionary["TargetJacamar"] = "目标鹟鴷";
		dictionary["TargetPuffbird"] = "目标喷鴷";
		dictionary["TargetTody"] = "目标短尾鴗";
		dictionary["Crosshair"] = "准星";
		dictionary["Nearest"] = "最近";
		dictionary["Farthest"] = "最远";
		dictionary["Lowest HP"] = "最低血量";
		dictionary["Highest HP"] = "最高血量";
		dictionary["Priority"] = "优先级";
		dictionary["Cycle"] = "循环";
		dictionary["Single"] = "单个";
		dictionary["Multiple"] = "多个";
		dictionary["All"] = "全部";
		dictionary["On"] = "开";
		dictionary["Off"] = "关";
		dictionary["Enabled"] = "已启用";
		dictionary["Disabled"] = "已禁用";
		dictionary["True"] = "真";
		dictionary["False"] = "假";
		dictionary["Yes"] = "是";
		dictionary["No"] = "否";
		dictionary["AlwaysWinRoulette"] = "必胜轮盘";
		dictionary["CompleteCheatMenu"] = "完整作弊菜单";
		dictionary["AimbotRevised"] = "自瞄修订版";
		dictionary["HowToFishMagicBullet"] = "渔力全开魔法子弹";
		dictionary["KeepInventory"] = "死亡不掉落";
		dictionary["OnePunch"] = "一拳超人";
		dictionary["ModMenu"] = "模组菜单";
		dictionary["HowToFishCheatMenu"] = "渔力全开作弊菜单";
		dictionary["Enabled"] = "已启用";
		dictionary["Key"] = "按键";
		dictionary["Hotkey"] = "快捷键";
		dictionary["Shortcut"] = "快捷方式";
		dictionary["Toggle"] = "切换";
		dictionary["Hold"] = "按住";
		dictionary["Press"] = "按下";
		dictionary["Release"] = "释放";
		dictionary["Modifier"] = "修饰键";
		dictionary["Ctrl"] = "Ctrl";
		dictionary["Alt"] = "Alt";
		dictionary["Shift"] = "Shift";
		dictionary["Tab"] = "Tab";
		dictionary["CapsLock"] = "大写锁定";
		dictionary["Space"] = "空格";
		dictionary["Enter"] = "回车";
		dictionary["Return"] = "回车";
		dictionary["Escape"] = "ESC";
		dictionary["Esc"] = "ESC";
		dictionary["Backspace"] = "退格";
		dictionary["Delete"] = "删除";
		dictionary["Insert"] = "Insert";
		dictionary["Home"] = "Home";
		dictionary["End"] = "End";
		dictionary["PageUp"] = "PageUp";
		dictionary["PageDown"] = "PageDown";
		dictionary["ArrowUp"] = "上箭头";
		dictionary["ArrowDown"] = "下箭头";
		dictionary["ArrowLeft"] = "左箭头";
		dictionary["ArrowRight"] = "右箭头";
		dictionary["Up Arrow"] = "上箭头";
		dictionary["Down Arrow"] = "下箭头";
		dictionary["Left Arrow"] = "左箭头";
		dictionary["Right Arrow"] = "右箭头";
		dictionary["Left Mouse"] = "鼠标左键";
		dictionary["Right Mouse"] = "鼠标右键";
		dictionary["Middle Mouse"] = "鼠标中键";
		dictionary["Mouse 4"] = "鼠标4键";
		dictionary["Mouse 5"] = "鼠标5键";
		dictionary["Scroll Up"] = "滚轮上";
		dictionary["Scroll Down"] = "滚轮下";
		dictionary["Mouse Wheel"] = "鼠标滚轮";
		dictionary["MouseX"] = "鼠标X";
		dictionary["MouseY"] = "鼠标Y";
		dictionary["Mouse Scroll"] = "鼠标滚轮";
		dictionary["Value"] = "数值";
		dictionary["Min"] = "最小";
		dictionary["Max"] = "最大";
		dictionary["Step"] = "步进";
		dictionary["Default"] = "默认";
		dictionary["Range"] = "范围";
		dictionary["Slider"] = "滑块";
		dictionary["Input"] = "输入";
		dictionary["Dropdown"] = "下拉";
		dictionary["Toggle"] = "开关";
		dictionary["Button"] = "按钮";
		dictionary["Color"] = "颜色";
		dictionary["Keybind"] = "按键绑定";
		dictionary["Press"] = "按";
		dictionary["to"] = "来";
		dictionary["to open"] = "打开";
		dictionary["to close"] = "关闭";
		dictionary["to toggle"] = "切换";
		dictionary["to enable"] = "启用";
		dictionary["to disable"] = "禁用";
		dictionary["to activate"] = "激活";
		dictionary["to deactivate"] = "停用";
		dictionary["to use"] = "使用";
		dictionary["to interact"] = "互动";
		dictionary["to talk"] = "交谈";
		dictionary["to buy"] = "购买";
		dictionary["to sell"] = "出售";
		dictionary["to pick up"] = "拾取";
		dictionary["to drop"] = "丢弃";
		dictionary["to equip"] = "装备";
		dictionary["to unequip"] = "卸下";
		dictionary["to attack"] = "攻击";
		dictionary["to defend"] = "防御";
		dictionary["to jump"] = "跳跃";
		dictionary["to crouch"] = "蹲下";
		dictionary["to sprint"] = "冲刺";
		dictionary["to walk"] = "行走";
		dictionary["to run"] = "奔跑";
		dictionary["to swim"] = "游泳";
		dictionary["to dive"] = "潜水";
		dictionary["to surface"] = "上浮";
		dictionary