Jelajahi Sumber

Merge branch 'main' of ssh://192.168.0.8:29418/xianjing into hy_ru

# Conflicts:
#	Assets/Content/Config/LanguagePackage_cn.csv
#	Assets/Content/Fonts/VAGRoundedStdRegularSDF.asset
#	Build/BuildDependenceResource/CurPackEnv.ini
gdl_123 3 bulan lalu
induk
melakukan
5275dc0ae6
45 mengubah file dengan 3367 tambahan dan 338 penghapusan
  1. 164 129
      Assets/Content/Prefabs/UI/UIRoleMessage/UIExchangeCode.prefab
  2. 365 80
      Assets/Content/Prefabs/UI/UISettings/UISettings.prefab
  3. 346 58
      Assets/Content/Prefabs/UI/UIWaiting/UIWaiting.prefab
  4. 71 1
      Assets/Editor/CsvToLua/CsvToLua.cs
  5. 1296 0
      Assets/Editor/CsvToLua/luaCopyFileCfg.lua
  6. 7 0
      Assets/Editor/CsvToLua/luaCopyFileCfg.lua.meta
  7. 2 0
      Assets/Lua/Core/Constant.lua
  8. 5 5
      Assets/Lua/Core/PlatformPack.lua
  9. 4 0
      Assets/Lua/Enum/ProtoMsgId.lua
  10. 5 0
      Assets/Lua/Enum/UIEventNames.lua
  11. 79 0
      Assets/Lua/Managers/AccountInfoMgr.lua
  12. 7 0
      Assets/Lua/Managers/AccountInfoMgr.lua.meta
  13. 7 0
      Assets/Lua/Managers/LuaUIMgr.lua
  14. 3 1
      Assets/Lua/Managers/ManagerContainer.lua
  15. 11 2
      Assets/Lua/Pb/login.txt
  16. TEMPAT SAMPAH
      Assets/Lua/Pb/messagedefclient.txt
  17. 8 4
      Assets/Lua/Pb/protocal.txt
  18. 7 7
      Assets/Lua/UI/Common/ChatTextItemCtr.lua
  19. 7 7
      Assets/Lua/UI/Common/PrivateChatItemCtr.lua
  20. 5 1
      Assets/Lua/UI/UICommonTips/UINoticeTipsView.lua
  21. 1 0
      Assets/Lua/UI/UIRoleMessage/UIRoleMessageView.lua
  22. 97 1
      Assets/Lua/UI/UISettings/UISettingsView.lua
  23. 138 6
      Assets/Lua/UI/UISettings/UISettingsView_Generate.lua
  24. 18 0
      Assets/Lua/UI/UIWaiting/UIWaitingCtr.lua
  25. 57 1
      Assets/Lua/UI/UIWaiting/UIWaitingView.lua
  26. 66 0
      Assets/Lua/UI/UIWaiting/UIWaitingView_Generate.lua
  27. 4 4
      Assets/Src/Core/DownLoad/AssetDownloader.cs
  28. 1 1
      Assets/Src/Core/DownLoad/DownloadTask.cs
  29. 3 3
      Assets/Src/GameLogic/LaunchLoadMgr.cs
  30. 1 1
      Build/BuildDependenceResource/CurPackEnv.ini
  31. TEMPAT SAMPAH
      Build/BuildDependenceResource/Login/港澳台_new/img_login00.png
  32. 132 0
      Build/BuildDependenceResource/Login/港澳台_new/img_login00.png.meta
  33. TEMPAT SAMPAH
      Build/BuildDependenceResource/Login/港澳台_new/img_login01.png
  34. 132 0
      Build/BuildDependenceResource/Login/港澳台_new/img_login01.png.meta
  35. TEMPAT SAMPAH
      Build/BuildDependenceResource/Login/港澳台_new/img_login02.png
  36. 132 0
      Build/BuildDependenceResource/Login/港澳台_new/img_login02.png.meta
  37. TEMPAT SAMPAH
      Build/BuildDependenceResource/Logo/Tw-new.png
  38. 116 8
      Build/BuildDependenceResource/PackConfig.json
  39. 10 1
      Build/BuildDependenceResource/Plugins/SDKBridge/Android_en_hx/YouYiSDKAndroid.cs
  40. 10 1
      Build/BuildDependenceResource/Plugins/SDKBridge/Quick_andriod_hy_en/YouYiSDKAndroid.cs
  41. 4 0
      ProtocolGen/proto/ProtoMsgId.lua
  42. 17 0
      ProtocolGen/proto/login.proto
  43. 4 0
      ProtocolGen/proto/messagedefclient.proto
  44. 4 0
      ProtocolGen/proto/protocal.proto
  45. 21 16
      README.md

File diff ditekan karena terlalu besar
+ 164 - 129
Assets/Content/Prefabs/UI/UIRoleMessage/UIExchangeCode.prefab


File diff ditekan karena terlalu besar
+ 365 - 80
Assets/Content/Prefabs/UI/UISettings/UISettings.prefab


File diff ditekan karena terlalu besar
+ 346 - 58
Assets/Content/Prefabs/UI/UIWaiting/UIWaiting.prefab


+ 71 - 1
Assets/Editor/CsvToLua/CsvToLua.cs

@@ -172,6 +172,11 @@ return aaa";
         {
             B2T("D:/项目/其他/Language15000-19000.csv", "D:/项目/其他/111.csv",Encoding.UTF8);
         }
+
+        if (GUILayout.Button("复制luacfg文件"))
+        {
+            CopyFleByLuaCfg("Assets\\Editor\\CsvToLua\\luaCopyFileCfg.lua", "", "D:/项目/图/仙境/cn/","_cn");
+        }
     }
 
     public static string GetFilePath()
@@ -725,7 +730,7 @@ return aaa";
 
                     string field = fieldValue.RawGet<string, string>("field");
                     string value = fieldValue.RawGet<string, string>("value");
-
+                    
                     SetLuaLine(rowDatas,id,field,value.ToString(),"{0},");
                     
                 }
@@ -737,6 +742,71 @@ return aaa";
         File.WriteAllLines(outputPath, rowDatas);
     }
 
+    private static void CopyFleByLuaCfg(string luacfgpath, string fileRootPath,string outputPath,string output)
+    {
+
+        using (LuaState runTime = new LuaState())
+        {
+            runTime.Start();
+            LuaTable luaTable = runTime.DoFile<LuaTable>(luacfgpath);
+
+            LuaFunction init_fun = luaTable.GetLuaFunction("Init");
+            LuaFunction SetOutput_fun = luaTable.GetLuaFunction("SetOutput");
+            LuaFunction GetNextCfg_fun = luaTable.GetLuaFunction("GetNextCfg");
+            LuaFunction GetLen_fun = luaTable.GetLuaFunction("GetLen");
+           
+            init_fun.Call<LuaTable>(luaTable);
+            SetOutput_fun.Call<LuaTable, string>(luaTable, output);
+            int len = GetLen_fun.Invoke<LuaTable,int>(luaTable);
+            int curindex = 1;
+            EditorUtility.DisplayProgressBar("复制中", $"开始复制", 0);
+            string metastr = ".meta";
+            while (true)
+            {
+                EditorUtility.DisplayProgressBar("复制中", $"复制{curindex}/{len}", curindex/len);
+                curindex++;
+                LuaTable cfg = GetNextCfg_fun.Invoke<LuaTable, LuaTable>(luaTable);
+                //{result = false,path = path,outputPath = outputPath}
+                bool result = cfg.RawGet<string, bool>("result");
+                if (result)
+                {
+                    string path = cfg.RawGet<string, string>("path");
+                    string _outputPath = cfg.RawGet<string, string>("outputPath");
+                    string filePath = fileRootPath + path;
+                    string fileOutputPath = outputPath + _outputPath;
+
+                    if (path.Contains(".psd"))
+                    {
+                        Debug.Log($"不复制psd文件:[{path}]");
+                        continue;
+                    }
+
+                  
+
+                    FileHelper.CreateDir(FileHelper.PathRemoveBack(fileOutputPath));
+                    if (File.Exists(filePath))
+                    {
+                        File.Copy(filePath, fileOutputPath, true);
+                       
+                        if (!path.Contains(metastr))
+                        {
+                            File.Copy(filePath+ metastr, fileOutputPath+ metastr, true);
+                        }
+                    }
+                       
+                    else
+                    {
+                        Debug.Log($"不存在文件:[{filePath}]");
+                    }
+                }
+                else
+                {
+                    break;
+                }
+            }
+            EditorUtility.ClearProgressBar();
+        }
+    }
     struct lgInfo 
     {
        public int index;

+ 1296 - 0
Assets/Editor/CsvToLua/luaCopyFileCfg.lua

@@ -0,0 +1,1296 @@
+local luaCopyFileCfg= {}
+-- basepath  基础路径
+-- path      文件上层路径   
+-- outputDis  输出后的文件上层路径
+-- fileName  文件名
+luaCopyFileCfg.FileCfg ={
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "active_icon_jie.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "active_icon_shier.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "active_icon_sichun.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "active_icon_taqinhaoli.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "active_icon_taqinqiandao.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "activitycharge_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "arborday_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "artifactsummon3_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "artifactsummon_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "beginershop_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "cardexchange_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "childrensday_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "christmas_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "comingsoon_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "compositetask1_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "compositetask2_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "cumulative_recharge1_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "cumulative_recharge2_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "dailyrecharge7_bt_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "dailyrecharge_bt_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "dailyrecharge_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "duihuanhaoli_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "firstrecharge02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "forthnightlogin1_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "forthnightlogin_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "fortnighttask_cn_14.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "fortnighttask_cn_7.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "fortnighttask_cn_7.png.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday10_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday10bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday11_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday13_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday13bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday15_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday15bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday16_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday16bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday17_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday17bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday18_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday18bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday2_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday3_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday3bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday4_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday4bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday5_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday5bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday6bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday7_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday7bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday9_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday9bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessdaybg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "guoqingjie_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "holiday520_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_banner_arborday_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_banner_forthnightlogin1_cn.png",															 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_banner_forthnightlogin_cn.png",																 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_banner_petexchange.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_club_limited_banner14.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_club_limited_banner82.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_club_limited_banner85.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_fortnighttask_cn_14.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_fortnighttask_cn_7.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_guoqingjie_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_kingtask_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_laodongjie_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_shuang11Signin_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_summertask_cn_14.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "kingtask_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "laodongjie_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "monthrecharge_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "naoyuanxiao_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_01_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_02_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_03_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_04_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_05_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_06_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_07_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_08_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_09_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_10_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_11_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_12_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_13_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_14_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_15_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_16_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "qiugaoqishuang_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "shuang11Signin_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "shuang11charge1_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "shuang11charge2_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "shuang11charge3_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "shuang12charge1_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "shuang12charge2_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "sign_daily_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "smasheggs_bt_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "summercharge_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "summergoldaward_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "summerlogin_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "summerparty_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "summertask_cn_14.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "superartifactsummon_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "supercharge_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "BossImg",    fileName = "bossimg_qingtuan.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_001_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_002_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_003_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_004_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_005_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_006_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_007_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_008_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_009_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_009_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_009_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_010_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_010_down_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_010_down_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_011_cn.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_011_cn.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_011_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_012_cn.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_012_cn.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_012_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_013_cn.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_013_cn.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_013_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_014_cn.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_014_cn.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_014_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_015_cn.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_015_cn.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_015_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_016_cn.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_016_cn.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_016_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_017_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_017_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_017_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_018_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_018_down_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_018_down_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_019_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_019_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_019_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_020_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_020_down_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_020_down_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_021_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_022_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_023_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_023_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_023_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_024_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_024_down_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_024_down_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_025_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_026_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_026_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_026_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_027_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_028_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_028_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_028_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_029_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_030_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_030_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_030_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_031_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_031_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_031_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_032_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_032_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_032_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_033_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_033_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_033_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_034_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_034_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_034_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_035_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_036_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_036_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_036_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_037_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_038_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_038_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_038_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_atk_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_atk_down_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_atk_down_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_atk_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_atk_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_atk_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_broken_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_broken_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_broken_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_crit_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_crit_down_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_crit_down_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_crit_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_crit_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_crit_up_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_def_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_def_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_dodge_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_dodge_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_dodge_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_immune_up_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_immune_up_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_immune_up_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_shield_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_shield_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_shield_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_shield_up_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_shield_up_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_shield_up_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_speed_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_speed_up_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Common",    fileName = "ic_res_daijinquan.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Common",    fileName = "ic_res_newyear_coin.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_01.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_01.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_01.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_02.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_02.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_02.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_03.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_03.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_03.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_04.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_04.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_04.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_05.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_05.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_05.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_06.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_06.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_06.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_07.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_07.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_07.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_08.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_08.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_08.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_09.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_09.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_09.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_10.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_10.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_10.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_11.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_11.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_11.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_12.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_12.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_12.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_13.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_13.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_13.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_14.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_14.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_14.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_15.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_15.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_15.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_16.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_16.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_16.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_17.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_17.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_17.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_18.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_18.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_18.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_19.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_19.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_19.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_20.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_20.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_20.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_101.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_102.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_103.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_104.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_105.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_111.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_113.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_117.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_203.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_204.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_205.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_206.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_207.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_208.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_209.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_301.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_302.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_303.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_304.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_305.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_306.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_307.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_309.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_313.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_315.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_316.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_317.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_318.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_319.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_323.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_324.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_403.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_404.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_405.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_406.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_407.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_408.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_409.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_410.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_412.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_413.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_414.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_417.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_418.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_419.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_420.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_422.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_423.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_424.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_503.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_504.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_505.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_506.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_507.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_510.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_510.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_510.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_511.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_512.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_601.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_602.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_603.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_604.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_605.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_606.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_607.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_608.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_609.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_610.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_611.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_612.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_613.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_614.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_615.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_616.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_617.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_618.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_619.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_620.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_621.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_622.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_623.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_624.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_625.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_626.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_627.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_628.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_629.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_630.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "chatdesignation_201.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "chatdesignation_202.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "chatdesignation_401.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "chatdesignation_402.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "chatdesignation_501.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "chatdesignation_502.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg01.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg01.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg01.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg02.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg03.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg03.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg03.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg04.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg04.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg04.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg05.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg05.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg05.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg06.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg06.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg06.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg07.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg07.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg07.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg08.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg08.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg08.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "FrameNew",    fileName = "frame_ic_contract.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "FrameNew",    fileName = "frame_ic_follow.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "FrameNew",    fileName = "frame_ic_follow_r.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "FrameNew",    fileName = "frame_ic_follow_s.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "HeadFrame",    fileName = "HeadFrameIcon_15011.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "HeadFrame",    fileName = "HeadFrameIcon_15021.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "HeadFrame",    fileName = "HeadFrame_15011.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "HeadFrame",    fileName = "HeadFrame_15021.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "designation324.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "designationmonth1.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "designationmonth2.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "designationtoptower.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_baishatang.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_coinz_12h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_coinz_1h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_coinz_4h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_coinz_8h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_expbase_12h.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_expbase_1h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_expbase_4h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_expbase_8h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_exppt_12h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_exppt_1h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_exppt_4h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_exppt_8h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_guild_demonbox0.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_newyear_box.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_newyear_coin.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_newyearbox1.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_newyearbox2.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_newyearbox3.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_nuomifen.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_ruyi.png",																						 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_ruyideng.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_skillexp_12h.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_skillexp_1h.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_skillexp_4h.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_skillexp_8h.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_tangyuan_dousha.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_tangyuan_guihua.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_tangyuan_zhima.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_tanyuan_shenmi.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_tiaoliao.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_ai.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_dan.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_gao.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_huan.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_jian.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_kuai.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_kuang.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_le.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_nian.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_qi.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_qing.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_qiu.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_shuang.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_shuang1.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_xin.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_zheng.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_yuanxiaolihe.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_adv_01_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_adv_02_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_adv_sale_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_dojo_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_dojo_sale_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_idol_sale_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_pet_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_pet_sale_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_skill_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_skill_sale_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_tower_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_tower_guildwar_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_tower_sale_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_idol_adv_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_idol_adv_01_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_idol_adv_01_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_idol_adv_02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_idol_adv_02_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_idol_adv_02_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_01_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_01_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_02_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_02_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_03_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_03_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_03_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_04_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_04_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_04_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_01_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_01_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_02_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_02_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_03_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_03_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_03_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_04_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_04_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_04_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_01_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_01_cn.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_01_cn.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_02_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_02_cn.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_02_cn.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_03_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_03_cn.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_03_cn.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_04_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_04_cn.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_04_cn.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_01_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_01_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_02_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_02_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_03_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_03_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_03_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_04_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_04_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_04_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_01_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_01_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_02_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_02_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_03_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_04_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_04_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_04_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_01_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_01_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_02_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_02_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_03_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_03_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_03_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_04_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_04_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_04_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Acolyte.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Acolyte_2a.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Acolyte_2a_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Acolyte_2b.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Acolyte_2b_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2a.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2a.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2a.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2a_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2a_pro.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2a_pro.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2b.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2b.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2b.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2b_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2b_pro.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2b_pro.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Mage.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Mage_2a.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Mage_2a_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Mage_2b.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Mage_2b_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2a.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2a.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2a.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2a_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2a_pro.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2a_pro.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2b.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2b.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2b.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2b_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2b_pro.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2b_pro.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Thief.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Thief_2a.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Thief_2a_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Thief_2b.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Thief_2b_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Label_Lead_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Label_Lead_tw.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Label_Up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Label_Up_tw.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "img_club_limited_banner14.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "ic_reshop_banner.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "ic_shop_08.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner03.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner03.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner03.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner04.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner04.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner04.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner05.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner05.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner05.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner06.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner06.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner06.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner01.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner01.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner01.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner02.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner02.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner02.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner07.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner07.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner07.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner09.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner09.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner09.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner10.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner10.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner10.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner100.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner100.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner100.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner101.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner101.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner101.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner102.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner102.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner102.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner103.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner103.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner103.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner104.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner104.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner108.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner104.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner105.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner105.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner105.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner106.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner106.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner106.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner107.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner107.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner107.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner108.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner108.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner109.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner109.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner109.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner11.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner11.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner11.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner110.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner110.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner110.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner111.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner111.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner111.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner112.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner112.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner112.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner113.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner113.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner113.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner114.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner114.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner114.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner115.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner115.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner115.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner116.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner116.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner116.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner117.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner117.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner117.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner118.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner119.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner119.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner119.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner12.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner12.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner12.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner120.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner120.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner120.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner121.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner121.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner121.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner122.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner122.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner122.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner123.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner123.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner123.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner124.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner124.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner124.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner125.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner125.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner125.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner126.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner126.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner126.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner127.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner127.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner127.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner128.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner128.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner128.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner129.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner129.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner129.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner130.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner130.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner130.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner131.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner131.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner131.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner132.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner132.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner132.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner133.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner133.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner133.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner134.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner134.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner134.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner14.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner14.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner14.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner16.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner16.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner16.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner17.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner17.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner17.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner18.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner18.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner18.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner19.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner19.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner19.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner20.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner20.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner20.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner21.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner21.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner21.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner22.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner22.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner22.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner23.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner23.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner23.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner24.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner24.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner24.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner25.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner25.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner25.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner26.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner26.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner26.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner27.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner27.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner27.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner28.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner28.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner28.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner29.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner29.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner29.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner30.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner30.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner30.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner31.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner31.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner31.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner32.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner32.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner32.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner33.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner33.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner33.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner34.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner34.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner34.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner35.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner35.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner35.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner36.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner36.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner36.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner37.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner37.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner37.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner38.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner38.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner38.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner39.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner39.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner39.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner40.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner40.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner40.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner42.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner42.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner42.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner46.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner46.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner46.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner47.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner47.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner47.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner48.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner48.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner48.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner51.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner51.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner51.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner52.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner52.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner52.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner53.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner53.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner53.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner55.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner55.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner55.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner58.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner58.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner58.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner59.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner59.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner59.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner60.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner60.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner60.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner61.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner61.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner61.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner62.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner62.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner62.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner63.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner63.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner63.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner64.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner64.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner64.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner65.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner65.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner65.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner68.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner68.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner68.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner69.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner69.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner69.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner70.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner70.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner70.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner71.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner71.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner71.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner72.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner72.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner72.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner73.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner73.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner73.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner74.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner74.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner74.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner75.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner75.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner75.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner78.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner78.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner78.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner79.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner79.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner79.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner80.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner80.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner80.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner82.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner84.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner85.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner88.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner89.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner89.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner89.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner90.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner90.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner90.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner91.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner91.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner91.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner92.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner92.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner92.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner93.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner93.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner93.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner94.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner94.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner94.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner95.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner95.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner95.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner96.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner96.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner96.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner97.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner97.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner97.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner98.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner98.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner98.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner99.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner99.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner99.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_1.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_10.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_100.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_10k.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_1k.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_5.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_50.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_500.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_5k.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_10.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_10.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_10.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_100.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_100.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_100.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1000.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1000.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_100w.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_100w.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_100w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_10w.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_10w.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_10w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1200.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_12000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_128.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_128.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_128.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1280.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1280.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1280.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_12w8.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_12w8.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_12w8.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1800.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_18000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1w.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1w.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1w28.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1w28.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1w28.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_200w.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_200w.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_200w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_20w.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_20w.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_20w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_30.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_30.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_30.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_300.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_300.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_300.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3000.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3000.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_30000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_328.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_328.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_328.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3280.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3280.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3280.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_32w8.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_32w8.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_32w8.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3w.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3w.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3w28.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3w28.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3w28.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_500w.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_500w.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_500w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_50w.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_50w.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_50w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6.psd.meta",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_60.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_60.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_60.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_600.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_648.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_648.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_648.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6480.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6480.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6480.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_64w8.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_64w8.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_64w8.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6800.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_68000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6w48.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6w48.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6w48.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_98.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_98.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_98.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_980.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_980.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_980.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_9800.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_9800.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_9800.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_9w8.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_9w8.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_9w8.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_0.99_ro.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_1.99_ro.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_14.99_ro.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_19.99_ro.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_2.99_ro.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_4.99_ro.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_49.99_ro.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_9.99_ro.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_99.99_ro.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "txt_club_first.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "txt_club_free_extra_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "xianxiaLB1.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "xianxiaLB2.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "zhanxinshiLB1.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "zhanxinshiLB2.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Skills",    fileName = "bs-axiuluobafengquan.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "TurntableImg",    fileName = "turntable_title_61.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_lanwei1.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_lanwei2.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_lanwei3.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_lanwei4.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_petslot1.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_petslot2.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_petslot3.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_petslot4.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_petslot5.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_petslot6.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName01.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName02.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName02.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName02.psd.meta",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName03.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName03.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName03.psd.meta",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName04.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName04.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName04.psd.meta",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName05.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName05.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName05.psd.meta",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon3_banner_artifact_limited.png",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon3_banner_artifact_limited.psd",													 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon3_banner_artifact_limited.psd.meta",														 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_artifact.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_artifact.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_artifact.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_artifact_limited.png",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_artifact_limited.psd",													 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_artifact_limited.psd.meta",														 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_card.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_card.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_card.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_pet.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_pet.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_pet.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_superartifact_limited.png",														 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_superartifact_limited.psd",												 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_superartifact_limited.psd.meta",													 },
+{basepath = "Assets/Content/Raw_Art",     path = "/Effects/Textures/fuhao",    fileName = "FX_fuhao_daduan001.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_baishatang.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_daijinquan.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_nuomifen.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_ruyi.png",																					 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_ruyideng.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_tangyuan_dousha.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_tangyuan_guihua.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_tangyuan_zhima.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_tanyuan_shenmi.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_tiaoliao.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_yuanxiaolihe.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "ic_activity_sellout.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "img_banner_dailyrecharge_cn.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "img_banner_firstrecharge01_bt_cn.png",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "img_banner_firstrecharge01_cn.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "img_banner_firstrecharge02_bt_cn.png",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "img_banner_firstrecharge02_cn.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "img_banner_kingback_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "text_dailyrecharge_get_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "text_dailyrecharge_receive_cn.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "text_dailyrecharge_today2_cn.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "text_dailyrecharge_today_cn.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "text_dailyrecharge_tomorrow_cn.png",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "text_supervalue_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "txt_activity_7day_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "txt_activity_login_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_boss_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_boss_warning_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_courage_bft_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_expedition_Stageclear_cn.png",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_title_lose_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_title_victory_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_warning_bft2_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_warning_bft_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "btn_club_passport.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "ic_club_sellout.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "title_club_passport_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_buy_blue_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_buy_week_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_buy_yellow_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_gifts_cn.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_limited_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_month_a_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_month_b_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_month_cn.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_passport_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_privilege01_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_privilege02_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_privilege_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_privilegecard_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_rewards_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_shop_cn.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_week_a_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_week_cn.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICollect",    fileName = "text_collect_card_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICollect",    fileName = "text_collect_collection_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICollect",    fileName = "text_collect_pet_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICreateRole",    fileName = "LOGO1.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICreateRole",    fileName = "LOGO1.png.meta",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICreateRole",    fileName = "img_create_banner.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICreateRole",    fileName = "img_create_banner.psd",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICreateRole",    fileName = "img_create_banner.psd.meta",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICreateRole",    fileName = "img_create_title.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIExpedition",    fileName = "img_dungeon_bg00.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIExpedition",    fileName = "text_newrecord_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIExpedition",    fileName = "text_newrecord_cn.psd",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIExpedition",    fileName = "text_newrecord_cn.psd.meta",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFashion",    fileName = "btn_fashion_toggle_01.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFashion",    fileName = "btn_fashion_toggle_02.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_lanwei1.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_lanwei2.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_lanwei3.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_lanwei4.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_petslot1.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_petslot2.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_petslot3.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_petslot4.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_petslot5.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_petslot6.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIGuildWar",    fileName = "img_guildwar_lose.psd",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIGuildWar",    fileName = "img_guildwar_lose.psd.meta",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "LOGO1.png",																					 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "LOGO1.png.meta",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "LOGO1.psd",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "LOGO1.psd.meta",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "btn_cadpa12.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "btn_cadpa12.psd.meta",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "btn_cadpa16.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "btn_cadpa16.psd.meta",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "btn_cadpa8.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "btn_cadpa8.psd.meta",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "txt_login_cn.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "txt_login_cn.psd",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "txt_login_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "ic_luckyegg_mvp.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "ic_luckyegg_mvp.psd",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "ic_luckyegg_mvp.psd.meta",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "label_luckyegg_rare_mvp.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "label_luckyegg_rare_mvp.psd",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "label_luckyegg_rare_mvp.psd.meta",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "txt_luckyegg_goldenegg_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "txt_luckyegg_variegationegg_cn.png",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_adventure_cn.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_adventure_cn.psd",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_adventure_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_bag_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_pet_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_role_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_role_cn.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_role_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_shop_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_town_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_town_cn.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_town_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "txt_login_cn.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "txt_login_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMap",    fileName = "img_start_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UINewStory",    fileName = "txt_story01_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UINewStory",    fileName = "txt_story02_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UINewStory",    fileName = "txt_story03_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIQestion",    fileName = "text_title_q1_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIQestion",    fileName = "text_title_q1_cn.psd",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIQestion",    fileName = "text_title_q1_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRedPoint",    fileName = "ic_bubble_new_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRedPoint",    fileName = "ic_bubble_new_y_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRedPoint",    fileName = "ic_bubble_red.png.meta",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_artifact_transsuccess_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_artifact_transsuccess_cn.psd",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_artifact_transsuccess_cn.psd.meta",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_break_success_tw.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_cured_success1_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_cured_success2_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_cured_success3_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_cured_success4_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success1_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success1_cn.psd",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success1_cn.psd.meta",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success2_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success2_cn.psd",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success2_cn.psd.meta",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success3_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success4_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIShop",    fileName = "S_ic_sellout.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIShop",    fileName = "S_title.png",																					 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UISign",    fileName = "text_signin_title_tw.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIStarSign",    fileName = "img_banner_bg.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIStarSign",    fileName = "img_banner_title.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UITurnWheel",    fileName = "text_title_turnwheel_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIVoyage",    fileName = "txt_fail_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIVoyage",    fileName = "txt_fail_cn.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIVoyage",    fileName = "txt_fail_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIVoyage",    fileName = "txt_success_cn.png",                                                                           }, 
+
+}
+
+
+
+
+function luaCopyFileCfg:Init()
+    self.curindex = 1
+    self.MaxIndex = #self.FileCfg
+    self.curOutput = "_cn"
+end 
+
+function luaCopyFileCfg:SetOutput(output)
+    self.curOutput = output
+end
+
+function luaCopyFileCfg:GetLen()
+    return self.MaxIndex 
+end
+
+function luaCopyFileCfg:GetNextCfg()
+    if self.curindex > self.MaxIndex then
+        return {result = false}
+    end
+    local curCfg = self.FileCfg[self.curindex]
+    self.curindex = self.curindex + 1
+    local path = curCfg.basepath..curCfg.path..'/'..curCfg.fileName
+    local outputPath = curCfg.basepath..curCfg.path..self.curOutput..'/'..curCfg.fileName
+    return {result = true,path = path,outputPath = outputPath}
+end
+
+return luaCopyFileCfg

+ 7 - 0
Assets/Editor/CsvToLua/luaCopyFileCfg.lua.meta

@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 10a3e2ba675ae4941bbfb8e067ea23ca
+DefaultImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 

+ 2 - 0
Assets/Lua/Core/Constant.lua

@@ -7,6 +7,8 @@ local Constant = {
 
     OpenPay = true,
 
+    DeleteAccount = false, -- 删除账户
+
     HeroLeaderIcon = "FrameNew/label_main",
     HeroBattleIcon = "FrameNew/label_battling",
 

+ 5 - 5
Assets/Lua/Core/PlatformPack.lua

@@ -1,9 +1,9 @@
 local PlatformPack = {
-	URL_KEY = 'http://110.40.223.119:81//',
-	SERVERLIST_URL = 'http://110.40.223.119:81//serverlist',
-	NOTIFY_URL = 'http://110.40.223.119:88/res/NoticeNew/',
-	SPECIAL_INFO_URL = 'http://110.40.223.119:81//channel',
-	CUSTOMER_SERVICE_INFO_URL = 'http://110.40.223.119:81//vipService',
+	URL_KEY = 'http://43.156.13.116:81//',
+	SERVERLIST_URL = 'http://43.156.13.116:81//serverlist',
+	NOTIFY_URL = 'http://43.156.13.116:88/res/NoticeNew/',
+	SPECIAL_INFO_URL = 'http://43.156.13.116:81//channel',
+	CUSTOMER_SERVICE_INFO_URL = 'http://43.156.13.116:81//vipService',
 }
 
 return PlatformPack

+ 4 - 0
Assets/Lua/Enum/ProtoMsgId.lua

@@ -724,6 +724,10 @@
 	CS_PAY_ORDER_COMPLETE_REQ         = 6072,		--	CSPayOrderCompleteReq **CSPayOrderCompleteReq **login.proto **game [CSPayOrderCompleteReq]
 	SC_PAY_ORDER_COMPLETE_ACK         = 6073,		--	SCPayOrderCompleteAck **SCPayOrderCompleteAck **login.proto **game [SCPayOrderCompleteAck]
 	SC_DNY_SDK_NTF       = 6076,		--	SCDnySdkNtf **SCDnySdkNtf **login.proto ** [SCDnySdkNtf]
+	CS_USER_DELETE_REQ         = 6077,		--	CSUserDeleteReq **CSUserDeleteReq **login.proto **game [CSUserDeleteReq]
+	SC_USER_DELETE_ACK         = 6078,		--	SCUserDeleteAck **SCUserDeleteAck **login.proto **game [SCUserDeleteAck]
+	CS_USER_DELETE_INFO_REQ         = 6079,		--	CSUserDeleteInfoReq **CSUserDeleteInfoReq **login.proto **game [CSUserDeleteInfoReq]
+	SC_USER_DELETE_INFO_ACK         = 6080,		--	SCUserDeleteInfoAck **SCUserDeleteInfoAck **login.proto **game [SCUserDeleteInfoAck]
 
     }
     return ProtoMsgId

+ 5 - 0
Assets/Lua/Enum/UIEventNames.lua

@@ -615,6 +615,11 @@ local UIEventNames = {
     -- 无尽
     WJ_ON_BATTLE_CHANGE = id(), -- 鼓舞buff 发生变化
     WJ_ON_BOSS_CHANGE = id(), -- boss 变化
+
+
+    --账户删除
+    ACCOUNT_DELETE_CHANGE = id(),
+    ACCOUNT_DELETE_NTF = id(),
 }
 
 return UIEventNames

+ 79 - 0
Assets/Lua/Managers/AccountInfoMgr.lua

@@ -0,0 +1,79 @@
+local AccountInfoMgr = class("AccountInfoMgr")
+function AccountInfoMgr:ctor()
+   self.CurrentDeleteTime = 0  -- 0 表示没有删除操作
+   self:RegisterNetEvents()
+end
+
+function AccountInfoMgr:RegisterNetEvents()
+    ManagerContainer.NetManager:NetRegister(ProtoMsgId.SC_USER_DELETE_ACK,self.On_SCUserDeleteAck,self)
+    ManagerContainer.NetManager:NetRegister(ProtoMsgId.SC_USER_DELETE_INFO_ACK,self.On_SCUserDeleteInfoAck,self)
+end
+
+function AccountInfoMgr:UnRegisterNetEvents()
+    ManagerContainer.NetManager:UnRegisterPbIdCallback(ProtoMsgId.SC_USER_DELETE_ACK)
+    ManagerContainer.NetManager:UnRegisterPbIdCallback(ProtoMsgId.SC_USER_DELETE_INFO_ACK)
+end
+function AccountInfoMgr:RegisterAllDataEvents()
+ 
+end
+
+function AccountInfoMgr:ResetAllData()
+
+end
+
+function AccountInfoMgr:Destroy()
+    self:UnRegisterNetEvents()
+end
+
+function AccountInfoMgr:SendDeleteReq()
+    ManagerContainer.NetManager:SendMessage(ProtoMsgId.CS_USER_DELETE_REQ,{status = 0})
+end
+
+function AccountInfoMgr:SendCancelDeleteReq()
+    ManagerContainer.NetManager:SendMessage(ProtoMsgId.CS_USER_DELETE_REQ,{status = 1})
+end
+
+function AccountInfoMgr:SendGetDeleteInfoReq()
+    ManagerContainer.NetManager:SendMessage(ProtoMsgId.CS_USER_DELETE_INFO_REQ,{})
+end
+
+--删除或者取消请求
+function AccountInfoMgr:On_SCUserDeleteAck(data)
+    LogError(Inspect(data))
+    if data.error ~= 0 then
+        return
+    end
+    self.CurrentDeleteTime = data.time
+    -- LogError("self.CurrentDeleteTime = "..self.CurrentDeleteTime )
+    ManagerContainer.LuaEventMgr:Dispatch(UIEventNames.ACCOUNT_DELETE_CHANGE)
+    if data.time ~= 0 then
+        ManagerContainer.LuaEventMgr:Dispatch(UIEventNames.ACCOUNT_DELETE_NTF)
+    end
+end
+
+--查询
+function AccountInfoMgr:On_SCUserDeleteInfoAck(data)
+    LogError(Inspect(data))
+     if data.error ~= 0 then
+        return
+    end
+    self.CurrentDeleteTime = data.time
+    --  LogError("self.CurrentDeleteTime = "..self.CurrentDeleteTime )
+    ManagerContainer.LuaEventMgr:Dispatch(UIEventNames.ACCOUNT_DELETE_CHANGE)
+end
+
+
+function AccountInfoMgr:IsDeleteAccount()
+    return self.CurrentDeleteTime ~= 0
+end
+
+
+function AccountInfoMgr:GetCurDeleteTime()
+    --  LogError("self.CurrentDeleteTime = "..self.CurrentDeleteTime )
+    return self.CurrentDeleteTime
+end
+
+
+
+
+return AccountInfoMgr

+ 7 - 0
Assets/Lua/Managers/AccountInfoMgr.lua.meta

@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 95349236e14cb0d43baf0655d8c14263
+DefaultImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 

+ 7 - 0
Assets/Lua/Managers/LuaUIMgr.lua

@@ -424,6 +424,13 @@ function LuaUIMgr:ShowNetWaiting()
     self:Open(Enum.UIPageName.UIWaiting)
 end
 
+function LuaUIMgr:ShowNetWaiting_New(data)
+    if self:HasOpenPage(Enum.UIPageName.UIWaiting) then
+        return
+    end
+    self:Open(Enum.UIPageName.UIWaiting,data)
+end
+
 function LuaUIMgr:CloseNetWaiting()
     self:ClosePage(Enum.UIPageName.UIWaiting)
 end

+ 3 - 1
Assets/Lua/Managers/ManagerContainer.lua

@@ -47,6 +47,7 @@ function ManagerContainer:InitMgr()
     self.PayMgr = require('PayMgr'):new()
     self.LoginMgr = require('LoginMgr'):new()
     self.OpenPayMgr = require('OpenPayMgr'):new()
+    self.AccountInfoMgr = require('AccountInfoMgr'):new()
 end
 
 function ManagerContainer:Update()
@@ -132,7 +133,7 @@ function ManagerContainer:Destroy()
     self:FieldDestroy(self.UIStoryMgr)
     self:FieldDestroy(self.ActivityMgr)
     self:FieldDestroy(self.BattleFailedTipsMgr)
-
+    self:FieldDestroy(self.AccountInfoMgr)
     self.LuaActorAttributeMgr = nil
     self.NewGotTipsMgr = nil
     self.PopGotMgr = nil
@@ -167,6 +168,7 @@ function ManagerContainer:Destroy()
     self.VipChangeMgr = nil
     self.PayMgr = nil
     self.LoginMgr = nil
+    self.AccountInfoMgr = nil
 end
 
 return ManagerContainer

+ 11 - 2
Assets/Lua/Pb/login.txt

@@ -1,5 +1,5 @@
 
-‚Ü
+ÂÝ
 login.protoserverproto
 user.proto"0
 
@@ -2720,4 +2720,13 @@ rewardList?
 SCPayOrderCompleteAck
 error (Rerror"!
 SCDnySdkNtf
-type (Rtypebproto3
+type (Rtype")
+CSUserDeleteReq
+status (Rstatus";
+SCUserDeleteAck
+error (Rerror
+time (Rtime"
+CSUserDeleteInfoReq"?
+SCUserDeleteInfoAck
+error (Rerror
+time (Rtimebproto3

TEMPAT SAMPAH
Assets/Lua/Pb/messagedefclient.txt


+ 8 - 4
Assets/Lua/Pb/protocal.txt

@@ -1,7 +1,7 @@
 
-Û—
+¥š
 protocal.protoserverprotocommon.protoerror_code.protologin.proto
-user.proto"�ê
+user.proto"µë
 Request7
 CS_PING_REQè (2.serverproto.CSPingReqR	CSPINGREQ:
 CS_LOGIN_REQê (2.serverproto.CSLoginReqR
@@ -373,7 +373,9 @@ $CS_RUNE_SPECIAL_PRIVILEGE_REWARD_REQ
 CS_CLIMBING_TOWER_WJ_END_REQ­/ (2$.serverproto.CSClimbingTowerWjEndReqRCSCLIMBINGTOWERWJENDREQg
 CS_CLIMBING_TOWER_WJ_RANK_REQ¯/ (2%.serverproto.CSClimbingTowerWjRankReqRCSCLIMBINGTOWERWJRANKREQg
 CS_CLIMBING_TOWER_WJ_BUFF_REQ²/ (2%.serverproto.CSClimbingTowerWjBuffReqRCSCLIMBINGTOWERWJBUFFREQ]
-CS_PAY_ORDER_COMPLETE_REQ¸/ (2".serverproto.CSPayOrderCompleteReqRCSPAYORDERCOMPLETEREQ"å¬
+CS_PAY_ORDER_COMPLETE_REQ¸/ (2".serverproto.CSPayOrderCompleteReqRCSPAYORDERCOMPLETEREQJ
+CS_USER_DELETE_REQ½/ (2.serverproto.CSUserDeleteReqRCSUSERDELETEREQW
+CS_USER_DELETE_INFO_REQ¿/ (2 .serverproto.CSUserDeleteInfoReqRCSUSERDELETEINFOREQ"Š®
 Response7
 SC_PING_ACKé (2.serverproto.SCPingAckR	SCPINGACK:
 SC_LOGIN_ACKë (2.serverproto.SCLoginAckR
@@ -859,4 +861,6 @@ $SC_RUNE_SPECIAL_PRIVILEGE_REWARD_ACK
 SC_CLIMBING_TOWER_WJ_BOSS_NTF±/ (2%.serverproto.SCClimbingTowerWjBossNtfRSCCLIMBINGTOWERWJBOSSNTFg
 SC_CLIMBING_TOWER_WJ_BUFF_ACK³/ (2%.serverproto.SCClimbingTowerWjBuffAckRSCCLIMBINGTOWERWJBUFFACK]
 SC_PAY_ORDER_COMPLETE_ACK¹/ (2".serverproto.SCPayOrderCompleteAckRSCPAYORDERCOMPLETEACK>
-SC_DNY_SDK_NTF¼/ (2.serverproto.SCDnySdkNtfRSCDNYSDKNTFbproto3
+SC_DNY_SDK_NTF¼/ (2.serverproto.SCDnySdkNtfRSCDNYSDKNTFJ
+SC_USER_DELETE_ACK¾/ (2.serverproto.SCUserDeleteAckRSCUSERDELETEACKW
+SC_USER_DELETE_INFO_ACKÀ/ (2 .serverproto.SCUserDeleteInfoAckRSCUSERDELETEINFOACKbproto3

+ 7 - 7
Assets/Lua/UI/Common/ChatTextItemCtr.lua

@@ -262,13 +262,13 @@ function ChatTextItemCtr:SetData(wnd, item, logicData, enterType, onClickOwner,
                 item.text.symbolText.raycastTarget = not content.used
                 if not content.used then
                     item.text.symbolTextEvent:RegisterClickEvent(nil, function (hyperParam)
-                        local curTime = ManagerContainer.LuaTimerMgr:GetTimeSecond()
-                        local isOneDay = ManagerContainer.LuaTimerMgr:TwoTimeSecondBetweenOneDay(content.sendTime, curTime)
-                        if not isOneDay then
-                            ManagerContainer.LuaUIMgr:ErrorNoticeDisplay("ExpeditionBailout")
-                            content.used = true
-                            return
-                        end
+                        -- local curTime = ManagerContainer.LuaTimerMgr:GetTimeSecond()
+                        -- local isOneDay = ManagerContainer.LuaTimerMgr:TwoTimeSecondBetweenOneDay(content.sendTime, curTime)
+                        -- if not isOneDay then
+                        --     ManagerContainer.LuaUIMgr:ErrorNoticeDisplay("ExpeditionBailout")
+                        --     content.used = true
+                        --     return
+                        -- end
 
                         local list = string.split(hyperParam, ";")
                         local uid = ManagerContainer.DataMgr.UserData:GetUserId()

+ 7 - 7
Assets/Lua/UI/Common/PrivateChatItemCtr.lua

@@ -110,13 +110,13 @@ function PrivateChatItem:SetData(wnd, item, logicData)
             chatItem.helpText1.symbolText.raycastTarget = not chat.message.used
             if not chat.message.used then
                 chatItem.helpText1.symbolTextEvent:RegisterClickEvent(nil, function (hyperParam)
-                    local curTime = ManagerContainer.LuaTimerMgr:GetTimeSecond()
-                    local isOneDay = ManagerContainer.LuaTimerMgr:TwoTimeSecondBetweenOneDay(chat.message.sendTime, curTime)
-                    if not isOneDay then
-                        ManagerContainer.LuaUIMgr:ErrorNoticeDisplay("ExpeditionBailout")
-                        chat.message.used = true
-                        return
-                    end
+                    -- local curTime = ManagerContainer.LuaTimerMgr:GetTimeSecond()
+                    -- local isOneDay = ManagerContainer.LuaTimerMgr:TwoTimeSecondBetweenOneDay(chat.message.sendTime, curTime)
+                    -- if not isOneDay then
+                    --     ManagerContainer.LuaUIMgr:ErrorNoticeDisplay("ExpeditionBailout")
+                    --     chat.message.used = true
+                    --     return
+                    -- end
 
                     local list = string.split(hyperParam, ";")
                     local uid = ManagerContainer.DataMgr.UserData:GetUserId()

+ 5 - 1
Assets/Lua/UI/UICommonTips/UINoticeTipsView.lua

@@ -113,7 +113,11 @@ local NoticeList = {
 	--许愿钱包
 	["Insufficient"] = {title = "InsufficientTitle", notice = "InsufficientLimit",notice1 = "GoTo2", btnSure = "BtnGoto"},
 	-- 无尽鼓舞购买
-	['WjBattleBuffBuy']={title = 'WjBattleBuffTxt',notice = 'WjBattleBuff_Dec4' , notice1 = '', btnSure = "BtnConfirm"}
+	['WjBattleBuffBuy']={title = 'WjBattleBuffTxt',notice = 'WjBattleBuff_Dec4' , notice1 = '', btnSure = "BtnConfirm"},
+	--账号删除
+	['AccountDelete1']={title = 'BtnConfirm',notice = 'DeleteNtfTxt',notice1 = '', btnSure = "BtnConfirm" ,btnCancle = "BtnCancle", hideClose=true},
+	['AccountDelete2']={title = 'BtnConfirm',notice = 'DeleteNtfTxt2',notice1 = '', btnSure = "BtnConfirm", btnCancle = "BtnCancle", hideClose=true},
+	['AccountDelete3']={title = 'BtnConfirm',notice = 'DeleteEndNtfTxt',notice1 = '', btnSure = "BtnConfirm",},
 }
 
 function UINoticeTipsView:OnAwake(data)

+ 1 - 0
Assets/Lua/UI/UIRoleMessage/UIRoleMessageView.lua

@@ -70,6 +70,7 @@ function UIRoleMessageView:Init()
 	self.titleScroll.loopGridView:InitGridView(0, function(gridView, itemIndex, row, column)
 		return self:GetTitleItemByRowColumn(gridView, itemIndex, row, column)
 	end, nil)
+	ManagerContainer.AccountInfoMgr:SendGetDeleteInfoReq()
 end
 
 function UIRoleMessageView:InitRoleSystems()

+ 97 - 1
Assets/Lua/UI/UISettings/UISettingsView.lua

@@ -10,6 +10,8 @@ function UISettingsView:OnAwake(data)
 end
 
 function UISettingsView:AddEventListener()
+	ManagerContainer.LuaEventMgr:RegisterUIEvent(self.uiData.name, UIEventNames.ACCOUNT_DELETE_CHANGE,self,self.RefreshDeleteAcount);
+	ManagerContainer.LuaEventMgr:RegisterUIEvent(self.uiData.name, UIEventNames.ACCOUNT_DELETE_NTF,self,self.OnDeleteSuc);
 end
 
 function UISettingsView:FillContent(data, uiBase)
@@ -29,6 +31,7 @@ function UISettingsView:Init()
 	self:RefreshServerInfo()
 	self:RefreshMusic()
 	self:RefreshSound()
+	self:RefreshDeleteAcount()
 end
 
 function UISettingsView:RemoveEventListener()
@@ -51,6 +54,9 @@ function UISettingsView:AddUIEventListener()
 	self.uiBase:AddSliderEventListener(self.music.slider.slider, self, self.OnValueChangeMusic, nil)
 	self.uiBase:AddToggleEventListener(self.sound.toggle.toggle, self, self.OnClickToggleSound, nil)
 	self.uiBase:AddSliderEventListener(self.sound.slider.slider, self, self.OnValueChangeSound, nil)
+
+	self.uiBase:AddButtonEventListener(self.deleteBtn.button, self, self.OnClickDeleteAccount)
+	self.uiBase:AddButtonEventListener(self.cancelBtn.button, self, self.OnCLickCancelDelete)
 end
 
 function UISettingsView:OnHide()
@@ -65,11 +71,11 @@ end
 
 function UISettingsView:OnClose()
 	ManagerContainer.DataMgr.HeadProtraitData:SetVaild()
+	self:DisposeRefreshTimer()
 end
 
 function UISettingsView:OnDispose()
 	self.dots = nil
-
 end
 
 
@@ -100,6 +106,7 @@ end
 
 function UISettingsView:OnClickClose()
 	self:UIClose()
+	self:DisposeRefreshTimer()
 end
 
 --点击了切换服务器的按钮
@@ -189,5 +196,94 @@ function UISettingsView:IsSomeFrameCount(keyName)
 end
 
 
+function UISettingsView:RefreshDeleteAcount()
+	if not Constant.DeleteAccount then
+		self.accountSetting:SetActive(false)
+		return
+	end
+	self.deleteTimeTxt.text.text= ""
+	self.accountSetting:SetActive(true)
+	self.curEndTime = ManagerContainer.AccountInfoMgr:GetCurDeleteTime()
+	
+	if self.curEndTime == 0 then
+		self.deleteBtn:SetActive(true)
+		self.cancelBtn:SetActive(false)
+		self.deleteTime:SetActive(false)
+	else
+		--self.deleteBtn:SetActive(false)
+		--self.cancelBtn:SetActive(true)
+		self.deleteTime:SetActive(true)
+		--self.deleteBtn.interactable = false
+		self:RefreshTime()
+		--LogError("aaa"..self.curEndTime)
+	end
+
+end
+
+function UISettingsView:OnClickDeleteAccount()
+	-- ManagerContainer.AccountInfoMgr:SendDeleteReq()
+	if self.curEndTime == 0 then
+		local data = {"AccountDelete1", {}, nil, self, self.Delete_Ntf1}
+		ManagerContainer.LuaUIMgr:Open(Enum.UIPageName.UINoticeTips, data)
+	else
+		ManagerContainer.LuaUIMgr:ErrorNoticeDisplay("DeleteErrorTxt")
+	end
+
+end
+
+function UISettingsView:OnCLickCancelDelete()
+	 ManagerContainer.AccountInfoMgr:SendCancelDeleteReq()
+end
+
+
+function UISettingsView:RefreshTime()
+    local timer = self.RefreshTxtTimer
+	
+	if not timer then
+		timer = Timer.New(function()
+			self:RefreshTimer()
+		end, 1, -1)
+		timer:Start()
+		self.RefreshTxtTimer = timer
+	end
+end
+
+function UISettingsView:RefreshTimer()
+     local time = ManagerContainer.LuaTimerMgr:GetRemainSeconds(self.curEndTime)
+    local timerStr, outTime = CommonUtil.FormatTimeDMS(time)
+	self.deleteTimeTxt.text.text = I18N.SetLanguageValue("DeleteAccountTimeTxt",timerStr)
+end
+
+function UISettingsView:DisposeRefreshTimer()
+	if self.RefreshTxtTimer then
+		self.RefreshTxtTimer:Stop()
+		self.RefreshTxtTimer.updateItemMap = nil
+		self.RefreshTxtTimer = nil
+	end
+end
+
+
+function UISettingsView:Delete_Ntf1()
+	 ManagerContainer.LuaTimerMgr:AddLuaTimer(200, 1, function ()
+                local data = {"AccountDelete2", {}, nil, self, self.Delete_Ntf2}
+				ManagerContainer.LuaUIMgr:Open(Enum.UIPageName.UINoticeTips, data)
+            end, nil)
+
+end
+
+function UISettingsView:Delete_Ntf2()
+	ManagerContainer.AccountInfoMgr:SendDeleteReq()
+end
+
+function UISettingsView:Delete_Ntf3()
+	
+end
+
+function UISettingsView:OnDeleteSuc()
+	 ManagerContainer.LuaTimerMgr:AddLuaTimer(200, 1, function ()
+                local data = {"AccountDelete3", {}, nil, self, self.Delete_Ntf3}
+				ManagerContainer.LuaUIMgr:Open(Enum.UIPageName.UINoticeTips, data)
+            end, nil)
+end
 return UISettingsView
 

+ 138 - 6
Assets/Lua/UI/UISettings/UISettingsView_Generate.lua

@@ -28,6 +28,22 @@
 ---@field public slider UISettings__Generate_music_slider
 ---@field public toggle UISettings__Generate_music_toggle
 
+---@class UISettings__Generate_deleteTimeTxt
+---@field public gameObject UnityEngine.GameObject
+---@field public text TMPro.TextMeshProUGUI
+
+---@class UISettings__Generate_cancelBtn
+---@field public gameObject UnityEngine.GameObject
+---@field public button UnityEngine.UI.Button
+
+---@class UISettings__Generate_deleteBtn
+---@field public gameObject UnityEngine.GameObject
+---@field public button UnityEngine.UI.Button
+
+---@class UISettings__Generate_deleteTxt
+---@field public gameObject UnityEngine.GameObject
+---@field public text UnityEngine.UI.Text
+
 ---@class UISettings__Generate_changeServerButton
 ---@field public gameObject UnityEngine.GameObject
 ---@field public button UnityEngine.UI.Button
@@ -57,6 +73,12 @@
 ---@field private btnClose UISettings__Generate_btnClose
 ---@field private serverNameTxt UISettings__Generate_serverNameTxt
 ---@field private changeServerButton UISettings__Generate_changeServerButton
+---@field private accountSetting UnityEngine.GameObject
+---@field private deleteTxt UISettings__Generate_deleteTxt
+---@field private deleteBtn UISettings__Generate_deleteBtn
+---@field private cancelBtn UISettings__Generate_cancelBtn
+---@field private deleteTime UnityEngine.GameObject
+---@field private deleteTimeTxt UISettings__Generate_deleteTimeTxt
 ---@field private music UISettings__Generate_music
 ---@field private sound UISettings__Generate_sound
 ---@field private verText UISettings__Generate_verText
@@ -93,6 +115,12 @@ function UISettingsView:InitGenerate(Root, data)
 	self:InitGenerate__12(Root,data)
 	self:InitGenerate__13(Root,data)
 	self:InitGenerate__14(Root,data)
+	self:InitGenerate__15(Root,data)
+	self:InitGenerate__16(Root,data)
+	self:InitGenerate__17(Root,data)
+	self:InitGenerate__18(Root,data)
+	self:InitGenerate__19(Root,data)
+	self:InitGenerate__20(Root,data)
 
 
 end
@@ -189,6 +217,86 @@ end
 
 ---@private
 function UISettingsView:InitGenerate__8(Root, data)
+--[[
+	UIAnimator/Window/Bg/AccountSetting
+--]]
+	local tmp = Root:Find("UIAnimator/Window/Bg/AccountSetting").gameObject
+	if tolua.getpeer(tmp) == nil then
+		tolua.setpeer(tmp, {})
+	end
+	self.accountSetting = tmp
+end
+
+---@private
+function UISettingsView:InitGenerate__9(Root, data)
+--[[
+	UIAnimator/Window/Bg/AccountSetting/DeleteTxt
+--]]
+	local tmp = Root:Find("UIAnimator/Window/Bg/AccountSetting/DeleteTxt").gameObject
+	if tolua.getpeer(tmp) == nil then
+		tolua.setpeer(tmp, {})
+	end
+	self.deleteTxt = tmp
+
+	tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
+end
+
+---@private
+function UISettingsView:InitGenerate__10(Root, data)
+--[[
+	UIAnimator/Window/Bg/AccountSetting/DeleteBtn
+--]]
+	local tmp = Root:Find("UIAnimator/Window/Bg/AccountSetting/DeleteBtn").gameObject
+	if tolua.getpeer(tmp) == nil then
+		tolua.setpeer(tmp, {})
+	end
+	self.deleteBtn = tmp
+
+	tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
+end
+
+---@private
+function UISettingsView:InitGenerate__11(Root, data)
+--[[
+	UIAnimator/Window/Bg/AccountSetting/CancelBtn
+--]]
+	local tmp = Root:Find("UIAnimator/Window/Bg/AccountSetting/CancelBtn").gameObject
+	if tolua.getpeer(tmp) == nil then
+		tolua.setpeer(tmp, {})
+	end
+	self.cancelBtn = tmp
+
+	tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
+end
+
+---@private
+function UISettingsView:InitGenerate__12(Root, data)
+--[[
+	UIAnimator/Window/Bg/AccountSetting/DeleteTime
+--]]
+	local tmp = Root:Find("UIAnimator/Window/Bg/AccountSetting/DeleteTime").gameObject
+	if tolua.getpeer(tmp) == nil then
+		tolua.setpeer(tmp, {})
+	end
+	self.deleteTime = tmp
+end
+
+---@private
+function UISettingsView:InitGenerate__13(Root, data)
+--[[
+	UIAnimator/Window/Bg/AccountSetting/DeleteTime/DeleteTimeTxt
+--]]
+	local tmp = Root:Find("UIAnimator/Window/Bg/AccountSetting/DeleteTime/DeleteTimeTxt").gameObject
+	if tolua.getpeer(tmp) == nil then
+		tolua.setpeer(tmp, {})
+	end
+	self.deleteTimeTxt = tmp
+
+	tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
+end
+
+---@private
+function UISettingsView:InitGenerate__14(Root, data)
 --[[
 	UIAnimator/Window/Bg/VolumeSettings/Music
 --]]
@@ -200,7 +308,7 @@ function UISettingsView:InitGenerate__8(Root, data)
 end
 
 ---@private
-function UISettingsView:InitGenerate__9(Root, data)
+function UISettingsView:InitGenerate__15(Root, data)
 --[[
 	UIAnimator/Window/Bg/VolumeSettings/Music/Slider
 --]]
@@ -214,7 +322,7 @@ function UISettingsView:InitGenerate__9(Root, data)
 end
 
 ---@private
-function UISettingsView:InitGenerate__10(Root, data)
+function UISettingsView:InitGenerate__16(Root, data)
 --[[
 	UIAnimator/Window/Bg/VolumeSettings/Music/Toggle
 --]]
@@ -228,7 +336,7 @@ function UISettingsView:InitGenerate__10(Root, data)
 end
 
 ---@private
-function UISettingsView:InitGenerate__11(Root, data)
+function UISettingsView:InitGenerate__17(Root, data)
 --[[
 	UIAnimator/Window/Bg/VolumeSettings/Sound
 --]]
@@ -240,7 +348,7 @@ function UISettingsView:InitGenerate__11(Root, data)
 end
 
 ---@private
-function UISettingsView:InitGenerate__12(Root, data)
+function UISettingsView:InitGenerate__18(Root, data)
 --[[
 	UIAnimator/Window/Bg/VolumeSettings/Sound/Slider
 --]]
@@ -254,7 +362,7 @@ function UISettingsView:InitGenerate__12(Root, data)
 end
 
 ---@private
-function UISettingsView:InitGenerate__13(Root, data)
+function UISettingsView:InitGenerate__19(Root, data)
 --[[
 	UIAnimator/Window/Bg/VolumeSettings/Sound/Toggle
 --]]
@@ -268,7 +376,7 @@ function UISettingsView:InitGenerate__13(Root, data)
 end
 
 ---@private
-function UISettingsView:InitGenerate__14(Root, data)
+function UISettingsView:InitGenerate__20(Root, data)
 --[[
 	UIAnimator/Window/Bg/VerBox/VerText
 --]]
@@ -319,6 +427,30 @@ function UISettingsView:GenerateDestroy()
 		tolua.setpeer(self.changeServerButton, nil)
 	end
 	self.changeServerButton = nil
+	if tolua.getpeer(self.accountSetting) ~= nil then
+		tolua.setpeer(self.accountSetting, nil)
+	end
+	self.accountSetting = nil
+	if tolua.getpeer(self.deleteTxt) ~= nil then
+		tolua.setpeer(self.deleteTxt, nil)
+	end
+	self.deleteTxt = nil
+	if tolua.getpeer(self.deleteBtn) ~= nil then
+		tolua.setpeer(self.deleteBtn, nil)
+	end
+	self.deleteBtn = nil
+	if tolua.getpeer(self.cancelBtn) ~= nil then
+		tolua.setpeer(self.cancelBtn, nil)
+	end
+	self.cancelBtn = nil
+	if tolua.getpeer(self.deleteTime) ~= nil then
+		tolua.setpeer(self.deleteTime, nil)
+	end
+	self.deleteTime = nil
+	if tolua.getpeer(self.deleteTimeTxt) ~= nil then
+		tolua.setpeer(self.deleteTimeTxt, nil)
+	end
+	self.deleteTimeTxt = nil
 	if tolua.getpeer(self.music) ~= nil then
 		tolua.setpeer(self.music, nil)
 	end

+ 18 - 0
Assets/Lua/UI/UIWaiting/UIWaitingCtr.lua

@@ -2,12 +2,25 @@ local UIWaitingCtr = class("UIWaitingCtr", require("UICtrBase"))
 
 function UIWaitingCtr:Init(view)
 	self.view = view
+	self.NoticeType = -1
+	self.NoticeText = ""
+	self.TimeData = nil
 end
 
 function UIWaitingCtr:SetData(data)
 	self.asyncIdx = 0
 	if data == nil then return end
 	self.data = data
+	self.NoticeType = -1
+	self.NoticeText = ""
+	self.TimeData = nil
+	
+	if self.data then
+		self.NoticeType = self.data[1] or -1
+		self.NoticeText = self.data[2] or ""
+		self.TimeData = self.data[3]
+	end
+
 end
 
 function UIWaitingCtr:GetAsyncIdx()
@@ -24,5 +37,10 @@ function UIWaitingCtr:OnDispose()
 	self.view = nil
 end
 
+
+function UIWaitingCtr:GetNoticeType()
+	return self.NoticeType
+end
+
 return UIWaitingCtr
 

+ 57 - 1
Assets/Lua/UI/UIWaiting/UIWaitingView.lua

@@ -23,6 +23,13 @@ function UIWaitingView:FillContent(data, uiBase)
 end
 
 function UIWaitingView:Init()
+	--LogError("Type = "..self.controller.NoticeType)
+	self.noticeRoot:SetActive(self.controller.NoticeType >= 0)
+	if self.controller.NoticeType == 1 then -- 普通
+		self.notice.text.text = self.controller.NoticeText
+	elseif self.controller.NoticeType == 2 then --计时
+		self:AutoPlayTimer()
+	end
 end
 
 function UIWaitingView:RemoveEventListener()
@@ -36,7 +43,10 @@ function UIWaitingView:AddUIEventListener()
 end
 
 function UIWaitingView:OnHide()
-
+	if self.curTimer then
+		ManagerContainer.LuaTimerMgr:RemoveTimer(self.curTimer)
+		self.curTimer = nil
+	end
 end
 
 function UIWaitingView:OnShow(data)
@@ -45,6 +55,10 @@ function UIWaitingView:OnShow(data)
 end
 
 function UIWaitingView:OnClose()
+	if self.curTimer then
+		ManagerContainer.LuaTimerMgr:RemoveTimer(self.curTimer)
+		self.curTimer = nil
+	end
 
 end
 
@@ -53,5 +67,47 @@ function UIWaitingView:OnDispose()
 
 end
 
+
+function UIWaitingView:AutoPlayTimer()
+	self.maxTime = self.controller.TimeData[1]
+	self.dtTime = self.controller.TimeData[2]
+	self.TimerCount = math.ceil(self.maxTime/self.dtTime)
+	self.EndTimerCb =  self.controller.TimeData[3]
+	self.EndTimerCbParams =  self.controller.TimeData[4]
+	self.curTime =0
+	self.curTimer = nil
+
+	--LogError("maxTime = "..self.maxTime.."	 dtTime = "..self.dtTime.."	 TimerCount = "..self.TimerCount)
+	self:StartTimer()
+end
+
+
+function  UIWaitingView:StartTimer()
+
+	self.notice.text.text = string.formatbykey(self.controller.NoticeText,tostring(self.maxTime))
+	self.curTimer = ManagerContainer.LuaTimerMgr:AddLuaTimer(self.dtTime * 1000, self.TimerCount,function ()
+		self:UpdateTimer()
+	end, nil)
+end
+
+
+function UIWaitingView:UpdateTimer()
+    self.curTime = self.curTime + 1
+    --self.timersTxt.text.text = tostring(self.maxTime - self.curTime)
+	--string.formatbykey('WalletGold',price)--tostring(price)  
+-- if self.notice then
+--     self.notice.text.text = string.formatbykey(self.controller.NoticeText,
+--         tostring(self.maxTime - (self.dtTime * self.curTime)))
+-- end
+
+	
+	self.notice.text.text = string.formatbykey(self.controller.NoticeText,tostring(self.maxTime - (self.dtTime* self.curTime)))
+    if (self.TimerCount <= self.curTime) then
+		ManagerContainer.LuaTimerMgr:RemoveTimer(self.curTimer)
+		self.curTimer = nil
+		self.EndTimerCb(self.EndTimerCbParams)
+    end
+end
+
 return UIWaitingView
 

+ 66 - 0
Assets/Lua/UI/UIWaiting/UIWaitingView_Generate.lua

@@ -1,6 +1,17 @@
+---@class UIWaiting__Generate_cancelBtn
+---@field public gameObject UnityEngine.GameObject
+---@field public button UnityEngine.UI.Button
+
+---@class UIWaiting__Generate_notice
+---@field public gameObject UnityEngine.GameObject
+---@field public text UnityEngine.UI.Text
+
 ---@class UIWaiting__Generate
 ---@field private gameObject UnityEngine.GameObject
 ---@field private transform UnityEngine.Transform
+---@field private noticeRoot UnityEngine.GameObject
+---@field private notice UIWaiting__Generate_notice
+---@field private cancelBtn UIWaiting__Generate_cancelBtn
 local UIWaitingView = class("UIWaitingView", require("UIViewBase"))
 
 function UIWaitingView:ctor()
@@ -20,12 +31,67 @@ function UIWaitingView:InitGenerate(Root, data)
 	end
 	local tmp
 
+	self:InitGenerate__1(Root,data)
+	self:InitGenerate__2(Root,data)
+	self:InitGenerate__3(Root,data)
 
 
 end
 
+---@private
+function UIWaitingView:InitGenerate__1(Root, data)
+--[[
+	WaitingRoot/NoticeRoot
+--]]
+	local tmp = Root:Find("WaitingRoot/NoticeRoot").gameObject
+	if tolua.getpeer(tmp) == nil then
+		tolua.setpeer(tmp, {})
+	end
+	self.noticeRoot = tmp
+end
+
+---@private
+function UIWaitingView:InitGenerate__2(Root, data)
+--[[
+	WaitingRoot/NoticeRoot/Notice
+--]]
+	local tmp = Root:Find("WaitingRoot/NoticeRoot/Notice").gameObject
+	if tolua.getpeer(tmp) == nil then
+		tolua.setpeer(tmp, {})
+	end
+	self.notice = tmp
+
+	tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
+end
+
+---@private
+function UIWaitingView:InitGenerate__3(Root, data)
+--[[
+	WaitingRoot/NoticeRoot/CancelBtn
+--]]
+	local tmp = Root:Find("WaitingRoot/NoticeRoot/CancelBtn").gameObject
+	if tolua.getpeer(tmp) == nil then
+		tolua.setpeer(tmp, {})
+	end
+	self.cancelBtn = tmp
+
+	tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
+end
+
 ---@private
 function UIWaitingView:GenerateDestroy()
+	if tolua.getpeer(self.noticeRoot) ~= nil then
+		tolua.setpeer(self.noticeRoot, nil)
+	end
+	self.noticeRoot = nil
+	if tolua.getpeer(self.notice) ~= nil then
+		tolua.setpeer(self.notice, nil)
+	end
+	self.notice = nil
+	if tolua.getpeer(self.cancelBtn) ~= nil then
+		tolua.setpeer(self.cancelBtn, nil)
+	end
+	self.cancelBtn = nil
 	self.transform = nil
 	self.gameObject = nil
 	self.inited = false

+ 4 - 4
Assets/Src/Core/DownLoad/AssetDownloader.cs

@@ -79,12 +79,12 @@ public class AssetDownloader : SingletonMono<AssetDownloader>
 
 
 
-    private IEnumerator DownloadFile(string url, Action<UnityWebRequest> callback)
+    private IEnumerator DownloadFile(string url, Action<UnityWebRequest> callback, int _timeout = 5)
     {
         Debug.Log($"url = {url}");
         UnityWebRequest webRqst = UnityWebRequest.Get(url);
         float timeOut = Time.time;
-        webRqst.timeout = 20;
+        webRqst.timeout = _timeout;
         UnityWebRequestAsyncOperation asyncOperation = webRqst.SendWebRequest();
         float progress = 0;
        
@@ -291,9 +291,9 @@ public class AssetDownloader : SingletonMono<AssetDownloader>
     }
 
 
-    public void DownLoadFileByCoroutine(string url, Action<UnityWebRequest> callback)
+    public void DownLoadFileByCoroutine(string url, Action<UnityWebRequest> callback,int timeout = 5)
     {
-        StartCoroutine(DownloadFile(url, callback));
+        StartCoroutine(DownloadFile(url, callback,5));
     }
 
     public void AssetLoadToLocalByCorutine(string url, string toPath, Action<byte[]> callback = null)

+ 1 - 1
Assets/Src/Core/DownLoad/DownloadTask.cs

@@ -73,7 +73,7 @@ public class DownloadTask : MonoBehaviour
         {
             ret = false;
         }
-        webRqst.timeout = 20;
+        webRqst.timeout = 5;
         return ret;
     }
 

+ 3 - 3
Assets/Src/GameLogic/LaunchLoadMgr.cs

@@ -134,10 +134,10 @@ public class LaunchLoadMgr
 
         if (isOpenCheck)
         {
-            string checkurl = $"{url}serverlist/serverstate?platform={param}";
+            string checkurl = $"{url}{param}";
             AssetDownloader.Instance.DownLoadFileByCoroutine(checkurl, webreq =>
              {
-                 bool isShenHe = false;
+                 bool isShenHe = true;
                  if (webreq != null)
                  {
                      string data = webreq.downloadHandler.text;
@@ -154,7 +154,7 @@ public class LaunchLoadMgr
                  {
                      GameMgr.Instance.DoTaskByCorutine(CheckResUpdate);
                  }
-             });
+             },2);
         }
         else
         {

+ 1 - 1
Build/BuildDependenceResource/CurPackEnv.ini

@@ -1 +1 @@
-{"m_ChannelUniqueId":"12002022","m_BuildClassName":"Pack.PackPlatformAndroid"}
+{"m_ChannelUniqueId":"12002007","m_BuildClassName":"Pack.PackPlatformAndroid"}

TEMPAT SAMPAH
Build/BuildDependenceResource/Login/港澳台_new/img_login00.png


+ 132 - 0
Build/BuildDependenceResource/Login/港澳台_new/img_login00.png.meta

@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: da1604d17b741bf48b6dfaf419c0b247
+TextureImporter:
+  fileIDToRecycleName: {}
+  externalObjects: {}
+  serializedVersion: 9
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 0
+    sRGBTexture: 1
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: -1
+    aniso: -1
+    mipBias: -100
+    wrapU: 1
+    wrapV: 1
+    wrapW: -1
+  nPOTScale: 0
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 1
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 100
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 1
+  spriteTessellationDetail: -1
+  textureType: 8
+  textureShape: 1
+  singleChannelComponent: 0
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  platformSettings:
+  - serializedVersion: 2
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+  - serializedVersion: 2
+    buildTarget: Standalone
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: 12
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 1
+    androidETC2FallbackOverride: 0
+  - serializedVersion: 2
+    buildTarget: iPhone
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: 56
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 1
+    androidETC2FallbackOverride: 0
+  - serializedVersion: 2
+    buildTarget: Android
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: 47
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 1
+    androidETC2FallbackOverride: 0
+  - serializedVersion: 2
+    buildTarget: Windows Store Apps
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: d5289f9aecc690d45be49871b113529d
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 

TEMPAT SAMPAH
Build/BuildDependenceResource/Login/港澳台_new/img_login01.png


+ 132 - 0
Build/BuildDependenceResource/Login/港澳台_new/img_login01.png.meta

@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 9eb592dc9e2d3f14fa4e324439f8fb8e
+TextureImporter:
+  fileIDToRecycleName: {}
+  externalObjects: {}
+  serializedVersion: 9
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 0
+    sRGBTexture: 1
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: -1
+    aniso: -1
+    mipBias: -100
+    wrapU: 1
+    wrapV: 1
+    wrapW: -1
+  nPOTScale: 0
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 1
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 100
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 1
+  spriteTessellationDetail: -1
+  textureType: 8
+  textureShape: 1
+  singleChannelComponent: 0
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  platformSettings:
+  - serializedVersion: 2
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+  - serializedVersion: 2
+    buildTarget: Standalone
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: 10
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 1
+    androidETC2FallbackOverride: 0
+  - serializedVersion: 2
+    buildTarget: iPhone
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: 50
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 1
+    androidETC2FallbackOverride: 0
+  - serializedVersion: 2
+    buildTarget: Android
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: 34
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 1
+    androidETC2FallbackOverride: 0
+  - serializedVersion: 2
+    buildTarget: Windows Store Apps
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 710dc56643f2b0445a6af77a6d7e764e
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 

TEMPAT SAMPAH
Build/BuildDependenceResource/Login/港澳台_new/img_login02.png


+ 132 - 0
Build/BuildDependenceResource/Login/港澳台_new/img_login02.png.meta

@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: c50558a0b9e0b414b833edfc498548a8
+TextureImporter:
+  fileIDToRecycleName: {}
+  externalObjects: {}
+  serializedVersion: 9
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 0
+    sRGBTexture: 1
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: -1
+    aniso: -1
+    mipBias: -100
+    wrapU: 1
+    wrapV: 1
+    wrapW: -1
+  nPOTScale: 0
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 1
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 100
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 1
+  spriteTessellationDetail: -1
+  textureType: 8
+  textureShape: 1
+  singleChannelComponent: 0
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  platformSettings:
+  - serializedVersion: 2
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+  - serializedVersion: 2
+    buildTarget: Standalone
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: 10
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 1
+    androidETC2FallbackOverride: 0
+  - serializedVersion: 2
+    buildTarget: iPhone
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: 50
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 1
+    androidETC2FallbackOverride: 0
+  - serializedVersion: 2
+    buildTarget: Android
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: 34
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 1
+    androidETC2FallbackOverride: 0
+  - serializedVersion: 2
+    buildTarget: Windows Store Apps
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 085835d74a076f24ebce915f61652b9d
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 

TEMPAT SAMPAH
Build/BuildDependenceResource/Logo/Tw-new.png


+ 116 - 8
Build/BuildDependenceResource/PackConfig.json

@@ -1048,6 +1048,114 @@
             "keystorePass": "n9P5j2b7blMm",
             "keyaliasName": "game",
             "keyaliasPass": "KlYX666Ro"
+        },
+        {
+            "channelName": "小龙",
+            "appName": "萌新冒險家",
+            "distributeName": "正式服(新港澳台)",
+            "channelUniqueId": "12003020",
+            "bundleId": "com.mxmxjgame.gp",
+            "gameVersionCode": {
+                "major": 1,
+                "minor": 0,
+                "release": 0,
+                "patch": 6
+            },
+            "resVersionCode": {
+                "major": 0,
+                "minor": 1,
+                "release": 0,
+                "patch": 0
+            },
+            "iconRelativePath": "XinLiWuYu",
+            "defineSymbols": [
+                "USE_LUA",
+                "VUPLEX_CCU",
+                "FPS_DISABLE"
+            ],
+            "logo1RelativePath": "Tw-new.png",
+            "loginRelativePath": "港澳台_new",
+            "gameAssetsPath": "Default",
+            "specialFuncShield": false,
+            "splashScreenRelativeFiles": [],
+            "obscureKey": "b497cf7b1214c130e0140910a7f8c6bf,536607",
+            "obscureOffsetMin": 0,
+            "obscureOffsetValues": [
+                6,
+                12,
+                18
+            ],
+            "sdkVerifyUrl": "http://128.14.226.105:81//",
+            "serverListUrl": "http://128.14.226.105:81/serverlist",
+            "notifyUrl": "http://128.14.226.105:88/res/NoticeNew/",
+            "specialInfoUrl": "http://128.14.226.105:81//channel",
+            "customerServiceInfoUrl": "http://165.154.202.27:81//vipService",
+            "leBian_MainChId": "69423",
+            "leBian_ClientChId": "youyi_bt_jj",
+            "leBian_SECID": "dmcve6kq.c",
+            "plugins": [
+                "common",
+                "YOUYI_1.6.9"
+            ],
+            "sdkBridges": [
+                "Quick_andriod_hy_en"
+            ],
+            "keystoreName": "wenting.keystore",
+            "keystorePass": "n9P5j2b7blMm",
+            "keyaliasName": "game",
+            "keyaliasPass": "KlYX666Ro"
+        },
+        {
+            "channelName": "小龙",
+            "appName": "萌新冒險家",
+            "distributeName": "测试服(新港澳台)",
+            "channelUniqueId": "12003021",
+            "bundleId": "com.mxmxjgame.gp",
+            "gameVersionCode": {
+                "major": 1,
+                "minor": 0,
+                "release": 0,
+                "patch": 6
+            },
+            "resVersionCode": {
+                "major": 0,
+                "minor": 1,
+                "release": 0,
+                "patch": 0
+            },
+            "iconRelativePath": "XinLiWuYu",
+            "defineSymbols": [
+                "USE_LUA",
+                "VUPLEX_CCU",
+                "FPS_DISABLE"
+            ],
+            "logo1RelativePath": "Tw-new.png",
+            "loginRelativePath": "港澳台_new",
+            "gameAssetsPath": "Default",
+            "specialFuncShield": false,
+            "splashScreenRelativeFiles": [],
+            "obscureKey": "",
+            "obscureOffsetMin": 0,
+            "obscureOffsetValues": [],
+            "sdkVerifyUrl": "http://43.226.57.217:81//",
+            "serverListUrl": "http://43.226.57.217:81/serverlist",
+            "notifyUrl": "http://43.226.57.217:88/res/NoticeNew/",
+            "specialInfoUrl": "http://43.226.57.217:81//channel",
+            "customerServiceInfoUrl": "http://43.226.57.217:81//vipService",
+            "leBian_MainChId": "69423",
+            "leBian_ClientChId": "youyi_bt_jj",
+            "leBian_SECID": "dmcve6kq.c",
+            "plugins": [
+                "common",
+                "YOUYI_1.6.9"
+            ],
+            "sdkBridges": [
+                "Quick_andriod_hy_en"
+            ],
+            "keystoreName": "wenting.keystore",
+            "keystorePass": "n9P5j2b7blMm",
+            "keyaliasName": "game",
+            "keyaliasPass": "KlYX666Ro"
         }
     ],
     "weiDuanAndroids": [
@@ -1166,7 +1274,7 @@
             "logo1RelativePath": "ntquick.png",
             "loginRelativePath": "Default",
             "gameAssetsPath": "Default",
-            "specialFuncShield": true,
+            "specialFuncShield": false,
             "splashScreenRelativeFiles": [],
             "obscureKey": "c685bfa79e3210cda0ae126c9fffabf5",
             "obscureOffsetMin": 0,
@@ -1428,7 +1536,7 @@
             "logo1RelativePath": "ntquick.png",
             "loginRelativePath": "Default",
             "gameAssetsPath": "Default",
-            "specialFuncShield": true,
+            "specialFuncShield": false,
             "splashScreenRelativeFiles": [],
             "obscureKey": "",
             "obscureOffsetMin": 0,
@@ -1476,7 +1584,7 @@
             "logo1RelativePath": "ntquick.png",
             "loginRelativePath": "Default",
             "gameAssetsPath": "Default",
-            "specialFuncShield": true,
+            "specialFuncShield": false,
             "splashScreenRelativeFiles": [],
             "obscureKey": "c0f0a92eecc1ab6e757ec2b856b05799",
             "obscureOffsetMin": 0,
@@ -1528,7 +1636,7 @@
             "logo1RelativePath": "ntquick.png",
             "loginRelativePath": "Default",
             "gameAssetsPath": "Default",
-            "specialFuncShield": true,
+            "specialFuncShield": false,
             "splashScreenRelativeFiles": [],
             "obscureKey": "fa0574eb0381d1b043c62fbd46f10bcb",
             "obscureOffsetMin": 0,
@@ -1556,7 +1664,7 @@
         {
             "channelName": "小龙",
             "appName": "萌新冒險家",
-            "distributeName": "正式服(东南亚)",
+            "distributeName": "正式服(新港澳台)",
             "channelUniqueId": "22002013",
             "bundleId": "com.Runjin.Wonderland",
             "gameVersionCode": {
@@ -1577,10 +1685,10 @@
                 "VUPLEX_CCU",
                 "FPS_DISABLE"
             ],
-            "logo1RelativePath": "ntquick.png",
-            "loginRelativePath": "Default",
+            "logo1RelativePath": "Tw-new.png",
+            "loginRelativePath": "港澳台_new",
             "gameAssetsPath": "Default",
-            "specialFuncShield": true,
+            "specialFuncShield": false,
             "splashScreenRelativeFiles": [],
             "obscureKey": "acbd2331ffcd5987addc754a87f",
             "obscureOffsetMin": 0,

+ 10 - 1
Build/BuildDependenceResource/Plugins/SDKBridge/Android_en_hx/YouYiSDKAndroid.cs

@@ -74,7 +74,16 @@ namespace quicksdk
             {
                 Dictionary<string, SDKMgr.ProductInfo> cfgs = SDKMgr.Instance.ProductInfos;
 
-                string pice = amount.ToString("F2");
+                 int itemp = Mathf.FloorToInt(amount);
+                string pice = "";
+                if ((itemp + 0.005f) > amount)
+                {
+                    pice = itemp.ToString();
+                }
+                else
+                {
+                    pice = amount.ToString("F2");
+                }
 
                 if (cfgs.ContainsKey(pice))
                 {

+ 10 - 1
Build/BuildDependenceResource/Plugins/SDKBridge/Quick_andriod_hy_en/YouYiSDKAndroid.cs

@@ -74,7 +74,16 @@ public class YouYiSDKAndroid : SDKBase
             {
                 Dictionary<string, SDKMgr.ProductInfo> cfgs = SDKMgr.Instance.ProductInfos;
 
-                string pice = amount.ToString("F2");
+                 int itemp = Mathf.FloorToInt(amount);
+                string pice = "";
+                if ((itemp + 0.005f) > amount)
+                {
+                    pice = itemp.ToString();
+                }
+                else
+                {
+                    pice = amount.ToString("F2");
+                }
 
                 if (cfgs.ContainsKey(pice))
                 {

+ 4 - 0
ProtocolGen/proto/ProtoMsgId.lua

@@ -724,6 +724,10 @@
 	CS_PAY_ORDER_COMPLETE_REQ         = 6072,		--	CSPayOrderCompleteReq **CSPayOrderCompleteReq **login.proto **game [CSPayOrderCompleteReq]
 	SC_PAY_ORDER_COMPLETE_ACK         = 6073,		--	SCPayOrderCompleteAck **SCPayOrderCompleteAck **login.proto **game [SCPayOrderCompleteAck]
 	SC_DNY_SDK_NTF       = 6076,		--	SCDnySdkNtf **SCDnySdkNtf **login.proto ** [SCDnySdkNtf]
+	CS_USER_DELETE_REQ         = 6077,		--	CSUserDeleteReq **CSUserDeleteReq **login.proto **game [CSUserDeleteReq]
+	SC_USER_DELETE_ACK         = 6078,		--	SCUserDeleteAck **SCUserDeleteAck **login.proto **game [SCUserDeleteAck]
+	CS_USER_DELETE_INFO_REQ         = 6079,		--	CSUserDeleteInfoReq **CSUserDeleteInfoReq **login.proto **game [CSUserDeleteInfoReq]
+	SC_USER_DELETE_INFO_ACK         = 6080,		--	SCUserDeleteInfoAck **SCUserDeleteInfoAck **login.proto **game [SCUserDeleteInfoAck]
 
     }
     return ProtoMsgId

+ 17 - 0
ProtocolGen/proto/login.proto

@@ -3837,4 +3837,21 @@ message SCPayOrderCompleteAck {   //project game  //RouteRule game
 
 message SCDnySdkNtf {
     int32       type =1;//类型
+}
+
+message CSUserDeleteReq{
+    int32      status         = 1;//0表示删除(默认)。1表示取消删除
+}
+
+message SCUserDeleteAck{
+    int32       error                   = 1; //错误码,OK表示重连成功
+    int64 time=2;//角色删除剩余时间
+}
+
+message CSUserDeleteInfoReq{
+}
+
+message SCUserDeleteInfoAck{
+    int32       error                   = 1; //错误码,OK表示重连成功
+    int64 time=2;//角色删除剩余时间,为0代表无删除
 }

+ 4 - 0
ProtocolGen/proto/messagedefclient.proto

@@ -727,4 +727,8 @@ enum protoMsgId{
 	CS_PAY_ORDER_COMPLETE_REQ         = 6072;		//	CSPayOrderCompleteReq **CSPayOrderCompleteReq **login.proto **game [CSPayOrderCompleteReq]
 	SC_PAY_ORDER_COMPLETE_ACK         = 6073;		//	SCPayOrderCompleteAck **SCPayOrderCompleteAck **login.proto **game [SCPayOrderCompleteAck]
 	SC_DNY_SDK_NTF       = 6076;		//	SCDnySdkNtf **SCDnySdkNtf **login.proto ** [SCDnySdkNtf]
+	CS_USER_DELETE_REQ         = 6077;		//	CSUserDeleteReq **CSUserDeleteReq **login.proto **game [CSUserDeleteReq]
+	SC_USER_DELETE_ACK         = 6078;		//	SCUserDeleteAck **SCUserDeleteAck **login.proto **game [SCUserDeleteAck]
+	CS_USER_DELETE_INFO_REQ         = 6079;		//	CSUserDeleteInfoReq **CSUserDeleteInfoReq **login.proto **game [CSUserDeleteInfoReq]
+	SC_USER_DELETE_INFO_ACK         = 6080;		//	SCUserDeleteInfoAck **SCUserDeleteInfoAck **login.proto **game [SCUserDeleteInfoAck]
 }

+ 4 - 0
ProtocolGen/proto/protocal.proto

@@ -322,6 +322,8 @@ message Request {
      CSClimbingTowerWjRankReq         	CS_CLIMBING_TOWER_WJ_RANK_REQ           =  6063;         // CSClimbingTowerWjRankReq **CSClimbingTowerWjRankReq **login.proto **game [CSClimbingTowerWjRankReq]
      CSClimbingTowerWjBuffReq         	CS_CLIMBING_TOWER_WJ_BUFF_REQ           =  6066;         // CSClimbingTowerWjBuffReq **CSClimbingTowerWjBuffReq **login.proto **game [CSClimbingTowerWjBuffReq]
      CSPayOrderCompleteReq         	CS_PAY_ORDER_COMPLETE_REQ             =  6072;         //	CSPayOrderCompleteReq **CSPayOrderCompleteReq **login.proto **game [CSPayOrderCompleteReq]
+     CSUserDeleteReq         	CS_USER_DELETE_REQ             =  6077;         //	CSUserDeleteReq **CSUserDeleteReq **login.proto **game [CSUserDeleteReq]
+     CSUserDeleteInfoReq         	CS_USER_DELETE_INFO_REQ             =  6079;         //	CSUserDeleteInfoReq **CSUserDeleteInfoReq **login.proto **game [CSUserDeleteInfoReq]
 }
 message Response {
      SCPingAck           	SC_PING_ACK                          =  1001;         //	SCPingAck **SCPingAck **login.proto ** [SCPingAck]
@@ -734,4 +736,6 @@ message Response {
      SCClimbingTowerWjBuffAck           	SC_CLIMBING_TOWER_WJ_BUFF_ACK           =  6067;         // SCClimbingTowerWjBuffAck **SCClimbingTowerWjBuffAck **login.proto ** [SCClimbingTowerWjBuffAck]
      SCPayOrderCompleteAck           	SC_PAY_ORDER_COMPLETE_ACK             =  6073;         //	SCPayOrderCompleteAck **SCPayOrderCompleteAck **login.proto **game [SCPayOrderCompleteAck]
      SCDnySdkNtf           	SC_DNY_SDK_NTF           =  6076;         //	SCDnySdkNtf **SCDnySdkNtf **login.proto ** [SCDnySdkNtf]
+     SCUserDeleteAck           	SC_USER_DELETE_ACK             =  6078;         //	SCUserDeleteAck **SCUserDeleteAck **login.proto **game [SCUserDeleteAck]
+     SCUserDeleteInfoAck           	SC_USER_DELETE_INFO_ACK             =  6080;         //	SCUserDeleteInfoAck **SCUserDeleteInfoAck **login.proto **game [SCUserDeleteInfoAck]
 }

+ 21 - 16
README.md

@@ -4,22 +4,27 @@
 
 | 分支 | 说明 |
 |:-------:|:-------:|
- |   cn_0_1  | 国内 0.1 版
- | cn_merage
- | cn_zhuanFu | 国内专服
- | hy_en |海外英文(英美)
- | hy_iios_new | 海外ios(港澳台)
- | hy_ios | 海外ios(港澳台)(旧)
- | hy_ios_en |海外英文IOS(英美)
- | hy_new | 海外(港澳台)
- | hy_oldhp
- | hy_ru |海外俄语
- | hy_skin | 舍弃掉的
- | hy_test  | 海外测试(用于测试服,一般用于合并主分支的修改)(港澳台)
- | main  |主
- | new | 海外ios(港澳台)(旧)
- | skin_test
- | sskin  | 皮肤测试
+|   cn_0_1  | 国内 0.1 版
+| cn_merage | 合并
+| cn_zhuanFu | 国内专服
+| hy_en | 海外英文(英美)
+| hy_iios_new | 海外ios(港澳台)
+| hy_ios | 海外ios(港澳台)(旧)
+| hy_ios_en | 海外英文IOS(英美)
+| hy_new | 海外(港澳台)
+| hy_oldhp | 旧版hp
+| hy_ru | 海外俄语
+| hy_skin | 舍弃掉的
+| hy_test  | 海外测试(用于测试服,一般用于合并主分支的修改)(港澳台)
+| main  | 主
+| new | 海外ios(港澳台)(旧)
+| skin_test | 皮肤测试
+| sskin  | 皮肤测试
+
+> 各语言最新分支 
+> > 英文版: hy_dny </br>
+> > 繁体:hy_tw-en </br>
+> > 俄语:hy_ru </br>
 
 ## 目录结构说明
 ### 常规目录

Beberapa file tidak ditampilkan karena terlalu banyak file yang berubah dalam diff ini