diff --git a/desktop-assistant/LICENSE b/desktop-assistant/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..859fba4e48ab0389c88f4c9be2f49706528957ff --- /dev/null +++ b/desktop-assistant/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 yanji255 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/desktop-assistant/conf.py b/desktop-assistant/conf.py new file mode 100644 index 0000000000000000000000000000000000000000..a39d5f16009b07493095ee6b694c78f04834ac26 --- /dev/null +++ b/desktop-assistant/conf.py @@ -0,0 +1,92 @@ +import json + + +class PetConfig: + """ + 宠物配置 + """ + + def __init__(self): + self.size = 128 + self.refresh = 4000 + self.default = None + self.up = None + self.down = None + self.left = None + self.right = None + self.random_act = [] + + @classmethod + def init_config(cls, pet_name: str, pic_dict: dict): + # 初始化所有动作 + act_path = 'res/role/{}/act_conf.json'.format(pet_name) + act_dict = {} + with open(act_path, 'r', encoding='UTF-8') as f: + act_dict = {k: Act.init_act(v, pic_dict) for k, v in dict(json.load(f)).items()} + + path = 'res/role/{}/pet_conf.json'.format(pet_name) + with open(path, 'r', encoding='UTF-8') as f: + o = PetConfig() + conf_params = json.load(f) + # 初始化动作 + o.default = act_dict[conf_params['default']] + o.up = act_dict[conf_params['up']] + o.down = act_dict[conf_params['down']] + o.left = act_dict[conf_params['left']] + o.right = act_dict[conf_params['right']] + o.size = conf_params.get('size', 128) + o.refresh = conf_params.get('refresh', 4000) + # 存储所有动作 + o.all_acts = act_dict + # 初始化随机动作 + random_act = [] + for act_array in conf_params['random_act']: + random_act.append([act_dict[act] for act in act_array]) + o.random_act = random_act + return o + + +class Act: + def __init__(self, images=(), act_num=1, need_move=False, direction=None, frame_move=10, frame_refresh=0.04): + """ + 动作 + :param images: 动作图像 + :param act_num 动作执行次数 + :param need_move: 是否需要移动 + :param direction: 移动方向 + :param frame_move 单帧移动距离 + :param frame_refresh 单帧刷新时间 + """ + self.images = images + self.act_num = act_num + self.need_move = need_move + self.direction = direction + self.frame_move = frame_move + self.frame_refresh = frame_refresh + + @classmethod + def init_act(cls, conf_param, pic_dict): + images = conf_param['images'] + img = [] + for i in range(images[0], images[-1] + 1): + img.append(pic_dict[str(i)]) + act_num = conf_param.get('act_num', 1) + need_move = conf_param.get('need_move', False) + direction = conf_param.get('direction', None) + frame_move = conf_param.get('frame_move', 10) + frame_refresh = conf_param.get('frame_refresh', 0.04) + return Act(img, act_num, need_move, direction, frame_move, frame_refresh) + + +def tran_idx_img(start_idx: int, end_idx: int, pic_dict: dict) -> list: + """ + 转化坐标与图像 + :param start_idx: 开始坐标 + :param end_idx: 结束坐标 + :param pic_dict: 图像dict + :return: 一个动作所有的图片list + """ + res = [] + for i in range(start_idx, end_idx + 1): + res.append(pic_dict[str(i)]) + return res diff --git a/desktop-assistant/main.py b/desktop-assistant/main.py new file mode 100644 index 0000000000000000000000000000000000000000..44d8f1a685e37680b472dbd1ab27aeb2e7e2c235 --- /dev/null +++ b/desktop-assistant/main.py @@ -0,0 +1,8 @@ +from pet import * + +if __name__ == '__main__': + # 加载所有角色, 启动应用并展示第一个角色 + pets = read_json('res/pets.json') + app = QApplication(sys.argv) + p = PetWidget(pets=pets) + sys.exit(app.exec_()) diff --git a/desktop-assistant/pet.py b/desktop-assistant/pet.py new file mode 100644 index 0000000000000000000000000000000000000000..a1f1122d0be75b9ea4af3545d562797b496838a2 --- /dev/null +++ b/desktop-assistant/pet.py @@ -0,0 +1,609 @@ +import sys +import time +import random +import subprocess + +from PyQt5.QtCore import Qt, QTimer, QObject, QPoint +from PyQt5.QtGui import QImage, QPixmap, QIcon, QCursor, QPainter, QPainterPath, QBitmap +from PyQt5.QtWidgets import * +from typing import List + +from utils import * +from conf import * + +# 特殊角色常量定义 +SPECIAL_PET_NAME = "小智" + +class PetWidget(QWidget): + def __init__(self, parent=None, curr_pet_name='', pets=()): + """ + 宠物组件 + :param parent: 父窗口 + :param curr_pet_name: 当前宠物名称 + :param pets: 全部宠物列表 + """ + super(PetWidget, self).__init__(parent, flags=Qt.WindowFlags()) + self.curr_pet_name = '' + self.pet_conf = PetConfig() + self.image = None + self.label = QLabel(self) + # 鼠标拖拽初始属性 + self.is_follow_mouse = False + self.mouse_drag_pos = self.pos() + # 是否在执行动画 + self.is_run_act = False + # 动画状态管理 + self.current_acts = [] # 待执行的动作列表 + self.current_act_index = 0 # 当前执行的动作索引 + self.current_frame_index = 0 # 当前帧索引 + self.current_act_repeats = 0 # 当前动作剩余重复次数 + self.animation_timer = QTimer(self) # 动画定时器 + self.animation_timer.timeout.connect(self._update_animation) + + self._init_widget() + self.init_conf(curr_pet_name if curr_pet_name else pets[0]) + self._set_menu(pets) + self._set_tray() + self.show() + + # 每5秒执行随机执行一个动作 + self.random_act_timer = QTimer() + self.random_act_timer.timeout.connect(self.random_act) + self.random_act_timer.start(self.pet_conf.refresh) + + # 单击事件位置跟踪 + self.mouse_press_pos = None + self.pending_act = None + self.is_processing = False + + def mousePressEvent(self, event): + """ + 鼠标点击事件 + :param event: 事件 + :return: + """ + if event.button() == Qt.RightButton: + # 打开右键菜单 + self.setContextMenuPolicy(Qt.CustomContextMenu) + self.customContextMenuRequested.connect(self._show_right_menu) + if event.button() == Qt.LeftButton: + # 左键绑定拖拽 + self.is_follow_mouse = True + self.mouse_drag_pos = event.globalPos() - self.pos() + # 记录鼠标按下时的位置(用于单击判断) + self.mouse_press_pos = event.globalPos() + event.accept() + self.setCursor(QCursor(Qt.ArrowCursor)) + + def mouseMoveEvent(self, event): + """ + 鼠标移动事件, 左键且绑定跟随, 移动窗体 + :param event: + :return: + """ + if Qt.LeftButton and self.is_follow_mouse: + self.move(event.globalPos() - self.mouse_drag_pos) + event.accept() + + def mouseReleaseEvent(self, event): + """ + 松开鼠标操作 + :param event: + :return: + """ + self.is_follow_mouse = False + self.setCursor(QCursor(Qt.ArrowCursor)) + + # 处理单击事件(位置未变化时) + if (event.button() == Qt.LeftButton and + self.mouse_press_pos and + self.curr_pet_name == SPECIAL_PET_NAME): + # 计算位置变化(欧几里得距离) + move_distance = ((event.globalPos() - self.mouse_press_pos).manhattanLength()) + # 如果移动距离小于5像素,视为单击 + if move_distance < 5: + self._handle_single_click() + self.mouse_press_pos = None + + def enterEvent(self, event): + """ + 鼠标进入事件,播放打招呼动画 + :param event: + :return: + """ + if self.curr_pet_name == SPECIAL_PET_NAME: + # 使用default动作 + if self.is_run_act or self.is_processing: + self.pending_act = "default" + else: + # 没有动作执行,直接播放打招呼动作 + self.play_specific_act("default") + + + def _init_widget(self) -> None: + self.setWindowFlags( + Qt.FramelessWindowHint | + Qt.WindowStaysOnTopHint | + Qt.SubWindow | + Qt.NoDropShadowWindowHint | + Qt.X11BypassWindowManagerHint + ) + + self.setAttribute(Qt.WA_TranslucentBackground, True) + self.setAttribute(Qt.WA_NoSystemBackground, True) + self.setAttribute(Qt.WA_OpaquePaintEvent, False) # 关键:禁用不透明绘制 + + self.setContentsMargins(0, 0, 0, 0) + self.layout().setContentsMargins(0, 0, 0, 0) if self.layout() else None + + self.is_follow_mouse = False + self.mouse_drag_pos = self.pos() + self.resize(self.pet_conf.size, self.pet_conf.size) + + self.repaint() + + def _init_img(self, img: QImage) -> None: + """ + 初始化窗体图片 + :param img: + :return: + """ + self.set_img(img) + self.resize(self.pet_conf.size, self.pet_conf.size) + self.show() + + def _set_menu(self, pets=()): + """ + 初始化菜单 + """ + menu = QMenu(self) + + # 切换角色子菜单 + change_menu = QMenu(menu) + change_menu.setTitle('切换角色') + change_acts = [_build_change_act(name, change_menu, self._change_pet) for name in pets] + change_menu.addActions(change_acts) + menu.addMenu(change_menu) + + # 退出动作 + quit_act = QAction('退出', menu) + quit_act.triggered.connect(self.quit) + menu.addAction(quit_act) + self.menu = menu + + def _show_right_menu(self): + """ + 展示右键菜单 + :return: + """ + # 光标位置弹出菜单 + self.menu.popup(QCursor.pos()) + + def _change_pet(self, pet_name: str) -> None: + """ + 改变宠物 + :param pet_name: 宠物名称 + :return: + """ + self.init_conf(pet_name) + self.set_img(self.image) + self.repaint() + + def init_conf(self, pet_name: str) -> None: + """ + 初始化宠物窗口配置 + :param pet_name: 宠物名称 + :return: + """ + self.curr_pet_name = pet_name + pic_dict = _load_all_pic(pet_name) + self.pet_conf = PetConfig.init_config(self.curr_pet_name, pic_dict) + self.set_img(list(pic_dict.values())[0]) + if self.curr_pet_name == SPECIAL_PET_NAME: + self.update_mask() + # 加载AppImage路径 + try: + with open(f'res/role/{pet_name}/pet_conf.json', 'r') as f: + conf = json.load(f) + self.app_image_path = conf.get('app_image_path', '') + except: + self.app_image_path = '' + + def _set_tray(self) -> None: + """ + 设置最小化托盘 + :return: + """ + tray = QSystemTrayIcon(self) + tray.setIcon(QIcon('res/icon.png')) + tray.setContextMenu(self.menu) + tray.show() + + def update_mask(self): + """创建圆形窗口遮罩""" + diameter = min(self.width(), self.height()) + mask = QBitmap(diameter, diameter) + mask.fill(Qt.color0) + + painter = QPainter(mask) + painter.setRenderHint(QPainter.Antialiasing) + painter.setBrush(Qt.color1) + painter.drawEllipse(0, 0, diameter, diameter) + painter.end() + + self.setMask(mask) + + def set_img(self, img: QImage) -> None: + """ + 为窗体设置图片 + :param img: 图片 + :return: + """ + pixmap = QPixmap.fromImage(img) + + if self.curr_pet_name == SPECIAL_PET_NAME: + # 创建相同大小的透明pixmap + rounded = QPixmap(pixmap.size()) + rounded.fill(Qt.transparent) + + # 创建圆形绘制路径 + painter = QPainter(rounded) + painter.setRenderHint(QPainter.Antialiasing) + path = QPainterPath() + diameter = min(pixmap.width(), pixmap.height()) + path.addEllipse(0, 0, diameter, diameter) + painter.setClipPath(path) + + # 绘制原始图像 + painter.drawPixmap(0, 0, pixmap) + painter.end() + + pixmap = rounded + self.label.setPixmap(pixmap) + self.image = img + + if self.curr_pet_name == SPECIAL_PET_NAME: + self.update_mask() + + def play_specific_act(self, act_id: str) -> None: + """ + 播放指定动作 + :param act_id: 动作ID + :return: + """ + if self.is_run_act: + # 如果已经有动作在执行,设置待执行动 + self.pending_act = act_id + return + + # 从所有动作中查找指定动作 + if hasattr(self.pet_conf, 'all_acts') and act_id in self.pet_conf.all_acts: + act = self.pet_conf.all_acts[act_id] + self.is_run_act = True + # 创建只包含该动作的序列 + self.current_acts = [act] # 修复:使用一维列表而不是二维列表 + self.current_act_index = 0 + self.current_frame_index = 0 + self._start_next_act() + + def random_act(self) -> None: + """ + 随机执行动作 + :return: + """ + if self.is_run_act or self.is_processing: + return + + self.is_run_act = True + # 选取随机动作执行 + self.current_acts = random.choice(self.pet_conf.random_act) + self.current_act_index = 0 + self.current_frame_index = 0 + # 开始动画序列 + self._start_next_act() + + def _start_next_act(self) -> None: + """ + 开始执行下一个动作 + """ + if self.current_act_index >= len(self.current_acts): + # 所有动作执行完成 + self.is_run_act = False + return + + act = self.current_acts[self.current_act_index] + self.current_frame_index = 0 + self.current_act_repeats = act.act_num + # 设置定时器间隔(毫秒) + interval = int(act.frame_refresh * 1000) + self.animation_timer.start(interval) + + def _update_animation(self) -> None: + """ + 定时器回调:更新动画帧 + """ + if not self.is_run_act or self.current_act_index >= len(self.current_acts): + self.animation_timer.stop() + return + + + act = self.current_acts[self.current_act_index] + + # 更新当前帧 + img = act.images[self.current_frame_index] + self.set_img(img) + + # 执行移动(如果需要) + if act.need_move: + self._move(self.pos(), act) + else: + self._static_act(self.pos()) + + self.repaint() + + # 更新帧索引 + self.current_frame_index += 1 + + # 检查是否需要切换到下一帧或下一个动作 + if self.current_frame_index >= len(act.images): + # 完成一轮动画 + self.current_frame_index = 0 + self.current_act_repeats -= 1 + # 检查当前动作是否完成 + if self.current_act_repeats <= 0: + # 当前动作完成,切换到下一个动作 + self.current_act_index += 1 + self.animation_timer.stop() + + self.is_processing = True + + if self.pending_act: + next_act = self.pending_act + self.pending_act = None + self.is_run_act = False + self.play_specific_act(next_act) + self.is_processing = False + else: + # 没有待执行动作,标记动作执行结束 + self.is_run_act = False + self._start_next_act() + self.is_processing = False + + def _static_act(self, pos: QPoint) -> None: + """ + 静态动作判断位置 + :param pos: 位置 + :return: + """ + screen_geo = QDesktopWidget().screenGeometry() + screen_width = screen_geo.width() + screen_height = screen_geo.height() + border = self.pet_conf.size + new_x = pos.x() + new_y = pos.y() + if pos.x() < border: + new_x = screen_width - border + elif pos.x() > screen_width - border: + new_x = border + if pos.y() < border: + new_y = screen_height - border + elif pos.y() > screen_height - border: + new_y = border + self.move(new_x, new_y) + + def _move(self, pos: QPoint, act: QAction) -> None: + """ + 移动动作 + :param pos: 当前位置 + :param act: 动作 + :return + """ + screen_geo = QDesktopWidget().screenGeometry() + screen_width = screen_geo.width() + screen_height = screen_geo.height() + border = self.pet_conf.size + if act.direction == 'right': + new_x = pos.x() + act.frame_move + if new_x < screen_width - border: + self.move(new_x, pos.y()) + else: + self.move(border, pos.y()) + if act.direction == 'left': + new_x = pos.x() - act.frame_move + if new_x > border: + self.move(new_x, pos.y()) + else: + self.move(screen_width - border, pos.y()) + if act.direction == 'up': + new_y = pos.y() - act.frame_move + if new_y > border: + self.move(pos.x(), new_y) + else: + self.move(pos.x(), screen_height - border) + if act.direction == 'down': + new_y = pos.y() + act.frame_move + if new_y < screen_height - border: + self.move(pos.x(), new_y) + else: + self.move(pos.x(), border) + if act.direction == 'left_down': + new_y = pos.y() + act.frame_move + new_x = pos.x() - act.frame_move + if new_x > border and new_y < screen_height - border: + self.move(new_x, new_y) + else: + self.move(screen_width - border, border) + + def _handle_single_click(self): + """ + 处理单击事件:打开/最小化/最大化应用 + """ + try: + # 查找应用窗口ID + result = subprocess.run( + ['xdotool', 'search', '--name', 'DeepChat - Shell'], + capture_output=True, + text=True + ) + + window_ids = result.stdout.strip().split() + + if window_ids: + # 过滤出有效的窗口ID + valid_window_ids = [] + for window_id in window_ids: + if self._is_window_valid(window_id): + valid_window_ids.append(window_id) + + if valid_window_ids: + window_id = valid_window_ids[0] + self._toggle_window_state(window_id) + else: + # 所有找到的窗口都无效,启动新应用 + if hasattr(self, 'app_image_path') and self.app_image_path: + self._launch_and_activate_app() + else: + # 应用未打开,启动应用 + if hasattr(self, 'app_image_path') and self.app_image_path: + self._launch_and_activate_app() + except Exception as e: + # 尝试直接启动应用作为后备方案 + if hasattr(self, 'app_image_path') and self.app_image_path: + subprocess.Popen([self.app_image_path]) + + def _toggle_window_state(self, window_id): + """ + 切换窗口状态(最大化/最小化) + """ + try: + # 首先验证窗口是否仍然存在且有效 + if not self._is_window_valid(window_id): + if hasattr(self, 'app_image_path') and self.app_image_path: + self._launch_and_activate_app() + return + + # 使用 xprop 检查窗口状态 + xprop_result = subprocess.run( + ['xprop', '-id', window_id], + capture_output=True, + text=True + ) + xprop_output = xprop_result.stdout + + # 检查窗口是否最小化 + is_minimized = '_NET_WM_STATE_HIDDEN' in xprop_output + + if is_minimized: + subprocess.run(['xdotool', 'windowactivate', window_id]) + else: + subprocess.run(['xdotool', 'windowminimize', window_id]) + except Exception as e: + # 如果出错,尝试启动新应用 + if hasattr(self, 'app_image_path') and self.app_image_path: + self._launch_and_activate_app() + + def _is_window_valid(self, window_id): + """ + 检查窗口ID是否仍然有效 + """ + try: + # 首先尝试使用 xdotool 检查窗口是否仍然存在 + xdotool_result = subprocess.run( + ['xdotool', 'getwindowname', window_id], + capture_output=True, + text=True + ) + + if xdotool_result.returncode != 0: + return False + + # 使用 xwininfo 检查窗口是否存在 + result = subprocess.run( + ['xwininfo', '-id', window_id], + capture_output=True, + text=True + ) + + # 如果命令成功执行且输出包含窗口信息,说明窗口存在 + if result.returncode == 0 and 'Window id:' in result.stdout: + # 检查窗口是否可见(通过检查窗口的几何信息) + if '0x0' in result.stdout or '1x1' in result.stdout: + return False + + # 检查窗口的映射状态 + if 'Map State: IsUnMapped' in result.stdout: + return False + + # 进一步检查窗口是否可见 + xprop_result = subprocess.run( + ['xprop', '-id', window_id, '_NET_WM_STATE'], + capture_output=True, + text=True + ) + + if xprop_result.returncode == 0: + # 检查窗口是否被隐藏或关闭 + if '_NET_WM_STATE_HIDDEN' in xprop_result.stdout: + return True # 最小化的窗口仍然有效 + elif '_NET_WM_STATE_WITHDRAWN' in xprop_result.stdout: + return False # 被撤销的窗口无效 + else: + return True # 正常显示的窗口 + else: + # 无法获取 _NET_WM_STATE 属性,可能是窗口已关闭 + return False + else: + return False + except Exception as e: + return False + + def _launch_and_activate_app(self): + """ + 启动应用并确保窗口正常显示 + """ + # 启动应用 + subprocess.Popen([self.app_image_path]) + + + def quit(self) -> None: + """ + 关闭窗口, 系统退出 + :return: + """ + self.close() + sys.exit() + + +def _load_all_pic(pet_name: str) -> dict: + """ + 加载宠物所有动作图片 + :param pet_name: 宠物名称 + :return: {动作编码: 动作图片} + """ + img_dir = 'res/role/{}/action/'.format(pet_name) + images = os.listdir(img_dir) + return {image.split('.')[0]: _get_q_img(img_dir + image) for image in images} + + +def _build_change_act(pet_name: str, parent: QObject, act_func) -> QAction: + """ + 构建改变菜单动作 + :param pet_name: 菜单动作名称 + :param parent 父级菜单 + :param act_func: 菜单动作函数 + :return: + """ + act = QAction(pet_name, parent) + act.triggered.connect(lambda: act_func(pet_name)) + return act + + +def _get_q_img(img_path: str) -> QImage: + """ + 将图片路径加载为 QImage + :param img_path: 图片路径 + :return: QImage + """ + image = QImage() + image.load(img_path) + return image diff --git a/desktop-assistant/res/icon.png b/desktop-assistant/res/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..49910ee1f71f9c5d59fb46cc6ded8147c2a17cbe Binary files /dev/null and b/desktop-assistant/res/icon.png differ diff --git a/desktop-assistant/res/pets.json b/desktop-assistant/res/pets.json new file mode 100644 index 0000000000000000000000000000000000000000..385aaedf68779e2c6e24a933bd17295a4c6e362d --- /dev/null +++ b/desktop-assistant/res/pets.json @@ -0,0 +1,3 @@ +[ + "小智" +] diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/act_conf.json" "b/desktop-assistant/res/role/\345\260\217\346\231\272/act_conf.json" new file mode 100644 index 0000000000000000000000000000000000000000..d8001cce4c06add66fc30d73d8ec63c63a2af1da --- /dev/null +++ "b/desktop-assistant/res/role/\345\260\217\346\231\272/act_conf.json" @@ -0,0 +1,60 @@ +{ + "default": { + "images": [2011, 2062] + }, + "up" : { + "images": [0, 44], + "act_num": 45, + "need_move": true, + "direction": "up" + }, + "down" : { + "images": [0, 44], + "act_num": 45, + "need_move": true, + "direction": "down", + "frame_move": 30, + "frame_refresh": 0.1 + }, + "left": { + "images": [0, 44], + "act_num": 45, + "need_move": true, + "direction": "left" + }, + "right": { + "images": [0, 44], + "act_num": 45, + "need_move": true, + "direction": "right" + }, + "left_down": { + "images": [0, 44], + "act_num": 45, + "need_move": true, + "direction": "left_down", + "frame_move": 30, + "frame_refresh": 0.08 + }, + "left_walk": { + "images": [0, 44], + "act_num": 45, + "need_move": true, + "direction": "left" + }, + "right_walk": { + "images": [0, 44], + "act_num": 45, + "need_move": true, + "direction": "right" + }, + "pose1": { + "images": [1061, 1160] + }, + "pose2" : { + "images": [1061, 1160] + }, + "pose3" : { + "images": [2011, 2062] + } +} \ No newline at end of file diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/0.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/0.png" new file mode 100644 index 0000000000000000000000000000000000000000..d02f934c4c370ce9e7576d4aec4b82a23885a179 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/0.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1.png" new file mode 100644 index 0000000000000000000000000000000000000000..9c90da691793387a2346407b2892e2a1b9ef3d1b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/10.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/10.png" new file mode 100644 index 0000000000000000000000000000000000000000..11a93434eb802904e92cf3410d9333b4f066b819 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/10.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/100.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/100.png" new file mode 100644 index 0000000000000000000000000000000000000000..9bdf02684894e062af5a565d9baad17b6ca7ad83 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/100.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/101.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/101.png" new file mode 100644 index 0000000000000000000000000000000000000000..1705769b46a373947141a76af743b6a5bd2d8d40 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/101.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/102.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/102.png" new file mode 100644 index 0000000000000000000000000000000000000000..9a54314920234e816bad4a54281a6fd5991c9ca6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/102.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/103.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/103.png" new file mode 100644 index 0000000000000000000000000000000000000000..945aef2292f50f5ebf5879edfcc5e1a58a0caf60 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/103.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/104.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/104.png" new file mode 100644 index 0000000000000000000000000000000000000000..8d58f38ea0496a4ca5f0c3a025d3d724e2df0fd4 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/104.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/105.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/105.png" new file mode 100644 index 0000000000000000000000000000000000000000..ed4e61e86e61206bc7ae13b4038cd97037ed9825 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/105.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/106.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/106.png" new file mode 100644 index 0000000000000000000000000000000000000000..d5db2b4aeab61e3a8bc2663dc449ee7a0f86a8c8 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/106.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1061.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1061.png" new file mode 100644 index 0000000000000000000000000000000000000000..dcd1aed3e6b336673e8a87f2d28cdc5aac4fadd2 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1061.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1062.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1062.png" new file mode 100644 index 0000000000000000000000000000000000000000..a6a11a8b1b9f39c64e6af4f3f50c104369aa701c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1062.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1063.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1063.png" new file mode 100644 index 0000000000000000000000000000000000000000..f8568903f2271386f5f3e7f06dbcc11204c592b6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1063.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1064.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1064.png" new file mode 100644 index 0000000000000000000000000000000000000000..b2130948cfa6de4bdfb78841614535046f8c913f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1064.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1065.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1065.png" new file mode 100644 index 0000000000000000000000000000000000000000..021d9fc56cf5db935025a800e85f81e98426ee72 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1065.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1066.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1066.png" new file mode 100644 index 0000000000000000000000000000000000000000..87021187494cbed8744c19dcb272dff5c9b464f0 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1066.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1067.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1067.png" new file mode 100644 index 0000000000000000000000000000000000000000..3812ff4de4299516b8d1da8099920ad9c18348ac Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1067.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1068.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1068.png" new file mode 100644 index 0000000000000000000000000000000000000000..485ce81223922cbed538b7823db2745d6e243c98 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1068.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1069.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1069.png" new file mode 100644 index 0000000000000000000000000000000000000000..6c1227663759fe92c8e136a04ae7ad80e64a1e71 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1069.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/107.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/107.png" new file mode 100644 index 0000000000000000000000000000000000000000..05d6bb4c0135831d34cbfdc6353011b382fe3a51 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/107.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1070.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1070.png" new file mode 100644 index 0000000000000000000000000000000000000000..734495523d5511a86dcc4fa512c0282ed9684c0a Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1070.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1071.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1071.png" new file mode 100644 index 0000000000000000000000000000000000000000..6850befc5947fc3cea29ba62296334a9b475cb93 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1071.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1072.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1072.png" new file mode 100644 index 0000000000000000000000000000000000000000..852d399260a893d69a7a066e8458453b5054ee39 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1072.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1073.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1073.png" new file mode 100644 index 0000000000000000000000000000000000000000..0a428945b7970fe9f8dbec65cd0bb0cdff730ac6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1073.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1074.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1074.png" new file mode 100644 index 0000000000000000000000000000000000000000..615d81ebed0193c475d4d269f7379c69f0472abb Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1074.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1075.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1075.png" new file mode 100644 index 0000000000000000000000000000000000000000..1b28ef9e988236f3182c7da429ddfdf610d9a526 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1075.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1076.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1076.png" new file mode 100644 index 0000000000000000000000000000000000000000..c43d71e47ca52c59eefad9138ec2b8f8d432f810 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1076.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1077.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1077.png" new file mode 100644 index 0000000000000000000000000000000000000000..d809d10c7c4b1acbc5929be145b0742519b402a5 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1077.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1078.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1078.png" new file mode 100644 index 0000000000000000000000000000000000000000..ce7c444196dba505382209f7a615348e2c6ec747 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1078.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1079.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1079.png" new file mode 100644 index 0000000000000000000000000000000000000000..70db08b758344507a4ba9393cb4e80ad0875683f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1079.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/108.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/108.png" new file mode 100644 index 0000000000000000000000000000000000000000..769aca0a2124b431dd602d9c8759ca760db65ca5 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/108.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1080.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1080.png" new file mode 100644 index 0000000000000000000000000000000000000000..ecf606257f4a5a5a090f9d6e8b80eca675c778ba Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1080.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1081.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1081.png" new file mode 100644 index 0000000000000000000000000000000000000000..c9e3d5bedac2b3de9f3fccf2d071c475a1467834 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1081.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1082.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1082.png" new file mode 100644 index 0000000000000000000000000000000000000000..dcb53aa717487d674811ac48b0f02a9046b7dba7 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1082.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1083.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1083.png" new file mode 100644 index 0000000000000000000000000000000000000000..f3f0c1423c71ed7e0586ae884e03a96e68bcf25b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1083.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1084.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1084.png" new file mode 100644 index 0000000000000000000000000000000000000000..c01e9affe5372b93a39ee37dc4c69fd32577139f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1084.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1085.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1085.png" new file mode 100644 index 0000000000000000000000000000000000000000..1296cabd5381d12415033799aeecf926514ca943 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1085.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1086.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1086.png" new file mode 100644 index 0000000000000000000000000000000000000000..0d18e578ef51c798efdf0210d0d80e030f666d45 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1086.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1087.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1087.png" new file mode 100644 index 0000000000000000000000000000000000000000..4fdfc76e34ce1a48b599ccaeee387580a6081652 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1087.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1088.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1088.png" new file mode 100644 index 0000000000000000000000000000000000000000..f33fbe59bbf2af00e88239fbde69f8f2ff8a9b09 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1088.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1089.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1089.png" new file mode 100644 index 0000000000000000000000000000000000000000..f9f6000294daf3855f00d24428b23abb6b9a146f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1089.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/109.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/109.png" new file mode 100644 index 0000000000000000000000000000000000000000..3aaff6fa51e1e402558ae793936e66f71e385e18 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/109.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1090.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1090.png" new file mode 100644 index 0000000000000000000000000000000000000000..c1d51652858765bb8acaa978286223dd697c81e3 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1090.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1091.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1091.png" new file mode 100644 index 0000000000000000000000000000000000000000..236354e62ef0a01580bde27ba653268dad62c028 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1091.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1092.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1092.png" new file mode 100644 index 0000000000000000000000000000000000000000..a57faaca0ab3c3d2d8cf6fd3d55fa96303e9eff4 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1092.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1093.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1093.png" new file mode 100644 index 0000000000000000000000000000000000000000..659b5a2a5c18691759afbaa1071f30fdf1cba665 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1093.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1094.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1094.png" new file mode 100644 index 0000000000000000000000000000000000000000..5d78abaca52c2165faab64851ee4e8d38a415f2b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1094.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1095.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1095.png" new file mode 100644 index 0000000000000000000000000000000000000000..00a9b17a5f6ecf2b3d69081a2072459b7846929e Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1095.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1096.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1096.png" new file mode 100644 index 0000000000000000000000000000000000000000..e6b174a914105050879fec9e7eb1a546f9b34ddc Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1096.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1097.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1097.png" new file mode 100644 index 0000000000000000000000000000000000000000..db2b26eb55675ae281066bd387ecff4cb6552929 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1097.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1098.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1098.png" new file mode 100644 index 0000000000000000000000000000000000000000..277b4d7dd90a21b9bb13ca12a799ef8736a261f9 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1098.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1099.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1099.png" new file mode 100644 index 0000000000000000000000000000000000000000..3d19cfe02c83ac0741d71a3b1c0d46e12791b49f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1099.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/11.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/11.png" new file mode 100644 index 0000000000000000000000000000000000000000..81765e99ecbec1065305430b5e528afed6b35538 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/11.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/110.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/110.png" new file mode 100644 index 0000000000000000000000000000000000000000..f0970b664a75f3de65a0781d5097d4cb21a4301d Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/110.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1100.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1100.png" new file mode 100644 index 0000000000000000000000000000000000000000..9bdf02684894e062af5a565d9baad17b6ca7ad83 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1100.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1101.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1101.png" new file mode 100644 index 0000000000000000000000000000000000000000..1705769b46a373947141a76af743b6a5bd2d8d40 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1101.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1102.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1102.png" new file mode 100644 index 0000000000000000000000000000000000000000..9a54314920234e816bad4a54281a6fd5991c9ca6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1102.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1103.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1103.png" new file mode 100644 index 0000000000000000000000000000000000000000..945aef2292f50f5ebf5879edfcc5e1a58a0caf60 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1103.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1104.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1104.png" new file mode 100644 index 0000000000000000000000000000000000000000..8d58f38ea0496a4ca5f0c3a025d3d724e2df0fd4 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1104.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1105.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1105.png" new file mode 100644 index 0000000000000000000000000000000000000000..ed4e61e86e61206bc7ae13b4038cd97037ed9825 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1105.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1106.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1106.png" new file mode 100644 index 0000000000000000000000000000000000000000..d5db2b4aeab61e3a8bc2663dc449ee7a0f86a8c8 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1106.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1107.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1107.png" new file mode 100644 index 0000000000000000000000000000000000000000..05d6bb4c0135831d34cbfdc6353011b382fe3a51 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1107.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1108.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1108.png" new file mode 100644 index 0000000000000000000000000000000000000000..769aca0a2124b431dd602d9c8759ca760db65ca5 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1108.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1109.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1109.png" new file mode 100644 index 0000000000000000000000000000000000000000..3aaff6fa51e1e402558ae793936e66f71e385e18 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1109.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/111.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/111.png" new file mode 100644 index 0000000000000000000000000000000000000000..dc4f4643e4a1e4456a7c3c023cdf58c1e34213dc Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/111.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1110.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1110.png" new file mode 100644 index 0000000000000000000000000000000000000000..f0970b664a75f3de65a0781d5097d4cb21a4301d Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1110.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1111.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1111.png" new file mode 100644 index 0000000000000000000000000000000000000000..dc4f4643e4a1e4456a7c3c023cdf58c1e34213dc Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1111.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1112.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1112.png" new file mode 100644 index 0000000000000000000000000000000000000000..143725b89fbdc9d8336ca7a60780e5971e23e0bb Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1112.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1113.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1113.png" new file mode 100644 index 0000000000000000000000000000000000000000..4693e2fbf2b3c49cc8bcee9b9f85a8da04c580b5 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1113.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1114.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1114.png" new file mode 100644 index 0000000000000000000000000000000000000000..eebd2192f25e2a4cd5021f3695fec36b8bcfa9a9 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1114.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1115.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1115.png" new file mode 100644 index 0000000000000000000000000000000000000000..57760f7967d34865cd9d4fbac11be9b4afd2fac0 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1115.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1116.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1116.png" new file mode 100644 index 0000000000000000000000000000000000000000..0d2a6659d604069a098bca2e927cb7d6908b9263 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1116.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1117.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1117.png" new file mode 100644 index 0000000000000000000000000000000000000000..f225456b63bf8aa6205bf2f052b392ba2dfc0f2b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1117.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1118.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1118.png" new file mode 100644 index 0000000000000000000000000000000000000000..b8d32da311d0e6a2b35654f7297645c55faedf30 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1118.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1119.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1119.png" new file mode 100644 index 0000000000000000000000000000000000000000..56fad2a6c3a02352149fdf8a75694514e883a130 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1119.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/112.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/112.png" new file mode 100644 index 0000000000000000000000000000000000000000..143725b89fbdc9d8336ca7a60780e5971e23e0bb Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/112.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1120.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1120.png" new file mode 100644 index 0000000000000000000000000000000000000000..344c1ee1d963fe964394e068eb14068f37f77ea8 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1120.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1121.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1121.png" new file mode 100644 index 0000000000000000000000000000000000000000..09e17ee88afaf1233aeafd0b995d2f5a68b10d74 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1121.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1122.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1122.png" new file mode 100644 index 0000000000000000000000000000000000000000..49ddd33d4d96d5c7f0b4bed9024cf7065409b877 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1122.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1123.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1123.png" new file mode 100644 index 0000000000000000000000000000000000000000..82fc8931ac07bc72d862a5205171a80c7ccc4527 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1123.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1124.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1124.png" new file mode 100644 index 0000000000000000000000000000000000000000..ef75982a720cac74801cd2d4985bd447709772e0 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1124.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1125.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1125.png" new file mode 100644 index 0000000000000000000000000000000000000000..a9f56682dd1955f8d6dd2a3f35deef62e58d7bdf Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1125.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1126.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1126.png" new file mode 100644 index 0000000000000000000000000000000000000000..99a0c57b28d773848a59bc5ada420c1f35628694 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1126.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1127.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1127.png" new file mode 100644 index 0000000000000000000000000000000000000000..6d7f6294c2556fa07ff087b7c0d2906556e48e81 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1127.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1128.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1128.png" new file mode 100644 index 0000000000000000000000000000000000000000..20a695bc47c0a5989c0aacb97ccd2050adf6ad0a Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1128.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1129.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1129.png" new file mode 100644 index 0000000000000000000000000000000000000000..5f8403757b2f39ce49a7c091e51dff57889c5412 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1129.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/113.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/113.png" new file mode 100644 index 0000000000000000000000000000000000000000..4693e2fbf2b3c49cc8bcee9b9f85a8da04c580b5 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/113.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1130.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1130.png" new file mode 100644 index 0000000000000000000000000000000000000000..951611b6b3d2c91b8e238e673dba86f11dac6a50 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1130.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1131.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1131.png" new file mode 100644 index 0000000000000000000000000000000000000000..17427229f5789dd8006f270584094c0190308b45 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1131.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1132.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1132.png" new file mode 100644 index 0000000000000000000000000000000000000000..8718d160efc7eff78acc7c1687fc7f70b40be75b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1132.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1133.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1133.png" new file mode 100644 index 0000000000000000000000000000000000000000..80b8ebc42590aeef5ab59817a3c8f3a9a37f2138 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1133.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1134.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1134.png" new file mode 100644 index 0000000000000000000000000000000000000000..8ebaad088c70fef073ca25fd91f4141a6364550c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1134.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1135.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1135.png" new file mode 100644 index 0000000000000000000000000000000000000000..d19c134c355f5ca8611ed5d91121d3f07cf8b1f6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1135.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1136.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1136.png" new file mode 100644 index 0000000000000000000000000000000000000000..a2ca2cb0e22d6e7b5d3f3f6872877058ac8c912c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1136.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1137.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1137.png" new file mode 100644 index 0000000000000000000000000000000000000000..7afcd00831cabff2b523cd1827de575f2502d25e Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1137.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1138.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1138.png" new file mode 100644 index 0000000000000000000000000000000000000000..729730757d1f8885fa9fac3c2e585a98a19e4bbe Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1138.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1139.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1139.png" new file mode 100644 index 0000000000000000000000000000000000000000..8a76da46dd50499f4c13c55829559b443c5b71cd Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1139.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/114.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/114.png" new file mode 100644 index 0000000000000000000000000000000000000000..eebd2192f25e2a4cd5021f3695fec36b8bcfa9a9 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/114.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1140.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1140.png" new file mode 100644 index 0000000000000000000000000000000000000000..f06ed71ec48b909bdf806e61c1f2bfd7e97fb993 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1140.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1141.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1141.png" new file mode 100644 index 0000000000000000000000000000000000000000..58c519a292085f41134943cd14288e7f1cd683aa Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1141.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1142.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1142.png" new file mode 100644 index 0000000000000000000000000000000000000000..d44e3c3856aa1379a0ccb9730b69cc5c66330497 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1142.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1143.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1143.png" new file mode 100644 index 0000000000000000000000000000000000000000..4fbccaeaf46c728191c24d49776815d6dce9e077 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1143.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1144.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1144.png" new file mode 100644 index 0000000000000000000000000000000000000000..0aa140ff817a216a934ea6bc9e116e497a7e6af8 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1144.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1145.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1145.png" new file mode 100644 index 0000000000000000000000000000000000000000..0831b2210dc89237c1d7f7891daa150b1803e125 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1145.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1146.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1146.png" new file mode 100644 index 0000000000000000000000000000000000000000..d9809534b39ecd9ed3c55c3a90c6e562917cc19e Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1146.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1147.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1147.png" new file mode 100644 index 0000000000000000000000000000000000000000..13a79c5dbaf615a99deea8b9c899e68269ba11d4 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1147.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1148.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1148.png" new file mode 100644 index 0000000000000000000000000000000000000000..cbd9c3ad668407425f65108172387aa898970498 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1148.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1149.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1149.png" new file mode 100644 index 0000000000000000000000000000000000000000..7a31538fe5452b035b22dd05140ff71ef00a167b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1149.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/115.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/115.png" new file mode 100644 index 0000000000000000000000000000000000000000..57760f7967d34865cd9d4fbac11be9b4afd2fac0 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/115.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1150.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1150.png" new file mode 100644 index 0000000000000000000000000000000000000000..a2a0b095a52b6fce41d7bbb7999f5d524d4c228b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1150.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1151.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1151.png" new file mode 100644 index 0000000000000000000000000000000000000000..f15f9a291884aabb64b1075e3eb04cc061d931e1 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1151.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1152.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1152.png" new file mode 100644 index 0000000000000000000000000000000000000000..a52a57119260e955ffebdb6526a6306501faa02c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1152.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1153.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1153.png" new file mode 100644 index 0000000000000000000000000000000000000000..f35bfeb73cb50737fdd20c340ccabd83d001243b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1153.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1154.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1154.png" new file mode 100644 index 0000000000000000000000000000000000000000..d74926bbec6a4443b6e07173b1e8936d7f56c7a5 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1154.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1155.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1155.png" new file mode 100644 index 0000000000000000000000000000000000000000..59dac15ac3225966c225a305252f247fc810983c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1155.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1156.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1156.png" new file mode 100644 index 0000000000000000000000000000000000000000..de7a61fd9bc80b848eb7ec3d6461a977c3d0a3b0 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1156.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1157.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1157.png" new file mode 100644 index 0000000000000000000000000000000000000000..4aaf5d6d5664d65d200c2931e1cf6a7831d8de66 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1157.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1158.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1158.png" new file mode 100644 index 0000000000000000000000000000000000000000..8ab3f3f998dad54ae1c3806d35baf8ad37a98021 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1158.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1159.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1159.png" new file mode 100644 index 0000000000000000000000000000000000000000..834ffa2859fd365896109c7ee6ff61bdc32213da Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1159.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/116.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/116.png" new file mode 100644 index 0000000000000000000000000000000000000000..0d2a6659d604069a098bca2e927cb7d6908b9263 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/116.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1160.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1160.png" new file mode 100644 index 0000000000000000000000000000000000000000..6ac7465a00dfec299da0c3602dbad07f07bc8fd0 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1160.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1161.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1161.png" new file mode 100644 index 0000000000000000000000000000000000000000..9093c07448fc233be93c833f570a280cc92aa4e6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1161.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/1162.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1162.png" new file mode 100644 index 0000000000000000000000000000000000000000..5578ebc20571ac6d8f8f829e365160d9811cb7bf Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/1162.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/117.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/117.png" new file mode 100644 index 0000000000000000000000000000000000000000..f225456b63bf8aa6205bf2f052b392ba2dfc0f2b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/117.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/118.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/118.png" new file mode 100644 index 0000000000000000000000000000000000000000..b8d32da311d0e6a2b35654f7297645c55faedf30 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/118.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/119.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/119.png" new file mode 100644 index 0000000000000000000000000000000000000000..56fad2a6c3a02352149fdf8a75694514e883a130 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/119.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/12.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/12.png" new file mode 100644 index 0000000000000000000000000000000000000000..2f3506ba18b3d249e2579399261b4c680431d4de Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/12.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/120.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/120.png" new file mode 100644 index 0000000000000000000000000000000000000000..344c1ee1d963fe964394e068eb14068f37f77ea8 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/120.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/121.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/121.png" new file mode 100644 index 0000000000000000000000000000000000000000..09e17ee88afaf1233aeafd0b995d2f5a68b10d74 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/121.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/122.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/122.png" new file mode 100644 index 0000000000000000000000000000000000000000..49ddd33d4d96d5c7f0b4bed9024cf7065409b877 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/122.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/123.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/123.png" new file mode 100644 index 0000000000000000000000000000000000000000..82fc8931ac07bc72d862a5205171a80c7ccc4527 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/123.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/124.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/124.png" new file mode 100644 index 0000000000000000000000000000000000000000..ef75982a720cac74801cd2d4985bd447709772e0 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/124.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/125.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/125.png" new file mode 100644 index 0000000000000000000000000000000000000000..a9f56682dd1955f8d6dd2a3f35deef62e58d7bdf Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/125.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/126.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/126.png" new file mode 100644 index 0000000000000000000000000000000000000000..99a0c57b28d773848a59bc5ada420c1f35628694 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/126.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/127.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/127.png" new file mode 100644 index 0000000000000000000000000000000000000000..6d7f6294c2556fa07ff087b7c0d2906556e48e81 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/127.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/128.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/128.png" new file mode 100644 index 0000000000000000000000000000000000000000..20a695bc47c0a5989c0aacb97ccd2050adf6ad0a Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/128.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/129.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/129.png" new file mode 100644 index 0000000000000000000000000000000000000000..5f8403757b2f39ce49a7c091e51dff57889c5412 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/129.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/13.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/13.png" new file mode 100644 index 0000000000000000000000000000000000000000..55e9a8314d991c7c5c51d0e1a0689ff26c7f848c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/13.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/130.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/130.png" new file mode 100644 index 0000000000000000000000000000000000000000..951611b6b3d2c91b8e238e673dba86f11dac6a50 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/130.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/131.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/131.png" new file mode 100644 index 0000000000000000000000000000000000000000..17427229f5789dd8006f270584094c0190308b45 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/131.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/132.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/132.png" new file mode 100644 index 0000000000000000000000000000000000000000..8718d160efc7eff78acc7c1687fc7f70b40be75b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/132.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/133.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/133.png" new file mode 100644 index 0000000000000000000000000000000000000000..80b8ebc42590aeef5ab59817a3c8f3a9a37f2138 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/133.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/134.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/134.png" new file mode 100644 index 0000000000000000000000000000000000000000..8ebaad088c70fef073ca25fd91f4141a6364550c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/134.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/135.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/135.png" new file mode 100644 index 0000000000000000000000000000000000000000..d19c134c355f5ca8611ed5d91121d3f07cf8b1f6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/135.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/136.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/136.png" new file mode 100644 index 0000000000000000000000000000000000000000..a2ca2cb0e22d6e7b5d3f3f6872877058ac8c912c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/136.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/137.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/137.png" new file mode 100644 index 0000000000000000000000000000000000000000..7afcd00831cabff2b523cd1827de575f2502d25e Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/137.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/138.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/138.png" new file mode 100644 index 0000000000000000000000000000000000000000..729730757d1f8885fa9fac3c2e585a98a19e4bbe Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/138.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/139.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/139.png" new file mode 100644 index 0000000000000000000000000000000000000000..8a76da46dd50499f4c13c55829559b443c5b71cd Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/139.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/14.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/14.png" new file mode 100644 index 0000000000000000000000000000000000000000..0ea0f3436c923b3b06a02cba5efabfb5f9a5c8c3 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/14.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/140.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/140.png" new file mode 100644 index 0000000000000000000000000000000000000000..f06ed71ec48b909bdf806e61c1f2bfd7e97fb993 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/140.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/141.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/141.png" new file mode 100644 index 0000000000000000000000000000000000000000..58c519a292085f41134943cd14288e7f1cd683aa Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/141.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/142.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/142.png" new file mode 100644 index 0000000000000000000000000000000000000000..d44e3c3856aa1379a0ccb9730b69cc5c66330497 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/142.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/143.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/143.png" new file mode 100644 index 0000000000000000000000000000000000000000..4fbccaeaf46c728191c24d49776815d6dce9e077 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/143.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/144.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/144.png" new file mode 100644 index 0000000000000000000000000000000000000000..0aa140ff817a216a934ea6bc9e116e497a7e6af8 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/144.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/145.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/145.png" new file mode 100644 index 0000000000000000000000000000000000000000..0831b2210dc89237c1d7f7891daa150b1803e125 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/145.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/146.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/146.png" new file mode 100644 index 0000000000000000000000000000000000000000..d9809534b39ecd9ed3c55c3a90c6e562917cc19e Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/146.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/147.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/147.png" new file mode 100644 index 0000000000000000000000000000000000000000..13a79c5dbaf615a99deea8b9c899e68269ba11d4 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/147.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/148.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/148.png" new file mode 100644 index 0000000000000000000000000000000000000000..cbd9c3ad668407425f65108172387aa898970498 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/148.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/149.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/149.png" new file mode 100644 index 0000000000000000000000000000000000000000..7a31538fe5452b035b22dd05140ff71ef00a167b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/149.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/15.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/15.png" new file mode 100644 index 0000000000000000000000000000000000000000..ed6dcbfb40abb18c4af93060ea7d896aaf08cdac Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/15.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/150.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/150.png" new file mode 100644 index 0000000000000000000000000000000000000000..a2a0b095a52b6fce41d7bbb7999f5d524d4c228b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/150.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/151.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/151.png" new file mode 100644 index 0000000000000000000000000000000000000000..f15f9a291884aabb64b1075e3eb04cc061d931e1 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/151.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/152.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/152.png" new file mode 100644 index 0000000000000000000000000000000000000000..a52a57119260e955ffebdb6526a6306501faa02c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/152.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/153.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/153.png" new file mode 100644 index 0000000000000000000000000000000000000000..f35bfeb73cb50737fdd20c340ccabd83d001243b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/153.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/154.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/154.png" new file mode 100644 index 0000000000000000000000000000000000000000..d74926bbec6a4443b6e07173b1e8936d7f56c7a5 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/154.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/155.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/155.png" new file mode 100644 index 0000000000000000000000000000000000000000..59dac15ac3225966c225a305252f247fc810983c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/155.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/156.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/156.png" new file mode 100644 index 0000000000000000000000000000000000000000..de7a61fd9bc80b848eb7ec3d6461a977c3d0a3b0 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/156.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/157.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/157.png" new file mode 100644 index 0000000000000000000000000000000000000000..4aaf5d6d5664d65d200c2931e1cf6a7831d8de66 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/157.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/158.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/158.png" new file mode 100644 index 0000000000000000000000000000000000000000..8ab3f3f998dad54ae1c3806d35baf8ad37a98021 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/158.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/159.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/159.png" new file mode 100644 index 0000000000000000000000000000000000000000..834ffa2859fd365896109c7ee6ff61bdc32213da Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/159.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/16.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/16.png" new file mode 100644 index 0000000000000000000000000000000000000000..dcd127f749495e5f1b6cbaacabf18a120a65cbad Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/16.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/160.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/160.png" new file mode 100644 index 0000000000000000000000000000000000000000..6ac7465a00dfec299da0c3602dbad07f07bc8fd0 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/160.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/161.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/161.png" new file mode 100644 index 0000000000000000000000000000000000000000..9093c07448fc233be93c833f570a280cc92aa4e6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/161.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/162.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/162.png" new file mode 100644 index 0000000000000000000000000000000000000000..5578ebc20571ac6d8f8f829e365160d9811cb7bf Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/162.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/163.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/163.png" new file mode 100644 index 0000000000000000000000000000000000000000..944961bf1e2d53d7d57939395b8735d1657849f3 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/163.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/164.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/164.png" new file mode 100644 index 0000000000000000000000000000000000000000..caf55e0634d12ae14ef32899004f2e9a26b749b6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/164.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/165.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/165.png" new file mode 100644 index 0000000000000000000000000000000000000000..525966f5f96f44364b51669273b7cd4565950f4b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/165.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/166.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/166.png" new file mode 100644 index 0000000000000000000000000000000000000000..fa2b18f5503fedc1a9ba2c9f3d2c5fa0140b44fc Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/166.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/167.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/167.png" new file mode 100644 index 0000000000000000000000000000000000000000..738dff4c33b569283e5febfbdb77b3c0bd35bb09 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/167.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/168.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/168.png" new file mode 100644 index 0000000000000000000000000000000000000000..bcf9ab3fdf89aab9017a9f185f8d128a1e455576 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/168.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/169.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/169.png" new file mode 100644 index 0000000000000000000000000000000000000000..2e4cf695d13d60a712fe5cfd534e94d46213c923 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/169.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/17.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/17.png" new file mode 100644 index 0000000000000000000000000000000000000000..65e9ca53e76bb7d1f8cc27c13c0c48f753c60072 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/17.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/170.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/170.png" new file mode 100644 index 0000000000000000000000000000000000000000..85a18b69163f91e02b644f8be2d0649e075a0392 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/170.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/171.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/171.png" new file mode 100644 index 0000000000000000000000000000000000000000..6ff778d2943c55114d7997bb5f40dbdfc13b5634 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/171.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/172.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/172.png" new file mode 100644 index 0000000000000000000000000000000000000000..db8ea68024ed5619d31db0e8ca10925dcfaf9a6d Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/172.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/173.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/173.png" new file mode 100644 index 0000000000000000000000000000000000000000..a90df56ea85a2e2c7a1d46477ecda0283d6644a5 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/173.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/174.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/174.png" new file mode 100644 index 0000000000000000000000000000000000000000..251fe041cba3755b976c10b742bf242ef78e0bd1 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/174.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/175.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/175.png" new file mode 100644 index 0000000000000000000000000000000000000000..23915878f7c2eebf2c7f17d26823b166510f3e92 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/175.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/176.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/176.png" new file mode 100644 index 0000000000000000000000000000000000000000..ecde22a411f2cadf4030a1dedc34d3be3cc15fe1 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/176.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/177.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/177.png" new file mode 100644 index 0000000000000000000000000000000000000000..36ae9ad6fc5c1554f7678395acc4ea77a1dcc78a Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/177.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/178.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/178.png" new file mode 100644 index 0000000000000000000000000000000000000000..0ba1d5261b84ab998952c16543a7351d2f55e798 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/178.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/179.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/179.png" new file mode 100644 index 0000000000000000000000000000000000000000..8800d5f9229f622a9d8df513ea990e2d22d5243e Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/179.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/18.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/18.png" new file mode 100644 index 0000000000000000000000000000000000000000..942480a16629c40093128af10a6a4929fd91c802 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/18.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/180.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/180.png" new file mode 100644 index 0000000000000000000000000000000000000000..6d754298d484c7639bc08ddcb1bedeacdff29943 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/180.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/181.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/181.png" new file mode 100644 index 0000000000000000000000000000000000000000..da5e74fa0004f5f3ea19a5547ed02a4be1428c02 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/181.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/182.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/182.png" new file mode 100644 index 0000000000000000000000000000000000000000..52a7c0102d157bd4c4765f6d952587e1796221f2 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/182.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/183.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/183.png" new file mode 100644 index 0000000000000000000000000000000000000000..38bad7056252cafe3fa9b325f7d859849a23692f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/183.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/184.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/184.png" new file mode 100644 index 0000000000000000000000000000000000000000..42c9f42fc35d275f19852a1a3b2c308d45b203ab Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/184.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/185.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/185.png" new file mode 100644 index 0000000000000000000000000000000000000000..56ec076a54480e4a3b640d0566bc83b981e50aae Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/185.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/186.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/186.png" new file mode 100644 index 0000000000000000000000000000000000000000..f1cb01f3cf5b4fae85710aca2d9cb44dcf1a5e69 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/186.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/187.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/187.png" new file mode 100644 index 0000000000000000000000000000000000000000..efd850887ff1857b59d8aeb04efd5b279fd032a5 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/187.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/188.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/188.png" new file mode 100644 index 0000000000000000000000000000000000000000..ed3fe53e52ec3237ed4c73489509d968cfc54074 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/188.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/189.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/189.png" new file mode 100644 index 0000000000000000000000000000000000000000..4b08bf3d3f7c2472f7cce4781036424f2e0f6ccd Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/189.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/19.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/19.png" new file mode 100644 index 0000000000000000000000000000000000000000..e9bf59ae7c99bdc7634f468c7a5091c725f4647b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/19.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/190.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/190.png" new file mode 100644 index 0000000000000000000000000000000000000000..add5f473bb4b8368ee1dd75af61c9266c1a9f94c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/190.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/191.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/191.png" new file mode 100644 index 0000000000000000000000000000000000000000..5d12880aa7311c66e15114cd33fd7c62fbc84188 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/191.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/192.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/192.png" new file mode 100644 index 0000000000000000000000000000000000000000..c6fda1bc1a8c6f14e2c4fbb68ba966a2092721ae Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/192.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/193.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/193.png" new file mode 100644 index 0000000000000000000000000000000000000000..268503d5b884b814f38d0871db91f90a51c1056f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/193.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/194.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/194.png" new file mode 100644 index 0000000000000000000000000000000000000000..1004939da73acd475f01eab16a9ae94abd0a23b2 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/194.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/195.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/195.png" new file mode 100644 index 0000000000000000000000000000000000000000..44c18b5db16f6099eb05476e2aa6d224ba01e112 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/195.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/196.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/196.png" new file mode 100644 index 0000000000000000000000000000000000000000..ca00dbffd55833caf055dbc606f4d415abd34d49 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/196.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/197.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/197.png" new file mode 100644 index 0000000000000000000000000000000000000000..6c704627760d163c0bf7da1d1d55bde6d552ed3a Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/197.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/198.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/198.png" new file mode 100644 index 0000000000000000000000000000000000000000..8c9a7609c24a03e26ba2e592136b380fd316242d Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/198.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/199.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/199.png" new file mode 100644 index 0000000000000000000000000000000000000000..a2ba5357aae18ad4aed5be7b87e8b155e097bdac Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/199.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2.png" new file mode 100644 index 0000000000000000000000000000000000000000..7fe4b91c11aaefa51f1b2c9b3da1f7d0320484d0 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/20.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/20.png" new file mode 100644 index 0000000000000000000000000000000000000000..e8c4a53e110364f8ac97c2c62baeaf687995edf9 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/20.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2011.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2011.png" new file mode 100644 index 0000000000000000000000000000000000000000..81765e99ecbec1065305430b5e528afed6b35538 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2011.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2012.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2012.png" new file mode 100644 index 0000000000000000000000000000000000000000..2f3506ba18b3d249e2579399261b4c680431d4de Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2012.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2013.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2013.png" new file mode 100644 index 0000000000000000000000000000000000000000..55e9a8314d991c7c5c51d0e1a0689ff26c7f848c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2013.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2014.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2014.png" new file mode 100644 index 0000000000000000000000000000000000000000..0ea0f3436c923b3b06a02cba5efabfb5f9a5c8c3 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2014.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2015.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2015.png" new file mode 100644 index 0000000000000000000000000000000000000000..ed6dcbfb40abb18c4af93060ea7d896aaf08cdac Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2015.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2016.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2016.png" new file mode 100644 index 0000000000000000000000000000000000000000..dcd127f749495e5f1b6cbaacabf18a120a65cbad Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2016.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2017.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2017.png" new file mode 100644 index 0000000000000000000000000000000000000000..65e9ca53e76bb7d1f8cc27c13c0c48f753c60072 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2017.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2018.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2018.png" new file mode 100644 index 0000000000000000000000000000000000000000..942480a16629c40093128af10a6a4929fd91c802 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2018.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2019.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2019.png" new file mode 100644 index 0000000000000000000000000000000000000000..e9bf59ae7c99bdc7634f468c7a5091c725f4647b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2019.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2020.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2020.png" new file mode 100644 index 0000000000000000000000000000000000000000..e8c4a53e110364f8ac97c2c62baeaf687995edf9 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2020.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2021.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2021.png" new file mode 100644 index 0000000000000000000000000000000000000000..787a718c83c61b2a0d3298df4892d15dfc94b36f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2021.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2022.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2022.png" new file mode 100644 index 0000000000000000000000000000000000000000..e482d9d6e4a5ae52492fa50aff673f68c2fec5ee Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2022.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2023.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2023.png" new file mode 100644 index 0000000000000000000000000000000000000000..64154f498aebd389f211ada9df87f3a153c31856 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2023.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2024.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2024.png" new file mode 100644 index 0000000000000000000000000000000000000000..3f81db0601767a265935e27db7926f4d09c8435a Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2024.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2025.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2025.png" new file mode 100644 index 0000000000000000000000000000000000000000..cc73789be3c014119991cc7ad974aa6a2ff6e4b3 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2025.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2026.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2026.png" new file mode 100644 index 0000000000000000000000000000000000000000..9a000b043e87aba563e23e09e1cbb6a881a0bb96 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2026.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2027.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2027.png" new file mode 100644 index 0000000000000000000000000000000000000000..13c27bebfadc2c84c29f7039061b1a91054b7f93 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2027.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2028.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2028.png" new file mode 100644 index 0000000000000000000000000000000000000000..9ca6ed85d4d9ec8eaf5c01cd729639ffa9d4a6de Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2028.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2029.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2029.png" new file mode 100644 index 0000000000000000000000000000000000000000..ecd209681793da75359480f0f9af3b256921c481 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2029.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2030.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2030.png" new file mode 100644 index 0000000000000000000000000000000000000000..866522788fb982a393d850cfef2b7fadf5bc2fff Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2030.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2031.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2031.png" new file mode 100644 index 0000000000000000000000000000000000000000..8c934185774fa75b15b144f8b31d2853f519f160 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2031.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2032.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2032.png" new file mode 100644 index 0000000000000000000000000000000000000000..42f306ffd376edb7e55fd7c3c75b75e7f62b9811 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2032.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2033.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2033.png" new file mode 100644 index 0000000000000000000000000000000000000000..9ea223f85ac43ffc36628f0a81ca76adffe0ab52 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2033.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2034.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2034.png" new file mode 100644 index 0000000000000000000000000000000000000000..2ccd7db268edafdb88b0c2642b018d023040e98b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2034.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2035.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2035.png" new file mode 100644 index 0000000000000000000000000000000000000000..03ce792e3b24fd551073ac96d859bb5807c81b89 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2035.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2036.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2036.png" new file mode 100644 index 0000000000000000000000000000000000000000..ef423b3cc6557033e55546179505fa80337a0a3e Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2036.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2037.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2037.png" new file mode 100644 index 0000000000000000000000000000000000000000..9d883cbb19e0c3c72ffc86f9f650f020f58cc564 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2037.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2038.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2038.png" new file mode 100644 index 0000000000000000000000000000000000000000..e143528127c173b9b1801b0b60cc7f5974799a01 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2038.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2039.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2039.png" new file mode 100644 index 0000000000000000000000000000000000000000..2bf1dda67306296c7190b26deacaa82b0dbbe173 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2039.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2040.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2040.png" new file mode 100644 index 0000000000000000000000000000000000000000..ca6a1d6750f8f3e9c59219cec7a1b50f35149894 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2040.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2041.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2041.png" new file mode 100644 index 0000000000000000000000000000000000000000..e714072668d7de6de68f1ad410f52ef1a344e4ab Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2041.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2042.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2042.png" new file mode 100644 index 0000000000000000000000000000000000000000..5a9a61d46f4c5ed38712bbdd1a6b181b9658bb7a Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2042.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2043.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2043.png" new file mode 100644 index 0000000000000000000000000000000000000000..177737500320fe75230608b60060da5003673c7f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2043.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2044.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2044.png" new file mode 100644 index 0000000000000000000000000000000000000000..d622e2b431a3f4a4fc5e882ec3b8731052d85cb9 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2044.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2045.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2045.png" new file mode 100644 index 0000000000000000000000000000000000000000..4cdca8393480004dc91245b0b4a55b57c5b56e61 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2045.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2046.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2046.png" new file mode 100644 index 0000000000000000000000000000000000000000..2748940b74b9251115b6ba6f1aa7f921167dff2c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2046.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2047.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2047.png" new file mode 100644 index 0000000000000000000000000000000000000000..1877281256bdc5104cf36576ca72f1cb7ef1d1a2 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2047.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2048.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2048.png" new file mode 100644 index 0000000000000000000000000000000000000000..b979c7d6e01b14f49430cd14b6a6e98530433ec9 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2048.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2049.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2049.png" new file mode 100644 index 0000000000000000000000000000000000000000..e8e70f222a9b2f328bbd681830b14b0d9f5b7f96 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2049.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2050.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2050.png" new file mode 100644 index 0000000000000000000000000000000000000000..606010af5ccc10b310a3bc24909510124854443a Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2050.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2051.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2051.png" new file mode 100644 index 0000000000000000000000000000000000000000..d45b6adf09c50ee21dc02810c0c8ee4dbc8e7ed1 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2051.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2052.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2052.png" new file mode 100644 index 0000000000000000000000000000000000000000..b06349df8bc03759c97f3f6bb9a9f35b4d397578 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2052.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2053.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2053.png" new file mode 100644 index 0000000000000000000000000000000000000000..ef45c42aae017c22fa951a1f5a60b2b5c27595aa Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2053.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2054.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2054.png" new file mode 100644 index 0000000000000000000000000000000000000000..b1fb2c0c72699973be72765eee84c5eed838c18f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2054.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2055.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2055.png" new file mode 100644 index 0000000000000000000000000000000000000000..1b5e6bb8e014ea33121f07356f562ba7fdd027f6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2055.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2056.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2056.png" new file mode 100644 index 0000000000000000000000000000000000000000..a0b75327a9f0c3ed7b4a1c21fc8a70f60dbcd2e6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2056.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2057.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2057.png" new file mode 100644 index 0000000000000000000000000000000000000000..d767a02547ecf0eccebfc3d0b792412ba419db0f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2057.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2058.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2058.png" new file mode 100644 index 0000000000000000000000000000000000000000..39120ed102c693cf2d231a5d2224a80b9a83e5b1 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2058.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2059.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2059.png" new file mode 100644 index 0000000000000000000000000000000000000000..b53887d3a0dd76e972c7b4115b673feb109e0af2 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2059.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2060.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2060.png" new file mode 100644 index 0000000000000000000000000000000000000000..4dba198ca76f8d431efb1389bc56fa7f24d808c4 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2060.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2061.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2061.png" new file mode 100644 index 0000000000000000000000000000000000000000..dcd1aed3e6b336673e8a87f2d28cdc5aac4fadd2 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2061.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/2062.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2062.png" new file mode 100644 index 0000000000000000000000000000000000000000..a6a11a8b1b9f39c64e6af4f3f50c104369aa701c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/2062.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/21.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/21.png" new file mode 100644 index 0000000000000000000000000000000000000000..787a718c83c61b2a0d3298df4892d15dfc94b36f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/21.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/22.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/22.png" new file mode 100644 index 0000000000000000000000000000000000000000..e482d9d6e4a5ae52492fa50aff673f68c2fec5ee Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/22.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/23.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/23.png" new file mode 100644 index 0000000000000000000000000000000000000000..64154f498aebd389f211ada9df87f3a153c31856 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/23.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/24.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/24.png" new file mode 100644 index 0000000000000000000000000000000000000000..3f81db0601767a265935e27db7926f4d09c8435a Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/24.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/25.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/25.png" new file mode 100644 index 0000000000000000000000000000000000000000..cc73789be3c014119991cc7ad974aa6a2ff6e4b3 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/25.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/26.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/26.png" new file mode 100644 index 0000000000000000000000000000000000000000..9a000b043e87aba563e23e09e1cbb6a881a0bb96 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/26.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/27.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/27.png" new file mode 100644 index 0000000000000000000000000000000000000000..13c27bebfadc2c84c29f7039061b1a91054b7f93 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/27.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/28.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/28.png" new file mode 100644 index 0000000000000000000000000000000000000000..9ca6ed85d4d9ec8eaf5c01cd729639ffa9d4a6de Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/28.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/29.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/29.png" new file mode 100644 index 0000000000000000000000000000000000000000..ecd209681793da75359480f0f9af3b256921c481 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/29.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/3.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/3.png" new file mode 100644 index 0000000000000000000000000000000000000000..d5ba08350e0c74535a02e817d28dc711b2824db4 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/3.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/30.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/30.png" new file mode 100644 index 0000000000000000000000000000000000000000..866522788fb982a393d850cfef2b7fadf5bc2fff Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/30.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/31.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/31.png" new file mode 100644 index 0000000000000000000000000000000000000000..8c934185774fa75b15b144f8b31d2853f519f160 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/31.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/32.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/32.png" new file mode 100644 index 0000000000000000000000000000000000000000..42f306ffd376edb7e55fd7c3c75b75e7f62b9811 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/32.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/33.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/33.png" new file mode 100644 index 0000000000000000000000000000000000000000..9ea223f85ac43ffc36628f0a81ca76adffe0ab52 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/33.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/34.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/34.png" new file mode 100644 index 0000000000000000000000000000000000000000..2ccd7db268edafdb88b0c2642b018d023040e98b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/34.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/35.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/35.png" new file mode 100644 index 0000000000000000000000000000000000000000..03ce792e3b24fd551073ac96d859bb5807c81b89 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/35.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/36.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/36.png" new file mode 100644 index 0000000000000000000000000000000000000000..ef423b3cc6557033e55546179505fa80337a0a3e Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/36.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/37.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/37.png" new file mode 100644 index 0000000000000000000000000000000000000000..9d883cbb19e0c3c72ffc86f9f650f020f58cc564 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/37.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/38.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/38.png" new file mode 100644 index 0000000000000000000000000000000000000000..e143528127c173b9b1801b0b60cc7f5974799a01 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/38.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/39.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/39.png" new file mode 100644 index 0000000000000000000000000000000000000000..2bf1dda67306296c7190b26deacaa82b0dbbe173 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/39.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/4.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/4.png" new file mode 100644 index 0000000000000000000000000000000000000000..b8eca75a259c8d03ad91fcbf6b00dbbca55efabf Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/4.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/40.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/40.png" new file mode 100644 index 0000000000000000000000000000000000000000..ca6a1d6750f8f3e9c59219cec7a1b50f35149894 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/40.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/41.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/41.png" new file mode 100644 index 0000000000000000000000000000000000000000..e714072668d7de6de68f1ad410f52ef1a344e4ab Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/41.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/42.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/42.png" new file mode 100644 index 0000000000000000000000000000000000000000..5a9a61d46f4c5ed38712bbdd1a6b181b9658bb7a Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/42.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/43.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/43.png" new file mode 100644 index 0000000000000000000000000000000000000000..177737500320fe75230608b60060da5003673c7f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/43.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/44.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/44.png" new file mode 100644 index 0000000000000000000000000000000000000000..d622e2b431a3f4a4fc5e882ec3b8731052d85cb9 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/44.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/45.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/45.png" new file mode 100644 index 0000000000000000000000000000000000000000..4cdca8393480004dc91245b0b4a55b57c5b56e61 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/45.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/46.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/46.png" new file mode 100644 index 0000000000000000000000000000000000000000..2748940b74b9251115b6ba6f1aa7f921167dff2c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/46.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/47.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/47.png" new file mode 100644 index 0000000000000000000000000000000000000000..1877281256bdc5104cf36576ca72f1cb7ef1d1a2 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/47.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/48.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/48.png" new file mode 100644 index 0000000000000000000000000000000000000000..b979c7d6e01b14f49430cd14b6a6e98530433ec9 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/48.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/49.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/49.png" new file mode 100644 index 0000000000000000000000000000000000000000..e8e70f222a9b2f328bbd681830b14b0d9f5b7f96 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/49.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/5.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/5.png" new file mode 100644 index 0000000000000000000000000000000000000000..8ad4301450785002edca9915f5459ac68dc912bf Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/5.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/50.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/50.png" new file mode 100644 index 0000000000000000000000000000000000000000..606010af5ccc10b310a3bc24909510124854443a Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/50.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/51.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/51.png" new file mode 100644 index 0000000000000000000000000000000000000000..d45b6adf09c50ee21dc02810c0c8ee4dbc8e7ed1 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/51.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/52.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/52.png" new file mode 100644 index 0000000000000000000000000000000000000000..b06349df8bc03759c97f3f6bb9a9f35b4d397578 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/52.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/53.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/53.png" new file mode 100644 index 0000000000000000000000000000000000000000..ef45c42aae017c22fa951a1f5a60b2b5c27595aa Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/53.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/54.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/54.png" new file mode 100644 index 0000000000000000000000000000000000000000..b1fb2c0c72699973be72765eee84c5eed838c18f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/54.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/55.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/55.png" new file mode 100644 index 0000000000000000000000000000000000000000..1b5e6bb8e014ea33121f07356f562ba7fdd027f6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/55.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/56.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/56.png" new file mode 100644 index 0000000000000000000000000000000000000000..a0b75327a9f0c3ed7b4a1c21fc8a70f60dbcd2e6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/56.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/57.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/57.png" new file mode 100644 index 0000000000000000000000000000000000000000..d767a02547ecf0eccebfc3d0b792412ba419db0f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/57.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/58.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/58.png" new file mode 100644 index 0000000000000000000000000000000000000000..39120ed102c693cf2d231a5d2224a80b9a83e5b1 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/58.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/59.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/59.png" new file mode 100644 index 0000000000000000000000000000000000000000..b53887d3a0dd76e972c7b4115b673feb109e0af2 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/59.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/6.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/6.png" new file mode 100644 index 0000000000000000000000000000000000000000..511bdb33f7b3646048b74621d204668638b03e3d Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/6.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/60.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/60.png" new file mode 100644 index 0000000000000000000000000000000000000000..4dba198ca76f8d431efb1389bc56fa7f24d808c4 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/60.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/61.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/61.png" new file mode 100644 index 0000000000000000000000000000000000000000..dcd1aed3e6b336673e8a87f2d28cdc5aac4fadd2 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/61.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/62.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/62.png" new file mode 100644 index 0000000000000000000000000000000000000000..a6a11a8b1b9f39c64e6af4f3f50c104369aa701c Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/62.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/63.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/63.png" new file mode 100644 index 0000000000000000000000000000000000000000..f8568903f2271386f5f3e7f06dbcc11204c592b6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/63.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/64.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/64.png" new file mode 100644 index 0000000000000000000000000000000000000000..b2130948cfa6de4bdfb78841614535046f8c913f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/64.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/65.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/65.png" new file mode 100644 index 0000000000000000000000000000000000000000..021d9fc56cf5db935025a800e85f81e98426ee72 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/65.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/66.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/66.png" new file mode 100644 index 0000000000000000000000000000000000000000..87021187494cbed8744c19dcb272dff5c9b464f0 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/66.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/67.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/67.png" new file mode 100644 index 0000000000000000000000000000000000000000..3812ff4de4299516b8d1da8099920ad9c18348ac Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/67.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/68.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/68.png" new file mode 100644 index 0000000000000000000000000000000000000000..485ce81223922cbed538b7823db2745d6e243c98 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/68.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/69.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/69.png" new file mode 100644 index 0000000000000000000000000000000000000000..6c1227663759fe92c8e136a04ae7ad80e64a1e71 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/69.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/7.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/7.png" new file mode 100644 index 0000000000000000000000000000000000000000..9c2838ccdf1e7ca888f8871f567e396289c42f84 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/7.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/70.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/70.png" new file mode 100644 index 0000000000000000000000000000000000000000..734495523d5511a86dcc4fa512c0282ed9684c0a Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/70.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/71.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/71.png" new file mode 100644 index 0000000000000000000000000000000000000000..6850befc5947fc3cea29ba62296334a9b475cb93 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/71.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/72.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/72.png" new file mode 100644 index 0000000000000000000000000000000000000000..852d399260a893d69a7a066e8458453b5054ee39 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/72.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/73.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/73.png" new file mode 100644 index 0000000000000000000000000000000000000000..0a428945b7970fe9f8dbec65cd0bb0cdff730ac6 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/73.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/74.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/74.png" new file mode 100644 index 0000000000000000000000000000000000000000..615d81ebed0193c475d4d269f7379c69f0472abb Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/74.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/75.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/75.png" new file mode 100644 index 0000000000000000000000000000000000000000..1b28ef9e988236f3182c7da429ddfdf610d9a526 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/75.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/76.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/76.png" new file mode 100644 index 0000000000000000000000000000000000000000..c43d71e47ca52c59eefad9138ec2b8f8d432f810 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/76.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/77.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/77.png" new file mode 100644 index 0000000000000000000000000000000000000000..d809d10c7c4b1acbc5929be145b0742519b402a5 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/77.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/78.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/78.png" new file mode 100644 index 0000000000000000000000000000000000000000..ce7c444196dba505382209f7a615348e2c6ec747 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/78.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/79.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/79.png" new file mode 100644 index 0000000000000000000000000000000000000000..70db08b758344507a4ba9393cb4e80ad0875683f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/79.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/8.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/8.png" new file mode 100644 index 0000000000000000000000000000000000000000..a89ec6c1611cb928b9c4c8a190dc253397b3e3fb Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/8.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/80.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/80.png" new file mode 100644 index 0000000000000000000000000000000000000000..ecf606257f4a5a5a090f9d6e8b80eca675c778ba Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/80.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/81.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/81.png" new file mode 100644 index 0000000000000000000000000000000000000000..c9e3d5bedac2b3de9f3fccf2d071c475a1467834 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/81.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/82.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/82.png" new file mode 100644 index 0000000000000000000000000000000000000000..dcb53aa717487d674811ac48b0f02a9046b7dba7 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/82.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/83.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/83.png" new file mode 100644 index 0000000000000000000000000000000000000000..f3f0c1423c71ed7e0586ae884e03a96e68bcf25b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/83.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/84.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/84.png" new file mode 100644 index 0000000000000000000000000000000000000000..c01e9affe5372b93a39ee37dc4c69fd32577139f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/84.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/85.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/85.png" new file mode 100644 index 0000000000000000000000000000000000000000..1296cabd5381d12415033799aeecf926514ca943 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/85.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/86.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/86.png" new file mode 100644 index 0000000000000000000000000000000000000000..0d18e578ef51c798efdf0210d0d80e030f666d45 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/86.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/87.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/87.png" new file mode 100644 index 0000000000000000000000000000000000000000..4fdfc76e34ce1a48b599ccaeee387580a6081652 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/87.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/88.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/88.png" new file mode 100644 index 0000000000000000000000000000000000000000..f33fbe59bbf2af00e88239fbde69f8f2ff8a9b09 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/88.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/89.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/89.png" new file mode 100644 index 0000000000000000000000000000000000000000..f9f6000294daf3855f00d24428b23abb6b9a146f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/89.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/9.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/9.png" new file mode 100644 index 0000000000000000000000000000000000000000..e4aa970fc0127c830a23e0fb512ab82059a0337a Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/9.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/90.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/90.png" new file mode 100644 index 0000000000000000000000000000000000000000..c1d51652858765bb8acaa978286223dd697c81e3 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/90.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/91.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/91.png" new file mode 100644 index 0000000000000000000000000000000000000000..236354e62ef0a01580bde27ba653268dad62c028 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/91.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/92.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/92.png" new file mode 100644 index 0000000000000000000000000000000000000000..a57faaca0ab3c3d2d8cf6fd3d55fa96303e9eff4 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/92.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/93.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/93.png" new file mode 100644 index 0000000000000000000000000000000000000000..659b5a2a5c18691759afbaa1071f30fdf1cba665 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/93.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/94.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/94.png" new file mode 100644 index 0000000000000000000000000000000000000000..5d78abaca52c2165faab64851ee4e8d38a415f2b Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/94.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/95.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/95.png" new file mode 100644 index 0000000000000000000000000000000000000000..00a9b17a5f6ecf2b3d69081a2072459b7846929e Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/95.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/96.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/96.png" new file mode 100644 index 0000000000000000000000000000000000000000..e6b174a914105050879fec9e7eb1a546f9b34ddc Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/96.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/97.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/97.png" new file mode 100644 index 0000000000000000000000000000000000000000..db2b26eb55675ae281066bd387ecff4cb6552929 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/97.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/98.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/98.png" new file mode 100644 index 0000000000000000000000000000000000000000..277b4d7dd90a21b9bb13ca12a799ef8736a261f9 Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/98.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/action/99.png" "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/99.png" new file mode 100644 index 0000000000000000000000000000000000000000..3d19cfe02c83ac0741d71a3b1c0d46e12791b49f Binary files /dev/null and "b/desktop-assistant/res/role/\345\260\217\346\231\272/action/99.png" differ diff --git "a/desktop-assistant/res/role/\345\260\217\346\231\272/pet_conf.json" "b/desktop-assistant/res/role/\345\260\217\346\231\272/pet_conf.json" new file mode 100644 index 0000000000000000000000000000000000000000..0c5a5ba645c685762f1b3531e8f4a8eeb4000bc0 --- /dev/null +++ "b/desktop-assistant/res/role/\345\260\217\346\231\272/pet_conf.json" @@ -0,0 +1,11 @@ +{ + "app_image_path": "/opt/polymind/DeepChat-0.2.7-linux-x86_64.AppImage", + "default": "pose3", + "up": "up", + "down": "down", + "left": "left", + "right": "right", + "random_act": [ + ["pose2", "pose1" ] + ] +} diff --git a/desktop-assistant/utils/__init__.py b/desktop-assistant/utils/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..67debdd7ae921a3cf246ab330047617adaadce55 --- /dev/null +++ b/desktop-assistant/utils/__init__.py @@ -0,0 +1,54 @@ +import json +import os + + +def log(*args, **kwargs): + """ + 日志 + :param args: + :param kwargs: + :return: + """ + # 生产环境可以禁用日志输出 + # print(*args, **kwargs) + pass + + +def read_json(conf_file): + """ + 读取配置 + :param conf_file: + :return: map + """ + with open(conf_file, 'r', encoding='UTF-8') as file: + return json.load(file) + + +def rename_pet_action(pet_name: str, start_idx: int) -> None: + """ + 根据宠物名, 重命名宠物文件夹下的图片, 从0到n + :param start_idx: 开始坐标 + :param pet_name: 宠物名称 + :return: + """ + path = '../res/role/{}/action/'.format(pet_name) + files = os.listdir(path) + for i, f in enumerate(files): + os.rename(path + '/' + f, path + '/' + '{}.png'.format(start_idx + i)) + + +def remove_pet_action(pet_name: str) -> None: + """ + 删除宠物动作 + :param pet_name: 宠物名称 + :return: + """ + path = '../res/role/{}/action/'.format(pet_name) + files = os.listdir(path) + for file in files: + os.remove(path + '/' + file) + + +if __name__ == '__main__': + # remove_pet_action('test') + rename_pet_action('test', 29)