From b1383a709143d669cf1581d2f87534b282d22945 Mon Sep 17 00:00:00 2001 From: hahwu <31872165+hahwu@users.noreply.github.com> Date: Mon, 23 Mar 2026 17:12:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B4=BB=E5=8A=A8=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/api/core/activity.ts | 41 + apps/web-antd/src/api/core/log.ts | 1 + apps/web-antd/src/api/core/operation.ts | 2 +- apps/web-antd/src/api/core/user.ts | 2 + .../src/locales/langs/zh-CN/page.json | 3 +- .../src/router/routes/modules/dashboard.ts | 6 +- .../src/router/routes/modules/operation.ts | 10 + .../src/router/routes/modules/userlog.ts | 4 +- apps/web-antd/src/store/Item.json | 8594 +++++++++++++++++ apps/web-antd/src/store/order.ts | 10 + apps/web-antd/src/store/util.ts | 17 + .../views/dashboard/serverList/appList.vue | 5 + .../src/views/dashboard/serverList/index.vue | 21 +- .../src/views/language/addLanguage.vue | 17 +- apps/web-antd/src/views/language/language.vue | 15 +- .../views/operation/activity/activity-add.vue | 176 + .../operation/activity/activity-detail.vue | 184 + .../operation/activity/activity-table.vue | 187 + .../src/views/operation/activity/index.vue | 12 + .../views/operation/activity/mail-table.vue | 258 + .../src/views/operation/mail/mail-detail.vue | 87 +- .../src/views/operation/mail/mail-info.vue | 70 +- .../src/views/operation/mail/mail-table.vue | 36 +- .../src/views/operation/scripts/scripts.vue | 4 +- .../views/userlog/userlist/asset-table.vue | 11 +- .../src/views/userlog/userlist/user.vue | 4 + .../src/views/userlog/userlist/userlist.vue | 38 +- apps/web-antd/template.json | 291 + .../dashboard/workbench/workbench-detail.vue | 12 + 29 files changed, 10043 insertions(+), 75 deletions(-) create mode 100644 apps/web-antd/src/api/core/activity.ts create mode 100644 apps/web-antd/src/store/Item.json create mode 100644 apps/web-antd/src/views/operation/activity/activity-add.vue create mode 100644 apps/web-antd/src/views/operation/activity/activity-detail.vue create mode 100644 apps/web-antd/src/views/operation/activity/activity-table.vue create mode 100644 apps/web-antd/src/views/operation/activity/index.vue create mode 100644 apps/web-antd/src/views/operation/activity/mail-table.vue create mode 100644 apps/web-antd/template.json diff --git a/apps/web-antd/src/api/core/activity.ts b/apps/web-antd/src/api/core/activity.ts new file mode 100644 index 0000000..b0dfe64 --- /dev/null +++ b/apps/web-antd/src/api/core/activity.ts @@ -0,0 +1,41 @@ +import { requestClient } from '#/api/request'; + +export interface ActivityData { + id: number; + type: number; + title?: string; + mail_title?: string; + mail_content?: string; + start_time: number; + end_time: number; + level?: number; + cfg?: string; + extra?: string; +} + +export interface ActivityListParam { + AppId : number; + ServerId: number; + PageSize: number; + CurrentPage: number; +} + +export interface EditActivityParam { + AppId : number; + Cfg : ActivityData; +} + + +export async function getActivityListApi(p:ActivityListParam) { + return requestClient.post('/activity/list', p); +} + +export async function editActivityApi(p: EditActivityParam) { + return requestClient.post('/activity/edit', p); +} + + +export async function addActivityApi(p: EditActivityParam) { + return requestClient.post('/activity/add', p); +} + diff --git a/apps/web-antd/src/api/core/log.ts b/apps/web-antd/src/api/core/log.ts index e5ef5b1..e1dcd67 100644 --- a/apps/web-antd/src/api/core/log.ts +++ b/apps/web-antd/src/api/core/log.ts @@ -58,6 +58,7 @@ export interface UserLogInfo { ActLog?:actlog[]; MaxCharge?: number; FriendList?: friendRecord[]; + AdWatch?: number; } export interface actlog { diff --git a/apps/web-antd/src/api/core/operation.ts b/apps/web-antd/src/api/core/operation.ts index 7e07caf..c753d4d 100644 --- a/apps/web-antd/src/api/core/operation.ts +++ b/apps/web-antd/src/api/core/operation.ts @@ -4,5 +4,5 @@ import type { copyUserParam } from '#/model/type'; export async function copyUser(data:copyUserParam) { - return requestClient.post('/operation/copyUser', data); + return requestClient.post('/operation/copyUser', data, {timeout: 120000}); } \ No newline at end of file diff --git a/apps/web-antd/src/api/core/user.ts b/apps/web-antd/src/api/core/user.ts index 7b80f42..ad7466f 100644 --- a/apps/web-antd/src/api/core/user.ts +++ b/apps/web-antd/src/api/core/user.ts @@ -16,6 +16,8 @@ export interface UserListParam { StartTime?: number; EndTime?: number; Nickname?: string; + Username?: string; + DeviceId?: string; } diff --git a/apps/web-antd/src/locales/langs/zh-CN/page.json b/apps/web-antd/src/locales/langs/zh-CN/page.json index a3b5a4c..ea176a5 100644 --- a/apps/web-antd/src/locales/langs/zh-CN/page.json +++ b/apps/web-antd/src/locales/langs/zh-CN/page.json @@ -56,7 +56,8 @@ "mail": "邮件管理", "order": "订单管理", "language": "翻译管理", - "copyUser": "用户数据复制" + "copyUser": "用户数据复制", + "activity": "活动管理" }, "server":{ "merge_pet_test":"测试服", diff --git a/apps/web-antd/src/router/routes/modules/dashboard.ts b/apps/web-antd/src/router/routes/modules/dashboard.ts index 303b142..ba2623f 100644 --- a/apps/web-antd/src/router/routes/modules/dashboard.ts +++ b/apps/web-antd/src/router/routes/modules/dashboard.ts @@ -43,7 +43,7 @@ const routes: RouteRecordRaw[] = [ affixTab: false, icon: 'lucide:app-window', title: $t('page.dashboard.app-list'), - authority: ['super', 'admin'], + authority: ['super'], }, }, { @@ -54,7 +54,7 @@ const routes: RouteRecordRaw[] = [ affixTab: false, icon: 'lucide:server', title: $t('page.dashboard.node-list'), - authority: ['super', 'admin'], + authority: ['super'], }, }, { @@ -65,7 +65,7 @@ const routes: RouteRecordRaw[] = [ affixTab: false, icon: 'lucide:database', title: $t('page.dashboard.mysql-list'), - authority: ['super', 'admin'], + authority: ['super'], }, }, ], diff --git a/apps/web-antd/src/router/routes/modules/operation.ts b/apps/web-antd/src/router/routes/modules/operation.ts index 4e31f78..b56cd7f 100644 --- a/apps/web-antd/src/router/routes/modules/operation.ts +++ b/apps/web-antd/src/router/routes/modules/operation.ts @@ -55,6 +55,16 @@ const routes: RouteRecordRaw[] = [ icon: 'lets-icons:order', title: $t('page.operation.order'), }, + }, + { + name: 'Activity', + path: '/activity', + component: () => import('#/views/operation/activity/index.vue'), + meta: { + affixTab: true, + icon: 'lets-icons:order', + title: $t('page.operation.activity'), + }, } ], }, diff --git a/apps/web-antd/src/router/routes/modules/userlog.ts b/apps/web-antd/src/router/routes/modules/userlog.ts index b9b009b..87a1324 100644 --- a/apps/web-antd/src/router/routes/modules/userlog.ts +++ b/apps/web-antd/src/router/routes/modules/userlog.ts @@ -33,6 +33,7 @@ const routes: RouteRecordRaw[] = [ affixTab: true, icon: 'solar:stars-bold', title: $t('page.userlog.assetlog'), + authority: ['super'], }, }, { @@ -43,6 +44,7 @@ const routes: RouteRecordRaw[] = [ affixTab: true, icon: 'lucide:apple', title: $t('page.userlog.eventlog'), + authority: ['super'], }, }, { @@ -53,9 +55,9 @@ const routes: RouteRecordRaw[] = [ affixTab: true, icon: 'solar:chat-round-money-bold', title: $t('page.userlog.orderlog'), + authority: ['super'], }, }, - ], }, ]; diff --git a/apps/web-antd/src/store/Item.json b/apps/web-antd/src/store/Item.json new file mode 100644 index 0000000..5bc4aac --- /dev/null +++ b/apps/web-antd/src/store/Item.json @@ -0,0 +1,8594 @@ +{ + "1": { + "IType": 100, + "Effect": "", + "Name": "小鱼饼干", + "FullResourcePath": "" + }, + "2": { + "IType": 100, + "Effect": "", + "Name": "骨头饼干", + "FullResourcePath": "" + }, + "3": { + "IType": 100, + "Effect": "", + "Name": "混合宠物饼干", + "FullResourcePath": "" + }, + "4": { + "IType": 100, + "Effect": "", + "Name": "一碗宠物粮", + "FullResourcePath": "" + }, + "5": { + "IType": 100, + "Effect": "", + "Name": "一方碗宠物粮", + "FullResourcePath": "" + }, + "6": { + "IType": 100, + "Effect": "", + "Name": "一碗混合宠物粮", + "FullResourcePath": "" + }, + "7": { + "IType": 100, + "Effect": "", + "Name": "宠物肉饼", + "FullResourcePath": "" + }, + "8": { + "IType": 100, + "Effect": "", + "Name": "宠物香肠", + "FullResourcePath": "" + }, + "9": { + "IType": 100, + "Effect": "", + "Name": "宠物米饭", + "FullResourcePath": "" + }, + "10": { + "IType": 100, + "Effect": "", + "Name": "宠物什锦饭", + "FullResourcePath": "" + }, + "11": { + "IType": 100, + "Effect": "", + "Name": "宠物火腿", + "FullResourcePath": "" + }, + "12": { + "IType": 100, + "Effect": "", + "Name": "宠物烤鸡", + "FullResourcePath": "" + }, + "13": { + "IType": 100, + "Effect": "", + "Name": "宠物牛排", + "FullResourcePath": "" + }, + "14": { + "IType": 100, + "Effect": "", + "Name": "宠物三文鱼", + "FullResourcePath": "" + }, + "15": { + "IType": 100, + "Effect": "", + "Name": "宠物刺身拼盘", + "FullResourcePath": "" + }, + "21": { + "IType": 100, + "Effect": "", + "Name": "奶油猫条", + "FullResourcePath": "" + }, + "22": { + "IType": 100, + "Effect": "", + "Name": "小包猫咪咕噜酱", + "FullResourcePath": "" + }, + "23": { + "IType": 100, + "Effect": "", + "Name": "小袋猫咪咕噜酱", + "FullResourcePath": "" + }, + "24": { + "IType": 100, + "Effect": "", + "Name": "杯装猫咪咕噜酱", + "FullResourcePath": "" + }, + "25": { + "IType": 100, + "Effect": "", + "Name": "小猫罐头", + "FullResourcePath": "" + }, + "26": { + "IType": 100, + "Effect": "", + "Name": "中猫罐头", + "FullResourcePath": "" + }, + "27": { + "IType": 100, + "Effect": "", + "Name": "大猫罐头", + "FullResourcePath": "" + }, + "28": { + "IType": 100, + "Effect": "", + "Name": "特大猫罐头", + "FullResourcePath": "" + }, + "29": { + "IType": 100, + "Effect": "", + "Name": "家庭装猫罐头", + "FullResourcePath": "" + }, + "30": { + "IType": 100, + "Effect": "", + "Name": "普通包鱼干", + "FullResourcePath": "" + }, + "31": { + "IType": 100, + "Effect": "", + "Name": "大包鱼干", + "FullResourcePath": "" + }, + "32": { + "IType": 100, + "Effect": "", + "Name": "超大包鱼干", + "FullResourcePath": "" + }, + "41": { + "IType": 100, + "Effect": "", + "Name": "棉花", + "FullResourcePath": "" + }, + "42": { + "IType": 100, + "Effect": "", + "Name": "棉球", + "FullResourcePath": "" + }, + "43": { + "IType": 100, + "Effect": "", + "Name": "宠物脖套", + "FullResourcePath": "" + }, + "44": { + "IType": 100, + "Effect": "", + "Name": "宠物条纹三角巾", + "FullResourcePath": "" + }, + "45": { + "IType": 100, + "Effect": "", + "Name": "爱心三角巾", + "FullResourcePath": "" + }, + "46": { + "IType": 100, + "Effect": "", + "Name": "宠物围巾", + "FullResourcePath": "" + }, + "47": { + "IType": 100, + "Effect": "", + "Name": "宠物帽", + "FullResourcePath": "" + }, + "48": { + "IType": 100, + "Effect": "", + "Name": "宠物保暖套装", + "FullResourcePath": "" + }, + "49": { + "IType": 100, + "Effect": "", + "Name": "宠物睡衣", + "FullResourcePath": "" + }, + "50": { + "IType": 100, + "Effect": "", + "Name": "宠物针织衫", + "FullResourcePath": "" + }, + "51": { + "IType": 100, + "Effect": "", + "Name": "宠物卫衣", + "FullResourcePath": "" + }, + "52": { + "IType": 100, + "Effect": "", + "Name": "宠物帽衫", + "FullResourcePath": "" + }, + "53": { + "IType": 100, + "Effect": "", + "Name": "宠物外套", + "FullResourcePath": "" + }, + "54": { + "IType": 100, + "Effect": "", + "Name": "宠物雨衣", + "FullResourcePath": "" + }, + "55": { + "IType": 100, + "Effect": "", + "Name": "宠物羽绒服", + "FullResourcePath": "" + }, + "61": { + "IType": 100, + "Effect": "", + "Name": "宠物防滑贴", + "FullResourcePath": "" + }, + "62": { + "IType": 100, + "Effect": "", + "Name": "宠物护爪套", + "FullResourcePath": "" + }, + "63": { + "IType": 100, + "Effect": "", + "Name": "宠物袜", + "FullResourcePath": "" + }, + "64": { + "IType": 100, + "Effect": "", + "Name": "宠物花凉鞋", + "FullResourcePath": "" + }, + "65": { + "IType": 100, + "Effect": "", + "Name": "宠物蝴蝶结凉鞋", + "FullResourcePath": "" + }, + "66": { + "IType": 100, + "Effect": "", + "Name": "宠物橡胶鞋", + "FullResourcePath": "" + }, + "67": { + "IType": 100, + "Effect": "", + "Name": "宠物雨鞋", + "FullResourcePath": "" + }, + "68": { + "IType": 100, + "Effect": "", + "Name": "宠物靴", + "FullResourcePath": "" + }, + "69": { + "IType": 100, + "Effect": "", + "Name": "宠物雨靴", + "FullResourcePath": "" + }, + "70": { + "IType": 100, + "Effect": "", + "Name": "宠物运动鞋", + "FullResourcePath": "" + }, + "71": { + "IType": 100, + "Effect": "", + "Name": "宠物冬靴", + "FullResourcePath": "" + }, + "72": { + "IType": 100, + "Effect": "", + "Name": "宠物蝴蝶结冬靴", + "FullResourcePath": "" + }, + "81": { + "IType": 100, + "Effect": "", + "Name": "小鱼饼干模具", + "FullResourcePath": "" + }, + "82": { + "IType": 100, + "Effect": "", + "Name": "骨头饼干模具", + "FullResourcePath": "" + }, + "83": { + "IType": 100, + "Effect": "", + "Name": "饼干模具套装", + "FullResourcePath": "" + }, + "84": { + "IType": 100, + "Effect": "", + "Name": "烤盘", + "FullResourcePath": "" + }, + "85": { + "IType": 100, + "Effect": "", + "Name": "铸铁锅", + "FullResourcePath": "" + }, + "86": { + "IType": 100, + "Effect": "", + "Name": "烤盘套装", + "FullResourcePath": "" + }, + "87": { + "IType": 100, + "Effect": "", + "Name": "空气炸锅", + "FullResourcePath": "" + }, + "88": { + "IType": 100, + "Effect": "", + "Name": "迷你烤箱", + "FullResourcePath": "" + }, + "89": { + "IType": 100, + "Effect": "", + "Name": "日常烤箱", + "FullResourcePath": "" + }, + "90": { + "IType": 100, + "Effect": "", + "Name": "对流烤箱", + "FullResourcePath": "" + }, + "91": { + "IType": 100, + "Effect": "", + "Name": "智烤大厨", + "FullResourcePath": "" + }, + "92": { + "IType": 100, + "Effect": "", + "Name": "烘焙大师套装", + "FullResourcePath": "" + }, + "101": { + "IType": 100, + "Effect": "", + "Name": "缝针", + "FullResourcePath": "" + }, + "102": { + "IType": 100, + "Effect": "", + "Name": "缝纫线", + "FullResourcePath": "" + }, + "103": { + "IType": 100, + "Effect": "", + "Name": "针插", + "FullResourcePath": "" + }, + "104": { + "IType": 100, + "Effect": "", + "Name": "毛衣针", + "FullResourcePath": "" + }, + "105": { + "IType": 100, + "Effect": "", + "Name": "半成品围巾", + "FullResourcePath": "" + }, + "106": { + "IType": 100, + "Effect": "", + "Name": "毛线篮", + "FullResourcePath": "" + }, + "107": { + "IType": 100, + "Effect": "", + "Name": "手工篮", + "FullResourcePath": "" + }, + "108": { + "IType": 100, + "Effect": "", + "Name": "缝纫机", + "FullResourcePath": "" + }, + "109": { + "IType": 100, + "Effect": "", + "Name": "电动缝纫机", + "FullResourcePath": "" + }, + "110": { + "IType": 100, + "Effect": "", + "Name": "经典缝纫机", + "FullResourcePath": "" + }, + "111": { + "IType": 100, + "Effect": "", + "Name": "重型缝纫机", + "FullResourcePath": "" + }, + "112": { + "IType": 100, + "Effect": "", + "Name": "古董缝纫机", + "FullResourcePath": "" + }, + "121": { + "IType": 100, + "Effect": "", + "Name": "卷尺", + "FullResourcePath": "" + }, + "122": { + "IType": 100, + "Effect": "", + "Name": "卡尺", + "FullResourcePath": "" + }, + "123": { + "IType": 100, + "Effect": "", + "Name": "钳子", + "FullResourcePath": "" + }, + "124": { + "IType": 100, + "Effect": "", + "Name": "刨子", + "FullResourcePath": "" + }, + "125": { + "IType": 100, + "Effect": "", + "Name": "木工口袋", + "FullResourcePath": "" + }, + "126": { + "IType": 100, + "Effect": "", + "Name": "木工腰带", + "FullResourcePath": "" + }, + "127": { + "IType": 100, + "Effect": "", + "Name": "木工拎包", + "FullResourcePath": "" + }, + "128": { + "IType": 100, + "Effect": "", + "Name": "木工箱", + "FullResourcePath": "" + }, + "129": { + "IType": 100, + "Effect": "", + "Name": "木工工具箱", + "FullResourcePath": "" + }, + "130": { + "IType": 100, + "Effect": "", + "Name": "高级木工工具箱", + "FullResourcePath": "" + }, + "131": { + "IType": 100, + "Effect": "", + "Name": "专业木工工具箱", + "FullResourcePath": "" + }, + "132": { + "IType": 100, + "Effect": "", + "Name": "大师木工工具箱", + "FullResourcePath": "" + }, + "141": { + "IType": 100, + "Effect": "", + "Name": "一截原木", + "FullResourcePath": "" + }, + "142": { + "IType": 100, + "Effect": "", + "Name": "两截原木", + "FullResourcePath": "" + }, + "143": { + "IType": 100, + "Effect": "", + "Name": "木块", + "FullResourcePath": "" + }, + "144": { + "IType": 100, + "Effect": "", + "Name": "木板", + "FullResourcePath": "" + }, + "145": { + "IType": 100, + "Effect": "", + "Name": "几捆木板", + "FullResourcePath": "" + }, + "146": { + "IType": 100, + "Effect": "", + "Name": "木板与油漆", + "FullResourcePath": "" + }, + "147": { + "IType": 100, + "Effect": "", + "Name": "码好的木板与油漆", + "FullResourcePath": "" + }, + "161": { + "IType": 100, + "Effect": "", + "Name": "小壁架", + "FullResourcePath": "" + }, + "162": { + "IType": 100, + "Effect": "", + "Name": "小号猫头壁架", + "FullResourcePath": "" + }, + "163": { + "IType": 100, + "Effect": "", + "Name": "中号猫头壁架", + "FullResourcePath": "" + }, + "164": { + "IType": 100, + "Effect": "", + "Name": "猫咪边桌", + "FullResourcePath": "" + }, + "165": { + "IType": 100, + "Effect": "", + "Name": "小型猫咪玩具柜", + "FullResourcePath": "" + }, + "166": { + "IType": 100, + "Effect": "", + "Name": "中性猫咪玩具柜", + "FullResourcePath": "" + }, + "167": { + "IType": 100, + "Effect": "", + "Name": "大型猫咪玩具柜", + "FullResourcePath": "" + }, + "168": { + "IType": 100, + "Effect": "", + "Name": "豪华猫咪玩具柜", + "FullResourcePath": "" + }, + "169": { + "IType": 100, + "Effect": "", + "Name": "D-9", + "FullResourcePath": "" + }, + "170": { + "IType": 100, + "Effect": "", + "Name": "D-10", + "FullResourcePath": "" + }, + "181": { + "IType": 100, + "Effect": "", + "Name": "洗澡盆", + "FullResourcePath": "" + }, + "182": { + "IType": 100, + "Effect": "", + "Name": "婴儿浴盆", + "FullResourcePath": "" + }, + "183": { + "IType": 100, + "Effect": "", + "Name": "高级婴儿浴盆", + "FullResourcePath": "" + }, + "184": { + "IType": 100, + "Effect": "", + "Name": "儿童充气小泳池", + "FullResourcePath": "" + }, + "185": { + "IType": 100, + "Effect": "", + "Name": "高级儿童小泳池", + "FullResourcePath": "" + }, + "186": { + "IType": 100, + "Effect": "", + "Name": "室外充气泳池", + "FullResourcePath": "" + }, + "187": { + "IType": 100, + "Effect": "", + "Name": "独立浴缸", + "FullResourcePath": "" + }, + "188": { + "IType": 100, + "Effect": "", + "Name": "水疗浴缸", + "FullResourcePath": "" + }, + "189": { + "IType": 100, + "Effect": "", + "Name": "奢华水疗浴缸", + "FullResourcePath": "" + }, + "201": { + "IType": 100, + "Effect": "", + "Name": "小壁架", + "FullResourcePath": "" + }, + "202": { + "IType": 100, + "Effect": "", + "Name": "小号猫头壁架", + "FullResourcePath": "" + }, + "203": { + "IType": 100, + "Effect": "", + "Name": "中号猫头壁架", + "FullResourcePath": "" + }, + "204": { + "IType": 100, + "Effect": "", + "Name": "猫咪边桌", + "FullResourcePath": "" + }, + "205": { + "IType": 100, + "Effect": "", + "Name": "小型猫咪玩具柜", + "FullResourcePath": "" + }, + "206": { + "IType": 100, + "Effect": "", + "Name": "中性猫咪玩具柜", + "FullResourcePath": "" + }, + "207": { + "IType": 100, + "Effect": "", + "Name": "大型猫咪玩具柜", + "FullResourcePath": "" + }, + "208": { + "IType": 100, + "Effect": "", + "Name": "豪华猫咪玩具柜", + "FullResourcePath": "" + }, + "221": { + "IType": 100, + "Effect": "", + "Name": "蓝色木板", + "FullResourcePath": "" + }, + "222": { + "IType": 100, + "Effect": "", + "Name": "双色木板", + "FullResourcePath": "" + }, + "223": { + "IType": 100, + "Effect": "", + "Name": "宠物木箱", + "FullResourcePath": "" + }, + "224": { + "IType": 100, + "Effect": "", + "Name": "软垫宠物木箱", + "FullResourcePath": "" + }, + "225": { + "IType": 100, + "Effect": "", + "Name": "宠物双层床", + "FullResourcePath": "" + }, + "226": { + "IType": 100, + "Effect": "", + "Name": "宠物小茅屋", + "FullResourcePath": "" + }, + "227": { + "IType": 100, + "Effect": "", + "Name": "宠物一居室", + "FullResourcePath": "" + }, + "228": { + "IType": 100, + "Effect": "", + "Name": "宠物小木屋", + "FullResourcePath": "" + }, + "229": { + "IType": 100, + "Effect": "", + "Name": "宠物小公寓", + "FullResourcePath": "" + }, + "230": { + "IType": 100, + "Effect": "", + "Name": "宠物小筑", + "FullResourcePath": "" + }, + "231": { + "IType": 100, + "Effect": "", + "Name": "宠物单层别墅", + "FullResourcePath": "" + }, + "232": { + "IType": 100, + "Effect": "", + "Name": "宠物双层别墅", + "FullResourcePath": "" + }, + "233": { + "IType": 100, + "Effect": "", + "Name": "豪华宠物之家", + "FullResourcePath": "" + }, + "234": { + "IType": 100, + "Effect": "", + "Name": "宠物公馆", + "FullResourcePath": "" + }, + "235": { + "IType": 100, + "Effect": "", + "Name": "宠物庄园", + "FullResourcePath": "" + }, + "241": { + "IType": 100, + "Effect": "", + "Name": "毛线球", + "FullResourcePath": "" + }, + "242": { + "IType": 100, + "Effect": "", + "Name": "小皮球", + "FullResourcePath": "" + }, + "243": { + "IType": 100, + "Effect": "", + "Name": "铃铛球", + "FullResourcePath": "" + }, + "244": { + "IType": 100, + "Effect": "", + "Name": "猫薄荷球", + "FullResourcePath": "" + }, + "245": { + "IType": 100, + "Effect": "", + "Name": "弹簧玩具", + "FullResourcePath": "" + }, + "246": { + "IType": 100, + "Effect": "", + "Name": "咬咬玩具", + "FullResourcePath": "" + }, + "247": { + "IType": 100, + "Effect": "", + "Name": "逗猫棒", + "FullResourcePath": "" + }, + "248": { + "IType": 100, + "Effect": "", + "Name": "高级逗猫棒", + "FullResourcePath": "" + }, + "249": { + "IType": 100, + "Effect": "", + "Name": "毛绒小鱼", + "FullResourcePath": "" + }, + "250": { + "IType": 100, + "Effect": "", + "Name": "玩具羽毛球", + "FullResourcePath": "" + }, + "251": { + "IType": 100, + "Effect": "", + "Name": "回弹玩具", + "FullResourcePath": "" + }, + "252": { + "IType": 100, + "Effect": "", + "Name": "弹跳玩具", + "FullResourcePath": "" + }, + "253": { + "IType": 100, + "Effect": "", + "Name": "滚球玩具", + "FullResourcePath": "" + }, + "254": { + "IType": 100, + "Effect": "", + "Name": "高级滚球玩具", + "FullResourcePath": "" + }, + "255": { + "IType": 100, + "Effect": "", + "Name": "猫猫摩天轮", + "FullResourcePath": "" + }, + "261": { + "IType": 100, + "Effect": "", + "Name": "猫抓板", + "FullResourcePath": "" + }, + "262": { + "IType": 100, + "Effect": "", + "Name": "猫猫头猫抓板", + "FullResourcePath": "" + }, + "263": { + "IType": 100, + "Effect": "", + "Name": "贵妃椅猫抓板", + "FullResourcePath": "" + }, + "264": { + "IType": 100, + "Effect": "", + "Name": "高级贵妃椅猫抓板", + "FullResourcePath": "" + }, + "265": { + "IType": 100, + "Effect": "", + "Name": "球形猫抓板", + "FullResourcePath": "" + }, + "266": { + "IType": 100, + "Effect": "", + "Name": "拱桥猫抓板", + "FullResourcePath": "" + }, + "267": { + "IType": 100, + "Effect": "", + "Name": "简易猫爬架", + "FullResourcePath": "" + }, + "268": { + "IType": 100, + "Effect": "", + "Name": "多功能猫爬架", + "FullResourcePath": "" + }, + "269": { + "IType": 100, + "Effect": "", + "Name": "复合猫爬架", + "FullResourcePath": "" + }, + "270": { + "IType": 100, + "Effect": "", + "Name": "高级猫爬架", + "FullResourcePath": "" + }, + "271": { + "IType": 100, + "Effect": "", + "Name": "豪华猫爬架", + "FullResourcePath": "" + }, + "272": { + "IType": 100, + "Effect": "", + "Name": "猫咪乐园", + "FullResourcePath": "" + }, + "281": { + "IType": 100, + "Effect": "", + "Name": "泡泡球", + "FullResourcePath": "" + }, + "282": { + "IType": 100, + "Effect": "", + "Name": "玩具蝌蚪", + "FullResourcePath": "" + }, + "283": { + "IType": 100, + "Effect": "", + "Name": "玩具小鱼", + "FullResourcePath": "" + }, + "284": { + "IType": 100, + "Effect": "", + "Name": "玩具海马", + "FullResourcePath": "" + }, + "285": { + "IType": 100, + "Effect": "", + "Name": "玩具小黄鸭", + "FullResourcePath": "" + }, + "286": { + "IType": 100, + "Effect": "", + "Name": "玩具小章鱼", + "FullResourcePath": "" + }, + "287": { + "IType": 100, + "Effect": "", + "Name": "玩具小乌龟", + "FullResourcePath": "" + }, + "288": { + "IType": 100, + "Effect": "", + "Name": "玩具小鲨鱼", + "FullResourcePath": "" + }, + "289": { + "IType": 100, + "Effect": "", + "Name": "玩具小鲸鱼", + "FullResourcePath": "" + }, + "290": { + "IType": 100, + "Effect": "", + "Name": "玩具浮板小狗", + "FullResourcePath": "" + }, + "291": { + "IType": 100, + "Effect": "", + "Name": "玩具游泳圈小鸡仔", + "FullResourcePath": "" + }, + "292": { + "IType": 100, + "Effect": "", + "Name": "玩具浮板海狮", + "FullResourcePath": "" + }, + "293": { + "IType": 100, + "Effect": "", + "Name": "玩具潜艇小马", + "FullResourcePath": "" + }, + "294": { + "IType": 100, + "Effect": "", + "Name": "玩具帆船企鹅", + "FullResourcePath": "" + }, + "295": { + "IType": 100, + "Effect": "", + "Name": "玩具机动小船", + "FullResourcePath": "" + }, + "301": { + "IType": 100, + "Effect": "", + "Name": "宠物毛巾", + "FullResourcePath": "" + }, + "302": { + "IType": 100, + "Effect": "", + "Name": "宠物洗澡巾", + "FullResourcePath": "" + }, + "303": { + "IType": 100, + "Effect": "", + "Name": "宠物湿巾", + "FullResourcePath": "" + }, + "304": { + "IType": 100, + "Effect": "", + "Name": "洗澡手套", + "FullResourcePath": "" + }, + "305": { + "IType": 100, + "Effect": "", + "Name": "宠物沐浴露", + "FullResourcePath": "" + }, + "306": { + "IType": 100, + "Effect": "", + "Name": "高级宠物沐浴露", + "FullResourcePath": "" + }, + "307": { + "IType": 100, + "Effect": "", + "Name": "尊享宠物沐浴露", + "FullResourcePath": "" + }, + "308": { + "IType": 100, + "Effect": "", + "Name": "宠物毛刷", + "FullResourcePath": "" + }, + "309": { + "IType": 100, + "Effect": "", + "Name": "高级宠物毛刷", + "FullResourcePath": "" + }, + "310": { + "IType": 100, + "Effect": "", + "Name": "宠物吹风机", + "FullResourcePath": "" + }, + "311": { + "IType": 100, + "Effect": "", + "Name": "高级宠物吹风机", + "FullResourcePath": "" + }, + "312": { + "IType": 100, + "Effect": "", + "Name": "宠物烘干箱", + "FullResourcePath": "" + }, + "313": { + "IType": 100, + "Effect": "", + "Name": "高级烘干箱", + "FullResourcePath": "" + }, + "314": { + "IType": 100, + "Effect": "", + "Name": "豪华烘干箱", + "FullResourcePath": "" + }, + "501": { + "IType": 100, + "Effect": "", + "Name": "一点体力", + "FullResourcePath": "" + }, + "502": { + "IType": 100, + "Effect": "", + "Name": "少量体力", + "FullResourcePath": "" + }, + "503": { + "IType": 100, + "Effect": "", + "Name": "中量体力", + "FullResourcePath": "" + }, + "504": { + "IType": 100, + "Effect": "", + "Name": "大量体力", + "FullResourcePath": "" + }, + "505": { + "IType": 100, + "Effect": "", + "Name": "巨量体力", + "FullResourcePath": "" + }, + "521": { + "IType": 100, + "Effect": "", + "Name": "几枚宠物币", + "FullResourcePath": "" + }, + "522": { + "IType": 100, + "Effect": "", + "Name": "少量宠物币", + "FullResourcePath": "" + }, + "523": { + "IType": 100, + "Effect": "", + "Name": "中量宠物币", + "FullResourcePath": "" + }, + "524": { + "IType": 100, + "Effect": "", + "Name": "大量宠物币", + "FullResourcePath": "" + }, + "525": { + "IType": 100, + "Effect": "", + "Name": "巨量宠物币", + "FullResourcePath": "" + }, + "541": { + "IType": 100, + "Effect": "", + "Name": "几颗钻石", + "FullResourcePath": "" + }, + "542": { + "IType": 100, + "Effect": "", + "Name": "少量钻石", + "FullResourcePath": "" + }, + "543": { + "IType": 100, + "Effect": "", + "Name": "中量钻石", + "FullResourcePath": "" + }, + "544": { + "IType": 100, + "Effect": "", + "Name": "大量钻石", + "FullResourcePath": "" + }, + "545": { + "IType": 100, + "Effect": "", + "Name": "巨量钻石", + "FullResourcePath": "" + }, + "561": { + "IType": 100, + "Effect": "", + "Name": "星星宝箱", + "FullResourcePath": "" + }, + "562": { + "IType": 100, + "Effect": "", + "Name": "体力宝箱", + "FullResourcePath": "" + }, + "563": { + "IType": 100, + "Effect": "", + "Name": "惊喜宝箱", + "FullResourcePath": "" + }, + "564": { + "IType": 100, + "Effect": "", + "Name": "惊喜宝箱", + "FullResourcePath": "" + }, + "581": { + "IType": 100, + "Effect": "", + "Name": "低级发射器宝箱 Lv1", + "FullResourcePath": "" + }, + "582": { + "IType": 100, + "Effect": "", + "Name": "低级发射器宝箱 Lv1", + "FullResourcePath": "" + }, + "583": { + "IType": 100, + "Effect": "", + "Name": "低级发射器宝箱 Lv2", + "FullResourcePath": "" + }, + "584": { + "IType": 100, + "Effect": "", + "Name": "低级发射器宝箱 Lv2", + "FullResourcePath": "" + }, + "585": { + "IType": 100, + "Effect": "", + "Name": "高级发射器宝箱 Lv1", + "FullResourcePath": "" + }, + "586": { + "IType": 100, + "Effect": "", + "Name": "高级发射器宝箱 Lv1", + "FullResourcePath": "" + }, + "587": { + "IType": 100, + "Effect": "", + "Name": "高级发射器宝箱 Lv2", + "FullResourcePath": "" + }, + "588": { + "IType": 100, + "Effect": "", + "Name": "高级发射器宝箱 Lv2", + "FullResourcePath": "" + }, + "601": { + "IType": 100, + "Effect": "", + "Name": "宠物食品篮", + "FullResourcePath": "" + }, + "602": { + "IType": 100, + "Effect": "", + "Name": "宠物急救箱", + "FullResourcePath": "" + }, + "603": { + "IType": 100, + "Effect": "", + "Name": "宠物屋盒", + "FullResourcePath": "" + }, + "604": { + "IType": 100, + "Effect": "", + "Name": "宠物衣物盒", + "FullResourcePath": "" + }, + "605": { + "IType": 100, + "Effect": "", + "Name": "一盘鱼", + "FullResourcePath": "" + }, + "606": { + "IType": 100, + "Effect": "", + "Name": "花篮", + "FullResourcePath": "" + }, + "701": { + "IType": 100, + "Effect": "", + "Name": "许愿宝箱", + "FullResourcePath": "" + }, + "702": { + "IType": 100, + "Effect": "", + "Name": "高级许愿宝箱", + "FullResourcePath": "" + }, + "703": { + "IType": 100, + "Effect": "", + "Name": "惊喜组合宝箱", + "FullResourcePath": "" + }, + "704": { + "IType": 100, + "Effect": "", + "Name": "高级惊喜组合宝箱", + "FullResourcePath": "" + }, + "705": { + "IType": 100, + "Effect": "", + "Name": "资源补给箱", + "FullResourcePath": "" + }, + "706": { + "IType": 100, + "Effect": "", + "Name": "高级资源补给箱", + "FullResourcePath": "" + }, + "707": { + "IType": 100, + "Effect": "", + "Name": "分离剪", + "FullResourcePath": "" + }, + "708": { + "IType": 100, + "Effect": "", + "Name": "升级器", + "FullResourcePath": "" + }, + "801": { + "IType": 100, + "Effect": "", + "Name": "电池1", + "FullResourcePath": "" + }, + "802": { + "IType": 100, + "Effect": "", + "Name": "电池2", + "FullResourcePath": "" + }, + "803": { + "IType": 100, + "Effect": "", + "Name": "电池3", + "FullResourcePath": "" + }, + "804": { + "IType": 100, + "Effect": "", + "Name": "电池4", + "FullResourcePath": "" + }, + "805": { + "IType": 100, + "Effect": "", + "Name": "电池5", + "FullResourcePath": "" + }, + "806": { + "IType": 100, + "Effect": "", + "Name": "电池6", + "FullResourcePath": "" + }, + "807": { + "IType": 100, + "Effect": "", + "Name": "电池7", + "FullResourcePath": "" + }, + "808": { + "IType": 100, + "Effect": "", + "Name": "电池8", + "FullResourcePath": "" + }, + "901": { + "IType": 100, + "Effect": "", + "Name": "萌芽", + "FullResourcePath": "" + }, + "902": { + "IType": 100, + "Effect": "", + "Name": "幼苗", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_4.png" + }, + "903": { + "IType": 100, + "Effect": "", + "Name": "大树", + "FullResourcePath": "" + }, + "904": { + "IType": 100, + "Effect": "", + "Name": "繁盛", + "FullResourcePath": "" + }, + "905": { + "IType": 100, + "Effect": "", + "Name": "开花", + "FullResourcePath": "" + }, + "906": { + "IType": 100, + "Effect": "", + "Name": "结果", + "FullResourcePath": "" + }, + "907": { + "IType": 100, + "Effect": "", + "Name": "果熟", + "FullResourcePath": "" + }, + "908": { + "IType": 100, + "Effect": "", + "Name": "采收", + "FullResourcePath": "" + }, + "921": { + "IType": 100, + "Effect": "", + "Name": "树枝", + "FullResourcePath": "" + }, + "922": { + "IType": 100, + "Effect": "", + "Name": "普通鸟窝", + "FullResourcePath": "" + }, + "923": { + "IType": 100, + "Effect": "", + "Name": "高级鸟窝", + "FullResourcePath": "" + }, + "924": { + "IType": 100, + "Effect": "", + "Name": "鸟蛋", + "FullResourcePath": "" + }, + "925": { + "IType": 100, + "Effect": "", + "Name": "破壳", + "FullResourcePath": "" + }, + "926": { + "IType": 100, + "Effect": "", + "Name": "幼鸟", + "FullResourcePath": "" + }, + "927": { + "IType": 100, + "Effect": "", + "Name": "独立", + "FullResourcePath": "" + }, + "928": { + "IType": 100, + "Effect": "", + "Name": "寻觅", + "FullResourcePath": "" + }, + "929": { + "IType": 100, + "Effect": "", + "Name": "求爱", + "FullResourcePath": "" + }, + "930": { + "IType": 100, + "Effect": "", + "Name": "成家", + "FullResourcePath": "" + }, + "931": { + "IType": 100, + "Effect": "", + "Name": "新生命", + "FullResourcePath": "" + }, + "932": { + "IType": 100, + "Effect": "", + "Name": "陪伴", + "FullResourcePath": "" + }, + "941": { + "IType": 100, + "Effect": "", + "Name": "苹果", + "FullResourcePath": "" + }, + "942": { + "IType": 100, + "Effect": "", + "Name": "2个苹果", + "FullResourcePath": "" + }, + "943": { + "IType": 100, + "Effect": "", + "Name": "切片苹果", + "FullResourcePath": "" + }, + "944": { + "IType": 100, + "Effect": "", + "Name": "苹果冰淇淋", + "FullResourcePath": "" + }, + "945": { + "IType": 100, + "Effect": "", + "Name": "苹果汁", + "FullResourcePath": "" + }, + "946": { + "IType": 100, + "Effect": "", + "Name": "苹果酒", + "FullResourcePath": "" + }, + "947": { + "IType": 100, + "Effect": "", + "Name": "苹果罐头", + "FullResourcePath": "" + }, + "948": { + "IType": 100, + "Effect": "", + "Name": "苹果酱", + "FullResourcePath": "" + }, + "949": { + "IType": 100, + "Effect": "", + "Name": "苹果酱面包", + "FullResourcePath": "" + }, + "950": { + "IType": 100, + "Effect": "", + "Name": "苹果酱蛋挞", + "FullResourcePath": "" + }, + "1001": { + "IType": 100, + "Effect": "", + "Name": "简易布料衣柜", + "FullResourcePath": "" + }, + "1002": { + "IType": 100, + "Effect": "", + "Name": "普通布料衣柜", + "FullResourcePath": "" + }, + "1003": { + "IType": 100, + "Effect": "", + "Name": "高级布料衣柜", + "FullResourcePath": "" + }, + "1004": { + "IType": 100, + "Effect": "", + "Name": "简易木制衣柜", + "FullResourcePath": "" + }, + "1005": { + "IType": 100, + "Effect": "", + "Name": "普通木制衣柜", + "FullResourcePath": "" + }, + "1006": { + "IType": 100, + "Effect": "", + "Name": "大型木制衣柜", + "FullResourcePath": "" + }, + "1007": { + "IType": 100, + "Effect": "", + "Name": "高级木制衣柜", + "FullResourcePath": "" + }, + "1008": { + "IType": 100, + "Effect": "", + "Name": "豪华木制衣柜", + "FullResourcePath": "" + }, + "1021": { + "IType": 100, + "Effect": "", + "Name": "简陋布包", + "FullResourcePath": "" + }, + "1022": { + "IType": 100, + "Effect": "", + "Name": "高级布包", + "FullResourcePath": "" + }, + "1023": { + "IType": 100, + "Effect": "", + "Name": "简陋收纳袋", + "FullResourcePath": "" + }, + "1024": { + "IType": 100, + "Effect": "", + "Name": "普通收纳袋", + "FullResourcePath": "" + }, + "1025": { + "IType": 100, + "Effect": "", + "Name": "高级收纳袋", + "FullResourcePath": "" + }, + "1026": { + "IType": 100, + "Effect": "", + "Name": "豪华收纳袋", + "FullResourcePath": "" + }, + "1027": { + "IType": 100, + "Effect": "", + "Name": "收纳套装", + "FullResourcePath": "" + }, + "1028": { + "IType": 100, + "Effect": "", + "Name": "G1L8", + "FullResourcePath": "" + }, + "1029": { + "IType": 100, + "Effect": "", + "Name": "G1L9", + "FullResourcePath": "" + }, + "1030": { + "IType": 100, + "Effect": "", + "Name": "G1L10", + "FullResourcePath": "" + }, + "1031": { + "IType": 100, + "Effect": "", + "Name": "G1L11", + "FullResourcePath": "" + }, + "1032": { + "IType": 100, + "Effect": "", + "Name": "G1L12", + "FullResourcePath": "" + }, + "1041": { + "IType": 100, + "Effect": "", + "Name": "纸尿布", + "FullResourcePath": "" + }, + "1042": { + "IType": 100, + "Effect": "", + "Name": "婴儿服", + "FullResourcePath": "" + }, + "1043": { + "IType": 100, + "Effect": "", + "Name": "卡通睡衣", + "FullResourcePath": "" + }, + "1044": { + "IType": 100, + "Effect": "", + "Name": "小孩T恤", + "FullResourcePath": "" + }, + "1045": { + "IType": 100, + "Effect": "", + "Name": "小学背带裤", + "FullResourcePath": "" + }, + "1046": { + "IType": 100, + "Effect": "", + "Name": "中学运动服", + "FullResourcePath": "" + }, + "1047": { + "IType": 100, + "Effect": "", + "Name": "高中卫衣", + "FullResourcePath": "" + }, + "1048": { + "IType": 100, + "Effect": "", + "Name": "少女衣服", + "FullResourcePath": "" + }, + "1049": { + "IType": 100, + "Effect": "", + "Name": "大学毕业服", + "FullResourcePath": "" + }, + "1050": { + "IType": 100, + "Effect": "", + "Name": "休闲套装", + "FullResourcePath": "" + }, + "1101": { + "IType": 100, + "Effect": "", + "Name": "基础书桌", + "FullResourcePath": "" + }, + "1102": { + "IType": 100, + "Effect": "", + "Name": "标准书桌", + "FullResourcePath": "" + }, + "1103": { + "IType": 100, + "Effect": "", + "Name": "功能书桌", + "FullResourcePath": "" + }, + "1104": { + "IType": 100, + "Effect": "", + "Name": "个性书桌", + "FullResourcePath": "" + }, + "1105": { + "IType": 100, + "Effect": "", + "Name": "精致书桌", + "FullResourcePath": "" + }, + "1106": { + "IType": 100, + "Effect": "", + "Name": "高级书桌", + "FullResourcePath": "" + }, + "1107": { + "IType": 100, + "Effect": "", + "Name": "多功能书桌", + "FullResourcePath": "" + }, + "1121": { + "IType": 100, + "Effect": "", + "Name": "贴纸", + "FullResourcePath": "" + }, + "1122": { + "IType": 100, + "Effect": "", + "Name": "小卡片", + "FullResourcePath": "" + }, + "1123": { + "IType": 100, + "Effect": "", + "Name": "贺卡", + "FullResourcePath": "" + }, + "1124": { + "IType": 100, + "Effect": "", + "Name": "星星灯", + "FullResourcePath": "" + }, + "1125": { + "IType": 100, + "Effect": "", + "Name": "星月灯", + "FullResourcePath": "" + }, + "1126": { + "IType": 100, + "Effect": "", + "Name": "多肉盆栽", + "FullResourcePath": "" + }, + "1127": { + "IType": 100, + "Effect": "", + "Name": "向日葵摆件", + "FullResourcePath": "" + }, + "1128": { + "IType": 100, + "Effect": "", + "Name": "小熊摆件", + "FullResourcePath": "" + }, + "1141": { + "IType": 100, + "Effect": "", + "Name": "小镜子", + "FullResourcePath": "" + }, + "1142": { + "IType": 100, + "Effect": "", + "Name": "大镜子", + "FullResourcePath": "" + }, + "1143": { + "IType": 100, + "Effect": "", + "Name": "水杯", + "FullResourcePath": "" + }, + "1144": { + "IType": 100, + "Effect": "", + "Name": "小闹钟", + "FullResourcePath": "" + }, + "1145": { + "IType": 100, + "Effect": "", + "Name": "笔筒", + "FullResourcePath": "" + }, + "1146": { + "IType": 100, + "Effect": "", + "Name": "纸巾盒", + "FullResourcePath": "" + }, + "1147": { + "IType": 100, + "Effect": "", + "Name": "小风扇", + "FullResourcePath": "" + }, + "1148": { + "IType": 100, + "Effect": "", + "Name": "高级风扇", + "FullResourcePath": "" + }, + "1149": { + "IType": 100, + "Effect": "", + "Name": "香薰机", + "FullResourcePath": "" + }, + "1150": { + "IType": 100, + "Effect": "", + "Name": "高级香薰机", + "FullResourcePath": "" + }, + "1201": { + "IType": 100, + "Effect": "", + "Name": "购物清单", + "FullResourcePath": "" + }, + "1202": { + "IType": 100, + "Effect": "", + "Name": "购物袋", + "FullResourcePath": "" + }, + "1203": { + "IType": 100, + "Effect": "", + "Name": "手提袋", + "FullResourcePath": "" + }, + "1204": { + "IType": 100, + "Effect": "", + "Name": "医疗收纳盒", + "FullResourcePath": "" + }, + "1205": { + "IType": 100, + "Effect": "", + "Name": "购物手推车", + "FullResourcePath": "" + }, + "1206": { + "IType": 100, + "Effect": "", + "Name": "双层手推车", + "FullResourcePath": "" + }, + "1207": { + "IType": 100, + "Effect": "", + "Name": "平板推车", + "FullResourcePath": "" + }, + "1221": { + "IType": 100, + "Effect": "", + "Name": "棉签", + "FullResourcePath": "" + }, + "1222": { + "IType": 100, + "Effect": "", + "Name": "体温计", + "FullResourcePath": "" + }, + "1223": { + "IType": 100, + "Effect": "", + "Name": "医用胶带", + "FullResourcePath": "" + }, + "1224": { + "IType": 100, + "Effect": "", + "Name": "护目镜", + "FullResourcePath": "" + }, + "1225": { + "IType": 100, + "Effect": "", + "Name": "听诊器", + "FullResourcePath": "" + }, + "1226": { + "IType": 100, + "Effect": "", + "Name": "纱布", + "FullResourcePath": "" + }, + "1227": { + "IType": 100, + "Effect": "", + "Name": "普通口罩", + "FullResourcePath": "" + }, + "1228": { + "IType": 100, + "Effect": "", + "Name": "专业口罩", + "FullResourcePath": "" + }, + "1229": { + "IType": 100, + "Effect": "", + "Name": "病历夹", + "FullResourcePath": "" + }, + "1230": { + "IType": 100, + "Effect": "", + "Name": "血压计", + "FullResourcePath": "" + }, + "1231": { + "IType": 100, + "Effect": "", + "Name": "AED", + "FullResourcePath": "" + }, + "1232": { + "IType": 100, + "Effect": "", + "Name": "心电监护仪", + "FullResourcePath": "" + }, + "1301": { + "IType": 100, + "Effect": "", + "Name": "鱼线", + "FullResourcePath": "" + }, + "1302": { + "IType": 100, + "Effect": "", + "Name": "简陋鱼竿", + "FullResourcePath": "" + }, + "1303": { + "IType": 100, + "Effect": "", + "Name": "新手鱼竿", + "FullResourcePath": "" + }, + "1304": { + "IType": 100, + "Effect": "", + "Name": "碳素鱼竿", + "FullResourcePath": "" + }, + "1305": { + "IType": 100, + "Effect": "", + "Name": "高级碳素鱼竿", + "FullResourcePath": "" + }, + "1306": { + "IType": 100, + "Effect": "", + "Name": "捞网", + "FullResourcePath": "" + }, + "1307": { + "IType": 100, + "Effect": "", + "Name": "渔笼", + "FullResourcePath": "" + }, + "1321": { + "IType": 100, + "Effect": "", + "Name": "水草", + "FullResourcePath": "" + }, + "1322": { + "IType": 100, + "Effect": "", + "Name": "珊瑚", + "FullResourcePath": "" + }, + "1323": { + "IType": 100, + "Effect": "", + "Name": "虾米", + "FullResourcePath": "" + }, + "1324": { + "IType": 100, + "Effect": "", + "Name": "海星", + "FullResourcePath": "" + }, + "1325": { + "IType": 100, + "Effect": "", + "Name": "高级海星", + "FullResourcePath": "" + }, + "1326": { + "IType": 100, + "Effect": "", + "Name": "水母", + "FullResourcePath": "" + }, + "1341": { + "IType": 100, + "Effect": "", + "Name": "河蚌", + "FullResourcePath": "" + }, + "1342": { + "IType": 100, + "Effect": "", + "Name": "普通扇贝", + "FullResourcePath": "" + }, + "1343": { + "IType": 100, + "Effect": "", + "Name": "花纹扇贝", + "FullResourcePath": "" + }, + "1344": { + "IType": 100, + "Effect": "", + "Name": "点状贝壳", + "FullResourcePath": "" + }, + "1345": { + "IType": 100, + "Effect": "", + "Name": "圆形海螺", + "FullResourcePath": "" + }, + "1346": { + "IType": 100, + "Effect": "", + "Name": "鹦鹉螺", + "FullResourcePath": "" + }, + "1347": { + "IType": 100, + "Effect": "", + "Name": "带刺海螺", + "FullResourcePath": "" + }, + "1348": { + "IType": 100, + "Effect": "", + "Name": "尖头海螺", + "FullResourcePath": "" + }, + "1349": { + "IType": 100, + "Effect": "", + "Name": "珍珠贝", + "FullResourcePath": "" + }, + "1350": { + "IType": 100, + "Effect": "", + "Name": "珊瑚贝", + "FullResourcePath": "" + }, + "1361": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1362": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1363": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1364": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1365": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1366": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1367": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1368": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1401": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1402": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1403": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1404": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1405": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1406": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1407": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1408": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1421": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1422": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1423": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1424": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1425": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1426": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1427": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1428": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1429": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1430": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1431": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1432": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1441": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1442": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1443": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1444": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1445": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1446": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1447": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1448": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1449": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1450": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1451": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1452": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "565": { + "IType": 100, + "Effect": "", + "Name": "惊喜宝箱LV2", + "FullResourcePath": "" + }, + "566": { + "IType": 100, + "Effect": "", + "Name": "惊喜宝箱LV2", + "FullResourcePath": "" + }, + "567": { + "IType": 100, + "Effect": "", + "Name": "惊喜宝箱LV3", + "FullResourcePath": "" + }, + "568": { + "IType": 100, + "Effect": "", + "Name": "惊喜宝箱LV3", + "FullResourcePath": "" + }, + "569": { + "IType": 100, + "Effect": "", + "Name": "惊喜宝箱LV4", + "FullResourcePath": "" + }, + "570": { + "IType": 100, + "Effect": "", + "Name": "惊喜宝箱LV4", + "FullResourcePath": "" + }, + "571": { + "IType": 100, + "Effect": "", + "Name": "惊喜宝箱LV5", + "FullResourcePath": "" + }, + "572": { + "IType": 100, + "Effect": "", + "Name": "惊喜宝箱LV5", + "FullResourcePath": "" + }, + "1501": { + "IType": 100, + "Effect": "", + "Name": "零件1LV1(=TT木头)", + "FullResourcePath": "" + }, + "1502": { + "IType": 100, + "Effect": "", + "Name": "零件1LV2(=TT木头)", + "FullResourcePath": "" + }, + "1503": { + "IType": 100, + "Effect": "", + "Name": "零件1LV3(=TT木头)", + "FullResourcePath": "" + }, + "1504": { + "IType": 100, + "Effect": "", + "Name": "零件1LV4(=TT木头)", + "FullResourcePath": "" + }, + "1505": { + "IType": 100, + "Effect": "", + "Name": "零件1LV5(=TT木头)", + "FullResourcePath": "" + }, + "1511": { + "IType": 100, + "Effect": "", + "Name": "零件2LV1(=TT砖头)", + "FullResourcePath": "" + }, + "1512": { + "IType": 100, + "Effect": "", + "Name": "零件2LV2(=TT砖头)", + "FullResourcePath": "" + }, + "1513": { + "IType": 100, + "Effect": "", + "Name": "零件2LV3(=TT砖头)", + "FullResourcePath": "" + }, + "1514": { + "IType": 100, + "Effect": "", + "Name": "零件2LV4(=TT砖头)", + "FullResourcePath": "" + }, + "1515": { + "IType": 100, + "Effect": "", + "Name": "零件2LV5(=TT砖头)", + "FullResourcePath": "" + }, + "1521": { + "IType": 100, + "Effect": "", + "Name": "零件3LV1(=TT螺丝)", + "FullResourcePath": "" + }, + "1522": { + "IType": 100, + "Effect": "", + "Name": "零件3LV2(=TT螺丝)", + "FullResourcePath": "" + }, + "1523": { + "IType": 100, + "Effect": "", + "Name": "零件3LV3(=TT螺丝)", + "FullResourcePath": "" + }, + "1524": { + "IType": 100, + "Effect": "", + "Name": "零件3LV4(=TT螺丝)", + "FullResourcePath": "" + }, + "1525": { + "IType": 100, + "Effect": "", + "Name": "零件3LV5(=TT螺丝)", + "FullResourcePath": "" + }, + "1531": { + "IType": 100, + "Effect": "", + "Name": "零件4LV1(=TT水泥)", + "FullResourcePath": "" + }, + "1532": { + "IType": 100, + "Effect": "", + "Name": "零件4LV2(=TT水泥)", + "FullResourcePath": "" + }, + "1533": { + "IType": 100, + "Effect": "", + "Name": "零件4LV3(=TT水泥)", + "FullResourcePath": "" + }, + "1534": { + "IType": 100, + "Effect": "", + "Name": "零件4LV4(=TT水泥)", + "FullResourcePath": "" + }, + "1535": { + "IType": 100, + "Effect": "", + "Name": "零件4LV5(=TT水泥)", + "FullResourcePath": "" + }, + "1601": { + "IType": 100, + "Effect": "", + "Name": "小工具箱", + "FullResourcePath": "" + }, + "1602": { + "IType": 100, + "Effect": "", + "Name": "大工具箱", + "FullResourcePath": "" + }, + "1701": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1702": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1703": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1704": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1705": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1706": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1707": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1721": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1722": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1723": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1724": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1725": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1726": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1727": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1728": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1729": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1730": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1731": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1732": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1741": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1742": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1743": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1744": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1745": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1746": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1747": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1748": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1749": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1801": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1802": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1803": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1804": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1805": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1806": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1807": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1808": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1821": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1822": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1823": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1824": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1825": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1826": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1827": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1828": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1841": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1842": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1843": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1844": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1845": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1846": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1847": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1848": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1849": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1850": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1861": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1862": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1863": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1864": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1865": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1866": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1901": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1902": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1903": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1904": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1905": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1906": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1907": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1921": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1922": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1923": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1924": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1925": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1926": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1927": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1928": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1929": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1930": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1931": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "1932": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2001": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2002": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2003": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2004": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2005": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2006": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2007": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2008": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2021": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2022": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2023": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2024": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2025": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2026": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2027": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2028": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2029": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2030": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2031": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2032": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2041": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2042": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2043": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2044": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2045": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2046": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2047": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2048": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2049": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2050": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2061": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2062": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2063": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2064": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2065": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2066": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2067": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2068": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2069": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2101": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2102": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2103": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2104": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2105": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2106": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2107": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2108": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2121": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2122": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2123": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2124": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2125": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2126": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2127": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2128": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2129": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2130": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2131": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2141": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2142": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2143": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2144": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2145": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2146": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2147": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2148": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2149": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2201": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2202": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2203": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2204": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2205": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2206": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2221": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2222": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2223": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2224": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2225": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2226": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2227": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2228": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2229": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2230": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2231": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2232": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2241": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2242": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2243": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2244": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2245": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2246": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2247": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2248": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2249": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2250": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2301": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2302": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2303": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2304": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2305": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2306": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2307": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2321": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2322": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2323": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2324": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2325": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2326": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2327": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2328": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2341": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2342": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2343": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2344": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2345": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2346": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2347": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2348": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2349": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2361": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2362": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2363": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2364": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2365": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2366": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2401": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2402": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2403": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2404": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2405": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2406": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2407": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2408": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2421": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2422": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2423": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2424": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2425": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2426": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2427": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2428": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2429": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2430": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2431": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2432": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2441": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2442": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2443": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2444": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2445": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2446": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2447": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2448": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2449": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2501": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2502": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2503": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2504": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2505": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2506": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2507": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2521": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2522": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2523": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2524": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2525": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2526": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2527": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2528": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2529": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2530": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2531": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2541": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2542": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2543": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2544": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2545": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2546": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2547": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2548": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2549": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2561": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2562": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2563": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2564": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2565": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2566": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2567": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2601": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2602": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2603": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2604": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2605": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2606": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2607": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2608": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2621": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2622": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2623": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2624": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2625": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2626": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2627": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2628": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2629": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2630": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2631": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2632": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2641": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2642": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2643": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2644": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2645": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2646": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2647": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2648": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2649": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2701": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2702": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2703": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2704": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2705": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2706": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2707": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2708": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2721": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2722": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2723": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2724": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2725": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2726": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2727": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2728": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2729": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2730": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2731": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2732": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2741": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2742": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2743": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2744": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2745": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2746": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2747": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2748": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2749": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2750": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2801": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2802": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2803": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2804": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2805": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2806": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2821": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2822": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2823": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2824": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2825": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2826": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2827": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2828": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2829": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2830": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2831": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2841": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2842": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2843": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2844": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2845": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2846": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2861": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2862": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2863": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2864": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2865": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2866": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2867": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2868": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2901": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2902": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2903": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2904": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2905": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2906": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2907": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2908": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2921": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2922": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2923": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2924": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2925": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2926": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2927": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2928": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2929": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2930": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2931": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2932": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2941": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2942": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2943": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2944": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2945": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2946": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "2947": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3001": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3002": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3003": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3004": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3005": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3006": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3007": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3008": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3021": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3022": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3023": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3024": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3025": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3026": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3027": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3028": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3029": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3030": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3031": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3041": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3042": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3043": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3044": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3045": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3046": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3047": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3048": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3049": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3061": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3062": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3063": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3064": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3065": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3066": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3067": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "3101": { + "IType": 100, + "Effect": "", + "Name": "Launcher_Z_lv1", + "FullResourcePath": "" + }, + "3102": { + "IType": 100, + "Effect": "", + "Name": "Launcher_Z_lv2", + "FullResourcePath": "" + }, + "3103": { + "IType": 100, + "Effect": "", + "Name": "Launcher_Z_lv3", + "FullResourcePath": "" + }, + "3104": { + "IType": 100, + "Effect": "", + "Name": "Launcher_Z_lv4", + "FullResourcePath": "" + }, + "3105": { + "IType": 100, + "Effect": "", + "Name": "Launcher_Z_lv5", + "FullResourcePath": "" + }, + "3106": { + "IType": 100, + "Effect": "", + "Name": "Launcher_Z_lv6", + "FullResourcePath": "" + }, + "3107": { + "IType": 100, + "Effect": "", + "Name": "Launcher_Z_lv7", + "FullResourcePath": "" + }, + "3108": { + "IType": 100, + "Effect": "", + "Name": "Launcher_Z_lv8", + "FullResourcePath": "" + }, + "3121": { + "IType": 100, + "Effect": "", + "Name": "Production_Z1_lv1", + "FullResourcePath": "" + }, + "3122": { + "IType": 100, + "Effect": "", + "Name": "Production_Z1_lv2", + "FullResourcePath": "" + }, + "3123": { + "IType": 100, + "Effect": "", + "Name": "Production_Z1_lv3", + "FullResourcePath": "" + }, + "3124": { + "IType": 100, + "Effect": "", + "Name": "Production_Z1_lv4", + "FullResourcePath": "" + }, + "3125": { + "IType": 100, + "Effect": "", + "Name": "Production_Z1_lv5", + "FullResourcePath": "" + }, + "3126": { + "IType": 100, + "Effect": "", + "Name": "Production_Z1_lv6", + "FullResourcePath": "" + }, + "3127": { + "IType": 100, + "Effect": "", + "Name": "Production_Z1_lv7", + "FullResourcePath": "" + }, + "3128": { + "IType": 100, + "Effect": "", + "Name": "Production_Z1_lv8", + "FullResourcePath": "" + }, + "3129": { + "IType": 100, + "Effect": "", + "Name": "Production_Z1_lv9", + "FullResourcePath": "" + }, + "3130": { + "IType": 100, + "Effect": "", + "Name": "Production_Z1_lv10", + "FullResourcePath": "" + }, + "3131": { + "IType": 100, + "Effect": "", + "Name": "Production_Z1_lv11", + "FullResourcePath": "" + }, + "3141": { + "IType": 100, + "Effect": "", + "Name": "Production_Z2_lv1", + "FullResourcePath": "" + }, + "3142": { + "IType": 100, + "Effect": "", + "Name": "Production_Z2_lv2", + "FullResourcePath": "" + }, + "3143": { + "IType": 100, + "Effect": "", + "Name": "Production_Z2_lv3", + "FullResourcePath": "" + }, + "3144": { + "IType": 100, + "Effect": "", + "Name": "Production_Z2_lv4", + "FullResourcePath": "" + }, + "3145": { + "IType": 100, + "Effect": "", + "Name": "Production_Z2_lv5", + "FullResourcePath": "" + }, + "3146": { + "IType": 100, + "Effect": "", + "Name": "Production_Z2_lv6", + "FullResourcePath": "" + }, + "3147": { + "IType": 100, + "Effect": "", + "Name": "Production_Z2_lv7", + "FullResourcePath": "" + }, + "3148": { + "IType": 100, + "Effect": "", + "Name": "Production_Z2_lv8", + "FullResourcePath": "" + }, + "3149": { + "IType": 100, + "Effect": "", + "Name": "Production_Z2_lv9", + "FullResourcePath": "" + }, + "3201": { + "IType": 100, + "Effect": "", + "Name": "Launcher_AA_lv1", + "FullResourcePath": "" + }, + "3202": { + "IType": 100, + "Effect": "", + "Name": "Launcher_AA_lv2", + "FullResourcePath": "" + }, + "3203": { + "IType": 100, + "Effect": "", + "Name": "Launcher_AA_lv3", + "FullResourcePath": "" + }, + "3204": { + "IType": 100, + "Effect": "", + "Name": "Launcher_AA_lv4", + "FullResourcePath": "" + }, + "3205": { + "IType": 100, + "Effect": "", + "Name": "Launcher_AA_lv5", + "FullResourcePath": "" + }, + "3206": { + "IType": 100, + "Effect": "", + "Name": "Launcher_AA_lv6", + "FullResourcePath": "" + }, + "3207": { + "IType": 100, + "Effect": "", + "Name": "Launcher_AA_lv7", + "FullResourcePath": "" + }, + "3208": { + "IType": 100, + "Effect": "", + "Name": "Launcher_AA_lv8", + "FullResourcePath": "" + }, + "3221": { + "IType": 100, + "Effect": "", + "Name": "Production_AA1_lv1", + "FullResourcePath": "" + }, + "3222": { + "IType": 100, + "Effect": "", + "Name": "Production_AA1_lv2", + "FullResourcePath": "" + }, + "3223": { + "IType": 100, + "Effect": "", + "Name": "Production_AA1_lv3", + "FullResourcePath": "" + }, + "3224": { + "IType": 100, + "Effect": "", + "Name": "Production_AA1_lv4", + "FullResourcePath": "" + }, + "3225": { + "IType": 100, + "Effect": "", + "Name": "Production_AA1_lv5", + "FullResourcePath": "" + }, + "3226": { + "IType": 100, + "Effect": "", + "Name": "Production_AA1_lv6", + "FullResourcePath": "" + }, + "3227": { + "IType": 100, + "Effect": "", + "Name": "Production_AA1_lv7", + "FullResourcePath": "" + }, + "3228": { + "IType": 100, + "Effect": "", + "Name": "Production_AA1_lv8", + "FullResourcePath": "" + }, + "3229": { + "IType": 100, + "Effect": "", + "Name": "Production_AA1_lv9", + "FullResourcePath": "" + }, + "3230": { + "IType": 100, + "Effect": "", + "Name": "Production_AA1_lv10", + "FullResourcePath": "" + }, + "3231": { + "IType": 100, + "Effect": "", + "Name": "Production_AA1_lv11", + "FullResourcePath": "" + }, + "3232": { + "IType": 100, + "Effect": "", + "Name": "Production_AA1_lv12", + "FullResourcePath": "" + }, + "3241": { + "IType": 100, + "Effect": "", + "Name": "Production_AA2_lv1", + "FullResourcePath": "" + }, + "3242": { + "IType": 100, + "Effect": "", + "Name": "Production_AA2_lv2", + "FullResourcePath": "" + }, + "3243": { + "IType": 100, + "Effect": "", + "Name": "Production_AA2_lv3", + "FullResourcePath": "" + }, + "3244": { + "IType": 100, + "Effect": "", + "Name": "Production_AA2_lv4", + "FullResourcePath": "" + }, + "3245": { + "IType": 100, + "Effect": "", + "Name": "Production_AA2_lv5", + "FullResourcePath": "" + }, + "3246": { + "IType": 100, + "Effect": "", + "Name": "Production_AA2_lv6", + "FullResourcePath": "" + }, + "3247": { + "IType": 100, + "Effect": "", + "Name": "Production_AA2_lv7", + "FullResourcePath": "" + }, + "3248": { + "IType": 100, + "Effect": "", + "Name": "Production_AA2_lv8", + "FullResourcePath": "" + }, + "3249": { + "IType": 100, + "Effect": "", + "Name": "Production_AA2_lv9", + "FullResourcePath": "" + }, + "3250": { + "IType": 100, + "Effect": "", + "Name": "Production_AA2_lv10", + "FullResourcePath": "" + }, + "5001": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "5002": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "5003": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "5021": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "5022": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "5023": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "5024": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "5025": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "5041": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "5042": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "5043": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "5061": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "5062": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "5063": { + "IType": 100, + "Effect": "", + "Name": "", + "FullResourcePath": "" + }, + "100001": { + "IType": 1, + "Effect": "", + "Name": "Energy", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/Shop/Big/shop_energy_LV1.png" + }, + "100002": { + "IType": 2, + "Effect": "", + "Name": "Star", + "FullResourcePath": "" + }, + "100003": { + "IType": 3, + "Effect": "", + "Name": "Diamond", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/Shop/Big/shop_diamond_LV2.png" + }, + "100004": { + "IType": 101, + "Effect": 1, + "Name": "1星卡包", + "FullResourcePath": "" + }, + "100005": { + "IType": 101, + "Effect": 2, + "Name": "2星卡包", + "FullResourcePath": "" + }, + "100006": { + "IType": 101, + "Effect": 3, + "Name": "3星卡包", + "FullResourcePath": "" + }, + "100007": { + "IType": 101, + "Effect": 4, + "Name": "4星卡包", + "FullResourcePath": "" + }, + "100008": { + "IType": 101, + "Effect": 5, + "Name": "5星卡包", + "FullResourcePath": "" + }, + "100011": { + "IType": 102, + "Effect": "1,300", + "Name": "high roller", + "FullResourcePath": "" + }, + "100012": { + "IType": 102, + "Effect": "2,300", + "Name": "超级发射器", + "FullResourcePath": "" + }, + "100013": { + "IType": 102, + "Effect": "3,300", + "Name": "流星雨", + "FullResourcePath": "" + }, + "100014": { + "IType": 102, + "Effect": "4,300", + "Name": "宝箱雨", + "FullResourcePath": "" + }, + "100015": { + "IType": 102, + "Effect": "5,300", + "Name": "超级订单", + "FullResourcePath": "" + }, + "100016": { + "IType": 102, + "Effect": "6,900", + "Name": "场景冲刺", + "FullResourcePath": "" + }, + "100017": { + "IType": 102, + "Effect": "7,300", + "Name": "卡牌节", + "FullResourcePath": "" + }, + "100018": { + "IType": 102, + "Effect": "8,300", + "Name": "金卡交换", + "FullResourcePath": "" + }, + "100019": { + "IType": 102, + "Effect": "9,600", + "Name": "宠物怪盗", + "FullResourcePath": "" + }, + "100020": { + "IType": 102, + "Effect": "10,300", + "Name": "连击快手", + "FullResourcePath": "" + }, + "100021": { + "IType": 103, + "Effect": 1, + "Name": "小猪存钱罐(充值)", + "FullResourcePath": "" + }, + "100022": { + "IType": 103, + "Effect": 2, + "Name": "小猪存钱罐(AD)", + "FullResourcePath": "" + }, + "100023": { + "IType": 104, + "Effect": 6, + "Name": "万能卡(普通)", + "FullResourcePath": "" + }, + "100024": { + "IType": 104, + "Effect": 7, + "Name": "万能卡(金卡)", + "FullResourcePath": "" + }, + "100025": { + "IType": 105, + "Effect": "10,0", + "Name": "小黄鸭头像框", + "FullResourcePath": "" + }, + "100026": { + "IType": 99, + "Effect": "", + "Name": "挖矿活动代币", + "FullResourcePath": "" + }, + "100027": { + "IType": 107, + "Effect": "", + "Name": "竞赛活动代币", + "FullResourcePath": "" + }, + "100028": { + "IType": 97, + "Effect": 1, + "Name": "普通食物苹果", + "FullResourcePath": "" + }, + "100029": { + "IType": 97, + "Effect": 1, + "Name": "高级食物奶酪", + "FullResourcePath": "" + }, + "100030": { + "IType": 97, + "Effect": 1, + "Name": "钻石食物榴莲肉", + "FullResourcePath": "" + }, + "100031": { + "IType": 97, + "Effect": 2, + "Name": "普通清洁用品宠物香皂", + "FullResourcePath": "" + }, + "100032": { + "IType": 97, + "Effect": 2, + "Name": "高级清洁用品花朵香皂", + "FullResourcePath": "" + }, + "100033": { + "IType": 97, + "Effect": 2, + "Name": "钻石清洁用品彩虹沐浴液", + "FullResourcePath": "" + }, + "100034": { + "IType": 108, + "Effect": "", + "Name": "拜访触发道具", + "FullResourcePath": "" + }, + "100035": { + "IType": 99, + "Effect": "", + "Name": "playroom打工工具", + "FullResourcePath": "" + }, + "100036": { + "IType": 97, + "Effect": "", + "Name": "整蛊食物", + "FullResourcePath": "" + }, + "100037": { + "IType": 102, + "Effect": "11,300", + "Name": "猫咪旋风", + "FullResourcePath": "" + }, + "100038": { + "IType": 102, + "Effect": "12,600", + "Name": "招财猫", + "FullResourcePath": "" + }, + "100039": { + "IType": 102, + "Effect": "13,600", + "Name": "幸运猫", + "FullResourcePath": "" + }, + "100040": { + "IType": 97, + "Effect": "", + "Name": "猜颜色活动代币", + "FullResourcePath": "" + }, + "100041": { + "IType": 102, + "Effect": "14,300", + "Name": "猫咪戏法", + "FullResourcePath": "" + }, + "100042": { + "IType": 102, + "Effect": "15,300", + "Name": "回收日", + "FullResourcePath": "" + }, + "100043": { + "IType": 116, + "Effect": "", + "Name": "活动通行证积分", + "FullResourcePath": "" + }, + "100044": { + "IType": 102, + "Effect": "17,1800", + "Name": "猫咪闪促", + "FullResourcePath": "" + }, + "100045": { + "IType": 102, + "Effect": "18,300", + "Name": "减价不减量", + "FullResourcePath": "" + }, + "100046": { + "IType": 99, + "Effect": "", + "Name": "种猫草活动代币", + "FullResourcePath": "" + }, + "101001": { + "IType": 98, + "Effect": 1, + "Name": "", + "FullResourcePath": "" + }, + "101002": { + "IType": 98, + "Effect": 2, + "Name": "", + "FullResourcePath": "" + }, + "101003": { + "IType": 98, + "Effect": 3, + "Name": "", + "FullResourcePath": "" + }, + "101004": { + "IType": 98, + "Effect": 4, + "Name": "", + "FullResourcePath": "" + }, + "101005": { + "IType": 98, + "Effect": 5, + "Name": "", + "FullResourcePath": "" + }, + "101006": { + "IType": 98, + "Effect": 6, + "Name": "", + "FullResourcePath": "" + }, + "101007": { + "IType": 98, + "Effect": 7, + "Name": "", + "FullResourcePath": "" + }, + "101008": { + "IType": 98, + "Effect": 8, + "Name": "", + "FullResourcePath": "" + }, + "101009": { + "IType": 98, + "Effect": 9, + "Name": "", + "FullResourcePath": "" + }, + "101010": { + "IType": 98, + "Effect": 10, + "Name": "", + "FullResourcePath": "" + }, + "101011": { + "IType": 98, + "Effect": 11, + "Name": "", + "FullResourcePath": "" + }, + "101012": { + "IType": 98, + "Effect": 12, + "Name": "", + "FullResourcePath": "" + }, + "101013": { + "IType": 98, + "Effect": 13, + "Name": "", + "FullResourcePath": "" + }, + "101014": { + "IType": 98, + "Effect": 14, + "Name": "", + "FullResourcePath": "" + }, + "101015": { + "IType": 98, + "Effect": 15, + "Name": "", + "FullResourcePath": "" + }, + "101016": { + "IType": 98, + "Effect": 16, + "Name": "", + "FullResourcePath": "" + }, + "101017": { + "IType": 98, + "Effect": 17, + "Name": "", + "FullResourcePath": "" + }, + "101018": { + "IType": 98, + "Effect": 18, + "Name": "", + "FullResourcePath": "" + }, + "101019": { + "IType": 98, + "Effect": 19, + "Name": "", + "FullResourcePath": "" + }, + "101020": { + "IType": 98, + "Effect": 20, + "Name": "", + "FullResourcePath": "" + }, + "101021": { + "IType": 98, + "Effect": 21, + "Name": "", + "FullResourcePath": "" + }, + "101022": { + "IType": 98, + "Effect": 22, + "Name": "", + "FullResourcePath": "" + }, + "101023": { + "IType": 98, + "Effect": 23, + "Name": "", + "FullResourcePath": "" + }, + "101024": { + "IType": 98, + "Effect": 24, + "Name": "", + "FullResourcePath": "" + }, + "101025": { + "IType": 98, + "Effect": 25, + "Name": "", + "FullResourcePath": "" + }, + "101026": { + "IType": 98, + "Effect": 26, + "Name": "", + "FullResourcePath": "" + }, + "101027": { + "IType": 98, + "Effect": 27, + "Name": "", + "FullResourcePath": "" + }, + "101028": { + "IType": 98, + "Effect": 28, + "Name": "", + "FullResourcePath": "" + }, + "101029": { + "IType": 98, + "Effect": 29, + "Name": "", + "FullResourcePath": "" + }, + "101030": { + "IType": 98, + "Effect": 30, + "Name": "", + "FullResourcePath": "" + }, + "101031": { + "IType": 98, + "Effect": 31, + "Name": "", + "FullResourcePath": "" + }, + "101032": { + "IType": 98, + "Effect": 32, + "Name": "", + "FullResourcePath": "" + }, + "101033": { + "IType": 98, + "Effect": 33, + "Name": "", + "FullResourcePath": "" + }, + "101034": { + "IType": 98, + "Effect": 34, + "Name": "", + "FullResourcePath": "" + }, + "101035": { + "IType": 98, + "Effect": 35, + "Name": "", + "FullResourcePath": "" + }, + "101036": { + "IType": 98, + "Effect": 36, + "Name": "", + "FullResourcePath": "" + }, + "101037": { + "IType": 98, + "Effect": 37, + "Name": "", + "FullResourcePath": "" + }, + "101038": { + "IType": 98, + "Effect": 38, + "Name": "", + "FullResourcePath": "" + }, + "101039": { + "IType": 98, + "Effect": 39, + "Name": "", + "FullResourcePath": "" + }, + "101040": { + "IType": 98, + "Effect": 40, + "Name": "", + "FullResourcePath": "" + }, + "101041": { + "IType": 98, + "Effect": 41, + "Name": "", + "FullResourcePath": "" + }, + "101042": { + "IType": 98, + "Effect": 42, + "Name": "", + "FullResourcePath": "" + }, + "101043": { + "IType": 98, + "Effect": 43, + "Name": "", + "FullResourcePath": "" + }, + "101044": { + "IType": 98, + "Effect": 44, + "Name": "", + "FullResourcePath": "" + }, + "101045": { + "IType": 98, + "Effect": 45, + "Name": "", + "FullResourcePath": "" + }, + "101046": { + "IType": 98, + "Effect": 46, + "Name": "", + "FullResourcePath": "" + }, + "101047": { + "IType": 98, + "Effect": 47, + "Name": "", + "FullResourcePath": "" + }, + "101048": { + "IType": 98, + "Effect": 48, + "Name": "", + "FullResourcePath": "" + }, + "101049": { + "IType": 98, + "Effect": 49, + "Name": "", + "FullResourcePath": "" + }, + "101050": { + "IType": 98, + "Effect": 50, + "Name": "", + "FullResourcePath": "" + }, + "101051": { + "IType": 98, + "Effect": 51, + "Name": "", + "FullResourcePath": "" + }, + "101052": { + "IType": 98, + "Effect": 52, + "Name": "", + "FullResourcePath": "" + }, + "101053": { + "IType": 98, + "Effect": 53, + "Name": "", + "FullResourcePath": "" + }, + "101054": { + "IType": 98, + "Effect": 54, + "Name": "", + "FullResourcePath": "" + }, + "101055": { + "IType": 98, + "Effect": 55, + "Name": "", + "FullResourcePath": "" + }, + "101056": { + "IType": 98, + "Effect": 56, + "Name": "", + "FullResourcePath": "" + }, + "101057": { + "IType": 98, + "Effect": 57, + "Name": "", + "FullResourcePath": "" + }, + "101058": { + "IType": 98, + "Effect": 58, + "Name": "", + "FullResourcePath": "" + }, + "101059": { + "IType": 98, + "Effect": 59, + "Name": "", + "FullResourcePath": "" + }, + "101060": { + "IType": 98, + "Effect": 60, + "Name": "", + "FullResourcePath": "" + }, + "101061": { + "IType": 98, + "Effect": 61, + "Name": "", + "FullResourcePath": "" + }, + "101062": { + "IType": 98, + "Effect": 62, + "Name": "", + "FullResourcePath": "" + }, + "101063": { + "IType": 98, + "Effect": 63, + "Name": "", + "FullResourcePath": "" + }, + "101064": { + "IType": 98, + "Effect": 64, + "Name": "", + "FullResourcePath": "" + }, + "101065": { + "IType": 98, + "Effect": 65, + "Name": "", + "FullResourcePath": "" + }, + "101066": { + "IType": 98, + "Effect": 66, + "Name": "", + "FullResourcePath": "" + }, + "101067": { + "IType": 98, + "Effect": 67, + "Name": "", + "FullResourcePath": "" + }, + "101068": { + "IType": 98, + "Effect": 68, + "Name": "", + "FullResourcePath": "" + }, + "101069": { + "IType": 98, + "Effect": 69, + "Name": "", + "FullResourcePath": "" + }, + "101070": { + "IType": 98, + "Effect": 70, + "Name": "", + "FullResourcePath": "" + }, + "101071": { + "IType": 98, + "Effect": 71, + "Name": "", + "FullResourcePath": "" + }, + "101072": { + "IType": 98, + "Effect": 72, + "Name": "", + "FullResourcePath": "" + }, + "101073": { + "IType": 98, + "Effect": 73, + "Name": "", + "FullResourcePath": "" + }, + "101074": { + "IType": 98, + "Effect": 74, + "Name": "", + "FullResourcePath": "" + }, + "101075": { + "IType": 98, + "Effect": 75, + "Name": "", + "FullResourcePath": "" + }, + "101076": { + "IType": 98, + "Effect": 76, + "Name": "", + "FullResourcePath": "" + }, + "101077": { + "IType": 98, + "Effect": 77, + "Name": "", + "FullResourcePath": "" + }, + "101078": { + "IType": 98, + "Effect": 78, + "Name": "", + "FullResourcePath": "" + }, + "101079": { + "IType": 98, + "Effect": 79, + "Name": "", + "FullResourcePath": "" + }, + "101080": { + "IType": 98, + "Effect": 80, + "Name": "", + "FullResourcePath": "" + }, + "101081": { + "IType": 98, + "Effect": 81, + "Name": "", + "FullResourcePath": "" + }, + "101082": { + "IType": 98, + "Effect": 82, + "Name": "", + "FullResourcePath": "" + }, + "101083": { + "IType": 98, + "Effect": 83, + "Name": "", + "FullResourcePath": "" + }, + "101084": { + "IType": 98, + "Effect": 84, + "Name": "", + "FullResourcePath": "" + }, + "101085": { + "IType": 98, + "Effect": 85, + "Name": "", + "FullResourcePath": "" + }, + "101086": { + "IType": 98, + "Effect": 86, + "Name": "", + "FullResourcePath": "" + }, + "101087": { + "IType": 98, + "Effect": 87, + "Name": "", + "FullResourcePath": "" + }, + "101088": { + "IType": 98, + "Effect": 88, + "Name": "", + "FullResourcePath": "" + }, + "101089": { + "IType": 98, + "Effect": 89, + "Name": "", + "FullResourcePath": "" + }, + "101090": { + "IType": 98, + "Effect": 90, + "Name": "", + "FullResourcePath": "" + }, + "101091": { + "IType": 98, + "Effect": 91, + "Name": "", + "FullResourcePath": "" + }, + "101092": { + "IType": 98, + "Effect": 92, + "Name": "", + "FullResourcePath": "" + }, + "101093": { + "IType": 98, + "Effect": 93, + "Name": "", + "FullResourcePath": "" + }, + "101094": { + "IType": 98, + "Effect": 94, + "Name": "", + "FullResourcePath": "" + }, + "101095": { + "IType": 98, + "Effect": 95, + "Name": "", + "FullResourcePath": "" + }, + "101096": { + "IType": 98, + "Effect": 96, + "Name": "", + "FullResourcePath": "" + }, + "101097": { + "IType": 98, + "Effect": 97, + "Name": "", + "FullResourcePath": "" + }, + "101098": { + "IType": 98, + "Effect": 98, + "Name": "", + "FullResourcePath": "" + }, + "101099": { + "IType": 98, + "Effect": 99, + "Name": "", + "FullResourcePath": "" + }, + "101100": { + "IType": 98, + "Effect": 100, + "Name": "", + "FullResourcePath": "" + }, + "101101": { + "IType": 98, + "Effect": 101, + "Name": "", + "FullResourcePath": "" + }, + "101102": { + "IType": 98, + "Effect": 102, + "Name": "", + "FullResourcePath": "" + }, + "101103": { + "IType": 98, + "Effect": 103, + "Name": "", + "FullResourcePath": "" + }, + "101104": { + "IType": 98, + "Effect": 104, + "Name": "", + "FullResourcePath": "" + }, + "101105": { + "IType": 98, + "Effect": 105, + "Name": "", + "FullResourcePath": "" + }, + "101106": { + "IType": 98, + "Effect": 106, + "Name": "", + "FullResourcePath": "" + }, + "101107": { + "IType": 98, + "Effect": 107, + "Name": "", + "FullResourcePath": "" + }, + "101108": { + "IType": 98, + "Effect": 108, + "Name": "", + "FullResourcePath": "" + }, + "101109": { + "IType": 98, + "Effect": 109, + "Name": "", + "FullResourcePath": "" + }, + "101110": { + "IType": 98, + "Effect": 110, + "Name": "", + "FullResourcePath": "" + }, + "101111": { + "IType": 98, + "Effect": 111, + "Name": "", + "FullResourcePath": "" + }, + "101112": { + "IType": 98, + "Effect": 112, + "Name": "", + "FullResourcePath": "" + }, + "101113": { + "IType": 98, + "Effect": 113, + "Name": "", + "FullResourcePath": "" + }, + "101114": { + "IType": 98, + "Effect": 114, + "Name": "", + "FullResourcePath": "" + }, + "101115": { + "IType": 98, + "Effect": 115, + "Name": "", + "FullResourcePath": "" + }, + "101116": { + "IType": 98, + "Effect": 116, + "Name": "", + "FullResourcePath": "" + }, + "101117": { + "IType": 98, + "Effect": 117, + "Name": "", + "FullResourcePath": "" + }, + "101118": { + "IType": 98, + "Effect": 118, + "Name": "", + "FullResourcePath": "" + }, + "101119": { + "IType": 98, + "Effect": 119, + "Name": "", + "FullResourcePath": "" + }, + "101120": { + "IType": 98, + "Effect": 120, + "Name": "", + "FullResourcePath": "" + }, + "101121": { + "IType": 98, + "Effect": 121, + "Name": "", + "FullResourcePath": "" + }, + "101122": { + "IType": 98, + "Effect": 122, + "Name": "", + "FullResourcePath": "" + }, + "101123": { + "IType": 98, + "Effect": 123, + "Name": "", + "FullResourcePath": "" + }, + "101124": { + "IType": 98, + "Effect": 124, + "Name": "", + "FullResourcePath": "" + }, + "101125": { + "IType": 98, + "Effect": 125, + "Name": "", + "FullResourcePath": "" + }, + "101126": { + "IType": 98, + "Effect": 126, + "Name": "", + "FullResourcePath": "" + }, + "101127": { + "IType": 98, + "Effect": 127, + "Name": "", + "FullResourcePath": "" + }, + "101128": { + "IType": 98, + "Effect": 128, + "Name": "", + "FullResourcePath": "" + }, + "101129": { + "IType": 98, + "Effect": 129, + "Name": "", + "FullResourcePath": "" + }, + "101130": { + "IType": 98, + "Effect": 130, + "Name": "", + "FullResourcePath": "" + }, + "101131": { + "IType": 98, + "Effect": 131, + "Name": "", + "FullResourcePath": "" + }, + "101132": { + "IType": 98, + "Effect": 132, + "Name": "", + "FullResourcePath": "" + }, + "101133": { + "IType": 98, + "Effect": 133, + "Name": "", + "FullResourcePath": "" + }, + "101134": { + "IType": 98, + "Effect": 134, + "Name": "", + "FullResourcePath": "" + }, + "101135": { + "IType": 98, + "Effect": 135, + "Name": "", + "FullResourcePath": "" + }, + "101136": { + "IType": 98, + "Effect": 136, + "Name": "", + "FullResourcePath": "" + }, + "101137": { + "IType": 98, + "Effect": 137, + "Name": "", + "FullResourcePath": "" + }, + "101138": { + "IType": 98, + "Effect": 138, + "Name": "", + "FullResourcePath": "" + }, + "101139": { + "IType": 98, + "Effect": 139, + "Name": "", + "FullResourcePath": "" + }, + "101140": { + "IType": 98, + "Effect": 140, + "Name": "", + "FullResourcePath": "" + }, + "101141": { + "IType": 98, + "Effect": 141, + "Name": "", + "FullResourcePath": "" + }, + "101142": { + "IType": 98, + "Effect": 142, + "Name": "", + "FullResourcePath": "" + }, + "101143": { + "IType": 98, + "Effect": 143, + "Name": "", + "FullResourcePath": "" + }, + "101144": { + "IType": 98, + "Effect": 144, + "Name": "", + "FullResourcePath": "" + }, + "101145": { + "IType": 97, + "Effect": 1, + "Name": "高级食物三文鱼", + "FullResourcePath": "" + }, + "101146": { + "IType": 97, + "Effect": 1, + "Name": "高级食物辣椒", + "FullResourcePath": "" + }, + "101147": { + "IType": 97, + "Effect": 2, + "Name": "高级清洁用品心形香皂", + "FullResourcePath": "" + }, + "101148": { + "IType": 97, + "Effect": 2, + "Name": "高级清洁用品兔子香皂", + "FullResourcePath": "" + }, + "101149": { + "IType": 102, + "Effect": "2,900", + "Name": "超级发射器", + "FullResourcePath": "" + }, + "101150": { + "IType": 102, + "Effect": "3,1800", + "Name": "流星雨", + "FullResourcePath": "" + }, + "101151": { + "IType": 102, + "Effect": "1,300", + "Name": "high roller", + "FullResourcePath": "" + }, + "101152": { + "IType": 97, + "Effect": 3, + "Name": "照顾抚摸", + "FullResourcePath": "" + }, + "101153": { + "IType": 97, + "Effect": 3, + "Name": "照顾毛刷", + "FullResourcePath": "" + }, + "101154": { + "IType": 97, + "Effect": 3, + "Name": "照顾吸尘器", + "FullResourcePath": "" + }, + "101155": { + "IType": 97, + "Effect": 4, + "Name": "玩具洗衣篮", + "FullResourcePath": "" + }, + "101156": { + "IType": 97, + "Effect": 4, + "Name": "玩具鞋子", + "FullResourcePath": "" + }, + "101157": { + "IType": 110, + "Effect": "0,0", + "Name": "Facebook头像", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle000.png" + }, + "101158": { + "IType": 110, + "Effect": "1,0", + "Name": "小主角", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle001.png" + }, + "101159": { + "IType": 110, + "Effect": "2,0", + "Name": "丽丽", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle002.png" + }, + "101160": { + "IType": 110, + "Effect": "3,0", + "Name": "乌云", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle003.png" + }, + "101161": { + "IType": 110, + "Effect": "4,0", + "Name": "大橘", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle004.png" + }, + "101162": { + "IType": 110, + "Effect": "5,0", + "Name": "唐米", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle005.png" + }, + "101163": { + "IType": 110, + "Effect": "6,0", + "Name": "爱芙", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle006.png" + }, + "101164": { + "IType": 110, + "Effect": "7,0", + "Name": "小白", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle007.png" + }, + "101165": { + "IType": 110, + "Effect": "8,0", + "Name": "柏奇", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle008.png" + }, + "101166": { + "IType": 110, + "Effect": "9,0", + "Name": "旺财", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle009.png" + }, + "101167": { + "IType": 110, + "Effect": "10,0", + "Name": "詹金斯太太", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle010.png" + }, + "101168": { + "IType": 105, + "Effect": "0,0", + "Name": "默认头像框", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Kuang_new/HeadFrame0.png" + }, + "101169": { + "IType": 105, + "Effect": "1,0", + "Name": "猫猫甜心", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Kuang_new/HeadFrame1.png" + }, + "101170": { + "IType": 105, + "Effect": "2,0", + "Name": "音乐公主", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Kuang_new/HeadFrame2.png" + }, + "101171": { + "IType": 105, + "Effect": "3,0", + "Name": "救助大师", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Kuang_new/HeadFrame3.png" + }, + "101172": { + "IType": 105, + "Effect": "4,0", + "Name": "绅士大亨", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Kuang_new/HeadFrame4.png" + }, + "101173": { + "IType": 105, + "Effect": "5,0", + "Name": "酷帅风格", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Kuang_new/HeadFrame5.png" + }, + "101174": { + "IType": 105, + "Effect": "6,0", + "Name": "好运锦鲤", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Kuang_new/HeadFrame6.png" + }, + "101175": { + "IType": 105, + "Effect": "7,0", + "Name": "猫在池中", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Kuang_new/HeadFrame7.png" + }, + "101176": { + "IType": 109, + "Effect": "1,0", + "Name": "加油", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_1.png" + }, + "101177": { + "IType": 109, + "Effect": "2,0", + "Name": "送花", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_2.png" + }, + "101178": { + "IType": 109, + "Effect": "3,0", + "Name": "你真棒!", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_3.png" + }, + "101179": { + "IType": 109, + "Effect": "4,0", + "Name": "生气气", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_4.png" + }, + "101180": { + "IType": 109, + "Effect": "5,0", + "Name": "哭哭", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_5.png" + }, + "101181": { + "IType": 109, + "Effect": "6,0", + "Name": "坐牢", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_6.png" + }, + "101182": { + "IType": 109, + "Effect": "7,0", + "Name": "吐舌头", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_7.png" + }, + "101183": { + "IType": 109, + "Effect": "8,0", + "Name": "哼!", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_8.png" + }, + "101184": { + "IType": 109, + "Effect": "9,0", + "Name": "眨眼", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_9.png" + }, + "101185": { + "IType": 109, + "Effect": "10,0", + "Name": "可爱", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_10.png" + }, + "101186": { + "IType": 109, + "Effect": "11,0", + "Name": "睡着了", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_11.png" + }, + "101187": { + "IType": 109, + "Effect": "12,0", + "Name": "探头", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_12.png" + }, + "101188": { + "IType": 109, + "Effect": "13,0", + "Name": "我饭呢", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_13.png" + }, + "101189": { + "IType": 109, + "Effect": "14,0", + "Name": "开吃", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Emoji/cat_biaoqing_14.png" + }, + "101190": { + "IType": 102, + "Effect": "14,600", + "Name": "猫咪戏法", + "FullResourcePath": "" + }, + "101191": { + "IType": 102, + "Effect": "14,900", + "Name": "猫咪戏法", + "FullResourcePath": "" + }, + "101192": { + "IType": 102, + "Effect": "14,1800", + "Name": "猫咪戏法", + "FullResourcePath": "" + }, + "101193": { + "IType": 102, + "Effect": "14,3600", + "Name": "猫咪戏法", + "FullResourcePath": "" + }, + "101194": { + "IType": 102, + "Effect": "16,300", + "Name": "猫咪小学徒", + "FullResourcePath": "" + }, + "101195": { + "IType": 97, + "Effect": 4, + "Name": "玩具扫地机器人", + "FullResourcePath": "" + }, + "101196": { + "IType": 97, + "Effect": 4, + "Name": "玩具钢笔", + "FullResourcePath": "" + }, + "101197": { + "IType": 97, + "Effect": 4, + "Name": "玩具玩具球", + "FullResourcePath": "" + }, + "101198": { + "IType": 111, + "Effect": 1, + "Name": "窝1", + "FullResourcePath": "" + }, + "101199": { + "IType": 111, + "Effect": 2, + "Name": "窝2", + "FullResourcePath": "" + }, + "101200": { + "IType": 111, + "Effect": 3, + "Name": "窝3", + "FullResourcePath": "" + }, + "101201": { + "IType": 111, + "Effect": 4, + "Name": "窝4", + "FullResourcePath": "" + }, + "101202": { + "IType": 111, + "Effect": 5, + "Name": "地板1", + "FullResourcePath": "" + }, + "101203": { + "IType": 111, + "Effect": 6, + "Name": "地板2", + "FullResourcePath": "" + }, + "101204": { + "IType": 111, + "Effect": 7, + "Name": "地板3", + "FullResourcePath": "" + }, + "101205": { + "IType": 111, + "Effect": 8, + "Name": "地板4", + "FullResourcePath": "" + }, + "101206": { + "IType": 111, + "Effect": 9, + "Name": "地毯1", + "FullResourcePath": "" + }, + "101207": { + "IType": 111, + "Effect": 10, + "Name": "地毯2", + "FullResourcePath": "" + }, + "101208": { + "IType": 111, + "Effect": 11, + "Name": "地毯3", + "FullResourcePath": "" + }, + "101209": { + "IType": 111, + "Effect": 12, + "Name": "地毯4", + "FullResourcePath": "" + }, + "101210": { + "IType": 111, + "Effect": 13, + "Name": "休息室外景", + "FullResourcePath": "" + }, + "101211": { + "IType": 111, + "Effect": 14, + "Name": "休息室外景", + "FullResourcePath": "" + }, + "101212": { + "IType": 111, + "Effect": 15, + "Name": "休息室外景", + "FullResourcePath": "" + }, + "101213": { + "IType": 111, + "Effect": 16, + "Name": "休息室外景", + "FullResourcePath": "" + }, + "101214": { + "IType": 111, + "Effect": 17, + "Name": "橱柜1", + "FullResourcePath": "" + }, + "101215": { + "IType": 111, + "Effect": 18, + "Name": "橱柜2", + "FullResourcePath": "" + }, + "101216": { + "IType": 111, + "Effect": 19, + "Name": "橱柜3", + "FullResourcePath": "" + }, + "101217": { + "IType": 111, + "Effect": 20, + "Name": "橱柜4", + "FullResourcePath": "" + }, + "101218": { + "IType": 111, + "Effect": 21, + "Name": "窗帘1", + "FullResourcePath": "" + }, + "101219": { + "IType": 111, + "Effect": 22, + "Name": "窗帘2", + "FullResourcePath": "" + }, + "101220": { + "IType": 111, + "Effect": 23, + "Name": "窗帘3", + "FullResourcePath": "" + }, + "101221": { + "IType": 111, + "Effect": 24, + "Name": "窗帘4", + "FullResourcePath": "" + }, + "101222": { + "IType": 111, + "Effect": 25, + "Name": "窗户1", + "FullResourcePath": "" + }, + "101223": { + "IType": 111, + "Effect": 26, + "Name": "窗户2", + "FullResourcePath": "" + }, + "101224": { + "IType": 111, + "Effect": 27, + "Name": "窗户3", + "FullResourcePath": "" + }, + "101225": { + "IType": 111, + "Effect": 28, + "Name": "窗户4", + "FullResourcePath": "" + }, + "101226": { + "IType": 111, + "Effect": 29, + "Name": "玩具1", + "FullResourcePath": "" + }, + "101227": { + "IType": 111, + "Effect": 30, + "Name": "玩具2", + "FullResourcePath": "" + }, + "101228": { + "IType": 111, + "Effect": 31, + "Name": "玩具3", + "FullResourcePath": "" + }, + "101229": { + "IType": 111, + "Effect": 32, + "Name": "玩具4", + "FullResourcePath": "" + }, + "101230": { + "IType": 111, + "Effect": 33, + "Name": "沙发1", + "FullResourcePath": "" + }, + "101231": { + "IType": 111, + "Effect": 34, + "Name": "沙发2", + "FullResourcePath": "" + }, + "101232": { + "IType": 111, + "Effect": 35, + "Name": "沙发3", + "FullResourcePath": "" + }, + "101233": { + "IType": 111, + "Effect": 36, + "Name": "沙发4", + "FullResourcePath": "" + }, + "101234": { + "IType": 111, + "Effect": 37, + "Name": "灯具", + "FullResourcePath": "" + }, + "101235": { + "IType": 111, + "Effect": 38, + "Name": "灯具", + "FullResourcePath": "" + }, + "101236": { + "IType": 111, + "Effect": 39, + "Name": "灯具", + "FullResourcePath": "" + }, + "101237": { + "IType": 111, + "Effect": 40, + "Name": "灯具", + "FullResourcePath": "" + }, + "101238": { + "IType": 111, + "Effect": 41, + "Name": "餐厅墙壁1", + "FullResourcePath": "" + }, + "101239": { + "IType": 111, + "Effect": 42, + "Name": "餐厅墙壁2", + "FullResourcePath": "" + }, + "101240": { + "IType": 111, + "Effect": 43, + "Name": "餐厅墙壁3", + "FullResourcePath": "" + }, + "101241": { + "IType": 111, + "Effect": 44, + "Name": "餐厅墙壁4", + "FullResourcePath": "" + }, + "101242": { + "IType": 111, + "Effect": 45, + "Name": "餐厅餐台1", + "FullResourcePath": "" + }, + "101243": { + "IType": 111, + "Effect": 46, + "Name": "餐厅餐台2", + "FullResourcePath": "" + }, + "101244": { + "IType": 111, + "Effect": 47, + "Name": "餐厅餐台3", + "FullResourcePath": "" + }, + "101245": { + "IType": 111, + "Effect": 48, + "Name": "餐厅餐台4", + "FullResourcePath": "" + }, + "101246": { + "IType": 111, + "Effect": 49, + "Name": "餐厅冰箱1", + "FullResourcePath": "" + }, + "101247": { + "IType": 111, + "Effect": 50, + "Name": "餐厅冰箱2", + "FullResourcePath": "" + }, + "101248": { + "IType": 111, + "Effect": 51, + "Name": "餐厅冰箱3", + "FullResourcePath": "" + }, + "101249": { + "IType": 111, + "Effect": 52, + "Name": "餐厅冰箱4", + "FullResourcePath": "" + }, + "101250": { + "IType": 111, + "Effect": 53, + "Name": "餐厅地板1", + "FullResourcePath": "" + }, + "101251": { + "IType": 111, + "Effect": 54, + "Name": "餐厅地板2", + "FullResourcePath": "" + }, + "101252": { + "IType": 111, + "Effect": 55, + "Name": "餐厅地板3", + "FullResourcePath": "" + }, + "101253": { + "IType": 111, + "Effect": 56, + "Name": "餐厅地板4", + "FullResourcePath": "" + }, + "101254": { + "IType": 111, + "Effect": 57, + "Name": "餐厅窗户1", + "FullResourcePath": "" + }, + "101255": { + "IType": 111, + "Effect": 58, + "Name": "餐厅窗户2", + "FullResourcePath": "" + }, + "101256": { + "IType": 111, + "Effect": 59, + "Name": "餐厅窗户3", + "FullResourcePath": "" + }, + "101257": { + "IType": 111, + "Effect": 60, + "Name": "餐厅窗户4", + "FullResourcePath": "" + }, + "101258": { + "IType": 111, + "Effect": 61, + "Name": "餐厅绿植1", + "FullResourcePath": "" + }, + "101259": { + "IType": 111, + "Effect": 62, + "Name": "餐厅绿植2", + "FullResourcePath": "" + }, + "101260": { + "IType": 111, + "Effect": 63, + "Name": "餐厅绿植3", + "FullResourcePath": "" + }, + "101261": { + "IType": 111, + "Effect": 64, + "Name": "餐厅绿植4", + "FullResourcePath": "" + }, + "101262": { + "IType": 111, + "Effect": 65, + "Name": "餐厅饮水器1", + "FullResourcePath": "" + }, + "101263": { + "IType": 111, + "Effect": 66, + "Name": "餐厅饮水器2", + "FullResourcePath": "" + }, + "101264": { + "IType": 111, + "Effect": 67, + "Name": "餐厅饮水器3", + "FullResourcePath": "" + }, + "101265": { + "IType": 111, + "Effect": 68, + "Name": "餐厅饮水器4", + "FullResourcePath": "" + }, + "101266": { + "IType": 111, + "Effect": 69, + "Name": "餐厅地毯1", + "FullResourcePath": "" + }, + "101267": { + "IType": 111, + "Effect": 70, + "Name": "餐厅地毯2", + "FullResourcePath": "" + }, + "101268": { + "IType": 111, + "Effect": 71, + "Name": "餐厅地毯3", + "FullResourcePath": "" + }, + "101269": { + "IType": 111, + "Effect": 72, + "Name": "餐厅地毯4", + "FullResourcePath": "" + }, + "101270": { + "IType": 111, + "Effect": 73, + "Name": "餐厅外景1", + "FullResourcePath": "" + }, + "101271": { + "IType": 111, + "Effect": 74, + "Name": "餐厅外景2", + "FullResourcePath": "" + }, + "101272": { + "IType": 111, + "Effect": 75, + "Name": "餐厅外景3", + "FullResourcePath": "" + }, + "101273": { + "IType": 111, + "Effect": 76, + "Name": "餐厅外景4", + "FullResourcePath": "" + }, + "101274": { + "IType": 111, + "Effect": 77, + "Name": "卫生间墙壁1", + "FullResourcePath": "" + }, + "101275": { + "IType": 111, + "Effect": 78, + "Name": "卫生间墙壁2", + "FullResourcePath": "" + }, + "101276": { + "IType": 111, + "Effect": 79, + "Name": "卫生间墙壁3", + "FullResourcePath": "" + }, + "101277": { + "IType": 111, + "Effect": 80, + "Name": "卫生间墙壁4", + "FullResourcePath": "" + }, + "101278": { + "IType": 111, + "Effect": 81, + "Name": "卫生间猫砂盆1", + "FullResourcePath": "" + }, + "101279": { + "IType": 111, + "Effect": 82, + "Name": "卫生间猫砂盆2", + "FullResourcePath": "" + }, + "101280": { + "IType": 111, + "Effect": 83, + "Name": "卫生间猫砂盆3", + "FullResourcePath": "" + }, + "101281": { + "IType": 111, + "Effect": 84, + "Name": "卫生间猫砂盆4", + "FullResourcePath": "" + }, + "101282": { + "IType": 111, + "Effect": 85, + "Name": "卫生间浴缸1", + "FullResourcePath": "" + }, + "101283": { + "IType": 111, + "Effect": 86, + "Name": "卫生间浴缸2", + "FullResourcePath": "" + }, + "101284": { + "IType": 111, + "Effect": 87, + "Name": "卫生间浴缸3", + "FullResourcePath": "" + }, + "101285": { + "IType": 111, + "Effect": 88, + "Name": "卫生间浴缸4", + "FullResourcePath": "" + }, + "101286": { + "IType": 111, + "Effect": 89, + "Name": "卫生间地板1", + "FullResourcePath": "" + }, + "101287": { + "IType": 111, + "Effect": 90, + "Name": "卫生间地板2", + "FullResourcePath": "" + }, + "101288": { + "IType": 111, + "Effect": 91, + "Name": "卫生间地板3", + "FullResourcePath": "" + }, + "101289": { + "IType": 111, + "Effect": 92, + "Name": "卫生间地板4", + "FullResourcePath": "" + }, + "101290": { + "IType": 111, + "Effect": 93, + "Name": "休息室墙纸", + "FullResourcePath": "" + }, + "101291": { + "IType": 111, + "Effect": 94, + "Name": "休息室墙纸", + "FullResourcePath": "" + }, + "101292": { + "IType": 111, + "Effect": 95, + "Name": "休息室墙纸", + "FullResourcePath": "" + }, + "101293": { + "IType": 111, + "Effect": 96, + "Name": "休息室墙纸", + "FullResourcePath": "" + }, + "101294": { + "IType": 111, + "Effect": 97, + "Name": "卫生间储物柜1", + "FullResourcePath": "" + }, + "101295": { + "IType": 111, + "Effect": 98, + "Name": "卫生间储物柜2", + "FullResourcePath": "" + }, + "101296": { + "IType": 111, + "Effect": 99, + "Name": "卫生间储物柜3", + "FullResourcePath": "" + }, + "101297": { + "IType": 111, + "Effect": 100, + "Name": "卫生间储物柜4", + "FullResourcePath": "" + }, + "101298": { + "IType": 111, + "Effect": 101, + "Name": "卫生间墙面装饰1", + "FullResourcePath": "" + }, + "101299": { + "IType": 111, + "Effect": 102, + "Name": "卫生间墙面装饰2", + "FullResourcePath": "" + }, + "101300": { + "IType": 111, + "Effect": 103, + "Name": "卫生间墙面装饰3", + "FullResourcePath": "" + }, + "101301": { + "IType": 111, + "Effect": 104, + "Name": "卫生间墙面装饰4", + "FullResourcePath": "" + }, + "101302": { + "IType": 111, + "Effect": 105, + "Name": "卫生间地毯1", + "FullResourcePath": "" + }, + "101303": { + "IType": 111, + "Effect": 106, + "Name": "卫生间地毯2", + "FullResourcePath": "" + }, + "101304": { + "IType": 111, + "Effect": 107, + "Name": "卫生间地毯3", + "FullResourcePath": "" + }, + "101305": { + "IType": 111, + "Effect": 108, + "Name": "卫生间地毯4", + "FullResourcePath": "" + }, + "101306": { + "IType": 111, + "Effect": 109, + "Name": "化妆间椅子", + "FullResourcePath": "" + }, + "101307": { + "IType": 111, + "Effect": 110, + "Name": "化妆间椅子", + "FullResourcePath": "" + }, + "101308": { + "IType": 111, + "Effect": 111, + "Name": "化妆间椅子", + "FullResourcePath": "" + }, + "101309": { + "IType": 111, + "Effect": 112, + "Name": "化妆间椅子", + "FullResourcePath": "" + }, + "101310": { + "IType": 111, + "Effect": 113, + "Name": "化妆间吊帘", + "FullResourcePath": "" + }, + "101311": { + "IType": 111, + "Effect": 114, + "Name": "化妆间吊帘", + "FullResourcePath": "" + }, + "101312": { + "IType": 111, + "Effect": 115, + "Name": "化妆间吊帘", + "FullResourcePath": "" + }, + "101313": { + "IType": 111, + "Effect": 116, + "Name": "化妆间吊帘", + "FullResourcePath": "" + }, + "101314": { + "IType": 111, + "Effect": 117, + "Name": "化妆台", + "FullResourcePath": "" + }, + "101315": { + "IType": 111, + "Effect": 118, + "Name": "化妆台", + "FullResourcePath": "" + }, + "101316": { + "IType": 111, + "Effect": 119, + "Name": "化妆台", + "FullResourcePath": "" + }, + "101317": { + "IType": 111, + "Effect": 120, + "Name": "化妆台", + "FullResourcePath": "" + }, + "101318": { + "IType": 111, + "Effect": 121, + "Name": "化妆间地板1", + "FullResourcePath": "" + }, + "101319": { + "IType": 111, + "Effect": 122, + "Name": "化妆间地板1", + "FullResourcePath": "" + }, + "101320": { + "IType": 111, + "Effect": 123, + "Name": "化妆间地板1", + "FullResourcePath": "" + }, + "101321": { + "IType": 111, + "Effect": 124, + "Name": "化妆间地板1", + "FullResourcePath": "" + }, + "101322": { + "IType": 111, + "Effect": 125, + "Name": "化妆间墙纸", + "FullResourcePath": "" + }, + "101323": { + "IType": 111, + "Effect": 126, + "Name": "化妆间墙纸", + "FullResourcePath": "" + }, + "101324": { + "IType": 111, + "Effect": 127, + "Name": "化妆间墙纸", + "FullResourcePath": "" + }, + "101325": { + "IType": 111, + "Effect": 128, + "Name": "化妆间墙纸", + "FullResourcePath": "" + }, + "101326": { + "IType": 111, + "Effect": 129, + "Name": "化妆间挂钟", + "FullResourcePath": "" + }, + "101327": { + "IType": 111, + "Effect": 130, + "Name": "化妆间挂钟", + "FullResourcePath": "" + }, + "101328": { + "IType": 111, + "Effect": 131, + "Name": "化妆间挂钟", + "FullResourcePath": "" + }, + "101329": { + "IType": 111, + "Effect": 132, + "Name": "化妆间挂钟", + "FullResourcePath": "" + }, + "101330": { + "IType": 111, + "Effect": 133, + "Name": "化妆间衣橱", + "FullResourcePath": "" + }, + "101331": { + "IType": 111, + "Effect": 134, + "Name": "化妆间衣橱", + "FullResourcePath": "" + }, + "101332": { + "IType": 111, + "Effect": 135, + "Name": "化妆间衣橱", + "FullResourcePath": "" + }, + "101333": { + "IType": 111, + "Effect": 136, + "Name": "化妆间衣橱", + "FullResourcePath": "" + }, + "101334": { + "IType": 111, + "Effect": 137, + "Name": "化妆间地毯1", + "FullResourcePath": "" + }, + "101335": { + "IType": 111, + "Effect": 138, + "Name": "化妆间地毯1", + "FullResourcePath": "" + }, + "101336": { + "IType": 111, + "Effect": 139, + "Name": "化妆间地毯1", + "FullResourcePath": "" + }, + "101337": { + "IType": 111, + "Effect": 140, + "Name": "化妆间地毯1", + "FullResourcePath": "" + }, + "101338": { + "IType": 111, + "Effect": 141, + "Name": "餐厅墙壁4", + "FullResourcePath": "" + }, + "101339": { + "IType": 111, + "Effect": 142, + "Name": "餐厅餐台4", + "FullResourcePath": "" + }, + "101340": { + "IType": 111, + "Effect": 143, + "Name": "餐厅冰箱4", + "FullResourcePath": "" + }, + "101341": { + "IType": 111, + "Effect": 144, + "Name": "餐厅地板4", + "FullResourcePath": "" + }, + "101342": { + "IType": 111, + "Effect": 145, + "Name": "餐厅窗户4", + "FullResourcePath": "" + }, + "101343": { + "IType": 111, + "Effect": 146, + "Name": "餐厅绿植4", + "FullResourcePath": "" + }, + "101344": { + "IType": 111, + "Effect": 147, + "Name": "餐厅饮水器4", + "FullResourcePath": "" + }, + "101345": { + "IType": 111, + "Effect": 148, + "Name": "餐厅地毯4", + "FullResourcePath": "" + }, + "101346": { + "IType": 111, + "Effect": 149, + "Name": "餐厅外景4", + "FullResourcePath": "" + }, + "101347": { + "IType": 111, + "Effect": 150, + "Name": "卫生间墙壁4", + "FullResourcePath": "" + }, + "101348": { + "IType": 111, + "Effect": 151, + "Name": "卫生间猫砂盆4", + "FullResourcePath": "" + }, + "101349": { + "IType": 111, + "Effect": 152, + "Name": "卫生间浴缸4", + "FullResourcePath": "" + }, + "101350": { + "IType": 111, + "Effect": 153, + "Name": "卫生间地板4", + "FullResourcePath": "" + }, + "101351": { + "IType": 111, + "Effect": 154, + "Name": "卫生间储物柜4", + "FullResourcePath": "" + }, + "101352": { + "IType": 111, + "Effect": 155, + "Name": "卫生间墙面装饰4", + "FullResourcePath": "" + }, + "101353": { + "IType": 111, + "Effect": 156, + "Name": "卫生间地毯4", + "FullResourcePath": "" + }, + "101354": { + "IType": 111, + "Effect": 157, + "Name": "化妆间椅子", + "FullResourcePath": "" + }, + "101355": { + "IType": 111, + "Effect": 158, + "Name": "化妆间吊帘", + "FullResourcePath": "" + }, + "101356": { + "IType": 111, + "Effect": 159, + "Name": "化妆台", + "FullResourcePath": "" + }, + "101357": { + "IType": 111, + "Effect": 160, + "Name": "化妆间地板1", + "FullResourcePath": "" + }, + "101358": { + "IType": 111, + "Effect": 161, + "Name": "化妆间墙纸", + "FullResourcePath": "" + }, + "101359": { + "IType": 111, + "Effect": 162, + "Name": "化妆间挂钟", + "FullResourcePath": "" + }, + "101360": { + "IType": 111, + "Effect": 163, + "Name": "化妆间衣橱", + "FullResourcePath": "" + }, + "101361": { + "IType": 111, + "Effect": 164, + "Name": "化妆间地毯1", + "FullResourcePath": "" + }, + "101362": { + "IType": 97, + "Effect": 1, + "Name": "普通食物橙子", + "FullResourcePath": "" + }, + "101363": { + "IType": 97, + "Effect": 1, + "Name": "高级食物虾仁", + "FullResourcePath": "" + }, + "101364": { + "IType": 97, + "Effect": 1, + "Name": "高级食物西瓜", + "FullResourcePath": "" + }, + "101365": { + "IType": 97, + "Effect": 1, + "Name": "钻石食物芥末", + "FullResourcePath": "" + }, + "101366": { + "IType": 97, + "Effect": 1, + "Name": "高级食物鸡腿", + "FullResourcePath": "" + }, + "101367": { + "IType": 97, + "Effect": 2, + "Name": "普通清洁用品果冻香皂", + "FullResourcePath": "" + }, + "101368": { + "IType": 97, + "Effect": 2, + "Name": "高级清洁用品香水香皂", + "FullResourcePath": "" + }, + "101369": { + "IType": 97, + "Effect": 2, + "Name": "高级清洁用品香水香皂", + "FullResourcePath": "" + }, + "101370": { + "IType": 97, + "Effect": 2, + "Name": "钻石清洁用品糖果香皂", + "FullResourcePath": "" + }, + "101371": { + "IType": 97, + "Effect": 2, + "Name": "钻石清洁用品猫咪沐浴液", + "FullResourcePath": "" + }, + "101372": { + "IType": 97, + "Effect": 4, + "Name": "玩具签字笔", + "FullResourcePath": "" + }, + "101373": { + "IType": 97, + "Effect": 4, + "Name": "玩具时髦鞋子", + "FullResourcePath": "" + }, + "101374": { + "IType": 97, + "Effect": 4, + "Name": "玩具智能扫地机", + "FullResourcePath": "" + }, + "101375": { + "IType": 97, + "Effect": 4, + "Name": "玩具粉色洗衣篮", + "FullResourcePath": "" + }, + "101376": { + "IType": 97, + "Effect": 4, + "Name": "玩具塑胶球", + "FullResourcePath": "" + }, + "101377": { + "IType": 97, + "Effect": 3, + "Name": "照顾指甲剪", + "FullResourcePath": "" + }, + "101378": { + "IType": 97, + "Effect": 3, + "Name": "照顾软毛刷", + "FullResourcePath": "" + }, + "101379": { + "IType": 97, + "Effect": 3, + "Name": "照顾强力吸尘器", + "FullResourcePath": "" + }, + "101380": { + "IType": 113, + "Effect": "45,49,57,61,65,73,166", + "Name": "经典餐厅套装", + "FullResourcePath": "" + }, + "101381": { + "IType": 113, + "Effect": "81,85,97,101", + "Name": "经典卫生间套装", + "FullResourcePath": "" + }, + "101382": { + "IType": 113, + "Effect": "109,113,117,129,133", + "Name": "经典换装室套装", + "FullResourcePath": "" + }, + "101383": { + "IType": 113, + "Effect": "2,6,10,14,18,22,26,30,34,38,42,54,70,78,90,94,106,122,126,138", + "Name": "糖果休息室套装", + "FullResourcePath": "" + }, + "101384": { + "IType": 113, + "Effect": "46,50,58,62,66,74,167", + "Name": "糖果餐厅套装", + "FullResourcePath": "" + }, + "101385": { + "IType": 113, + "Effect": "82,86,98,102", + "Name": "糖果卫生间套装", + "FullResourcePath": "" + }, + "101386": { + "IType": 113, + "Effect": "110,114,118,130,134", + "Name": "糖果换装室套装", + "FullResourcePath": "" + }, + "101387": { + "IType": 113, + "Effect": "3,7,11,15,19,23,27,31,35,39,43,55,71,79,91,95,107,123,127,139", + "Name": "暖冬休息室套装", + "FullResourcePath": "" + }, + "101388": { + "IType": 113, + "Effect": "47,51,59,63,67,75,168", + "Name": "暖冬餐厅套装", + "FullResourcePath": "" + }, + "101389": { + "IType": 113, + "Effect": "83,87,99,103", + "Name": "暖冬卫生间套装", + "FullResourcePath": "" + }, + "101390": { + "IType": 113, + "Effect": "111,115,119,131,135", + "Name": "暖冬换装室套装", + "FullResourcePath": "" + }, + "101391": { + "IType": 113, + "Effect": "4,8,12,16,20,24,28,32,36,40,44,56,72,80,92,96,108,124,128,140", + "Name": "水世界休息室套装", + "FullResourcePath": "" + }, + "101392": { + "IType": 113, + "Effect": "48,52,60,64,68,76,169", + "Name": "水世界餐厅套装", + "FullResourcePath": "" + }, + "101393": { + "IType": 113, + "Effect": "84,88,100,104", + "Name": "水世界卫生间套装", + "FullResourcePath": "" + }, + "101394": { + "IType": 113, + "Effect": "112,116,120,132,136", + "Name": "水世界换装室套装", + "FullResourcePath": "" + }, + "101395": { + "IType": 102, + "Effect": "3,1200", + "Name": "流星雨20min", + "FullResourcePath": "" + }, + "101396": { + "IType": 102, + "Effect": "4,600", + "Name": "", + "FullResourcePath": "" + }, + "101414": { + "IType": 111, + "Effect": 165, + "Name": "厨房吊灯破旧", + "FullResourcePath": "" + }, + "101415": { + "IType": 111, + "Effect": 166, + "Name": "厨房吊灯经典", + "FullResourcePath": "" + }, + "101416": { + "IType": 111, + "Effect": 167, + "Name": "厨房吊灯水果", + "FullResourcePath": "" + }, + "101417": { + "IType": 111, + "Effect": 168, + "Name": "厨房吊灯冬天", + "FullResourcePath": "" + }, + "101418": { + "IType": 111, + "Effect": 169, + "Name": "厨房吊灯海底", + "FullResourcePath": "" + }, + "101419": { + "IType": 111, + "Effect": 170, + "Name": "订单奖励猫窝", + "FullResourcePath": "" + }, + "101420": { + "IType": 111, + "Effect": 171, + "Name": "订单奖励沙发", + "FullResourcePath": "" + }, + "101421": { + "IType": 111, + "Effect": 172, + "Name": "订单奖励猫爬架", + "FullResourcePath": "" + }, + "101422": { + "IType": 111, + "Effect": 173, + "Name": "订单奖励窗帘", + "FullResourcePath": "" + }, + "101423": { + "IType": 111, + "Effect": 174, + "Name": "订单奖励外景", + "FullResourcePath": "" + }, + "101424": { + "IType": 112, + "Effect": 2, + "Name": "小猫服饰-冬季帽子", + "FullResourcePath": "" + }, + "101425": { + "IType": 112, + "Effect": 12, + "Name": "小猫服饰-冬季上衣", + "FullResourcePath": "" + }, + "101426": { + "IType": 112, + "Effect": 17, + "Name": "小猫服饰-冬季裤子", + "FullResourcePath": "" + }, + "101427": { + "IType": 112, + "Effect": 22, + "Name": "小猫服饰-冬季鞋子", + "FullResourcePath": "" + }, + "101428": { + "IType": 112, + "Effect": 7, + "Name": "小猫服饰-冬季眼镜", + "FullResourcePath": "" + }, + "101429": { + "IType": 114, + "Effect": "2,12,17,22,7", + "Name": "小猫服饰套装-冬季", + "FullResourcePath": "" + }, + "101430": { + "IType": 112, + "Effect": 27, + "Name": "小猫服饰-鲨鱼连体衣", + "FullResourcePath": "" + }, + "101431": { + "IType": 112, + "Effect": 37, + "Name": "小猫服饰-鲨鱼脸部", + "FullResourcePath": "" + }, + "101432": { + "IType": 112, + "Effect": 42, + "Name": "小猫服饰-鲨鱼隐形眼镜", + "FullResourcePath": "" + }, + "101433": { + "IType": 114, + "Effect": "27,37,8", + "Name": "小猫服饰套装-鲨鱼", + "FullResourcePath": "" + }, + "101434": { + "IType": 112, + "Effect": 31, + "Name": "小猫服饰-胡子", + "FullResourcePath": "" + }, + "101435": { + "IType": 112, + "Effect": 3, + "Name": "小猫服饰-炫彩帽子", + "FullResourcePath": "" + }, + "101436": { + "IType": 112, + "Effect": 13, + "Name": "小猫服饰-炫彩上衣", + "FullResourcePath": "" + }, + "101437": { + "IType": 112, + "Effect": 18, + "Name": "小猫服饰-炫彩裤子", + "FullResourcePath": "" + }, + "101438": { + "IType": 112, + "Effect": 23, + "Name": "小猫服饰-炫彩鞋子", + "FullResourcePath": "" + }, + "101439": { + "IType": 112, + "Effect": 9, + "Name": "小猫服饰-炫彩眼镜", + "FullResourcePath": "" + }, + "101440": { + "IType": 114, + "Effect": "3,13,18,23,9", + "Name": "小猫服饰套装-炫彩", + "FullResourcePath": "" + }, + "101441": { + "IType": 112, + "Effect": 26, + "Name": "小猫服饰-独角兽连体衣", + "FullResourcePath": "" + }, + "101442": { + "IType": 112, + "Effect": 36, + "Name": "小猫服饰-独角兽脸部", + "FullResourcePath": "" + }, + "101443": { + "IType": 112, + "Effect": 41, + "Name": "小猫服饰-独角兽隐形眼镜", + "FullResourcePath": "" + }, + "101444": { + "IType": 114, + "Effect": "26,36,6", + "Name": "小猫服饰套装-独角兽", + "FullResourcePath": "" + }, + "101445": { + "IType": 115, + "Effect": "", + "Name": "低档消耗品宝箱", + "FullResourcePath": "" + }, + "101446": { + "IType": 115, + "Effect": "", + "Name": "中档消耗品宝箱", + "FullResourcePath": "" + }, + "101447": { + "IType": 115, + "Effect": "", + "Name": "高档消耗品宝箱", + "FullResourcePath": "" + }, + "101448": { + "IType": 113, + "Effect": "1,5,9,13,17,21,25,29,33,37,41,53,69,77,89,93,105,121,125,137", + "Name": "经典休息室套装", + "FullResourcePath": "" + }, + "101449": { + "IType": 110, + "Effect": "14,0", + "Name": "嘿,美女", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle014.png" + }, + "101450": { + "IType": 110, + "Effect": "15,0", + "Name": "墨镜美食家", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle015.png" + }, + "101451": { + "IType": 110, + "Effect": "16,0", + "Name": "吃货小猫", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle016.png" + }, + "101452": { + "IType": 110, + "Effect": "12,0", + "Name": "富贵在手", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle012.png" + }, + "101453": { + "IType": 110, + "Effect": "13,0", + "Name": "花花女孩", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle013.png" + }, + "101454": { + "IType": 110, + "Effect": "11,0", + "Name": "咖啡脑", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle011.png" + }, + "101455": { + "IType": 110, + "Effect": "17,0", + "Name": "陆川", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle017.png" + }, + "101456": { + "IType": 110, + "Effect": "18,0", + "Name": "唐知微", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle018.png" + }, + "101457": { + "IType": 110, + "Effect": "19,0", + "Name": "亚德里安", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle019.png" + }, + "101458": { + "IType": 110, + "Effect": "20,0", + "Name": "霍桑先生", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/DefaultHead/head_pic_circle020.png" + }, + "101459": { + "IType": 105, + "Effect": "8,0", + "Name": "蝴蝶结圈圈", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Kuang_new/HeadFrame8.png" + }, + "101460": { + "IType": 105, + "Effect": "9,0", + "Name": "橙意满满", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Kuang_new/HeadFrame9.png" + }, + "101461": { + "IType": 105, + "Effect": "10,0", + "Name": "喵耳圈圈", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Kuang_new/HeadFrame10.png" + }, + "101462": { + "IType": 105, + "Effect": "11,0", + "Name": "奶酪鼠鼠", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Kuang_new/HeadFrame11.png" + }, + "101463": { + "IType": 105, + "Effect": "12,0", + "Name": "四时花语", + "FullResourcePath": "Assets/Art_SubModule/Art_Resource/Art_UISprites/collections/Kuang_new/HeadFrame12.png" + }, + "101464": { + "IType": 114, + "Effect": "46,48", + "Name": "红色裙子套装", + "FullResourcePath": "" + }, + "101465": { + "IType": 114, + "Effect": "47,49", + "Name": "黄色时装", + "FullResourcePath": "" + }, + "101466": { + "IType": 102, + "Effect": "2,600", + "Name": "超级发射器", + "FullResourcePath": "" + }, + "101467": { + "IType": 102, + "Effect": "15,600", + "Name": "回收日", + "FullResourcePath": "" + }, + "101468": { + "IType": 102, + "Effect": "4,1200", + "Name": "", + "FullResourcePath": "" + }, + "101469": { + "IType": 102, + "Effect": "1,600", + "Name": "high roller", + "FullResourcePath": "" + }, + "101470": { + "IType": 115, + "Effect": "", + "Name": "免广告(1天)", + "FullResourcePath": "" + }, + "101471": { + "IType": 115, + "Effect": "", + "Name": "免广告(3天)", + "FullResourcePath": "" + }, + "101472": { + "IType": 102, + "Effect": "13,300", + "Name": "幸运猫", + "FullResourcePath": "" + }, + "101473": { + "IType": 102, + "Effect": "12,300", + "Name": "招财猫", + "FullResourcePath": "" + } +} \ No newline at end of file diff --git a/apps/web-antd/src/store/order.ts b/apps/web-antd/src/store/order.ts index 877b50d..7b8f6e1 100644 --- a/apps/web-antd/src/store/order.ts +++ b/apps/web-antd/src/store/order.ts @@ -26,4 +26,14 @@ export const orderDiffData: Record = { export const triggerTypeData: Record = { 'Order': '订单触发器', 'Lv': '等级触发器', +}; + +export const activityTypeData: Record = { + 1: '挖矿活动', + 2: '猜颜色', + 3: '赛跑活动', + 4: '限时特惠礼包', + 5: '买一赠一礼包', + 6: '超值加购礼包', + 7: '好友合作活动', }; \ No newline at end of file diff --git a/apps/web-antd/src/store/util.ts b/apps/web-antd/src/store/util.ts index 0239544..a186e0a 100644 --- a/apps/web-antd/src/store/util.ts +++ b/apps/web-antd/src/store/util.ts @@ -80,9 +80,26 @@ export const getItemUrl = (itemId: number): string => { switch (itemId) { case 100001: return './Assets/Art_SubModule/Art_Resource/Art_UISprites/Shop/Big/shop_energy_LV1.png'; + case 100002: + return './Assets/GameMain/UI/UISprites/MergeObj/Packed/Other/Production_star_LV1.png'; case 100003: return './Assets/Art_SubModule/Art_Resource/Art_UISprites/Shop/Big/shop_diamond_LV2.png'; default: return ''; } }; + + +export const formatItems = (items: string) => { + try { + const itemList = JSON.parse(items); + const r = itemList.map((item: { Id: number; Num: number }) => ({ + ...item, + url: getItemUrl(item.Id), + })); + return r; + } catch (e) { + //console.error('Failed to parse items:', e); + return []; + } +} \ No newline at end of file diff --git a/apps/web-antd/src/views/dashboard/serverList/appList.vue b/apps/web-antd/src/views/dashboard/serverList/appList.vue index 9d49023..71d65b2 100644 --- a/apps/web-antd/src/views/dashboard/serverList/appList.vue +++ b/apps/web-antd/src/views/dashboard/serverList/appList.vue @@ -5,6 +5,8 @@ import { restartServer, getServerListApi, reloadServer } from '#/api/core/server import AddServerModal from './addServer.vue' import EditServer from './editServer.vue'; import { useVbenModal } from '@vben/common-ui' +import { useAccess } from '@vben/access'; +const { hasAccessByRoles } = useAccess(); defineOptions({ name: 'AppList', @@ -20,6 +22,9 @@ const [editServerM, editServerApi] = useVbenModal({ connectedComponent: EditServer, }); async function editServer(Server: ServerData) { + if (!hasAccessByRoles(['super'])) { + return; + } editServerApi.setData(Server); editServerApi.open(); } diff --git a/apps/web-antd/src/views/dashboard/serverList/index.vue b/apps/web-antd/src/views/dashboard/serverList/index.vue index be5b78a..eb40f69 100644 --- a/apps/web-antd/src/views/dashboard/serverList/index.vue +++ b/apps/web-antd/src/views/dashboard/serverList/index.vue @@ -8,6 +8,7 @@ import type { AppData, ServerData } from '#/api/core/server'; import { useVbenModal } from '@vben/common-ui' import { ref, onMounted } from 'vue'; import addServerModal from './addServer.vue'; +import { AccessControl } from '@vben/access'; import dayjs from 'dayjs'; import { $t } from '#/locales' const appId = ref(1); @@ -124,10 +125,10 @@ onMounted(async () => { ]); const serverResponse = await getServerListApi({ AppId: app.AppId }); ServerList.value = Array.isArray(serverResponse) ? serverResponse : []; - setInterval(async () => { - const serverResponse = await getServerListApi({ AppId: appId.value }); - ServerList.value = Array.isArray(serverResponse) ? serverResponse : []; - }, 60000); + // setInterval(async () => { + // const serverResponse = await getServerListApi({ AppId: appId.value }); + // ServerList.value = Array.isArray(serverResponse) ? serverResponse : []; + // }, 60000); } catch (e) { appList.value = serverList; //console.log(e); @@ -227,10 +228,14 @@ async function updateReview() { - - - - + + + + + + + +
diff --git a/apps/web-antd/src/views/language/addLanguage.vue b/apps/web-antd/src/views/language/addLanguage.vue index a6f0858..755498b 100644 --- a/apps/web-antd/src/views/language/addLanguage.vue +++ b/apps/web-antd/src/views/language/addLanguage.vue @@ -1,4 +1,5 @@ + diff --git a/apps/web-antd/src/views/operation/activity/activity-detail.vue b/apps/web-antd/src/views/operation/activity/activity-detail.vue new file mode 100644 index 0000000..233c172 --- /dev/null +++ b/apps/web-antd/src/views/operation/activity/activity-detail.vue @@ -0,0 +1,184 @@ + + diff --git a/apps/web-antd/src/views/operation/activity/activity-table.vue b/apps/web-antd/src/views/operation/activity/activity-table.vue new file mode 100644 index 0000000..52f17aa --- /dev/null +++ b/apps/web-antd/src/views/operation/activity/activity-table.vue @@ -0,0 +1,187 @@ + + + diff --git a/apps/web-antd/src/views/operation/activity/index.vue b/apps/web-antd/src/views/operation/activity/index.vue new file mode 100644 index 0000000..de4f7d2 --- /dev/null +++ b/apps/web-antd/src/views/operation/activity/index.vue @@ -0,0 +1,12 @@ + + + diff --git a/apps/web-antd/src/views/operation/activity/mail-table.vue b/apps/web-antd/src/views/operation/activity/mail-table.vue new file mode 100644 index 0000000..83fa879 --- /dev/null +++ b/apps/web-antd/src/views/operation/activity/mail-table.vue @@ -0,0 +1,258 @@ + + + diff --git a/apps/web-antd/src/views/operation/mail/mail-detail.vue b/apps/web-antd/src/views/operation/mail/mail-detail.vue index 674e9f6..5b8f7b4 100644 --- a/apps/web-antd/src/views/operation/mail/mail-detail.vue +++ b/apps/web-antd/src/views/operation/mail/mail-detail.vue @@ -1,8 +1,15 @@ diff --git a/apps/web-antd/src/views/operation/mail/mail-table.vue b/apps/web-antd/src/views/operation/mail/mail-table.vue index fbaab82..195b58a 100644 --- a/apps/web-antd/src/views/operation/mail/mail-table.vue +++ b/apps/web-antd/src/views/operation/mail/mail-table.vue @@ -13,9 +13,10 @@ import { onMounted, ref } from 'vue'; import AddMailModal from './mail-info.vue'; import DetailMailModal from './mail-detail.vue'; import { getItemUrl } from '#/store/util'; +import { $t } from '#/locales' + const appList = ref([]); const ServerList = ref([]); - const formOptions: VbenFormProps = { // 默认展开 collapsed: false, @@ -53,15 +54,6 @@ const formOptions: VbenFormProps = { fieldName: 'AppId', label: 'APP:', }, - { - component: 'Select', - defaultValue: 1, - componentProps: { - options: [], - }, - fieldName: 'ServerId', - label: '区服', - }, ], // 控制表单是否显示折叠按钮 showCollapseButton: true, @@ -115,7 +107,7 @@ const gridOptions: VxeGridProps = { let AppId = parseInt(formValues.AppId, 10); return await getMailListApi({ AppId: AppId, - ServerId: formValues.ServerId, + ServerId: 1, PageSize: page.pageSize, CurrentPage: page.currentPage, }); @@ -162,30 +154,14 @@ onMounted(async () => { component: 'Select', componentProps: { options: appList.value.map((item) => ({ - label: item.AppName, + label: $t('page.server.' + item.AppName), value: item.AppId, })), }, fieldName: 'AppId', }, ]); - const serverResponse = await getServerListApi({ - AppId: app.AppId, - Type: 1, - }); - ServerList.value = Array.isArray(serverResponse) ? serverResponse : []; - GridApi.formApi.updateSchema([ - { - component: 'Select', - componentProps: { - options: ServerList.value.map((item) => ({ - label: item.ServerName, - value: item.ServerId, - })), - }, - fieldName: 'ServerId', - }, - ]); + } catch (e) { appList.value = []; //console.log(e); @@ -236,7 +212,7 @@ function fromatItems(items: string) { -