hexiaojie 9 месяцев назад
Родитель
Сommit
867f592580

+ 3 - 0
GameClient/Assets/Editor/HotUpdateTypeGenerator.meta

@@ -0,0 +1,3 @@
+fileFormatVersion: 2
+guid: 583ed71e6326446a8e0310f92b3f69a0
+timeCreated: 1744643583

+ 76 - 0
GameClient/Assets/Editor/HotUpdateTypeGenerator/HotUpdateTypeGenerator.cs

@@ -0,0 +1,76 @@
+#if UNITY_EDITOR
+using System;
+using UnityEditor;
+using System.IO;
+using System.Reflection;
+using System.Text;
+using System.Linq;
+using ET;
+using UnityEngine;
+
+public static class HotUpdateTypeGenerator
+{
+    [MenuItem("GFGGame/Generate HotUpdate Types")]
+    public static void GenerateHotUpdateTypes()
+    {
+        // 1. 加载 HotUpdate DLL
+        string dllPath = Path.Combine(Application.dataPath, "ResIn/Dll/Update/Game.HotUpdate.dll.bytes");
+        byte[] dllBytes = File.ReadAllBytes(dllPath);
+        Assembly hotUpdateAssembly = Assembly.Load(dllBytes);
+
+        // 2. 获取所有类型
+        Type[] allTypes = hotUpdateAssembly.GetTypes()
+            .Where(t => !t.IsAbstract) // 可选:过滤抽象类
+            .ToArray();
+
+        // 3. 生成 C# 代码 - 使用字符串存储类型名称
+        StringBuilder sb = new StringBuilder();
+        sb.AppendLine("// Auto-generated by HotUpdateTypeGenerator");
+        sb.AppendLine("// 注意:使用字符串存储类型名称以避免编译错误");
+        sb.AppendLine("namespace GFGGame.HotUpdate");
+        sb.AppendLine("{");
+        sb.AppendLine("    public static class PreGeneratedTypes");
+        sb.AppendLine("    {");
+        sb.AppendLine("        public static readonly string[] AllTypeNames = new string[]");
+        sb.AppendLine("        {");
+
+        foreach (Type type in allTypes)
+        {
+            // 确保类型名称包含程序集信息以便正确解析
+            string typeName = $"{type.FullName}, {type.Assembly.GetName().Name}";
+            sb.AppendLine($"            \"{typeName}\",");
+        }
+
+        sb.AppendLine("        };");
+        
+        // 添加运行时类型加载方法
+        sb.AppendLine();
+        sb.AppendLine("        public static Type[] GetAllTypes()");
+        sb.AppendLine("        {");
+        sb.AppendLine("            var result = new System.Collections.Generic.List<Type>();");
+        sb.AppendLine("            foreach (string typeName in AllTypeNames)");
+        sb.AppendLine("            {");
+        sb.AppendLine("                Type type = System.Type.GetType(typeName);");
+        sb.AppendLine("                if (type != null)");
+        sb.AppendLine("                {");
+        sb.AppendLine("                    result.Add(type);");
+        sb.AppendLine("                }");
+        sb.AppendLine("                else");
+        sb.AppendLine("                {");
+        sb.AppendLine("                    UnityEngine.Debug.LogWarning($\"Type not found: {typeName}\");");
+        sb.AppendLine("                }");
+        sb.AppendLine("            }");
+        sb.AppendLine("            return result.ToArray();");
+        sb.AppendLine("        }");
+        sb.AppendLine("    }");
+        sb.AppendLine("}");
+
+        // 4. 保存到文件
+        string outputPath = Path.Combine(Application.dataPath, "Game/HotUpdate/PreGeneratedTypes.cs");
+        File.WriteAllText(outputPath, sb.ToString());
+
+        Debug.Log($"Generated {allTypes.Length} types into {outputPath}");
+        AssetDatabase.Refresh();
+    }
+}
+#endif

+ 3 - 0
GameClient/Assets/Editor/HotUpdateTypeGenerator/HotUpdateTypeGenerator.cs.meta

@@ -0,0 +1,3 @@
+fileFormatVersion: 2
+guid: 67848a7138564f7daecdc9bf00cdbb9f
+timeCreated: 1744643589

+ 67 - 51
GameClient/Assets/Game/HotUpdate/Controller/GameController.cs

@@ -10,30 +10,41 @@ namespace GFGGame
 {
     public class GameController
     {
-
         public static async void Start()
         {
             //初始化声音,不可以去掉
             MusicManager.Instance.Stop();
+            Debug.Log($"正在初始化 MusicManager");
             SoundManager.Instance.Stop();
+            Debug.Log($"正在初始化 SoundManager");
             VoiceManager.Instance.Stop();
+            Debug.Log($"正在初始化 VoiceManager");
             //GameObject对象池
             PrefabManager.Instance.Init();
+            Debug.Log($"正在初始化 PrefabManager");
             //字体
             await FontLoader.Instance.Init();
+
+            Debug.Log($"正在初始化 FontLoader");
             //界面
             UGUIManager.Instance.Init();
+            Debug.Log($"正在初始化 UGUIManager");
             ViewManager.Init();
+            Debug.Log($"正在初始化 UGUIManager");
             //日志
             LogController.Instance.Init();
+            Debug.Log($"正在初始化 LogController");
             //全局
             GameGlobal.Init();
+            Debug.Log($"正在初始化 GameGlobal");
             //sqlite
             SqliteController.Instance.Init(false, ResPathUtil.SQLITE_FILE_PATH);
             //渠道
             QDManager.Init();
+            Debug.Log($"正在初始化 QDManager");
             //全局点击效果
             ViewGlobal.CreatClickEffect();
+            Debug.Log($"正在初始化 ViewGlobal");
             //获取游戏配置
             GetGameCfg();
         }
@@ -92,6 +103,7 @@ namespace GFGGame
                     {
                         //LoginProxy.LoginAsVisitor();
                     }
+
                     return true;
                 }
             }
@@ -103,17 +115,21 @@ namespace GFGGame
                     {
                         LoginController.Login(account, password, true).Coroutine();
                     }
+
                     return true;
                 }
-                else if (LauncherConfig.netType == LauncherConfig.EnumNetType.LOCAL && PlayerPrefs.HasKey(GameConst.PASSWORD_LAST_LOGIN_KEY))
+                else if (LauncherConfig.netType == LauncherConfig.EnumNetType.LOCAL &&
+                         PlayerPrefs.HasKey(GameConst.PASSWORD_LAST_LOGIN_KEY))
                 {
                     if (doLogin)
                     {
                         LoginController.LoginTest(account).Coroutine();
                     }
+
                     return true;
                 }
             }
+
             return false;
         }
 
@@ -150,33 +166,31 @@ namespace GFGGame
 
             int skipGuide = StorageDataManager.Instance.GetStorageValue(ConstStorageId.STORAGE_SKIP_GUIDE);
 
-            if (skipGuide <= 0 && (LauncherConfig.netType == EnumNetType.LOCAL && LauncherConfig.ChannelId == (int)ChannelID.Test))
+            if (skipGuide <= 0 && (LauncherConfig.netType == EnumNetType.LOCAL &&
+                                   LauncherConfig.ChannelId == (int)ChannelID.Test))
             {
                 AlertUI.Show("是否跳过引导?如果您是第一次体验,建议不要跳过引导!")
-                           .SetLeftButton(true, "不用", (obj) =>
-                           {
-                               EnterGame();
-                               StorageSProxy.ReqSetClientValue(ConstStorageId.STORAGE_SKIP_GUIDE, 1).Coroutine();
-                           })
-                           .SetRightButton(true, "跳过", (obj) =>
-                           {
-                               GameGlobal.skipGuide = true;
-                               EnterGame();
-                               StorageSProxy.ReqSetClientValue(ConstStorageId.STORAGE_SKIP_GUIDE, 2).Coroutine();
-                           });
+                    .SetLeftButton(true, "不用", (obj) =>
+                    {
+                        EnterGame();
+                        StorageSProxy.ReqSetClientValue(ConstStorageId.STORAGE_SKIP_GUIDE, 1).Coroutine();
+                    })
+                    .SetRightButton(true, "跳过", (obj) =>
+                    {
+                        GameGlobal.skipGuide = true;
+                        EnterGame();
+                        StorageSProxy.ReqSetClientValue(ConstStorageId.STORAGE_SKIP_GUIDE, 2).Coroutine();
+                    });
             }
             else
             {
                 if (skipGuide == 2) GameGlobal.skipGuide = true;
                 EnterGame();
-
             }
-
         }
 
         private static void EnterGame()
         {
-
             LoadingView.Instance.SetProgress(100, () =>
             {
                 ViewManager.Hide<LoadingView>();
@@ -203,10 +217,11 @@ namespace GFGGame
                         ////新玩家选择套装
                         //if (RoleInfoManager.Instance.NewRoleSuitStatus == false)
                         //{
-                            //ViewManager.Show<NewRoleGetSuitView>();
+                        //ViewManager.Show<NewRoleGetSuitView>();
                         //}
                     }
                 }
+
                 GMController.AddShowGMViewEventListener();
             });
         }
@@ -238,6 +253,7 @@ namespace GFGGame
                     FieldDataManager.Instance.waitToShowFieldFightEndView = true;
                 }
             }
+
             GameGlobal.AfterDataInited = true;
             EventAgent.DispatchEvent(ConstMessage.AFTER_DATA_INITED);
 
@@ -248,7 +264,7 @@ namespace GFGGame
             MainStorySProxy.GetStoryBonusDate().Coroutine();
             CardSProxy.GetCardInfos().Coroutine();
             TaskSProxy.GetTaskInfos();
-            BattlePassTaskSProxy.GetBattlePassInfo().Coroutine();     
+            BattlePassTaskSProxy.GetBattlePassInfo().Coroutine();
             DailyTaskSProxy.ReqDailyTaskInfos().Coroutine();
             NoticeSProxy.ReqSystemNoticeList().Coroutine();
             MailSProxy.ReqMailCount().Coroutine();
@@ -292,14 +308,17 @@ namespace GFGGame
             FightDataManager.Instance.autoPlay = storageAutoPlay <= 0 ? false : true;
             int fightSpeed = StorageDataManager.Instance.GetStorageValue(ConstStorageId.STORAGE_FIGHT_AUTO_PLAY_SPEED);
             FightDataManager.Instance.fightSpeed = fightSpeed <= 0 ? 1 : fightSpeed;
-            int dialogSpeed = StorageDataManager.Instance.GetStorageValue(ConstStorageId.STORAGE_DIALOG_AUTO_PLAY_SPEED);
+            int dialogSpeed =
+                StorageDataManager.Instance.GetStorageValue(ConstStorageId.STORAGE_DIALOG_AUTO_PLAY_SPEED);
             FightDataManager.Instance.dialogSpeed = dialogSpeed <= 0 ? 1 : dialogSpeed;
 
             int filingChapterId = StorageDataManager.Instance.GetStorageValue(ConstStorageId.STUDIO_FILING_CHAPTERID);
-            StudioDataManager.Instance.npcFilingChapterId = filingChapterId <= 0 ? StudioDataManager.Instance.FilingDatas[0].id : filingChapterId;
+            StudioDataManager.Instance.npcFilingChapterId =
+                filingChapterId <= 0 ? StudioDataManager.Instance.FilingDatas[0].id : filingChapterId;
             StudioDataManager.Instance.filingChapterId = StudioDataManager.Instance.npcFilingChapterId;
-            GameGlobal.skipCheckOpen = StorageDataManager.Instance.GetStorageValue(ConstStorageId.SKIP_CHECK_OPEN) <= 0 ? false : true;
-
+            GameGlobal.skipCheckOpen = StorageDataManager.Instance.GetStorageValue(ConstStorageId.SKIP_CHECK_OPEN) <= 0
+                ? false
+                : true;
         }
 
         public static void QuitToLoginView(bool logout, bool fromSdkLogoutCallback = false)
@@ -368,10 +387,11 @@ namespace GFGGame
             GameGlobal.zoneScene.GetComponent<AccountInfoComponent>()?.Clear();
             if (logout)
             {
-                    QDManager.Logout();
+                QDManager.Logout();
             }
+
             ViewManager.Hide<GuideView>();
-            if(!ViewManager.isViewOpen(typeof(LoginView).FullName))
+            if (!ViewManager.isViewOpen(typeof(LoginView).FullName))
             {
                 ViewManager.Show<LoginView>(null, true);
                 GameController.CheckUpdateVersion(true);
@@ -388,7 +408,8 @@ namespace GFGGame
             PoemGallerySProxy.ReqGalleryTheme().Coroutine();
             TaskSProxy.GetTaskInfos();
             ArenaDataManager.Instance.ReqArenaInfo();
-            if (LeagueDataManager.Instance.Type == LeagueJoinType.Join) {
+            if (LeagueDataManager.Instance.Type == LeagueJoinType.Join)
+            {
                 await LeagueSproxy.ReqGetLeagueInfo();
                 LeagueSproxy.GetTeapartyMatchingInfos(RoleDataManager.roleId).Coroutine();
                 LeagueSproxy.GetTeapartyInfos().Coroutine();
@@ -405,23 +426,24 @@ namespace GFGGame
         public static void ShowExitAlert(Action sureCallback = null)
         {
             AlertSystem.Show("我会想你的")
-                    .SetLeftButton(true, "继续游戏")
-                    .SetRightButton(true, "退出游戏", (object data) => 
-                    { 
-                        if(sureCallback != null)
-                        {
-                            sureCallback.Invoke();
-                        }
-                        else
-                        {
-                            Application.Quit();
-                        }
-                    });
+                .SetLeftButton(true, "继续游戏")
+                .SetRightButton(true, "退出游戏", (object data) =>
+                {
+                    if (sureCallback != null)
+                    {
+                        sureCallback.Invoke();
+                    }
+                    else
+                    {
+                        Application.Quit();
+                    }
+                });
         }
 
         public static void CheckUpdateVersion(bool force = false)
         {
-            if (ET.TimeHelper.ClientNowSeconds() - GameGlobal.pauseTime > 180 || LauncherConfig.netType == LauncherConfig.EnumNetType.LOCAL || force)
+            if (ET.TimeHelper.ClientNowSeconds() - GameGlobal.pauseTime > 180 ||
+                LauncherConfig.netType == LauncherConfig.EnumNetType.LOCAL || force)
             {
                 Timers.inst.StartCoroutine(CheckVersion(VersionController.DefaultPackage, force));
             }
@@ -434,37 +456,31 @@ namespace GFGGame
             {
                 GameGlobal.promotedVersion = package.GetPackageVersion();
             }
+
             var operation = package.UpdatePackageVersionAsync();
             yield return operation;
 
             if (operation.Status == EOperationStatus.Succeed)
             {
                 LogUtil.LogDev($"版本对比: {GameGlobal.promotedVersion} {operation.PackageVersion}");
-                if (!string.IsNullOrEmpty(operation.PackageVersion) 
-                    && !string.IsNullOrEmpty(operation.PackageVersion) 
+                if (!string.IsNullOrEmpty(operation.PackageVersion)
+                    && !string.IsNullOrEmpty(operation.PackageVersion)
                     && !operation.PackageVersion.Equals(GameGlobal.promotedVersion))
                 {
                     GameGlobal.promotedVersion = operation.PackageVersion;
-                    if(force)
+                    if (force)
                     {
                         AlertSystem.Show("游戏已有更新,请重启游戏获取最佳游戏体验。")
-                        .SetRightButton(true, "重启游戏", (obj) =>
-                        {
-                            Application.Quit();
-                        });
+                            .SetRightButton(true, "重启游戏", (obj) => { Application.Quit(); });
                     }
                     else
                     {
                         AlertSystem.Show("游戏已有更新,您可以立即重启游戏获取最佳游戏体验,也可以稍后重启更新。")
                             .SetLeftButton(true, "稍后更新")
-                            .SetRightButton(true, "重启游戏", (obj) =>
-                            {
-                                Application.Quit();
-                            });
+                            .SetRightButton(true, "重启游戏", (obj) => { Application.Quit(); });
                     }
                 }
             }
         }
-
     }
 }

+ 12 - 9
GameClient/Assets/Game/HotUpdate/ETCodes/ETManager.cs

@@ -2,18 +2,15 @@
 using GFGGame.Launcher;
 using System;
 using System.Threading;
+using UnityEngine;
 
 namespace GFGGame
 {
     public class ETManager : SingletonMonoBase<ETManager>
     {
-
         public void Init()
         {
-            AppDomain.CurrentDomain.UnhandledException += (sender, e) =>
-            {
-                Log.Error(e.ExceptionObject.ToString());
-            };
+            AppDomain.CurrentDomain.UnhandledException += (sender, e) => { Log.Error(e.ExceptionObject.ToString()); };
 
             SynchronizationContext.SetSynchronizationContext(ThreadSynchronizationContext.Instance);
 
@@ -27,20 +24,26 @@ namespace GFGGame
             TimeInfo.Instance.TimeZone = 8;
             try
             {
-                //Game.EventSystem.Add(HotUpdateCodeLoader.Instance.GetTypes());
-
+                Debug.Log($"正在初始化HotUpdateCodeLoaderHotUpdate");
+                Game.EventSystem.Add(HotUpdateCodeLoaderHotUpdate.Instance.GetAllTypes());
+                Debug.Log($"正在初始化 TimerComponent");
                 Game.Scene.AddComponent<TimerComponent>();
+                Debug.Log($"正在初始化 CoroutineLockComponent");
                 Game.Scene.AddComponent<CoroutineLockComponent>();
+                Debug.Log($"正在初始化 OpcodeTypeComponent");
                 Game.Scene.AddComponent<OpcodeTypeComponent>();
+                Debug.Log($"正在初始化 MessageDispatcherComponent");
                 Game.Scene.AddComponent<MessageDispatcherComponent>();
-
+                Debug.Log($"正在初始化 NetThreadComponent");
                 Game.Scene.AddComponent<NetThreadComponent>();
+                Debug.Log($"正在初始化 SessionStreamDispatcher");
                 Game.Scene.AddComponent<SessionStreamDispatcher>();
+                Debug.Log($"正在初始化 ZoneSceneManagerComponent");
                 Game.Scene.AddComponent<ZoneSceneManagerComponent>();
+                Debug.Log($"正在初始化 NumericWatcherComponent");
                 Game.Scene.AddComponent<NumericWatcherComponent>();
 
                 GameGlobal.zoneScene = SceneFactory.CreateZoneScene(1, "Game", Game.Scene);
-
             }
             catch (Exception e)
             {

+ 10 - 0
GameClient/Assets/Game/HotUpdate/ETCodes/Hotfix/App/Scene/SceneFactory.cs

@@ -10,15 +10,25 @@ namespace ET
         {
             Scene zoneScene = EntitySceneFactory.CreateScene(Game.IdGenerater.GenerateInstanceId(), zone, SceneType.Zone, name, parent);
             zoneScene.AddComponent<ZoneSceneFlagComponent>();
+            Debug.Log($"正在初始化 ZoneSceneFlagComponent");
             zoneScene.AddComponent<NetWSComponent, int>(SessionStreamDispatcherType.SessionStreamDispatcherClientOuter);
+            Debug.Log($"正在初始化 NetWSComponent");
             zoneScene.AddComponent<CurrentScenesComponent>();
+            Debug.Log($"正在初始化 CurrentScenesComponent");
             zoneScene.AddComponent<ObjectWait>();
+            Debug.Log($"正在初始化 ObjectWait");
             zoneScene.AddComponent<PlayerComponent>();
+            Debug.Log($"正在初始化 PlayerComponent");
             zoneScene.AddComponent<AccountInfoComponent>();
+            Debug.Log($"正在初始化 AccountInfoComponent");
             zoneScene.AddComponent<ServerInfosComponent>();
+            Debug.Log($"正在初始化 ServerInfosComponent");
             zoneScene.AddComponent<RoleInfosComponent>();
+            Debug.Log($"正在初始化 RoleInfosComponent");
             zoneScene.AddComponent<SessionComponent>();
+            Debug.Log($"正在初始化 SessionComponent");
             zoneScene.AddComponent<LogSplicingComponent>();
+            Debug.Log($"正在初始化 LogSplicingComponent");
             return zoneScene;
         }
 

+ 56 - 0
GameClient/Assets/Game/HotUpdate/HotUpdateCodeLoader.cs

@@ -0,0 +1,56 @@
+using System;
+using System.Collections.Generic;
+using GFGGame.HotUpdate;
+using GFGGame.Launcher;
+using UnityEngine;
+
+namespace GFGGame
+{
+    public class HotUpdateCodeLoaderHotUpdate : SingletonMonoBase<HotUpdateCodeLoaderHotUpdate>
+    {
+        public Type[] GetAllTypes()
+        {
+            var result = new List<Type>();
+            foreach (string typeName in PreGeneratedTypes.AllTypeNames)
+            {
+                // 方法1:先尝试简单获取
+                Type type = Type.GetType(typeName);
+
+                // 方法2:如果失败,尝试从所有已加载程序集查找
+                if (type == null)
+                {
+                    foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies())
+                    {
+                        type = assembly.GetType(typeName);
+                        if (type != null) break;
+                    }
+                }
+
+                // 方法3:处理泛型类型(如`Namespace.Type`1, Assembly)
+                if (type == null && typeName.Contains("`"))
+                {
+                    try
+                    {
+                        int index = typeName.IndexOf(',');
+                        string shortName = index > 0 ? typeName.Substring(0, index) : typeName;
+                        type = Type.GetType(shortName);
+                    }
+                    catch
+                    {
+                    }
+                }
+
+                if (type != null)
+                {
+                    result.Add(type);
+                }
+                else
+                {
+                    Debug.LogWarning($"Type not found: {typeName}");
+                }
+            }
+
+            return result.ToArray();
+        }
+    }
+}

+ 3 - 0
GameClient/Assets/Game/HotUpdate/HotUpdateCodeLoader.cs.meta

@@ -0,0 +1,3 @@
+fileFormatVersion: 2
+guid: 107d4267c91c4e2c8ab2c89eb2228f85
+timeCreated: 1744647482

+ 1 - 0
GameClient/Assets/Game/HotUpdate/HotUpdateDriver.cs

@@ -14,6 +14,7 @@ namespace GFGGame
             LitJson.UnityTypeBindings.Register();
             //ET
             ETManager.Instance.Init();
+            Debug.Log($"正在初始化 ETManager.Init");
             //Game
             OperationSystem.Initialize();
             GameController.Start();

+ 3954 - 0
GameClient/Assets/Game/HotUpdate/PreGeneratedTypes.cs

@@ -0,0 +1,3954 @@
+// Auto-generated by HotUpdateTypeGenerator
+// 注意:使用字符串存储类型名称以避免编译错误
+
+using System;
+using System.Collections.Generic;
+using UnityEngine;
+
+namespace GFGGame.HotUpdate
+{
+    public static class PreGeneratedTypes
+    {
+        public static readonly string[] AllTypeNames = new string[]
+        {
+            "<>f__AnonymousType0`2, Game.HotUpdate",
+            "<>f__AnonymousType1`2, Game.HotUpdate",
+            "ReferenceCollectorData, Game.HotUpdate",
+            "ReferenceCollectorDataComparer, Game.HotUpdate",
+            "ReferenceCollector, Game.HotUpdate",
+            "FightRoleType, Game.HotUpdate",
+            "StoryFightResultData, Game.HotUpdate",
+            "NewBehaviourScript, Game.HotUpdate",
+            "AutoRotation, Game.HotUpdate",
+            "SC_shakeCamera, Game.HotUpdate",
+            "shakecameraControl, Game.HotUpdate",
+            "Card, Game.HotUpdate",
+            "UI.Poem.UI_Button1, Game.HotUpdate",
+            "UI.Poem.UI_Button15, Game.HotUpdate",
+            "UI.Poem.UI_Button2, Game.HotUpdate",
+            "UI.Poem.UI_Button6, Game.HotUpdate",
+            "UI.Poem.UI_ComFavorites, Game.HotUpdate",
+            "UI.Poem.UI_ComGetReward, Game.HotUpdate",
+            "UI.Poem.UI_ComIcon, Game.HotUpdate",
+            "UI.Poem.UI_ComNormal, Game.HotUpdate",
+            "UI.Poem.UI_ComPhoto, Game.HotUpdate",
+            "UI.Poem.UI_ComPhotoPostcard, Game.HotUpdate",
+            "UI.Poem.UI_ComPostcard, Game.HotUpdate",
+            "UI.Poem.UI_ComPullFooter, Game.HotUpdate",
+            "UI.Poem.UI_ComPullHead, Game.HotUpdate",
+            "UI.Poem.UI_ComScroll, Game.HotUpdate",
+            "UI.Poem.UI_ComTravel, Game.HotUpdate",
+            "UI.Poem.UI_ComboBox_popup, Game.HotUpdate",
+            "UI.Poem.UI_ListItem, Game.HotUpdate",
+            "UI.Poem.UI_ListPhotoItem, Game.HotUpdate",
+            "UI.Poem.UI_ListPhotoPreviewItem, Game.HotUpdate",
+            "UI.Poem.UI_ListRankItem, Game.HotUpdate",
+            "UI.Poem.UI_ListRankRewardItem, Game.HotUpdate",
+            "UI.Poem.UI_PoemGalleryPreviewUI, Game.HotUpdate",
+            "UI.Poem.UI_PoemGalleryRewardGetUI, Game.HotUpdate",
+            "UI.Poem.UI_PoemGalleryRewardUI, Game.HotUpdate",
+            "UI.Poem.UI_PoemGalleryRuleUI, Game.HotUpdate",
+            "UI.Poem.UI_PoemGalleryUI, Game.HotUpdate",
+            "UI.Poem.UI_PoemPhotoPreviewUI, Game.HotUpdate",
+            "UI.Poem.UI_PoemPhotoSaveUI, Game.HotUpdate",
+            "UI.Poem.UI_PoemPhotoShareUI, Game.HotUpdate",
+            "UI.Poem.UI_PoemPhotoUI, Game.HotUpdate",
+            "UI.Poem.UI_PoemUI, Game.HotUpdate",
+            "UI.XiuFang.UI_Component, Game.HotUpdate",
+            "UI.XiuFang.UI_Component1, Game.HotUpdate",
+            "UI.XiuFang.UI_XiuFangUI, Game.HotUpdate",
+            "UI.TurnTable.UI_ComRewardList, Game.HotUpdate",
+            "UI.TurnTable.UI_Component1, Game.HotUpdate",
+            "UI.TurnTable.UI_TurnSpecialTipsUI, Game.HotUpdate",
+            "UI.TurnTable.UI_TurnTableRewardUI, Game.HotUpdate",
+            "UI.TurnTable.UI_TurnTableUI, Game.HotUpdate",
+            "UI.TurnTable.UI_reward, Game.HotUpdate",
+            "UI.TurnTable.UI_rewardItem, Game.HotUpdate",
+            "UI.Travel.UI_Button2, Game.HotUpdate",
+            "UI.Travel.UI_Button6, Game.HotUpdate",
+            "UI.Travel.UI_ComDress, Game.HotUpdate",
+            "UI.Travel.UI_ComPostcard, Game.HotUpdate",
+            "UI.Travel.UI_ComReward, Game.HotUpdate",
+            "UI.Travel.UI_ComTravel, Game.HotUpdate",
+            "UI.Travel.UI_TravelDressupUI, Game.HotUpdate",
+            "UI.Travel.UI_TravelRewardUI, Game.HotUpdate",
+            "UI.Travel.UI_TravelTimeDetailUI, Game.HotUpdate",
+            "UI.Travel.UI_TravelUI, Game.HotUpdate",
+            "UI.TimeTracing.UI_Button2, Game.HotUpdate",
+            "UI.TimeTracing.UI_Button7, Game.HotUpdate",
+            "UI.TimeTracing.UI_Button8, Game.HotUpdate",
+            "UI.TimeTracing.UI_CompFlower1, Game.HotUpdate",
+            "UI.TimeTracing.UI_CompTimeTracingSwitchItem, Game.HotUpdate",
+            "UI.TimeTracing.UI_Component1, Game.HotUpdate",
+            "UI.TimeTracing.UI_FirstPlayeritem, Game.HotUpdate",
+            "UI.TimeTracing.UI_ListRewardItem, Game.HotUpdate",
+            "UI.TimeTracing.UI_ListScoreRewardItem, Game.HotUpdate",
+            "UI.TimeTracing.UI_TImeTracingPreShowUI, Game.HotUpdate",
+            "UI.TimeTracing.UI_TimeTracingLevelInfoUI, Game.HotUpdate",
+            "UI.TimeTracing.UI_TimeTracingLevelItem, Game.HotUpdate",
+            "UI.TimeTracing.UI_TimeTracingLevelRankItem, Game.HotUpdate",
+            "UI.TimeTracing.UI_TimeTracingLevelRankUI, Game.HotUpdate",
+            "UI.TimeTracing.UI_TimeTracingLevelRewardUI, Game.HotUpdate",
+            "UI.TimeTracing.UI_TimeTracingLevelUI, Game.HotUpdate",
+            "UI.TimeTracing.UI_TimeTracingPreShowItem, Game.HotUpdate",
+            "UI.TimeTracing.UI_TimeTracingShowUI, Game.HotUpdate",
+            "UI.TimeTracing.UI_TimeTracingSuitRankItem, Game.HotUpdate",
+            "UI.TimeTracing.UI_TimeTracingSuitRankUI, Game.HotUpdate",
+            "UI.TimeTracing.UI_TimeTracingSwitchItem, Game.HotUpdate",
+            "UI.TimeTracing.UI_TimeTracingSwitchUI, Game.HotUpdate",
+            "UI.TimeTracing.UI_proBarItem, Game.HotUpdate",
+            "UI.Task.UI_AchieveItem, Game.HotUpdate",
+            "UI.Task.UI_BattlePassReward, Game.HotUpdate",
+            "UI.Task.UI_BattlePassRewardItem, Game.HotUpdate",
+            "UI.Task.UI_BattlePassRewardUI, Game.HotUpdate",
+            "UI.Task.UI_BuyBattlePassLevelUI, Game.HotUpdate",
+            "UI.Task.UI_CombTaskUI, Game.HotUpdate",
+            "UI.Task.UI_ExpProcess, Game.HotUpdate",
+            "UI.Task.UI_LinessRewardProcessItemBt, Game.HotUpdate",
+            "UI.Task.UI_LivenessRewardProcess, Game.HotUpdate",
+            "UI.Task.UI_OpenBattlePassUI, Game.HotUpdate",
+            "UI.Task.UI_TaskAchieveDetailUI, Game.HotUpdate",
+            "UI.Task.UI_TaskAchieveUI, Game.HotUpdate",
+            "UI.Task.UI_TaskUI, Game.HotUpdate",
+            "UI.Studio.UI_ComEctype, Game.HotUpdate",
+            "UI.Studio.UI_ComFabric, Game.HotUpdate",
+            "UI.Studio.UI_ComIcon, Game.HotUpdate",
+            "UI.Studio.UI_ComPorcelain, Game.HotUpdate",
+            "UI.Studio.UI_ComProperty, Game.HotUpdate",
+            "UI.Studio.UI_ListItem, Game.HotUpdate",
+            "UI.Studio.UI_ListNpcItem, Game.HotUpdate",
+            "UI.Studio.UI_ListPorcelainItem, Game.HotUpdate",
+            "UI.Studio.UI_ListRewardItem, Game.HotUpdate",
+            "UI.Studio.UI_StudioActivityUI, Game.HotUpdate",
+            "UI.Studio.UI_StudioBuyNumUI, Game.HotUpdate",
+            "UI.Studio.UI_StudioEctypeUI, Game.HotUpdate",
+            "UI.Studio.UI_StudioFilingNpcUI, Game.HotUpdate",
+            "UI.Studio.UI_StudioFilingRewardUI, Game.HotUpdate",
+            "UI.Studio.UI_StudioFilingUI, Game.HotUpdate",
+            "UI.Studio.UI_StudioUI, Game.HotUpdate",
+            "UI.Store.UI_BrocadeWeavReward, Game.HotUpdate",
+            "UI.Store.UI_BrocadeWeavRewardItem, Game.HotUpdate",
+            "UI.Store.UI_BrocadeWeavTask, Game.HotUpdate",
+            "UI.Store.UI_Button10, Game.HotUpdate",
+            "UI.Store.UI_Button13, Game.HotUpdate",
+            "UI.Store.UI_Button14, Game.HotUpdate",
+            "UI.Store.UI_Button3, Game.HotUpdate",
+            "UI.Store.UI_Button5, Game.HotUpdate",
+            "UI.Store.UI_ComTab, Game.HotUpdate",
+            "UI.Store.UI_ComVipLv, Game.HotUpdate",
+            "UI.Store.UI_Component2, Game.HotUpdate",
+            "UI.Store.UI_ExpProcess, Game.HotUpdate",
+            "UI.Store.UI_GrowthFundItemUI, Game.HotUpdate",
+            "UI.Store.UI_ListBlackRewardtem, Game.HotUpdate",
+            "UI.Store.UI_ListBrocadeWeavTaskItem, Game.HotUpdate",
+            "UI.Store.UI_ListChargeItem, Game.HotUpdate",
+            "UI.Store.UI_ListGiftItem, Game.HotUpdate",
+            "UI.Store.UI_ListShopItem, Game.HotUpdate",
+            "UI.Store.UI_ListVipItem, Game.HotUpdate",
+            "UI.Store.UI_ProgressBar1, Game.HotUpdate",
+            "UI.Store.UI_StoreBlackCardRewardUI, Game.HotUpdate",
+            "UI.Store.UI_StoreBrocadeWeavUI, Game.HotUpdate",
+            "UI.Store.UI_StoreChargeAddUpUI, Game.HotUpdate",
+            "UI.Store.UI_StoreChargeUI, Game.HotUpdate",
+            "UI.Store.UI_StoreExchangeList, Game.HotUpdate",
+            "UI.Store.UI_StoreExchangeUI, Game.HotUpdate",
+            "UI.Store.UI_StoreGiftBagAddRebateUI, Game.HotUpdate",
+            "UI.Store.UI_StoreGiftBagList, Game.HotUpdate",
+            "UI.Store.UI_StoreGiftBagUI, Game.HotUpdate",
+            "UI.Store.UI_StoreGrowthFundUI, Game.HotUpdate",
+            "UI.Store.UI_StoreListItem, Game.HotUpdate",
+            "UI.Store.UI_StoreMonthList, Game.HotUpdate",
+            "UI.Store.UI_StoreMonthUI, Game.HotUpdate",
+            "UI.Store.UI_StorePayPropUI, Game.HotUpdate",
+            "UI.Store.UI_StoreSummerGiftUI, Game.HotUpdate",
+            "UI.Store.UI_StoreUI, Game.HotUpdate",
+            "UI.Store.UI_StoreZGDCUI, Game.HotUpdate",
+            "UI.Store.UI_StoreZGTHitem, Game.HotUpdate",
+            "UI.Store.UI_SummerGiftRewardItem, Game.HotUpdate",
+            "UI.Store.UI_WeekGiftUI, Game.HotUpdate",
+            "UI.Share.UI_ShareUI, Game.HotUpdate",
+            "UI.RoleLvUp.UI_Component1, Game.HotUpdate",
+            "UI.RoleLvUp.UI_Component2, Game.HotUpdate",
+            "UI.RoleLvUp.UI_RoleLvUpUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_BadgeChooseUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_BadgeItem, Game.HotUpdate",
+            "UI.RoleInfo.UI_Button19, Game.HotUpdate",
+            "UI.RoleInfo.UI_Button20, Game.HotUpdate",
+            "UI.RoleInfo.UI_Button6, Game.HotUpdate",
+            "UI.RoleInfo.UI_ButtonBadge, Game.HotUpdate",
+            "UI.RoleInfo.UI_ButtonCollectProgress, Game.HotUpdate",
+            "UI.RoleInfo.UI_ButtonHeadChoose, Game.HotUpdate",
+            "UI.RoleInfo.UI_ButtonToggle2, Game.HotUpdate",
+            "UI.RoleInfo.UI_ChangeHead, Game.HotUpdate",
+            "UI.RoleInfo.UI_ChangeNameUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_ChangeThemeUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_ComBtn, Game.HotUpdate",
+            "UI.RoleInfo.UI_ComIconMask, Game.HotUpdate",
+            "UI.RoleInfo.UI_ComPhoto, Game.HotUpdate",
+            "UI.RoleInfo.UI_GMPanelUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_InputGiftCodeUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_ListHeadBorderItem, Game.HotUpdate",
+            "UI.RoleInfo.UI_ListHeadItem, Game.HotUpdate",
+            "UI.RoleInfo.UI_ListPhotoItem, Game.HotUpdate",
+            "UI.RoleInfo.UI_ListPhotoItemDetail, Game.HotUpdate",
+            "UI.RoleInfo.UI_ListSkillItem, Game.HotUpdate",
+            "UI.RoleInfo.UI_MainBgChooseTipsUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_MainBgChooseUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_OtherRoleInfoUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_PersonalPhotoUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_PersonalSkillUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_PhoneBindingUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_RoleInfoUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_SettingUI, Game.HotUpdate",
+            "UI.RoleInfo.UI_Slider2, Game.HotUpdate",
+            "UI.RoleInfo.UI_Slider2_grip, Game.HotUpdate",
+            "UI.RoleInfo.UI_bgItem, Game.HotUpdate",
+            "UI.PopWindow.UI_ExchangeGoodsUI, Game.HotUpdate",
+            "UI.OpenServerActivity.UI_BtnAnswerTianmen, Game.HotUpdate",
+            "UI.OpenServerActivity.UI_BtnHeaven, Game.HotUpdate",
+            "UI.OpenServerActivity.UI_BtnMingTong, Game.HotUpdate",
+            "UI.OpenServerActivity.UI_BtnNineZhouPool, Game.HotUpdate",
+            "UI.OpenServerActivity.UI_CompFlower, Game.HotUpdate",
+            "UI.OpenServerActivity.UI_OpenSererFightItem, Game.HotUpdate",
+            "UI.OpenServerActivity.UI_OpenServerActivityUI, Game.HotUpdate",
+            "UI.OpenServerActivity.UI_OpenServerFightUI, Game.HotUpdate",
+            "UI.OpenServerActivity.UI_OpenServerStoryUI, Game.HotUpdate",
+            "UI.OpenServerActivity.UI_OpenServerSuitAdditionUI, Game.HotUpdate",
+            "UI.OpenServerActivity.UI_StoryItem, Game.HotUpdate",
+            "UI.OpenServerActivity.UI_item, Game.HotUpdate",
+            "UI.OpenServerActivity.UI_suitAdditionItem, Game.HotUpdate",
+            "UI.Notice.UI_ComContent, Game.HotUpdate",
+            "UI.Notice.UI_ListActivityItem, Game.HotUpdate",
+            "UI.Notice.UI_ListNoticeItem, Game.HotUpdate",
+            "UI.Notice.UI_ListShowItem, Game.HotUpdate",
+            "UI.Notice.UI_NoticeActivityShowUI, Game.HotUpdate",
+            "UI.Notice.UI_NoticeSystemShowUI, Game.HotUpdate",
+            "UI.Notice.UI_NoticeUI, Game.HotUpdate",
+            "UI.NewYearRedEnvelope.UI_Button1, Game.HotUpdate",
+            "UI.NewYearRedEnvelope.UI_NewYearRedEnvelopeUI, Game.HotUpdate",
+            "UI.NewYearLogin.UI_ComLoginItem, Game.HotUpdate",
+            "UI.NewYearLogin.UI_NewYearLoginUI, Game.HotUpdate",
+            "UI.MiniGame.UI_Button11, Game.HotUpdate",
+            "UI.MiniGame.UI_Button6, Game.HotUpdate",
+            "UI.MiniGame.UI_Button7, Game.HotUpdate",
+            "UI.MiniGame.UI_ButtonInValueBar, Game.HotUpdate",
+            "UI.MiniGame.UI_ChallengeRewardItem, Game.HotUpdate",
+            "UI.MiniGame.UI_ChallengeRewardItemUI, Game.HotUpdate",
+            "UI.MiniGame.UI_ChallengeRewardsUI, Game.HotUpdate",
+            "UI.MiniGame.UI_Component1, Game.HotUpdate",
+            "UI.MiniGame.UI_Component2, Game.HotUpdate",
+            "UI.MiniGame.UI_FlipGameStartUI, Game.HotUpdate",
+            "UI.MiniGame.UI_FlipGameUI, Game.HotUpdate",
+            "UI.MiniGame.UI_GameStartUI, Game.HotUpdate",
+            "UI.MiniGame.UI_MaterialItem, Game.HotUpdate",
+            "UI.MiniGame.UI_MergeGameItemUI, Game.HotUpdate",
+            "UI.MiniGame.UI_MergeGameRouteTips, Game.HotUpdate",
+            "UI.MiniGame.UI_MergeGameUI, Game.HotUpdate",
+            "UI.MiniGame.UI_MergeGamematerialItem, Game.HotUpdate",
+            "UI.MiniGame.UI_NewMaterialShowView, Game.HotUpdate",
+            "UI.MiniGame.UI_ResultTipsUI, Game.HotUpdate",
+            "UI.MiniGame.UI_SyntheticRouteTipUI, Game.HotUpdate",
+            "UI.MiniGame.UI_TZFEGameCheckUI, Game.HotUpdate",
+            "UI.MiniGame.UI_TZFEGameView, Game.HotUpdate",
+            "UI.MiniGame.UI_cardItem, Game.HotUpdate",
+            "UI.MiniGame.UI_cardItembtn, Game.HotUpdate",
+            "UI.MiniGame.UI_descItem, Game.HotUpdate",
+            "UI.MiniGame.UI_numItem, Game.HotUpdate",
+            "UI.MiniGame.UI_passRewardItem, Game.HotUpdate",
+            "UI.MiniGame.UI_rewardItem, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_Button3, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_ComRewardList, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_Component1, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_Component11, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_Component12, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_Component13, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_Component14, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_Component15, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_Component2, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_Component3, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_Component4, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_Component5, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_Component6, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_MatchingCompetitionDetailUI, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_MatchingCompetitionGatheringUI, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_MatchingCompetitionLookUI, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_MatchingCompetitionRankUI, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_MatchingCompetitionRewardItem, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_MatchingCompetitionRewardUI, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_MatchingCompetitionRuleTips, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_MatchingCompetitionSelectUI, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_MatchingCompetitionUpLoadUI, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_MatchingCompetitionWorkListUI, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_MatchingCompetitionWorksUI, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_MatchingDressItem, Game.HotUpdate",
+            "UI.MatchingCompetition.UI_MatchingTypeItem, Game.HotUpdate",
+            "UI.Main.UI_ActivityStoryChapterUI, Game.HotUpdate",
+            "UI.Main.UI_ArenaFightResultUI, Game.HotUpdate",
+            "UI.Main.UI_BtnModle, Game.HotUpdate",
+            "UI.Main.UI_BtnModle1, Game.HotUpdate",
+            "UI.Main.UI_BtnModle2, Game.HotUpdate",
+            "UI.Main.UI_BtnModle3, Game.HotUpdate",
+            "UI.Main.UI_Button6, Game.HotUpdate",
+            "UI.Main.UI_ButtonChange, Game.HotUpdate",
+            "UI.Main.UI_ButtonModle1, Game.HotUpdate",
+            "UI.Main.UI_ButtonModleEffect, Game.HotUpdate",
+            "UI.Main.UI_ButtonStoryTitle, Game.HotUpdate",
+            "UI.Main.UI_ComAd, Game.HotUpdate",
+            "UI.Main.UI_ComAllPerfect, Game.HotUpdate",
+            "UI.Main.UI_ComArenaSkillTips, Game.HotUpdate",
+            "UI.Main.UI_ComCardHolder, Game.HotUpdate",
+            "UI.Main.UI_ComCardImgRes, Game.HotUpdate",
+            "UI.Main.UI_ComCardMask, Game.HotUpdate",
+            "UI.Main.UI_ComCardObj, Game.HotUpdate",
+            "UI.Main.UI_ComCardSelect, Game.HotUpdate",
+            "UI.Main.UI_ComClick, Game.HotUpdate",
+            "UI.Main.UI_ComDeduction, Game.HotUpdate",
+            "UI.Main.UI_ComDialogBg, Game.HotUpdate",
+            "UI.Main.UI_ComDodgeFightStar, Game.HotUpdate",
+            "UI.Main.UI_ComEff, Game.HotUpdate",
+            "UI.Main.UI_ComImgCard, Game.HotUpdate",
+            "UI.Main.UI_ComResult, Game.HotUpdate",
+            "UI.Main.UI_ComResultProMask, Game.HotUpdate",
+            "UI.Main.UI_ComScoreResult, Game.HotUpdate",
+            "UI.Main.UI_ComScoreStage, Game.HotUpdate",
+            "UI.Main.UI_ComSkillCard, Game.HotUpdate",
+            "UI.Main.UI_ComSkillCardMask, Game.HotUpdate",
+            "UI.Main.UI_ComSkillScore, Game.HotUpdate",
+            "UI.Main.UI_ComSkillShow, Game.HotUpdate",
+            "UI.Main.UI_ComTargetSkillShow, Game.HotUpdate",
+            "UI.Main.UI_CompAnimationFightIcon, Game.HotUpdate",
+            "UI.Main.UI_CompArrow, Game.HotUpdate",
+            "UI.Main.UI_CompBonusBox, Game.HotUpdate",
+            "UI.Main.UI_CompChapter, Game.HotUpdate",
+            "UI.Main.UI_CompChapter10001, Game.HotUpdate",
+            "UI.Main.UI_CompChapter10002, Game.HotUpdate",
+            "UI.Main.UI_CompChapter10003, Game.HotUpdate",
+            "UI.Main.UI_CompChapter10004, Game.HotUpdate",
+            "UI.Main.UI_CompChapter10005, Game.HotUpdate",
+            "UI.Main.UI_CompChapter10006, Game.HotUpdate",
+            "UI.Main.UI_CompChapter10007, Game.HotUpdate",
+            "UI.Main.UI_CompChapter10008, Game.HotUpdate",
+            "UI.Main.UI_CompChapter20001, Game.HotUpdate",
+            "UI.Main.UI_CompChapter20002, Game.HotUpdate",
+            "UI.Main.UI_CompChapter20003, Game.HotUpdate",
+            "UI.Main.UI_CompChapter20004, Game.HotUpdate",
+            "UI.Main.UI_CompChapter20005, Game.HotUpdate",
+            "UI.Main.UI_CompChapter20006, Game.HotUpdate",
+            "UI.Main.UI_CompChapter20007, Game.HotUpdate",
+            "UI.Main.UI_CompChapter20008, Game.HotUpdate",
+            "UI.Main.UI_CompChapterScroll, Game.HotUpdate",
+            "UI.Main.UI_CompDialogHead, Game.HotUpdate",
+            "UI.Main.UI_CompDialogHead_old, Game.HotUpdate",
+            "UI.Main.UI_CompDialogName, Game.HotUpdate",
+            "UI.Main.UI_CompDialogText, Game.HotUpdate",
+            "UI.Main.UI_CompFightExpBar, Game.HotUpdate",
+            "UI.Main.UI_CompFightNameRole, Game.HotUpdate",
+            "UI.Main.UI_CompFightNameTarget, Game.HotUpdate",
+            "UI.Main.UI_CompFlower1, Game.HotUpdate",
+            "UI.Main.UI_CompFlower2, Game.HotUpdate",
+            "UI.Main.UI_CompLookBackContent, Game.HotUpdate",
+            "UI.Main.UI_CompStoryLevelItem, Game.HotUpdate",
+            "UI.Main.UI_CompStoryLevelItem1, Game.HotUpdate",
+            "UI.Main.UI_Component1, Game.HotUpdate",
+            "UI.Main.UI_Component2, Game.HotUpdate",
+            "UI.Main.UI_Component3, Game.HotUpdate",
+            "UI.Main.UI_Component4, Game.HotUpdate",
+            "UI.Main.UI_Component8, Game.HotUpdate",
+            "UI.Main.UI_Component9, Game.HotUpdate",
+            "UI.Main.UI_ComponentChapterPic, Game.HotUpdate",
+            "UI.Main.UI_ComponentHead, Game.HotUpdate",
+            "UI.Main.UI_ComponentHeadBar, Game.HotUpdate",
+            "UI.Main.UI_ComponentListChapterItem, Game.HotUpdate",
+            "UI.Main.UI_ListAdItem, Game.HotUpdate",
+            "UI.Main.UI_ListCardFightItem, Game.HotUpdate",
+            "UI.Main.UI_ListCardSkillItem, Game.HotUpdate",
+            "UI.Main.UI_ListChapterItem, Game.HotUpdate",
+            "UI.Main.UI_ListDialogItem, Game.HotUpdate",
+            "UI.Main.UI_ListFailItem, Game.HotUpdate",
+            "UI.Main.UI_ListRewardItem, Game.HotUpdate",
+            "UI.Main.UI_MainUI, Game.HotUpdate",
+            "UI.Main.UI_ProgressBar1, Game.HotUpdate",
+            "UI.Main.UI_ProgressBar3, Game.HotUpdate",
+            "UI.Main.UI_ProgressBarTargetScore, Game.HotUpdate",
+            "UI.Main.UI_StoryCardChooseUI, Game.HotUpdate",
+            "UI.Main.UI_StoryChapterListUI, Game.HotUpdate",
+            "UI.Main.UI_StoryChapterUI, Game.HotUpdate",
+            "UI.Main.UI_StoryDialogUI, Game.HotUpdate",
+            "UI.Main.UI_StoryFightFailUI, Game.HotUpdate",
+            "UI.Main.UI_StoryFightQuicklyBonusListItem, Game.HotUpdate",
+            "UI.Main.UI_StoryFightQuicklyComplete, Game.HotUpdate",
+            "UI.Main.UI_StoryFightQuicklyUI, Game.HotUpdate",
+            "UI.Main.UI_StoryFightResultUI, Game.HotUpdate",
+            "UI.Main.UI_StoryFightSingleScoreUI, Game.HotUpdate",
+            "UI.Main.UI_StoryFightSingleUI, Game.HotUpdate",
+            "UI.Main.UI_StoryFightTargetScoreUI, Game.HotUpdate",
+            "UI.Main.UI_StoryFightTargetUI, Game.HotUpdate",
+            "UI.Main.UI_StoryLevelInfoUI, Game.HotUpdate",
+            "UI.Main.UI_StoryLookBackUI, Game.HotUpdate",
+            "UI.Main.UI_StorySkillUI, Game.HotUpdate",
+            "UI.Mail.UI_ComContent, Game.HotUpdate",
+            "UI.Mail.UI_ListItem, Game.HotUpdate",
+            "UI.Mail.UI_MailContentUI, Game.HotUpdate",
+            "UI.Mail.UI_MailUI, Game.HotUpdate",
+            "UI.LuckyBox.UI_Button1, Game.HotUpdate",
+            "UI.LuckyBox.UI_Button2, Game.HotUpdate",
+            "UI.LuckyBox.UI_Button3, Game.HotUpdate",
+            "UI.LuckyBox.UI_Button5, Game.HotUpdate",
+            "UI.LuckyBox.UI_Button9, Game.HotUpdate",
+            "UI.LuckyBox.UI_ButtonTab1, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComBagTime, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComBox, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComBox1, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComBox_2, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComBox_3, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComBox_4, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComCard, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComCost, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComCost2, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComHolder, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComModel, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComModelRes, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComStar, Game.HotUpdate",
+            "UI.LuckyBox.UI_CompLuckyBoxBonusListItem, Game.HotUpdate",
+            "UI.LuckyBox.UI_Component1, Game.HotUpdate",
+            "UI.LuckyBox.UI_Component2, Game.HotUpdate",
+            "UI.LuckyBox.UI_ComponentLine, Game.HotUpdate",
+            "UI.LuckyBox.UI_LuckBoxBonusShowUI, Game.HotUpdate",
+            "UI.LuckyBox.UI_LuckBoxBonusUI, Game.HotUpdate",
+            "UI.LuckyBox.UI_LuckyBoxActivityUI, Game.HotUpdate",
+            "UI.LuckyBox.UI_LuckyBoxBonusItem, Game.HotUpdate",
+            "UI.LuckyBox.UI_LuckyBoxBonusShowItem, Game.HotUpdate",
+            "UI.LuckyBox.UI_LuckyBoxNewCardUI, Game.HotUpdate",
+            "UI.LuckyBox.UI_LuckyBoxNewDressUI, Game.HotUpdate",
+            "UI.LuckyBox.UI_LuckyBoxPreShowUI, Game.HotUpdate",
+            "UI.LuckyBox.UI_LuckyBoxStarUI, Game.HotUpdate",
+            "UI.LuckyBox.UI_LuckyBoxUI, Game.HotUpdate",
+            "UI.LuckyBox.UI_LuckyBoxWishUI, Game.HotUpdate",
+            "UI.LuckyBox.UI_comLuckBoxBtn, Game.HotUpdate",
+            "UI.Login.UI_Button2, Game.HotUpdate",
+            "UI.Login.UI_ComContent, Game.HotUpdate",
+            "UI.Login.UI_ComboBox1_popup, Game.HotUpdate",
+            "UI.Login.UI_LoginInputUI, Game.HotUpdate",
+            "UI.Login.UI_LoginUI, Game.HotUpdate",
+            "UI.Login.UI_NoticeUI, Game.HotUpdate",
+            "UI.Login.UI_QieHuanUI, Game.HotUpdate",
+            "UI.Login.UI_RegisterUI, Game.HotUpdate",
+            "UI.Login.UI_RegisterUIBackup, Game.HotUpdate",
+            "UI.Login.UI_RoleInfoRegisterUI, Game.HotUpdate",
+            "UI.Login.UI_ServerListUI, Game.HotUpdate",
+            "UI.Loading.UI_LoadingView, Game.HotUpdate",
+            "UI.League.UI_Button123, Game.HotUpdate",
+            "UI.League.UI_Button14, Game.HotUpdate",
+            "UI.League.UI_Button15, Game.HotUpdate",
+            "UI.League.UI_Button20, Game.HotUpdate",
+            "UI.League.UI_Button22, Game.HotUpdate",
+            "UI.League.UI_Button3, Game.HotUpdate",
+            "UI.League.UI_ButtonModle2, Game.HotUpdate",
+            "UI.League.UI_ButtonModle3, Game.HotUpdate",
+            "UI.League.UI_ButtonModle4, Game.HotUpdate",
+            "UI.League.UI_ButtonModle5, Game.HotUpdate",
+            "UI.League.UI_ButtonModle6, Game.HotUpdate",
+            "UI.League.UI_ButtonModle7, Game.HotUpdate",
+            "UI.League.UI_ComConstruct, Game.HotUpdate",
+            "UI.League.UI_ComConstruct1, Game.HotUpdate",
+            "UI.League.UI_ComHeadIcon, Game.HotUpdate",
+            "UI.League.UI_ComLeader, Game.HotUpdate",
+            "UI.League.UI_ComLeagueHead, Game.HotUpdate",
+            "UI.League.UI_ComPary, Game.HotUpdate",
+            "UI.League.UI_ComSkillUp, Game.HotUpdate",
+            "UI.League.UI_LeagueAnswerRankUI, Game.HotUpdate",
+            "UI.League.UI_LeagueAnswerRewardUI, Game.HotUpdate",
+            "UI.League.UI_LeagueAnswerUI, Game.HotUpdate",
+            "UI.League.UI_LeagueAnsweringUI, Game.HotUpdate",
+            "UI.League.UI_LeagueApplyUI, Game.HotUpdate",
+            "UI.League.UI_LeagueChangeNameUI, Game.HotUpdate",
+            "UI.League.UI_LeagueChangeNoticeUI, Game.HotUpdate",
+            "UI.League.UI_LeagueChatUI, Game.HotUpdate",
+            "UI.League.UI_LeagueConstructUI, Game.HotUpdate",
+            "UI.League.UI_LeagueCreatUI, Game.HotUpdate",
+            "UI.League.UI_LeagueGiftUI, Game.HotUpdate",
+            "UI.League.UI_LeagueJoinUI, Game.HotUpdate",
+            "UI.League.UI_LeagueMemberAppointUI, Game.HotUpdate",
+            "UI.League.UI_LeagueMemberLogUI, Game.HotUpdate",
+            "UI.League.UI_LeagueMemberUI, Game.HotUpdate",
+            "UI.League.UI_LeaguePrayUI, Game.HotUpdate",
+            "UI.League.UI_LeagueSkillUI, Game.HotUpdate",
+            "UI.League.UI_LeagueSkillUpUI, Game.HotUpdate",
+            "UI.League.UI_LeagueTeaPartyOverUI, Game.HotUpdate",
+            "UI.League.UI_LeagueTeaPartyRewardUI, Game.HotUpdate",
+            "UI.League.UI_LeagueTeaPartyShowUI, Game.HotUpdate",
+            "UI.League.UI_LeagueTeaPartyUI, Game.HotUpdate",
+            "UI.League.UI_LeagueUI, Game.HotUpdate",
+            "UI.League.UI_LinessRewardProcessItemBt, Game.HotUpdate",
+            "UI.League.UI_ListAnswerJoinItem, Game.HotUpdate",
+            "UI.League.UI_ListAnswerRewardItem, Game.HotUpdate",
+            "UI.League.UI_ListAnswerRuleItem, Game.HotUpdate",
+            "UI.League.UI_ListApplyItem, Game.HotUpdate",
+            "UI.League.UI_ListChatAnswerItem, Game.HotUpdate",
+            "UI.League.UI_ListChatAnswerItemMine, Game.HotUpdate",
+            "UI.League.UI_ListChatItem, Game.HotUpdate",
+            "UI.League.UI_ListChatItemMine, Game.HotUpdate",
+            "UI.League.UI_ListGiftButItem, Game.HotUpdate",
+            "UI.League.UI_ListGiftBuyItemBottom, Game.HotUpdate",
+            "UI.League.UI_ListGiftBuyItemCenter, Game.HotUpdate",
+            "UI.League.UI_ListGiftBuyItemTop, Game.HotUpdate",
+            "UI.League.UI_ListGiftGetItem, Game.HotUpdate",
+            "UI.League.UI_ListGiftGetItemBottom, Game.HotUpdate",
+            "UI.League.UI_ListGiftGetItemCenter, Game.HotUpdate",
+            "UI.League.UI_ListGiftGetItemTop, Game.HotUpdate",
+            "UI.League.UI_ListIconItem, Game.HotUpdate",
+            "UI.League.UI_ListIconSmallItem, Game.HotUpdate",
+            "UI.League.UI_ListJoinItem, Game.HotUpdate",
+            "UI.League.UI_ListLogItem, Game.HotUpdate",
+            "UI.League.UI_ListMemberItem, Game.HotUpdate",
+            "UI.League.UI_ListRankItem, Game.HotUpdate",
+            "UI.League.UI_ListSkillItem, Game.HotUpdate",
+            "UI.League.UI_ListSkillLayerItem, Game.HotUpdate",
+            "UI.League.UI_ListSkillScore, Game.HotUpdate",
+            "UI.League.UI_ListSkillTypeItem, Game.HotUpdate",
+            "UI.League.UI_TeaPartyItemTips, Game.HotUpdate",
+            "UI.League.UI_comTeaPartyItem, Game.HotUpdate",
+            "UI.League.UI_comTeaPartyOverItem, Game.HotUpdate",
+            "UI.League.UI_comTxtNotice, Game.HotUpdate",
+            "UI.InstanceZones.UI_ButtonModle7, Game.HotUpdate",
+            "UI.InstanceZones.UI_ButtonModle9, Game.HotUpdate",
+            "UI.InstanceZones.UI_InstanceSamllUI, Game.HotUpdate",
+            "UI.InstanceZones.UI_InstanceZonesUI, Game.HotUpdate",
+            "UI.Guide.UI_ComHolder, Game.HotUpdate",
+            "UI.Guide.UI_Component1, Game.HotUpdate",
+            "UI.Guide.UI_Component2, Game.HotUpdate",
+            "UI.Guide.UI_GuideUI, Game.HotUpdate",
+            "UI.Friend.UI_FriendAddUI, Game.HotUpdate",
+            "UI.Friend.UI_FriendUI, Game.HotUpdate",
+            "UI.Friend.UI_ListApplyItem, Game.HotUpdate",
+            "UI.Friend.UI_ListItem, Game.HotUpdate",
+            "UI.Friend.UI_ListSearchItem, Game.HotUpdate",
+            "UI.FieldWork.UI_Button1, Game.HotUpdate",
+            "UI.FieldWork.UI_ComAllScore, Game.HotUpdate",
+            "UI.FieldWork.UI_ComAllScoreResult, Game.HotUpdate",
+            "UI.FieldWork.UI_ComCard, Game.HotUpdate",
+            "UI.FieldWork.UI_ComCardMask, Game.HotUpdate",
+            "UI.FieldWork.UI_ComCardRecord, Game.HotUpdate",
+            "UI.FieldWork.UI_ComResultCardMask, Game.HotUpdate",
+            "UI.FieldWork.UI_CompChapter, Game.HotUpdate",
+            "UI.FieldWork.UI_CompChapterScroll, Game.HotUpdate",
+            "UI.FieldWork.UI_CompStoryLevelItem, Game.HotUpdate",
+            "UI.FieldWork.UI_Component1, Game.HotUpdate",
+            "UI.FieldWork.UI_Component2, Game.HotUpdate",
+            "UI.FieldWork.UI_FieldWorkLevelInfoUI, Game.HotUpdate",
+            "UI.FieldWork.UI_FieldWorkLevelUI, Game.HotUpdate",
+            "UI.FieldWork.UI_FieldWorkRoundResultUI, Game.HotUpdate",
+            "UI.FieldWork.UI_FieldWorkRoundTips, Game.HotUpdate",
+            "UI.FieldWork.UI_ListResultItem, Game.HotUpdate",
+            "UI.FieldWork.UI_ListRewardItem, Game.HotUpdate",
+            "UI.FieldGuide.UI_BonusBox, Game.HotUpdate",
+            "UI.FieldGuide.UI_Button4, Game.HotUpdate",
+            "UI.FieldGuide.UI_Button5, Game.HotUpdate",
+            "UI.FieldGuide.UI_Button6, Game.HotUpdate",
+            "UI.FieldGuide.UI_ButtonBannerPage, Game.HotUpdate",
+            "UI.FieldGuide.UI_ButtonSuitType, Game.HotUpdate",
+            "UI.FieldGuide.UI_CardGuideUI, Game.HotUpdate",
+            "UI.FieldGuide.UI_ChapterGuideItem, Game.HotUpdate",
+            "UI.FieldGuide.UI_ChapterItemGuideUI, Game.HotUpdate",
+            "UI.FieldGuide.UI_ChapterItemShowUI, Game.HotUpdate",
+            "UI.FieldGuide.UI_ComTravel, Game.HotUpdate",
+            "UI.FieldGuide.UI_ComboBox1_item, Game.HotUpdate",
+            "UI.FieldGuide.UI_ComboBox1_popup, Game.HotUpdate",
+            "UI.FieldGuide.UI_CompGuideItem, Game.HotUpdate",
+            "UI.FieldGuide.UI_CompSuitItem, Game.HotUpdate",
+            "UI.FieldGuide.UI_DressUpGuideUI, Game.HotUpdate",
+            "UI.FieldGuide.UI_FieldGuideUI, Game.HotUpdate",
+            "UI.FieldGuide.UI_ListDressUpPartsItem, Game.HotUpdate",
+            "UI.FieldGuide.UI_ListTravelAreaItem, Game.HotUpdate",
+            "UI.FieldGuide.UI_ListTravelLocationItem, Game.HotUpdate",
+            "UI.FieldGuide.UI_ProgressBar2, Game.HotUpdate",
+            "UI.FieldGuide.UI_ProgressBar3, Game.HotUpdate",
+            "UI.FieldGuide.UI_ProgressBar4, Game.HotUpdate",
+            "UI.FieldGuide.UI_SuitComitem, Game.HotUpdate",
+            "UI.FieldGuide.UI_SuitGuideDetailUI, Game.HotUpdate",
+            "UI.FieldGuide.UI_SuitGuideListUI, Game.HotUpdate",
+            "UI.FieldGuide.UI_SuitGuideUI, Game.HotUpdate",
+            "UI.FieldGuide.UI_SuitShowUI, Game.HotUpdate",
+            "UI.FieldGuide.UI_SuitStoryItem, Game.HotUpdate",
+            "UI.FieldGuide.UI_SuitTypeItem, Game.HotUpdate",
+            "UI.FieldGuide.UI_SuitTypeItems, Game.HotUpdate",
+            "UI.FieldGuide.UI_TravelGuideUI, Game.HotUpdate",
+            "UI.FieldGuide.UI_TravelShowUI, Game.HotUpdate",
+            "UI.FieldGuide.UI_listSuit, Game.HotUpdate",
+            "UI.FieldGuide.UI_listSuitCom, Game.HotUpdate",
+            "UI.Field.UI_Button1, Game.HotUpdate",
+            "UI.Field.UI_Button3, Game.HotUpdate",
+            "UI.Field.UI_FieldFightEndUI, Game.HotUpdate",
+            "UI.Field.UI_FieldFightInfoUI, Game.HotUpdate",
+            "UI.Field.UI_FieldTaskUI, Game.HotUpdate",
+            "UI.Field.UI_FieldUI, Game.HotUpdate",
+            "UI.Field.UI_ListItem, Game.HotUpdate",
+            "UI.EnduringGiftBox.UI_BtnBuyPink, Game.HotUpdate",
+            "UI.EnduringGiftBox.UI_BtnBuyWeek, Game.HotUpdate",
+            "UI.EnduringGiftBox.UI_ComDiscount2, Game.HotUpdate",
+            "UI.EnduringGiftBox.UI_EnduringGiftBoxUI, Game.HotUpdate",
+            "UI.EnduringGiftBox.UI_RushSaleGiftBoxUI, Game.HotUpdate",
+            "UI.EnduringGiftBox.UI_SpecialOfferGiftBoxUI, Game.HotUpdate",
+            "UI.DressUp.UI_ArenaDressUpFightUI, Game.HotUpdate",
+            "UI.DressUp.UI_Button2, Game.HotUpdate",
+            "UI.DressUp.UI_Button4, Game.HotUpdate",
+            "UI.DressUp.UI_ButtonHeadChoose, Game.HotUpdate",
+            "UI.DressUp.UI_ButtonPage, Game.HotUpdate",
+            "UI.DressUp.UI_ComChecked, Game.HotUpdate",
+            "UI.DressUp.UI_ComItemList, Game.HotUpdate",
+            "UI.DressUp.UI_ComSearch, Game.HotUpdate",
+            "UI.DressUp.UI_ComTagItem, Game.HotUpdate",
+            "UI.DressUp.UI_ComboBoxRarity_popup, Game.HotUpdate",
+            "UI.DressUp.UI_ComboBoxSuit_popup, Game.HotUpdate",
+            "UI.DressUp.UI_Component1, Game.HotUpdate",
+            "UI.DressUp.UI_Component2, Game.HotUpdate",
+            "UI.DressUp.UI_DressFilterUI, Game.HotUpdate",
+            "UI.DressUp.UI_DressUpFightUI, Game.HotUpdate",
+            "UI.DressUp.UI_DressUpUI, Game.HotUpdate",
+            "UI.DressUp.UI_ListItem, Game.HotUpdate",
+            "UI.DressUp.UI_PartsList, Game.HotUpdate",
+            "UI.DressUp.UI_PartsListItem, Game.HotUpdate",
+            "UI.DressUp.UI_PhotographSaveUI, Game.HotUpdate",
+            "UI.DressUp.UI_PhotographUI, Game.HotUpdate",
+            "UI.DressUp.UI_TypeItem, Game.HotUpdate",
+            "UI.DressUp.UI_comListType, Game.HotUpdate",
+            "UI.DeleteAccount.UI_Button19, Game.HotUpdate",
+            "UI.DeleteAccount.UI_ComTextCondition, Game.HotUpdate",
+            "UI.DeleteAccount.UI_ComTextProtocal, Game.HotUpdate",
+            "UI.DeleteAccount.UI_DeleteAccountUI, Game.HotUpdate",
+            "UI.DailyWelfare.UI_Button1, Game.HotUpdate",
+            "UI.DailyWelfare.UI_ComList, Game.HotUpdate",
+            "UI.DailyWelfare.UI_ComProBonus, Game.HotUpdate",
+            "UI.DailyWelfare.UI_ComProBonus2, Game.HotUpdate",
+            "UI.DailyWelfare.UI_ComSupply, Game.HotUpdate",
+            "UI.DailyWelfare.UI_ComSupplyBg, Game.HotUpdate",
+            "UI.DailyWelfare.UI_ComSupplyItem, Game.HotUpdate",
+            "UI.DailyWelfare.UI_Component1, Game.HotUpdate",
+            "UI.DailyWelfare.UI_DailySignRechargeTipsUI, Game.HotUpdate",
+            "UI.DailyWelfare.UI_DailySignUI, Game.HotUpdate",
+            "UI.DailyWelfare.UI_DailySupplyUI, Game.HotUpdate",
+            "UI.DailyWelfare.UI_DailyWelfareUI, Game.HotUpdate",
+            "UI.DailyWelfare.UI_GiftDetailUI, Game.HotUpdate",
+            "UI.DailyWelfare.UI_LimitChargeUI, Game.HotUpdate",
+            "UI.DailyWelfare.UI_ListChargeItem, Game.HotUpdate",
+            "UI.DailyWelfare.UI_ListItem, Game.HotUpdate",
+            "UI.DailyWelfare.UI_ListShowItem, Game.HotUpdate",
+            "UI.DailyWelfare.UI_ListSignItem, Game.HotUpdate",
+            "UI.DailyWelfare.UI_NewLimitChargeUI, Game.HotUpdate",
+            "UI.DailyWelfare.UI_ProgressBar1, Game.HotUpdate",
+            "UI.DailyWelfare.UI_SevenDayLoginUI, Game.HotUpdate",
+            "UI.CreateRole.UI_ButtonDice, Game.HotUpdate",
+            "UI.CreateRole.UI_ComboBoxRarity_popup, Game.HotUpdate",
+            "UI.CreateRole.UI_CreateRoleUI, Game.HotUpdate",
+            "UI.CreateRole.UI_Envelope, Game.HotUpdate",
+            "UI.CreateRole.UI_EnvelopeModel, Game.HotUpdate",
+            "UI.CreateRole.UI_NewRoleGetSuitUI, Game.HotUpdate",
+            "UI.CreateRole.UI_PartsList, Game.HotUpdate",
+            "UI.CreateRole.UI_PartsListItem, Game.HotUpdate",
+            "UI.CreateRole.UI_TryDressUpView, Game.HotUpdate",
+            "UI.CommonGame.UI_BonusBoxDetailUI, Game.HotUpdate",
+            "UI.CommonGame.UI_BtnBuy, Game.HotUpdate",
+            "UI.CommonGame.UI_BtnNormal1, Game.HotUpdate",
+            "UI.CommonGame.UI_BtnReceive, Game.HotUpdate",
+            "UI.CommonGame.UI_BtnStyle000, Game.HotUpdate",
+            "UI.CommonGame.UI_BtnStyle006, Game.HotUpdate",
+            "UI.CommonGame.UI_Button16, Game.HotUpdate",
+            "UI.CommonGame.UI_Button18, Game.HotUpdate",
+            "UI.CommonGame.UI_Button19, Game.HotUpdate",
+            "UI.CommonGame.UI_Button2, Game.HotUpdate",
+            "UI.CommonGame.UI_Button21, Game.HotUpdate",
+            "UI.CommonGame.UI_Button22, Game.HotUpdate",
+            "UI.CommonGame.UI_Button24, Game.HotUpdate",
+            "UI.CommonGame.UI_Button3, Game.HotUpdate",
+            "UI.CommonGame.UI_ButtonApproach, Game.HotUpdate",
+            "UI.CommonGame.UI_ButtonInValueBar, Game.HotUpdate",
+            "UI.CommonGame.UI_BuyConfirmUI, Game.HotUpdate",
+            "UI.CommonGame.UI_BuyCountUI, Game.HotUpdate",
+            "UI.CommonGame.UI_BuyTipsUI, Game.HotUpdate",
+            "UI.CommonGame.UI_ComBg000, Game.HotUpdate",
+            "UI.CommonGame.UI_ComBg001, Game.HotUpdate",
+            "UI.CommonGame.UI_ComCardMask, Game.HotUpdate",
+            "UI.CommonGame.UI_ComContent, Game.HotUpdate",
+            "UI.CommonGame.UI_ComCost, Game.HotUpdate",
+            "UI.CommonGame.UI_ComCostCurrency, Game.HotUpdate",
+            "UI.CommonGame.UI_ComCostCurrencyWithHas, Game.HotUpdate",
+            "UI.CommonGame.UI_ComCurSupplyItem, Game.HotUpdate",
+            "UI.CommonGame.UI_ComDiscount, Game.HotUpdate",
+            "UI.CommonGame.UI_ComDodgeStar, Game.HotUpdate",
+            "UI.CommonGame.UI_ComFilterType, Game.HotUpdate",
+            "UI.CommonGame.UI_ComFunctionOpen, Game.HotUpdate",
+            "UI.CommonGame.UI_ComGouMaiGetText, Game.HotUpdate",
+            "UI.CommonGame.UI_ComHead, Game.HotUpdate",
+            "UI.CommonGame.UI_ComHead1, Game.HotUpdate",
+            "UI.CommonGame.UI_ComHead2, Game.HotUpdate",
+            "UI.CommonGame.UI_ComHeadIcon, Game.HotUpdate",
+            "UI.CommonGame.UI_ComHeadLv, Game.HotUpdate",
+            "UI.CommonGame.UI_ComHeadLv1, Game.HotUpdate",
+            "UI.CommonGame.UI_ComHeadWithLv, Game.HotUpdate",
+            "UI.CommonGame.UI_ComHeadWithLv1, Game.HotUpdate",
+            "UI.CommonGame.UI_ComHeadWithLv2, Game.HotUpdate",
+            "UI.CommonGame.UI_ComHead_new, Game.HotUpdate",
+            "UI.CommonGame.UI_ComItem, Game.HotUpdate",
+            "UI.CommonGame.UI_ComItem000, Game.HotUpdate",
+            "UI.CommonGame.UI_ComLeftGiftBox, Game.HotUpdate",
+            "UI.CommonGame.UI_ComRedDot, Game.HotUpdate",
+            "UI.CommonGame.UI_ComRewardList, Game.HotUpdate",
+            "UI.CommonGame.UI_ComScaleList, Game.HotUpdate",
+            "UI.CommonGame.UI_ComSpecialOfferGiftBoxItem, Game.HotUpdate",
+            "UI.CommonGame.UI_ComStar, Game.HotUpdate",
+            "UI.CommonGame.UI_ComTag, Game.HotUpdate",
+            "UI.CommonGame.UI_ComTipsApproach, Game.HotUpdate",
+            "UI.CommonGame.UI_ComTipsBase, Game.HotUpdate",
+            "UI.CommonGame.UI_ComTitle, Game.HotUpdate",
+            "UI.CommonGame.UI_ComTopTitle, Game.HotUpdate",
+            "UI.CommonGame.UI_CompFlower, Game.HotUpdate",
+            "UI.CommonGame.UI_Component1, Game.HotUpdate",
+            "UI.CommonGame.UI_Component2, Game.HotUpdate",
+            "UI.CommonGame.UI_ComponentValueBar, Game.HotUpdate",
+            "UI.CommonGame.UI_DressUpItemTips, Game.HotUpdate",
+            "UI.CommonGame.UI_FunctionOpenUI, Game.HotUpdate",
+            "UI.CommonGame.UI_GetSuitItemUI, Game.HotUpdate",
+            "UI.CommonGame.UI_GoodsItemTips, Game.HotUpdate",
+            "UI.CommonGame.UI_ItemExchangeUI, Game.HotUpdate",
+            "UI.CommonGame.UI_ListCardItem, Game.HotUpdate",
+            "UI.CommonGame.UI_ListLevelItem, Game.HotUpdate",
+            "UI.CommonGame.UI_ListScoreItem, Game.HotUpdate",
+            "UI.CommonGame.UI_ListScoreItem2, Game.HotUpdate",
+            "UI.CommonGame.UI_ListSourceItem, Game.HotUpdate",
+            "UI.CommonGame.UI_ListTagItem, Game.HotUpdate",
+            "UI.CommonGame.UI_RewardIconYellow, Game.HotUpdate",
+            "UI.CommonGame.UI_RewardPreviewUI, Game.HotUpdate",
+            "UI.CommonGame.UI_RewardUI, Game.HotUpdate",
+            "UI.CommonGame.UI_RuleUI, Game.HotUpdate",
+            "UI.CommonGame.UI_SuitItemUI, Game.HotUpdate",
+            "UI.CommonGame.UI_SuitPartsDetailUI, Game.HotUpdate",
+            "UI.CommonGame.UI_TaskListItem, Game.HotUpdate",
+            "UI.CommonGame.UI_holderBg, Game.HotUpdate",
+            "UI.Common.UI_AlertMiniGameUI, Game.HotUpdate",
+            "UI.Common.UI_AlertUI, Game.HotUpdate",
+            "UI.Common.UI_ComHolder, Game.HotUpdate",
+            "UI.Common.UI_FloatingTextPromptErrUI, Game.HotUpdate",
+            "UI.Common.UI_FloatingTextPromptNarmalUI, Game.HotUpdate",
+            "UI.Common.UI_FloatingTextPromptSuccessUI, Game.HotUpdate",
+            "UI.Common.UI_FloatingTextPromptWarningUI, Game.HotUpdate",
+            "UI.Common.UI_ListLogItem, Game.HotUpdate",
+            "UI.Common.UI_LogUI, Game.HotUpdate",
+            "UI.Common.UI_ModalStatusUI, Game.HotUpdate",
+            "UI.ClothingUpgrade.UI_Button123, Game.HotUpdate",
+            "UI.ClothingUpgrade.UI_ClothingAnsweringUI, Game.HotUpdate",
+            "UI.ClothingUpgrade.UI_ClothingSelectUI, Game.HotUpdate",
+            "UI.ClothingUpgrade.UI_ClothingUpgradeUI, Game.HotUpdate",
+            "UI.ClothingUpgrade.UI_clothingSelectItem, Game.HotUpdate",
+            "UI.ClothingSynthetic.UI_BonusGift, Game.HotUpdate",
+            "UI.ClothingSynthetic.UI_ClothingListItem, Game.HotUpdate",
+            "UI.ClothingSynthetic.UI_ClothingSyntheticListUI, Game.HotUpdate",
+            "UI.ClothingSynthetic.UI_ClothingSyntheticUI, Game.HotUpdate",
+            "UI.ClothingSynthetic.UI_CompItemInfo, Game.HotUpdate",
+            "UI.ClothingSynthetic.UI_Component1, Game.HotUpdate",
+            "UI.ClothingSynthetic.UI_Component1WithMask, Game.HotUpdate",
+            "UI.ClothingSynthetic.UI_Component2, Game.HotUpdate",
+            "UI.ClothingSynthetic.UI_MateriasListItem, Game.HotUpdate",
+            "UI.ClothingSynthetic.UI_SuitListItem, Game.HotUpdate",
+            "UI.ClothingShop.UI_ArenaShopUI, Game.HotUpdate",
+            "UI.ClothingShop.UI_ButtonModle, Game.HotUpdate",
+            "UI.ClothingShop.UI_ClothingShopUI, Game.HotUpdate",
+            "UI.ClothingShop.UI_ComClothingRole, Game.HotUpdate",
+            "UI.ClothingShop.UI_ComClothingRoleModel, Game.HotUpdate",
+            "UI.ClothingShop.UI_ComClothingShopItemInfo, Game.HotUpdate",
+            "UI.ClothingShop.UI_ComGalleryShopBottom, Game.HotUpdate",
+            "UI.ClothingShop.UI_ComGalleryShopTab, Game.HotUpdate",
+            "UI.ClothingShop.UI_GalleryShopUI, Game.HotUpdate",
+            "UI.ClothingShop.UI_ListClothingShopItem, Game.HotUpdate",
+            "UI.ClothingShop.UI_ListGalleryShopItem, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ClothingFosterFinishUI, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ClothingFosterUI, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ClothingListUI, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ClothingRenewFinishUI, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ClothingRewardItemUI, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ClothingRewardUI, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ClothingUI, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ClothingropertyShowUI, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ComFosterReward, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ComRenewReward, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ComRenewRewardGet, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ComboBox1_item, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ComboBox1_popup, Game.HotUpdate",
+            "UI.ClothingFoster.UI_Component4, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ListFosterItem, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ListMaterialsItem, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ListPropertyAddItem, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ListPropertyShowItem, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ListRewardItem, Game.HotUpdate",
+            "UI.ClothingFoster.UI_ListSuitItem, Game.HotUpdate",
+            "UI.ClothingFoster.UI_comFosterAni, Game.HotUpdate",
+            "UI.ClothingDecompose.UI_Button6, Game.HotUpdate",
+            "UI.ClothingDecompose.UI_ClothingDecomposeRuleUI, Game.HotUpdate",
+            "UI.ClothingDecompose.UI_ClothingDecomposeUI, Game.HotUpdate",
+            "UI.ClothingDecompose.UI_ListRewardItem, Game.HotUpdate",
+            "UI.CardSynthetic.UI_CardSyntheticUI, Game.HotUpdate",
+            "UI.CardSynthetic.UI_ComCardImgRes, Game.HotUpdate",
+            "UI.CardSynthetic.UI_ComImgCard, Game.HotUpdate",
+            "UI.CardSynthetic.UI_MateriasListItem, Game.HotUpdate",
+            "UI.Card.UI_CardDetailList, Game.HotUpdate",
+            "UI.Card.UI_CardDetailUI, Game.HotUpdate",
+            "UI.Card.UI_CardFilterUI, Game.HotUpdate",
+            "UI.Card.UI_CardFosterUI, Game.HotUpdate",
+            "UI.Card.UI_CardMoodUI, Game.HotUpdate",
+            "UI.Card.UI_CardShowUI, Game.HotUpdate",
+            "UI.Card.UI_CardSkillUI, Game.HotUpdate",
+            "UI.Card.UI_CardStarRewardUI, Game.HotUpdate",
+            "UI.Card.UI_CardStoryUI, Game.HotUpdate",
+            "UI.Card.UI_CardUI, Game.HotUpdate",
+            "UI.Card.UI_CardUpLevelUI, Game.HotUpdate",
+            "UI.Card.UI_CardUpUI, Game.HotUpdate",
+            "UI.Card.UI_ComCardHolder, Game.HotUpdate",
+            "UI.Card.UI_ComCardImgRes, Game.HotUpdate",
+            "UI.Card.UI_ComCardObj, Game.HotUpdate",
+            "UI.Card.UI_ComConsume, Game.HotUpdate",
+            "UI.Card.UI_ComFosterBottom, Game.HotUpdate",
+            "UI.Card.UI_ComFosterTop, Game.HotUpdate",
+            "UI.Card.UI_ComImgCard, Game.HotUpdate",
+            "UI.Card.UI_ComMoodContent, Game.HotUpdate",
+            "UI.Card.UI_ComRole, Game.HotUpdate",
+            "UI.Card.UI_ComSkillDiscribe, Game.HotUpdate",
+            "UI.Card.UI_ComStarCard, Game.HotUpdate",
+            "UI.Card.UI_ComStarConsume, Game.HotUpdate",
+            "UI.Card.UI_ComStarItem, Game.HotUpdate",
+            "UI.Card.UI_ListCardStarRewardItem, Game.HotUpdate",
+            "UI.Card.UI_ListCardStoryItem, Game.HotUpdate",
+            "UI.Card.UI_ListSkillItem, Game.HotUpdate",
+            "UI.Card.UI_btnShowCard, Game.HotUpdate",
+            "UI.BornLimit.UI_FirstChargeBonusUI, Game.HotUpdate",
+            "UI.BlindBox.UI_BlindBoxBuyTipsUI, Game.HotUpdate",
+            "UI.BlindBox.UI_BlindBoxRewardUI, Game.HotUpdate",
+            "UI.BlindBox.UI_BlindBoxUI, Game.HotUpdate",
+            "UI.BlindBox.UI_Button1, Game.HotUpdate",
+            "UI.BlindBox.UI_Itemitem, Game.HotUpdate",
+            "UI.BlindBox.UI_RuleTipsUI, Game.HotUpdate",
+            "UI.BlindBox.UI_boxItem, Game.HotUpdate",
+            "UI.BlindBox.UI_rewardItem, Game.HotUpdate",
+            "UI.Bag.UI_BagUI, Game.HotUpdate",
+            "UI.Bag.UI_Button2, Game.HotUpdate",
+            "UI.Bag.UI_Button3, Game.HotUpdate",
+            "UI.Bag.UI_GiftBoxSelectorUI, Game.HotUpdate",
+            "UI.Bag.UI_ItemExchangeUI, Game.HotUpdate",
+            "UI.Bag.UI_ListSelectorItem, Game.HotUpdate",
+            "UI.Arena.UI_ArenaDanRewardUI, Game.HotUpdate",
+            "UI.Arena.UI_ArenaDanUpUI, Game.HotUpdate",
+            "UI.Arena.UI_ArenaDressInfoUI, Game.HotUpdate",
+            "UI.Arena.UI_ArenaFightRecordUI, Game.HotUpdate",
+            "UI.Arena.UI_ArenaLoadingUI, Game.HotUpdate",
+            "UI.Arena.UI_ArenaRankUI, Game.HotUpdate",
+            "UI.Arena.UI_ArenaRankUpUI, Game.HotUpdate",
+            "UI.Arena.UI_ArenaResultQuickUI, Game.HotUpdate",
+            "UI.Arena.UI_ArenaRoundResultUI, Game.HotUpdate",
+            "UI.Arena.UI_ArenaUI, Game.HotUpdate",
+            "UI.Arena.UI_BtnTab0, Game.HotUpdate",
+            "UI.Arena.UI_BtnTab3, Game.HotUpdate",
+            "UI.Arena.UI_ComAllScore, Game.HotUpdate",
+            "UI.Arena.UI_ComAllScoreResult, Game.HotUpdate",
+            "UI.Arena.UI_ComCard, Game.HotUpdate",
+            "UI.Arena.UI_ComCardMask, Game.HotUpdate",
+            "UI.Arena.UI_ComCardRecord, Game.HotUpdate",
+            "UI.Arena.UI_ComCostCurrency, Game.HotUpdate",
+            "UI.Arena.UI_ComDanIcon, Game.HotUpdate",
+            "UI.Arena.UI_ComDanSimpleInfo, Game.HotUpdate",
+            "UI.Arena.UI_ComFIeldValueInfo, Game.HotUpdate",
+            "UI.Arena.UI_ComFieldFightScore, Game.HotUpdate",
+            "UI.Arena.UI_ComFightScore, Game.HotUpdate",
+            "UI.Arena.UI_ComMyDanReward, Game.HotUpdate",
+            "UI.Arena.UI_ComResultCardMask, Game.HotUpdate",
+            "UI.Arena.UI_ComTheme, Game.HotUpdate",
+            "UI.Arena.UI_ComTitle, Game.HotUpdate",
+            "UI.Arena.UI_ComValueInfo, Game.HotUpdate",
+            "UI.Arena.UI_ListDanRewardItem, Game.HotUpdate",
+            "UI.Arena.UI_ListFightRecordItem, Game.HotUpdate",
+            "UI.Arena.UI_ListPartsItem, Game.HotUpdate",
+            "UI.Arena.UI_ListRankItem, Game.HotUpdate",
+            "UI.Arena.UI_ListRankItem0, Game.HotUpdate",
+            "UI.Arena.UI_ListRankItem3, Game.HotUpdate",
+            "UI.Arena.UI_ListRankItem4, Game.HotUpdate",
+            "UI.Arena.UI_ListRecordItem, Game.HotUpdate",
+            "UI.Arena.UI_ListResultItem, Game.HotUpdate",
+            "UI.Arena.UI_ListTargetItem, Game.HotUpdate",
+            "UI.ActivityWanShiLi.UI_ActivityWanShiLiUI, Game.HotUpdate",
+            "UI.ActivityWanShiLi.UI_ComProBonus2, Game.HotUpdate",
+            "UI.ActivityWanShiLi.UI_ProgressBar2, Game.HotUpdate",
+            "UI.ActivityWanShiLi.UI_item, Game.HotUpdate",
+            "UI.ActivityThemeLuckyBox.UI_ActivityThemeLuckyBoxBonusUI, Game.HotUpdate",
+            "UI.ActivityThemeLuckyBox.UI_ActivityThemeLuckyBoxTaskUI, Game.HotUpdate",
+            "UI.ActivityThemeLuckyBox.UI_ActivityThemeLuckyBoxUI, Game.HotUpdate",
+            "UI.ActivityThemeLuckyBox.UI_Button1, Game.HotUpdate",
+            "UI.ActivityThemeLuckyBox.UI_ComCardImgRes, Game.HotUpdate",
+            "UI.ActivityThemeLuckyBox.UI_ComImgCard, Game.HotUpdate",
+            "UI.ActivityThemeLuckyBox.UI_ListItem, Game.HotUpdate",
+            "UI.ActivityMain.UI_ActivityMainTipsUI, Game.HotUpdate",
+            "UI.ActivityMain.UI_ActivityRewardItemUI, Game.HotUpdate",
+            "UI.ActivityMain.UI_ActivityZCJB, Game.HotUpdate",
+            "UI.ActivityMain.UI_ActivityZCJBRewardUI, Game.HotUpdate",
+            "UI.ActivityMain.UI_Btn18, Game.HotUpdate",
+            "UI.ActivityMain.UI_Button10, Game.HotUpdate",
+            "UI.ActivityMain.UI_Button11, Game.HotUpdate",
+            "UI.ActivityMain.UI_Button12, Game.HotUpdate",
+            "UI.ActivityMain.UI_Button13, Game.HotUpdate",
+            "UI.ActivityMain.UI_Button14, Game.HotUpdate",
+            "UI.ActivityMain.UI_Button7, Game.HotUpdate",
+            "UI.ActivityMain.UI_MonthlyCardTipsUI, Game.HotUpdate",
+            "UI.ActivityMain.UI_NewPlayersTipsUI, Game.HotUpdate",
+            "UI.ActivityMain.UI_PearlRebateTipsUI, Game.HotUpdate",
+            "UI.ActivityMain.UI_SevenDailyTipsUI, Game.HotUpdate",
+            "UI.ActivityMain.UI_WeeklyGiftTipsUI, Game.HotUpdate",
+            "UI.ActivityMain.UI_ZCJBBuyTips, Game.HotUpdate",
+            "UI.ActivityMain.UI_ZGTHRewardItem, Game.HotUpdate",
+            "UI.ActivityMain.UI_ZGTHgiftDCTipsUI, Game.HotUpdate",
+            "UI.ActivityMain.UI_ZGTHgiftTipsUI, Game.HotUpdate",
+            "UI.ActivityMain.UI_btn30, Game.HotUpdate",
+            "UI.ActivityMain.UI_rewardItem, Game.HotUpdate",
+            "UI.ActivityHuaRongDao.UI_ActivityHuaRongDaoEntryUI, Game.HotUpdate",
+            "UI.ActivityHuaRongDao.UI_ActivityHuaRongDaoSuccessUI, Game.HotUpdate",
+            "UI.ActivityHuaRongDao.UI_ActivityHuaRongDaoUI, Game.HotUpdate",
+            "UI.ActivityHuaRongDao.UI_Again, Game.HotUpdate",
+            "UI.ActivityHuaRongDao.UI_item, Game.HotUpdate",
+            "UI.ActivityHuaRongDao.UI_items, Game.HotUpdate",
+            "UI.ActivityHuaRongDao.UI_progressBarItem, Game.HotUpdate",
+            "UI.ActivityHuaRongDao.UI_progressBgItem, Game.HotUpdate",
+            "UI.ActivityHuaRongDao.UI_reward, Game.HotUpdate",
+            "UI.ActivityHuaRongDao.UI_scrollPane, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_ActivityGetYuanXiaoEntryUI, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_ActivityGetYuanXiaoFailUI, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_ActivityGetYuanXiaoSuccessUI, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_ActivityGetYuanXiaoTargetUI, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_ActivityGetYuanXiaoTaskUI, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_ActivityGetYuanXiaoUI, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_RewardTipsUI, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_YuanXiaoItem, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_YuanXiaoParent, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_catchers, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_flyScore, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_gameTarget, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_level, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_targetItem, Game.HotUpdate",
+            "UI.ActivityGetYuanXiao.UI_taskItem, Game.HotUpdate",
+            "UI.ActivityDay7.UI_ActivityDay7UI, Game.HotUpdate",
+            "UI.ActivityDay7.UI_ButtonDay, Game.HotUpdate",
+            "UI.ActivityDay7.UI_ExpProcessItem, Game.HotUpdate",
+            "UI.ActivityDay7.UI_comTaskList, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_ActivitySyntheticUI, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_ActivityTeaMainUI, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_ActivityTeaVisitUI, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_ActivityVIsitItemUI, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_ActivityVIsitRewardItemUI, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_ActivityVisitNPCUI, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_Button22, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_Button23, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_CompDialogText, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_Component2, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_RewardItemUI, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_RewardTips, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_RewardTipsItemUI, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_SyntheticItemUI, Game.HotUpdate",
+            "UI.ActivityAfternoonTea.UI_npcHead, Game.HotUpdate",
+            "UI.ActivityAFuGift.UI_ActivityAFuGiftUI, Game.HotUpdate",
+            "UI.ActivityAFuGift.UI_Panel, Game.HotUpdate",
+            "UI.ActivityAFuGift.UI_day, Game.HotUpdate",
+            "UI.ActivityAFuGift.UI_reward, Game.HotUpdate",
+            "UI.ActivityAFuGift.UI_scrollPane, Game.HotUpdate",
+            "Assets.Game.HotUpdate.Data.ActivityTeaDataManager, Game.HotUpdate",
+            "Assets.Game.HotUpdate.Data.ActivityWanShiLiDataManager, Game.HotUpdate",
+            "System.Runtime.CompilerServices.AsyncMethodBuilderAttribute, Game.HotUpdate",
+            "MongoDB.Bson.Serialization.Options.DictionaryRepresentation, Game.HotUpdate",
+            "MongoDB.Bson.Serialization.Attributes.BsonDefaultValueAttribute, Game.HotUpdate",
+            "MongoDB.Bson.Serialization.Attributes.BsonDictionaryOptionsAttribute, Game.HotUpdate",
+            "MongoDB.Bson.Serialization.Attributes.BsonElementAttribute, Game.HotUpdate",
+            "MongoDB.Bson.Serialization.Attributes.BsonIdAttribute, Game.HotUpdate",
+            "MongoDB.Bson.Serialization.Attributes.BsonIgnoreAttribute, Game.HotUpdate",
+            "MongoDB.Bson.Serialization.Attributes.BsonIgnoreExtraElementsAttribute, Game.HotUpdate",
+            "MongoDB.Bson.Serialization.Attributes.BsonIgnoreIfDefaultAttribute, Game.HotUpdate",
+            "MongoDB.Bson.Serialization.Attributes.BsonIgnoreIfNullAttribute, Game.HotUpdate",
+            "ET.LogSplicingComponentAwakeSystem, Game.HotUpdate",
+            "ET.LogSplicingComponentDestroySystem, Game.HotUpdate",
+            "ET.ZoneSceneFlagComponentDestroySystem, Game.HotUpdate",
+            "ET.ZoneSceneFlagComponentAwakeSystem, Game.HotUpdate",
+            "ET.ZoneSceneManagerComponentAwakeSystem, Game.HotUpdate",
+            "ET.ZoneSceneManagerComponentDestroySystem, Game.HotUpdate",
+            "ET.ConfigAwakeSystem, Game.HotUpdate",
+            "ET.ConfigDestroySystem, Game.HotUpdate",
+            "ET.MessageDispatcherComponentAwakeSystem, Game.HotUpdate",
+            "ET.MessageDispatcherComponentLoadSystem, Game.HotUpdate",
+            "ET.MessageDispatcherComponentDestroySystem, Game.HotUpdate",
+            "ET.NetThreadComponentAwakeSystem, Game.HotUpdate",
+            "ET.NetThreadComponentUpdateSystem, Game.HotUpdate",
+            "ET.NetThreadComponentDestroySystem, Game.HotUpdate",
+            "ET.NetWSComponentAwakeSystem, Game.HotUpdate",
+            "ET.NetWSComponentAwake1System, Game.HotUpdate",
+            "ET.NetWSComponentDestroySystem, Game.HotUpdate",
+            "ET.SessionAcceptTimeout, Game.HotUpdate",
+            "ET.SessionAcceptTimeoutComponentAwakeSystem, Game.HotUpdate",
+            "ET.SessionAcceptTimeoutComponentDestroySystem, Game.HotUpdate",
+            "ET.SessionIdleChecker, Game.HotUpdate",
+            "ET.SessionIdleCheckerComponentAwakeSystem, Game.HotUpdate",
+            "ET.SessionIdleCheckerComponentDestroySystem, Game.HotUpdate",
+            "ET.SessionStreamDispatcherAwakeSystem, Game.HotUpdate",
+            "ET.SessionStreamDispatcherLoadSystem, Game.HotUpdate",
+            "ET.SessionStreamDispatcherDestroySystem, Game.HotUpdate",
+            "ET.NumericChangeEvent_NotifyWatcher, Game.HotUpdate",
+            "ET.PingComponentAwakeSystem, Game.HotUpdate",
+            "ET.PingComponentDestroySystem, Game.HotUpdate",
+            "ET.LogColumnAttribute, Game.HotUpdate",
+            "ET.LogNameAttribute, Game.HotUpdate",
+            "ET.CollectTypeEnum, Game.HotUpdate",
+            "ET.LogTypeEnum, Game.HotUpdate",
+            "ET.NodeEnum, Game.HotUpdate",
+            "ET.PlayParticipationEnum, Game.HotUpdate",
+            "ET.ReasonEnum, Game.HotUpdate",
+            "ET.ArenaRoleFlow, Game.HotUpdate",
+            "ET.ChatMonitoringFlow, Game.HotUpdate",
+            "ET.ClothingDecomposition, Game.HotUpdate",
+            "ET.ClothingMaintenance, Game.HotUpdate",
+            "ET.ClothingSynthesis, Game.HotUpdate",
+            "ET.Collect, Game.HotUpdate",
+            "ET.CreateAccountFlow, Game.HotUpdate",
+            "ET.CreatePlayerFlow, Game.HotUpdate",
+            "ET.DailyActivity, Game.HotUpdate",
+            "ET.DailySignIn, Game.HotUpdate",
+            "ET.DailyTask, Game.HotUpdate",
+            "ET.EventTrackFlow2, Game.HotUpdate",
+            "ET.FosterFlow, Game.HotUpdate",
+            "ET.GuideFlow, Game.HotUpdate",
+            "ET.ItemFlow, Game.HotUpdate",
+            "ET.LeagueChatFlow, Game.HotUpdate",
+            "ET.LevelParticipation, Game.HotUpdate",
+            "ET.LivenCountFlow, Game.HotUpdate",
+            "ET.LoginLivenCountFlow, Game.HotUpdate",
+            "ET.ModifyRoleNameFlow, Game.HotUpdate",
+            "ET.OnlineCountFlow, Game.HotUpdate",
+            "ET.OnlineTimeFlow, Game.HotUpdate",
+            "ET.OrderFlow, Game.HotUpdate",
+            "ET.PayToAccountFlow, Game.HotUpdate",
+            "ET.PlayParticipation, Game.HotUpdate",
+            "ET.RechargeOrderFlow, Game.HotUpdate",
+            "ET.RedeemRewardsFlow, Game.HotUpdate",
+            "ET.RoleInfoFlow, Game.HotUpdate",
+            "ET.ShopFlow, Game.HotUpdate",
+            "ET.SkillBookDecomposition, Game.HotUpdate",
+            "ET.TaskLog, Game.HotUpdate",
+            "ET.TempLuckBoxRebate, Game.HotUpdate",
+            "ET.TempOrderFlow, Game.HotUpdate",
+            "ET.TempStrLog, Game.HotUpdate",
+            "ET.TravelGuideFlow, Game.HotUpdate",
+            "ET.UnitNumericFlow, Game.HotUpdate",
+            "ET.LogSplicingComponent, Game.HotUpdate",
+            "ET.RoleInfoState, Game.HotUpdate",
+            "ET.RoleInfoBanState, Game.HotUpdate",
+            "ET.RoleInfo, Game.HotUpdate",
+            "ET.ServerStatus, Game.HotUpdate",
+            "ET.ServerInfo, Game.HotUpdate",
+            "ET.UnitType, Game.HotUpdate",
+            "ET.Scene, Game.HotUpdate",
+            "ET.SceneType, Game.HotUpdate",
+            "ET.EventAttribute, Game.HotUpdate",
+            "ET.BaseAttribute, Game.HotUpdate",
+            "ET.EntityStatus, Game.HotUpdate",
+            "ET.Entity, Game.HotUpdate",
+            "ET.EventSystem, Game.HotUpdate",
+            "ET.IdStruct, Game.HotUpdate",
+            "ET.InstanceIdStruct, Game.HotUpdate",
+            "ET.UnitIdStruct, Game.HotUpdate",
+            "ET.IdGenerater, Game.HotUpdate",
+            "ET.NoMemoryCheck, Game.HotUpdate",
+            "ET.ObjectPool, Game.HotUpdate",
+            "ET.ObjectSystemAttribute, Game.HotUpdate",
+            "ET.ParamHolder`1, Game.HotUpdate",
+            "ET.ObjectWaitAwakeSystem, Game.HotUpdate",
+            "ET.ObjectWaitDestroySystem, Game.HotUpdate",
+            "ET.ObjectWait, Game.HotUpdate",
+            "ET.QueueDictionary`2, Game.HotUpdate",
+            "ET.ZoneSceneFlagComponent, Game.HotUpdate",
+            "ET.ZoneSceneManagerComponent, Game.HotUpdate",
+            "ET.TimerAttribute, Game.HotUpdate",
+            "ET.TimerClass, Game.HotUpdate",
+            "ET.TimerActionAwakeSystem, Game.HotUpdate",
+            "ET.TimerActionDestroySystem, Game.HotUpdate",
+            "ET.TimerAction, Game.HotUpdate",
+            "ET.TimerComponentAwakeSystem, Game.HotUpdate",
+            "ET.TimerComponentUpdateSystem, Game.HotUpdate",
+            "ET.TimerComponentLoadSystem, Game.HotUpdate",
+            "ET.TimerComponentDestroySystem, Game.HotUpdate",
+            "ET.TimerComponent, Game.HotUpdate",
+            "ET.G2C_TestMessage, Game.HotUpdate",
+            "ET.R2C_TestMessage, Game.HotUpdate",
+            "ET.C2R_Test, Game.HotUpdate",
+            "ET.R2C_Test, Game.HotUpdate",
+            "ET.C2M_TestActorLocationMessage, Game.HotUpdate",
+            "ET.M2C_TestActorMessage, Game.HotUpdate",
+            "ET.C2M_TestActorLocationRequest, Game.HotUpdate",
+            "ET.M2C_TestActorLocationResponse, Game.HotUpdate",
+            "ET.C2M_TestRobotCase, Game.HotUpdate",
+            "ET.M2C_TestRobotCase, Game.HotUpdate",
+            "ET.C2G_Ping, Game.HotUpdate",
+            "ET.G2C_Ping, Game.HotUpdate",
+            "ET.C2M_Reload, Game.HotUpdate",
+            "ET.M2C_Reload, Game.HotUpdate",
+            "ET.C2A_Register, Game.HotUpdate",
+            "ET.A2C_Register, Game.HotUpdate",
+            "ET.C2S_GetMobileVerificationCode, Game.HotUpdate",
+            "ET.S2C_GetMobileVerificationCode, Game.HotUpdate",
+            "ET.C2A_LoginAccount, Game.HotUpdate",
+            "ET.A2C_LoginAccount, Game.HotUpdate",
+            "ET.C2A_LoginTest, Game.HotUpdate",
+            "ET.C2A_ReqDeleteAccount, Game.HotUpdate",
+            "ET.A2C_ReqDeleteAccount, Game.HotUpdate",
+            "ET.A2C_Disconnect, Game.HotUpdate",
+            "ET.ServerInfoProto, Game.HotUpdate",
+            "ET.C2A_GetServerInfos, Game.HotUpdate",
+            "ET.A2C_GetServerInfos, Game.HotUpdate",
+            "ET.RoleInfoProto, Game.HotUpdate",
+            "ET.C2A_CreateRole, Game.HotUpdate",
+            "ET.A2C_CreateRole, Game.HotUpdate",
+            "ET.C2A_GetRoles, Game.HotUpdate",
+            "ET.A2C_GetRoles, Game.HotUpdate",
+            "ET.C2A_DeleteRole, Game.HotUpdate",
+            "ET.A2C_DeleteRole, Game.HotUpdate",
+            "ET.C2A_GetRealmKey, Game.HotUpdate",
+            "ET.A2C_GetRealmKey, Game.HotUpdate",
+            "ET.C2A_GetLatestNotice, Game.HotUpdate",
+            "ET.A2C_GetLatestNotice, Game.HotUpdate",
+            "ET.C2A_GetRandomRoleName, Game.HotUpdate",
+            "ET.A2C_GetRandomRoleName, Game.HotUpdate",
+            "ET.C2R_LoginRealm, Game.HotUpdate",
+            "ET.R2C_LoginRealm, Game.HotUpdate",
+            "ET.C2G_LoginGate, Game.HotUpdate",
+            "ET.G2C_LoginGate, Game.HotUpdate",
+            "ET.C2G_EnterGame, Game.HotUpdate",
+            "ET.G2C_EnterGame, Game.HotUpdate",
+            "ET.M2C_StartSceneChange, Game.HotUpdate",
+            "ET.UnitInfo, Game.HotUpdate",
+            "ET.M2C_CreateMyUnit, Game.HotUpdate",
+            "ET.M2C_NoticeUnitNumeric, Game.HotUpdate",
+            "ET.C2M_TestUnitNumric, Game.HotUpdate",
+            "ET.M2C_TestUnitNumric, Game.HotUpdate",
+            "ET.C2M_AddAtributePoint, Game.HotUpdate",
+            "ET.M2C_AddAttributePoint, Game.HotUpdate",
+            "ET.ItemInfoProto, Game.HotUpdate",
+            "ET.ItemAttributeProto, Game.HotUpdate",
+            "ET.C2M_GetItemAttributeInfos, Game.HotUpdate",
+            "ET.M2C_GetItemAttributeInfos, Game.HotUpdate",
+            "ET.M2C_NoticeUnitItem, Game.HotUpdate",
+            "ET.M2C_NoticeUnitItemAttribute, Game.HotUpdate",
+            "ET.C2M_GM, Game.HotUpdate",
+            "ET.M2C_GM, Game.HotUpdate",
+            "ET.SuitInfoProto, Game.HotUpdate",
+            "ET.C2M_GetSuitInfos, Game.HotUpdate",
+            "ET.M2C_GetSuitInfos, Game.HotUpdate",
+            "ET.C2M_MaintainSuit, Game.HotUpdate",
+            "ET.M2C_MaintainSuit, Game.HotUpdate",
+            "ET.C2M_GetMaintainSuitBonus, Game.HotUpdate",
+            "ET.M2C_GetMaintainSuitBonus, Game.HotUpdate",
+            "ET.C2M_MakeNewSuit, Game.HotUpdate",
+            "ET.M2C_MakeNewSuit, Game.HotUpdate",
+            "ET.C2M_GetSuitGuideBoxBonus, Game.HotUpdate",
+            "ET.M2C_GetSuitGuideBoxBonus, Game.HotUpdate",
+            "ET.C2M_GetSuitSyntheticBoxBonus, Game.HotUpdate",
+            "ET.M2C_GetSuitSyntheticBoxBonus, Game.HotUpdate",
+            "ET.C2M_GetBringTogetherReward, Game.HotUpdate",
+            "ET.M2C_BringTogetherReward, Game.HotUpdate",
+            "ET.M2C_PushBringTogetherRewardState, Game.HotUpdate",
+            "ET.C2M_GetMainStoryInfos, Game.HotUpdate",
+            "ET.M2C_GetMainStoryInfos, Game.HotUpdate",
+            "ET.M2C_NoticeMainStoryBoxBonusState, Game.HotUpdate",
+            "ET.C2M_GetMainStoryBoxBonus, Game.HotUpdate",
+            "ET.M2C_GetMainStoryBoxBonus, Game.HotUpdate",
+            "ET.LevelRoleInfoProto, Game.HotUpdate",
+            "ET.C2M_GetInstanceZonesInfos, Game.HotUpdate",
+            "ET.M2C_GetInstanceZonesInfos, Game.HotUpdate",
+            "ET.C2M_FinishInstanceZonesDialog, Game.HotUpdate",
+            "ET.M2C_FinishInstanceZonesDialog, Game.HotUpdate",
+            "ET.C2M_FinishInstanceZonesFightLevel, Game.HotUpdate",
+            "ET.M2C_FinishInstanceZonesFightLevel, Game.HotUpdate",
+            "ET.C2M_FinishInstanceZonesFightLevelFail, Game.HotUpdate",
+            "ET.M2C_FinishInstanceZonesFightLevelFail, Game.HotUpdate",
+            "ET.C2M_FinishInstanceZonesFightQuickly, Game.HotUpdate",
+            "ET.M2C_FinishInstanceZonesFightQuickly, Game.HotUpdate",
+            "ET.C2M_ResetDailyData, Game.HotUpdate",
+            "ET.M2C_ResetDailyData, Game.HotUpdate",
+            "ET.C2M_GetStudioInfos, Game.HotUpdate",
+            "ET.M2C_GetStudioInfos, Game.HotUpdate",
+            "ET.StudioInfoProto, Game.HotUpdate",
+            "ET.C2M_BuyStudioPlayTimes, Game.HotUpdate",
+            "ET.M2C_BuyStudioPlayTimes, Game.HotUpdate",
+            "ET.M2C_NoticeStudioPlayTimes, Game.HotUpdate",
+            "ET.C2S_RequestShopInfo, Game.HotUpdate",
+            "ET.S2C_RequestShopInfo, Game.HotUpdate",
+            "ET.C2S_ShopBuy, Game.HotUpdate",
+            "ET.S2C_ShopBuy, Game.HotUpdate",
+            "ET.C2M_ItemExchange, Game.HotUpdate",
+            "ET.M2C_ItemExchange, Game.HotUpdate",
+            "ET.C2M_GetClientValues, Game.HotUpdate",
+            "ET.M2C_GetClientValues, Game.HotUpdate",
+            "ET.C2M_SetClientValue, Game.HotUpdate",
+            "ET.M2C_SetClientValue, Game.HotUpdate",
+            "ET.C2M_DrawLuckyBox, Game.HotUpdate",
+            "ET.M2C_DrawLuckyBox, Game.HotUpdate",
+            "ET.CardInfoProto, Game.HotUpdate",
+            "ET.C2M_GetCardInfos, Game.HotUpdate",
+            "ET.M2C_GetCardInfos, Game.HotUpdate",
+            "ET.M2C_GetNewCard, Game.HotUpdate",
+            "ET.C2M_UpgradeCardLvl, Game.HotUpdate",
+            "ET.M2C_UpgradeCardLvl, Game.HotUpdate",
+            "ET.C2M_UpgradeCardStar, Game.HotUpdate",
+            "ET.M2C_UpgradeCardStar, Game.HotUpdate",
+            "ET.C2M_SaveIsAutoSelect, Game.HotUpdate",
+            "ET.M2C_SaveIsAutoSelect, Game.HotUpdate",
+            "ET.C2S_GetCardStarBonus, Game.HotUpdate",
+            "ET.S2C_GetCardStarBonus, Game.HotUpdate",
+            "ET.C2M_ChangeCardRes, Game.HotUpdate",
+            "ET.M2C_ChangeCardRes, Game.HotUpdate",
+            "ET.C2M_UpgradeCardSkill, Game.HotUpdate",
+            "ET.M2C_UpgradeCardSkill, Game.HotUpdate",
+            "ET.C2M_ClothingDecompose, Game.HotUpdate",
+            "ET.M2C_ClothingDecompose, Game.HotUpdate",
+            "ET.CustomSuitProto, Game.HotUpdate",
+            "ET.C2M_SaveCustomSuit, Game.HotUpdate",
+            "ET.M2C_SaveCustomSuit, Game.HotUpdate",
+            "ET.C2M_ClothingSynthetic, Game.HotUpdate",
+            "ET.M2C_ClothingSynthetic, Game.HotUpdate",
+            "ET.C2M_GetFieldInstanceInfos, Game.HotUpdate",
+            "ET.M2C_GetFieldInstanceInfos, Game.HotUpdate",
+            "ET.C2M_GetFieldInstanceResult, Game.HotUpdate",
+            "ET.M2C_GetFieldInstanceResult, Game.HotUpdate",
+            "ET.C2M_GetFieldTaskBonus, Game.HotUpdate",
+            "ET.M2C_GetFieldTaskBonus, Game.HotUpdate",
+            "ET.S2C_FieldTaskBonus, Game.HotUpdate",
+            "ET.TaskInfoProto, Game.HotUpdate",
+            "ET.AchieveTaskInfoProto, Game.HotUpdate",
+            "ET.C2M_GetDailyTaskInfos, Game.HotUpdate",
+            "ET.M2C_GetDailyTaskInfos, Game.HotUpdate",
+            "ET.M2C_LivenessBoxChange, Game.HotUpdate",
+            "ET.C2M_GetLivenessBox, Game.HotUpdate",
+            "ET.M2C_GetLivenessBox, Game.HotUpdate",
+            "ET.C2M_GetDailySignInBonusInfos, Game.HotUpdate",
+            "ET.M2C_GetDailySignInBonusInfos, Game.HotUpdate",
+            "ET.C2M_GetDailySignInBonusInfoList, Game.HotUpdate",
+            "ET.M2C_GetDailySignInBonusInfoList, Game.HotUpdate",
+            "ET.C2M_GetDailySinInBonus, Game.HotUpdate",
+            "ET.M2C_GetDailySinInBonus, Game.HotUpdate",
+            "ET.SystemNoticeProto, Game.HotUpdate",
+            "ET.C2M_GetSystemNoticeList, Game.HotUpdate",
+            "ET.M2C_GetSystemNoticeList, Game.HotUpdate",
+            "ET.C2M_GetSystemNotice, Game.HotUpdate",
+            "ET.M2C_GetSystemNotice, Game.HotUpdate",
+            "ET.M2C_SystemNoticeChanged, Game.HotUpdate",
+            "ET.M2C_SystemNoticeRemoved, Game.HotUpdate",
+            "ET.MailProto, Game.HotUpdate",
+            "ET.MailDetailProto, Game.HotUpdate",
+            "ET.C2Mail_GetMailCount, Game.HotUpdate",
+            "ET.Mail2C_GetMailCount, Game.HotUpdate",
+            "ET.C2Mail_GetMailList, Game.HotUpdate",
+            "ET.Mail2C_GetMailList, Game.HotUpdate",
+            "ET.C2Mail_GetMailData, Game.HotUpdate",
+            "ET.Mail2C_GetMailData, Game.HotUpdate",
+            "ET.C2M_GetMailItems, Game.HotUpdate",
+            "ET.M2C_GetMailItems, Game.HotUpdate",
+            "ET.C2Mail_DeleteMail, Game.HotUpdate",
+            "ET.Mail2C_DeleteMail, Game.HotUpdate",
+            "ET.C2M_GetAllMailItems, Game.HotUpdate",
+            "ET.M2C_GetAllMailItems, Game.HotUpdate",
+            "ET.C2Mail_DeleteAllMails, Game.HotUpdate",
+            "ET.Mail2C_DeleteAllMails, Game.HotUpdate",
+            "ET.Mail2C_MailCountChanged, Game.HotUpdate",
+            "ET.C2M_GetItemInfos, Game.HotUpdate",
+            "ET.M2C_GetItemInfos, Game.HotUpdate",
+            "ET.C2S_GetPersonalInfo, Game.HotUpdate",
+            "ET.S2C_GetPersonalInfo, Game.HotUpdate",
+            "ET.C2S_ModifySignature, Game.HotUpdate",
+            "ET.S2C_ModifySignature, Game.HotUpdate",
+            "ET.C2S_UpWearBadges, Game.HotUpdate",
+            "ET.S2C_UpWearBadges, Game.HotUpdate",
+            "ET.C2S_UpMyMainBg, Game.HotUpdate",
+            "ET.S2C_UpMyMainBg, Game.HotUpdate",
+            "ET.C2S_RedeemRewards, Game.HotUpdate",
+            "ET.S2C_RedeemRewards, Game.HotUpdate",
+            "ET.C2S_SaveChangeGearSwitch, Game.HotUpdate",
+            "ET.S2C_SaveChangeGearSwitch, Game.HotUpdate",
+            "ET.OtherRoleInfoProto, Game.HotUpdate",
+            "ET.C2S_GetOtherRoleDetailInfo, Game.HotUpdate",
+            "ET.S2C_GetOtherRoleDetailInfo, Game.HotUpdate",
+            "ET.C2S_SearchRole, Game.HotUpdate",
+            "ET.S2C_SearchRole, Game.HotUpdate",
+            "ET.C2S_GetRecommendFriends, Game.HotUpdate",
+            "ET.S2C_GetRecommendFriends, Game.HotUpdate",
+            "ET.S2C_NoticeFriendInfo, Game.HotUpdate",
+            "ET.FriendInfoProto, Game.HotUpdate",
+            "ET.C2S_GetAllFriendInfos, Game.HotUpdate",
+            "ET.S2C_GetAllFriendInfos, Game.HotUpdate",
+            "ET.C2S_RequestApplyForFriend, Game.HotUpdate",
+            "ET.S2C_RequestApplyForFriend, Game.HotUpdate",
+            "ET.S2C_NoticeApplyForFriend, Game.HotUpdate",
+            "ET.C2S_AcceptApplyForFriend, Game.HotUpdate",
+            "ET.S2C_AcceptApplyForFriend, Game.HotUpdate",
+            "ET.C2S_RefuseApplyForFriend, Game.HotUpdate",
+            "ET.S2C_RefuseApplyForFriend, Game.HotUpdate",
+            "ET.C2S_AcceptAllApplyForFriend, Game.HotUpdate",
+            "ET.S2C_AcceptAllApplyForFriend, Game.HotUpdate",
+            "ET.C2S_RefuseAllApplyForFriend, Game.HotUpdate",
+            "ET.S2C_RefuseAllApplyForFriend, Game.HotUpdate",
+            "ET.S2C_NoticeAddFriends, Game.HotUpdate",
+            "ET.C2S_RequestDeleteFriend, Game.HotUpdate",
+            "ET.S2C_RequestDeleteFriend, Game.HotUpdate",
+            "ET.S2C_NoticeDeleteFriend, Game.HotUpdate",
+            "ET.C2S_GiveGiftToFriend, Game.HotUpdate",
+            "ET.S2C_GiveGiftToFriend, Game.HotUpdate",
+            "ET.C2S_GiveGiftToAllFriends, Game.HotUpdate",
+            "ET.S2C_GiveGiftToAllFriends, Game.HotUpdate",
+            "ET.C2S_TakeGiftFromFriend, Game.HotUpdate",
+            "ET.S2C_TakeGiftFromFriend, Game.HotUpdate",
+            "ET.C2S_TakeGiftFromAllFriend, Game.HotUpdate",
+            "ET.S2C_TakeGiftFromAllFriend, Game.HotUpdate",
+            "ET.S2C_NoticeTakeGiftStates, Game.HotUpdate",
+            "ET.S2C_NoticeFriendDailyReset, Game.HotUpdate",
+            "ET.C2S_ModifyRoleName, Game.HotUpdate",
+            "ET.S2C_ModifyRoleName, Game.HotUpdate",
+            "ET.C2S_SetItemRead, Game.HotUpdate",
+            "ET.S2C_SetItemRead, Game.HotUpdate",
+            "ET.C2S_UseItem, Game.HotUpdate",
+            "ET.S2C_UseItem, Game.HotUpdate",
+            "ET.C2S_UseRandomItem, Game.HotUpdate",
+            "ET.S2C_UseRandomItem, Game.HotUpdate",
+            "ET.S2C_FilingScoreBonusChanged, Game.HotUpdate",
+            "ET.C2S_GetFilingScoreBonus, Game.HotUpdate",
+            "ET.S2C_GetFilingScoreBonus, Game.HotUpdate",
+            "ET.PictureInfoProto, Game.HotUpdate",
+            "ET.C2S_GetAllAlbumInfo, Game.HotUpdate",
+            "ET.S2C_GetAllAlbumInfo, Game.HotUpdate",
+            "ET.C2S_GetTempPictureUrl, Game.HotUpdate",
+            "ET.S2C_GetTempPictureUrl, Game.HotUpdate",
+            "ET.C2S_AddPicture, Game.HotUpdate",
+            "ET.S2C_AddPicture, Game.HotUpdate",
+            "ET.C2S_RemovedPictures, Game.HotUpdate",
+            "ET.S2C_RemovedPictures, Game.HotUpdate",
+            "ET.C2S_UpPictureLockingStatus, Game.HotUpdate",
+            "ET.S2C_UpPictureLockingStatus, Game.HotUpdate",
+            "ET.C2S_UpPictureToppingStatus, Game.HotUpdate",
+            "ET.S2C_UpPictureToppingStatus, Game.HotUpdate",
+            "ET.TravelGuideInfoProto, Game.HotUpdate",
+            "ET.C2S_TravelGuideGo, Game.HotUpdate",
+            "ET.S2C_TravelGuideGo, Game.HotUpdate",
+            "ET.C2S_GetTravelGuideData, Game.HotUpdate",
+            "ET.S2C_GetTravelGuideData, Game.HotUpdate",
+            "ET.C2S_ReceiveTravelGuideReward, Game.HotUpdate",
+            "ET.S2C_ReceiveTravelGuideReward, Game.HotUpdate",
+            "ET.C2S_GetTravelGuideRecordAll, Game.HotUpdate",
+            "ET.S2C_GetTravelGuideRecordAll, Game.HotUpdate",
+            "ET.C2S_ReceiveTravelAreaReward, Game.HotUpdate",
+            "ET.S2C_ReceiveTravelAreaReward, Game.HotUpdate",
+            "ET.C2S_SpeedUpTravelGuide, Game.HotUpdate",
+            "ET.S2C_SpeedUpTravelGuide, Game.HotUpdate",
+            "ET.GalleryWorksInfoProto, Game.HotUpdate",
+            "ET.C2S_GetGalleryTheme, Game.HotUpdate",
+            "ET.S2C_GetGalleryTheme, Game.HotUpdate",
+            "ET.C2S_GetGalleryList, Game.HotUpdate",
+            "ET.S2C_GetGalleryList, Game.HotUpdate",
+            "ET.C2S_RequestUpLoadGalleryWorks, Game.HotUpdate",
+            "ET.S2C_RequestUpLoadGalleryWorks, Game.HotUpdate",
+            "ET.C2S_NoticeGalleryWorksUploaded, Game.HotUpdate",
+            "ET.S2C_NoticeGalleryWorksUploaded, Game.HotUpdate",
+            "ET.C2S_DeleteMyWorks, Game.HotUpdate",
+            "ET.S2C_DeleteMyWorks, Game.HotUpdate",
+            "ET.C2S_CollecteGalleryWorks, Game.HotUpdate",
+            "ET.S2C_CollecteGalleryWorks, Game.HotUpdate",
+            "ET.C2S_CancelCollecteGalleryWorks, Game.HotUpdate",
+            "ET.S2C_CancelCollecteGalleryWorks, Game.HotUpdate",
+            "ET.C2S_LikeGalleryWorks, Game.HotUpdate",
+            "ET.S2C_LikeGalleryWorks, Game.HotUpdate",
+            "ET.C2S_GetGalleryWorksRankList, Game.HotUpdate",
+            "ET.S2C_GetGalleryWorksRankList, Game.HotUpdate",
+            "ET.C2S_GetGalleryRankBonus, Game.HotUpdate",
+            "ET.S2C_GetGalleryRankBonus, Game.HotUpdate",
+            "ET.C2S_AddOpenAlbumInfo, Game.HotUpdate",
+            "ET.S2C_AddOpenAlbumInfo, Game.HotUpdate",
+            "ET.C2S_AuHead, Game.HotUpdate",
+            "ET.S2C_AuHead, Game.HotUpdate",
+            "ET.C2S_AuHeadBorder, Game.HotUpdate",
+            "ET.S2C_AuHeadBorder, Game.HotUpdate",
+            "ET.C2S_GetArenaInfos, Game.HotUpdate",
+            "ET.S2C_GetArenaInfos, Game.HotUpdate",
+            "ET.SC_RankChange, Game.HotUpdate",
+            "ET.C2S_RefreshArenaTargets, Game.HotUpdate",
+            "ET.S2C_RefreshArenaTargets, Game.HotUpdate",
+            "ET.C2S_ChangeArenaDressup, Game.HotUpdate",
+            "ET.S2C_ChangeArenaDressup, Game.HotUpdate",
+            "ET.C2S_GetTargetNewFightPower, Game.HotUpdate",
+            "ET.S2C_GetTargetNewFightPower, Game.HotUpdate",
+            "ET.C2S_BuyArenaFightTimes, Game.HotUpdate",
+            "ET.S2C_BuyArenaFightTimes, Game.HotUpdate",
+            "ET.C2S_ArenaFightAttr, Game.HotUpdate",
+            "ET.S2C_ArenaFightAttr, Game.HotUpdate",
+            "ET.SkillAttrProto, Game.HotUpdate",
+            "ET.ArenaDressupAttrProto, Game.HotUpdate",
+            "ET.C2S_ArenaFight, Game.HotUpdate",
+            "ET.S2C_ArenaFight, Game.HotUpdate",
+            "ET.C2S_ArenaRank, Game.HotUpdate",
+            "ET.S2C_ArenaRank, Game.HotUpdate",
+            "ET.C2S_ArenaHistory, Game.HotUpdate",
+            "ET.S2C_ArenaHistory, Game.HotUpdate",
+            "ET.SC_ArenaHistoryAdd, Game.HotUpdate",
+            "ET.SC_ArenaWeekClear, Game.HotUpdate",
+            "ET.SC_ArenaSeasonEnd, Game.HotUpdate",
+            "ET.ArenaHistoryProto, Game.HotUpdate",
+            "ET.ArenaDressupProto, Game.HotUpdate",
+            "ET.ArenaTargetProto, Game.HotUpdate",
+            "ET.ArenaRobotProto, Game.HotUpdate",
+            "ET.C2S_GetLeagueInfo, Game.HotUpdate",
+            "ET.S2C_GetLeagueInfo, Game.HotUpdate",
+            "ET.C2S_SearchLeagueInfo, Game.HotUpdate",
+            "ET.S2C_SearchLeagueInfo, Game.HotUpdate",
+            "ET.C2S_CreateLeague, Game.HotUpdate",
+            "ET.S2C_CreateLeague, Game.HotUpdate",
+            "ET.C2S_ApplyJoinLeague, Game.HotUpdate",
+            "ET.S2C_ApplyJoinLeague, Game.HotUpdate",
+            "ET.L2C_NoticeApplyLeague, Game.HotUpdate",
+            "ET.C2S_GetApplyJoinLeagueList, Game.HotUpdate",
+            "ET.S2C_GetApplyJoinLeagueList, Game.HotUpdate",
+            "ET.C2S_AuditJoinLeague, Game.HotUpdate",
+            "ET.S2C_AuditJoinLeague, Game.HotUpdate",
+            "ET.L2C_NoticeJoinLeague, Game.HotUpdate",
+            "ET.C2S_QuitLeague, Game.HotUpdate",
+            "ET.S2C_QuitLeague, Game.HotUpdate",
+            "ET.C2S_KickLeague, Game.HotUpdate",
+            "ET.S2C_KickLeague, Game.HotUpdate",
+            "ET.L2C_NoticeLeaveLeague, Game.HotUpdate",
+            "ET.L2C_NoticeDisbandLeague, Game.HotUpdate",
+            "ET.C2S_UpLeagueBuilding, Game.HotUpdate",
+            "ET.S2C_UpLeagueBuilding, Game.HotUpdate",
+            "ET.C2S_ChangeLeagueNameOrIcon, Game.HotUpdate",
+            "ET.S2C_ChangeLeagueNameOrIcon, Game.HotUpdate",
+            "ET.C2S_ChangeLeagueNotice, Game.HotUpdate",
+            "ET.S2C_ChangeLeagueNotice, Game.HotUpdate",
+            "ET.C2S_SendLeagueAD, Game.HotUpdate",
+            "ET.S2C_SendLeagueAD, Game.HotUpdate",
+            "ET.L2C_NoticeLeagueInfoChange, Game.HotUpdate",
+            "ET.C2S_SetLeagueApply, Game.HotUpdate",
+            "ET.S2C_SetLeagueApply, Game.HotUpdate",
+            "ET.C2S_GetLeagueJoinQuitLog, Game.HotUpdate",
+            "ET.S2C_GetLeagueJoinQuitLog, Game.HotUpdate",
+            "ET.S2C_LeagueJoinQuitLog, Game.HotUpdate",
+            "ET.C2S_ChangeLeaguePos, Game.HotUpdate",
+            "ET.S2C_ChangeLeaguePos, Game.HotUpdate",
+            "ET.L2C_NoticeLeaguePosChange, Game.HotUpdate",
+            "ET.C2S_PrayLeague, Game.HotUpdate",
+            "ET.S2C_PrayLeague, Game.HotUpdate",
+            "ET.S2C_LeagueContribution, Game.HotUpdate",
+            "ET.L2C_NoticeLeagueNumeric, Game.HotUpdate",
+            "ET.LeagueJoinQuitLogProto, Game.HotUpdate",
+            "ET.LeagueDetailInfoProto, Game.HotUpdate",
+            "ET.LeagueMemberDetailInfoProto, Game.HotUpdate",
+            "ET.LeagueListInfoProto, Game.HotUpdate",
+            "ET.S2C_NoticeOtherInfo, Game.HotUpdate",
+            "ET.C2S_GetVipLevelGift, Game.HotUpdate",
+            "ET.S2C_GetVipLevelGift, Game.HotUpdate",
+            "ET.C2S_GetVipWeekGift, Game.HotUpdate",
+            "ET.S2C_GetVipWeekGift, Game.HotUpdate",
+            "ET.C2S_BuyLeagueWelfare, Game.HotUpdate",
+            "ET.S2C_BuyLeagueWelfare, Game.HotUpdate",
+            "ET.C2S_GetLeagueWelfare, Game.HotUpdate",
+            "ET.S2C_GetLeagueWelfare, Game.HotUpdate",
+            "ET.C2S_GetAnswerRank, Game.HotUpdate",
+            "ET.S2C_GetAnswerRank, Game.HotUpdate",
+            "ET.C2S_AnswerQuestion, Game.HotUpdate",
+            "ET.S2C_AnswerQuestion, Game.HotUpdate",
+            "ET.C2S_JoinAnswer, Game.HotUpdate",
+            "ET.S2C_JoinAnswer, Game.HotUpdate",
+            "ET.C2S_QuitAnswer, Game.HotUpdate",
+            "ET.S2C_QuitAnswer, Game.HotUpdate",
+            "ET.L2C_NoticeJoinAnswer, Game.HotUpdate",
+            "ET.L2C_NoticeQuitAnswer, Game.HotUpdate",
+            "ET.S2C_SyncAnswerNum, Game.HotUpdate",
+            "ET.L2C_NoticeAnswerPause, Game.HotUpdate",
+            "ET.S2C_SyncAnswerStart, Game.HotUpdate",
+            "ET.LeagueQuestionRoleInfoProto, Game.HotUpdate",
+            "ET.C2S_GetSkillList, Game.HotUpdate",
+            "ET.S2C_GetSkillList, Game.HotUpdate",
+            "ET.S2C_SyncAddSkill, Game.HotUpdate",
+            "ET.SkillInfoProto, Game.HotUpdate",
+            "ET.C2S_ActiveSkill, Game.HotUpdate",
+            "ET.S2C_ActiveSkill, Game.HotUpdate",
+            "ET.C2S_SendChatMsg, Game.HotUpdate",
+            "ET.S2C_SendChatMsg, Game.HotUpdate",
+            "ET.S2C_NoticeChatMsg, Game.HotUpdate",
+            "ET.C2S_QueryChatMsg, Game.HotUpdate",
+            "ET.S2C_QueryChatMsg, Game.HotUpdate",
+            "ET.ChatMsgProto, Game.HotUpdate",
+            "ET.C2S_GetMonthCardReward, Game.HotUpdate",
+            "ET.S2C_GetMonthCardReward, Game.HotUpdate",
+            "ET.C2S_GetMonthCardItem, Game.HotUpdate",
+            "ET.S2C_GetMonthCardItem, Game.HotUpdate",
+            "ET.S2C_NoticeMonthCardOpen, Game.HotUpdate",
+            "ET.C2S_Sign, Game.HotUpdate",
+            "ET.S2C_Sign, Game.HotUpdate",
+            "ET.C2S_ReSign, Game.HotUpdate",
+            "ET.S2C_ReSign, Game.HotUpdate",
+            "ET.C2S_GetSignReward, Game.HotUpdate",
+            "ET.S2C_GetSignReward, Game.HotUpdate",
+            "ET.C2S_GetSupplyReward, Game.HotUpdate",
+            "ET.S2C_GetSupplyReward, Game.HotUpdate",
+            "ET.C2M_GetTaskInfos, Game.HotUpdate",
+            "ET.M2C_GetTaskInfos, Game.HotUpdate",
+            "ET.C2M_GetTaskBonus, Game.HotUpdate",
+            "ET.M2C_GetTaskBonus, Game.HotUpdate",
+            "ET.C2M_GetAllTaskBonus, Game.HotUpdate",
+            "ET.M2C_GetAllTaskBonus, Game.HotUpdate",
+            "ET.M2C_TaskClose, Game.HotUpdate",
+            "ET.M2C_TaskChange, Game.HotUpdate",
+            "ET.AchievementTaskTypePro, Game.HotUpdate",
+            "ET.C2M_GetAchievementTaskTypePro, Game.HotUpdate",
+            "ET.M2C_GetAchievementTaskTypePro, Game.HotUpdate",
+            "ET.M2C_AchievementTaskTypeChange, Game.HotUpdate",
+            "ET.C2S_GetDay7Reward, Game.HotUpdate",
+            "ET.S2C_GetDay7Reward, Game.HotUpdate",
+            "ET.C2S_GetBattlePassInfo, Game.HotUpdate",
+            "ET.S2C_GetBattlePassInfo, Game.HotUpdate",
+            "ET.C2S_GetBattlePassReward, Game.HotUpdate",
+            "ET.S2C_GetBattlePassReward, Game.HotUpdate",
+            "ET.C2S_GetAllBattlePassReward, Game.HotUpdate",
+            "ET.S2C_GetAllBattlePassReward, Game.HotUpdate",
+            "ET.C2S_BuyBattlePassLevel, Game.HotUpdate",
+            "ET.S2C_BuyBattlePassLevel, Game.HotUpdate",
+            "ET.M2C_SyncBattlePass, Game.HotUpdate",
+            "ET.M2C_SyncBattlePassLevel, Game.HotUpdate",
+            "ET.M2C_SyncBattlePassSeasonId, Game.HotUpdate",
+            "ET.UnitLimitInfoProto, Game.HotUpdate",
+            "ET.C2S_GetUnitLimitInfos, Game.HotUpdate",
+            "ET.S2C_GetUnitLimitInfos, Game.HotUpdate",
+            "ET.C2M_BuyUnitLimitPlayTimes, Game.HotUpdate",
+            "ET.M2C_BuyUnitLimitPlayTimes, Game.HotUpdate",
+            "ET.M2C_NoticeUnitLimitPlayTimes, Game.HotUpdate",
+            "ET.GiftBoxSelChildItemProto, Game.HotUpdate",
+            "ET.C2M_GiftBoxSelConsumption, Game.HotUpdate",
+            "ET.M2C_GiftBoxSelConsumption, Game.HotUpdate",
+            "ET.C2S_GetLuckyBoxRotatingInfo, Game.HotUpdate",
+            "ET.S2C_GetLuckyBoxRotatingInfo, Game.HotUpdate",
+            "ET.C2S_GetTimeLimitLuckyBoxInfo, Game.HotUpdate",
+            "ET.S2C_GetTimeLimitLuckyBoxInfo, Game.HotUpdate",
+            "ET.C2S_GetTimeLimitLuckyBoxBonus, Game.HotUpdate",
+            "ET.S2C_GetTimeLimitLuckyBoxBonus, Game.HotUpdate",
+            "ET.S2C_NoticeTimeLimitLuckyBoxDropOutCount, Game.HotUpdate",
+            "ET.C2S_GetGiftBagRebate, Game.HotUpdate",
+            "ET.S2C_GiftBagRebate, Game.HotUpdate",
+            "ET.DayItemInfo, Game.HotUpdate",
+            "ET.C2S_GetAllGiftBagRebateStatus, Game.HotUpdate",
+            "ET.S2C_GetAllGiftBagRebateStatus, Game.HotUpdate",
+            "ET.S2C_NoticeActivityOpen, Game.HotUpdate",
+            "ET.S2C_NoticeActivityClose, Game.HotUpdate",
+            "ET.C2S_CloseActivity, Game.HotUpdate",
+            "ET.S2C_CloseActivity, Game.HotUpdate",
+            "ET.C2S_GetActivityList, Game.HotUpdate",
+            "ET.S2C_GetActivityList, Game.HotUpdate",
+            "ET.ActivityInfoProto, Game.HotUpdate",
+            "ET.C2S_GetFirstRechargeBonus, Game.HotUpdate",
+            "ET.S2C_GetFirstRechargeBonus, Game.HotUpdate",
+            "ET.C2S_GetActivityBonus, Game.HotUpdate",
+            "ET.S2C_GetActivityBonus, Game.HotUpdate",
+            "ET.S2C_SyncActivityCountValue, Game.HotUpdate",
+            "ET.S2C_SyncRechargeItemGet, Game.HotUpdate",
+            "ET.C2S_GetLuckyBoxInfo, Game.HotUpdate",
+            "ET.S2C_GetLuckyBoxInfo, Game.HotUpdate",
+            "ET.S2C_NoticeLuckyBoxFreeTime, Game.HotUpdate",
+            "ET.C2M_SkillBookDecompose, Game.HotUpdate",
+            "ET.M2C_SkillBookDecompose, Game.HotUpdate",
+            "ET.RoleContainerProto, Game.HotUpdate",
+            "ET.RoleTeapartyInfoProto, Game.HotUpdate",
+            "ET.C2S_GetTeapartyInfos, Game.HotUpdate",
+            "ET.S2C_GetTeapartyInfos, Game.HotUpdate",
+            "ET.C2S_GetTeapartyMatchingInfos, Game.HotUpdate",
+            "ET.S2C_TeapartyMatchingInfos, Game.HotUpdate",
+            "ET.C2S_GetRoleContainerInfos, Game.HotUpdate",
+            "ET.S2C_GetRoleContainerInfos, Game.HotUpdate",
+            "ET.C2S_QuitTeapparty, Game.HotUpdate",
+            "ET.S2C_QuitTeapparty, Game.HotUpdate",
+            "ET.C2S_ChangeTeapartyDressup, Game.HotUpdate",
+            "ET.S2C_ChangeTeapartyDressup, Game.HotUpdate",
+            "ET.C2S_ReportTeapartyComplete, Game.HotUpdate",
+            "ET.S2C_ReportTeapartyComplete, Game.HotUpdate",
+            "ET.C2S_GetPerRatingAward, Game.HotUpdate",
+            "ET.S2C_GetPerRatingAward, Game.HotUpdate",
+            "ET.C2S_GetLeagueRatingAward, Game.HotUpdate",
+            "ET.S2C_GetLeagueRatingAward, Game.HotUpdate",
+            "ET.C2S_TeapartyStartChallenge, Game.HotUpdate",
+            "ET.S2C_TeapartyStartChallenge, Game.HotUpdate",
+            "ET.C2S_ChangeTempCollocation, Game.HotUpdate",
+            "ET.S2C_ChangeTempCollocation, Game.HotUpdate",
+            "ET.S2C_TeapartyStatus, Game.HotUpdate",
+            "ET.S2C_RoleContainerInfos, Game.HotUpdate",
+            "ET.S2C_LeagueScore, Game.HotUpdate",
+            "ET.C2S_AddWishingPoolInfo, Game.HotUpdate",
+            "ET.S2C_AddWishingPoolInfo, Game.HotUpdate",
+            "ET.C2S_GetWishingPoolInfo, Game.HotUpdate",
+            "ET.S2C_GetWishingPoolInfo, Game.HotUpdate",
+            "ET.S2C_PushWishingPoolInfo, Game.HotUpdate",
+            "ET.ActivityLoginInfoProto, Game.HotUpdate",
+            "ET.C2S_GetActivityLoginInfo, Game.HotUpdate",
+            "ET.S2C_GetActivityLoginInfo, Game.HotUpdate",
+            "ET.C2S_GetActivityLoginReward, Game.HotUpdate",
+            "ET.S2C_GetActivityLoginReward, Game.HotUpdate",
+            "ET.S2C_PushActivityLoginInfo, Game.HotUpdate",
+            "ET.C2S_GetAllActivityLoginReward, Game.HotUpdate",
+            "ET.S2C_GetAllActivityLoginReward, Game.HotUpdate",
+            "ET.C2S_IosVerifyOrder, Game.HotUpdate",
+            "ET.S2C_IosVerifyOrder, Game.HotUpdate",
+            "ET.GameInfoProto, Game.HotUpdate",
+            "ET.C2S_GetActivityGameInfos, Game.HotUpdate",
+            "ET.S2C_GetActivityGameInfos, Game.HotUpdate",
+            "ET.C2S_MiniGameStart, Game.HotUpdate",
+            "ET.S2C_MiniGameStart, Game.HotUpdate",
+            "ET.C2S_MiniGameEnd, Game.HotUpdate",
+            "ET.S2C_MiniGameEnd, Game.HotUpdate",
+            "ET.C2S_MiniGameUnlock, Game.HotUpdate",
+            "ET.S2C_MiniGameUnlock, Game.HotUpdate",
+            "ET.C2S_GetStarMiniGameRewrd, Game.HotUpdate",
+            "ET.S2C_GetStarMiniGameRewrd, Game.HotUpdate",
+            "ET.C2S_GetFirstPassReward, Game.HotUpdate",
+            "ET.S2C_GetFirstPassReward, Game.HotUpdate",
+            "ET.C2S_UpLimitNumericValue, Game.HotUpdate",
+            "ET.S2C_UpLimitNumericValue, Game.HotUpdate",
+            "ET.C2S_GetItemCollect, Game.HotUpdate",
+            "ET.S2C_GetItemCollect, Game.HotUpdate",
+            "ET.S2C_ItemCollect, Game.HotUpdate",
+            "ET.ItemSyntheticProto, Game.HotUpdate",
+            "ET.C2S_GetItemSyntheticInfos, Game.HotUpdate",
+            "ET.S2C_GetItemSyntheticInfos, Game.HotUpdate",
+            "ET.C2S_ItemSynthetic, Game.HotUpdate",
+            "ET.S2C_ItemSynthetic, Game.HotUpdate",
+            "ET.NpcVisitProto, Game.HotUpdate",
+            "ET.C2S_GetNpcVisits, Game.HotUpdate",
+            "ET.S2C_GetNpcVisits, Game.HotUpdate",
+            "ET.C2S_UnlockNpcVisit, Game.HotUpdate",
+            "ET.S2C_UnlockNpcVisit, Game.HotUpdate",
+            "ET.C2S_GetNpcVisitRewrd, Game.HotUpdate",
+            "ET.S2C_GetNpcVisitRewrd, Game.HotUpdate",
+            "ET.S2C_PushNpcVisits, Game.HotUpdate",
+            "ET.G2C_UpdateQueue, Game.HotUpdate",
+            "ET.C2G_CancelQueue, Game.HotUpdate",
+            "ET.G2C_CancelQueue, Game.HotUpdate",
+            "ET.C2S_GetDressRewrdStatusList, Game.HotUpdate",
+            "ET.S2C_GetDressRewrdStatusList, Game.HotUpdate",
+            "ET.C2S_GetDressRewrd, Game.HotUpdate",
+            "ET.S2C_GetDressRewrd, Game.HotUpdate",
+            "ET.C2S_GetGrowthFundRewrdStatus, Game.HotUpdate",
+            "ET.S2C_GetGrowthFundRewrdStatus, Game.HotUpdate",
+            "ET.C2S_GetGrowthFundRewrd, Game.HotUpdate",
+            "ET.S2C_GetGrowthFundRewrd, Game.HotUpdate",
+            "ET.C2S_GetRedPacketInfo, Game.HotUpdate",
+            "ET.S2C_GetRedPacketInfo, Game.HotUpdate",
+            "ET.C2S_ReqOpenRedPacket, Game.HotUpdate",
+            "ET.S2C_ReqOpenRedPacket, Game.HotUpdate",
+            "ET.S2C_NoticeRedPacketDouble, Game.HotUpdate",
+            "ET.C2S_ReqDoubleRedPacket, Game.HotUpdate",
+            "ET.S2C_ReqDoubleRedPacket, Game.HotUpdate",
+            "ET.C2S_GetActivitySignInfos, Game.HotUpdate",
+            "ET.S2C_GetActivitySignInfos, Game.HotUpdate",
+            "ET.C2S_ReqGetAcitivitySignBonus, Game.HotUpdate",
+            "ET.S2C_ReqGetAcitivitySignBonus, Game.HotUpdate",
+            "ET.C2S_GetInstanceZonesRatingRewardList, Game.HotUpdate",
+            "ET.S2C_GetInstanceZonesRatingRewardList, Game.HotUpdate",
+            "ET.C2S_GetInstanceZonesRatingReward, Game.HotUpdate",
+            "ET.S2C_GetInstanceZonesRatingReward, Game.HotUpdate",
+            "ET.C2S_GetAllInstanceZonesRatingReward, Game.HotUpdate",
+            "ET.S2C_GetAllInstanceZonesRatingReward, Game.HotUpdate",
+            "ET.C2S_GetChapterRewardList, Game.HotUpdate",
+            "ET.S2C_GetChapterRewardList, Game.HotUpdate",
+            "ET.C2S_GetChapterReward, Game.HotUpdate",
+            "ET.S2C_GetChapterReward, Game.HotUpdate",
+            "ET.LevelRankProto, Game.HotUpdate",
+            "ET.C2S_GetInstanceZonesRankList, Game.HotUpdate",
+            "ET.S2C_GetInstanceZonesRankList, Game.HotUpdate",
+            "ET.C2S_GetInstanceZonesFriendRankList, Game.HotUpdate",
+            "ET.S2C_GetInstanceZonesFriendRankList, Game.HotUpdate",
+            "ET.SuitCollectRankProto, Game.HotUpdate",
+            "ET.C2S_GetSuitCollectRankList, Game.HotUpdate",
+            "ET.S2C_GetSuitCollectRankList, Game.HotUpdate",
+            "ET.C2S_GetFriendSuitCollectRankList, Game.HotUpdate",
+            "ET.S2C_GetFriendSuitCollectRankList, Game.HotUpdate",
+            "ET.C2S_UpdateDataRecord, Game.HotUpdate",
+            "ET.S2C_UpdateDataRecord, Game.HotUpdate",
+            "ET.C2S_GetDataRecord, Game.HotUpdate",
+            "ET.S2C_GetDataRecord, Game.HotUpdate",
+            "ET.C2M_GetCompositeLevelMaxScoreInfos, Game.HotUpdate",
+            "ET.M2C_GetCompositeLevelMaxScoreInfos, Game.HotUpdate",
+            "ET.C2S_UpTitleItem, Game.HotUpdate",
+            "ET.S2C_UpTitleItem, Game.HotUpdate",
+            "ET.C2S_GetNewcomerRewards, Game.HotUpdate",
+            "ET.S2C_GetNewcomerRewards, Game.HotUpdate",
+            "ET.C2S_GetNewcomerRewardStatus, Game.HotUpdate",
+            "ET.S2C_GetNewcomerRewardStatus, Game.HotUpdate",
+            "ET.S2C_PushNewcomerRewardStatus, Game.HotUpdate",
+            "ET.C2S_GetChapterPassStatus, Game.HotUpdate",
+            "ET.S2C_GetChapterPassStatus, Game.HotUpdate",
+            "ET.C2S_GethapterPassReward, Game.HotUpdate",
+            "ET.S2C_GethapterPassReward, Game.HotUpdate",
+            "ET.C2S_GetSeasonGradeRewardStatus, Game.HotUpdate",
+            "ET.S2C_GetSeasonGradeRewardStatus, Game.HotUpdate",
+            "ET.C2S_GetSeasonGradeReward, Game.HotUpdate",
+            "ET.S2C_GetSeasonGradeReward, Game.HotUpdate",
+            "ET.C2S_GetSuitSelectStatus, Game.HotUpdate",
+            "ET.S2C_GetSuitSelectStatus, Game.HotUpdate",
+            "ET.C2S_GetSuitSelectReward, Game.HotUpdate",
+            "ET.S2C_GetSuitSelectReward, Game.HotUpdate",
+            "ET.C2M_CardSynthetic, Game.HotUpdate",
+            "ET.M2C_CardSynthetic, Game.HotUpdate",
+            "ET.C2M_GetCardSyntheticNum, Game.HotUpdate",
+            "ET.M2C_GetCardSyntheticNum, Game.HotUpdate",
+            "ET.C2M_SdkOrderStatusCallback, Game.HotUpdate",
+            "ET.M2C_SdkOrderStatusCallback, Game.HotUpdate",
+            "ET.CollectPartInfo, Game.HotUpdate",
+            "ET.C2M_GetDressUpSkillDes, Game.HotUpdate",
+            "ET.M2C_GetDressUpSkillDes, Game.HotUpdate",
+            "ET.C2M_UpDressUpSkill, Game.HotUpdate",
+            "ET.M2C_UpDressUpSkill, Game.HotUpdate",
+            "ET.C2M_ShareRecordTimes, Game.HotUpdate",
+            "ET.M2C_ShareRecordTimes, Game.HotUpdate",
+            "ET.C2M_GetSummerVacationBoxList, Game.HotUpdate",
+            "ET.M2C_GetSummerVacationBoxList, Game.HotUpdate",
+            "ET.C2M_GetSummerVacationBoxReward, Game.HotUpdate",
+            "ET.M2C_GetSummerVacationBoxReward, Game.HotUpdate",
+            "ET.C2M_GetAllSummerVacationBoxReward, Game.HotUpdate",
+            "ET.M2C_GetAllSummerVacationBoxReward, Game.HotUpdate",
+            "ET.C2S_GetActivityLoginInfoExt, Game.HotUpdate",
+            "ET.S2C_GetActivityLoginInfoExt, Game.HotUpdate",
+            "ET.C2S_GetActivityLoginRewardExt, Game.HotUpdate",
+            "ET.S2C_GetActivityLoginRewardExt, Game.HotUpdate",
+            "ET.S2C_PushActivityLoginInfoExt, Game.HotUpdate",
+            "ET.C2S_GetAllActivityLoginRewardExt, Game.HotUpdate",
+            "ET.S2C_GetAllActivityLoginRewardExt, Game.HotUpdate",
+            "ET.CollocationInfo, Game.HotUpdate",
+            "ET.MyWorksIdInfo, Game.HotUpdate",
+            "ET.JudgingRoundRoleInfo, Game.HotUpdate",
+            "ET.WorksCollectionInfo, Game.HotUpdate",
+            "ET.OldTopWorksInfo, Game.HotUpdate",
+            "ET.C2S_GetJudgingRoundInfo, Game.HotUpdate",
+            "ET.S2C_GetJudgingRoundInfo, Game.HotUpdate",
+            "ET.C2S_GetCurJudgingRoundRankList, Game.HotUpdate",
+            "ET.S2C_GetCurJudgingRoundRankList, Game.HotUpdate",
+            "ET.C2S_RequestUpLoadJudgingRoundWorks, Game.HotUpdate",
+            "ET.S2C_RequestUpLoadJudgingRoundWorks, Game.HotUpdate",
+            "ET.C2S_NoticeJudgingRoundWorksUploaded, Game.HotUpdate",
+            "ET.S2C_NoticeJudgingRoundWorksUploaded, Game.HotUpdate",
+            "ET.C2S_GetPreviousWorksCollection, Game.HotUpdate",
+            "ET.S2C_GetPreviousWorksCollection, Game.HotUpdate",
+            "ET.C2S_GetOldJudgingRoundRankList, Game.HotUpdate",
+            "ET.S2C_GetOldJudgingRoundRankList, Game.HotUpdate",
+            "ET.C2S_GetTwoPlayers, Game.HotUpdate",
+            "ET.S2C_GetTwoPlayers, Game.HotUpdate",
+            "ET.C2S_SelFavoriteWorks, Game.HotUpdate",
+            "ET.S2C_SelFavoriteWorks, Game.HotUpdate",
+            "ET.C2S_GetOnePlayers, Game.HotUpdate",
+            "ET.S2C_GetOnePlayers, Game.HotUpdate",
+            "ET.C2S_GetJudgingRoundWorksList, Game.HotUpdate",
+            "ET.S2C_GetJudgingRoundWorksList, Game.HotUpdate",
+            "ET.C2S_RemovedJudgingRoundWorks, Game.HotUpdate",
+            "ET.S2C_RemovedJudgingRoundWorks, Game.HotUpdate",
+            "ET.C2S_UpJudgingRoundWorksLockingStatus, Game.HotUpdate",
+            "ET.S2C_UpJudgingRoundWorksLockingStatus, Game.HotUpdate",
+            "ET.C2S_UpJudgingRoundWorksToppingStatus, Game.HotUpdate",
+            "ET.S2C_UpJudgingRoundWorksToppingStatus, Game.HotUpdate",
+            "ET.S2C_PushJudgingRoundInfo, Game.HotUpdate",
+            "ET.CardAbrasionInfo, Game.HotUpdate",
+            "ET.CimbingTowerLevelInfoProto, Game.HotUpdate",
+            "ET.C2S_GetCimbingTowerInfo, Game.HotUpdate",
+            "ET.S2C_GetGetCimbingTowerInfo, Game.HotUpdate",
+            "ET.C2S_CimbingTowerResetLevel, Game.HotUpdate",
+            "ET.S2C_CimbingTowerResetLevel, Game.HotUpdate",
+            "ET.C2S_CimbingTowerSaveCollocation, Game.HotUpdate",
+            "ET.S2C_CimbingTowerSaveCollocation, Game.HotUpdate",
+            "ET.C2S_CimbingTowerFightLevel, Game.HotUpdate",
+            "ET.S2C_CimbingTowerFightLevel, Game.HotUpdate",
+            "ET.C2S_CimbingTowerOneClickPass, Game.HotUpdate",
+            "ET.S2C_CimbingTowerOneClickPass, Game.HotUpdate",
+            "ET.S2C_PushCimbingTowerInfo, Game.HotUpdate",
+            "ET.C2S_GetWishingActivityInfo, Game.HotUpdate",
+            "ET.S2C_GetWishingActivityInfo, Game.HotUpdate",
+            "ET.C2S_WishingLuckyBox, Game.HotUpdate",
+            "ET.S2C_WishingLuckyBox, Game.HotUpdate",
+            "ET.C2S_GetWishingRewards, Game.HotUpdate",
+            "ET.S2C_GetWishingRewards, Game.HotUpdate",
+            "ET.C2S_BindMobilePhoneNumber, Game.HotUpdate",
+            "ET.S2C_BindMobilePhoneNumber, Game.HotUpdate",
+            "ET.C2S_UpAccountPassword, Game.HotUpdate",
+            "ET.S2C_UpAccountPassword, Game.HotUpdate",
+            "ET.C2S_GetMobileVerificationCodeUnit, Game.HotUpdate",
+            "ET.S2C_GetMobileVerificationCodeUnit, Game.HotUpdate",
+            "ET.C2S_GetMergeGameInfo, Game.HotUpdate",
+            "ET.S2C_GetMergeGameInfo, Game.HotUpdate",
+            "ET.C2S_MergeGameCancelNewStyle, Game.HotUpdate",
+            "ET.S2C_MergeGameCancelNewStyle, Game.HotUpdate",
+            "ET.C2S_MergeGameLevelPass, Game.HotUpdate",
+            "ET.S2C_MergeGameLevelPass, Game.HotUpdate",
+            "ET.C2S_MergeGameMaterialSynthesis, Game.HotUpdate",
+            "ET.S2C_MergeGameMaterialSynthesis, Game.HotUpdate",
+            "ET.C2S_MergeGameExchangeMaterial, Game.HotUpdate",
+            "ET.S2C_MergeGameExchangeMaterial, Game.HotUpdate",
+            "ET.C2S_MergeGameSellingMaterials, Game.HotUpdate",
+            "ET.S2C_MergeGameSellingMaterials, Game.HotUpdate",
+            "ET.C2M_BlindBox, Game.HotUpdate",
+            "ET.M2C_BlindBox, Game.HotUpdate",
+            "ET.C2S_CreateAliOrder, Game.HotUpdate",
+            "ET.S2C_CreateAliOrder, Game.HotUpdate",
+            "ET.C2M_RegisterRoleInfo, Game.HotUpdate",
+            "ET.M2C_RegisterRoleInfo, Game.HotUpdate",
+            "ET.C2S_CreateWeChatPayOrder, Game.HotUpdate",
+            "ET.S2C_CreateWeChatPayOrder, Game.HotUpdate",
+            "ET.ActorResponse, Game.HotUpdate",
+            "ET.ConfigAttribute, Game.HotUpdate",
+            "ET.ConfigComponent, Game.HotUpdate",
+            "ET.CoroutineLockAwakeSystem, Game.HotUpdate",
+            "ET.CoroutineLockDestroySystem, Game.HotUpdate",
+            "ET.CoroutineLock, Game.HotUpdate",
+            "ET.CoroutineLockComponentAwakeSystem, Game.HotUpdate",
+            "ET.CoroutineLockComponentDestroySystem, Game.HotUpdate",
+            "ET.CoroutineLockComponentUpdateSystem, Game.HotUpdate",
+            "ET.CoroutineLockComponent, Game.HotUpdate",
+            "ET.CoroutineLockQueueAwakeSystem, Game.HotUpdate",
+            "ET.CoroutineLockQueueDestroySystem, Game.HotUpdate",
+            "ET.CoroutineLockInfo, Game.HotUpdate",
+            "ET.CoroutineLockQueue, Game.HotUpdate",
+            "ET.CoroutineLockQueueTypeAwakeSystem, Game.HotUpdate",
+            "ET.CoroutineLockQueueTypeDestroySystem, Game.HotUpdate",
+            "ET.CoroutineLockQueueType, Game.HotUpdate",
+            "ET.CoroutineLockTimer, Game.HotUpdate",
+            "ET.ErrorResponse, Game.HotUpdate",
+            "ET.MessageAttribute, Game.HotUpdate",
+            "ET.MessageDispatcherComponent, Game.HotUpdate",
+            "ET.MessageHandlerAttribute, Game.HotUpdate",
+            "ET.NetThreadComponent, Game.HotUpdate",
+            "ET.NetWSComponent, Game.HotUpdate",
+            "ET.OpcodeTypeComponentAwakeSystem, Game.HotUpdate",
+            "ET.OpcodeTypeComponentDestroySystem, Game.HotUpdate",
+            "ET.OpcodeTypeComponent, Game.HotUpdate",
+            "ET.ResponseTypeAttribute, Game.HotUpdate",
+            "ET.SessionAwakeSystem, Game.HotUpdate",
+            "ET.Session, Game.HotUpdate",
+            "ET.SessionAcceptTimeoutComponent, Game.HotUpdate",
+            "ET.SessionCallbackComponent, Game.HotUpdate",
+            "ET.SessionIdleCheckerComponent, Game.HotUpdate",
+            "ET.SessionStreamDispatcher, Game.HotUpdate",
+            "ET.SessionStreamDispatcherAttribute, Game.HotUpdate",
+            "ET.LeagueNumericType, Game.HotUpdate",
+            "ET.NumericComponentAwakeSystem, Game.HotUpdate",
+            "ET.NumericComponent, Game.HotUpdate",
+            "ET.NumericWatcherAttribute, Game.HotUpdate",
+            "ET.NumericWatcherComponentAwakeSystem, Game.HotUpdate",
+            "ET.NumericWatcherComponentLoadSystem, Game.HotUpdate",
+            "ET.NumericWatcherComponent, Game.HotUpdate",
+            "ET.PingComponent, Game.HotUpdate",
+            "ET.UnityWebRequestUpdateSystem, Game.HotUpdate",
+            "ET.UnityWebRequestAsync, Game.HotUpdate",
+            "ET.UnityWebRequestRenewalUpdateSystem, Game.HotUpdate",
+            "ET.UnityWebRequestRenewalAsync, Game.HotUpdate",
+            "ET.DoubleMap`2, Game.HotUpdate",
+            "ET.HashSetComponent`1, Game.HotUpdate",
+            "ET.ListComponent`1, Game.HotUpdate",
+            "ET.FileLogger, Game.HotUpdate",
+            "ET.UnityLogger, Game.HotUpdate",
+            "ET.MonoPool, Game.HotUpdate",
+            "ET.MultiDictionary`3, Game.HotUpdate",
+            "ET.MultiMap`2, Game.HotUpdate",
+            "ET.MultiMapSet`2, Game.HotUpdate",
+            "ET.AppType, Game.HotUpdate",
+            "ET.Options, Game.HotUpdate",
+            "ET.ThreadSynchronizationContext, Game.HotUpdate",
+            "ET.TimeInfo, Game.HotUpdate",
+            "ET.UnOrderMultiMap`2, Game.HotUpdate",
+            "ET.UnOrderMultiMapSet`2, Game.HotUpdate",
+            "ET.AcceptAllCertificate, Game.HotUpdate",
+            "ET.MonoStaticMethod, Game.HotUpdate",
+            "ET.RpcException, Game.HotUpdate",
+            "ET.ChannelType, Game.HotUpdate",
+            "ET.Packet, Game.HotUpdate",
+            "ET.CircularBuffer, Game.HotUpdate",
+            "ET.KcpWaitPacket, Game.HotUpdate",
+            "ET.KChannel, Game.HotUpdate",
+            "ET.ServiceType, Game.HotUpdate",
+            "ET.KService, Game.HotUpdate",
+            "ET.ParserState, Game.HotUpdate",
+            "ET.PacketParser, Game.HotUpdate",
+            "ET.TChannel, Game.HotUpdate",
+            "ET.TService, Game.HotUpdate",
+            "ET.WChannel, Game.HotUpdate",
+            "ET.WService, Game.HotUpdate",
+            "ET.CanvasConfig, Game.HotUpdate",
+            "ET.ComponentView, Game.HotUpdate",
+            "ET.GizmosDebug, Game.HotUpdate",
+            "ET.UILayer, Game.HotUpdate",
+            "ET.UILayerScript, Game.HotUpdate",
+            "ET.AsyncETTaskCompletedMethodBuilder, Game.HotUpdate",
+            "ET.ETAsyncTaskMethodBuilder, Game.HotUpdate",
+            "ET.ETAsyncTaskMethodBuilder`1, Game.HotUpdate",
+            "ET.AsyncETVoidMethodBuilder, Game.HotUpdate",
+            "ET.ETCancellationToken, Game.HotUpdate",
+            "ET.ETTask, Game.HotUpdate",
+            "ET.ETTask`1, Game.HotUpdate",
+            "ET.ETTaskCompleted, Game.HotUpdate",
+            "ET.ETVoid, Game.HotUpdate",
+            "ET.AwaiterStatus, Game.HotUpdate",
+            "ET.A2C_DisconnectHandler, Game.HotUpdate",
+            "ET.AccountInfoComponentDestroySystem, Game.HotUpdate",
+            "ET.DisConnectedCompnentDestroy, Game.HotUpdate",
+            "ET.M2C_NoticeUnitItemAttributeHandler, Game.HotUpdate",
+            "ET.M2C_NoticeUnitItemHandler, Game.HotUpdate",
+            "ET.RoleInfosComponentDestroySystem, Game.HotUpdate",
+            "ET.M2C_StartSceneChangeHandler, Game.HotUpdate",
+            "ET.SceneFactory, Game.HotUpdate",
+            "ET.ServerInfosComponentDestroySystem, Game.HotUpdate",
+            "ET.SessionComponentDestroySystem, Game.HotUpdate",
+            "ET.SessionStreamDispatcherClientOuter, Game.HotUpdate",
+            "ET.M2C_CreateMyUnitHandler, Game.HotUpdate",
+            "ET.UnitComponentAwakeSystem, Game.HotUpdate",
+            "ET.UnitComponentDestroySystem, Game.HotUpdate",
+            "ET.UnitAwakeSystem, Game.HotUpdate",
+            "ET.AccountInfoComponent, Game.HotUpdate",
+            "ET.DisConnectedCompnent, Game.HotUpdate",
+            "ET.RoleInfosComponent, Game.HotUpdate",
+            "ET.CurrentScenesComponent, Game.HotUpdate",
+            "ET.ServerInfosComponent, Game.HotUpdate",
+            "ET.SessionState, Game.HotUpdate",
+            "ET.SessionComponent, Game.HotUpdate",
+            "ET.PlayerComponent, Game.HotUpdate",
+            "ET.Unit, Game.HotUpdate",
+            "ET.UnitComponent, Game.HotUpdate",
+            "ET.ActivityLoginInfoProtoHandler, Game.HotUpdate",
+            "ET.ActivitySummerGiftProtoHandler, Game.HotUpdate",
+            "ET.S2C_NoticeActivityOpenHandler, Game.HotUpdate",
+            "ET.S2C_NoticeActivityCloseHandler, Game.HotUpdate",
+            "ET.S2C_SyncActivityCountValueHandler, Game.HotUpdate",
+            "ET.M2C_SyncBattlePassHandler, Game.HotUpdate",
+            "ET.M2C_SyncBattlePassLevelHandler, Game.HotUpdate",
+            "ET.M2C_SyncBattlePassSeasonIdHandler, Game.HotUpdate",
+            "ET.NoticeGetNewCard, Game.HotUpdate",
+            "ET.NoticeNoticeChatMsg, Game.HotUpdate",
+            "ET.M2C_NoticeUnitNumericHandler, Game.HotUpdate",
+            "ET.NoticeLivenessBoxChange, Game.HotUpdate",
+            "ET.NoticeFriendDailyReset, Game.HotUpdate",
+            "ET.NoticeRoleInfoChanged, Game.HotUpdate",
+            "ET.NoticeApplyForFriend, Game.HotUpdate",
+            "ET.NoticeAddFriends, Game.HotUpdate",
+            "ET.NoticeDeleteFriend, Game.HotUpdate",
+            "ET.NoticeTakeGiftStates, Game.HotUpdate",
+            "ET.S2C_ItemCollectHandler, Game.HotUpdate",
+            "ET.S2C_NoticeLuckyBoxFreeTimeHandler, Game.HotUpdate",
+            "ET.S2C_PushWishingPoolInfoHandler, Game.HotUpdate",
+            "ET.NoticeMailCountChanged, Game.HotUpdate",
+            "ET.M2C_NoticeMainStoryBoxBonusStateHandler, Game.HotUpdate",
+            "ET.M2C_NoticeMatchingStateHandler, Game.HotUpdate",
+            "ET.NoticeRedPacketDouble, Game.HotUpdate",
+            "ET.NoticeSystemNoticeChanged, Game.HotUpdate",
+            "ET.NoticeSystemNoticeRemove, Game.HotUpdate",
+            "ET.M2C_NoticeUnitLimitPlayTimesHandler, Game.HotUpdate",
+            "ET.S2C_SyncRechargeItemGetHandler, Game.HotUpdate",
+            "ET.NoticeMonthCardOpen, Game.HotUpdate",
+            "ET.NoticeAddSkill, Game.HotUpdate",
+            "ET.NoticeFilingScoreBonusChanged, Game.HotUpdate",
+            "ET.M2C_TaskCloseHandler, Game.HotUpdate",
+            "ET.M2C_TaskResetHandler, Game.HotUpdate",
+            "ET.WaitType.Wait_UnitStop, Game.HotUpdate",
+            "ET.WaitType.Wait_CreateMyUnit, Game.HotUpdate",
+            "ET.WaitType.Wait_SceneChangeStart, Game.HotUpdate",
+            "ET.WaitType.Wait_SceneChangeFinish, Game.HotUpdate",
+            "ET.EventType.NumbericChange, Game.HotUpdate",
+            "ET.EventType.AppStart, Game.HotUpdate",
+            "Hutool.DateUtil, Game.HotUpdate",
+            "GFGGame.CalculateHelper, Game.HotUpdate",
+            "GFGGame.DressUpRarity, Game.HotUpdate",
+            "GFGGame.FriendType, Game.HotUpdate",
+            "GFGGame.GlobalConst, Game.HotUpdate",
+            "GFGGame.ConstBonusStatus, Game.HotUpdate",
+            "GFGGame.ConstBonusType, Game.HotUpdate",
+            "GFGGame.ConstInstanceZonesType, Game.HotUpdate",
+            "GFGGame.ConstInstanceZonesSubType, Game.HotUpdate",
+            "GFGGame.ConstStudioSubType, Game.HotUpdate",
+            "GFGGame.ConstItemID, Game.HotUpdate",
+            "GFGGame.ConstItemType, Game.HotUpdate",
+            "GFGGame.ConstItemSubType, Game.HotUpdate",
+            "GFGGame.ConstItemFuncType, Game.HotUpdate",
+            "GFGGame.TravelGuideConst, Game.HotUpdate",
+            "GFGGame.ConstItemAttributeType, Game.HotUpdate",
+            "GFGGame.ConstItemAttributeActionType, Game.HotUpdate",
+            "GFGGame.RefreshType, Game.HotUpdate",
+            "GFGGame.ConstMailStatus, Game.HotUpdate",
+            "GFGGame.ConstGiveGiftStatus, Game.HotUpdate",
+            "GFGGame.PictureSourceType, Game.HotUpdate",
+            "GFGGame.PictureType, Game.HotUpdate",
+            "GFGGame.TravelGuideType, Game.HotUpdate",
+            "GFGGame.GallerySortType, Game.HotUpdate",
+            "GFGGame.ConstMailCfgId, Game.HotUpdate",
+            "GFGGame.ConstQDId, Game.HotUpdate",
+            "GFGGame.ConstDressUpItemType, Game.HotUpdate",
+            "GFGGame.LockType, Game.HotUpdate",
+            "GFGGame.CostType, Game.HotUpdate",
+            "GFGGame.FightTargetType, Game.HotUpdate",
+            "GFGGame.ArenaRankType, Game.HotUpdate",
+            "GFGGame.ArenaGradeAndRankChangeType, Game.HotUpdate",
+            "GFGGame.LimitClearType, Game.HotUpdate",
+            "GFGGame.CarInfoChangeType, Game.HotUpdate",
+            "GFGGame.LeaguePrayType, Game.HotUpdate",
+            "GFGGame.LeagueBuildingType, Game.HotUpdate",
+            "GFGGame.LeaguePos, Game.HotUpdate",
+            "GFGGame.LeagueJoinQuitLogType, Game.HotUpdate",
+            "GFGGame.LeaguePower, Game.HotUpdate",
+            "GFGGame.LeaguePosPower, Game.HotUpdate",
+            "GFGGame.LeagueApplyStatus, Game.HotUpdate",
+            "GFGGame.LeagueWelfareType, Game.HotUpdate",
+            "GFGGame.LeagueWelfareTypes, Game.HotUpdate",
+            "GFGGame.LeagueQuestionStatus, Game.HotUpdate",
+            "GFGGame.ChatType, Game.HotUpdate",
+            "GFGGame.SkillType, Game.HotUpdate",
+            "GFGGame.ChatSave, Game.HotUpdate",
+            "GFGGame.MonthCardType, Game.HotUpdate",
+            "GFGGame.MonthCardPrivilegeType, Game.HotUpdate",
+            "GFGGame.MonthCardPrivilegeParamsType, Game.HotUpdate",
+            "GFGGame.ConstTaskType, Game.HotUpdate",
+            "GFGGame.AnswerQuestionRewardEnd, Game.HotUpdate",
+            "GFGGame.ConstStoreTabId, Game.HotUpdate",
+            "GFGGame.ConstStoreSubId, Game.HotUpdate",
+            "GFGGame.ConstLivenessType, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyStatus, Game.HotUpdate",
+            "GFGGame.MiniGameType, Game.HotUpdate",
+            "GFGGame.RedPacketStatus, Game.HotUpdate",
+            "GFGGame.CollectPartID, Game.HotUpdate",
+            "GFGGame.SConstCardRarity, Game.HotUpdate",
+            "GFGGame.AchievementTypeCfgArray, Game.HotUpdate",
+            "GFGGame.Activity7DaysCfgArray, Game.HotUpdate",
+            "GFGGame.Activity7DaysTaskCfgArray, Game.HotUpdate",
+            "GFGGame.ActivityDressCfgArray, Game.HotUpdate",
+            "GFGGame.ActivityFightCfgArray, Game.HotUpdate",
+            "GFGGame.ActivityLoginCfgArray, Game.HotUpdate",
+            "GFGGame.ActivityLuckybonusCfgArray, Game.HotUpdate",
+            "GFGGame.ActivityOpenCfgArray, Game.HotUpdate",
+            "GFGGame.ActivityRecharge2CfgArray, Game.HotUpdate",
+            "GFGGame.ActivityRechargeCfgArray, Game.HotUpdate",
+            "GFGGame.ActivityRewardsCfgArray, Game.HotUpdate",
+            "GFGGame.ActivitySignCfgArray, Game.HotUpdate",
+            "GFGGame.ActivityStoryCfgArray, Game.HotUpdate",
+            "GFGGame.ActivityVisitCfgArray, Game.HotUpdate",
+            "GFGGame.AdCfgArray, Game.HotUpdate",
+            "GFGGame.ArenaOpenCfgArray, Game.HotUpdate",
+            "GFGGame.ArenaRankCfgArray, Game.HotUpdate",
+            "GFGGame.ArenaRewardCfgArray, Game.HotUpdate",
+            "GFGGame.ArenaRobotCfgArray, Game.HotUpdate",
+            "GFGGame.ArenaTagCfgArray, Game.HotUpdate",
+            "GFGGame.BagExchangeCfgArray, Game.HotUpdate",
+            "GFGGame.BattlePassCfgArray, Game.HotUpdate",
+            "GFGGame.BattlePassOpenCfgArray, Game.HotUpdate",
+            "GFGGame.BlindBoxCfgArray, Game.HotUpdate",
+            "GFGGame.BonusListCfgArray, Game.HotUpdate",
+            "GFGGame.CardLvlCfgArray, Game.HotUpdate",
+            "GFGGame.CardRarityCfgArray, Game.HotUpdate",
+            "GFGGame.CardStarCfgArray, Game.HotUpdate",
+            "GFGGame.CardStoryCfgArray, Game.HotUpdate",
+            "GFGGame.ChapterRewardCfgArray, Game.HotUpdate",
+            "GFGGame.CimbingTowerCfgArray, Game.HotUpdate",
+            "GFGGame.CimbingTowerLevelCfgArray, Game.HotUpdate",
+            "GFGGame.CollegeBoostCfgArray, Game.HotUpdate",
+            "GFGGame.CollegeRankCfgArray, Game.HotUpdate",
+            "GFGGame.CollegeRankOpenCfgArray, Game.HotUpdate",
+            "GFGGame.CollegeSubTypesCfgArray, Game.HotUpdate",
+            "GFGGame.CompositeLevelbonusCfgArray, Game.HotUpdate",
+            "GFGGame.CompositebonusCfgArray, Game.HotUpdate",
+            "GFGGame.CoolDownCfgArray, Game.HotUpdate",
+            "GFGGame.CulturalRelicCfgArray, Game.HotUpdate",
+            "GFGGame.DailyLoginCfgArray, Game.HotUpdate",
+            "GFGGame.DailySignBonusCfgArray, Game.HotUpdate",
+            "GFGGame.DailySignCfgArray, Game.HotUpdate",
+            "GFGGame.DailySupplyCfgArray, Game.HotUpdate",
+            "GFGGame.DecomposeCfgArray, Game.HotUpdate",
+            "GFGGame.DecomposeSkillCfgArray, Game.HotUpdate",
+            "GFGGame.DressUpMenuItemCfg1Array, Game.HotUpdate",
+            "GFGGame.DressUpMenuItemCfg2Array, Game.HotUpdate",
+            "GFGGame.DropOutCfgArray, Game.HotUpdate",
+            "GFGGame.DropOutNewCfgArray, Game.HotUpdate",
+            "GFGGame.DropOutWishCfgArray, Game.HotUpdate",
+            "GFGGame.EctypeCfgArray, Game.HotUpdate",
+            "GFGGame.ErrorCodeCfgArray, Game.HotUpdate",
+            "GFGGame.EverydaySaleArray, Game.HotUpdate",
+            "GFGGame.EverydaySaleCfgArray, Game.HotUpdate",
+            "GFGGame.FieldCfgArray, Game.HotUpdate",
+            "GFGGame.FieldTaskCfgArray, Game.HotUpdate",
+            "GFGGame.FightScoreCfgArray, Game.HotUpdate",
+            "GFGGame.FilingRewardCfgArray, Game.HotUpdate",
+            "GFGGame.FunctionOpenCfgArray, Game.HotUpdate",
+            "GFGGame.GalleryIntegralCfgArray, Game.HotUpdate",
+            "GFGGame.GalleryRewardCfgArray, Game.HotUpdate",
+            "GFGGame.GalleryThemeCfgArray, Game.HotUpdate",
+            "GFGGame.GameFunctionCfgArray, Game.HotUpdate",
+            "GFGGame.GeneralMaterialCfgArray, Game.HotUpdate",
+            "GFGGame.GiftBagCfgArray, Game.HotUpdate",
+            "GFGGame.GlobalCfgArray, Game.HotUpdate",
+            "GFGGame.GrowthFundCfgArray, Game.HotUpdate",
+            "GFGGame.GuideCfgArray, Game.HotUpdate",
+            "GFGGame.HeadAniCfgArray, Game.HotUpdate",
+            "GFGGame.HuarongRoadCfgArray, Game.HotUpdate",
+            "GFGGame.HuarongRoadGameArray, Game.HotUpdate",
+            "GFGGame.ItemCfgArray, Game.HotUpdate",
+            "GFGGame.ItemExchangeCfgArray, Game.HotUpdate",
+            "GFGGame.ItemInitCfgArray, Game.HotUpdate",
+            "GFGGame.ItemTypeCfgArray, Game.HotUpdate",
+            "GFGGame.JudgingRoundOpenCfgArray, Game.HotUpdate",
+            "GFGGame.JudgingRoundRewardCfgArray, Game.HotUpdate",
+            "GFGGame.LeagueCfgArray, Game.HotUpdate",
+            "GFGGame.LeagueHallCfgArray, Game.HotUpdate",
+            "GFGGame.LeagueHotelCfgArray, Game.HotUpdate",
+            "GFGGame.LeaguePrayCfgArray, Game.HotUpdate",
+            "GFGGame.LeagueQuestionBonusCfgArray, Game.HotUpdate",
+            "GFGGame.LeagueQuestionCfgArray, Game.HotUpdate",
+            "GFGGame.LeagueSkillCfgArray, Game.HotUpdate",
+            "GFGGame.LeagueSkillCountCfgArray, Game.HotUpdate",
+            "GFGGame.LeagueStoreCfgArray, Game.HotUpdate",
+            "GFGGame.LeagueWelfareCfgArray, Game.HotUpdate",
+            "GFGGame.LevelTipsCfgArray, Game.HotUpdate",
+            "GFGGame.LuckyBoxCfgArray, Game.HotUpdate",
+            "GFGGame.MailCfgArray, Game.HotUpdate",
+            "GFGGame.MainBackgroundCfgArray, Game.HotUpdate",
+            "GFGGame.MergeCfgArray, Game.HotUpdate",
+            "GFGGame.MergeGameArray, Game.HotUpdate",
+            "GFGGame.MiniGameArray, Game.HotUpdate",
+            "GFGGame.MiniGameBonusArray, Game.HotUpdate",
+            "GFGGame.MonthlyCardCfgArray, Game.HotUpdate",
+            "GFGGame.MonthlyCardClothesCfgArray, Game.HotUpdate",
+            "GFGGame.MonthlyCardPrivilegeCfgArray, Game.HotUpdate",
+            "GFGGame.PassivitySkillCfgArray, Game.HotUpdate",
+            "GFGGame.PassivitySkillLvlCfgArray, Game.HotUpdate",
+            "GFGGame.PearlGiftCfgArray, Game.HotUpdate",
+            "GFGGame.PickUpCfgArray, Game.HotUpdate",
+            "GFGGame.PickUpGameArray, Game.HotUpdate",
+            "GFGGame.RechargeCfgArray, Game.HotUpdate",
+            "GFGGame.RobotNameCfgArray, Game.HotUpdate",
+            "GFGGame.RoleLevelCfgArray, Game.HotUpdate",
+            "GFGGame.RoleNameCfgArray, Game.HotUpdate",
+            "GFGGame.RoleSkillCfgArray, Game.HotUpdate",
+            "GFGGame.RotatingLuckyBoxCfgArray, Game.HotUpdate",
+            "GFGGame.RouletteRewardCfgArray, Game.HotUpdate",
+            "GFGGame.ShopCfgArray, Game.HotUpdate",
+            "GFGGame.ShopExchangeCfgArray, Game.HotUpdate",
+            "GFGGame.StoreTabCfgArray, Game.HotUpdate",
+            "GFGGame.StoryChapterCfgArray, Game.HotUpdate",
+            "GFGGame.StoryDialogCfgArray, Game.HotUpdate",
+            "GFGGame.StoryFightCfgArray, Game.HotUpdate",
+            "GFGGame.StoryLevelCfgArray, Game.HotUpdate",
+            "GFGGame.StudioCfgArray, Game.HotUpdate",
+            "GFGGame.SuitCfgArray, Game.HotUpdate",
+            "GFGGame.SuitFosterCfgArray, Game.HotUpdate",
+            "GFGGame.SuitFosterListCfgArray, Game.HotUpdate",
+            "GFGGame.SuitGuideMenuCfgArray, Game.HotUpdate",
+            "GFGGame.SuitRenewCfgArray, Game.HotUpdate",
+            "GFGGame.TagCfgArray, Game.HotUpdate",
+            "GFGGame.TaskActiveRewardCfgArray, Game.HotUpdate",
+            "GFGGame.TaskCfgArray, Game.HotUpdate",
+            "GFGGame.TaskTypeCfgArray, Game.HotUpdate",
+            "GFGGame.TaskbonusCfgArray, Game.HotUpdate",
+            "GFGGame.TeapartyOpenCfgArray, Game.HotUpdate",
+            "GFGGame.TeapartyRewardLeagueCfgArray, Game.HotUpdate",
+            "GFGGame.TeapartyRewardRoleCfgArray, Game.HotUpdate",
+            "GFGGame.TeapartyRoleCfgArray, Game.HotUpdate",
+            "GFGGame.TextDescCfgArray, Game.HotUpdate",
+            "GFGGame.TipsDescCfgArray, Game.HotUpdate",
+            "GFGGame.TransItemCfgArray, Game.HotUpdate",
+            "GFGGame.TravelGuideCfgArray, Game.HotUpdate",
+            "GFGGame.TravelLoactionCfgArray, Game.HotUpdate",
+            "GFGGame.TravelSuitCfgArray, Game.HotUpdate",
+            "GFGGame.TreasureCfgArray, Game.HotUpdate",
+            "GFGGame.TurntableLuckyBoxCfgArray, Game.HotUpdate",
+            "GFGGame.TurntableRewardCfgArray, Game.HotUpdate",
+            "GFGGame.VipCfgArray, Game.HotUpdate",
+            "GFGGame.WeekActiveRewardCfgArray, Game.HotUpdate",
+            "GFGGame.CardCfgArray, Game.HotUpdate",
+            "GFGGame.CardGameArray, Game.HotUpdate",
+            "GFGGame.LimitCfgArray, Game.HotUpdate",
+            "GFGGame.Merge2048CfgArray, Game.HotUpdate",
+            "GFGGame.Merge2048GameArray, Game.HotUpdate",
+            "GFGGame.DisposeAllCfgsCache, Game.HotUpdate",
+            "GFGGame.InitAllCfgsCache, Game.HotUpdate",
+            "GFGGame.AchievementTypeCfg, Game.HotUpdate",
+            "GFGGame.Activity7DaysCfg, Game.HotUpdate",
+            "GFGGame.Activity7DaysTaskCfg, Game.HotUpdate",
+            "GFGGame.ActivityDressCfg, Game.HotUpdate",
+            "GFGGame.ActivityFightCfg, Game.HotUpdate",
+            "GFGGame.ActivityLoginCfg, Game.HotUpdate",
+            "GFGGame.ActivityLuckybonusCfg, Game.HotUpdate",
+            "GFGGame.ActivityOpenCfg, Game.HotUpdate",
+            "GFGGame.ActivityRecharge2Cfg, Game.HotUpdate",
+            "GFGGame.ActivityRechargeCfg, Game.HotUpdate",
+            "GFGGame.ActivityRewardsCfg, Game.HotUpdate",
+            "GFGGame.ActivitySignCfg, Game.HotUpdate",
+            "GFGGame.ActivityStoryCfg, Game.HotUpdate",
+            "GFGGame.ActivityVisitCfg, Game.HotUpdate",
+            "GFGGame.AdCfg, Game.HotUpdate",
+            "GFGGame.ArenaOpenCfg, Game.HotUpdate",
+            "GFGGame.ArenaRankCfg, Game.HotUpdate",
+            "GFGGame.ArenaRewardCfg, Game.HotUpdate",
+            "GFGGame.ArenaRobotCfg, Game.HotUpdate",
+            "GFGGame.ArenaTagCfg, Game.HotUpdate",
+            "GFGGame.BagExchangeCfg, Game.HotUpdate",
+            "GFGGame.BattlePassCfg, Game.HotUpdate",
+            "GFGGame.BattlePassOpenCfg, Game.HotUpdate",
+            "GFGGame.BlindBoxCfg, Game.HotUpdate",
+            "GFGGame.BonusListCfg, Game.HotUpdate",
+            "GFGGame.CardLvlCfg, Game.HotUpdate",
+            "GFGGame.CardRarityCfg, Game.HotUpdate",
+            "GFGGame.CardStarCfg, Game.HotUpdate",
+            "GFGGame.CardStoryCfg, Game.HotUpdate",
+            "GFGGame.ChapterRewardCfg, Game.HotUpdate",
+            "GFGGame.CimbingTowerCfg, Game.HotUpdate",
+            "GFGGame.CimbingTowerLevelCfg, Game.HotUpdate",
+            "GFGGame.CollegeBoostCfg, Game.HotUpdate",
+            "GFGGame.CollegeRankCfg, Game.HotUpdate",
+            "GFGGame.CollegeRankOpenCfg, Game.HotUpdate",
+            "GFGGame.CollegeSubTypesCfg, Game.HotUpdate",
+            "GFGGame.CompositeLevelbonusCfg, Game.HotUpdate",
+            "GFGGame.CompositebonusCfg, Game.HotUpdate",
+            "GFGGame.CoolDownCfg, Game.HotUpdate",
+            "GFGGame.CulturalRelicCfg, Game.HotUpdate",
+            "GFGGame.DailyLoginCfg, Game.HotUpdate",
+            "GFGGame.DailySignBonusCfg, Game.HotUpdate",
+            "GFGGame.DailySignCfg, Game.HotUpdate",
+            "GFGGame.DailySupplyCfg, Game.HotUpdate",
+            "GFGGame.DecomposeCfg, Game.HotUpdate",
+            "GFGGame.DecomposeSkillCfg, Game.HotUpdate",
+            "GFGGame.DressUpMenuItemCfg1, Game.HotUpdate",
+            "GFGGame.DressUpMenuItemCfg2, Game.HotUpdate",
+            "GFGGame.DropOutCfg, Game.HotUpdate",
+            "GFGGame.DropOutNewCfg, Game.HotUpdate",
+            "GFGGame.DropOutWishCfg, Game.HotUpdate",
+            "GFGGame.EctypeCfg, Game.HotUpdate",
+            "GFGGame.ErrorCodeCfg, Game.HotUpdate",
+            "GFGGame.EverydaySale, Game.HotUpdate",
+            "GFGGame.EverydaySaleCfg, Game.HotUpdate",
+            "GFGGame.FieldCfg, Game.HotUpdate",
+            "GFGGame.FieldTaskCfg, Game.HotUpdate",
+            "GFGGame.FightScoreCfg, Game.HotUpdate",
+            "GFGGame.FilingRewardCfg, Game.HotUpdate",
+            "GFGGame.FunctionOpenCfg, Game.HotUpdate",
+            "GFGGame.GalleryIntegralCfg, Game.HotUpdate",
+            "GFGGame.GalleryRewardCfg, Game.HotUpdate",
+            "GFGGame.GalleryThemeCfg, Game.HotUpdate",
+            "GFGGame.GameFunctionCfg, Game.HotUpdate",
+            "GFGGame.GeneralMaterialCfg, Game.HotUpdate",
+            "GFGGame.GiftBagCfg, Game.HotUpdate",
+            "GFGGame.GlobalCfg, Game.HotUpdate",
+            "GFGGame.GrowthFundCfg, Game.HotUpdate",
+            "GFGGame.GuideCfg, Game.HotUpdate",
+            "GFGGame.HeadAniCfg, Game.HotUpdate",
+            "GFGGame.HuarongRoadCfg, Game.HotUpdate",
+            "GFGGame.HuarongRoadGame, Game.HotUpdate",
+            "GFGGame.ItemCfg, Game.HotUpdate",
+            "GFGGame.ItemExchangeCfg, Game.HotUpdate",
+            "GFGGame.ItemInitCfg, Game.HotUpdate",
+            "GFGGame.ItemTypeCfg, Game.HotUpdate",
+            "GFGGame.JudgingRoundOpenCfg, Game.HotUpdate",
+            "GFGGame.JudgingRoundRewardCfg, Game.HotUpdate",
+            "GFGGame.LeagueCfg, Game.HotUpdate",
+            "GFGGame.LeagueHallCfg, Game.HotUpdate",
+            "GFGGame.LeagueHotelCfg, Game.HotUpdate",
+            "GFGGame.LeaguePrayCfg, Game.HotUpdate",
+            "GFGGame.LeagueQuestionBonusCfg, Game.HotUpdate",
+            "GFGGame.LeagueQuestionCfg, Game.HotUpdate",
+            "GFGGame.LeagueSkillCfg, Game.HotUpdate",
+            "GFGGame.LeagueSkillCountCfg, Game.HotUpdate",
+            "GFGGame.LeagueStoreCfg, Game.HotUpdate",
+            "GFGGame.LeagueWelfareCfg, Game.HotUpdate",
+            "GFGGame.LevelTipsCfg, Game.HotUpdate",
+            "GFGGame.LuckyBoxCfg, Game.HotUpdate",
+            "GFGGame.MailCfg, Game.HotUpdate",
+            "GFGGame.MainBackgroundCfg, Game.HotUpdate",
+            "GFGGame.MergeCfg, Game.HotUpdate",
+            "GFGGame.MergeGame, Game.HotUpdate",
+            "GFGGame.MiniGame, Game.HotUpdate",
+            "GFGGame.MiniGameBonus, Game.HotUpdate",
+            "GFGGame.MonthlyCardCfg, Game.HotUpdate",
+            "GFGGame.MonthlyCardClothesCfg, Game.HotUpdate",
+            "GFGGame.MonthlyCardPrivilegeCfg, Game.HotUpdate",
+            "GFGGame.PassivitySkillCfg, Game.HotUpdate",
+            "GFGGame.PassivitySkillLvlCfg, Game.HotUpdate",
+            "GFGGame.PearlGiftCfg, Game.HotUpdate",
+            "GFGGame.PickUpCfg, Game.HotUpdate",
+            "GFGGame.PickUpGame, Game.HotUpdate",
+            "GFGGame.RechargeCfg, Game.HotUpdate",
+            "GFGGame.RobotNameCfg, Game.HotUpdate",
+            "GFGGame.RoleLevelCfg, Game.HotUpdate",
+            "GFGGame.RoleNameCfg, Game.HotUpdate",
+            "GFGGame.RoleSkillCfg, Game.HotUpdate",
+            "GFGGame.RotatingLuckyBoxCfg, Game.HotUpdate",
+            "GFGGame.RouletteRewardCfg, Game.HotUpdate",
+            "GFGGame.ShopCfg, Game.HotUpdate",
+            "GFGGame.ShopExchangeCfg, Game.HotUpdate",
+            "GFGGame.StoreTabCfg, Game.HotUpdate",
+            "GFGGame.StoryChapterCfg, Game.HotUpdate",
+            "GFGGame.StoryDialogCfg, Game.HotUpdate",
+            "GFGGame.StoryFightCfg, Game.HotUpdate",
+            "GFGGame.StoryLevelCfg, Game.HotUpdate",
+            "GFGGame.StudioCfg, Game.HotUpdate",
+            "GFGGame.SuitCfg, Game.HotUpdate",
+            "GFGGame.SuitFosterCfg, Game.HotUpdate",
+            "GFGGame.SuitFosterListCfg, Game.HotUpdate",
+            "GFGGame.SuitGuideMenuCfg, Game.HotUpdate",
+            "GFGGame.SuitRenewCfg, Game.HotUpdate",
+            "GFGGame.TagCfg, Game.HotUpdate",
+            "GFGGame.TaskActiveRewardCfg, Game.HotUpdate",
+            "GFGGame.TaskCfg, Game.HotUpdate",
+            "GFGGame.TaskTypeCfg, Game.HotUpdate",
+            "GFGGame.TaskbonusCfg, Game.HotUpdate",
+            "GFGGame.TeapartyOpenCfg, Game.HotUpdate",
+            "GFGGame.TeapartyRewardLeagueCfg, Game.HotUpdate",
+            "GFGGame.TeapartyRewardRoleCfg, Game.HotUpdate",
+            "GFGGame.TeapartyRoleCfg, Game.HotUpdate",
+            "GFGGame.TextDescCfg, Game.HotUpdate",
+            "GFGGame.TipsDescCfg, Game.HotUpdate",
+            "GFGGame.TransItemCfg, Game.HotUpdate",
+            "GFGGame.TravelGuideCfg, Game.HotUpdate",
+            "GFGGame.TravelLoactionCfg, Game.HotUpdate",
+            "GFGGame.TravelSuitCfg, Game.HotUpdate",
+            "GFGGame.TreasureCfg, Game.HotUpdate",
+            "GFGGame.TurntableLuckyBoxCfg, Game.HotUpdate",
+            "GFGGame.TurntableRewardCfg, Game.HotUpdate",
+            "GFGGame.VipCfg, Game.HotUpdate",
+            "GFGGame.WeekActiveRewardCfg, Game.HotUpdate",
+            "GFGGame.CardCfg, Game.HotUpdate",
+            "GFGGame.CardGame, Game.HotUpdate",
+            "GFGGame.LimitCfg, Game.HotUpdate",
+            "GFGGame.Merge2048Cfg, Game.HotUpdate",
+            "GFGGame.Merge2048Game, Game.HotUpdate",
+            "GFGGame.GameConst, Game.HotUpdate",
+            "GFGGame.SQLiteHelper, Game.HotUpdate",
+            "GFGGame.ConfigUtil, Game.HotUpdate",
+            "GFGGame.DressUpConfigUtil, Game.HotUpdate",
+            "GFGGame.ItemUtilCS, Game.HotUpdate",
+            "GFGGame.NumericUtil, Game.HotUpdate",
+            "GFGGame.TimeUtil, Game.HotUpdate",
+            "GFGGame.UniqueQueue`1, Game.HotUpdate",
+            "GFGGame.BilateralDiffusionStruct, Game.HotUpdate",
+            "GFGGame.Selection`2, Game.HotUpdate",
+            "GFGGame.SelectionCache`2, Game.HotUpdate",
+            "GFGGame.StrTrieDictionary`1, Game.HotUpdate",
+            "GFGGame.TrieNode, Game.HotUpdate",
+            "GFGGame.Trie, Game.HotUpdate",
+            "GFGGame.AssetReleaser, Game.HotUpdate",
+            "GFGGame.FGUICanvas, Game.HotUpdate",
+            "GFGGame.LoadManager, Game.HotUpdate",
+            "GFGGame.ResType, Game.HotUpdate",
+            "GFGGame.PreDownloadManager, Game.HotUpdate",
+            "GFGGame.PrefabManager, Game.HotUpdate",
+            "GFGGame.ConstBannerId, Game.HotUpdate",
+            "GFGGame.ConstBuyType, Game.HotUpdate",
+            "GFGGame.ConstCardRarity_Type, Game.HotUpdate",
+            "GFGGame.ConstCardState, Game.HotUpdate",
+            "GFGGame.ConstCardSubType, Game.HotUpdate",
+            "GFGGame.ConstCardType, Game.HotUpdate",
+            "GFGGame.ConstDressRarity, Game.HotUpdate",
+            "GFGGame.Tag, Game.HotUpdate",
+            "GFGGame.ConstDressTag, Game.HotUpdate",
+            "GFGGame.ConstDressUpScoreType, Game.HotUpdate",
+            "GFGGame.ConstFieldGuideId, Game.HotUpdate",
+            "GFGGame.ConstFunctionId, Game.HotUpdate",
+            "GFGGame.ConstGuideId, Game.HotUpdate",
+            "GFGGame.ConstMessage, Game.HotUpdate",
+            "GFGGame.ConstMusicName, Game.HotUpdate",
+            "GFGGame.ConstScoreSystem, Game.HotUpdate",
+            "GFGGame.ConstStorageId, Game.HotUpdate",
+            "GFGGame.ConstStoreId, Game.HotUpdate",
+            "GFGGame.ConstSuitGuideTypeId, Game.HotUpdate",
+            "GFGGame.ConstViewLayer, Game.HotUpdate",
+            "GFGGame.ConstViewLayerSortingOrder, Game.HotUpdate",
+            "GFGGame.AntiAddictionController, Game.HotUpdate",
+            "GFGGame.BonusController, Game.HotUpdate",
+            "GFGGame.BuyConfirmController, Game.HotUpdate",
+            "GFGGame.BuyItemConteoller, Game.HotUpdate",
+            "GFGGame.BuyTipsController, Game.HotUpdate",
+            "GFGGame.EnduringGiftBoxController, Game.HotUpdate",
+            "GFGGame.ErrorCodeController, Game.HotUpdate",
+            "GFGGame.GMController, Game.HotUpdate",
+            "GFGGame.GameController, Game.HotUpdate",
+            "GFGGame.GuideController, Game.HotUpdate",
+            "GFGGame.LogController, Game.HotUpdate",
+            "GFGGame.LogServerHelper, Game.HotUpdate",
+            "GFGGame.LoginController, Game.HotUpdate",
+            "GFGGame.MainControllerr, Game.HotUpdate",
+            "GFGGame.PromptController, Game.HotUpdate",
+            "GFGGame.RedDotController, Game.HotUpdate",
+            "GFGGame.RuleController, Game.HotUpdate",
+            "GFGGame.ScaleGestureController, Game.HotUpdate",
+            "GFGGame.ScreenBlackController, Game.HotUpdate",
+            "GFGGame.ActivityAfuGiftDataManager, Game.HotUpdate",
+            "GFGGame.ActivityDataManager, Game.HotUpdate",
+            "GFGGame.ActivityDay7DataManager, Game.HotUpdate",
+            "GFGGame.ActivityFYJYDataManager, Game.HotUpdate",
+            "GFGGame.ActivityInfo, Game.HotUpdate",
+            "GFGGame.ActivityGlobalDataManager, Game.HotUpdate",
+            "GFGGame.ArenaDataManager, Game.HotUpdate",
+            "GFGGame.ArenaViewManager, Game.HotUpdate",
+            "GFGGame.BagDataManager, Game.HotUpdate",
+            "GFGGame.BattlePassTaskDataManager, Game.HotUpdate",
+            "GFGGame.DropOutDataCache, Game.HotUpdate",
+            "GFGGame.StoryBonusDataCache, Game.HotUpdate",
+            "GFGGame.CardDataManager, Game.HotUpdate",
+            "GFGGame.ChatDataManager, Game.HotUpdate",
+            "GFGGame.CollectPartDataManager, Game.HotUpdate",
+            "GFGGame.CustomSuitDataManager, Game.HotUpdate",
+            "GFGGame.DailyTaskDataManager, Game.HotUpdate",
+            "GFGGame.DailyWelfareManager, Game.HotUpdate",
+            "GFGGame.DecomposeDataManager, Game.HotUpdate",
+            "GFGGame.DressFilterType, Game.HotUpdate",
+            "GFGGame.DressFilterItemType, Game.HotUpdate",
+            "GFGGame.DressUpMenuItemDataManager, Game.HotUpdate",
+            "GFGGame.DressUpMenuSuitDataManager, Game.HotUpdate",
+            "GFGGame.EnduringGiftBoxDataManager, Game.HotUpdate",
+            "GFGGame.FieldInfos, Game.HotUpdate",
+            "GFGGame.FieldResult, Game.HotUpdate",
+            "GFGGame.FieldDataManager, Game.HotUpdate",
+            "GFGGame.FieldFightDataManager, Game.HotUpdate",
+            "GFGGame.FieldWorkDataManager, Game.HotUpdate",
+            "GFGGame.FightDataManager, Game.HotUpdate",
+            "GFGGame.FriendDataManager, Game.HotUpdate",
+            "GFGGame.FunctionOpenDataManager, Game.HotUpdate",
+            "GFGGame.GuideDataManager, Game.HotUpdate",
+            "GFGGame.GuideSimulationDataManager, Game.HotUpdate",
+            "GFGGame.RoleDataHandler, Game.HotUpdate",
+            "GFGGame.InstanceZonesDataManager, Game.HotUpdate",
+            "GFGGame.ItemDataManager, Game.HotUpdate",
+            "GFGGame.LastQuestionResult, Game.HotUpdate",
+            "GFGGame.LeagueJoinType, Game.HotUpdate",
+            "GFGGame.LeagueDataManager, Game.HotUpdate",
+            "GFGGame.LimitedTimeGiftBoxDataManager, Game.HotUpdate",
+            "GFGGame.LuckyBoxDataManager, Game.HotUpdate",
+            "GFGGame.MailInfo, Game.HotUpdate",
+            "GFGGame.MailDataManager, Game.HotUpdate",
+            "GFGGame.MainDataManager, Game.HotUpdate",
+            "GFGGame.MainStoryDataManager, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionDataManager, Game.HotUpdate",
+            "GFGGame.MatchingOneDataManager, Game.HotUpdate",
+            "GFGGame.MatchingLeftDataManager, Game.HotUpdate",
+            "GFGGame.MatchingRightDataManager, Game.HotUpdate",
+            "GFGGame.MiniGameDateManager, Game.HotUpdate",
+            "GFGGame.NewYearRedEnvelopeDataManager, Game.HotUpdate",
+            "GFGGame.NoticeInfo, Game.HotUpdate",
+            "GFGGame.NoticeDataManager, Game.HotUpdate",
+            "GFGGame.EnumPhotographType, Game.HotUpdate",
+            "GFGGame.PhotographDataManager, Game.HotUpdate",
+            "GFGGame.PhotographSceneManager, Game.HotUpdate",
+            "GFGGame.PhotographUtil, Game.HotUpdate",
+            "GFGGame.PictureDataManager, Game.HotUpdate",
+            "GFGGame.PoemGalleryDataManager, Game.HotUpdate",
+            "GFGGame.PoemPhotoDataManager, Game.HotUpdate",
+            "GFGGame.ItemDataPool, Game.HotUpdate",
+            "GFGGame.RedDotDataManager, Game.HotUpdate",
+            "GFGGame.RoleDataManager, Game.HotUpdate",
+            "GFGGame.RoleInfoManager, Game.HotUpdate",
+            "GFGGame.RoleLimitDataManager, Game.HotUpdate",
+            "GFGGame.ClickType, Game.HotUpdate",
+            "GFGGame.SkillBeginTime, Game.HotUpdate",
+            "GFGGame.ScoreSystemData, Game.HotUpdate",
+            "GFGGame.ShareDataManager, Game.HotUpdate",
+            "GFGGame.ShopDataManager, Game.HotUpdate",
+            "GFGGame.ShopViewManager, Game.HotUpdate",
+            "GFGGame.SkillDataManager, Game.HotUpdate",
+            "GFGGame.StorageDataManager, Game.HotUpdate",
+            "GFGGame.StoryDialogDataManager, Game.HotUpdate",
+            "GFGGame.StudioDataManager, Game.HotUpdate",
+            "GFGGame.SuitFosterDataManager, Game.HotUpdate",
+            "GFGGame.TaskInfo, Game.HotUpdate",
+            "GFGGame.TaskDataManager, Game.HotUpdate",
+            "GFGGame.TimeTracingSuitRankData, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelRankData, Game.HotUpdate",
+            "GFGGame.TimeTracingDataManager, Game.HotUpdate",
+            "GFGGame.TravelDataManager, Game.HotUpdate",
+            "GFGGame.ArenaTargetData, Game.HotUpdate",
+            "GFGGame.ArenaHistoryData, Game.HotUpdate",
+            "GFGGame.CardData, Game.HotUpdate",
+            "GFGGame.ChatData, Game.HotUpdate",
+            "GFGGame.CollectPartData, Game.HotUpdate",
+            "GFGGame.CustomSuitData, Game.HotUpdate",
+            "GFGGame.DressUpData, Game.HotUpdate",
+            "GFGGame.DropOutData, Game.HotUpdate",
+            "GFGGame.FightData, Game.HotUpdate",
+            "GFGGame.FriendInfoData, Game.HotUpdate",
+            "GFGGame.ActivityOpenData, Game.HotUpdate",
+            "GFGGame.LimitedTimeGiftBoxItemData, Game.HotUpdate",
+            "GFGGame.LimitedTimeGiftBoxItemYxData, Game.HotUpdate",
+            "GFGGame.ItemData, Game.HotUpdate",
+            "GFGGame.LeagueData, Game.HotUpdate",
+            "GFGGame.LeagueMemberData, Game.HotUpdate",
+            "GFGGame.LeagueListData, Game.HotUpdate",
+            "GFGGame.LeagueLogData, Game.HotUpdate",
+            "GFGGame.LeagueGiftGetData, Game.HotUpdate",
+            "GFGGame.LeagueGiftBuyData, Game.HotUpdate",
+            "GFGGame.LeagueLastAnswerRoleData, Game.HotUpdate",
+            "GFGGame.LeagueAnswerData, Game.HotUpdate",
+            "GFGGame.LuckyBoxBonusData, Game.HotUpdate",
+            "GFGGame.MatchingPlayerData, Game.HotUpdate",
+            "GFGGame.TransformData, Game.HotUpdate",
+            "GFGGame.CurRanMatchingPhotoWorksData, Game.HotUpdate",
+            "GFGGame.MatchingPhotoWorksData, Game.HotUpdate",
+            "GFGGame.MatchingWorksData, Game.HotUpdate",
+            "GFGGame.OtherRoleInfoData, Game.HotUpdate",
+            "GFGGame.OtherRoleInfoDetailData, Game.HotUpdate",
+            "GFGGame.PoemGalleryData, Game.HotUpdate",
+            "GFGGame.PoemPhotoData, Game.HotUpdate",
+            "GFGGame.RoleLimitData, Game.HotUpdate",
+            "GFGGame.SkillData, Game.HotUpdate",
+            "GFGGame.BuffData, Game.HotUpdate",
+            "GFGGame.StoryBonusData, Game.HotUpdate",
+            "GFGGame.StudioData, Game.HotUpdate",
+            "GFGGame.SuitFosterData, Game.HotUpdate",
+            "GFGGame.TravelData, Game.HotUpdate",
+            "GFGGame.DressUpLayerOperation, Game.HotUpdate",
+            "GFGGame.DressUpOption, Game.HotUpdate",
+            "GFGGame.DressUpObj, Game.HotUpdate",
+            "GFGGame.DressUpObjUI, Game.HotUpdate",
+            "GFGGame.DressUpOffsetInfo, Game.HotUpdate",
+            "GFGGame.DressUpRemoveOperation, Game.HotUpdate",
+            "GFGGame.DressUpUtil, Game.HotUpdate",
+            "GFGGame.MyDressUpHelper, Game.HotUpdate",
+            "GFGGame.SceneController, Game.HotUpdate",
+            "GFGGame.ETManager, Game.HotUpdate",
+            "GFGGame.EffectUI, Game.HotUpdate",
+            "GFGGame.EnumViewAnimationType, Game.HotUpdate",
+            "GFGGame.MessageType, Game.HotUpdate",
+            "GFGGame.FirstGetCardViewType, Game.HotUpdate",
+            "GFGGame.EffectUIType, Game.HotUpdate",
+            "GFGGame.EventAgent, Game.HotUpdate",
+            "GFGGame.GFGGLoader, Game.HotUpdate",
+            "GFGGame.GFGUIPackage, Game.HotUpdate",
+            "GFGGame.FontLoader, Game.HotUpdate",
+            "GFGGame.GameConfig, Game.HotUpdate",
+            "GFGGame.GameGlobal, Game.HotUpdate",
+            "GFGGame.HotUpdateDriver, Game.HotUpdate",
+            "GFGGame.OperationSystem, Game.HotUpdate",
+            "GFGGame.QDManager, Game.HotUpdate",
+            "GFGGame.ActivityAfuGiftSProxy, Game.HotUpdate",
+            "GFGGame.ActivityDay7SProxy, Game.HotUpdate",
+            "GFGGame.ActivityFYJYProxy, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoProxy, Game.HotUpdate",
+            "GFGGame.ActivityGlobalSProxy, Game.HotUpdate",
+            "GFGGame.NoticeTimeLimitLuckyBoxDropOutCount, Game.HotUpdate",
+            "GFGGame.NewPlayerOpenStatus, Game.HotUpdate",
+            "GFGGame.ActivityNPCRewardProtoHandler, Game.HotUpdate",
+            "GFGGame.ActivityTeaSProxy, Game.HotUpdate",
+            "GFGGame.NoticeArebaRankChange, Game.HotUpdate",
+            "GFGGame.NoticeArenaHistoryChange, Game.HotUpdate",
+            "GFGGame.NoticeArenaWeekClear, Game.HotUpdate",
+            "GFGGame.NoticeArenaSeasonEnd, Game.HotUpdate",
+            "GFGGame.ClothingSyntheticSProxy, Game.HotUpdate",
+            "GFGGame.NoticeSuitGetRewardChange, Game.HotUpdate",
+            "GFGGame.CustomSuitSProxy, Game.HotUpdate",
+            "GFGGame.NoticeFieldWorkChange, Game.HotUpdate",
+            "GFGGame.InstanceZonesSProxy, Game.HotUpdate",
+            "GFGGame.ItemExchangeSProxy, Game.HotUpdate",
+            "GFGGame.ItemProxy, Game.HotUpdate",
+            "GFGGame.NoticeOtherInfo, Game.HotUpdate",
+            "GFGGame.TeapartyStatus, Game.HotUpdate",
+            "GFGGame.RoleContainerInfos, Game.HotUpdate",
+            "GFGGame.LeagueScore, Game.HotUpdate",
+            "GFGGame.NoticeDisbandLeague, Game.HotUpdate",
+            "GFGGame.NoticeLeagueNumeric, Game.HotUpdate",
+            "GFGGame.NoticeApplyLeague, Game.HotUpdate",
+            "GFGGame.NoticeLeaveLeague, Game.HotUpdate",
+            "GFGGame.NoticeJoinLeague, Game.HotUpdate",
+            "GFGGame.NoticeLeaguePosChange, Game.HotUpdate",
+            "GFGGame.NoticeLeagueInfoChange, Game.HotUpdate",
+            "GFGGame.NoticeLeagueJoinQuitLog, Game.HotUpdate",
+            "GFGGame.NoticeLeagueContribution, Game.HotUpdate",
+            "GFGGame.NoticeJoinAnswer, Game.HotUpdate",
+            "GFGGame.NoticeQuitAnswer, Game.HotUpdate",
+            "GFGGame.NoticeAnswerNum, Game.HotUpdate",
+            "GFGGame.NoticeAnswerStart, Game.HotUpdate",
+            "GFGGame.NoticeAnswerPause, Game.HotUpdate",
+            "GFGGame.LuckyBoxSProxy, Game.HotUpdate",
+            "GFGGame.MainStorySProxy, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy, Game.HotUpdate",
+            "GFGGame.MiniGameProxy, Game.HotUpdate",
+            "GFGGame.NewYearRedEnvelopeSProxy, Game.HotUpdate",
+            "GFGGame.G2C_UpdateQueueHandler, Game.HotUpdate",
+            "GFGGame.RechargeSProxy, Game.HotUpdate",
+            "GFGGame.RoleLimitSProxy, Game.HotUpdate",
+            "GFGGame.SettingSProxy, Game.HotUpdate",
+            "GFGGame.ShareRecordSProxy, Game.HotUpdate",
+            "GFGGame.ShopSProxy, Game.HotUpdate",
+            "GFGGame.StorageSProxy, Game.HotUpdate",
+            "GFGGame.StudioSProxy, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy, Game.HotUpdate",
+            "GFGGame.MusicManager, Game.HotUpdate",
+            "GFGGame.SoundManager, Game.HotUpdate",
+            "GFGGame.VoiceManager, Game.HotUpdate",
+            "GFGGame.SqliteController, Game.HotUpdate",
+            "GFGGame.UGUIManager, Game.HotUpdate",
+            "GFGGame.UICGView, Game.HotUpdate",
+            "GFGGame.ArrayUtil`1, Game.HotUpdate",
+            "GFGGame.CommonUtil, Game.HotUpdate",
+            "GFGGame.ItemUtil, Game.HotUpdate",
+            "GFGGame.JsonUtil, Game.HotUpdate",
+            "GFGGame.NumberUtil, Game.HotUpdate",
+            "GFGGame.ResPathUtil, Game.HotUpdate",
+            "GFGGame.StoryUtil, Game.HotUpdate",
+            "GFGGame.StringUtil, Game.HotUpdate",
+            "GFGGame.SuitUtil, Game.HotUpdate",
+            "GFGGame.ActivitySyntheticView, Game.HotUpdate",
+            "GFGGame.ActivityTeaMainView, Game.HotUpdate",
+            "GFGGame.ActivityTeaVisitView, Game.HotUpdate",
+            "GFGGame.ActivityVisitNpcView, Game.HotUpdate",
+            "GFGGame.ReWardTipsView, Game.HotUpdate",
+            "GFGGame.ActivityAfuGiftView, Game.HotUpdate",
+            "GFGGame.ActivityDay7View, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoDataManager, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoEntryView, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoFailView, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoSuccessView, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoTargetView, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoTaskView, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoView, Game.HotUpdate",
+            "GFGGame.ActivityZLFGRewardTips, Game.HotUpdate",
+            "GFGGame.YuanXiaoItem, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoEntryView, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoSuccessView, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoView, Game.HotUpdate",
+            "GFGGame.ActivityMainTipsView, Game.HotUpdate",
+            "GFGGame.ActivityZCJBChapterView, Game.HotUpdate",
+            "GFGGame.ActivityZCJBRewardView, Game.HotUpdate",
+            "GFGGame.ActivityZCJBView, Game.HotUpdate",
+            "GFGGame.BlindBoxBuyTIpView, Game.HotUpdate",
+            "GFGGame.BlindBoxRewardView, Game.HotUpdate",
+            "GFGGame.BlindBoxRuleView, Game.HotUpdate",
+            "GFGGame.BlindBoxType, Game.HotUpdate",
+            "GFGGame.BlindBoxView, Game.HotUpdate",
+            "GFGGame.MonthlyCardTipsView, Game.HotUpdate",
+            "GFGGame.NewPlayersTipsView, Game.HotUpdate",
+            "GFGGame.PearRebateTipsView, Game.HotUpdate",
+            "GFGGame.SevenDailyTipsView, Game.HotUpdate",
+            "GFGGame.WeeklyGiftTipsView, Game.HotUpdate",
+            "GFGGame.ZCJBBuyTipsView, Game.HotUpdate",
+            "GFGGame.ZGTHgiftDCTipsView, Game.HotUpdate",
+            "GFGGame.ZGTHgiftTipsView, Game.HotUpdate",
+            "GFGGame.ActivityThemeLuckyBoxBonusView, Game.HotUpdate",
+            "GFGGame.ActivityThemeLuckyBoxTaskView, Game.HotUpdate",
+            "GFGGame.ActivityThemeLuckyBoxView, Game.HotUpdate",
+            "GFGGame.ActivityWanShiLiView, Game.HotUpdate",
+            "GFGGame.ArenaDanRewardView, Game.HotUpdate",
+            "GFGGame.ArenaDanUpView, Game.HotUpdate",
+            "GFGGame.ArenaDressInfoView, Game.HotUpdate",
+            "GFGGame.ArenaFightRecordView, Game.HotUpdate",
+            "GFGGame.ArenaLoadingView, Game.HotUpdate",
+            "GFGGame.ArenaRankUpView, Game.HotUpdate",
+            "GFGGame.ArenaRankView, Game.HotUpdate",
+            "GFGGame.ArenaResultQuickView, Game.HotUpdate",
+            "GFGGame.ArenaRoundResultView, Game.HotUpdate",
+            "GFGGame.ArenaView, Game.HotUpdate",
+            "GFGGame.BagExchangeView, Game.HotUpdate",
+            "GFGGame.BagView, Game.HotUpdate",
+            "GFGGame.GiftBoxSelectorView, Game.HotUpdate",
+            "GFGGame.BaseView, Game.HotUpdate",
+            "GFGGame.BaseWindow, Game.HotUpdate",
+            "GFGGame.CardDetailView, Game.HotUpdate",
+            "GFGGame.EnumCardFilterType, Game.HotUpdate",
+            "GFGGame.CardFilterView, Game.HotUpdate",
+            "GFGGame.CardFosterView, Game.HotUpdate",
+            "GFGGame.CardMoodView, Game.HotUpdate",
+            "GFGGame.CardShowView, Game.HotUpdate",
+            "GFGGame.CardSkillView, Game.HotUpdate",
+            "GFGGame.CardStarRewardView, Game.HotUpdate",
+            "GFGGame.CardStoryView, Game.HotUpdate",
+            "GFGGame.CardSyntheticView, Game.HotUpdate",
+            "GFGGame.CardUpLevelView, Game.HotUpdate",
+            "GFGGame.CardUpView, Game.HotUpdate",
+            "GFGGame.CardView, Game.HotUpdate",
+            "GFGGame.ClothingDecomposeRuleView, Game.HotUpdate",
+            "GFGGame.ClothingDecomposeView, Game.HotUpdate",
+            "GFGGame.ClothingFosterFinishView, Game.HotUpdate",
+            "GFGGame.ClothingFosterView, Game.HotUpdate",
+            "GFGGame.ClothingListView, Game.HotUpdate",
+            "GFGGame.ClothingPropertyShowView, Game.HotUpdate",
+            "GFGGame.ClothingRenewFinishView, Game.HotUpdate",
+            "GFGGame.ClothingRewardItemView, Game.HotUpdate",
+            "GFGGame.ClothingRewardView, Game.HotUpdate",
+            "GFGGame.ClothingView, Game.HotUpdate",
+            "GFGGame.ClothingShopView, Game.HotUpdate",
+            "GFGGame.GalleryShopTabType, Game.HotUpdate",
+            "GFGGame.GalleryShopView, Game.HotUpdate",
+            "GFGGame.ClothingSyntheticView, Game.HotUpdate",
+            "GFGGame.SuitSyntheticView, Game.HotUpdate",
+            "GFGGame.ClothingAnsweringView, Game.HotUpdate",
+            "GFGGame.ClothingSelectView, Game.HotUpdate",
+            "GFGGame.ClothingUpgradeView, Game.HotUpdate",
+            "GFGGame.AlertMiniGame, Game.HotUpdate",
+            "GFGGame.AlertMiniGameView, Game.HotUpdate",
+            "GFGGame.AlertSystem, Game.HotUpdate",
+            "GFGGame.AlertUI, Game.HotUpdate",
+            "GFGGame.AlertWindow, Game.HotUpdate",
+            "GFGGame.GetSuitItemController, Game.HotUpdate",
+            "GFGGame.GoodsItemTipsController, Game.HotUpdate",
+            "GFGGame.LuckyBoxController, Game.HotUpdate",
+            "GFGGame.RarityIconController, Game.HotUpdate",
+            "GFGGame.ValueBarController, Game.HotUpdate",
+            "GFGGame.ModalStatusView, Game.HotUpdate",
+            "GFGGame.ApproachView, Game.HotUpdate",
+            "GFGGame.GetBoxBonusStatusCall, Game.HotUpdate",
+            "GFGGame.GetBoxBonusCall, Game.HotUpdate",
+            "GFGGame.BonusBoxDetailView, Game.HotUpdate",
+            "GFGGame.BuyConfirmView, Game.HotUpdate",
+            "GFGGame.BuyCountView, Game.HotUpdate",
+            "GFGGame.BuyTipsView, Game.HotUpdate",
+            "GFGGame.DressUpItemTipsView, Game.HotUpdate",
+            "GFGGame.FunctionOpenView, Game.HotUpdate",
+            "GFGGame.GetBonusView, Game.HotUpdate",
+            "GFGGame.GetSuitItemVIew, Game.HotUpdate",
+            "GFGGame.GoodsItemTipsView, Game.HotUpdate",
+            "GFGGame.ItemView, Game.HotUpdate",
+            "GFGGame.RewardPreView, Game.HotUpdate",
+            "GFGGame.RewardView, Game.HotUpdate",
+            "GFGGame.RuleView, Game.HotUpdate",
+            "GFGGame.SuitItemView, Game.HotUpdate",
+            "GFGGame.CreateRoleView, Game.HotUpdate",
+            "GFGGame.NewRoleGetSuitView, Game.HotUpdate",
+            "GFGGame.TryDressUpView, Game.HotUpdate",
+            "GFGGame.DailySignView, Game.HotUpdate",
+            "GFGGame.DailySupplyView, Game.HotUpdate",
+            "GFGGame.DailyWelfareView, Game.HotUpdate",
+            "GFGGame.FirstChargeBonusView, Game.HotUpdate",
+            "GFGGame.GiftDetailView, Game.HotUpdate",
+            "GFGGame.LimitChargeView, Game.HotUpdate",
+            "GFGGame.NewLimitChargeView, Game.HotUpdate",
+            "GFGGame.ReDailySignTipsView, Game.HotUpdate",
+            "GFGGame.SevenDayLoginView, Game.HotUpdate",
+            "GFGGame.DeleteAccountView, Game.HotUpdate",
+            "GFGGame.ArenaDressUpFightView, Game.HotUpdate",
+            "GFGGame.EnumDressFilterType, Game.HotUpdate",
+            "GFGGame.DressFilterView, Game.HotUpdate",
+            "GFGGame.DressUpFightType, Game.HotUpdate",
+            "GFGGame.DressUpFightView, Game.HotUpdate",
+            "GFGGame.DressUpListType, Game.HotUpdate",
+            "GFGGame.DressUpView, Game.HotUpdate",
+            "GFGGame.PhotographSaveView, Game.HotUpdate",
+            "GFGGame.PhotographView, Game.HotUpdate",
+            "GFGGame.EnduringGiftBoxView, Game.HotUpdate",
+            "GFGGame.RushSaleGiftBoxView, Game.HotUpdate",
+            "GFGGame.SpecialOfferGiftBoxView, Game.HotUpdate",
+            "GFGGame.FieldFightEndView, Game.HotUpdate",
+            "GFGGame.FieldFightInfoView, Game.HotUpdate",
+            "GFGGame.FieldTaskView, Game.HotUpdate",
+            "GFGGame.FieldView, Game.HotUpdate",
+            "GFGGame.CardGuideView, Game.HotUpdate",
+            "GFGGame.ChapterItemGuideView, Game.HotUpdate",
+            "GFGGame.ChapterItemShowView, Game.HotUpdate",
+            "GFGGame.DressUpGuideView, Game.HotUpdate",
+            "GFGGame.FieldGuideView, Game.HotUpdate",
+            "GFGGame.SuitGuideDetailView, Game.HotUpdate",
+            "GFGGame.SuitGuideListView, Game.HotUpdate",
+            "GFGGame.SuitGuideView, Game.HotUpdate",
+            "GFGGame.SuitPartsDetailView, Game.HotUpdate",
+            "GFGGame.SuitShowView, Game.HotUpdate",
+            "GFGGame.TravelGuideView, Game.HotUpdate",
+            "GFGGame.TravelShowView, Game.HotUpdate",
+            "GFGGame.FieldWorkChooseCardView, Game.HotUpdate",
+            "GFGGame.FieldWorkDressFightView, Game.HotUpdate",
+            "GFGGame.FieldWorkFightResultView, Game.HotUpdate",
+            "GFGGame.FieldWorkLevelInfoView, Game.HotUpdate",
+            "GFGGame.FieldWorkLevelView, Game.HotUpdate",
+            "GFGGame.FieldWorkRoundResultView, Game.HotUpdate",
+            "GFGGame.FieldWorkRoundTipsView, Game.HotUpdate",
+            "GFGGame.FriendAddView, Game.HotUpdate",
+            "GFGGame.FriendView, Game.HotUpdate",
+            "GFGGame.GuideView, Game.HotUpdate",
+            "GFGGame.InstanceZonesView, Game.HotUpdate",
+            "GFGGame.LeagueAnswerRankView, Game.HotUpdate",
+            "GFGGame.LeagueAnswerRewardView, Game.HotUpdate",
+            "GFGGame.LeagueAnswerView, Game.HotUpdate",
+            "GFGGame.LeagueAnsweringView, Game.HotUpdate",
+            "GFGGame.LeagueApplyView, Game.HotUpdate",
+            "GFGGame.LeagueChangeNameView, Game.HotUpdate",
+            "GFGGame.LeagueChangeNoticeView, Game.HotUpdate",
+            "GFGGame.LeagueChatView, Game.HotUpdate",
+            "GFGGame.LeagueConstructView, Game.HotUpdate",
+            "GFGGame.LeagueCreatView, Game.HotUpdate",
+            "GFGGame.LeagueGiftView, Game.HotUpdate",
+            "GFGGame.LeagueJoinView, Game.HotUpdate",
+            "GFGGame.LeagueMemberAppointView, Game.HotUpdate",
+            "GFGGame.LeagueMemberLogView, Game.HotUpdate",
+            "GFGGame.LeagueMemberView, Game.HotUpdate",
+            "GFGGame.LeaguePrayView, Game.HotUpdate",
+            "GFGGame.LeagueSkillUpView, Game.HotUpdate",
+            "GFGGame.LeagueSkillView, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyOverView, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyRewardView, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyShowView, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyView, Game.HotUpdate",
+            "GFGGame.LeagueView, Game.HotUpdate",
+            "GFGGame.LoadingView, Game.HotUpdate",
+            "GFGGame.LogView, Game.HotUpdate",
+            "GFGGame.LoginInputView, Game.HotUpdate",
+            "GFGGame.LoginView, Game.HotUpdate",
+            "GFGGame.RegisterView, Game.HotUpdate",
+            "GFGGame.ServerListView, Game.HotUpdate",
+            "GFGGame.SystemNoticeView, Game.HotUpdate",
+            "GFGGame.LuckyBoxActivityView, Game.HotUpdate",
+            "GFGGame.LuckyBoxBonusShowView, Game.HotUpdate",
+            "GFGGame.LuckyBoxNewCardView, Game.HotUpdate",
+            "GFGGame.LuckyBoxNewDressView, Game.HotUpdate",
+            "GFGGame.LuckyBoxPreShowView, Game.HotUpdate",
+            "GFGGame.LuckyBoxStarView, Game.HotUpdate",
+            "GFGGame.LuckyBoxVideoView, Game.HotUpdate",
+            "GFGGame.LuckyBoxView, Game.HotUpdate",
+            "GFGGame.LuckyBoxWishView, Game.HotUpdate",
+            "GFGGame.MailContentView, Game.HotUpdate",
+            "GFGGame.MailView, Game.HotUpdate",
+            "GFGGame.ActivityStoryChapterView, Game.HotUpdate",
+            "GFGGame.ArenaFightResultView, Game.HotUpdate",
+            "GFGGame.InstanceZonesController, Game.HotUpdate",
+            "GFGGame.StoryCardChoose, Game.HotUpdate",
+            "GFGGame.StoryChapterListView, Game.HotUpdate",
+            "GFGGame.StoryChapterView, Game.HotUpdate",
+            "GFGGame.StoryController, Game.HotUpdate",
+            "GFGGame.OnCompleteStoryDialogCall, Game.HotUpdate",
+            "GFGGame.StoryDialogView, Game.HotUpdate",
+            "GFGGame.StoryFightFailView, Game.HotUpdate",
+            "GFGGame.StoryFightQuicklyView, Game.HotUpdate",
+            "GFGGame.StoryFightSingleScoreView, Game.HotUpdate",
+            "GFGGame.StoryFightSingleView, Game.HotUpdate",
+            "GFGGame.StoryFightTargetScoreView, Game.HotUpdate",
+            "GFGGame.StoryFightTargetView, Game.HotUpdate",
+            "GFGGame.StoryLevelInfoView, Game.HotUpdate",
+            "GFGGame.StoryLookBackView, Game.HotUpdate",
+            "GFGGame.StorySkillView, Game.HotUpdate",
+            "GFGGame.StroyFightResultView, Game.HotUpdate",
+            "GFGGame.TypingFadeEffect, Game.HotUpdate",
+            "GFGGame.TypingFadeEffectPro, Game.HotUpdate",
+            "GFGGame.MainUIView, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionDetailView, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionGatheringView, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionLookView, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionRankView, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionRewardView, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionRuleTipsView, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSelectView, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionUpLoadView, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionWorksListView, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionWorksView, Game.HotUpdate",
+            "GFGGame.ChallengeRewardView, Game.HotUpdate",
+            "GFGGame.FlipGameStartView, Game.HotUpdate",
+            "GFGGame.FlipGameView, Game.HotUpdate",
+            "GFGGame.GameStartView, Game.HotUpdate",
+            "GFGGame.MergeGameMaterialTipView, Game.HotUpdate",
+            "GFGGame.MergeGameView, Game.HotUpdate",
+            "GFGGame.ResultTipsView, Game.HotUpdate",
+            "GFGGame.SyntheticRoutetipView, Game.HotUpdate",
+            "GFGGame.TZFEGameCheckView, Game.HotUpdate",
+            "GFGGame.TZFEGameView, Game.HotUpdate",
+            "GFGGame.NewYearLoginView, Game.HotUpdate",
+            "GFGGame.NewYearRedEnvelopeView, Game.HotUpdate",
+            "GFGGame.NoticeActivityShowView, Game.HotUpdate",
+            "GFGGame.NoticeSystemShowView, Game.HotUpdate",
+            "GFGGame.NoticeView, Game.HotUpdate",
+            "GFGGame.OpenServerActivityView, Game.HotUpdate",
+            "GFGGame.OpenServerFightView, Game.HotUpdate",
+            "GFGGame.OpenServerStoryView, Game.HotUpdate",
+            "GFGGame.OpenServerSuitAdditionView, Game.HotUpdate",
+            "GFGGame.PoemGalleryPreviewView, Game.HotUpdate",
+            "GFGGame.PoemGalleryRewardGetView, Game.HotUpdate",
+            "GFGGame.PoemGalleryRewardView, Game.HotUpdate",
+            "GFGGame.PoemGalleryRuleView, Game.HotUpdate",
+            "GFGGame.TabType, Game.HotUpdate",
+            "GFGGame.RecommendType, Game.HotUpdate",
+            "GFGGame.FavoritesType, Game.HotUpdate",
+            "GFGGame.PoemGalleryView, Game.HotUpdate",
+            "GFGGame.PoemPhotoPreView, Game.HotUpdate",
+            "GFGGame.PoemPhotoSaveView, Game.HotUpdate",
+            "GFGGame.PoemPhotoShareView, Game.HotUpdate",
+            "GFGGame.SavePhotoList, Game.HotUpdate",
+            "GFGGame.PoemPhotoView, Game.HotUpdate",
+            "GFGGame.PoemView, Game.HotUpdate",
+            "GFGGame.ExchangeGoodsView, Game.HotUpdate",
+            "GFGGame.BadgeChooseView, Game.HotUpdate",
+            "GFGGame.ChangeHeadView, Game.HotUpdate",
+            "GFGGame.ChangeNameView, Game.HotUpdate",
+            "GFGGame.ChangeThemeView, Game.HotUpdate",
+            "GFGGame.GMPanelView, Game.HotUpdate",
+            "GFGGame.InputGiftCodeView, Game.HotUpdate",
+            "GFGGame.MainBgChooseTipsView, Game.HotUpdate",
+            "GFGGame.MainBgChooseView, Game.HotUpdate",
+            "GFGGame.OtherRoleInfoView, Game.HotUpdate",
+            "GFGGame.PersonalPhotoView, Game.HotUpdate",
+            "GFGGame.PersonalSkillView, Game.HotUpdate",
+            "GFGGame.PhoneBindingView, Game.HotUpdate",
+            "GFGGame.RoleInfoView, Game.HotUpdate",
+            "GFGGame.SettingView, Game.HotUpdate",
+            "GFGGame.QieHuanView, Game.HotUpdate",
+            "GFGGame.RoleInfoRegisterView, Game.HotUpdate",
+            "GFGGame.RoleLvUpView, Game.HotUpdate",
+            "GFGGame.ShareView, Game.HotUpdate",
+            "GFGGame.BrocadeWeavTaskView, Game.HotUpdate",
+            "GFGGame.GiftBagBuyView, Game.HotUpdate",
+            "GFGGame.ItemExchangeView, Game.HotUpdate",
+            "GFGGame.StoreArenaView, Game.HotUpdate",
+            "GFGGame.StoreBlackCardRewardView, Game.HotUpdate",
+            "GFGGame.StoreBrocadeWeavView, Game.HotUpdate",
+            "GFGGame.StoreChargeAddUpView, Game.HotUpdate",
+            "GFGGame.StoreChargeView, Game.HotUpdate",
+            "GFGGame.StoreExchangeView, Game.HotUpdate",
+            "GFGGame.StoreGiftBagAddRebateView, Game.HotUpdate",
+            "GFGGame.StoreGiftBagView, Game.HotUpdate",
+            "GFGGame.StoreGrowthFundView, Game.HotUpdate",
+            "GFGGame.StoreMonthView, Game.HotUpdate",
+            "GFGGame.StorePayPropView, Game.HotUpdate",
+            "GFGGame.StoreSummerGiftView, Game.HotUpdate",
+            "GFGGame.StoreView, Game.HotUpdate",
+            "GFGGame.StoreZGDCView, Game.HotUpdate",
+            "GFGGame.WeekGiftView, Game.HotUpdate",
+            "GFGGame.StudioActivityView, Game.HotUpdate",
+            "GFGGame.StudioBaseView, Game.HotUpdate",
+            "GFGGame.StudioBuyNumView, Game.HotUpdate",
+            "GFGGame.StudioFabricView, Game.HotUpdate",
+            "GFGGame.StudioFilingNpcView, Game.HotUpdate",
+            "GFGGame.StudioFilingRewardView, Game.HotUpdate",
+            "GFGGame.StudioFilingView, Game.HotUpdate",
+            "GFGGame.StudioMetalView, Game.HotUpdate",
+            "GFGGame.StudioPorcelainView, Game.HotUpdate",
+            "GFGGame.StudioPropertyView, Game.HotUpdate",
+            "GFGGame.StudioView, Game.HotUpdate",
+            "GFGGame.BattlePassTaskView, Game.HotUpdate",
+            "GFGGame.BuyBattlePassLevelView, Game.HotUpdate",
+            "GFGGame.CombTaskController, Game.HotUpdate",
+            "GFGGame.OpenBattlePassView, Game.HotUpdate",
+            "GFGGame.TaskAchieveDetailView, Game.HotUpdate",
+            "GFGGame.TaskAchieveView, Game.HotUpdate",
+            "GFGGame.TaskView, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelInfoView, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelRankView, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelRewardView, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelView, Game.HotUpdate",
+            "GFGGame.TimeTracingShowView, Game.HotUpdate",
+            "GFGGame.TimeTracingSuitAddView, Game.HotUpdate",
+            "GFGGame.TimeTracingSuitRankView, Game.HotUpdate",
+            "GFGGame.TimeTracingSwitchView, Game.HotUpdate",
+            "GFGGame.TravelDressupView, Game.HotUpdate",
+            "GFGGame.TravelRewardView, Game.HotUpdate",
+            "GFGGame.TravelTimeDetailView, Game.HotUpdate",
+            "GFGGame.TravelView, Game.HotUpdate",
+            "GFGGame.TurnSpecialTipsView, Game.HotUpdate",
+            "GFGGame.TurnTableTipsRewardView, Game.HotUpdate",
+            "GFGGame.TurnTipsController, Game.HotUpdate",
+            "GFGGame.TurnTableTipsView, Game.HotUpdate",
+            "GFGGame.TurnTableView, Game.HotUpdate",
+            "GFGGame.UIView, Game.HotUpdate",
+            "GFGGame.ViewAnimationFactory, Game.HotUpdate",
+            "GFGGame.ViewGlobal, Game.HotUpdate",
+            "GFGGame.ViewStructure, Game.HotUpdate",
+            "GFGGame.ViewManager, Game.HotUpdate",
+            "GFGGame.XiuFangView, Game.HotUpdate",
+            "<PrivateImplementationDetails>, Game.HotUpdate",
+            "ET.ConfigComponentSystem+<>c__DisplayClass2_0, Game.HotUpdate",
+            "ET.ConfigComponentSystem+<>c__DisplayClass2_1, Game.HotUpdate",
+            "ET.ConfigComponentSystem+<LoadAsync>d__2, Game.HotUpdate",
+            "ET.NetThreadComponentSystem+<>c__DisplayClass1_0, Game.HotUpdate",
+            "ET.NetThreadComponentSystem+<>c__DisplayClass2_0, Game.HotUpdate",
+            "ET.NetWSComponentAwakeSystem+<>c__DisplayClass0_0, Game.HotUpdate",
+            "ET.NetWSComponentAwake1System+<>c__DisplayClass0_0, Game.HotUpdate",
+            "ET.NumericChangeEvent_NotifyWatcher+<Run>d__0, Game.HotUpdate",
+            "ET.PingComponentAwakeSystem+<PingAsync>d__1, Game.HotUpdate",
+            "ET.ETCancelationTokenHelper+<CancelAfter>d__0, Game.HotUpdate",
+            "ET.AEvent`1+<Handle>d__2, Game.HotUpdate",
+            "ET.EventSystem+TypeSystems, Game.HotUpdate",
+            "ET.EventSystem+<PublishAsync>d__48`1, Game.HotUpdate",
+            "ET.EventSystem+<>c, Game.HotUpdate",
+            "ET.ObjectWait+ResultCallback`1, Game.HotUpdate",
+            "ET.ObjectWait+<Wait>d__3`1, Game.HotUpdate",
+            "ET.ObjectWait+<>c__DisplayClass4_0`1, Game.HotUpdate",
+            "ET.ObjectWait+<Wait>d__4`1, Game.HotUpdate",
+            "ET.TimerComponent+<>c__DisplayClass16_0, Game.HotUpdate",
+            "ET.TimerComponent+<WaitTillAsync>d__16, Game.HotUpdate",
+            "ET.TimerComponent+<WaitFrameAsync>d__17, Game.HotUpdate",
+            "ET.TimerComponent+<>c__DisplayClass18_0, Game.HotUpdate",
+            "ET.TimerComponent+<WaitAsync>d__18, Game.HotUpdate",
+            "ET.CoroutineLockComponentSystem+<Wait>d__2, Game.HotUpdate",
+            "ET.Session+RpcInfo, Game.HotUpdate",
+            "ET.Session+<>c__DisplayClass26_0, Game.HotUpdate",
+            "ET.Session+<Call>d__26, Game.HotUpdate",
+            "ET.Session+<Call>d__27, Game.HotUpdate",
+            "ET.UnityWebRequestAsync+<DownloadAsync>d__10, Game.HotUpdate",
+            "ET.UnityWebRequestRenewalAsync+RequestType, Game.HotUpdate",
+            "ET.UnityWebRequestRenewalAsync+<DownloadAsync>d__21, Game.HotUpdate",
+            "ET.NetworkHelper+<>c, Game.HotUpdate",
+            "ET.NetworkHelper+<GetOutIpv4>d__3, Game.HotUpdate",
+            "ET.NetworkHelper+<RequestIpAddress>d__4, Game.HotUpdate",
+            "ET.ProcessHelper+<KillProcess>d__1, Game.HotUpdate",
+            "ET.ProcessHelper+<WaitExitAsync>d__2, Game.HotUpdate",
+            "ET.ProcessHelper+<>c__DisplayClass3_0, Game.HotUpdate",
+            "ET.ProcessHelper+<WaitForExitAsync>d__3, Game.HotUpdate",
+            "ET.ThreadSynchronizationContext+<>c__DisplayClass8_0, Game.HotUpdate",
+            "ET.TChannel+<>c__DisplayClass10_0, Game.HotUpdate",
+            "ET.TService+<>c__DisplayClass6_0, Game.HotUpdate",
+            "ET.WChannel+<>c__DisplayClass11_0, Game.HotUpdate",
+            "ET.WChannel+<ConnectAsync>d__13, Game.HotUpdate",
+            "ET.WChannel+<StartSend>d__15, Game.HotUpdate",
+            "ET.WChannel+<StartRecv>d__17, Game.HotUpdate",
+            "ET.WService+<StartAccept>d__12, Game.HotUpdate",
+            "ET.ETTask+<InnerCoroutine>d__10, Game.HotUpdate",
+            "ET.ETTask`1+<InnerCoroutine>d__8, Game.HotUpdate",
+            "ET.ETTaskHelper+CoroutineBlocker, Game.HotUpdate",
+            "ET.ETTaskHelper+<>c__DisplayClass1_0`1, Game.HotUpdate",
+            "ET.ETTaskHelper+<WaitAny>d__1`1, Game.HotUpdate",
+            "ET.ETTaskHelper+<>c__DisplayClass2_0, Game.HotUpdate",
+            "ET.ETTaskHelper+<WaitAny>d__2, Game.HotUpdate",
+            "ET.ETTaskHelper+<>c__DisplayClass3_0`1, Game.HotUpdate",
+            "ET.ETTaskHelper+<WaitAll>d__3`1, Game.HotUpdate",
+            "ET.ETTaskHelper+<>c__DisplayClass4_0`1, Game.HotUpdate",
+            "ET.ETTaskHelper+<WaitAll>d__4`1, Game.HotUpdate",
+            "ET.ETTaskHelper+<>c__DisplayClass5_0, Game.HotUpdate",
+            "ET.ETTaskHelper+<WaitAll>d__5, Game.HotUpdate",
+            "ET.ETTaskHelper+<>c__DisplayClass6_0, Game.HotUpdate",
+            "ET.ETTaskHelper+<WaitAll>d__6, Game.HotUpdate",
+            "ET.A2C_DisconnectHandler+<>c, Game.HotUpdate",
+            "ET.A2C_DisconnectHandler+<Run>d__0, Game.HotUpdate",
+            "ET.DisConnectedCompnentDestroy+<>c, Game.HotUpdate",
+            "ET.M2C_NoticeUnitItemAttributeHandler+<Run>d__0, Game.HotUpdate",
+            "ET.M2C_NoticeUnitItemHandler+<Run>d__0, Game.HotUpdate",
+            "ET.LoginHelper+<LoginTest>d__0, Game.HotUpdate",
+            "ET.LoginHelper+<Login>d__1, Game.HotUpdate",
+            "ET.LoginHelper+<Register>d__3, Game.HotUpdate",
+            "ET.LoginHelper+<GetServerInfos>d__4, Game.HotUpdate",
+            "ET.LoginHelper+<GetRoles>d__5, Game.HotUpdate",
+            "ET.LoginHelper+<CreateRole>d__6, Game.HotUpdate",
+            "ET.LoginHelper+<>c__DisplayClass7_0, Game.HotUpdate",
+            "ET.LoginHelper+<DeleteRole>d__7, Game.HotUpdate",
+            "ET.LoginHelper+<GetRealmKey>d__8, Game.HotUpdate",
+            "ET.LoginHelper+<EnterGame>d__9, Game.HotUpdate",
+            "ET.LoginHelper+<ReqGetLatestNotice>d__10, Game.HotUpdate",
+            "ET.LoginHelper+<ReqRandomRoleName>d__11, Game.HotUpdate",
+            "ET.LoginHelper+<RegisterRoleInfo>d__12, Game.HotUpdate",
+            "ET.NumericHelper+<TestUpdateNumeric>d__0, Game.HotUpdate",
+            "ET.NumericHelper+<RequestAddAttributePoint>d__1, Game.HotUpdate",
+            "ET.CurrentScenesComponentSystem+CurrentScenesComponentAwakeSystem, Game.HotUpdate",
+            "ET.M2C_StartSceneChangeHandler+<Run>d__0, Game.HotUpdate",
+            "ET.M2C_CreateMyUnitHandler+<Run>d__0, Game.HotUpdate",
+            "ET.ActivityLoginInfoProtoHandler+<Run>d__0, Game.HotUpdate",
+            "ET.ActivitySummerGiftProtoHandler+<Run>d__0, Game.HotUpdate",
+            "ET.S2C_NoticeActivityOpenHandler+<Run>d__0, Game.HotUpdate",
+            "ET.S2C_NoticeActivityCloseHandler+<Run>d__0, Game.HotUpdate",
+            "ET.S2C_SyncActivityCountValueHandler+<Run>d__0, Game.HotUpdate",
+            "ET.M2C_SyncBattlePassHandler+<Run>d__0, Game.HotUpdate",
+            "ET.M2C_SyncBattlePassLevelHandler+<Run>d__0, Game.HotUpdate",
+            "ET.M2C_SyncBattlePassSeasonIdHandler+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeGetNewCard+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeNoticeChatMsg+<Run>d__0, Game.HotUpdate",
+            "ET.CollegeSProxy+<ReqCollectUpgradeInfo>d__0, Game.HotUpdate",
+            "ET.CollegeSProxy+<ReqCollectUpgrade>d__1, Game.HotUpdate",
+            "ET.M2C_NoticeUnitNumericHandler+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeLivenessBoxChange+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeFriendDailyReset+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeRoleInfoChanged+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeApplyForFriend+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeAddFriends+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeDeleteFriend+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeTakeGiftStates+<Run>d__0, Game.HotUpdate",
+            "ET.GMSProxy+<SendGMToServer>d__0, Game.HotUpdate",
+            "ET.S2C_ItemCollectHandler+<Run>d__0, Game.HotUpdate",
+            "ET.S2C_NoticeLuckyBoxFreeTimeHandler+<Run>d__0, Game.HotUpdate",
+            "ET.S2C_PushWishingPoolInfoHandler+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeMailCountChanged+<Run>d__0, Game.HotUpdate",
+            "ET.M2C_NoticeMainStoryBoxBonusStateHandler+<Run>d__0, Game.HotUpdate",
+            "ET.M2C_NoticeMatchingStateHandler+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeRedPacketDouble+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeSystemNoticeChanged+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeSystemNoticeRemove+<Run>d__0, Game.HotUpdate",
+            "ET.M2C_NoticeUnitLimitPlayTimesHandler+<Run>d__0, Game.HotUpdate",
+            "ET.S2C_SyncRechargeItemGetHandler+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeMonthCardOpen+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeAddSkill+<Run>d__0, Game.HotUpdate",
+            "ET.NoticeFilingScoreBonusChanged+<Run>d__0, Game.HotUpdate",
+            "ET.SuitFosterProxy+<SendGetSuitInfos>d__0, Game.HotUpdate",
+            "ET.SuitFosterProxy+<SendMaintainSuit>d__1, Game.HotUpdate",
+            "ET.SuitFosterProxy+<SendGetMaintainSuitBonus>d__2, Game.HotUpdate",
+            "ET.SuitFosterProxy+<SendMakeNewSuit>d__3, Game.HotUpdate",
+            "ET.M2C_TaskCloseHandler+<Run>d__0, Game.HotUpdate",
+            "ET.M2C_TaskResetHandler+M2C_AchievementTaskTypeChangeHandler, Game.HotUpdate",
+            "ET.M2C_TaskResetHandler+<>c__DisplayClass0_0, Game.HotUpdate",
+            "ET.M2C_TaskResetHandler+<Run>d__0, Game.HotUpdate",
+            "Hutool.DateUtil+<>c, Game.HotUpdate",
+            "Hutool.MathUtil+<>c, Game.HotUpdate",
+            "GFGGame.CollegeBoostCfgArray+<>c__DisplayClass11_0, Game.HotUpdate",
+            "GFGGame.CollegeBoostCfgArray+<>c__DisplayClass12_0, Game.HotUpdate",
+            "GFGGame.CollegeBoostCfgArray+<>c, Game.HotUpdate",
+            "GFGGame.CollegeBoostCfgArray+<>c__DisplayClass13_0, Game.HotUpdate",
+            "GFGGame.ItemCfgArray+<GetCfgsByitemTypeAndsubTypeAsync>d__16, Game.HotUpdate",
+            "GFGGame.TaskCfgArray+<>c__DisplayClass13_0, Game.HotUpdate",
+            "GFGGame.TaskCfgArray+<>c, Game.HotUpdate",
+            "GFGGame.ConfigUtil+HandleCfgInGroupAction`1, Game.HotUpdate",
+            "GFGGame.ConfigUtil+<GetAllCfgsAsync>d__11`1, Game.HotUpdate",
+            "GFGGame.DressUpConfigUtil+<GetCfgsAsync>d__4`1, Game.HotUpdate",
+            "GFGGame.ListUtil+NavigateType, Game.HotUpdate",
+            "GFGGame.ListUtil+<>c__0`1, Game.HotUpdate",
+            "GFGGame.RandomUtil+<>c__5`1, Game.HotUpdate",
+            "GFGGame.RandomUtil+<>c__6`1, Game.HotUpdate",
+            "GFGGame.RandomUtil+<>c__8`2, Game.HotUpdate",
+            "GFGGame.TimeUtil+<>c__DisplayClass52_0, Game.HotUpdate",
+            "GFGGame.TimeUtil+<>c__DisplayClass52_1, Game.HotUpdate",
+            "GFGGame.TimeUtil+<>c__DisplayClass54_0, Game.HotUpdate",
+            "GFGGame.TimeUtil+<>c__DisplayClass54_1, Game.HotUpdate",
+            "GFGGame.Selection`2+SelectionModel, Game.HotUpdate",
+            "GFGGame.Selection`2+<>c, Game.HotUpdate",
+            "GFGGame.SelectionCache`2+<>c, Game.HotUpdate",
+            "GFGGame.LoadManager+<CheckResExsitedOrDownload>d__2, Game.HotUpdate",
+            "GFGGame.SpriteHelper+<AddSpriteTo>d__0, Game.HotUpdate",
+            "GFGGame.AntiAddictionController+<>c, Game.HotUpdate",
+            "GFGGame.ErrorCodeController+<>c, Game.HotUpdate",
+            "GFGGame.GMController+<GetAllDressUpItem>d__0, Game.HotUpdate",
+            "GFGGame.GMController+<GetAllCardItem>d__1, Game.HotUpdate",
+            "GFGGame.GMController+<SendGMCommand>d__2, Game.HotUpdate",
+            "GFGGame.GameController+<Start>d__0, Game.HotUpdate",
+            "GFGGame.GameController+<>c, Game.HotUpdate",
+            "GFGGame.GameController+<PreEnterGameAsync>d__5, Game.HotUpdate",
+            "GFGGame.GameController+<AfterShowMainUI>d__7, Game.HotUpdate",
+            "GFGGame.GameController+<OnReconnected>d__9, Game.HotUpdate",
+            "GFGGame.GameController+<>c__DisplayClass11_0, Game.HotUpdate",
+            "GFGGame.GameController+<CheckVersion>d__13, Game.HotUpdate",
+            "GFGGame.GuideController+<TryCompleteGuide>d__7, Game.HotUpdate",
+            "GFGGame.GuideController+<TryCompleteGuide>d__8, Game.HotUpdate",
+            "GFGGame.LoginController+<LoginTest>d__3, Game.HotUpdate",
+            "GFGGame.LoginController+<Login>d__4, Game.HotUpdate",
+            "GFGGame.LoginController+<OnLoginSuccess>d__5, Game.HotUpdate",
+            "GFGGame.LoginController+<>c__DisplayClass6_0, Game.HotUpdate",
+            "GFGGame.LoginController+<ReqNoticeInfo>d__7, Game.HotUpdate",
+            "GFGGame.LoginController+<Register>d__8, Game.HotUpdate",
+            "GFGGame.LoginController+<>c, Game.HotUpdate",
+            "GFGGame.LoginController+<GetServerInfos>d__9, Game.HotUpdate",
+            "GFGGame.LoginController+<GetRoles>d__10, Game.HotUpdate",
+            "GFGGame.LoginController+<ReqRandomRoleName>d__11, Game.HotUpdate",
+            "GFGGame.LoginController+<ReqCreateRole>d__12, Game.HotUpdate",
+            "GFGGame.LoginController+<ReqEnterGame>d__13, Game.HotUpdate",
+            "GFGGame.LoginController+<ReqReConnectGate>d__14, Game.HotUpdate",
+            "GFGGame.LoginController+<RegisterRoleInfo>d__15, Game.HotUpdate",
+            "GFGGame.PromptController+<>c__DisplayClass3_0, Game.HotUpdate",
+            "GFGGame.ActivityDataManager+<>c__DisplayClass52_0, Game.HotUpdate",
+            "GFGGame.ActivityGlobalDataManager+<>c, Game.HotUpdate",
+            "GFGGame.ArenaDataManager+<>c__DisplayClass42_0, Game.HotUpdate",
+            "GFGGame.ArenaDataManager+<>c__DisplayClass45_0, Game.HotUpdate",
+            "GFGGame.ArenaDataManager+<ReqArenaInfo>d__57, Game.HotUpdate",
+            "GFGGame.BagDataManager+<>c, Game.HotUpdate",
+            "GFGGame.BattlePassTaskDataManager+<>c, Game.HotUpdate",
+            "GFGGame.CardDataManager+<>c, Game.HotUpdate",
+            "GFGGame.ChatDataManager+<>c, Game.HotUpdate",
+            "GFGGame.DressUpMenuItemDataManager+<>c__DisplayClass19_0, Game.HotUpdate",
+            "GFGGame.DressUpMenuItemDataManager+<>c, Game.HotUpdate",
+            "GFGGame.DressUpMenuItemDataManager+<>c__DisplayClass21_0, Game.HotUpdate",
+            "GFGGame.DressUpMenuItemDataManager+<GetAllDressUpGuideIdListBySubTypeAsync>d__51, Game.HotUpdate",
+            "GFGGame.FightDataManager+<>c__DisplayClass28_0, Game.HotUpdate",
+            "GFGGame.FunctionOpenDataManager+<CheckHasSpecialFunOpen>d__4, Game.HotUpdate",
+            "GFGGame.GuideDataManager+<TryCompleteGuide>d__6, Game.HotUpdate",
+            "GFGGame.ItemDataManager+MemberGetDelegate, Game.HotUpdate",
+            "GFGGame.ItemDataManager+<>c, Game.HotUpdate",
+            "GFGGame.LimitedTimeGiftBoxDataManager+<>c, Game.HotUpdate",
+            "GFGGame.LimitedTimeGiftBoxDataManager+<>c__DisplayClass17_0, Game.HotUpdate",
+            "GFGGame.LuckyBoxDataManager+<>c__DisplayClass46_0, Game.HotUpdate",
+            "GFGGame.LuckyBoxDataManager+<OnBuyItem>d__47, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionDataManager+<AddSceneItem>d__39, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionDataManager+<AddSceneItemOne>d__40, Game.HotUpdate",
+            "GFGGame.MatchingPhotoHelper+<PushToHWCloud>d__0, Game.HotUpdate",
+            "GFGGame.MatchingPhotoHelper+<DownloadExt>d__1, Game.HotUpdate",
+            "GFGGame.MatchingPhotoHelper+<Download>d__2, Game.HotUpdate",
+            "GFGGame.MatchingPhotoHelper+<Download>d__3, Game.HotUpdate",
+            "GFGGame.MatchingPhotoHelper+<Download>d__4, Game.HotUpdate",
+            "GFGGame.MatchingPhotoHelper+<DownloadPictureExt>d__5, Game.HotUpdate",
+            "GFGGame.MatchingPhotoHelper+<DownloadPicture>d__6, Game.HotUpdate",
+            "GFGGame.MatchingPhotoHelper+<DownloadPicture>d__7, Game.HotUpdate",
+            "GFGGame.MatchingPhotoHelper+<DownloadMyself>d__8, Game.HotUpdate",
+            "GFGGame.MatchingPhotoHelper+<DownloadMyPicture>d__9, Game.HotUpdate",
+            "GFGGame.NoticeDataManager+<>c, Game.HotUpdate",
+            "GFGGame.PhotographSceneManager+<AddBgItem>d__1, Game.HotUpdate",
+            "GFGGame.PhotographSceneManager+<AddSceneItem>d__5, Game.HotUpdate",
+            "GFGGame.PhotographSceneManager+<AddItemToScene>d__6, Game.HotUpdate",
+            "GFGGame.PhotographSceneManager+<>c__DisplayClass7_0, Game.HotUpdate",
+            "GFGGame.PhotographSceneManager+<SetRoleBoxCollider>d__8, Game.HotUpdate",
+            "GFGGame.PhotographSceneManager+<>c, Game.HotUpdate",
+            "GFGGame.PhotographUtil+<SetGameObjectCenter>d__1, Game.HotUpdate",
+            "GFGGame.PictureDataManager+<GetPicNTexture>d__3, Game.HotUpdate",
+            "GFGGame.PictureDataManager+<DownloadOrLoadPic>d__4, Game.HotUpdate",
+            "GFGGame.PictureDataManager+<SavaPicToLoad>d__5, Game.HotUpdate",
+            "GFGGame.PictureDataManager+<DownloadPictureAsync>d__6, Game.HotUpdate",
+            "GFGGame.PictureDataManager+<>c, Game.HotUpdate",
+            "GFGGame.RedDotDataManager+<GetCardTimers>d__37, Game.HotUpdate",
+            "GFGGame.RedDotDataManager+<>c, Game.HotUpdate",
+            "GFGGame.ShareDataManager+<CaptureCameraImage>d__5, Game.HotUpdate",
+            "GFGGame.ShopDataManager+<>c__DisplayClass7_0, Game.HotUpdate",
+            "GFGGame.ShopViewManager+<>c, Game.HotUpdate",
+            "GFGGame.SuitFosterDataManager+<>c__DisplayClass12_0, Game.HotUpdate",
+            "GFGGame.TaskDataManager+<>c, Game.HotUpdate",
+            "GFGGame.DressUpLayerOperation+EAction, Game.HotUpdate",
+            "GFGGame.DressUpOperationBase+EDressUpSteps, Game.HotUpdate",
+            "GFGGame.SceneController+<>c__DisplayClass1_0, Game.HotUpdate",
+            "GFGGame.SceneController+<>c__DisplayClass1_1, Game.HotUpdate",
+            "GFGGame.SceneController+<>c__DisplayClass4_0, Game.HotUpdate",
+            "GFGGame.SceneController+<UpdateDialogPic>d__4, Game.HotUpdate",
+            "GFGGame.ETManager+<>c, Game.HotUpdate",
+            "GFGGame.GFGUIPackage+<>c__DisplayClass3_0, Game.HotUpdate",
+            "GFGGame.GFGUIPackage+<>c__DisplayClass4_0, Game.HotUpdate",
+            "GFGGame.GFGUIPackage+<>c__DisplayClass4_1, Game.HotUpdate",
+            "GFGGame.GFGUIPackage+<>c__DisplayClass4_2, Game.HotUpdate",
+            "GFGGame.GFGUIPackage+<AddPackageAsync>d__4, Game.HotUpdate",
+            "GFGGame.FontLoader+<Init>d__0, Game.HotUpdate",
+            "GFGGame.FontLoader+<LoadFontAsync>d__1, Game.HotUpdate",
+            "GFGGame.GameConfig+Result, Game.HotUpdate",
+            "GFGGame.AccountSProxy+<ReqDeleteAccount>d__0, Game.HotUpdate",
+            "GFGGame.ActivityAfuGiftSProxy+<GetAfuGiftInfo>d__0, Game.HotUpdate",
+            "GFGGame.ActivityAfuGiftSProxy+<ReqGetReward>d__1, Game.HotUpdate",
+            "GFGGame.ActivityAfuGiftSProxy+<ReqGetAllReward>d__2, Game.HotUpdate",
+            "GFGGame.ActivityAfuGiftSProxy+<GetSummerGiftInfo>d__3, Game.HotUpdate",
+            "GFGGame.ActivityAfuGiftSProxy+<ReqGetSummerGiftReward>d__4, Game.HotUpdate",
+            "GFGGame.ActivityAfuGiftSProxy+<ReqGetSummerGiftAllReward>d__5, Game.HotUpdate",
+            "GFGGame.ActivityDay7SProxy+<ReqGetActivityDay7Reward>d__0, Game.HotUpdate",
+            "GFGGame.ActivityFYJYProxy+<ReqGetActivityGameInfos>d__0, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoProxy+<ReqGetActivityGameInfos>d__0, Game.HotUpdate",
+            "GFGGame.ActivityGlobalSProxy+<>c, Game.HotUpdate",
+            "GFGGame.ActivityGlobalSProxy+<GetActivityInfo>d__0, Game.HotUpdate",
+            "GFGGame.ActivityGlobalSProxy+<ReqCloseActivity>d__1, Game.HotUpdate",
+            "GFGGame.ActivityGlobalSProxy+<ReqGetActivityBonus>d__2, Game.HotUpdate",
+            "GFGGame.NoticeTimeLimitLuckyBoxDropOutCount+<Run>d__0, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqSevenDayLoginInfos>d__0, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqSevenDayLoginRewards>d__1, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqFirstChargeBonusRewards>d__2, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqGetTimeLimitLuckyBoxInfo>d__3, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqGetTimeLimitLuckyBoxBonus>d__4, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqActivityTips>d__5, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqActivityZCJBInfo>d__6, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqActivityZCJBReward>d__7, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<SetOnceStatus>d__8, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<GetOnceStatus>d__9, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqGetActivitySignInfos>d__10, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqGetAcitivitySignBonus>d__11, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqGetNewPlayerBonus>d__12, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqGetNewPlayerBonusStatus>d__13, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<SetNewPlayerOnceStatus>d__14, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<GetNewPlayerOnceStatus>d__15, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<SetTipsStatus>d__16, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<GetTipsStatus>d__17, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqGetTurnTableInfo>d__18, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqTurnTableWish>d__19, Game.HotUpdate",
+            "GFGGame.ActivitySProxy+<ReqGetTurnTableReward>d__20, Game.HotUpdate",
+            "GFGGame.NewPlayerOpenStatus+<Run>d__0, Game.HotUpdate",
+            "GFGGame.ActivityNPCRewardProtoHandler+<Run>d__0, Game.HotUpdate",
+            "GFGGame.ActivityTeaSProxy+<ReqGetNPCVisitInfo>d__0, Game.HotUpdate",
+            "GFGGame.ActivityTeaSProxy+<ReqUnLockNPCVisit>d__1, Game.HotUpdate",
+            "GFGGame.ActivityTeaSProxy+<ReqGetNPCVisitReward>d__2, Game.HotUpdate",
+            "GFGGame.ActivityTeaSProxy+<ReqGetItemSyntheticInfos>d__3, Game.HotUpdate",
+            "GFGGame.ActivityTeaSProxy+<ReqItemSynthetic>d__4, Game.HotUpdate",
+            "GFGGame.NoticeArebaRankChange+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeArenaHistoryChange+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeArenaWeekClear+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeArenaSeasonEnd+<Run>d__0, Game.HotUpdate",
+            "GFGGame.ArenaSproxy+<ReqArenaInfos>d__0, Game.HotUpdate",
+            "GFGGame.ArenaSproxy+<ReqRefreshArenaTargets>d__1, Game.HotUpdate",
+            "GFGGame.ArenaSproxy+<ReqChangeArenaDressup>d__2, Game.HotUpdate",
+            "GFGGame.ArenaSproxy+<ReqBuyArenaFightTimes>d__3, Game.HotUpdate",
+            "GFGGame.ArenaSproxy+<ReqArenaFight>d__4, Game.HotUpdate",
+            "GFGGame.ArenaSproxy+<ReqArenaRank>d__5, Game.HotUpdate",
+            "GFGGame.ArenaSproxy+<ReqArenaHistory>d__6, Game.HotUpdate",
+            "GFGGame.ArenaSproxy+<ReqArenaFightAttr>d__7, Game.HotUpdate",
+            "GFGGame.ArenaSproxy+<ReqArenaTargetPowerScore>d__12, Game.HotUpdate",
+            "GFGGame.ArenaSproxy+<ReqGetSeasonGradeRewardStatus>d__13, Game.HotUpdate",
+            "GFGGame.ArenaSproxy+<ReqGetSeasonGradeReward>d__14, Game.HotUpdate",
+            "GFGGame.BattlePassTaskSProxy+<GetBattlePassInfo>d__0, Game.HotUpdate",
+            "GFGGame.BattlePassTaskSProxy+<GetBattlePassReward>d__1, Game.HotUpdate",
+            "GFGGame.BattlePassTaskSProxy+<GetAllBattlePassReward>d__2, Game.HotUpdate",
+            "GFGGame.BattlePassTaskSProxy+<BuyBattlePassLevel>d__3, Game.HotUpdate",
+            "GFGGame.CardSProxy+<GetCardInfos>d__0, Game.HotUpdate",
+            "GFGGame.CardSProxy+<UpgradeCardLvl>d__1, Game.HotUpdate",
+            "GFGGame.CardSProxy+<UpgradeCardStar>d__2, Game.HotUpdate",
+            "GFGGame.CardSProxy+<ChangeCardRes>d__3, Game.HotUpdate",
+            "GFGGame.CardSProxy+<GetCardStarBonus>d__4, Game.HotUpdate",
+            "GFGGame.CardSProxy+<SaveIsAutoSelect>d__5, Game.HotUpdate",
+            "GFGGame.ChatSProxy+<ReqSendChatMsg>d__0, Game.HotUpdate",
+            "GFGGame.ChatSProxy+<ReqQueryChatMsg>d__1, Game.HotUpdate",
+            "GFGGame.ClothingDecomposeSProxy+<ClothingDecompose>d__0, Game.HotUpdate",
+            "GFGGame.ClothingDecomposeSProxy+<SkillBookDecompose>d__1, Game.HotUpdate",
+            "GFGGame.ClothingSyntheticSProxy+<ClothtingSynthetic>d__0, Game.HotUpdate",
+            "GFGGame.ClothingSyntheticSProxy+<CardSynthetic>d__1, Game.HotUpdate",
+            "GFGGame.ClothingSyntheticSProxy+<GetCardSyntheticCount>d__2, Game.HotUpdate",
+            "GFGGame.ClothingSyntheticSProxy+<GetSuitGetReward>d__3, Game.HotUpdate",
+            "GFGGame.NoticeSuitGetRewardChange+<Run>d__0, Game.HotUpdate",
+            "GFGGame.CommonSProxy+<ResetDailyData>d__0, Game.HotUpdate",
+            "GFGGame.CustomSuitSProxy+<UpdateCustomSuit>d__0, Game.HotUpdate",
+            "GFGGame.DailyTaskSProxy+<ReqDailyTaskInfos>d__0, Game.HotUpdate",
+            "GFGGame.DailyTaskSProxy+<ReqLivenessBox>d__1, Game.HotUpdate",
+            "GFGGame.DailyWelfareSProxy+<ReqSign>d__0, Game.HotUpdate",
+            "GFGGame.DailyWelfareSProxy+<ReqReSign>d__1, Game.HotUpdate",
+            "GFGGame.DailyWelfareSProxy+<ReqGetSignReward>d__2, Game.HotUpdate",
+            "GFGGame.DailyWelfareSProxy+<ReqGetSupplyReward>d__3, Game.HotUpdate",
+            "GFGGame.EnduringGiftBoxSProxy+<ReqGetAllGiftBagRebateStatus>d__0, Game.HotUpdate",
+            "GFGGame.EnduringGiftBoxSProxy+<ReqGetGiftBagRebate>d__1, Game.HotUpdate",
+            "GFGGame.FieldSProxy+FieldTaskState, Game.HotUpdate",
+            "GFGGame.FieldSProxy+<ReqFieldInstanceInfos>d__0, Game.HotUpdate",
+            "GFGGame.FieldSProxy+<ReqFieldInstanceResult>d__1, Game.HotUpdate",
+            "GFGGame.FieldSProxy+<ReqFieldTaskBonus>d__2, Game.HotUpdate",
+            "GFGGame.NoticeFieldWorkChange+<Run>d__0, Game.HotUpdate",
+            "GFGGame.FieldWorkSproxy+<ReqFieldWorkInfos>d__0, Game.HotUpdate",
+            "GFGGame.FieldWorkSproxy+<ReqChangeFieldWorkDressup>d__2, Game.HotUpdate",
+            "GFGGame.FieldWorkSproxy+<ReqChangeFieldWorkDressupOne>d__3, Game.HotUpdate",
+            "GFGGame.FieldWorkSproxy+<ReqFieldWorkFight>d__4, Game.HotUpdate",
+            "GFGGame.FieldWorkSproxy+<ReqFieldWorkOneClickPass>d__5, Game.HotUpdate",
+            "GFGGame.FieldWorkSproxy+<ReqFieldWorkReset>d__6, Game.HotUpdate",
+            "GFGGame.FriendSProxy+<ReqAllFriendInfos>d__0, Game.HotUpdate",
+            "GFGGame.FriendSProxy+<ReqGiveGiftToFriend>d__1, Game.HotUpdate",
+            "GFGGame.FriendSProxy+<ReqGiveGiftToAllFriend>d__2, Game.HotUpdate",
+            "GFGGame.FriendSProxy+<ReqTakeGiftFromFriend>d__3, Game.HotUpdate",
+            "GFGGame.FriendSProxy+<ReqTakeGiftFromAllFriend>d__4, Game.HotUpdate",
+            "GFGGame.FriendSProxy+<ReqSearchRole>d__5, Game.HotUpdate",
+            "GFGGame.FriendSProxy+<ReqRecommendFriends>d__6, Game.HotUpdate",
+            "GFGGame.FriendSProxy+<ReqApplyForFriend>d__7, Game.HotUpdate",
+            "GFGGame.FriendSProxy+<ReqAcceptApplyForFriend>d__8, Game.HotUpdate",
+            "GFGGame.FriendSProxy+<ReqRefuseApplyForFriend>d__9, Game.HotUpdate",
+            "GFGGame.FriendSProxy+<ReqAcceptAllApplyForFriend>d__10, Game.HotUpdate",
+            "GFGGame.FriendSProxy+<ReqRefuseAllApplyForFriend>d__11, Game.HotUpdate",
+            "GFGGame.FriendSProxy+<ReqDeleteFriend>d__12, Game.HotUpdate",
+            "GFGGame.InstanceZonesSProxy+<GetInstanceZonesInfos>d__0, Game.HotUpdate",
+            "GFGGame.InstanceZonesSProxy+<FinishStoryDialogLevel>d__1, Game.HotUpdate",
+            "GFGGame.InstanceZonesSProxy+<FinishStoryFightLevel>d__2, Game.HotUpdate",
+            "GFGGame.InstanceZonesSProxy+<StoryFightLevelFail>d__3, Game.HotUpdate",
+            "GFGGame.InstanceZonesSProxy+<FinishStoryFightQuickly>d__4, Game.HotUpdate",
+            "GFGGame.ItemExchangeSProxy+<ItemExchange>d__0, Game.HotUpdate",
+            "GFGGame.ItemProxy+<GetItemInfos>d__0, Game.HotUpdate",
+            "GFGGame.ItemProxy+<GetItemAttributeInfos>d__1, Game.HotUpdate",
+            "GFGGame.ItemProxy+<ReqSetItemRead>d__2, Game.HotUpdate",
+            "GFGGame.ItemProxy+<ReqUseItem>d__3, Game.HotUpdate",
+            "GFGGame.ItemProxy+<ReqUseGiftBoxSelItem>d__4, Game.HotUpdate",
+            "GFGGame.ItemProxy+<ReqUseRandomItem>d__5, Game.HotUpdate",
+            "GFGGame.ItemProxy+<ReqGetItemCollect>d__6, Game.HotUpdate",
+            "GFGGame.NoticeOtherInfo+<Run>d__0, Game.HotUpdate",
+            "GFGGame.TeapartyStatus+<Run>d__0, Game.HotUpdate",
+            "GFGGame.RoleContainerInfos+<Run>d__0, Game.HotUpdate",
+            "GFGGame.LeagueScore+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeDisbandLeague+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeLeagueNumeric+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeApplyLeague+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeLeaveLeague+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeJoinLeague+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeLeaguePosChange+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeLeagueInfoChange+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeLeagueJoinQuitLog+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeLeagueContribution+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeJoinAnswer+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeQuitAnswer+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeAnswerNum+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeAnswerStart+<Run>d__0, Game.HotUpdate",
+            "GFGGame.NoticeAnswerPause+<Run>d__0, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqGetLeagueInfo>d__0, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqSearchLeagueInfo>d__1, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqCreateLeague>d__2, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqJoinLeague>d__3, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqGetApplyJoinLeagueList>d__4, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqSetLeagueApply>d__5, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqAuditJoinLeague>d__6, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqChangeLeaguePos>d__7, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqKickLeague>d__8, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqQuitLeague>d__9, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqChangeLeagueNameOrIcon>d__10, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqChangeLeagueNotice>d__11, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqSendLeagueAD>d__12, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqLeagueJoinQuitLog>d__13, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqUpLeagueBuilding>d__14, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqPrayLeague>d__15, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqBuyLeagueWelfare>d__16, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqGetLeagueWelfare>d__17, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqGetAnswerRank>d__18, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqAnswerQuestion>d__19, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqJoinAnswer>d__20, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqQuitAnswer>d__21, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqGetSkillList>d__22, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqActiveSkill>d__23, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReqSendChatMsg>d__24, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<GetTeapartyInfos>d__29, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<GetTeapartyMatchingInfos>d__30, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<GetRoleContainerInfos>d__31, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ChangeTeapartyDressup>d__32, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<TeapartyStartChallenge>d__33, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<GetPerRatingAward>d__34, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<GetLeagueRatingAward>d__35, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ReportTeapartyComplete>d__36, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<QuitTeapparty>d__37, Game.HotUpdate",
+            "GFGGame.LeagueSproxy+<ChangeTempCollocation>d__38, Game.HotUpdate",
+            "GFGGame.LuckyBoxSProxy+<ReqGetBonus>d__0, Game.HotUpdate",
+            "GFGGame.LuckyBoxSProxy+<ReqGetLuckyBoxRotatingInfo>d__1, Game.HotUpdate",
+            "GFGGame.LuckyBoxSProxy+<ReqGetLuckyBoxInfo>d__2, Game.HotUpdate",
+            "GFGGame.LuckyBoxSProxy+<ReqAddWishingPoolInfo>d__3, Game.HotUpdate",
+            "GFGGame.LuckyBoxSProxy+<ReqGetWishingPoolInfo>d__4, Game.HotUpdate",
+            "GFGGame.LuckyBoxSProxy+<ReqGetBlindBox>d__5, Game.HotUpdate",
+            "GFGGame.MailSProxy+<ReqMailCount>d__0, Game.HotUpdate",
+            "GFGGame.MailSProxy+<ReqMailList>d__1, Game.HotUpdate",
+            "GFGGame.MailSProxy+<ReqMailContent>d__2, Game.HotUpdate",
+            "GFGGame.MailSProxy+<ReqMailReward>d__3, Game.HotUpdate",
+            "GFGGame.MailSProxy+<ReqAllMailRewards>d__4, Game.HotUpdate",
+            "GFGGame.MailSProxy+<ReqDeleteMail>d__5, Game.HotUpdate",
+            "GFGGame.MailSProxy+<ReqDeleteAllMails>d__6, Game.HotUpdate",
+            "GFGGame.MainStorySProxy+<GetStoryBonusInfos>d__0, Game.HotUpdate",
+            "GFGGame.MainStorySProxy+<GetMainStoryBoxBonus>d__1, Game.HotUpdate",
+            "GFGGame.MainStorySProxy+<GetStoryBonusDate>d__2, Game.HotUpdate",
+            "GFGGame.MainStorySProxy+<GetStoryBonusReward>d__3, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<ReqMatchingCompetitionInfo>d__0, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<ReqGetOnePlayers>d__1, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<UpLoadMatchingCompetitionDressData>d__2, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<UploadSuccess>d__3, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<ReqGetTwoPlayers>d__4, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<ReqCheckMatchingCompetitionWork>d__5, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<>c__DisplayClass6_0, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<>c__DisplayClass6_1, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<>c__DisplayClass6_2, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<>c, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<ReqCurrentRank>d__6, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<ReqBeforeWorks>d__8, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<ReqBeforeRank>d__9, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<ReqMatchingPhotoData>d__10, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<ReqChangeLockingState>d__11, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<ReqChangeToppingState>d__12, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSproxy+<ReqRemovedPhoto>d__13, Game.HotUpdate",
+            "GFGGame.MessageHelper+<SendToServer>d__0, Game.HotUpdate",
+            "GFGGame.MiniGameProxy+<ReqMiniGameStart>d__0, Game.HotUpdate",
+            "GFGGame.MiniGameProxy+<ReqMiniGameEnd>d__1, Game.HotUpdate",
+            "GFGGame.MiniGameProxy+<ReqGetChallengeReward>d__2, Game.HotUpdate",
+            "GFGGame.MiniGameProxy+<ReqGetActivityGameInfos>d__3, Game.HotUpdate",
+            "GFGGame.MiniGameProxy+<ReqGetReward>d__4, Game.HotUpdate",
+            "GFGGame.MiniGameProxy+<ReqGetFirstPassReward>d__5, Game.HotUpdate",
+            "GFGGame.MiniGameProxy+<ReqGetGameUnlock>d__6, Game.HotUpdate",
+            "GFGGame.MiniGameProxy+<ReqMergeGameInfo>d__7, Game.HotUpdate",
+            "GFGGame.MiniGameProxy+<ReqMergeGame>d__8, Game.HotUpdate",
+            "GFGGame.MiniGameProxy+<ReqMergeGameBtn>d__9, Game.HotUpdate",
+            "GFGGame.MiniGameProxy+<ReqMergeGameLevelPass>d__10, Game.HotUpdate",
+            "GFGGame.MiniGameProxy+<ReqMergeGameNewStyle>d__11, Game.HotUpdate",
+            "GFGGame.MiniGameProxy+<ReqMergeGameSellBtn>d__12, Game.HotUpdate",
+            "GFGGame.NewYearRedEnvelopeSProxy+<ReqGetRedPacketInfo>d__0, Game.HotUpdate",
+            "GFGGame.NewYearRedEnvelopeSProxy+<ReqOpenRedPacket>d__1, Game.HotUpdate",
+            "GFGGame.NewYearRedEnvelopeSProxy+<ReqDoubleRedPacket>d__2, Game.HotUpdate",
+            "GFGGame.NoticeSProxy+<ReqSystemNoticeList>d__0, Game.HotUpdate",
+            "GFGGame.NoticeSProxy+<ReqSystemNotice>d__1, Game.HotUpdate",
+            "GFGGame.PictureStorageHelper+<PushToHWCloud>d__0, Game.HotUpdate",
+            "GFGGame.PictureStorageHelper+<Download>d__1, Game.HotUpdate",
+            "GFGGame.PictureStorageHelper+<DownloadPicture>d__2, Game.HotUpdate",
+            "GFGGame.PictureStorageHelper+<Download>d__3, Game.HotUpdate",
+            "GFGGame.PictureStorageHelper+<DownloadPicture>d__4, Game.HotUpdate",
+            "GFGGame.PoemGallerySProxy+<ReqGalleryTheme>d__0, Game.HotUpdate",
+            "GFGGame.PoemGallerySProxy+<ReqGalleryList>d__1, Game.HotUpdate",
+            "GFGGame.PoemGallerySProxy+<ReqRankList>d__2, Game.HotUpdate",
+            "GFGGame.PoemGallerySProxy+<ReqUpLoadGalleryWorks>d__3, Game.HotUpdate",
+            "GFGGame.PoemGallerySProxy+<ReqNoticeGalleryWorksUploaded>d__4, Game.HotUpdate",
+            "GFGGame.PoemGallerySProxy+<ReqDeleteMyWorks>d__5, Game.HotUpdate",
+            "GFGGame.PoemGallerySProxy+<ReqCollecteGalleryWorks>d__6, Game.HotUpdate",
+            "GFGGame.PoemGallerySProxy+<ReqCancelCollecteGalleryWorks>d__7, Game.HotUpdate",
+            "GFGGame.PoemGallerySProxy+<ReqVoteGalleryWorks>d__8, Game.HotUpdate",
+            "GFGGame.PoemGallerySProxy+<ReqGetGalleryRankBonus>d__9, Game.HotUpdate",
+            "GFGGame.PoemPhotoSProxy+<ReqAllPhotoInfos>d__0, Game.HotUpdate",
+            "GFGGame.PoemPhotoSProxy+<ReqTempPictureUrl>d__1, Game.HotUpdate",
+            "GFGGame.PoemPhotoSProxy+<ReqAddTophoto>d__2, Game.HotUpdate",
+            "GFGGame.PoemPhotoSProxy+<ReqRemovedPhoto>d__3, Game.HotUpdate",
+            "GFGGame.PoemPhotoSProxy+<ReqChangeLockingState>d__4, Game.HotUpdate",
+            "GFGGame.PoemPhotoSProxy+<ReqChangeToppingState>d__5, Game.HotUpdate",
+            "GFGGame.G2C_UpdateQueueHandler+<>c, Game.HotUpdate",
+            "GFGGame.G2C_UpdateQueueHandler+<Run>d__0, Game.HotUpdate",
+            "GFGGame.QueueSProxy+<ReqSevenCancelQueue>d__0, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<ReqPersonalInfo>d__0, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<ReqOtherRoleDetailInfo>d__1, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<ReqModifySlogan>d__2, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<ReqModifyRoleName>d__3, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<ReqModifyRoleHead>d__4, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<ReqModifyRoleHeadBorder>d__5, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<ReqModifyShowPhoto>d__6, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<ReqSaveChangeGearSwitch>d__7, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<ReqSaveMainBgID>d__8, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<ReqSaveBadgeList>d__9, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<ReqNewRoleGetSuit>d__10, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<ReqNewRoleGetSuitStatus>d__11, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<GetThemeID>d__12, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<GetMobileVerification>d__13, Game.HotUpdate",
+            "GFGGame.RoleInfoSProxy+<BindMobilePhoneNumber>d__14, Game.HotUpdate",
+            "GFGGame.RoleLimitSProxy+<ReqUnitLimitInfos>d__0, Game.HotUpdate",
+            "GFGGame.RoleLimitSProxy+<ReqBuyLimitPlayTimes>d__1, Game.HotUpdate",
+            "GFGGame.SettingSProxy+<ReqGiftCodeCheck>d__0, Game.HotUpdate",
+            "GFGGame.ShareRecordSProxy+<ReqShareRecord>d__0, Game.HotUpdate",
+            "GFGGame.ShopSProxy+<ReqShopInfo>d__0, Game.HotUpdate",
+            "GFGGame.ShopSProxy+<ReqShopBuy>d__1, Game.HotUpdate",
+            "GFGGame.ShopSProxy+<ReqGetVipGiftBag>d__3, Game.HotUpdate",
+            "GFGGame.ShopSProxy+<ReqGetVipWeekGiftBag>d__4, Game.HotUpdate",
+            "GFGGame.ShopSProxy+<ReqGetMonthCardReward>d__5, Game.HotUpdate",
+            "GFGGame.ShopSProxy+<ReqGetMonthCardItem>d__6, Game.HotUpdate",
+            "GFGGame.ShopSProxy+<ReqGetGrowthFundInfo>d__7, Game.HotUpdate",
+            "GFGGame.ShopSProxy+<ReqGetGrowthFundReward>d__8, Game.HotUpdate",
+            "GFGGame.ShopSProxy+<ReqCreateAliOrder>d__9, Game.HotUpdate",
+            "GFGGame.ShopSProxy+<ReqCreateWeChatOrder>d__10, Game.HotUpdate",
+            "GFGGame.SkillSProxy+<ReqUpgradeCardSkill>d__0, Game.HotUpdate",
+            "GFGGame.SkillSProxy+<ReqGetSkillList>d__1, Game.HotUpdate",
+            "GFGGame.SkillSProxy+<ReqActiveSkill>d__2, Game.HotUpdate",
+            "GFGGame.StorageSProxy+<ReqSetClientValue>d__0, Game.HotUpdate",
+            "GFGGame.StorageSProxy+<ReqGetClientValues>d__1, Game.HotUpdate",
+            "GFGGame.StudioSProxy+<ReqStudioInfos>d__0, Game.HotUpdate",
+            "GFGGame.StudioSProxy+<ReqFilingScoreRewards>d__1, Game.HotUpdate",
+            "GFGGame.SuitSProxy+<GetSuitGuideBoxBonus>d__0, Game.HotUpdate",
+            "GFGGame.SuitSProxy+<GetSuitSyntheticBoxBonus>d__1, Game.HotUpdate",
+            "GFGGame.TaskSProxy+<>c__DisplayClass1_0, Game.HotUpdate",
+            "GFGGame.TaskSProxy+<GetTaskInfos>d__1, Game.HotUpdate",
+            "GFGGame.TaskSProxy+<GetTaskBonus>d__2, Game.HotUpdate",
+            "GFGGame.TaskSProxy+<>c, Game.HotUpdate",
+            "GFGGame.TaskSProxy+<GetAllTaskBonus>d__3, Game.HotUpdate",
+            "GFGGame.TaskSProxy+<GetTaskTypePro>d__4, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy+<ReqGetMaxLevelInfo>d__0, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy+<ReqGetSuitRewardStatus>d__1, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy+<ReqGetSuitReward>d__2, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy+<ReqGetLevelRewardStatus>d__3, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy+<ReqGetAppointLevelRewardStatus>d__4, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy+<ReqGetLevelReward>d__5, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy+<ReqGetAllLevelReward>d__6, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy+<ReqGetSuitRank>d__7, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy+<ReqGetSuitFriendRank>d__8, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy+<ReqGetLevelRank>d__9, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy+<ReqGetLevelFriendRank>d__10, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy+<ReqSetDataRecord>d__11, Game.HotUpdate",
+            "GFGGame.TimeTracingSProxy+<ReqGetDataRecord>d__12, Game.HotUpdate",
+            "GFGGame.TravelSProxy+<ReqTravelInfo>d__0, Game.HotUpdate",
+            "GFGGame.TravelSProxy+<ReqGoTravel>d__1, Game.HotUpdate",
+            "GFGGame.TravelSProxy+<ReqGetTravelReward>d__2, Game.HotUpdate",
+            "GFGGame.TravelSProxy+<ReqTravelGuideInfo>d__3, Game.HotUpdate",
+            "GFGGame.TravelSProxy+<ReqGetTravelGuideReward>d__4, Game.HotUpdate",
+            "GFGGame.TravelSProxy+<ReqTravelSpeedUp>d__5, Game.HotUpdate",
+            "GFGGame.MusicManager+<Play>d__14, Game.HotUpdate",
+            "GFGGame.SoundManager+<PlayOneShot>d__12, Game.HotUpdate",
+            "GFGGame.VoiceManager+<PlayOneShot>d__14, Game.HotUpdate",
+            "GFGGame.VoiceManager+<WaitForSound>d__16, Game.HotUpdate",
+            "GFGGame.UICGView+<FadeButtonOverTime>d__12, Game.HotUpdate",
+            "GFGGame.ItemUtil+<>c__DisplayClass2_0, Game.HotUpdate",
+            "GFGGame.ItemUtil+<>c__DisplayClass3_0, Game.HotUpdate",
+            "GFGGame.ItemUtil+<>c__DisplayClass16_0, Game.HotUpdate",
+            "GFGGame.ItemUtil+<>c, Game.HotUpdate",
+            "GFGGame.SuitUtil+<>c, Game.HotUpdate",
+            "GFGGame.SuitUtil+<>c__DisplayClass11_0, Game.HotUpdate",
+            "GFGGame.SuitUtil+<>c__DisplayClass13_0, Game.HotUpdate",
+            "GFGGame.SuitUtil+<>c__DisplayClass15_0, Game.HotUpdate",
+            "GFGGame.SuitUtil+<>c__DisplayClass16_0, Game.HotUpdate",
+            "GFGGame.ActivitySyntheticView+<OnClickBtnMake>d__14, Game.HotUpdate",
+            "GFGGame.ActivityTeaMainView+<OnClickBtnVisitView>d__11, Game.HotUpdate",
+            "GFGGame.ActivityTeaVisitView+<OnClickVisitBtn>d__15, Game.HotUpdate",
+            "GFGGame.ActivityVisitNpcView+<OnClickRewardTIps>d__20, Game.HotUpdate",
+            "GFGGame.ActivityVisitNpcView+<OnBtnGetClick>d__23, Game.HotUpdate",
+            "GFGGame.ActivityAfuGiftView+GetState, Game.HotUpdate",
+            "GFGGame.ActivityDay7View+<>c, Game.HotUpdate",
+            "GFGGame.ActivityDay7View+<OnBtnGetClick>d__30, Game.HotUpdate",
+            "GFGGame.ActivityDay7View+<OnClickReward>d__31, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoDataManager+<>c, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoEntryView+<OnShown>d__7, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoEntryView+<StartGame>d__14, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoTaskView+<>c, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoTaskView+<OnClickBtnGet>d__13, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoView+<>c, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoView+<>c__DisplayClass22_0, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoView+<PlayStartAnim>d__28, Game.HotUpdate",
+            "GFGGame.ActivityGetYuanXiaoView+<GameEnd>d__30, Game.HotUpdate",
+            "GFGGame.YuanXiaoItem+<>c__DisplayClass8_0, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoEntryView+<OnShown>d__6, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoEntryView+<UpdateUIAsync>d__12, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoEntryView+<InitInfo>d__13, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoEntryView+<OnBtnStartClick>d__21, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoEntryView+<GetCurLevel>d__22, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoSuccessView+<ShowSuitLater>d__12, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoView+Grid, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoView+GridInfo, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoView+<>c__DisplayClass30_0, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoView+<Win>d__30, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoView+<StartAnimation>d__32, Game.HotUpdate",
+            "GFGGame.ActivityMainTipsView+<OnHide>d__6, Game.HotUpdate",
+            "GFGGame.ActivityZCJBChapterView+<>c, Game.HotUpdate",
+            "GFGGame.ActivityZCJBChapterView+<InitChapter>d__26, Game.HotUpdate",
+            "GFGGame.ActivityZCJBRewardView+<OnClickRewardBtn>d__8, Game.HotUpdate",
+            "GFGGame.ActivityZCJBView+<ReqInfo>d__13, Game.HotUpdate",
+            "GFGGame.BlindBoxView+<ReqBuyAll>d__17, Game.HotUpdate",
+            "GFGGame.BlindBoxView+<ReqBuyOne>d__18, Game.HotUpdate",
+            "GFGGame.BlindBoxView+<UpdateAllBoxAni>d__20, Game.HotUpdate",
+            "GFGGame.MonthlyCardTipsView+<OnHide>d__8, Game.HotUpdate",
+            "GFGGame.NewPlayersTipsView+<UpdateInfo>d__8, Game.HotUpdate",
+            "GFGGame.NewPlayersTipsView+<OnClickGetReward>d__9, Game.HotUpdate",
+            "GFGGame.PearRebateTipsView+<OnHide>d__9, Game.HotUpdate",
+            "GFGGame.WeeklyGiftTipsView+<OnClickBuy>d__13, Game.HotUpdate",
+            "GFGGame.ZGTHgiftDCTipsView+<OnHide>d__12, Game.HotUpdate",
+            "GFGGame.ZGTHgiftDCTipsView+<OnBtnGetClick>d__13, Game.HotUpdate",
+            "GFGGame.ZGTHgiftTipsView+<OnHide>d__10, Game.HotUpdate",
+            "GFGGame.ActivityThemeLuckyBoxBonusView+<OnBtnGetClick>d__14, Game.HotUpdate",
+            "GFGGame.ActivityThemeLuckyBoxTaskView+<OnBtnGetClick>d__12, Game.HotUpdate",
+            "GFGGame.ActivityWanShiLiView+GetState, Game.HotUpdate",
+            "GFGGame.ArenaDressInfoView+<OnBtnRecommendClick>d__22, Game.HotUpdate",
+            "GFGGame.ArenaFightRecordView+<OnBtnLookClick>d__9, Game.HotUpdate",
+            "GFGGame.ArenaRankView+<ReqRankList>d__12, Game.HotUpdate",
+            "GFGGame.ArenaRankView+<OnBtnLookClick>d__19, Game.HotUpdate",
+            "GFGGame.ArenaResultQuickView+<>c__DisplayClass10_0, Game.HotUpdate",
+            "GFGGame.ArenaRoundResultView+<>c__DisplayClass12_0, Game.HotUpdate",
+            "GFGGame.ArenaRoundResultView+<>c, Game.HotUpdate",
+            "GFGGame.ArenaView+<OnBtnRefreshClick>d__22, Game.HotUpdate",
+            "GFGGame.ArenaView+<OnBtnFightClick>d__26, Game.HotUpdate",
+            "GFGGame.ArenaView+<GetFightResult>d__27, Game.HotUpdate",
+            "GFGGame.ArenaView+<OnSelectRoleClick>d__34, Game.HotUpdate",
+            "GFGGame.GiftBoxSelectorView+<>c__DisplayClass23_0, Game.HotUpdate",
+            "GFGGame.GiftBoxSelectorView+<>c__DisplayClass27_0, Game.HotUpdate",
+            "GFGGame.GiftBoxSelectorView+<>c, Game.HotUpdate",
+            "GFGGame.BaseWindow+CloseButtonPool, Game.HotUpdate",
+            "GFGGame.CardDetailView+<OnShown>d__7, Game.HotUpdate",
+            "GFGGame.CardFosterView+Source, Game.HotUpdate",
+            "GFGGame.CardFosterView+<UpdateCardRes>d__51, Game.HotUpdate",
+            "GFGGame.CardFosterView+<UpLv>d__64, Game.HotUpdate",
+            "GFGGame.CardFosterView+<>c__DisplayClass71_0, Game.HotUpdate",
+            "GFGGame.CardFosterView+<OnClickShowCardListItem>d__73, Game.HotUpdate",
+            "GFGGame.CardFosterView+<UpStar>d__76, Game.HotUpdate",
+            "GFGGame.CardSkillView+<>c__DisplayClass14_0, Game.HotUpdate",
+            "GFGGame.CardSkillView+<OnClickBtnUp>d__16, Game.HotUpdate",
+            "GFGGame.CardSyntheticView+<OnShown>d__13, Game.HotUpdate",
+            "GFGGame.CardSyntheticView+<OnClickBtnProcuction>d__17, Game.HotUpdate",
+            "GFGGame.CardSyntheticView+<OnItemNumChanged>d__24, Game.HotUpdate",
+            "GFGGame.CardSyntheticView+<GetCardSyntheticCount>d__25, Game.HotUpdate",
+            "GFGGame.CardUpLevelView+<OnClickBtnUse>d__26, Game.HotUpdate",
+            "GFGGame.CardView+<>c, Game.HotUpdate",
+            "GFGGame.ClothingDecomposeView+<DecomposeItem>d__23, Game.HotUpdate",
+            "GFGGame.ClothingFosterFinishView+<>c__DisplayClass7_0, Game.HotUpdate",
+            "GFGGame.ClothingFosterFinishView+<>c__DisplayClass7_1, Game.HotUpdate",
+            "GFGGame.ClothingFosterView+<OnClickBtnFoster>d__16, Game.HotUpdate",
+            "GFGGame.ClothingListView+<>c__DisplayClass19_0, Game.HotUpdate",
+            "GFGGame.ClothingView+<OnClickBtnRenew>d__37, Game.HotUpdate",
+            "GFGGame.ClothingSyntheticView+<OnClickBtnProcuction>d__40, Game.HotUpdate",
+            "GFGGame.ClothingSyntheticView+<DelayShow>d__44, Game.HotUpdate",
+            "GFGGame.ClothingSyntheticView+<UpdateMaskHeight>d__56, Game.HotUpdate",
+            "GFGGame.ClothingSyntheticView+<OnClickBtnCardSyntheticView>d__60, Game.HotUpdate",
+            "GFGGame.SuitSyntheticView+<>c__DisplayClass11_0, Game.HotUpdate",
+            "GFGGame.ClothingAnsweringView+<>c, Game.HotUpdate",
+            "GFGGame.ClothingAnsweringView+<OnBtnChooseClick>d__14, Game.HotUpdate",
+            "GFGGame.ClothingUpgradeView+<OnClickUpgrade>d__23, Game.HotUpdate",
+            "GFGGame.AlertWindow+AlertCallback, Game.HotUpdate",
+            "GFGGame.LuckyBoxController+ModelInfo, Game.HotUpdate",
+            "GFGGame.LuckyBoxController+<DelayShowModel>d__15, Game.HotUpdate",
+            "GFGGame.LuckyBoxController+<>c__DisplayClass24_0, Game.HotUpdate",
+            "GFGGame.ValueBarController+<>c, Game.HotUpdate",
+            "GFGGame.BuyCountView+<OnClickBtnSure>d__30, Game.HotUpdate",
+            "GFGGame.BuyTipsView+<OnClickBtnSure>d__13, Game.HotUpdate",
+            "GFGGame.GetSuitItemVIew+<>c, Game.HotUpdate",
+            "GFGGame.CreateRoleView+State, Game.HotUpdate",
+            "GFGGame.CreateRoleView+<OnClickBtnSure>d__9, Game.HotUpdate",
+            "GFGGame.CreateRoleView+<RandomRoleName>d__10, Game.HotUpdate",
+            "GFGGame.NewRoleGetSuitView+<>c, Game.HotUpdate",
+            "GFGGame.NewRoleGetSuitView+<<OnClickTip>b__11_1>d, Game.HotUpdate",
+            "GFGGame.DailySignView+<>c, Game.HotUpdate",
+            "GFGGame.DailySignView+<OnBtnGetProBonus>d__21, Game.HotUpdate",
+            "GFGGame.DailySignView+<OnGetSignBonus>d__23, Game.HotUpdate",
+            "GFGGame.DailySignView+<SignBonus>d__24, Game.HotUpdate",
+            "GFGGame.DailySupplyView+<>c__DisplayClass19_0, Game.HotUpdate",
+            "GFGGame.DailySupplyView+<>c__DisplayClass19_1, Game.HotUpdate",
+            "GFGGame.DailySupplyView+<ReqSupplyAsync>d__20, Game.HotUpdate",
+            "GFGGame.FirstChargeBonusView+<OnBtnGetClick>d__8, Game.HotUpdate",
+            "GFGGame.ReDailySignTipsView+<OnClickBtnConfirm>d__13, Game.HotUpdate",
+            "GFGGame.SevenDayLoginView+<OnListItemClick>d__9, Game.HotUpdate",
+            "GFGGame.DeleteAccountView+<OnClickBtnSure>d__17, Game.HotUpdate",
+            "GFGGame.ArenaDressUpFightView+<>c, Game.HotUpdate",
+            "GFGGame.ArenaDressUpFightView+<DressUpFinish>d__42, Game.HotUpdate",
+            "GFGGame.DressUpFightView+<ChangeTeapartyDressup>d__31, Game.HotUpdate",
+            "GFGGame.DressUpFightView+<ChangeTempCollocation>d__34, Game.HotUpdate",
+            "GFGGame.DressUpFightView+<>c, Game.HotUpdate",
+            "GFGGame.DressUpView+<>c, Game.HotUpdate",
+            "GFGGame.DressUpView+<UpdateLoadProgress>d__83, Game.HotUpdate",
+            "GFGGame.PhotographSaveView+<>c, Game.HotUpdate",
+            "GFGGame.PhotographSaveView+<CheckSaveLocal>d__8, Game.HotUpdate",
+            "GFGGame.PhotographSaveView+<OnClickBtnSavePhoto>d__9, Game.HotUpdate",
+            "GFGGame.PhotographView+<OnShown>d__28, Game.HotUpdate",
+            "GFGGame.PhotographView+<UpdateSceneTransform>d__36, Game.HotUpdate",
+            "GFGGame.PhotographView+<AddSceneItem>d__37, Game.HotUpdate",
+            "GFGGame.PhotographView+<>c__DisplayClass60_0, Game.HotUpdate",
+            "GFGGame.PhotographView+<ScreenShotTex>d__60, Game.HotUpdate",
+            "GFGGame.PhotographView+<OnUpLoad>d__61, Game.HotUpdate",
+            "GFGGame.PhotographView+<<OnClickBtnBack>b__62_0>d, Game.HotUpdate",
+            "GFGGame.EnduringGiftBoxView+<>c, Game.HotUpdate",
+            "GFGGame.EnduringGiftBoxView+<>c__DisplayClass26_0, Game.HotUpdate",
+            "GFGGame.EnduringGiftBoxView+<OnClickBtnSure>d__26, Game.HotUpdate",
+            "GFGGame.RushSaleGiftBoxView+<>c, Game.HotUpdate",
+            "GFGGame.SpecialOfferGiftBoxView+<>c, Game.HotUpdate",
+            "GFGGame.FieldFightInfoView+<<OnBtnStopClick>b__7_1>d, Game.HotUpdate",
+            "GFGGame.FieldTaskView+<OnBtnGetClick>d__9, Game.HotUpdate",
+            "GFGGame.FieldView+<>c__DisplayClass13_0, Game.HotUpdate",
+            "GFGGame.FieldView+<UpdateStroyFightResult>d__13, Game.HotUpdate",
+            "GFGGame.DressUpGuideView+LastClickIndex, Game.HotUpdate",
+            "GFGGame.DressUpGuideView+<>c, Game.HotUpdate",
+            "GFGGame.DressUpGuideView+<UpdateLoadProgress>d__14, Game.HotUpdate",
+            "GFGGame.FieldGuideView+GetRedCall, Game.HotUpdate",
+            "GFGGame.FieldGuideView+<>c__DisplayClass18_0, Game.HotUpdate",
+            "GFGGame.FieldGuideView+<UpdateProgress>d__18, Game.HotUpdate",
+            "GFGGame.SuitGuideDetailView+<>c__DisplayClass17_0, Game.HotUpdate",
+            "GFGGame.SuitGuideDetailView+<>c__DisplayClass19_0, Game.HotUpdate",
+            "GFGGame.SuitGuideListView+<>c__DisplayClass15_0, Game.HotUpdate",
+            "GFGGame.SuitGuideListView+<>c__DisplayClass17_0, Game.HotUpdate",
+            "GFGGame.SuitGuideView+<>c__DisplayClass14_0, Game.HotUpdate",
+            "GFGGame.SuitGuideView+<UpdateRedDot>d__19, Game.HotUpdate",
+            "GFGGame.FieldWorkChooseCardView+<>c__DisplayClass13_0, Game.HotUpdate",
+            "GFGGame.FieldWorkDressFightView+<>c, Game.HotUpdate",
+            "GFGGame.FieldWorkDressFightView+<DressUpFinish>d__42, Game.HotUpdate",
+            "GFGGame.FieldWorkLevelView+<InitChapter>d__11, Game.HotUpdate",
+            "GFGGame.FieldWorkLevelView+<<OnClickBtnReSet>b__19_0>d, Game.HotUpdate",
+            "GFGGame.FieldWorkLevelView+<<OnClickBtnSkip>b__20_0>d, Game.HotUpdate",
+            "GFGGame.FieldWorkRoundResultView+<OnShown>d__7, Game.HotUpdate",
+            "GFGGame.FieldWorkRoundResultView+<>c, Game.HotUpdate",
+            "GFGGame.FriendAddView+<OnBtnAddClick>d__10, Game.HotUpdate",
+            "GFGGame.FriendAddView+<OnBtnSearchClick>d__11, Game.HotUpdate",
+            "GFGGame.FriendAddView+<OnBtnRefreshClick>d__13, Game.HotUpdate",
+            "GFGGame.FriendAddView+<OnBtnAgreeClick>d__16, Game.HotUpdate",
+            "GFGGame.FriendAddView+<OnBtnRefuseClick>d__17, Game.HotUpdate",
+            "GFGGame.FriendAddView+<<OnBtnRefuseAllClick>b__19_0>d, Game.HotUpdate",
+            "GFGGame.FriendView+<ReqFriendDetailInfo>d__20, Game.HotUpdate",
+            "GFGGame.InstanceZonesView+<OnClickBtnPoem>d__18, Game.HotUpdate",
+            "GFGGame.InstanceZonesView+<OnClickBtnArena>d__22, Game.HotUpdate",
+            "GFGGame.LeagueAnswerRankView+<OnCtrlChange>d__8, Game.HotUpdate",
+            "GFGGame.LeagueAnsweringView+<>c__DisplayClass13_0, Game.HotUpdate",
+            "GFGGame.LeagueAnsweringView+<OnBtnSendClick>d__13, Game.HotUpdate",
+            "GFGGame.LeagueAnsweringView+<>c, Game.HotUpdate",
+            "GFGGame.LeagueAnsweringView+<OnBtnChooseClick>d__23, Game.HotUpdate",
+            "GFGGame.LeagueAnsweringView+<OnFocuseOut>d__24, Game.HotUpdate",
+            "GFGGame.LeagueApplyView+<OnBtnAgreeClick>d__11, Game.HotUpdate",
+            "GFGGame.LeagueApplyView+<OnBtnRefuseClick>d__12, Game.HotUpdate",
+            "GFGGame.LeagueChangeNoticeView+<OnBtnSaveClick>d__8, Game.HotUpdate",
+            "GFGGame.LeagueChatView+<>c__DisplayClass10_0, Game.HotUpdate",
+            "GFGGame.LeagueChatView+<OnBtnSendClick>d__10, Game.HotUpdate",
+            "GFGGame.LeagueCreatView+<OnBtnCreatClick>d__7, Game.HotUpdate",
+            "GFGGame.LeagueJoinView+<ReqLeagueList>d__13, Game.HotUpdate",
+            "GFGGame.LeagueJoinView+<>c__DisplayClass15_0, Game.HotUpdate",
+            "GFGGame.LeagueJoinView+<OnBtnJoinClick>d__15, Game.HotUpdate",
+            "GFGGame.LeagueMemberAppointView+<>c__DisplayClass9_0, Game.HotUpdate",
+            "GFGGame.LeagueMemberAppointView+<<OnBtnKickClick>b__8_0>d, Game.HotUpdate",
+            "GFGGame.LeagueMemberView+<>c, Game.HotUpdate",
+            "GFGGame.LeagueMemberView+<OnShowOhterInfo>d__18, Game.HotUpdate",
+            "GFGGame.LeagueMemberView+<<OnBtnRecruitClick>b__10_0>d, Game.HotUpdate",
+            "GFGGame.LeagueSkillUpView+<OnActiveSkill>d__24, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyOverView+<GetLeagueRatingAward>d__7, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyOverView+<GetRoleContainerInfos>d__10, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyRewardView+<>c, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyRewardView+<OnClickReward>d__12, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyRewardView+<OnClickLeagueReward>d__15, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyShowView+<GetRoleContainerInfos>d__10, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyView+<QuitTeapparty>d__11, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyView+<TeapartyStartChallenge>d__14, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyView+<GetTeapartyMatchingInfos>d__22, Game.HotUpdate",
+            "GFGGame.LeagueTeaPartyView+<GetRoleContainerInfos>d__23, Game.HotUpdate",
+            "GFGGame.LeagueView+<OnShowOhterInfo>d__19, Game.HotUpdate",
+            "GFGGame.LeagueView+<GetTeapartyMatchingInfos>d__37, Game.HotUpdate",
+            "GFGGame.LoginView+<>c, Game.HotUpdate",
+            "GFGGame.RegisterView+<>c, Game.HotUpdate",
+            "GFGGame.LuckyBoxActivityView+<>c, Game.HotUpdate",
+            "GFGGame.LuckyBoxActivityView+<GetWishingPoolInfo>d__31, Game.HotUpdate",
+            "GFGGame.LuckyBoxActivityView+<<OnClickBtnBuyOne>b__19_0>d, Game.HotUpdate",
+            "GFGGame.LuckyBoxActivityView+<<OnClickBtnBuyTen>b__20_0>d, Game.HotUpdate",
+            "GFGGame.LuckyBoxNewDressView+<>c__DisplayClass16_0, Game.HotUpdate",
+            "GFGGame.LuckyBoxVideoView+<FadeButtonOverTime>d__12, Game.HotUpdate",
+            "GFGGame.LuckyBoxView+<GetWishingPoolInfo>d__22, Game.HotUpdate",
+            "GFGGame.LuckyBoxView+<>c, Game.HotUpdate",
+            "GFGGame.LuckyBoxView+<>c__DisplayClass38_0, Game.HotUpdate",
+            "GFGGame.LuckyBoxView+<>c__DisplayClass39_0, Game.HotUpdate",
+            "GFGGame.LuckyBoxView+<>c__DisplayClass40_0, Game.HotUpdate",
+            "GFGGame.LuckyBoxWishView+<>c__DisplayClass8_0, Game.HotUpdate",
+            "GFGGame.LuckyBoxWishView+<ReqAddWishingPoolInfo>d__10, Game.HotUpdate",
+            "GFGGame.MailContentView+<OnClickBtnGet>d__10, Game.HotUpdate",
+            "GFGGame.MailContentView+<OnClickBtnDelete>d__11, Game.HotUpdate",
+            "GFGGame.MailView+<OnClickBtnLook>d__16, Game.HotUpdate",
+            "GFGGame.MailView+<RefreshMailInfo>d__17, Game.HotUpdate",
+            "GFGGame.ActivityStoryChapterView+<>c, Game.HotUpdate",
+            "GFGGame.ActivityStoryChapterView+<InitChapter>d__28, Game.HotUpdate",
+            "GFGGame.InstanceZonesController+OnFinishStoryLevelCall, Game.HotUpdate",
+            "GFGGame.InstanceZonesController+<CheckStoryFightResult>d__3, Game.HotUpdate",
+            "GFGGame.StoryCardChoose+<>c__DisplayClass13_0, Game.HotUpdate",
+            "GFGGame.StoryChapterListView+<OnClickReward>d__18, Game.HotUpdate",
+            "GFGGame.StoryChapterView+<>c, Game.HotUpdate",
+            "GFGGame.StoryChapterView+<InitChapter>d__33, Game.HotUpdate",
+            "GFGGame.StoryChapterView+<OnClickBonusBox>d__40, Game.HotUpdate",
+            "GFGGame.StoryDialogView+<InitStepContent>d__47, Game.HotUpdate",
+            "GFGGame.StoryDialogView+<>c__DisplayClass48_0, Game.HotUpdate",
+            "GFGGame.StoryDialogView+<>c, Game.HotUpdate",
+            "GFGGame.StoryDialogView+<ShowDialog>d__50, Game.HotUpdate",
+            "GFGGame.StoryDialogView+<ShowSelfHeadImg>d__51, Game.HotUpdate",
+            "GFGGame.StoryDialogView+<StartShowLetters>d__55, Game.HotUpdate",
+            "GFGGame.StoryDialogView+<WaitCGAnimFinish>d__70, Game.HotUpdate",
+            "GFGGame.StoryDialogView+<CheckResLoad>d__71, Game.HotUpdate",
+            "GFGGame.StoryFightQuicklyView+<ReqFightQuickly>d__21, Game.HotUpdate",
+            "GFGGame.StoryFightSingleView+<>c__DisplayClass5_0, Game.HotUpdate",
+            "GFGGame.StoryFightTargetScoreView+<>c__DisplayClass63_0, Game.HotUpdate",
+            "GFGGame.StoryFightTargetScoreView+<>c, Game.HotUpdate",
+            "GFGGame.StoryFightTargetScoreView+<Skip>d__77, Game.HotUpdate",
+            "GFGGame.StoryFightTargetView+<>c__DisplayClass9_0, Game.HotUpdate",
+            "GFGGame.StorySkillView+<>c__DisplayClass11_0, Game.HotUpdate",
+            "GFGGame.StroyFightResultView+<OnShown>d__19, Game.HotUpdate",
+            "GFGGame.StroyFightResultView+<>c__DisplayClass22_0, Game.HotUpdate",
+            "GFGGame.TypingFadeEffect+<UpdateFadeProgress>d__13, Game.HotUpdate",
+            "GFGGame.TypingFadeEffectPro+<UpdateFadeProgress>d__13, Game.HotUpdate",
+            "GFGGame.TypingFadeEffectPro+<UpdateFadeProgressSingle>d__14, Game.HotUpdate",
+            "GFGGame.MainUIView+<UpdateButtons>d__37, Game.HotUpdate",
+            "GFGGame.MainUIView+<>c, Game.HotUpdate",
+            "GFGGame.MainUIView+<CardBgRes>d__93, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionRankView+<>c, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionRankView+<OnClickBtnBefore>d__14, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSelectView+<UpdateDressLeft>d__13, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSelectView+<UpdateDressRigh>d__14, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSelectView+<OnClickBtnSelect1>d__20, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSelectView+<OnClickBtnSelect2>d__21, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSelectView+<<OnClickBtnSelect1>b__20_0>d, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionSelectView+<<OnClickBtnSelect2>b__21_0>d, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionUpLoadView+<UpdateDress>d__10, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionUpLoadView+<OnClickBtnUpload>d__16, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionUpLoadView+<OnClickBtnRank>d__20, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionUpLoadView+<OnClickBtnExchange>d__21, Game.HotUpdate",
+            "GFGGame.MatchingCompetitionWorksView+<OnClickBtnItem>d__10, Game.HotUpdate",
+            "GFGGame.ChallengeRewardView+<OnBtnGoClick>d__16, Game.HotUpdate",
+            "GFGGame.FlipGameView+<<OnClickBtnBack>b__31_1>d, Game.HotUpdate",
+            "GFGGame.GameStartView+<ReqChallageReward>d__24, Game.HotUpdate",
+            "GFGGame.GameStartView+<OnClickBtnGameOne>d__26, Game.HotUpdate",
+            "GFGGame.MergeGameMaterialTipView+<OnHide>d__5, Game.HotUpdate",
+            "GFGGame.MergeGameView+<onDragEnd>d__31, Game.HotUpdate",
+            "GFGGame.MergeGameView+<OnClickSellBtn>d__34, Game.HotUpdate",
+            "GFGGame.MergeGameView+<OnClickAFuBtn>d__35, Game.HotUpdate",
+            "GFGGame.MergeGameView+<OnClickDouBaoBtn>d__36, Game.HotUpdate",
+            "GFGGame.MergeGameView+<SubmitTask>d__39, Game.HotUpdate",
+            "GFGGame.ResultTipsView+<OnClickAgain>d__18, Game.HotUpdate",
+            "GFGGame.ResultTipsView+<ReqResultReward>d__20, Game.HotUpdate",
+            "GFGGame.TZFEGameCheckView+<OnCheckChange>d__14, Game.HotUpdate",
+            "GFGGame.TZFEGameCheckView+<OnClickBtnGameOne>d__15, Game.HotUpdate",
+            "GFGGame.TZFEGameCheckView+<OnClickBtnGameTwo>d__16, Game.HotUpdate",
+            "GFGGame.TZFEGameCheckView+<OnClickBtnGameThree>d__17, Game.HotUpdate",
+            "GFGGame.TZFEGameView+Direction, Game.HotUpdate",
+            "GFGGame.TZFEGameView+NumPos, Game.HotUpdate",
+            "GFGGame.TZFEGameView+<>c, Game.HotUpdate",
+            "GFGGame.TZFEGameView+<<OnClickBtnBack>b__26_1>d, Game.HotUpdate",
+            "GFGGame.NewYearLoginView+<OnListItemClick>d__9, Game.HotUpdate",
+            "GFGGame.NewYearRedEnvelopeView+<BuyDoubleRedPacket>d__14, Game.HotUpdate",
+            "GFGGame.NewYearRedEnvelopeView+<ReqLeagueList>d__16, Game.HotUpdate",
+            "GFGGame.NoticeView+<OnListNoticeBtnGoClick>d__17, Game.HotUpdate",
+            "GFGGame.PoemGalleryPreviewView+<UpdateView>d__7, Game.HotUpdate",
+            "GFGGame.PoemGalleryPreviewView+<OnBtnCollectClick>d__11, Game.HotUpdate",
+            "GFGGame.PoemGalleryPreviewView+<OnBtnVoteClick>d__12, Game.HotUpdate",
+            "GFGGame.PoemGalleryPreviewView+<OnBtnAddFriendClick>d__13, Game.HotUpdate",
+            "GFGGame.PoemGalleryPreviewView+<<OnBtnDeleteClick>b__14_0>d, Game.HotUpdate",
+            "GFGGame.PoemGalleryView+<OnShown>d__18, Game.HotUpdate",
+            "GFGGame.PoemGalleryView+<ReqGalleryList>d__30, Game.HotUpdate",
+            "GFGGame.PoemGalleryView+<ReqGalleryRankList>d__33, Game.HotUpdate",
+            "GFGGame.PoemGalleryView+<OnBtnCollectClick>d__41, Game.HotUpdate",
+            "GFGGame.PoemGalleryView+<OnBtnVoteClick>d__42, Game.HotUpdate",
+            "GFGGame.PoemGalleryView+<OnPullDownRelease>d__51, Game.HotUpdate",
+            "GFGGame.PoemGalleryView+<OnPullUpToRefresh>d__53, Game.HotUpdate",
+            "GFGGame.PoemPhotoPreView+<<OnBtnLockClick>b__19_0>d, Game.HotUpdate",
+            "GFGGame.PoemPhotoPreView+<<OnBtnLockClick>b__19_1>d, Game.HotUpdate",
+            "GFGGame.PoemPhotoPreView+<<OnBtnUpClick>b__20_0>d, Game.HotUpdate",
+            "GFGGame.PoemPhotoPreView+<<OnBtnUpClick>b__20_1>d, Game.HotUpdate",
+            "GFGGame.PoemPhotoSaveView+<RefreshUI>d__10, Game.HotUpdate",
+            "GFGGame.PoemPhotoSaveView+<CaptureByUI>d__15, Game.HotUpdate",
+            "GFGGame.PoemPhotoView+<>c__DisplayClass21_0, Game.HotUpdate",
+            "GFGGame.PoemPhotoView+<>c__DisplayClass22_0, Game.HotUpdate",
+            "GFGGame.PoemPhotoView+<>c__DisplayClass23_0, Game.HotUpdate",
+            "GFGGame.PoemPhotoView+<>c__DisplayClass24_0, Game.HotUpdate",
+            "GFGGame.PoemPhotoView+<>c, Game.HotUpdate",
+            "GFGGame.PoemPhotoView+<CheckSaveLocal>d__31, Game.HotUpdate",
+            "GFGGame.PoemPhotoView+<<OnBtnConfirmDeleteClick>b__20_0>d, Game.HotUpdate",
+            "GFGGame.ExchangeGoodsView+<>c__DisplayClass9_0, Game.HotUpdate",
+            "GFGGame.ExchangeGoodsView+<OnBtnUseClick>d__13, Game.HotUpdate",
+            "GFGGame.BadgeChooseView+<>c, Game.HotUpdate",
+            "GFGGame.BadgeChooseView+<UpdateBadgeList>d__12, Game.HotUpdate",
+            "GFGGame.ChangeHeadView+<OnBtnSureClick>d__12, Game.HotUpdate",
+            "GFGGame.ChangeHeadView+<>c, Game.HotUpdate",
+            "GFGGame.ChangeNameView+<>c__DisplayClass10_0, Game.HotUpdate",
+            "GFGGame.ChangeNameView+<ChangeName>d__11, Game.HotUpdate",
+            "GFGGame.ChangeNameView+<RandomRoleName>d__12, Game.HotUpdate",
+            "GFGGame.ChangeThemeView+<OnClickBtnSure>d__14, Game.HotUpdate",
+            "GFGGame.ChangeThemeView+<OnClickBtnClear>d__15, Game.HotUpdate",
+            "GFGGame.GMPanelView+<SkipAllChapter>d__14, Game.HotUpdate",
+            "GFGGame.GMPanelView+<OnClickBtnSkipCheckOpen>d__15, Game.HotUpdate",
+            "GFGGame.GMPanelView+<OnClickBtnArenaGrade>d__16, Game.HotUpdate",
+            "GFGGame.GMPanelView+<OnClickBtnLeagueSkill>d__21, Game.HotUpdate",
+            "GFGGame.GMPanelView+<OnClickBtnAll>d__22, Game.HotUpdate",
+            "GFGGame.InputGiftCodeView+<OnClickBtnSure>d__4, Game.HotUpdate",
+            "GFGGame.MainBgChooseView+<PicAdaption>d__13, Game.HotUpdate",
+            "GFGGame.MainBgChooseView+<>c, Game.HotUpdate",
+            "GFGGame.MainBgChooseView+<UpdateSaveDressUpBgToggleState>d__18, Game.HotUpdate",
+            "GFGGame.OtherRoleInfoView+<OnShown>d__6, Game.HotUpdate",
+            "GFGGame.PersonalPhotoView+<OnListItemClick>d__9, Game.HotUpdate",
+            "GFGGame.PhoneBindingView+<OnBtnSureClick>d__10, Game.HotUpdate",
+            "GFGGame.PhoneBindingView+<OnBtnGetCode>d__11, Game.HotUpdate",
+            "GFGGame.RoleInfoView+<OnFocuseOut>d__18, Game.HotUpdate",
+            "GFGGame.RoleInfoView+<UpdateAllInfo>d__31, Game.HotUpdate",
+            "GFGGame.SettingView+<>c, Game.HotUpdate",
+            "GFGGame.RoleInfoRegisterView+<OnBtnGetCode>d__6, Game.HotUpdate",
+            "GFGGame.BrocadeWeavTaskView+<>c, Game.HotUpdate",
+            "GFGGame.BrocadeWeavTaskView+<OnBtnGetClick>d__16, Game.HotUpdate",
+            "GFGGame.BrocadeWeavTaskView+<OnBtnGetAllClick>d__18, Game.HotUpdate",
+            "GFGGame.ItemExchangeView+<ReqBuyGoodsAsync>d__17, Game.HotUpdate",
+            "GFGGame.StoreBrocadeWeavView+<>c, Game.HotUpdate",
+            "GFGGame.StoreBrocadeWeavView+<OnBtnGetClick>d__13, Game.HotUpdate",
+            "GFGGame.StoreBrocadeWeavView+<OnBtnGetAllClick>d__16, Game.HotUpdate",
+            "GFGGame.StoreGrowthFundView+<OnBtnGetClick>d__15, Game.HotUpdate",
+            "GFGGame.StoreMonthView+<OnBtnGetClick>d__15, Game.HotUpdate",
+            "GFGGame.StoreMonthView+<OnClickBtnBuy>d__17, Game.HotUpdate",
+            "GFGGame.StorePayPropView+<OnVxBtnBuyClick>d__8, Game.HotUpdate",
+            "GFGGame.StorePayPropView+<OnAliBtnBuyClick>d__9, Game.HotUpdate",
+            "GFGGame.StorePayPropView+<OnCloseClick>d__10, Game.HotUpdate",
+            "GFGGame.StoreSummerGiftView+<OnBtnOpenClick>d__9, Game.HotUpdate",
+            "GFGGame.StoreSummerGiftView+<OnBtnGetAllClick>d__10, Game.HotUpdate",
+            "GFGGame.WeekGiftView+<GetVipWeekGiftBag>d__8, Game.HotUpdate",
+            "GFGGame.BattlePassTaskView+<>c, Game.HotUpdate",
+            "GFGGame.BattlePassTaskView+<OnBtnGetClick>d__12, Game.HotUpdate",
+            "GFGGame.BattlePassTaskView+<OnBtnGetAllClick>d__14, Game.HotUpdate",
+            "GFGGame.BuyBattlePassLevelView+<OnRequestAddLevel>d__9, Game.HotUpdate",
+            "GFGGame.CombTaskController+<>c, Game.HotUpdate",
+            "GFGGame.CombTaskController+<OnBtnGetClick>d__14, Game.HotUpdate",
+            "GFGGame.CombTaskController+<OnBtnGetAllClick>d__16, Game.HotUpdate",
+            "GFGGame.TaskAchieveDetailView+<OnBtnGetClick>d__16, Game.HotUpdate",
+            "GFGGame.TaskAchieveView+<UpdateInfo>d__9, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelInfoView+<OnShown>d__12, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelInfoView+<OnClickRankBtn>d__29, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelInfoView+<ReqGetLevelRank>d__31, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelRankView+<TimeUpdate>d__14, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelRankView+<OnBtnLookClick>d__16, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelRankView+<ReqGetLevelRank>d__18, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelRewardView+<GetLevelRewardBtn>d__10, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelRewardView+<OnBtnGetClcik>d__11, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelView+<OnBtnGetProBonus>d__18, Game.HotUpdate",
+            "GFGGame.TimeTracingLevelView+<OnClickRankBtn>d__19, Game.HotUpdate",
+            "GFGGame.TimeTracingShowView+<OnClickChallgeBtn>d__12, Game.HotUpdate",
+            "GFGGame.TimeTracingShowView+<ReqSetData>d__17, Game.HotUpdate",
+            "GFGGame.TimeTracingSuitRankView+<OnBtnLookClick>d__16, Game.HotUpdate",
+            "GFGGame.TimeTracingSuitRankView+<TimeUpdate>d__18, Game.HotUpdate",
+            "GFGGame.TimeTracingSuitRankView+<ReqGetSuitRank>d__19, Game.HotUpdate",
+            "GFGGame.TravelDressupView+<OnBtnGoClick>d__15, Game.HotUpdate",
+            "GFGGame.TravelRewardView+<OnBtnGetClick>d__10, Game.HotUpdate",
+            "GFGGame.TravelTimeDetailView+<SpeedUp>d__11, Game.HotUpdate",
+            "GFGGame.TurnTableTipsView+<OnClickBtnSure>d__13, Game.HotUpdate",
+            "GFGGame.TurnTableView+<OnClickRewardItem>d__35, Game.HotUpdate",
+            "GFGGame.TurnTableView+<OnClickBtnStartOne>d__37, Game.HotUpdate",
+            "GFGGame.TurnTableView+<OnClickBtnStartThree>d__38, Game.HotUpdate",
+            "GFGGame.TurnTableView+<OnBuyItem>d__39, Game.HotUpdate",
+            "GFGGame.TurnTableView+<>c, Game.HotUpdate",
+            "GFGGame.TurnTableView+<TurnStart>d__43, Game.HotUpdate",
+            "GFGGame.TurnTableView+<>c__DisplayClass44_0, Game.HotUpdate",
+            "GFGGame.ViewAnimationFactory+<>c__DisplayClass0_0, Game.HotUpdate",
+            "<PrivateImplementationDetails>+__StaticArrayInitTypeSize=16, Game.HotUpdate",
+            "<PrivateImplementationDetails>+__StaticArrayInitTypeSize=20, Game.HotUpdate",
+            "<PrivateImplementationDetails>+__StaticArrayInitTypeSize=24, Game.HotUpdate",
+            "<PrivateImplementationDetails>+__StaticArrayInitTypeSize=28, Game.HotUpdate",
+            "<PrivateImplementationDetails>+__StaticArrayInitTypeSize=40, Game.HotUpdate",
+            "<PrivateImplementationDetails>+__StaticArrayInitTypeSize=46, Game.HotUpdate",
+            "<PrivateImplementationDetails>+__StaticArrayInitTypeSize=96, Game.HotUpdate",
+            "ET.ObjectWait+<>c__DisplayClass4_0`1+<<Wait>g__WaitTimeout|0>d, Game.HotUpdate",
+            "ET.ETTaskHelper+CoroutineBlocker+<WaitAsync>d__3, Game.HotUpdate",
+            "ET.ETTaskHelper+<>c__DisplayClass1_0`1+<<WaitAny>g__RunOneTask|0>d, Game.HotUpdate",
+            "ET.ETTaskHelper+<>c__DisplayClass2_0+<<WaitAny>g__RunOneTask|0>d, Game.HotUpdate",
+            "ET.ETTaskHelper+<>c__DisplayClass3_0`1+<<WaitAll>g__RunOneTask|0>d, Game.HotUpdate",
+            "ET.ETTaskHelper+<>c__DisplayClass4_0`1+<<WaitAll>g__RunOneTask|0>d, Game.HotUpdate",
+            "ET.ETTaskHelper+<>c__DisplayClass5_0+<<WaitAll>g__RunOneTask|0>d, Game.HotUpdate",
+            "ET.ETTaskHelper+<>c__DisplayClass6_0+<<WaitAll>g__RunOneTask|0>d, Game.HotUpdate",
+            "ET.M2C_TaskResetHandler+M2C_AchievementTaskTypeChangeHandler+<Run>d__0, Game.HotUpdate",
+            "GFGGame.PhotographSceneManager+<>c__DisplayClass7_0+<<UpdatePhotographBody>b__0>d, Game.HotUpdate",
+            "GFGGame.SceneController+<>c__DisplayClass1_1+<<UpdateDialogBg>g__LastBgFadeOut|0>d, Game.HotUpdate",
+            "GFGGame.SceneController+<>c__DisplayClass4_0+<<UpdateDialogPic>g__UpdateDialogPicAlpha|0>d, Game.HotUpdate",
+            "GFGGame.FieldSProxy+FieldTaskState+<Run>d__0, Game.HotUpdate",
+            "GFGGame.ActivityHuaRongDaoView+<>c__DisplayClass30_0+<<Win>b__0>d, Game.HotUpdate",
+            "GFGGame.PhotographView+<>c__DisplayClass60_0+<<ScreenShotTex>b__0>d, Game.HotUpdate",
+            "GFGGame.PhotographView+<>c__DisplayClass60_0+<<ScreenShotTex>b__1>d, Game.HotUpdate",
+            "GFGGame.FieldView+<>c__DisplayClass13_0+<<UpdateStroyFightResult>b__0>d, Game.HotUpdate",
+            "GFGGame.FieldView+<>c__DisplayClass13_0+<<UpdateStroyFightResult>b__1>d, Game.HotUpdate",
+            "GFGGame.LeagueJoinView+<>c__DisplayClass15_0+<<OnBtnJoinClick>b__0>d, Game.HotUpdate",
+            "GFGGame.LeagueMemberAppointView+<>c__DisplayClass9_0+<<OnBtnAppointClick>b__1>d, Game.HotUpdate",
+            "GFGGame.LeagueMemberView+<>c+<<OnBtnExitClick>b__13_1>d, Game.HotUpdate",
+            "GFGGame.LuckyBoxView+<>c__DisplayClass38_0+<<OnClickBtnBuyOne>b__0>d, Game.HotUpdate",
+            "GFGGame.LuckyBoxView+<>c__DisplayClass39_0+<<OnClickBtnBuyTen>b__0>d, Game.HotUpdate",
+            "GFGGame.LuckyBoxView+<>c__DisplayClass40_0+<<OnClickBtnBuyFifty>b__0>d, Game.HotUpdate",
+        };
+    }
+}

+ 3 - 0
GameClient/Assets/Game/HotUpdate/PreGeneratedTypes.cs.meta

@@ -0,0 +1,3 @@
+fileFormatVersion: 2
+guid: 91a90f030794445ba41df4816624634d
+timeCreated: 1744644445

+ 35 - 18
GameClient/Assets/Game/Launcher/HotUpdateProxy/HotUpdateCodeLoader.cs

@@ -11,15 +11,6 @@ namespace GFGGame
 {
     public class HotUpdateCodeLoader : SingletonMonoBase<HotUpdateCodeLoader>
     {
-        public static List<string> AOTMetaAssemblyNames { get; } = new List<string>()
-        {
-            "mscorlib.dll",
-            "System.dll",
-            "System.Core.dll",
-            "Game.Launcher.dll",
-            "ThirdParty.dll"
-        };
-
         public Type[] allTypes;
 
         public Type[] GetTypes()
@@ -34,20 +25,46 @@ namespace GFGGame
 
         public void StartLoad()
         {
-            Debug.Log("StartLoad - WebGL version (no hot update)");
-            StartCoroutine(LoadGameScene());
+            StartCoroutine(StartLoadAssemblyHotfix());
         }
 
-        IEnumerator LoadGameScene()
+        IEnumerator StartLoadAssemblyHotfix()
         {
-            // 这里可以添加一些加载前的准备工作
-            Debug.Log("Preparing to load game scene...");
+            yield return new WaitForSeconds(0.1f);
+
+            var dllPath = $"{LauncherConfig.DllDirHotfix}Game.HotUpdate.dll.bytes";
+            var handle = YooAssets.LoadAssetAsync<TextAsset>(dllPath);
+            yield return handle;
+
+            var asset = handle.AssetObject as TextAsset;
 
-            // 直接加载游戏场景
-            var sceneHandle = YooAssets.LoadSceneAsync("Assets/ResIn/Scene/HotUpdate.unity");
-            yield return sceneHandle;
+            // WebGL平台特殊处理
+            LoadAssemblyForWebGL(asset.bytes);
+
+            handle.Release();
+
+            // 加载热更新场景
+            YooAssets.LoadSceneAsync("Assets/ResIn/Scene/HotUpdate.unity");
+        }
 
-            Debug.Log("Game scene loaded successfully");
+        void LoadAssemblyForWebGL(byte[] dllBytes)
+        {
+            // WebGL平台下需要使用JavaScript互操作来加载程序集
+            // 这里需要实现一个JavaScript插件来实际加载程序集
+
+            // 示例代码,实际实现可能需要与你的JavaScript插件配合
+            string dllContent = Convert.ToBase64String(dllBytes);
+            Application.ExternalCall("LoadHotUpdateAssembly", dllContent);
+
+            // 注意:在WebGL下可能无法直接获取所有类型,需要根据实际情况调整
+            this.allTypes = new Type[0]; // 可能需要从JS端获取类型信息
+            Debug.Log($"调试 LoadAssemblyForWebGL :{this.allTypes.Length}");
+        }
+
+        void LoadAssemblyJustInTime(Assembly assembly)
+        {
+            // 常规平台加载方式
+            this.allTypes = assembly.GetTypes();
         }
     }
 }

+ 1 - 0
GameClient/GameClient.sln.DotSettings.user

@@ -1,6 +1,7 @@
 <wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
 	<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ABuildResult_002Ecs_002Fl_003AC_0021_003FUsers_003Fadmin_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FDecompilerCache_003Fdecompiler_003F8d4895b259be41298a685a0c9b42357576b400_003Fa9_003Fbef924de_003FBuildResult_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
 	<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AEditorUtility_002Ecs_002Fl_003AC_0021_003FUsers_003Fss510_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E2_003Fresharper_002Dhost_003FDecompilerCache_003Fdecompiler_003F8d4895b259be41298a685a0c9b42357576b400_003F3f_003Fa805acc1_003FEditorUtility_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
+	<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AMemberInfo_002Ecs_002Fl_003AC_0021_003FUsers_003Fss510_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FDecompilerCache_003Fdecompiler_003F9c2967a135e648bdb993c5397a44991b573620_003F69_003F4bdfd6bb_003FMemberInfo_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
 	<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AMethodInfo_002Ecs_002Fl_003AC_0021_003FUsers_003Fss510_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FDecompilerCache_003Fdecompiler_003Fb18a8b3398e74bca86895881dd02956c573648_003F94_003Fb7912d02_003FMethodInfo_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
 	<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AMonoBehaviour_002Ecs_002Fl_003AC_0021_003FUsers_003Fss510_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FDecompilerCache_003Fdecompiler_003F683a2b31bf9142429c44f02c75dbc6c913ce00_003F2e_003F343a2d95_003FMonoBehaviour_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
 	<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AOptionAttribute_002Ecs_002Fl_003AC_0021_003FUsers_003Fss510_003FAppData_003FRoaming_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FDecompilerCache_003Fdecompiler_003F16134578226e4e409ecbdd10473cf8f235000_003F4e_003Fb8b5740c_003FOptionAttribute_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>