feat: Add base project structure with API and web components

This commit is contained in:
Ke Sun
2025-12-02 20:28:01 +08:00
parent f3de6d6cc9
commit c1adc62ec6
817 changed files with 111226 additions and 106 deletions

66
web/src/App.tsx Normal file
View File

@@ -0,0 +1,66 @@
/*
* @Description:
* @Version: 0.0.1
* @Author: yujiangping
* @Date: 2025-11-24 19:00:14
* @LastEditors: yujiangping
* @LastEditTime: 2025-11-25 18:48:26
*/
import { RouterProvider } from 'react-router-dom';
import {
Suspense,
useEffect
} from 'react';
import {
Spin,
ConfigProvider,
App as AntdApp
} from 'antd';
import { useTranslation } from 'react-i18next';
import { lightTheme } from './styles/antdThemeConfig.ts'
import router from './routes';
import { useI18n } from '@/store/locale'
import LayoutBg from '@/components/Layout/LayoutBg'
import dayjs from 'dayjs'
import 'dayjs/locale/en'
import 'dayjs/locale/zh-cn'
import 'dayjs/plugin/timezone'
import 'dayjs/plugin/utc'
function App() {
const { t } = useTranslation();
const { locale, language, timeZone } = useI18n()
useEffect(() => {
document.title = t('memoryBear')
dayjs.locale(language)
localStorage.setItem('language', language)
}, [language])
useEffect(() => {
// 设置dayjs的时区
dayjs.tz.setDefault(timeZone)
localStorage.setItem('timeZone', timeZone)
}, [timeZone])
return (
<ConfigProvider
locale={locale}
theme={lightTheme}
>
<AntdApp>
<LayoutBg />
<Suspense fallback={<Spin fullscreen></Spin>}>
<RouterProvider
router={router}
future={{
v7_startTransition: true,
}}
/>
</Suspense>
</AntdApp>
</ConfigProvider>
);
}
export default App

112
web/src/api/application.ts Normal file
View File

@@ -0,0 +1,112 @@
import { request } from '@/utils/request'
import type { Application } from '@/views/ApplicationManagement/types'
import type { Config } from '@/views/ApplicationConfig/types'
import { handleSSE } from '@/utils/stream'
// 应用列表
export const getApplicationListUrl = '/apps'
export const getApplicationList = (data: Record<string, unknown>) => {
return request.get(getApplicationListUrl, data)
}
// 获取应用配置
export const getApplicationConfig = (id: string) => {
return request.get(`/apps/${id}/config`)
}
// 获取集群应配置
export const getMultiAgentConfig = (id: string) => {
return request.get(`/apps/${id}/multi-agent`)
}
// 应用详情
export const getApplication = (id: string) => {
return request.get(`/apps/${id}`)
}
// 更新应用
export const updateApplication = (id: string, values: Application) => {
return request.put(`/apps/${id}`, values)
}
// 创建应用
export const addApplication = (values: Application) => {
return request.post('/apps', values)
}
// 保存Agent配置
export const saveAgentConfig = (app_id: string, values: Config) => {
return request.put(`/apps/${app_id}/config`, values)
}
// 保存集群配置
export const saveMultiAgentConfig = (app_id: string, values: Config) => {
return request.put(`/apps/${app_id}/multi-agent`, values)
}
// 模型比对试运行
export const runCompare = (app_id: string, values: Record<string, unknown>, onMessage?: (data: string) => void) => {
return handleSSE(`/apps/${app_id}/draft/run/compare`, values, onMessage)
}
export const draftRun = (app_id: string, values: Record<string, unknown>, onMessage?: (data: string) => void) => {
return handleSSE(`/apps/${app_id}/draft/run`, values, onMessage)
}
// 删除应用
export const deleteApplication = (app_id: string) => {
return request.delete(`/apps/${app_id}`)
}
// 发布版本列表
export const getReleaseList = (app_id: string) => {
return request.get(`/apps/${app_id}/releases`)
}
// 发布版本
export const publishRelease = (app_id: string, values: Record<string, unknown>) => {
return request.post(`/apps/${app_id}/publish`, values)
}
// 回滚版本
export const rollbackRelease = (app_id: string, version: string) => {
return request.post(`/apps/${app_id}/rollback/${version}`)
}
// 发布版本分享
export const shareRelease = (app_id: string, release_id: string) => {
return request.post(`/apps/${app_id}/releases/${release_id}/share`, {
"is_enabled": true,
"require_password": false,
"allow_embed": true
})
}
// 获取体验对话历史
export const getConversationHistory = (share_token: string, data: { page: number; pagesize: number }) => {
return request.get(`/public/share/conversations`, data, {
headers: {
'Authorization': `Bearer ${localStorage.getItem(`shareToken_${share_token}`)}`
}
})
}
// 发送体验对话
export const sendConversation = (share_token: string, values: {
message: string;
web_search: boolean;
memory: boolean;
stream: boolean;
conversation_id: string | null;
}, onMessage, shareToken: string) => {
// return request.post(`/public/share/chat`, values, {
// headers: {
// 'Authorization': `Bearer ${localStorage.getItem(`shareToken_${share_token}`)}`
// }
// })
return handleSSE(`/public/share/chat`, values, onMessage, {
headers: {
'Authorization': `Bearer ${shareToken}`
}
})
}
// 获取体验会话详情
export const getConversationDetail = (share_token: string, conversation_id: string) => {
return request.get(`/public/share/conversations/${conversation_id}`, {}, {
headers: {
'Authorization': `Bearer ${localStorage.getItem(`shareToken_${share_token}`)}`
}
})
}
// 获取体验对话token
export const getShareToken = (share_token: string, user_id: string) => {
return request.post(`/public/share/${share_token}/token`, { user_id })
}
// 复制应用
export const copyApplication = (app_id: string, new_name: string) => {
return request.post(`/apps/${app_id}/copy?new_name=${new_name}`)
}

20
web/src/api/member.ts Normal file
View File

@@ -0,0 +1,20 @@
import { request } from '@/utils/request'
// 成员列表
export const memberListUrl = '/workspaces/members'
// 邀请成员
export const inviteMember = (values: { email: string }) => {
return request.post(`/workspaces/invites`, values)
}
// 删除成员
export const deleteMember = (id: string) => {
return request.delete(`/workspaces/members/${id}`)
}
// 更新成员
export const updateMember = (values: { id: string, role: string }) => {
return request.put(`/workspaces/members`, [values])
}
// 验证邀请token
export const validateInviteToken = (token: string) => {
return request.get(`/workspaces/invites/validate/${token}`)
}

145
web/src/api/memory.ts Normal file
View File

@@ -0,0 +1,145 @@
import { request } from '@/utils/request'
import type {
MemoryFormData,
} from '@/views/MemoryManagement/types'
import type {
ConfigForm as ForgetConfigForm
} from '@/views/ForgettingEngine/types'
import type {
ConfigForm as ExtractionConfigForm
} from '@/views/MemoryExtractionEngine/types'
import type { TestParams } from '@/views/MemoryConversation'
// 记忆对话
export const readService = (query: TestParams) => {
return request.post('/memory/read_service', query)
}
/****************** 记忆看板 相关接口 *******************************/
// 记忆看板-记忆总量
export const getTotalMemoryCount = () => {
return request.get(`/dashboard/total_memory_count`)
}
// 记忆看板-知识库类型分布
export const getKbTypes = () => {
return request.get(`/memory/stats/types`)
}
// 记忆看板-热门记忆标签
export const getHotMemoryTags = () => {
return request.get(`/memory-storage/analytics/hot_memory_tags`)
}
// 记忆看板-最近活动统计
export const getRecentActivityStats = () => {
return request.get(`/memory-storage/analytics/recent_activity_stats`)
}
// 记忆看板-记忆增长趋势
export const getMemoryIncrement = (limit: number) => {
return request.get(`/dashboard/memory_increment`, { limit })
}
// 记忆看板-API调用趋势
export const getApiTrend = () => {
return request.get(`/dashboard/api_increment`)
}
// 记忆看板-总数据
export const getDashboardData = () => {
return request.get(`/dashboard/dashboard_data`)
}
/*************** end 记忆看板 相关接口 ******************************/
/****************** 用户记忆 相关接口 *******************************/
export const userMemoryListUrl = '/dashboard/end_users'
export const getUserMemoryList = () => {
return request.get(userMemoryListUrl)
}
// 用户记忆-用户记忆总量
export const getTotalEndUsers = () => {
return request.get(`/dashboard/total_end_users`)
}
// 用户记忆-用户详情
export const getUserProfile = (end_user_id: string) => {
return request.get(`/memory/analytics/user_profile`, { end_user_id })
}
// 用户记忆-记忆洞察
export const getMemoryInsightReport = (end_user_id: string) => {
return request.get(`/memory-storage/analytics/memory_insight/report`, { end_user_id })
}
// 用户记忆-用户摘要
export const getUserSummary = (end_user_id: string) => {
return request.get(`/memory-storage/analytics/user_summary`, { end_user_id })
}
// 用户记忆-关系网络
export const getMemorySearchEdges = (end_user_id: string) => {
return request.get(`/memory-storage/search/entity_graph`, { end_user_id })
}
// 用户记忆-用户兴趣分布
export const getHotMemoryTagsByUser = (end_user_id: string) => {
return request.get(`/memory/analytics/hot_memory_tags/by_user`, { end_user_id })
}
// 用户记忆-记忆总量
export const getTotalMemoryCountByUser = (end_user_id: string) => {
return request.get(`/memory-storage/search`, { end_user_id })
}
// RAG 用户记忆-记忆总量
export const getTotalRagMemoryCountByUser = (end_user_id: string) => {
return request.get(`/dashboard/current_user_rag_total_num`, { end_user_id })
}
// RAG 用户记忆-用户摘要
export const getChunkSummaryTag = (end_user_id: string) => {
return request.get(`/dashboard/chunk_summary_tag`, { end_user_id })
}
// RAG 用户记忆-记忆洞察
export const getChunkInsight = (end_user_id: string) => {
return request.get(`/dashboard/chunk_insight`, { end_user_id })
}
// RAG 用户记忆-存储内容
export const getRagContent = (end_user_id: string) => {
return request.get(`/dashboard/rag_content`, { end_user_id, limit: 20 })
}
/*************** end 用户记忆 相关接口 ******************************/
/****************** 记忆管理 相关接口 *******************************/
// 记忆管理-获取所有配置
export const memoryConfigListUrl = '/memory-storage/read_all_config'
export const getMemoryConfigList = () => {
return request.get(memoryConfigListUrl)
}
// 记忆管理-创建配置
export const createMemoryConfig = (values: MemoryFormData) => {
return request.post('/memory-storage/create_config', values)
}
// 记忆管理-更新配置
export const updateMemoryConfig = (values: MemoryFormData) => {
return request.post('/memory-storage/update_config', values)
}
// 记忆管理-删除配置
export const deleteMemoryConfig = (config_id: number) => {
return request.delete(`/memory-storage/delete_config?config_id=${config_id}`)
}
// 遗忘引擎-获取配置
export const getMemoryForgetConfig = (config_id: number | string) => {
return request.get('/memory-storage/read_config_forget', { config_id })
}
// 遗忘引擎-更新配置
export const updateMemoryForgetConfig = (values: ForgetConfigForm) => {
return request.post('/memory-storage/update_config_forget', values)
}
// 记忆萃取引擎-获取配置
export const getMemoryExtractionConfig = (config_id: number | string) => {
return request.get('/memory-storage/read_config_extracted', { config_id: config_id })
}
// 记忆萃取引擎-更新配置
export const updateMemoryExtractionConfig = (values: ExtractionConfigForm) => {
return request.post('/memory-storage/update_config_extracted', values)
}
// 记忆萃取引擎-试运行
export const pilotRunMemoryExtractionConfig = (values: { config_id: number | string; dialogue_text: string }) => {
return request.post('/memory-storage/pilot_run', values)
}
/*************** end 记忆管理 相关接口 ******************************/
/****************** API参数 相关接口 *******************************/
export const getMemoryApi = () => {
return request.get('/memory/docs/api')
}
/*************** end API参数 相关接口 ******************************/

23
web/src/api/models.ts Normal file
View File

@@ -0,0 +1,23 @@
import { request } from '@/utils/request'
import type { ModelFormData } from '@/views/ModelManagement/types'
// 模型列表
export const getModelListUrl = '/models'
export const getModelList = (data: { type: string; pagesize: number; page: number; }) => {
return request.get(getModelListUrl, data)
}
// 创建模型
export const addModel = (data: ModelFormData) => {
return request.post('/models', data)
}
// 更新模型
export const updateModel = (apiKeyId: string, data: ModelFormData) => {
return request.put(`/models/apikeys/${apiKeyId}`, data)
}
// 模型类型列表
export const modelTypeUrl = '/models/type'
// 模型供应商列表
export const modelProviderUrl = '/models/provider'
export const getModelProviderList = () => {
return request.get(modelProviderUrl)
}

40
web/src/api/user.ts Normal file
View File

@@ -0,0 +1,40 @@
import { request } from '@/utils/request'
import type { CreateModalData } from '@/views/UserManagement/types'
// 用户信息
export const getUsers = () => {
return request.get('/users')
}
// 用户列表
export const getUserListUrl = '/users/superusers'
// 登录
export const loginUrl = '/token'
export const login = (data: { email: string; password: string; invite?: string; username?: string }) => {
return request.post(loginUrl, data)
}
// 刷新token
export const refreshTokenUrl = '/refresh'
export const refreshToken = () => {
return request.post(refreshTokenUrl, { refresh_token: localStorage.getItem('refresh_token') })
}
// 重置密码
export const changePassword = (data: { user_id: string; new_password: string }) => {
return request.put('/users/admin/change-password', data)
}
// 禁用用户
export const deleteUser = (user_id: string) => {
return request.delete(`/users/${user_id}`)
}
// 启用用户
export const enableUser = (user_id: string) => {
return request.post(`/users/${user_id}/activate`)
}
// 创建用户
export const addUser = (data: CreateModalData) => {
return request.post('/users/superuser', data)
}
// 注销
export const logoutUrl = '/logout'
export const logout = () => {
return request.post(logoutUrl)
}

27
web/src/api/workspaces.ts Normal file
View File

@@ -0,0 +1,27 @@
import { request } from '@/utils/request'
import type { SpaceModalData } from '@/views/SpaceManagement/types'
// 空间列表
export const getWorkspaces = () => {
return request.get('/workspaces')
}
// 创建空间
export const createWorkspace = (values: SpaceModalData) => {
return request.post('/workspaces', values)
}
// 切换空间
export const switchWorkspace = (workspaceId: string) => {
return request.put(`/workspaces/${workspaceId}/switch`)
}
// 获取空间存储类型
export const getWorkspaceStorageType = () => {
return request.get(`/workspaces/storage`)
}
// 获取空间模型配置
export const getWorkspaceModels = () => {
return request.get(`/workspaces/workspace_models`)
}
// 更新空间模型配置
export const updateWorkspaceModels = () => {
return request.post(`/workspaces/workspace_models`)
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>我的智能体</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-弹窗" transform="translate(-737, -1332)" stroke="#212332" stroke-width="2">
<g id="1备份" transform="translate(665, 942)">
<g id="编组-11" transform="translate(24, 370)">
<g id="我的智能体" transform="translate(48, 20)">
<g id="编组-7" transform="translate(5, 5)">
<path d="M16.5,2.63073129 L25.726241,7.95750401 C26.6544442,8.49340239 27.226241,9.48378345 27.226241,10.5555802 L27.226241,21.2091257 C27.226241,22.2809224 26.6544442,23.2713035 25.726241,23.8072019 L16.5,29.1339746 C15.5717968,29.669873 14.4282032,29.669873 13.5,29.1339746 L4.27375901,23.8072019 C3.34555578,23.2713035 2.77375901,22.2809224 2.77375901,21.2091257 L2.77375901,10.5555802 C2.77375901,9.48378345 3.34555578,8.49340239 4.27375901,7.95750401 L13.5,2.63073129 C14.4282032,2.0948329 15.5717968,2.0948329 16.5,2.63073129 Z" id="多边形"></path>
<path d="M15.5,10.8769104 L19.0848404,12.946619 C19.3942414,13.1252518 19.5848404,13.4553788 19.5848404,13.8126444 L19.5848404,17.9520615 C19.5848404,18.3093271 19.3942414,18.6394541 19.0848404,18.8180869 L15.5,20.8877955 C15.1905989,21.0664282 14.8094011,21.0664282 14.5,20.8877955 L10.9151596,18.8180869 C10.6057586,18.6394541 10.4151596,18.3093271 10.4151596,17.9520615 L10.4151596,13.8126444 C10.4151596,13.4553788 10.6057586,13.1252518 10.9151596,12.946619 L14.5,10.8769104 C14.8094011,10.6982776 15.1905989,10.6982776 15.5,10.8769104 Z" id="多边形"></path>
<line x1="15.0070547" y1="5.29411765" x2="15.0070547" y2="10.5882353" id="路径-2"></line>
<line x1="10.5800128" y1="18.5442668" x2="4.9181053" y2="21.6147243" id="路径-3"></line>
<line x1="19.4169892" y1="18.573439" x2="25.1924137" y2="21.7313047" id="路径-4"></line>
<circle id="椭圆形" fill="#FFFFFF" cx="15" cy="2.64705882" r="2.64705882"></circle>
<circle id="椭圆形" fill="#FFFFFF" cx="2.64705882" cy="22.9411765" r="2.64705882"></circle>
<circle id="椭圆形" fill="#FFFFFF" cx="27.3529412" cy="22.9411765" r="2.64705882"></circle>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>常见问题</title>
<defs>
<polygon id="path-1" points="0 0 200 0 200 200 0 200"></polygon>
</defs>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-980, -346)">
<g id="常见问题" transform="translate(980, 346)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="路径"></g>
<g id="编组" mask="url(#mask-2)">
<g transform="translate(17.4844, 21.9453)">
<path d="M99.171875,0 L137.679688,0 C150.505859,0 160.998047,10.4921875 160.998047,23.3183594 C160.998047,36.1445313 150.505859,46.6367187 137.679688,46.6367187 L104.820313,46.6367187 C101.443359,50.90625 97.3554688,53.4335938 91.5449219,53.4335938 C88.1679688,53.4335938 88.6542969,51.4667969 90.0078125,50.7460938 C93.2519531,49.0214844 93.265625,46.1210938 91.53125,45.3417969 C82.4277344,42.1601562 75.8515625,33.4707031 75.8515625,23.3183594 C75.8515625,10.4921875 86.34375,0 99.1699219,0 L99.171875,0 Z" id="路径" stroke="none" fill="#D2D3D5" fill-rule="evenodd"></path>
<path d="M99.171875,0 L137.679688,0 C150.505859,0 160.998047,10.4921875 160.998047,23.3183594 C160.998047,36.1445313 150.505859,46.6367187 137.679688,46.6367187 L104.820313,46.6367187 C101.443359,50.90625 97.3554688,53.4335938 91.5449219,53.4335938 C88.1679688,53.4335938 88.6542969,51.4667969 90.0078125,50.7460938 C93.2519531,49.0214844 93.265625,46.1210938 91.53125,45.3417969 C82.4277344,42.1601562 75.8515625,33.4707031 75.8515625,23.3183594 C75.8515625,10.4921875 86.34375,0 99.1699219,0 L99.171875,0 Z" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M96.4863281,25.5234375 C97.5449219,25.8222656 98.4199219,26.265625 99.1074219,26.8515625 C100.185547,25.8671875 100.726563,24.3867188 100.726563,22.4101563 C100.726563,21.2871094 100.535156,20.3046875 100.152344,19.4667969 C99.7695313,18.625 99.2128906,17.9746094 98.4785156,17.5097656 C97.7441406,17.046875 96.9179688,16.8125 96.0039063,16.8125 C94.6347656,16.8125 93.4960938,17.28125 92.5957031,18.21875 C91.6914063,19.1582031 91.2421875,20.5566406 91.2421875,22.4199219 C91.2421875,24.2832031 91.6894531,25.609375 92.5800781,26.578125 C93.4746094,27.5429688 94.6132813,28.0253906 96.0039063,28.0253906 C96.6582031,28.0253906 97.2773438,27.9023438 97.859375,27.65625 C97.2832031,27.2832031 96.6777344,27.0175781 96.0429688,26.859375 L96.4863281,25.5214844 L96.4863281,25.5234375 Z M100.529297,27.875 C101.386719,28.4648438 102.177734,28.8925781 102.904297,29.1640625 L102.357422,30.4472656 C101.357422,30.0878906 100.359375,29.5214844 99.3652344,28.7441406 C98.3359375,29.3164063 97.1972656,29.6015625 95.9550781,29.6015625 C94.7128906,29.6015625 93.5585938,29.296875 92.5351563,28.6914063 C91.5117188,28.0859375 90.7246094,27.2304688 90.1699219,26.1328125 C89.6152344,25.03125 89.3398438,23.7949219 89.3398438,22.4140625 C89.3398438,21.0332031 89.6191406,19.796875 90.1757813,18.6699219 C90.7304688,17.5449219 91.5234375,16.6914063 92.5507813,16.1015625 C93.578125,15.515625 94.7265625,15.2207031 95.9960938,15.2207031 C97.265625,15.2207031 98.4355469,15.5253906 99.4648438,16.1347656 C100.494141,16.7460938 101.28125,17.5996094 101.822266,18.6972656 C102.363281,19.7910156 102.632813,21.0292969 102.632813,22.40625 C102.632813,23.5527344 102.457031,24.5800781 102.107422,25.4921875 C101.761719,26.40625 101.232422,27.1992188 100.529297,27.8769531 L100.529297,27.875 Z" id="形状" stroke="none" fill="#373435" fill-rule="nonzero"></path>
<line x1="0" y1="165.273437" x2="167.083984" y2="165.273437" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></line>
<path d="M64.2675781,150.136719 C64.4511719,150.486328 28.28125,150.136719 28.28125,150.136719 C28.28125,150.136719 31.0527344,94.3164063 31.5664062,91.6171875 L58.40625,83.0507813 C61.46875,96.8964844 63.8613281,107.716797 66.921875,121.5625 C68.1308594,126.810547 68.9414063,128.412109 67.578125,136.029297 L64.265625,150.136719 L64.2675781,150.136719 Z" id="路径" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M64.2675781,150.136719 C64.4511719,150.486328 28.28125,150.136719 28.28125,150.136719 C28.28125,150.136719 31.0527344,94.3164063 31.5664062,91.6171875 L58.40625,83.0507813 C61.46875,96.8964844 63.8613281,107.716797 66.921875,121.5625 C68.1308594,126.810547 68.9414063,128.412109 67.578125,136.029297 L64.265625,150.136719 L64.2675781,150.136719 Z" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M46.6152344,148.816406 C46.5058594,149.458984 45.8808594,165.298828 45.8808594,165.298828 C45.8808594,165.298828 81.1640625,165.345703 81.1328332,165.238281 C78.3945312,155.724609 69.6699219,158.808594 64.2851562,148.808594 L46.6132812,148.816406 L46.6152344,148.816406 Z" id="路径" stroke="none" fill="#D2D3D5" fill-rule="evenodd"></path>
<path d="M46.6152344,148.816406 C46.5058594,149.458984 45.8808594,165.298828 45.8808594,165.298828 C45.8808594,165.298828 81.1640625,165.345703 81.1328332,165.238281 C78.3945312,155.724609 69.6699219,158.808594 64.2851562,148.808594 L46.6132812,148.816406 L46.6152344,148.816406 Z" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M28.3925781,148.792969 C28.2636719,149.435547 27.4453125,165.298828 27.4453125,165.298828 C27.4453125,165.298828 62.7148438,165.347656 62.6992239,165.238281 C61.1914063,155.458984 53.7089844,158.808594 48.6230469,148.808594 L28.3925781,148.792969 Z" id="路径" stroke="none" fill="#D2D3D5" fill-rule="evenodd"></path>
<path d="M28.3925781,148.792969 C28.2636719,149.435547 27.4453125,165.298828 27.4453125,165.298828 C27.4453125,165.298828 62.7148438,165.347656 62.6992239,165.238281 C61.1914063,155.458984 53.7089844,158.808594 48.6230469,148.808594 L28.3925781,148.792969 Z" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M50.8007813,45.5703125 L40.5019531,45.4667969 L40.1542969,36.9140625 L39.7792969,21.578125 C39.5,16.8300781 44.4375,13.7226562 48.5019531,17.2304687 C49.6855469,18.2519531 52.7910156,23.0117187 53.8945313,24.5742187 C56.140625,27.7519531 58.5097656,31.2949219 57.1953125,33.5371094 C56.4335938,34.8339844 54.1796875,36.1269531 50.1367188,35.3066406 L50.8007813,45.5683594 L50.8007813,45.5703125 Z" id="路径" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M50.8007813,45.5703125 L40.5019531,45.4667969 L40.1542969,36.9140625 L39.7792969,21.578125 C39.5,16.8300781 44.4375,13.7226562 48.5019531,17.2304687 C49.6855469,18.2519531 52.7910156,23.0117187 53.8945313,24.5742187 C56.140625,27.7519531 58.5097656,31.2949219 57.1953125,33.5371094 C56.4335938,34.8339844 54.1796875,36.1269531 50.1367188,35.3066406 L50.8007813,45.5683594 L50.8007813,45.5703125 Z" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M52.0566406,28.8710937 C51.0371094,29.40625 48.5097656,30.890625 47,28.0761719" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M48.4902344,149.302734 C48.9765625,147.740234 50.9277344,137.789063 51.7167969,134.609375 C52.9550781,129.621094 53.1074219,126.101563 52.1738281,121.041016 L50.4179688,106.847656" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M50.5839844,45.6113281 C50.7519531,46.0976562 59.1601562,87.2519531 60.328133,92.4394531 C60.3457031,92.515625 31.3847656,92.5957031 31.3847656,92.5957031 C32.9589844,84.484375 35.2128906,60.9707031 37.140625,48.9238281 C37.2324219,48.3535156 37.6679687,45.6738281 40.1777344,45.6308594 C41.8886719,45.6015625 50.5839844,45.6113281 50.5839844,45.6113281 Z" id="路径" stroke="none" fill="#373435" fill-rule="evenodd"></path>
<path d="M50.5839844,45.6113281 C50.7519531,46.0976562 59.1601562,87.2519531 60.328133,92.4394531 C60.3457031,92.515625 31.3847656,92.5957031 31.3847656,92.5957031 C32.9589844,84.484375 35.2128906,60.9707031 37.140625,48.9238281 C37.2324219,48.3535156 37.6679687,45.6738281 40.1777344,45.6308594 C41.8886719,45.6015625 50.5839844,45.6113281 50.5839844,45.6113281 Z" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M37.4550781,58.703125 L36.8535156,47.5175781 L9.51367187,67.3066406 C6.36914062,69.8398438 3.56054687,74.0292969 6.82226562,78.8125 L13.859375,87.2773438 L19.1679687,93.7597656 L37.2871094,76.3242188 L26.0019531,68.984375 L37.453125,58.7011719 L37.4550781,58.703125 Z" id="路径" stroke="none" fill="#373435" fill-rule="evenodd"></path>
<path d="M37.4550781,58.703125 L36.8535156,47.5175781 L9.51367187,67.3066406 C6.36914062,69.8398438 3.56054687,74.0292969 6.82226562,78.8125 L13.859375,87.2773438 L19.1679687,93.7597656 L37.2871094,76.3242188 L26.0019531,68.984375 L37.453125,58.7011719 L37.4550781,58.703125 Z" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<polyline id="路径" stroke="#FBFDFF" stroke-width="0.4" fill="none" stroke-linecap="round" points="28.8886719 69.3144531 38.9902344 76.3574219 28.3125 86.7949219"></polyline>
<path d="M19.6445312,94.3789063 L38.9902344,76.1269531 C41.7265625,76.6542969 41.9804687,76.6660156 44.859375,77.390625 C49.2772804,78.5019531 51.5488281,83.8652344 46.0195312,87.3007813 C45.0039062,87.9316406 34.8046875,89.5429688 34.8046875,89.5429688 C34.7597656,89.5820313 30.7675781,106.208984 30.265625,109.689453 C29.4453125,115.388672 19.9960937,115.066406 21.1914062,108.142578 C22.125,102.730469 21.6289062,97.5644531 19.6445312,94.3789063 Z" id="路径" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M19.6445312,94.3789063 L38.9902344,76.1269531 C41.7265625,76.6542969 41.9804687,76.6660156 44.859375,77.390625 C49.2772804,78.5019531 51.5488281,83.8652344 46.0195312,87.3007813 C45.0039062,87.9316406 34.8046875,89.5429688 34.8046875,89.5429688 C34.7597656,89.5820313 30.7675781,106.208984 30.265625,109.689453 C29.4453125,115.388672 19.9960937,115.066406 21.1914062,108.142578 C22.125,102.730469 21.6289062,97.5644531 19.6445312,94.3789063 Z" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M51.9394531,63.6679688 L71.3417969,45.3183594 C68.3144531,41.2519531 66.6367187,39.8847656 68.1132812,36.5507813 C69.2910156,33.890625 71.5976562,32.0273438 70.5839844,29.0839844 C68.9160156,24.2363281 61.0136719,25.4648438 57.4121094,33.0058594 C56.5527344,34.8027344 55.5859375,35.2109375 52.5371094,34.5507813 C47.9570312,33.5585938 40.7890625,30.6425781 38.0585937,29.8535156 C35.3535156,29.0703125 33.4824219,29.5566406 32.4140625,30.828125 C31.5136719,31.8984375 31.1230469,33.5507813 31.8886719,35.2636719 C32.9277344,37.5957031 35.7421875,38.7246094 35.7421875,38.7246094 C35.5839844,38.7832031 34.8984375,38.5917969 34.2792969,38.6757813 C32.640625,38.8984375 31.9023437,40.171875 31.703125,41.5 C31.5664062,42.4140625 31.7597656,43.3808594 32.1503906,44.296875 C33.6191406,47.7460938 36.6035156,48.8261719 39.703125,50.0898438 C39.8066406,50.1308594 39.59375,50.28125 39.5449219,50.3769531 C39.1835937,51.0976563 39.0546875,51.8632813 39.1328125,52.6542969 C39.5058594,56.359375 44.4882812,60.6328125 51.9414062,63.6699219 L51.9394531,63.6679688 Z" id="路径" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M51.9394531,63.6679688 L71.3417969,45.3183594 C68.3144531,41.2519531 66.6367187,39.8847656 68.1132812,36.5507813 C69.2910156,33.890625 71.5976562,32.0273438 70.5839844,29.0839844 C68.9160156,24.2363281 61.0136719,25.4648438 57.4121094,33.0058594 C56.5527344,34.8027344 55.5859375,35.2109375 52.5371094,34.5507813 C47.9570312,33.5585938 40.7890625,30.6425781 38.0585937,29.8535156 C35.3535156,29.0703125 33.4824219,29.5566406 32.4140625,30.828125 C31.5136719,31.8984375 31.1230469,33.5507813 31.8886719,35.2636719 C32.9277344,37.5957031 35.7421875,38.7246094 35.7421875,38.7246094 C35.5839844,38.7832031 34.8984375,38.5917969 34.2792969,38.6757813 C32.640625,38.8984375 31.9023437,40.171875 31.703125,41.5 C31.5664062,42.4140625 31.7597656,43.3808594 32.1503906,44.296875 C33.6191406,47.7460938 36.6035156,48.8261719 39.703125,50.0898438 C39.8066406,50.1308594 39.59375,50.28125 39.5449219,50.3769531 C39.1835937,51.0976563 39.0546875,51.8632813 39.1328125,52.6542969 C39.5058594,56.359375 44.4882812,60.6328125 51.9414062,63.6699219 L51.9394531,63.6679688 Z" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M35.296875,38.515625 C36.4707031,39.2929687 44.9765625,42.6777344 47.8886719,43.2128906" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M39.3808594,49.9765625 C41.6855469,50.7910156 44.2773438,51.59375 44.7246094,51.6367188" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M51.9394531,63.6679687 L71.3417969,45.3183594 L85.4863281,61.5390625 C95.4433594,72.8535156 87.4316406,80.890625 75.5273438,76.1152344 L51.9414063,63.6679687 L51.9394531,63.6679687 Z" id="路径" stroke="none" fill="#373435" fill-rule="evenodd"></path>
<path d="M51.9394531,63.6679687 L71.3417969,45.3183594 L85.4863281,61.5390625 C95.4433594,72.8535156 87.4316406,80.890625 75.5273438,76.1152344 L51.9414063,63.6679687 L51.9394531,63.6679687 Z" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M142.570313,58.0371094 L114.582031,58.0371094 C105.259766,58.0371094 97.6328125,65.6640625 97.6328125,74.9863281 C97.6328125,84.3085938 105.259766,91.9355469 114.582031,91.9355469 L138.464844,91.9355469 C140.919922,95.0390625 143.890625,96.875 148.113281,96.875 C150.568359,96.875 150.214844,95.4453125 149.230469,94.921875 C146.873047,93.6679688 146.863281,91.5605469 148.123047,90.9941406 C154.740234,88.6816406 159.519531,82.3652344 159.519531,74.9863281 C159.519531,65.6640625 151.892578,58.0371094 142.570313,58.0371094 Z" id="路径" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M142.570313,58.0371094 L114.582031,58.0371094 C105.259766,58.0371094 97.6328125,65.6640625 97.6328125,74.9863281 C97.6328125,84.3085938 105.259766,91.9355469 114.582031,91.9355469 L138.464844,91.9355469 C140.919922,95.0390625 143.890625,96.875 148.113281,96.875 C150.568359,96.875 150.214844,95.4453125 149.230469,94.921875 C146.873047,93.6679688 146.863281,91.5605469 148.123047,90.9941406 C154.740234,88.6816406 159.519531,82.3652344 159.519531,74.9863281 C159.519531,65.6640625 151.892578,58.0371094 142.570313,58.0371094 Z" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M85.5371094,103.792969 L139.652344,103.792969 C151.527344,103.792969 161.242188,113.507813 161.242188,125.382813 C161.242188,137.257812 151.527344,146.972656 139.652344,146.972656 L90.7675781,146.972656 C87.640625,150.925781 83.8554688,153.265625 78.4765625,153.265625 C75.3496094,153.265625 75.8007813,151.445312 77.0546875,150.777344 C80.0585938,149.179687 80.0703125,146.496094 78.4667969,145.775391 C70.0390625,142.830078 63.9492188,134.785156 63.9492188,125.384766 C63.9492188,113.509766 73.6640625,103.794922 85.5390625,103.794922 L85.5371094,103.792969 Z" id="路径" stroke="none" fill="#D2D3D5" fill-rule="evenodd"></path>
<path d="M85.5371094,103.792969 L139.652344,103.792969 C151.527344,103.792969 161.242188,113.507813 161.242188,125.382813 C161.242188,137.257812 151.527344,146.972656 139.652344,146.972656 L90.7675781,146.972656 C87.640625,150.925781 83.8554688,153.265625 78.4765625,153.265625 C75.3496094,153.265625 75.8007813,151.445312 77.0546875,150.777344 C80.0585938,149.179687 80.0703125,146.496094 78.4667969,145.775391 C70.0390625,142.830078 63.9492188,134.785156 63.9492188,125.384766 C63.9492188,113.509766 73.6640625,103.794922 85.5390625,103.794922 L85.5371094,103.792969 Z" id="路径" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M113.896484,75.1796875 L118.638672,75.1796875 L117.1875,71.3222656 C116.75,70.1503906 116.419922,69.1816406 116.189453,68.4160156 C115.998047,69.3222656 115.742188,70.2128906 115.421875,71.09375 L113.896484,75.1777344 L113.896484,75.1796875 Z M109.892578,80.8925781 L115.230469,66.9785156 L117.253906,66.9785156 L122.917969,80.8925781 L120.822266,80.8925781 L119.212891,76.6757813 L113.353516,76.6757813 L111.84375,80.8925781 L109.890625,80.8925781 L109.892578,80.8925781 Z" id="形状" stroke="none" fill="#373435" fill-rule="nonzero"></path>
<path d="M85.1503906,128.585938 C86.2089844,128.884766 87.0839844,129.328125 87.7714844,129.914062 C88.8496094,128.929688 89.390625,127.449219 89.390625,125.472656 C89.390625,124.349609 89.1992188,123.367187 88.8164063,122.529297 C88.4335938,121.6875 87.8769531,121.037109 87.1425781,120.572266 C86.4082031,120.109375 85.5820313,119.875 84.6679688,119.875 C83.2988281,119.875 82.1601563,120.34375 81.2617188,121.28125 C80.3574219,122.220703 79.9082031,123.619141 79.9082031,125.482422 C79.9082031,127.345703 80.3554688,128.671875 81.2460938,129.640625 C82.140625,130.605469 83.2792969,131.087891 84.6699219,131.087891 C85.3242188,131.087891 85.9433594,130.964844 86.5253906,130.71875 C85.9492188,130.345703 85.34375,130.080078 84.7089844,129.921875 L85.1523438,128.583984 L85.1503906,128.585938 Z M89.1914063,130.9375 C90.0488281,131.527344 90.8398438,131.955078 91.5644531,132.226562 L91.0175781,133.509766 C90.0175781,133.150391 89.0195313,132.583984 88.0253906,131.806641 C86.9960938,132.378906 85.8574219,132.664062 84.6152344,132.664062 C83.3730469,132.664062 82.21875,132.359375 81.1953125,131.753906 C80.171875,131.148438 79.3847656,130.292969 78.8300781,129.195312 C78.2753906,128.09375 78,126.857422 78,125.476562 C78,124.095703 78.2792969,122.859375 78.8359375,121.732422 C79.390625,120.609375 80.1835938,119.753906 81.2109375,119.164062 C82.2382813,118.578125 83.3867188,118.283203 84.65625,118.283203 C85.9257813,118.283203 87.0957031,118.587891 88.125,119.197266 C89.1542969,119.808594 89.9414063,120.662109 90.4824219,121.759766 C91.0234375,122.853516 91.2929688,124.091797 91.2929688,125.46875 C91.2929688,126.615234 91.1171875,127.642578 90.7675781,128.554688 C90.421875,129.46875 89.8925781,130.261719 89.1894531,130.939453 L89.1914063,130.9375 Z" id="形状" stroke="none" fill="#373435" fill-rule="nonzero"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="44px" height="44px" viewBox="0 0 44 44" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 8</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-1364, -724)">
<g id="聊天页面" transform="translate(736, 136)">
<g id="聊天框" transform="translate(0, 572)">
<g id="编组-8" transform="translate(628, 16)">
<rect id="矩形" fill="#155EEF" x="0" y="0" width="44" height="44" rx="8"></rect>
<g id="发送" transform="translate(10, 10)" fill="#FFFFFF" fill-rule="nonzero">
<rect id="矩形" opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M9.76366406,23.9576719 C9.63667969,23.9576719 9.50969531,23.9294531 9.38271094,23.8730156 C9.02997656,23.7178125 8.80422656,23.3791875 8.80422656,22.9982344 L8.80422656,15.9717891 C8.80422656,15.6754922 8.93121094,15.4074141 9.17107031,15.2239922 C9.39682031,15.0405703 9.69311719,14.9841328 9.98941406,15.0405703 L19.7812969,17.3827266 L21.7566094,3.3298125 C21.7848281,3.1040625 21.5590781,2.94885938 21.3615469,3.06173438 L3.45679688,13.4321016 L6.71601563,14.2645313 C7.181625,14.3774063 7.52025,14.8006875 7.47792188,15.2804063 C7.42148438,15.8871094 6.85710938,16.2680625 6.29273438,16.1269688 L0.71953125,14.7019219 C0.338648438,14.6031797 0.070546875,14.2927734 0.0141328125,13.9117969 C-0.0423046875,13.5308438 0.141117188,13.1498906 0.479742188,12.9523594 L22.5608438,0.155203125 C22.87125,-0.02821875 23.2663125,-0.014109375 23.5767188,0.183421875 C23.8730156,0.380953125 24.0423281,0.747796875 23.9858906,1.10053125 L21.51675,18.6807656 C21.4744219,18.9488438 21.3333281,19.1887031 21.1075781,19.3439063 C20.8818281,19.4991094 20.61375,19.5414375 20.3456719,19.485 L10.7089922,17.1851953 L10.7089922,20.7971719 L12.6278672,19.0052813 C12.9806016,18.6807656 13.5167578,18.6102188 13.8977109,18.9065156 C14.3774297,19.2733594 14.3915391,19.9647188 13.9682578,20.3597813 L10.4126953,23.7037031 C10.2292734,23.8730156 10.0035234,23.9576719 9.76366406,23.9576719 Z M9.76366406,16.9312266 C9.53791406,16.9312266 9.31216406,16.8465703 9.12874219,16.6913672 C8.73367969,16.3386328 8.70546094,15.7319297 9.05819531,15.3368672 L14.1234609,9.66489844 C14.4761953,9.26983594 15.0828984,9.24161719 15.4779609,9.59435156 C15.8730234,9.94708594 15.9012422,10.5537891 15.5485078,10.9488516 L10.4832422,16.6208203 C10.2857109,16.8324609 10.0176328,16.9312266 9.76366406,16.9312266 L9.76366406,16.9312266 Z" id="形状"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 11</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-默认状态" transform="translate(-1392, -84)">
<g id="编组-11" transform="translate(1392, 84)">
<rect id="矩形" stroke="#A8A9AA" x="0.5" y="0.5" width="31" height="31" rx="8"></rect>
<g id="Clear-1" transform="translate(6, 6)" fill-rule="nonzero">
<rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="20" height="20"></rect>
<path d="M17.6035156,9.859375 L16.1132813,6.9296875 C15.8515625,6.41601562 15.3320313,6.09765625 14.7558594,6.09765625 L12.4804688,6.09765625 C12.4589844,6.09765625 12.4414063,6.08007812 12.4414063,6.05859375 L12.4414063,2.35546875 C12.4414063,1.74804687 11.9472656,1.25585937 11.3417969,1.25585937 L9.58398438,1.25585937 C8.9765625,1.25585937 8.484375,1.75 8.484375,2.35546875 L8.484375,6.05859375 C8.484375,6.08007812 8.46679688,6.09765625 8.4453125,6.09765625 L6.16796875,6.09765625 C5.59179688,6.09765625 5.07226563,6.41601562 4.81054688,6.9296875 L3.3203125,9.859375 C3.140625,10.2128906 3.15625,10.6269531 3.36328125,10.9648437 C3.56445313,11.2929687 3.90820313,11.4921875 4.2890625,11.5039062 C4.1953125,13.4765625 3.54101563,15.5253906 2.52734375,16.9628906 C2.28320313,17.3105469 2.25195313,17.7597656 2.44726563,18.1367187 C2.64257813,18.5136719 3.02734375,18.7480469 3.453125,18.7480469 L15.2011719,18.7480469 C15.8847656,18.7480469 16.4902344,18.2871094 16.6699219,17.6269531 C16.9726563,16.5234375 17.2246094,15.5195312 17.2441406,14.40625 C17.265625,13.3789062 17.0703125,12.421875 16.6582031,11.5039062 C17.0292969,11.4824219 17.3632813,11.2851562 17.5605469,10.9648437 C17.7675781,10.6269531 17.7832031,10.2128906 17.6035156,9.859375 L17.6035156,9.859375 Z M4.29492188,10.3554687 L5.78515625,7.42578125 C5.859375,7.28125 6.00585938,7.19140625 6.16796875,7.19140625 L8.44140625,7.19140625 C9.06640625,7.19140625 9.57421875,6.68359375 9.57421875,6.05859375 L9.57421875,2.35546875 C9.57421875,2.35351562 9.578125,2.34960937 9.58007813,2.34960937 L11.3378906,2.34960937 C11.3398438,2.34960937 11.34375,2.35351562 11.34375,2.35546875 L11.34375,6.05859375 C11.34375,6.68359375 11.8515625,7.19140625 12.4765625,7.19140625 L14.75,7.19140625 C14.9121094,7.19140625 15.0585938,7.28125 15.1328125,7.42578125 L16.6230469,10.3554687 C16.6269531,10.3613281 16.6328125,10.375 16.6210938,10.3945312 C16.609375,10.4140625 16.5957031,10.4140625 16.5878906,10.4140625 L4.33007813,10.4140625 C4.32226563,10.4140625 4.30859375,10.4140625 4.296875,10.3945312 C4.28515625,10.375 4.29101563,10.3613281 4.29492188,10.3554687 Z M16.1523437,14.3867187 C16.1347656,15.3730469 15.9003906,16.3066406 15.6171875,17.3378906 C15.5664062,17.5234375 15.3964844,17.6542969 15.203125,17.6542969 L12.7304687,17.6542969 C12.9511719,17.21875 13.0917969,16.7949219 13.1816406,16.4589844 C13.3203125,15.9375 13.390625,15.4140625 13.3886719,14.9355469 C13.3867187,14.6015625 13.0859375,14.3476562 12.7558594,14.4003906 C12.4902344,14.4433594 12.2949219,14.6738281 12.2949219,14.9433594 C12.296875,15.7773437 12.0195312,16.8613281 11.4609375,17.6542969 L7.93359375,17.6542969 C8.23046875,17.2304687 8.44335937,16.7988281 8.58984375,16.4453125 C8.78515625,15.9707031 8.9296875,15.4746094 9.00390625,15.0292969 C9.05859375,14.6972656 8.80078125,14.3945312 8.46484375,14.3945312 C8.19921875,14.3945312 7.97070312,14.5859375 7.92578125,14.8496094 C7.87109375,15.1738281 7.76367187,15.5859375 7.58007812,16.0292969 C7.3828125,16.5097656 7.03710937,17.1640625 6.49414062,17.65625 L3.45507812,17.65625 C3.4453125,17.65625 3.43164062,17.65625 3.41992187,17.6347656 C3.40820312,17.6132812 3.41601562,17.6035156 3.421875,17.5957031 C4.00195312,16.7734375 4.4921875,15.75 4.83789062,14.6386719 C5.15429687,13.6210937 5.33984375,12.5507812 5.38476562,11.5078125 L15.4355469,11.5078125 C15.9375,12.4140625 16.171875,13.359375 16.1523437,14.3867187 Z" id="形状" fill="#5B6167"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>集群</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="应用管理-编排-操作状态-弹窗" transform="translate(-1033, -1332)" stroke="#212332" stroke-width="2">
<g id="1备份" transform="translate(665, 942)">
<g id="编组-11" transform="translate(24, 370)">
<g id="集群" transform="translate(344, 20)">
<g id="编组-10" transform="translate(3.5, 5)">
<rect id="矩形" x="4.5" y="0" width="24" height="10" rx="2"></rect>
<path d="M3.5,23 L3.5,19 C3.5,17.8954305 4.3954305,17 5.5,17 L27.5,17 C28.6045695,17 29.5,17.8954305 29.5,19 L29.5,23 L29.5,23" id="路径"></path>
<line x1="16.4974887" y1="10" x2="16.4974887" y2="23.0318096" id="路径-5"></line>
<rect id="矩形" x="0" y="23" width="7" height="7" rx="1"></rect>
<rect id="矩形" x="13" y="23" width="7" height="7" rx="1"></rect>
<rect id="矩形" x="26" y="23" width="7" height="7" rx="1"></rect>
<line x1="8.8736081" y1="5" x2="10.8736081" y2="5" id="路径-6"></line>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>调用量</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="应用管理--API" transform="translate(-834, -980)" stroke="#212332" stroke-width="1.5">
<g id="4" transform="translate(220, 896)">
<g id="调用量" transform="translate(614, 84)">
<polyline id="路径" points="12 15.0339277 12 21.8396699 3 20 3 6 12 7.83966988 12 9.21373741"></polyline>
<polyline id="路径" transform="translate(16.5, 10.3254) scale(-1, -1) translate(-16.5, -10.3254)" points="21 11.4395175 21 18.2452597 12 16.4055898 12 2.40558979 21 4.24525967 21 5.6193272"></polyline>
<polyline id="路径-3" points="9.07979279 15.3751081 6.55479916 14.11631 17.1657338 9.96254262 14.5304328 8.80931969"></polyline>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>分类</title>
<defs>
<polygon id="path-1" points="0 0 200 0 200 200 0 200"></polygon>
</defs>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-默认状态" transform="translate(-980, -330)">
<g id="分类" transform="translate(980, 330)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="路径"></g>
<g id="编组" mask="url(#mask-2)">
<g transform="translate(18.7578, 31.6328)" id="路径">
<line x1="167.083984" y1="150.638672" x2="0" y2="150.638672" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></line>
<path d="M88.1347656,108.53125 C90.6191406,128.699219 76.28125,147.064453 56.1132813,149.546875 C35.9433594,152.03125 17.5800781,137.693359 15.0957031,117.525391 C12.6132813,97.3554688 26.9492188,78.9921875 47.1191406,76.5097656 C67.2871094,74.0253906 85.6503906,88.3632813 88.1347656,108.53125 Z" stroke="none" fill="#373435" fill-rule="nonzero"></path>
<path d="M88.1347656,108.53125 C90.6191406,128.699219 76.28125,147.064453 56.1132813,149.546875 C35.9433594,152.03125 17.5800781,137.693359 15.0957031,117.525391 C12.6132813,97.3554688 26.9492188,78.9921875 47.1191406,76.5097656 C67.2871094,74.0253906 85.6503906,88.3632813 88.1347656,108.53125 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<polygon stroke="none" fill="#D2D3D5" fill-rule="nonzero" points="87.2597656 77.6855469 160.005859 77.6855469 160.005859 150.431641 87.2597656 150.431641"></polygon>
<polygon stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round" points="87.2597656 77.6855469 160.005859 77.6855469 160.005859 150.431641 87.2597656 150.431641"></polygon>
<polygon stroke="none" fill="#373435" fill-rule="evenodd" points="123.40625 77.15625 132.476562 66.4941406 146.082031 69.7890625 147.154297 55.8320313 160.097656 50.5 152.759766 38.578125 160.097656 26.65625 147.154297 21.3261719 146.082031 7.3671875 132.476562 10.6621094 123.40625 0 114.335938 10.6621094 100.730469 7.3671875 99.6601562 21.3261719 86.7167969 26.65625 94.0546875 38.578125 86.7167969 50.5 99.6601562 55.8320313 100.730469 69.7890625 114.335938 66.4941406"></polygon>
<polygon stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round" points="123.40625 77.15625 132.476562 66.4941406 146.082031 69.7890625 147.154297 55.8320313 160.097656 50.5 152.759766 38.578125 160.097656 26.65625 147.154297 21.3261719 146.082031 7.3671875 132.476562 10.6621094 123.40625 0 114.335938 10.6621094 100.730469 7.3671875 99.6601562 21.3261719 86.7167969 26.65625 94.0546875 38.578125 86.7167969 50.5 99.6601562 55.8320313 100.730469 69.7890625 114.335938 66.4941406"></polygon>
<path d="M21.8027344,123.046875 C21.6835938,123.396484 37.2871094,133.470703 37.4628906,133.470703 C37.4902344,133.462891 43.1816406,130.501953 46.6972656,128.455078 C50.6386719,126.160156 52.5058594,124.615234 53.5761719,121.802734 C55.5039063,116.736328 55.671875,116.490234 55.5683594,116.490234 C55.359375,116.490234 62.8808594,135.707031 62.8808594,135.707031 L83.1367188,135.707031 L69.2148438,80.7148438 L39.5996094,78.2421875 C37.9960938,86.546875 35.9785156,96.4453125 34.375,104.748047 C33.8085938,108.234375 33.4238281,110.140625 31.0351563,112.927734 L21.8046875,123.046875 L21.8027344,123.046875 Z" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M21.8027344,123.046875 C21.6835938,123.396484 37.2871094,133.470703 37.4628906,133.470703 C37.4902344,133.462891 43.1816406,130.501953 46.6972656,128.455078 C50.6386719,126.160156 52.5058594,124.615234 53.5761719,121.802734 C55.5039063,116.736328 55.671875,116.490234 55.5683594,116.490234 C55.359375,116.490234 62.8808594,135.707031 62.8808594,135.707031 L83.1367188,135.707031 L69.2148438,80.7148438 L39.5996094,78.2421875 C37.9960938,86.546875 35.9785156,96.4453125 34.375,104.748047 C33.8085938,108.234375 33.4238281,110.140625 31.0351563,112.927734 L21.8046875,123.046875 L21.8027344,123.046875 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M21.8027344,123.046875 C21.2949219,123.441406 9.56054688,135.255859 9.56054688,135.255859 C9.56054688,135.255859 25.3398438,145.332031 35.0644531,150.638672 C35.0644531,150.638672 46.0332031,150.671875 46.0332031,150.638672 C45.9414063,144.558594 39.5195312,142.71875 39.1972656,141.865234 C39.1972656,141.865234 38.1914062,135.769531 38.1191406,133.605469 L21.8027344,123.044922 L21.8027344,123.046875 Z" stroke="none" fill="#D2D3D5" fill-rule="evenodd"></path>
<path d="M21.8027344,123.046875 C21.2949219,123.441406 9.56054688,135.255859 9.56054688,135.255859 C9.56054688,135.255859 25.3398438,145.332031 35.0644531,150.638672 C35.0644531,150.638672 46.0332031,150.671875 46.0332031,150.638672 C45.9414063,144.558594 39.5195312,142.71875 39.1972656,141.865234 C39.1972656,141.865234 38.1914062,135.769531 38.1191406,133.605469 L21.8027344,123.044922 L21.8027344,123.046875 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M62.7167969,134.289063 C62.5859375,134.935547 62.1875,150.652344 62.1875,150.652344 C62.1875,150.652344 99.4003906,150.701172 99.3847705,150.591797 C97.9082031,140.748047 87.8945313,144.371094 82.8398438,134.304688 L62.7167969,134.289063 Z" stroke="none" fill="#D2D3D5" fill-rule="evenodd"></path>
<path d="M62.7167969,134.289063 C62.5859375,134.935547 62.1875,150.652344 62.1875,150.652344 C62.1875,150.652344 99.4003906,150.701172 99.3847705,150.591797 C97.9082031,140.748047 87.8945313,144.371094 82.8398438,134.304688 L62.7167969,134.289063 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M56.8164062,36.6992188 L58.2890625,27.859375 C62.2597656,29.8671875 64.2421875,29.0976563 65.2382812,28.1230469 C66.9589844,26.4394531 65.1523438,22.4101563 63.4101562,18.7578125 C62.5527344,16.9609375 60.2070313,11.5722656 59.1777344,10.2578125 C55.6425781,5.74023438 50.0917969,7.1171875 49.5644531,11.625 L47.328125,26.0273438 L46.1777344,33.203125 L56.8144531,36.6992188 L56.8164062,36.6992188 Z" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M56.8164062,36.6992188 L58.2890625,27.859375 C62.2597656,29.8671875 64.2421875,29.0976563 65.2382812,28.1230469 C66.9589844,26.4394531 65.1523438,22.4101563 63.4101562,18.7578125 C62.5527344,16.9609375 60.2070313,11.5722656 59.1777344,10.2578125 C55.6425781,5.74023438 50.0917969,7.1171875 49.5644531,11.625 L47.328125,26.0273438 L46.1777344,33.203125 L56.8144531,36.6992188 L56.8164062,36.6992188 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M55.6601563,116.699219 L52.0664063,104.957031 C49.8222656,103.294922 46.796875,100.296875 46.7402344,94.9160156" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<line x1="58.2890625" y1="27.859375" x2="59.0292969" y2="24.0292969" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></line>
<path d="M46.2714844,32.3886719 C46.1328093,32.8222656 38.9941406,74.3574219 38.1328093,79.2109375 C38.1210938,79.28125 70.2597656,84.3652344 70.2597656,84.3652344 C70.2597656,84.3652344 60.2988281,49.5996094 58.03125,39.9023437 C57.8886719,39.2929688 57.3027344,36.4199219 54.7734375,35.4921875 C53.0488281,34.859375 46.2714844,32.3867188 46.2714844,32.3867188 L46.2714844,32.3886719 Z" stroke="none" fill="#373435" fill-rule="evenodd"></path>
<path d="M46.2714844,32.3886719 C46.1328093,32.8222656 38.9941406,74.3574219 38.1328093,79.2109375 C38.1210938,79.28125 70.2597656,84.3652344 70.2597656,84.3652344 C70.2597656,84.3652344 60.2988281,49.5996094 58.03125,39.9023437 C57.8886719,39.2929688 57.3027344,36.4199219 54.7734375,35.4921875 C53.0488281,34.859375 46.2714844,32.3867188 46.2714844,32.3867188 L46.2714844,32.3886719 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M39.4492187,142.140625 C38.4511719,141.728516 36.3554688,141.150391 34.6328125,141.925781" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<polygon stroke="none" fill="#373435" fill-rule="evenodd" points="38.4414062 80.7382812 46.4101562 32.7421875 24.3554688 78.0175781"></polygon>
<polygon stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round" points="38.4414062 80.7382812 46.4101562 32.7421875 24.3554688 78.0175781"></polygon>
<line x1="39.2304688" y1="80.1484375" x2="45.2734375" y2="42.9160156" stroke="#FEFEFE" stroke-width="0.4" fill="none" stroke-linecap="round"></line>
<path d="M55.15625,41.6230469 L55.6113281,36.2148438 L71.5429688,44.9199219 C74.5117188,45.9101563 75.609375,46.0585938 80.7011719,42.8476562 C83.7207031,40.9433594 91.7128906,34.4335938 92.59375,34.1289062 L107.111328,57.0078125 C106.539063,56.96875 101.650391,58.3710938 98.8789062,59.2949219 C78.3066406,66.1523438 78.2167969,64.6269531 71.6757813,58.0175781 L55.15625,41.6210938 L55.15625,41.6230469 Z" stroke="none" fill="#373435" fill-rule="evenodd"></path>
<path d="M55.15625,41.6230469 L55.6113281,36.2148438 L71.5429688,44.9199219 C74.5117188,45.9101563 75.609375,46.0585938 80.7011719,42.8476562 C83.7207031,40.9433594 91.7128906,34.4335938 92.59375,34.1289062 L107.111328,57.0078125 C106.539063,56.96875 101.650391,58.3710938 98.8789062,59.2949219 C78.3066406,66.1523438 78.2167969,64.6269531 71.6757813,58.0175781 L55.15625,41.6210938 L55.15625,41.6230469 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M104.138672,57.6386719 L90.4296875,35.5273437 C93.1992188,33.4316406 94.1230469,31.5273437 96.1210938,27.8867187 C96.890625,26.484375 97.3457031,24.0859375 99.3808594,22.5996094 C101.798828,20.8359375 106.550781,21.96875 107.71875,25.203125 C107.941406,25.8183594 114.216797,22.4570312 119.806641,22.0644531 C122.621094,21.8671875 124.285156,22.7382812 124.958984,24.2070312 C125.527344,25.4472656 125.443359,27.1464844 124.234375,28.6660156 C122.589844,30.7324219 114.632812,34.4589844 114.632812,34.4589844 C117.207031,33.7871094 120.224609,33.9433594 121.136719,36.7460937 C121.822266,38.8535156 120.599609,41.4394531 119.566406,42.6171875 C119.498047,42.6933594 120.857422,43.2558594 121.460937,44.71875 C121.964844,45.9394531 121.90625,47.9160156 120.404297,49.5449219 C118.365234,51.7578125 111.826172,55.0839844 104.136719,57.640625 L104.138672,57.6386719 Z" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M104.138672,57.6386719 L90.4296875,35.5273437 C93.1992188,33.4316406 94.1230469,31.5273437 96.1210938,27.8867187 C96.890625,26.484375 97.3457031,24.0859375 99.3808594,22.5996094 C101.798828,20.8359375 106.550781,21.96875 107.71875,25.203125 C107.941406,25.8183594 114.216797,22.4570312 119.806641,22.0644531 C122.621094,21.8671875 124.285156,22.7382812 124.958984,24.2070312 C125.527344,25.4472656 125.443359,27.1464844 124.234375,28.6660156 C122.589844,30.7324219 114.632812,34.4589844 114.632812,34.4589844 C117.207031,33.7871094 120.224609,33.9433594 121.136719,36.7460937 C121.822266,38.8535156 120.599609,41.4394531 119.566406,42.6171875 C119.498047,42.6933594 120.857422,43.2558594 121.460937,44.71875 C121.964844,45.9394531 121.90625,47.9160156 120.404297,49.5449219 C118.365234,51.7578125 111.826172,55.0839844 104.136719,57.640625 L104.138672,57.6386719 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M119.796875,42.3847656 C119.425781,43.0214844 117.113281,44.1894531 114.943359,44.7871094" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<line x1="116.09375" y1="33.7910156" x2="111.978516" y2="35.734375" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></line>
<line x1="109.123047" y1="24.8808594" x2="104.021484" y2="27.2324219" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></line>
<path d="M39.0039063,80.390625 L24.3554688,78.0175781 C19.8808594,83.8164062 15.0214844,98.2949219 23.3339844,102.654297 C25.0117188,103.533203 29.2890625,102.554687 29.1640625,99.40625 C29.1445313,98.8964844 30.7871094,103.091797 34.8613281,102.246094 L39.0039063,80.3925781 L39.0039063,80.390625 Z" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M39.0039063,80.390625 L24.3554688,78.0175781 C19.8808594,83.8164062 15.0214844,98.2949219 23.3339844,102.654297 C25.0117188,103.533203 29.2890625,102.554687 29.1640625,99.40625 C29.1445313,98.8964844 30.7871094,103.091797 34.8613281,102.246094 L39.0039063,80.3925781 L39.0039063,80.390625 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M29.1640625,99.40625 C28.2070312,97.1621094 27.1132812,94.8984375 27.5976562,91.6601562" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="88px" height="88px" viewBox="0 0 88 88" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 8</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-默认状态" transform="translate(-312, -560)">
<g id="知识库" transform="translate(16, 454)">
<g id="编组-8" transform="translate(296, 106)">
<g transform="translate(7.3333, 4.5833)">
<polyline id="路径-41" fill="#373435" points="15.423632 66.9630616 15.423632 72.4393154 38.3580856 72.4393154 38.3580856 75.1702037 49.3534482 75.1702037 49.3534482 72.3885187 72.2833903 72.3885187 72.2833903 26.5592147 68.6129039 26.5592147 68.6129039 66.9630616 44.7783012 66.9630616 44.7783012 69.6657594 33.8805234 69.6657594 33.8805234 66.9356353"></polyline>
<path d="M65.1892926,21.6062749 L68.5958452,22.8901273 L68.5958452,66.8901273 L44.7663332,66.8901273 L44.7663332,69.6215523 L33.7973668,69.6215523 L33.7973668,66.8901273 L9.92917858,66.8901273 L9.92917858,62.3455454 M9.92917858,57.2942075 L9.92917858,22.8901273 L39.3018298,22.8901273 L39.3018298,64.1951611 C39.3018298,64.9545526 39.9174382,65.5701611 40.6768298,65.5701611 C40.9666904,65.5701611 41.2491371,65.4785583 41.4838244,65.3084376 L60.5111554,51.5158591 L60.5111554,51.5158591 L60.5111554,9.11833779 C60.5111554,8.61207677 60.1007498,8.20167113 59.5944887,8.20167113 C59.3968912,8.20167113 59.2045832,8.26552114 59.0462252,8.38370535 L45.1735474,18.7370241 L45.1735474,18.7370241" id="形状" stroke="#212332" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M1.82831353,53.6302269 L0.539032051,55.7243391 C0.249483789,56.1946372 0.396010437,56.8106143 0.86630848,57.1001626 C0.874187703,57.1050136 0.882133875,57.109755 0.8901447,57.1143854 L13.2912605,64.2825256 L13.2912605,64.2825256 L17.310284,64.2825256 L15.2250267,60.4151074 L3.18907473,53.2938589 C2.71965806,53.0161216 2.11426617,53.165769 1.82831353,53.6302269 Z" id="路径-38" stroke="#212332" stroke-width="0.7" fill="#D2D3D5" stroke-linecap="round" stroke-linejoin="round"></path>
<line x1="15.2250267" y1="60.4151074" x2="13.0772919" y2="64.1611137" id="路径-39" stroke="#212332" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"></line>
<line x1="4.82803508" y1="54.3499796" x2="2.42888847" y2="58.0318079" id="路径-40" stroke="#212332" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"></line>
<line x1="60.378044" y1="0" x2="60.378044" y2="4.56741611" id="路径-42" stroke="#212332" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"></line>
<line x1="62.1929916" y1="5.51414715" x2="65.2490049" y2="2.06288941" id="路径-43" stroke="#212332" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"></line>
<line x1="63.1231396" y1="7.2904132" x2="67.6756393" y2="7.2904132" id="路径-44" stroke="#212332" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"></line>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>查询数据治理</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="应用管理--API" transform="translate(-508, -980)" stroke="#212332" stroke-width="1.5">
<g id="4" transform="translate(220, 896)">
<g id="查询数据治理" transform="translate(288, 84)">
<g id="编组-13" transform="translate(3, 3.5)">
<path d="M4.49475285,12.0591915 L2.205,12.0591915 C0.987212127,12.0591915 0,11.0719794 0,9.85419155 L-4.4408921e-16,2.205 C-4.4408921e-16,0.987212127 0.987212127,4.4408921e-16 2.205,4.4408921e-16 L15.795,0 C17.0127879,-1.33226763e-15 18,0.987212127 18,2.205 L18,5.49726393 L18,5.49726393" id="路径"></path>
<ellipse id="椭圆形" cx="12.9375" cy="11.5110465" rx="3.9375" ry="3.83701549"></ellipse>
<line x1="15.7709074" y1="14.2467681" x2="18" y2="16.4749386" id="路径-4"></line>
<line x1="2.29448903" y1="16.4518549" x2="6.74538465" y2="16.4518549" id="路径-5"></line>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>t-box-line</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-48, -1071)" stroke="#212332">
<g id="变量设置" transform="translate(16, 922)">
<g id="t-box-line" transform="translate(32, 149)">
<rect id="矩形" x="2" y="2" width="12" height="12" rx="3"></rect>
<line x1="6" y1="5.99887957" x2="10" y2="5.99887957" id="路径-7" stroke-linecap="round" stroke-linejoin="round"></line>
<line x1="8" y1="5.99897957" x2="8" y2="10.4995679" id="路径-8" stroke-linecap="round" stroke-linejoin="round"></line>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 970 B

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Token (1)</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理--API" transform="translate(-1160, -980)" stroke="#212332" stroke-width="1.5">
<g id="4" transform="translate(220, 896)">
<g id="Token-(1)" transform="translate(940, 84)">
<path d="M20.5,9.35602232 L20.5,5.49064425 C20.5,5.03218679 20.1398868,4.65873695 19.6915647,4.65236949 L18.6781739,4.65236949 L17.9494435,4.57087056 C17.1942287,4.4555054 16.4535429,4.25640625 15.7404793,3.97709261 C15.0301183,3.6871072 14.3413216,3.34468482 13.6795385,2.95253457 C13.4631967,2.83610752 13.2696276,2.71968047 13.1102179,2.61489612 C12.9508081,2.51011178 13.0077401,2.5450399 12.9735809,2.51011178 L12.9280353,2.47518365 L12.4611923,2.14918791 C12.1803635,1.9502707 11.8083352,1.9502707 11.5275064,2.14918791 L11.0720499,2.48682636 C11.0037314,2.48682636 10.6849119,2.74296588 10.3205466,2.95253457 C9.65842411,3.34068573 8.96963626,3.67921257 8.25960586,3.9654499 C7.54653946,4.24475475 6.80585464,4.44385364 6.05064172,4.55922785 L5.32191128,4.64072678 L4.2971341,4.64072678 C3.84881731,4.65341851 3.49368438,5.03210754 3.5,5.49064425 L3.5,13.2097577 C3.5,17.2264909 8.53287979,22 11.9943494,22 C15.455819,22 20.5,17.2264909 20.5,13.2097577 L20.5,9.35602232 Z" id="路径" fill-rule="nonzero"></path>
<rect id="矩形" x="8.5" y="11" width="7" height="5" rx="1"></rect>
<path d="M10.5,11 L10.5,9.5 C10.5,8.67157288 11.1715729,8 12,8 C12.8284271,8 13.5,8.67157288 13.5,9.5 L13.5,11 L13.5,11" id="路径"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="88px" height="88px" viewBox="0 0 88 88" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 4</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-默认状态" transform="translate(-312, -1001)">
<g id="变量设置" transform="translate(16, 854)">
<g id="编组-4" transform="translate(296, 147)">
<g transform="translate(6.6, 16.5)">
<path d="M9.59885431,14.3602629 L0.62096034,36.2897577 C0.390787927,36.8519792 0.659966871,37.4943413 1.22218834,37.7245138 C1.35446245,37.7786665 1.49602244,37.8065217 1.63895236,37.8065217 L9.64333503,37.8065217 L9.64333503,37.8065217 L9.59885431,14.3602629 Z" id="路径" fill="#373435"></path>
<path d="M9.59885431,14.3602629 L0.62096034,36.2897577 C0.390787927,36.8519792 0.659966871,37.4943413 1.22218834,37.7245138 C1.35446245,37.7786665 1.49602244,37.8065217 1.63895236,37.8065217 L9.64333503,37.8065217 L9.64333503,37.8065217" id="路径" stroke="#212332" stroke-width="0.7"></path>
<path d="M9.64333503,14.6347826 L50.6275089,14.6347826 L50.6275089,56.1 L11.843335,56.1 C10.6283086,56.1 9.64333503,55.1150264 9.64333503,53.9 L9.64333503,14.6347826 L9.64333503,14.6347826 Z" id="矩形" stroke="#212332" stroke-width="0.7" fill="#FBFDFF"></path>
<path d="M50.6275089,14.6347826 L67.5033452,14.6347826 L67.5033452,53.9 C67.5033452,55.1150264 66.5183717,56.1 65.3033452,56.1 L50.6275089,56.1 L50.6275089,56.1 L50.6275089,14.6347826 Z" id="矩形" stroke="#212332" stroke-width="0.7" fill="#FBFDFF"></path>
<path d="M50.6275089,14.6347826 L67.5033452,14.6347826 L74.8311959,34.8570079 C75.245141,35.999347 74.6546609,37.2609647 73.5123218,37.6749097 C73.2720256,37.7619849 73.0183941,37.8065217 72.7628079,37.8065217 L60.5669446,37.8065217 C59.6409255,37.8065217 58.8140403,37.2266569 58.4985566,36.3560356 L50.6275089,14.6347826 L50.6275089,14.6347826 Z" id="矩形" stroke="#212332" stroke-width="0.7" fill="#FBFDFF"></path>
<line x1="22.9701292" y1="48.8376809" x2="36.2297149" y2="48.8376809" id="路径-47" stroke="#212332" stroke-width="0.7"></line>
<line x1="50.5554849" y1="0" x2="50.5554849" y2="5.46898434" id="路径-42" stroke="#212332" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"></line>
<line x1="52.7022035" y1="6.60259184" x2="56.316661" y2="2.47008584" id="路径-43" stroke="#212332" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"></line>
<line x1="53.8023233" y1="8.72936151" x2="59.1867294" y2="8.72936151" id="路径-44" stroke="#212332" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"></line>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>工作流</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-弹窗" transform="translate(-885, -1332)">
<g id="1备份" transform="translate(665, 942)">
<g id="编组-11" transform="translate(24, 370)">
<g id="工作流" transform="translate(196, 20)">
<g id="编组-9" transform="translate(6, 6)">
<rect id="矩形" stroke="#212332" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x="7.46666667" y="0" width="19.6" height="6.53333333" rx="1"></rect>
<path d="M21.4856759,24.7333333 L27,24.7333333 C27.5522847,24.7333333 28,24.2856181 28,23.7333333 L28,15 C28,14.4477153 27.5522847,14 27,14 L1,14 C0.44771525,14 0,13.5522847 0,13 L0,4.26666667 C0,3.71438192 0.44771525,3.26666667 1,3.26666667 L7.49613281,3.26666667 L7.49613281,3.26666667" id="路径" stroke="#212332" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<rect id="矩形" stroke="#212332" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" x="1.86666667" y="21.4666667" width="19.6" height="6.53333333" rx="1"></rect>
<path d="M14.7037874,10.5071068 L17.4895738,13.2928932 C17.8800981,13.6834175 17.8800981,14.3165825 17.4895738,14.7071068 L14.7037874,17.4928932 C14.3132631,17.8834175 13.6800981,17.8834175 13.2895738,17.4928932 L10.5037874,14.7071068 C10.1132631,14.3165825 10.1132631,13.6834175 10.5037874,13.2928932 L13.2895738,10.5071068 C13.6800981,10.1165825 14.3132631,10.1165825 14.7037874,10.5071068 Z" id="多边形" fill="#212332"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>关闭</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-1396, -148)" fill="#5B6167" fill-rule="nonzero">
<g id="聊天页面" transform="translate(736, 136)">
<g id="关闭" transform="translate(660, 12)">
<polygon id="路径" points="9.00000098 8 13.3333333 12.3333324 12.3333324 13.3333333 8 9.00000098 3.66666764 13.3333333 2.66666667 12.3333324 6.99999902 8 2.66666667 3.66666764 3.66666764 2.66666667 8 6.99999902 12.3333324 2.66666667 13.3333333 3.66666764"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 900 B

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>关闭</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-1396, -148)" fill="#212332" fill-rule="nonzero">
<g id="聊天页面" transform="translate(736, 136)">
<g id="关闭" transform="translate(660, 12)">
<polygon id="路径" points="9.00000098 8 13.3333333 12.3333324 12.3333324 13.3333333 8 9.00000098 3.66666764 13.3333333 2.66666667 12.3333324 6.99999902 8 2.66666667 3.66666764 3.66666764 2.66666667 8 6.99999902 12.3333324 2.66666667 13.3333333 3.66666764"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 900 B

View File

@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>客户服务</title>
<defs>
<polygon id="path-1" points="0 0 200 0 200 200 0 200"></polygon>
</defs>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆对话-默认对话" transform="translate(-1038, -328)">
<g id="客户服务" transform="translate(1038, 328)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="路径"></g>
<g id="编组" mask="url(#mask-2)">
<g transform="translate(16.459, 19.0352)" id="路径">
<path d="M62.7148438,117.394531 L110.972656,117.394531 C115.652344,117.394531 119.480469,121.222656 119.480469,125.902344 C119.480469,130.582031 115.652344,134.410156 110.972656,134.410156 L62.7148438,134.410156 C58.0351562,134.410156 54.2070312,130.582031 54.2070312,125.902344 C54.2070312,121.222656 58.0351562,117.394531 62.7148438,117.394531 Z" stroke="none" fill="#373435" fill-rule="evenodd"></path>
<path d="M62.7148438,117.394531 L110.972656,117.394531 C115.652344,117.394531 119.480469,121.222656 119.480469,125.902344 C119.480469,130.582031 115.652344,134.410156 110.972656,134.410156 L62.7148438,134.410156 C58.0351562,134.410156 54.2070312,130.582031 54.2070312,125.902344 C54.2070312,121.222656 58.0351562,117.394531 62.7148438,117.394531 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M110.314453,93.015625 L93.4921875,93.0332031 C90.6777344,93.0644531 77.421875,93.0488281 71.3046875,92.9511719 C61.7539063,92.7988281 61.0410156,95.4980469 56.8398438,101.033203 C53.3964844,105.570312 45.109375,117.931641 44.6503906,118.757812 L58.4648438,131.601562 C59.3183594,130.804687 71.4042969,117.392578 73.3496094,116.738281 L81.0605469,144.648437 L100.986328,144.039062 L96.9277344,117.90625 C98.8085938,117.96875 107.255859,117.957031 109.546875,117.886719 C126.474609,115.771484 110.371094,93.2304687 110.316406,93.015625 L110.314453,93.015625 Z" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M110.314453,93.015625 L93.4921875,93.0332031 C90.6777344,93.0644531 77.421875,93.0488281 71.3046875,92.9511719 C61.7539063,92.7988281 61.0410156,95.4980469 56.8398438,101.033203 C53.3964844,105.570312 45.109375,117.931641 44.6503906,118.757812 L58.4648438,131.601562 C59.3183594,130.804687 71.4042969,117.392578 73.3496094,116.738281 L81.0605469,144.648437 L100.986328,144.039062 L96.9277344,117.90625 C98.8085938,117.96875 107.255859,117.957031 109.546875,117.886719 C126.474609,115.771484 110.371094,93.2304687 110.316406,93.015625 L110.314453,93.015625 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M73.3496094,116.740234 L70.9199219,108.498047 C69.4472656,102.380859 74.3105469,94.4101563 84.5214844,93.0390625" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M31.2851563,130.501953 C31.2539063,130.271484 31.2734375,110.951172 31.2734375,110.951172 C31.2558594,110.621094 38.4179688,110.613281 39.453125,118.365234 C43.4863281,118.246094 44.8945313,118.837891 44.8945313,118.837891 L58.2929688,131.486328 L46.0917969,145.011719 L31.2871094,130.501953 L31.2851563,130.501953 Z" stroke="none" fill="#D2D3D5" fill-rule="evenodd"></path>
<path d="M31.2851563,130.501953 C31.2539063,130.271484 31.2734375,110.951172 31.2734375,110.951172 C31.2558594,110.621094 38.4179688,110.613281 39.453125,118.365234 C43.4863281,118.246094 44.8945313,118.837891 44.8945313,118.837891 L58.2929688,131.486328 L46.0917969,145.011719 L31.2871094,130.501953 L31.2851563,130.501953 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M100.873047,144.039063 C101.222656,144.630859 105.507812,160.808594 105.507812,160.808594 C105.507812,160.808594 71.4257812,160.960938 71.4179687,160.865234 C70.6132812,152.113281 82.8066406,153.957031 81.0429688,144.646484 L100.871094,144.037109 L100.873047,144.039063 Z" stroke="none" fill="#D2D3D5" fill-rule="evenodd"></path>
<path d="M100.873047,144.039063 C101.222656,144.630859 105.507812,160.808594 105.507812,160.808594 C105.507812,160.808594 71.4257812,160.960938 71.4179687,160.865234 C70.6132812,152.113281 82.8066406,153.957031 81.0429688,144.646484 L100.871094,144.037109 L100.873047,144.039063 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<line x1="57.4882812" y1="130.666016" x2="44.6503906" y2="118.759766" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></line>
<path d="M39.4511719,118.365234 C39.7460938,118.910156 39.2226562,122.632812 38.9902344,123.003906" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<line x1="0" y1="160.912109" x2="167.082031" y2="160.912109" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></line>
<path d="M12.8613281,85.9941406 L156.185547,85.9941406 C156.185547,93.7441406 149.845703,100.083984 142.095703,100.083984 L26.9511719,100.083984 C19.2011719,100.083984 12.8613281,93.7441406 12.8613281,85.9941406 Z" stroke="none" fill="#D2D3D5" fill-rule="evenodd"></path>
<path d="M12.8613281,85.9941406 L156.185547,85.9941406 C156.185547,93.7441406 149.845703,100.083984 142.095703,100.083984 L26.9511719,100.083984 C19.2011719,100.083984 12.8613281,93.7441406 12.8613281,85.9941406 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M26.2207031,85.9941406 L145.738281,85.9941406 L145.738281,19.6523437 C145.738281,17.1269531 143.671875,15.0625 141.148438,15.0625 L30.8125,15.0625 C28.2871094,15.0625 26.2226562,17.1289062 26.2226562,19.6523437 L26.2226562,85.9941406 L26.2207031,85.9941406 Z" stroke="none" fill="#D2D3D5" fill-rule="evenodd"></path>
<path d="M26.2207031,85.9941406 L145.738281,85.9941406 L145.738281,19.6523437 C145.738281,17.1269531 143.671875,15.0625 141.148438,15.0625 L30.8125,15.0625 C28.2871094,15.0625 26.2226562,17.1289062 26.2226562,19.6523437 L26.2226562,85.9941406 L26.2207031,85.9941406 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<polygon stroke="none" fill="#FBFDFF" fill-rule="nonzero" points="31.5664062 20.1601563 139.666016 20.1601563 139.666016 85.9921875 31.5664062 85.9921875"></polygon>
<polygon stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round" points="31.5664062 20.1601563 139.666016 20.1601563 139.666016 85.9921875 31.5664062 85.9921875"></polygon>
<path d="M88.0585938,38.6445313 C88.0585938,38.6445313 105.683594,81.140625 107.578143,85.9941406 C107.605469,86.0664063 76.640625,85.703125 76.2734375,85.9941406 C76.2734375,85.9941406 77.6367188,67.5996094 78.0117188,59.2148438 C78.3359375,51.9707031 77.9824219,44.2382813 79.9589844,42.9882813 C80.3515625,42.7402344 88.0585938,38.6425781 88.0585938,38.6425781 L88.0585938,38.6445313 Z" stroke="none" fill="#373435" fill-rule="evenodd"></path>
<path d="M88.0585938,38.6445313 C88.0585938,38.6445313 105.683594,81.140625 107.578143,85.9941406 C107.605469,86.0664063 76.640625,85.703125 76.2734375,85.9941406 C76.2734375,85.9941406 77.6367188,67.5996094 78.0117188,59.2148438 C78.3359375,51.9707031 77.9824219,44.2382813 79.9589844,42.9882813 C80.3515625,42.7402344 88.0585938,38.6425781 88.0585938,38.6425781 L88.0585938,38.6445313 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M79.2519531,43.3691406 L88.0585938,38.6445313 L86.0976562,33.5722656 L80.7929688,19.1699219 C79.3046875,14.6621094 73.4609375,13.2851563 70.8886719,17.8027344 C70.140625,19.1171875 68.9414063,24.5058594 68.46875,26.3027344 C67.5058594,29.953125 66.5585938,33.984375 68.6367188,35.6679688 C69.8398438,36.6425781 72.4628906,37.1542969 76.0058594,35.1445313 L79.2539063,43.3671875 L79.2519531,43.3691406 Z" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M79.2519531,43.3691406 L88.0585938,38.6445313 L86.0976562,33.5722656 L80.7929688,19.1699219 C79.3046875,14.6621094 73.4609375,13.2851563 70.8886719,17.8027344 C70.140625,19.1171875 68.9414063,24.5058594 68.46875,26.3027344 C67.5058594,29.953125 66.5585938,33.984375 68.6367188,35.6679688 C69.8398438,36.6425781 72.4628906,37.1542969 76.0058594,35.1445313 L79.2539063,43.3671875 L79.2519531,43.3691406 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M71.8027344,29.7382813 C72.96875,29.9238281 75.921875,30.5292969 76.3203125,27.4433594" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M86.3027344,46.6796875 L83.7851562,42.6035156 L65.8125,45.4257813 C62.8007812,46.2109375 57.5742188,46.828125 54.9804688,44.8535156 C53.5273438,43.7480469 47.5957031,37.7207031 47.5957031,37.7207031 L24.6796875,49.5234375 C26.9296875,52.3027344 34.1015625,59.015625 39.3066406,62.1933594 C44.140625,65.1445313 52.5507812,64.9042969 60.9375,59.9316406 L86.3027344,46.6796875 Z" stroke="none" fill="#373435" fill-rule="evenodd"></path>
<path d="M86.3027344,46.6796875 L83.7851562,42.6035156 L65.8125,45.4257813 C62.8007812,46.2109375 57.5742188,46.828125 54.9804688,44.8535156 C53.5273438,43.7480469 47.5957031,37.7207031 47.5957031,37.7207031 L24.6796875,49.5234375 C26.9296875,52.3027344 34.1015625,59.015625 39.3066406,62.1933594 C44.140625,65.1445313 52.5507812,64.9042969 60.9375,59.9316406 L86.3027344,46.6796875 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M24.6308594,49.3671875 L47.7636719,37.9804687 C47.203125,35.4960937 46.8769531,34.5644531 47.9589844,30.2753906 C48.4648438,28.2695312 49.3847656,25.0117187 49.4257813,22.9042969 C49.4765625,20.2597656 47.5039063,17.9140625 44.8359375,19.1542969 C42.7792969,20.1113281 39.3300781,25.8476562 39.3300781,25.8476562 C39.0429688,25.1015625 36.9902344,20.0078125 35.2539063,16.6484375 C32.8652344,12.0292969 27.5761719,13.1601562 28.0546875,18.7304687 C28.25,20.9863281 29.234375,24.8867187 29.5058594,25.6347656 C30.0195313,27.046875 26.0507813,20.0839844 25.4628906,19.0449219 C23.7714844,16.0644531 20.9746094,15.7324219 19.2929688,17.0839844 C17.6640625,18.3925781 17.0898438,21.2714844 18.8730469,25.4082031 C19.4882813,26.8359375 20.515625,30.1640625 21.6367188,31.8300781 C21.984375,32.3457031 19.8496094,29.0078125 17.8964844,27.5488281 C16.1425781,26.2402344 14.1679688,26.578125 13.1601563,27.4746094 C11.5136719,28.9433594 11.6777344,32.2929687 13.8945313,35.2460937 C14.7128906,36.3378906 24.3710938,49.5195312 24.6328125,49.3652344 L24.6308594,49.3671875 Z" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M24.6308594,49.3671875 L47.7636719,37.9804687 C47.203125,35.4960937 46.8769531,34.5644531 47.9589844,30.2753906 C48.4648438,28.2695312 49.3847656,25.0117187 49.4257813,22.9042969 C49.4765625,20.2597656 47.5039063,17.9140625 44.8359375,19.1542969 C42.7792969,20.1113281 39.3300781,25.8476562 39.3300781,25.8476562 C39.0429688,25.1015625 36.9902344,20.0078125 35.2539063,16.6484375 C32.8652344,12.0292969 27.5761719,13.1601562 28.0546875,18.7304687 C28.25,20.9863281 29.234375,24.8867187 29.5058594,25.6347656 C30.0195313,27.046875 26.0507813,20.0839844 25.4628906,19.0449219 C23.7714844,16.0644531 20.9746094,15.7324219 19.2929688,17.0839844 C17.6640625,18.3925781 17.0898438,21.2714844 18.8730469,25.4082031 C19.4882813,26.8359375 20.515625,30.1640625 21.6367188,31.8300781 C21.984375,32.3457031 19.8496094,29.0078125 17.8964844,27.5488281 C16.1425781,26.2402344 14.1679688,26.578125 13.1601563,27.4746094 C11.5136719,28.9433594 11.6777344,32.2929687 13.8945313,35.2460937 C14.7128906,36.3378906 24.3710938,49.5195312 24.6328125,49.3652344 L24.6308594,49.3671875 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M39.2480469,25.8964844 C35.5253906,27.2675781 31.5039062,31.59375 32.5566406,37.8945312" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<line x1="31.1386719" y1="100.083984" x2="31.1386719" y2="160.912109" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></line>
<line x1="139.0625" y1="100.083984" x2="139.0625" y2="160.912109" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></line>
<line x1="107.945312" y1="134.410156" x2="118.755859" y2="160.912109" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></line>
<line x1="63.8261719" y1="134.410156" x2="53.015625" y2="160.912109" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></line>
<path d="M89.3300781,41.7109375 L85.5058594,42.9316406 L87.6542969,54.9199219 C88.515625,57.5234375 88.9707031,61.4902344 85.9960938,61.7675781 C84.3300781,61.921875 75.5820312,61.8066406 75.5820312,61.8066406 L86.7460938,85.5703125 C90.8222656,86.1210937 107.580078,85.9960937 110.53125,85.9960937 C115.173828,85.9960937 117.175781,82.015625 110.865234,72.6992187 L89.3320312,41.7128906 L89.3300781,41.7109375 Z" stroke="none" fill="#373435" fill-rule="evenodd"></path>
<path d="M89.3300781,41.7109375 L85.5058594,42.9316406 L87.6542969,54.9199219 C88.515625,57.5234375 88.9707031,61.4902344 85.9960938,61.7675781 C84.3300781,61.921875 75.5820312,61.8066406 75.5820312,61.8066406 L86.7460938,85.5703125 C90.8222656,86.1210937 107.580078,85.9960937 110.53125,85.9960937 C115.173828,85.9960937 117.175781,82.015625 110.865234,72.6992187 L89.3320312,41.7128906 L89.3300781,41.7109375 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M76.8515625,60.6230469 L82.7421875,60.6230469 C83.9863281,60.6230469 87.8007812,60.9433594 87.9589844,59.1054687 C87.9921875,58.7265625 88.140625,58.0234375 87.9648438,57.6484375 L87.4179688,47.2636719" stroke="#FBFDFF" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M71.7324219,61.78125 C67.4238281,62.078125 57.7207031,61.5996094 53.9375,63.1347656 C50.7851563,64.4140625 49.859375,68.1230469 54.9179688,69.7207031 C64.7324219,72.8222656 73.4140625,61.6640625 71.7324219,61.7792969 L71.7324219,61.78125 Z" stroke="none" fill="#FEFEFE" fill-rule="evenodd"></path>
<path d="M71.7324219,61.78125 C67.4238281,62.078125 57.7207031,61.5996094 53.9375,63.1347656 C50.7851563,64.4140625 49.859375,68.1230469 54.9179688,69.7207031 C64.7324219,72.8222656 73.4140625,61.6640625 71.7324219,61.7792969 L71.7324219,61.78125 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M76.1992188,61.8125 C71.2441406,61.75 66.0644531,61.9355469 61.7089844,64.5214844 C57.859375,66.8066406 53.3847656,69.8046875 51.890625,74.1679687 C49.9960938,79.7011719 55.1835938,83.421875 59.4082031,79.96875 C62.7519531,77.234375 61.9746094,77.8378906 61.7871094,78.1503906 C61.5097656,78.6113281 59.1992188,82.1328125 61.9785156,84.3359375 C64.9570313,86.6992187 69.9960938,81.5742187 70.9414062,80.9628906 C70.0410156,82.21875 69.5332031,88.9179687 79.7285156,83.7753906 C81.6054688,82.8300781 83.0859375,85.9921875 85.5859375,85.8222656 L76.2011719,61.8105469 L76.1992188,61.8125 Z" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M76.1992188,61.8125 C71.2441406,61.75 66.0644531,61.9355469 61.7089844,64.5214844 C57.859375,66.8066406 53.3847656,69.8046875 51.890625,74.1679687 C49.9960938,79.7011719 55.1835938,83.421875 59.4082031,79.96875 C62.7519531,77.234375 61.9746094,77.8378906 61.7871094,78.1503906 C61.5097656,78.6113281 59.1992188,82.1328125 61.9785156,84.3359375 C64.9570313,86.6992187 69.9960938,81.5742187 70.9414062,80.9628906 C70.0410156,82.21875 69.5332031,88.9179687 79.7285156,83.7753906 C81.6054688,82.8300781 83.0859375,85.9921875 85.5859375,85.8222656 L76.2011719,61.8105469 L76.1992188,61.8125 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M115.673828,0 L148.330078,0 C159.207031,0 168.105469,8.8984375 168.105469,19.7753906 C168.105469,30.6523438 159.207031,39.5507812 148.330078,39.5507812 L120.462891,39.5507812 C117.599609,43.171875 114.132812,45.3144531 109.205078,45.3144531 C106.341797,45.3144531 106.753906,43.6464844 107.902344,43.0351563 C110.654297,41.5722656 109.957031,39.9746094 109.195312,38.453125 C101.474609,35.7558594 95.8984375,28.3867188 95.8984375,19.7753906 C95.8984375,8.8984375 104.796875,0 115.673828,0 Z" stroke="none" fill="#D2D3D5" fill-rule="evenodd"></path>
<path d="M115.673828,0 L148.330078,0 C159.207031,0 168.105469,8.8984375 168.105469,19.7753906 C168.105469,30.6523438 159.207031,39.5507812 148.330078,39.5507812 L120.462891,39.5507812 C117.599609,43.171875 114.132812,45.3144531 109.205078,45.3144531 C106.341797,45.3144531 106.753906,43.6464844 107.902344,43.0351563 C110.654297,41.5722656 109.957031,39.9746094 109.195312,38.453125 C101.474609,35.7558594 95.8984375,28.3867188 95.8984375,19.7753906 C95.8984375,8.8984375 104.796875,0 115.673828,0 Z" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M114.148438,13.9199219 C117.402344,13.9199219 120.039062,16.5566406 120.039062,19.8105469 C120.039062,23.0644531 117.402344,25.7011719 114.148438,25.7011719 C110.894531,25.7011719 108.257812,23.0644531 108.257812,19.8105469 C108.257812,16.5566406 110.894531,13.9199219 114.148438,13.9199219" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M132.0625,13.9199219 C128.808594,13.9199219 126.171875,16.5566406 126.171875,19.8105469 C126.171875,23.0644531 128.808594,25.7011719 132.0625,25.7011719 C135.316406,25.7011719 137.953125,23.0644531 137.953125,19.8105469 C137.953125,16.5566406 135.316406,13.9199219 132.0625,13.9199219" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M149.976562,13.9199219 C146.722656,13.9199219 144.085938,16.5566406 144.085938,19.8105469 C144.085938,23.0644531 146.722656,25.7011719 149.976562,25.7011719 C153.230469,25.7011719 155.867188,23.0644531 155.867188,19.8105469 C155.867188,16.5566406 153.230469,13.9199219 149.976562,13.9199219" stroke="none" fill="#FBFDFF" fill-rule="evenodd"></path>
<path d="M61.0625,78.7578125 C61.3613281,78.4960938 65.9707031,73.2792969 68.3105469,71.8828125" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
<path d="M70.9394531,80.9648437 C71.7128906,80.1757812 73.9453125,78.0136719 75.0839844,77.5019531" stroke="#373435" stroke-width="0.4" fill="none" stroke-linecap="round"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>对话</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-用户权限-对话" transform="translate(-317, -87)" fill="#212332" fill-rule="nonzero" stroke="#212332" stroke-width="0.3">
<g id="编组-14" transform="translate(252, 76)">
<g id="对话" transform="translate(65, 11)">
<path d="M12.5740039,11.1940039 L12.5740039,4.61400391 C12.5740039,3.95199219 12.0359961,3.41400391 11.3740039,3.41400391 L3.52597656,3.41400391 C2.86398438,3.41400391 2.32597656,3.95199219 2.32597656,4.61400391 L2.32597656,11.1959961 C2.32597656,11.8580078 2.86398438,12.3959961 3.52597656,12.3959961 L4.5,12.3959961 L4.5,13.4680078 C4.5,13.6939844 4.62599609,13.9 4.82800781,14.0019922 C4.91400391,14.0459961 5.00800781,14.0680078 5.1,14.0680078 C5.22400391,14.0680078 5.34800781,14.03 5.45199219,13.9540039 L7.6,12.3940039 L11.3740039,12.3940039 C12.0359961,12.3940039 12.5740039,11.8559961 12.5740039,11.1940039 Z M7.53599609,11.5940039 C7.40954959,11.5937486 7.28629101,11.6336699 7.18400391,11.7080078 L5.3,13.0759766 L5.3,12.1959766 C5.3,11.8659766 5.03,11.5959766 4.7,11.5959766 L3.52599609,11.5959766 C3.30599609,11.5959766 3.12599609,11.4159766 3.12599609,11.1959766 L3.12599609,4.61400391 C3.12599609,4.39400391 3.30599609,4.21400391 3.52599609,4.21400391 L11.3740234,4.21400391 C11.5940234,4.21400391 11.7740234,4.39400391 11.7740234,4.61400391 L11.7740234,11.1959961 C11.7740234,11.4159961 11.5940234,11.5959961 11.3740234,11.5959961 L7.53599609,11.5959961 L7.53599609,11.5940039 Z M16.4740234,6.03398437 L13.8419922,6.03398437 C13.6219922,6.03398437 13.4419922,6.21398437 13.4419922,6.43398437 C13.4419922,6.65398437 13.6219922,6.83398437 13.8419922,6.83398437 L16.4740234,6.83398437 C16.6940234,6.83398437 16.8740234,7.01398437 16.8740234,7.23398437 L16.8740234,13.8379883 C16.8740234,14.0579883 16.6940234,14.2379883 16.4740234,14.2379883 L14.9020117,14.2379883 C14.5720117,14.2379883 14.3020117,14.5079883 14.3020117,14.8379883 L14.3020117,15.5979883 L12.4260352,14.2659766 C12.3240234,14.1939844 12.2040234,14.1559766 12.0780273,14.1559766 L10.2160156,14.1559766 C9.99601563,14.1559766 9.81601563,13.9759766 9.81601563,13.7559766 L9.81601563,13.3759766 C9.81601563,13.1559766 9.63601563,12.9759766 9.41601562,12.9759766 C9.19601563,12.9759766 9.01601563,13.1559766 9.01601563,13.3759766 L9.01601563,13.7559766 C9.01601563,14.4179883 9.55402344,14.9559766 10.2160156,14.9559766 L12.0140234,14.9559766 L14.1540234,16.4759766 C14.2580273,16.5499805 14.3800195,16.5879884 14.5020117,16.5879884 C14.5981711,16.5879884 14.6929001,16.5647017 14.7780273,16.5199805 C14.9780273,16.4159766 15.1020117,16.2119727 15.1020117,15.9859961 L15.1020117,15.0399805 L16.4740234,15.0399805 C17.1360156,15.0399805 17.6740234,14.5019727 17.6740234,13.8399805 L17.6740234,7.23400391 C17.6740234,6.57199219 17.1360156,6.03398437 16.4740234,6.03398437 L16.4740234,6.03398437 Z" id="形状"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="140px" height="100px" viewBox="0 0 140 100" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 14</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆对话-默认对话" transform="translate(-476, -360)">
<g id="编组-14" transform="translate(476, 360)">
<g transform="translate(8, 21)">
<path d="M21.0726824,0 L61,0 C67.0751322,-1.77635684e-15 72,4.92486775 72,11 L72,40 C72,46.0751322 67.0751322,51 61,51 L18.0907436,51 L18.0907436,51 L15.9843212,49.3446439 C15.4557288,48.9292435 14.8029272,48.7034304 14.130642,48.7034304 L2.6056572,48.7034304 C2.05337245,48.7034304 1.6056572,48.2557151 1.6056572,47.7034304 C1.6056572,47.4199708 1.72595584,47.1498287 1.93663503,46.9601879 L9.07974888,40.5303862 C9.71178646,39.961464 10.0726824,39.1510376 10.0726824,38.3006589 L10.0726824,11 C10.0726824,4.92486775 14.9975501,0 21.0726824,0 Z" id="矩形" stroke="#212332" stroke-width="0.7" stroke-linejoin="round"></path>
<path d="M86.9409454,33 L112.764706,33 C114.42156,33 115.764706,34.3431458 115.764706,36 L115.764706,56 C115.764706,57.6568542 114.42156,59 112.764706,59 L88.061338,59 L88.061338,59 L87.3728575,58.4632506 C86.8458006,58.0523495 86.1966321,57.8291998 85.5283292,57.8291998 L81.3858928,57.8291998 C80.8336081,57.8291998 80.3858928,57.3814845 80.3858928,56.8291998 C80.3858928,56.5443579 80.5073633,56.2730336 80.7198242,56.0833094 L82.9391514,54.1014844 C83.5765339,53.5323116 83.9409454,52.7183387 83.9409454,51.8638131 L83.9409454,36 C83.9409454,34.3431458 85.2840912,33 86.9409454,33 Z" id="矩形" stroke="#212332" stroke-width="0.7" stroke-linejoin="round" transform="translate(97.2647, 46) scale(-1, 1) translate(-97.2647, -46)"></path>
<line x1="109.628242" y1="24.0891315" x2="109.628242" y2="30.5455273" id="路径-50" stroke="#212332" stroke-width="0.7"></line>
<line x1="112.060678" y1="31.8546982" x2="116.306327" y2="26.9279049" id="路径-51" stroke="#212332" stroke-width="0.7"></line>
<line x1="113.953845" y1="34.0317574" x2="119.864124" y2="34.0317574" id="路径-52" stroke="#212332" stroke-width="0.7"></line>
<circle id="椭圆形" fill="#D2D3D5" cx="88" cy="14" r="5"></circle>
<circle id="椭圆形备份-2" fill="#D2D3D5" cx="103" cy="14" r="5"></circle>
<circle id="椭圆形备份-3" fill="#D2D3D5" cx="119" cy="14" r="5"></circle>
<rect id="矩形" fill="#212332" x="46" y="20" width="5" height="7" rx="2.5"></rect>
<rect id="矩形" fill="#212332" x="58" y="20" width="5" height="7" rx="2.5"></rect>
<path d="M43.922137,32.3553483 C44.3552248,34.0645453 47.2444804,42.9315307 56.8374143,36.6464079" id="路径-53" stroke="#212332" stroke-width="0.7"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>对话</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-用户权限-对话" transform="translate(-317, -87)" fill="#155EEF" fill-rule="nonzero" stroke="#155EEF" stroke-width="0.3">
<g id="编组-14" transform="translate(252, 76)">
<g id="对话" transform="translate(65, 11)">
<path d="M12.5740039,11.1940039 L12.5740039,4.61400391 C12.5740039,3.95199219 12.0359961,3.41400391 11.3740039,3.41400391 L3.52597656,3.41400391 C2.86398438,3.41400391 2.32597656,3.95199219 2.32597656,4.61400391 L2.32597656,11.1959961 C2.32597656,11.8580078 2.86398438,12.3959961 3.52597656,12.3959961 L4.5,12.3959961 L4.5,13.4680078 C4.5,13.6939844 4.62599609,13.9 4.82800781,14.0019922 C4.91400391,14.0459961 5.00800781,14.0680078 5.1,14.0680078 C5.22400391,14.0680078 5.34800781,14.03 5.45199219,13.9540039 L7.6,12.3940039 L11.3740039,12.3940039 C12.0359961,12.3940039 12.5740039,11.8559961 12.5740039,11.1940039 Z M7.53599609,11.5940039 C7.40954959,11.5937486 7.28629101,11.6336699 7.18400391,11.7080078 L5.3,13.0759766 L5.3,12.1959766 C5.3,11.8659766 5.03,11.5959766 4.7,11.5959766 L3.52599609,11.5959766 C3.30599609,11.5959766 3.12599609,11.4159766 3.12599609,11.1959766 L3.12599609,4.61400391 C3.12599609,4.39400391 3.30599609,4.21400391 3.52599609,4.21400391 L11.3740234,4.21400391 C11.5940234,4.21400391 11.7740234,4.39400391 11.7740234,4.61400391 L11.7740234,11.1959961 C11.7740234,11.4159961 11.5940234,11.5959961 11.3740234,11.5959961 L7.53599609,11.5959961 L7.53599609,11.5940039 Z M16.4740234,6.03398437 L13.8419922,6.03398437 C13.6219922,6.03398437 13.4419922,6.21398437 13.4419922,6.43398437 C13.4419922,6.65398437 13.6219922,6.83398437 13.8419922,6.83398437 L16.4740234,6.83398437 C16.6940234,6.83398437 16.8740234,7.01398437 16.8740234,7.23398437 L16.8740234,13.8379883 C16.8740234,14.0579883 16.6940234,14.2379883 16.4740234,14.2379883 L14.9020117,14.2379883 C14.5720117,14.2379883 14.3020117,14.5079883 14.3020117,14.8379883 L14.3020117,15.5979883 L12.4260352,14.2659766 C12.3240234,14.1939844 12.2040234,14.1559766 12.0780273,14.1559766 L10.2160156,14.1559766 C9.99601563,14.1559766 9.81601563,13.9759766 9.81601563,13.7559766 L9.81601563,13.3759766 C9.81601563,13.1559766 9.63601563,12.9759766 9.41601562,12.9759766 C9.19601563,12.9759766 9.01601563,13.1559766 9.01601563,13.3759766 L9.01601563,13.7559766 C9.01601563,14.4179883 9.55402344,14.9559766 10.2160156,14.9559766 L12.0140234,14.9559766 L14.1540234,16.4759766 C14.2580273,16.5499805 14.3800195,16.5879884 14.5020117,16.5879884 C14.5981711,16.5879884 14.6929001,16.5647017 14.7780273,16.5199805 C14.9780273,16.4159766 15.1020117,16.2119727 15.1020117,15.9859961 L15.1020117,15.0399805 L16.4740234,15.0399805 C17.1360156,15.0399805 17.6740234,14.5019727 17.6740234,13.8399805 L17.6740234,7.23400391 C17.6740234,6.57199219 17.1360156,6.03398437 16.4740234,6.03398437 L16.4740234,6.03398437 Z" id="形状"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>深度思考</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆对话-默认对话" transform="translate(-584, -730)">
<g id="聊天页面" transform="translate(258, 128)">
<g id="输入框" transform="translate(16, 512)">
<g id="编组-13" transform="translate(302, 86)">
<g id="深度思考" transform="translate(8, 4)">
<g id="编组-12" transform="translate(1.5, 1.5)">
<path d="M6.5,12.6871843 C8.15972824,12.6871843 9.50520382,9.91708755 9.50520382,6.5 C9.50520382,3.08291245 8.15972824,0.312815665 6.5,0.312815665 C4.84027176,0.312815665 3.49479618,3.08291245 3.49479618,6.5 C3.49479618,9.91708755 4.84027176,12.6871843 6.5,12.6871843 Z" id="椭圆形" stroke="#212332" transform="translate(6.5, 6.5) rotate(45) translate(-6.5, -6.5)"></path>
<path d="M6.5,12.6871843 C8.15972824,12.6871843 9.50520382,9.91708755 9.50520382,6.5 C9.50520382,3.08291245 8.15972824,0.312815665 6.5,0.312815665 C4.84027176,0.312815665 3.49479618,3.08291245 3.49479618,6.5 C3.49479618,9.91708755 4.84027176,12.6871843 6.5,12.6871843 Z" id="椭圆形" stroke="#212332" transform="translate(6.5, 6.5) scale(-1, 1) rotate(45) translate(-6.5, -6.5)"></path>
<path d="M6.56835262,7.64616732 C7.20295459,7.64616732 7.71740114,7.13172077 7.71740114,6.4971188 C7.71740114,5.86251682 7.20295459,5.34807028 6.56835262,5.34807028 C5.93375065,5.34807028 5.4193041,5.86251682 5.4193041,6.4971188 C5.4193041,7.13172077 5.93375065,7.64616732 6.56835262,7.64616732 Z" id="椭圆形" fill="#212332"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>深度思考</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆对话-交互-2" transform="translate(-1049, -339)">
<g id="输入框" transform="translate(737, 180)">
<g id="编组-13" transform="translate(304, 155)">
<g id="深度思考" transform="translate(8, 4)">
<g id="编组-12" transform="translate(1.5, 1.5)">
<path d="M6.5,12.6871843 C8.15972824,12.6871843 9.50520382,9.91708755 9.50520382,6.5 C9.50520382,3.08291245 8.15972824,0.312815665 6.5,0.312815665 C4.84027176,0.312815665 3.49479618,3.08291245 3.49479618,6.5 C3.49479618,9.91708755 4.84027176,12.6871843 6.5,12.6871843 Z" id="椭圆形" stroke="#155EEF" transform="translate(6.5, 6.5) rotate(45) translate(-6.5, -6.5)"></path>
<path d="M6.5,12.6871843 C8.15972824,12.6871843 9.50520382,9.91708755 9.50520382,6.5 C9.50520382,3.08291245 8.15972824,0.312815665 6.5,0.312815665 C4.84027176,0.312815665 3.49479618,3.08291245 3.49479618,6.5 C3.49479618,9.91708755 4.84027176,12.6871843 6.5,12.6871843 Z" id="椭圆形" stroke="#155EEF" transform="translate(6.5, 6.5) scale(-1, 1) rotate(45) translate(-6.5, -6.5)"></path>
<path d="M6.56835262,7.64616732 C7.20295459,7.64616732 7.71740114,7.13172077 7.71740114,6.4971188 C7.71740114,5.86251682 7.20295459,5.34807028 6.56835262,5.34807028 C5.93375065,5.34807028 5.4193041,5.86251682 5.4193041,6.4971188 C5.4193041,7.13172077 5.93375065,7.64616732 6.56835262,7.64616732 Z" id="椭圆形" fill="#155EEF"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="14px" height="14px" viewBox="0 0 14 14" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 3</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆对话-交互-2" transform="translate(-237, -514)">
<g id="输入框备份" transform="translate(43, 506)">
<g id="编组-3" transform="translate(194, 8)">
<circle id="椭圆形" fill="#212332" cx="7" cy="7" r="7"></circle>
<g id="关闭" transform="translate(2, 2)" fill="#FFFFFF" fill-rule="nonzero">
<polygon id="路径" points="5.62500061 5 8.33333333 7.70833272 7.70833272 8.33333333 5 5.62500061 2.29166728 8.33333333 1.66666667 7.70833272 4.37499939 5 1.66666667 2.29166728 2.29166728 1.66666667 5 4.37499939 7.70833272 1.66666667 8.33333333 2.29166728"></polygon>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>链接</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆对话-默认对话" transform="translate(-284, -726)">
<g id="聊天页面" transform="translate(258, 128)">
<g id="输入框" transform="translate(16, 512)">
<g id="链接" transform="translate(10, 86)">
<rect id="矩形" stroke="#DFE4ED" x="0.5" y="0.5" width="23" height="23" rx="6"></rect>
<g id="编组-6" transform="translate(5, 5)" stroke="#212332" stroke-linecap="round" stroke-linejoin="round">
<g transform="translate(7.1064, 7.1064) rotate(45) translate(-7.1064, -7.1064)translate(3.9564, 1.8564)" id="路径">
<path d="M4.14483263e-14,7.00494523 L4.14483263e-14,2.33333333 C4.14483263e-14,1.04466892 0.992435471,0 2.21666667,0 C3.44089786,0 4.43333333,1.04466892 4.43333333,2.33333333 L4.43333333,5.85907842"></path>
<path d="M6.3,2.518727 L6.3,7.175 C6.3,9.01134679 4.88969696,10.5 3.15,10.5 C1.41030304,10.5 0,9.01134679 0,7.175 L0,2.33333333"></path>
<path d="M4.43333333,2.33333333 L4.43333333,7 C4.43333333,7.64433221 3.91099887,8.16666667 3.26666667,8.16666667 C2.62233446,8.16666667 2.1,7.64433221 2.1,7 L2.1,3.5201611"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 5</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆对话-交互-2" transform="translate(-558, -337)">
<g id="输入框" transform="translate(45, 180)">
<g id="编组-7" transform="translate(471, 155)">
<g id="编组-5" transform="translate(42, 2)">
<circle id="椭圆形" stroke="#212332" stroke-width="1.5" cx="10" cy="10" r="9.25"></circle>
<rect id="矩形" fill="#212332" x="6.5" y="6.5" width="7" height="7" rx="2"></rect>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 895 B

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>brain-2-line</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linejoin="round">
<g id="红熊空间-记忆对话-默认对话" transform="translate(-324, -730)" stroke="#212332">
<g id="聊天页面" transform="translate(258, 128)">
<g id="输入框" transform="translate(16, 512)">
<g id="1" transform="translate(42, 86)">
<g id="brain-2-line" transform="translate(8, 4)">
<g id="编组-25" transform="translate(3, 3)">
<path d="M3.33333333,0 C4.20536189,0 4.92097069,0.670068175 4.99388234,1.52366891 L5,1.66755165 L4.99986288,8.05913792 C4.99995421,8.06685294 5,8.07457892 5,8.0823156 L4.999,8.107 L5,8.33775827 L4.98310752,8.33803625 C4.85815555,9.27624509 4.05522059,10 3.08333333,10 C2.02478756,10 1.16666667,9.14142345 1.16666667,8.0823156 C1.16666667,7.94759059 1.18055226,7.81611046 1.20696967,7.68922971 C0.51077752,7.49098524 0,6.84838576 0,6.08642446 C0,5.66523785 0.156068428,5.28052233 0.413500665,4.98701157 C0.156068428,4.69487819 0,4.31016267 0,3.88897606 C0,2.96801271 0.746192084,2.2214244 1.66666667,2.2214244 C1.69896402,2.2214244 1.73104681,2.22234356 1.76289032,2.22415717 C1.70039312,2.05126095 1.66666667,1.86334701 1.66666667,1.66755165 C1.66666667,0.746588306 2.41285875,0 3.33333333,0 Z" id="形状结合"></path>
<path d="M8.33333333,0 C9.20536189,0 9.92097069,0.670068175 9.99388234,1.52366891 L10,1.66755165 L9.99986288,8.05913792 C9.99995421,8.06685294 10,8.07457892 10,8.0823156 L9.999,8.107 L10,8.33775827 L9.98310752,8.33803625 C9.85815555,9.27624509 9.05522059,10 8.08333333,10 C7.02478756,10 6.16666667,9.14142345 6.16666667,8.0823156 C6.16666667,7.94759059 6.18055226,7.81611046 6.20696967,7.68922971 C5.51077752,7.49098524 5,6.84838576 5,6.08642446 C5,5.66523785 5.15606843,5.28052233 5.41350066,4.98701157 C5.15606843,4.69487819 5,4.31016267 5,3.88897606 C5,2.96801271 5.74619208,2.2214244 6.66666667,2.2214244 C6.69896402,2.2214244 6.73104681,2.22234356 6.76289032,2.22415717 C6.70039312,2.05126095 6.66666667,1.86334701 6.66666667,1.66755165 C6.66666667,0.746588306 7.41285875,0 8.33333333,0 Z" id="形状结合" transform="translate(7.5, 5) scale(-1, 1) translate(-7.5, -5)"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>brain-2-line</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linejoin="round">
<g id="红熊空间-记忆对话-交互-2" transform="translate(-787, -339)" stroke="#155EEF">
<g id="输入框" transform="translate(737, 180)">
<g id="1" transform="translate(42, 155)">
<g id="brain-2-line" transform="translate(8, 4)">
<g id="编组-25" transform="translate(3, 3)">
<path d="M3.33333333,0 C4.20536189,0 4.92097069,0.670068175 4.99388234,1.52366891 L5,1.66755165 L4.99986288,8.05913792 C4.99995421,8.06685294 5,8.07457892 5,8.0823156 L4.999,8.107 L5,8.33775827 L4.98310752,8.33803625 C4.85815555,9.27624509 4.05522059,10 3.08333333,10 C2.02478756,10 1.16666667,9.14142345 1.16666667,8.0823156 C1.16666667,7.94759059 1.18055226,7.81611046 1.20696967,7.68922971 C0.51077752,7.49098524 0,6.84838576 0,6.08642446 C0,5.66523785 0.156068428,5.28052233 0.413500665,4.98701157 C0.156068428,4.69487819 0,4.31016267 0,3.88897606 C0,2.96801271 0.746192084,2.2214244 1.66666667,2.2214244 C1.69896402,2.2214244 1.73104681,2.22234356 1.76289032,2.22415717 C1.70039312,2.05126095 1.66666667,1.86334701 1.66666667,1.66755165 C1.66666667,0.746588306 2.41285875,0 3.33333333,0 Z" id="形状结合"></path>
<path d="M8.33333333,0 C9.20536189,0 9.92097069,0.670068175 9.99388234,1.52366891 L10,1.66755165 L9.99986288,8.05913792 C9.99995421,8.06685294 10,8.07457892 10,8.0823156 L9.999,8.107 L10,8.33775827 L9.98310752,8.33803625 C9.85815555,9.27624509 9.05522059,10 8.08333333,10 C7.02478756,10 6.16666667,9.14142345 6.16666667,8.0823156 C6.16666667,7.94759059 6.18055226,7.81611046 6.20696967,7.68922971 C5.51077752,7.49098524 5,6.84838576 5,6.08642446 C5,5.66523785 5.15606843,5.28052233 5.41350066,4.98701157 C5.15606843,4.69487819 5,4.31016267 5,3.88897606 C5,2.96801271 5.74619208,2.2214244 6.66666667,2.2214244 C6.69896402,2.2214244 6.73104681,2.22234356 6.76289032,2.22415717 C6.70039312,2.05126095 6.66666667,1.86334701 6.66666667,1.66755165 C6.66666667,0.746588306 7.41285875,0 8.33333333,0 Z" id="形状结合" transform="translate(7.5, 5) scale(-1, 1) translate(-7.5, -5)"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>互联网</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆对话-默认对话" transform="translate(-463, -730)" stroke="#212332">
<g id="聊天页面" transform="translate(258, 128)">
<g id="输入框" transform="translate(16, 512)">
<g id="2" transform="translate(181, 86)">
<g id="互联网" transform="translate(8, 4)">
<g id="编组-11" transform="translate(2.5, 2.5)">
<circle id="椭圆形" cx="5.5" cy="5.5" r="5"></circle>
<line x1="0.785714286" y1="3.53571429" x2="10.2142857" y2="3.53571429" id="路径-6"></line>
<path d="M4.27288123,0.591487342 C3.82349401,1.74340425 3.53571429,3.51415883 3.53571429,5.5 C3.53571429,7.49845355 3.82716108,9.27907975 4.28146314,10.4303857 M6.66018951,10.572683 C7.14773377,9.4289068 7.46428571,7.58274887 7.46428571,5.5 C7.46428571,3.4620778 7.16121333,1.65067191 6.69143044,0.502140402" id="形状"></path>
<line x1="0.772766423" y1="7.07142857" x2="10.2013379" y2="7.07142857" id="路径-6"></line>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>互联网</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆对话-交互-2" transform="translate(-928, -339)" stroke="#155EEF">
<g id="输入框" transform="translate(737, 180)">
<g id="2" transform="translate(183, 155)">
<g id="互联网" transform="translate(8, 4)">
<g id="编组-11" transform="translate(2.5, 2.5)">
<circle id="椭圆形" cx="5.5" cy="5.5" r="5"></circle>
<line x1="0.785714286" y1="3.53571429" x2="10.2142857" y2="3.53571429" id="路径-6"></line>
<path d="M4.27288123,0.591487342 C3.82349401,1.74340425 3.53571429,3.51415883 3.53571429,5.5 C3.53571429,7.49845355 3.82716108,9.27907975 4.28146314,10.4303857 M6.66018951,10.572683 C7.14773377,9.4289068 7.46428571,7.58274887 7.46428571,5.5 C7.46428571,3.4620778 7.16121333,1.65067191 6.69143044,0.502140402" id="形状"></path>
<line x1="0.772766423" y1="7.07142857" x2="10.2013379" y2="7.07142857" id="路径-6"></line>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>发送</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆对话-交互-2" transform="translate(-1249, -336)">
<g id="输入框" transform="translate(737, 180)">
<g id="编组-7" transform="translate(471, 155)">
<g id="发送" transform="translate(41, 1)">
<circle id="椭圆形" fill="#155EEF" cx="11" cy="11" r="11"></circle>
<g id="编组-50" transform="translate(7.5, 7)" stroke="#FFFFFF" stroke-linecap="round" stroke-linejoin="round">
<polyline id="路径" points="0 3.5 3.5 0 7 3.5"></polyline>
<line x1="3.5" y1="0.347479368" x2="3.5" y2="8.84747937" id="路径-49"></line>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>发送-2</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆对话-默认对话" transform="translate(-786, -727)">
<g id="聊天页面" transform="translate(258, 128)">
<g id="输入框" transform="translate(16, 512)">
<g id="编组-7" transform="translate(471, 86)">
<g id="发送-2" transform="translate(41, 1)">
<circle id="椭圆形" fill="#F0F3F8" cx="11" cy="11" r="11"></circle>
<g id="编组-50" transform="translate(7.5, 7)" stroke="#B9BDC4" stroke-linecap="round" stroke-linejoin="round">
<polyline id="路径" points="0 3.5 3.5 0 7 3.5"></polyline>
<line x1="3.5" y1="0.347479368" x2="3.5" y2="8.84747937" id="路径-49"></line>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 15</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆对话-默认对话" transform="translate(-745, -726)" stroke="#212332">
<g id="聊天页面" transform="translate(258, 128)">
<g id="输入框" transform="translate(16, 512)">
<g id="编组-7" transform="translate(471, 86)">
<g id="语音" transform="translate(4, 4)">
<g id="编组-8" transform="translate(4, 2.25)">
<line x1="4" y1="9" x2="4" y2="11.0054105" id="路径-46"></line>
<line x1="2" y1="11.0054105" x2="5.995474" y2="11.0054105" id="路径-48" stroke-linecap="round"></line>
<rect id="矩形" x="2" y="0" width="4" height="7" rx="2"></rect>
<path d="M8,4 L8,5 C8,7.209139 6.209139,9 4,9 C1.790861,9 0,7.209139 0,5 L0,4" id="路径" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>复制</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-262, -98)" fill="#5B6167" fill-rule="nonzero" stroke="#5B6167" stroke-width="0.2">
<g id="添加变量备份" transform="translate(246, 44)">
<g id="复制" transform="translate(24, 62) scale(-1, 1) translate(-24, -62)translate(16, 54)">
<path d="M12.457101,11.1647176 L10.4691352,11.1647176 L10.4691352,12.586712 C10.4691352,13.4145067 9.60465201,13.9995312 8.77685733,13.9995312 L3.50878856,13.9995312 C2.67802272,13.9972139 2.00512985,13.324321 2.0028125,12.4935552 L2.0028125,7.22548642 C2.0028125,6.39770345 2.58432174,5.52968145 3.41211643,5.52968145 L4.81504585,5.52968145 L4.81504585,3.54101264 C4.81504585,2.69558262 5.50874164,2.00328125 6.35629259,2.00328125 L12.4571127,2.00328125 C13.3053667,2.00328125 13.9990625,2.69558262 13.9990625,3.54101264 L13.9990625,9.62770103 C13.9951838,10.4768867 13.3063065,11.1635653 12.4571127,11.1647294 L12.457101,11.1647176 Z M4.86655745,10.0010195 C4.85318829,9.94543146 4.84305487,9.8891147 4.83620826,9.83235301 C4.83480212,9.80765181 4.82351784,9.78859861 4.82351784,9.76389742 L4.82351784,9.70956182 C4.8221117,9.68203663 4.81504585,9.65522622 4.81504585,9.62770103 L4.81504585,6.23538801 L3.41210471,6.23538801 C2.96046422,6.23538801 2.75580053,6.77384593 2.75580053,7.22548642 L2.75580053,12.4935552 C2.75580053,12.9452074 3.05713636,13.2465432 3.50878856,13.2465432 L8.77685733,13.2465432 C9.22850953,13.2465432 9.76342867,13.0383642 9.76342867,12.586712 L9.76342867,11.1752988 L6.23491926,11.1752988 C5.49322723,11.1752988 4.97241636,10.6940239 4.86655745,10.0010195 Z M13.2284274,3.54101264 C13.2284274,3.0794823 12.9200375,2.7725102 12.457101,2.7725102 L6.35630431,2.7725102 C5.89405918,2.7725102 5.58566922,3.0794823 5.58566922,3.54101264 L5.58566922,9.62770103 C5.58566922,10.0885283 5.89405918,10.3962152 6.35630431,10.3962152 L12.457101,10.3962152 C12.9200375,10.3962152 13.2284274,10.0885283 13.2284274,9.62770103 L13.2284274,3.54101264 L13.2284274,3.54101264 Z M9.75919853,8.35532 L9.05490982,8.35532 L9.05490982,6.94674258 L7.64632068,6.94674258 L7.64632068,6.24244215 L9.05490982,6.24244215 L9.05490982,4.83386473 L9.75919853,4.83386473 L9.75919853,6.24244215 L11.167776,6.24244215 L11.167776,6.94674258 L9.75919853,6.94674258 L9.75919853,8.35532 Z" id="形状"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>复制</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-262, -98)" fill="#155EEF" fill-rule="nonzero" stroke="#155EEF" stroke-width="0.2">
<g id="添加变量备份" transform="translate(246, 44)">
<g id="复制" transform="translate(24, 62) scale(-1, 1) translate(-24, -62)translate(16, 54)">
<path d="M12.457101,11.1647176 L10.4691352,11.1647176 L10.4691352,12.586712 C10.4691352,13.4145067 9.60465201,13.9995312 8.77685733,13.9995312 L3.50878856,13.9995312 C2.67802272,13.9972139 2.00512985,13.324321 2.0028125,12.4935552 L2.0028125,7.22548642 C2.0028125,6.39770345 2.58432174,5.52968145 3.41211643,5.52968145 L4.81504585,5.52968145 L4.81504585,3.54101264 C4.81504585,2.69558262 5.50874164,2.00328125 6.35629259,2.00328125 L12.4571127,2.00328125 C13.3053667,2.00328125 13.9990625,2.69558262 13.9990625,3.54101264 L13.9990625,9.62770103 C13.9951838,10.4768867 13.3063065,11.1635653 12.4571127,11.1647294 L12.457101,11.1647176 Z M4.86655745,10.0010195 C4.85318829,9.94543146 4.84305487,9.8891147 4.83620826,9.83235301 C4.83480212,9.80765181 4.82351784,9.78859861 4.82351784,9.76389742 L4.82351784,9.70956182 C4.8221117,9.68203663 4.81504585,9.65522622 4.81504585,9.62770103 L4.81504585,6.23538801 L3.41210471,6.23538801 C2.96046422,6.23538801 2.75580053,6.77384593 2.75580053,7.22548642 L2.75580053,12.4935552 C2.75580053,12.9452074 3.05713636,13.2465432 3.50878856,13.2465432 L8.77685733,13.2465432 C9.22850953,13.2465432 9.76342867,13.0383642 9.76342867,12.586712 L9.76342867,11.1752988 L6.23491926,11.1752988 C5.49322723,11.1752988 4.97241636,10.6940239 4.86655745,10.0010195 Z M13.2284274,3.54101264 C13.2284274,3.0794823 12.9200375,2.7725102 12.457101,2.7725102 L6.35630431,2.7725102 C5.89405918,2.7725102 5.58566922,3.0794823 5.58566922,3.54101264 L5.58566922,9.62770103 C5.58566922,10.0885283 5.89405918,10.3962152 6.35630431,10.3962152 L12.457101,10.3962152 C12.9200375,10.3962152 13.2284274,10.0885283 13.2284274,9.62770103 L13.2284274,3.54101264 L13.2284274,3.54101264 Z M9.75919853,8.35532 L9.05490982,8.35532 L9.05490982,6.94674258 L7.64632068,6.94674258 L7.64632068,6.24244215 L9.05490982,6.24244215 L9.05490982,4.83386473 L9.75919853,4.83386473 L9.75919853,6.24244215 L11.167776,6.24244215 L11.167776,6.94674258 L9.75919853,6.94674258 L9.75919853,8.35532 Z" id="形状"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>复制</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-262, -98)" fill="#212332" fill-rule="nonzero" stroke="#212332" stroke-width="0.2">
<g id="添加变量备份" transform="translate(246, 44)">
<g id="复制" transform="translate(24, 62) scale(-1, 1) translate(-24, -62)translate(16, 54)">
<path d="M12.457101,11.1647176 L10.4691352,11.1647176 L10.4691352,12.586712 C10.4691352,13.4145067 9.60465201,13.9995312 8.77685733,13.9995312 L3.50878856,13.9995312 C2.67802272,13.9972139 2.00512985,13.324321 2.0028125,12.4935552 L2.0028125,7.22548642 C2.0028125,6.39770345 2.58432174,5.52968145 3.41211643,5.52968145 L4.81504585,5.52968145 L4.81504585,3.54101264 C4.81504585,2.69558262 5.50874164,2.00328125 6.35629259,2.00328125 L12.4571127,2.00328125 C13.3053667,2.00328125 13.9990625,2.69558262 13.9990625,3.54101264 L13.9990625,9.62770103 C13.9951838,10.4768867 13.3063065,11.1635653 12.4571127,11.1647294 L12.457101,11.1647176 Z M4.86655745,10.0010195 C4.85318829,9.94543146 4.84305487,9.8891147 4.83620826,9.83235301 C4.83480212,9.80765181 4.82351784,9.78859861 4.82351784,9.76389742 L4.82351784,9.70956182 C4.8221117,9.68203663 4.81504585,9.65522622 4.81504585,9.62770103 L4.81504585,6.23538801 L3.41210471,6.23538801 C2.96046422,6.23538801 2.75580053,6.77384593 2.75580053,7.22548642 L2.75580053,12.4935552 C2.75580053,12.9452074 3.05713636,13.2465432 3.50878856,13.2465432 L8.77685733,13.2465432 C9.22850953,13.2465432 9.76342867,13.0383642 9.76342867,12.586712 L9.76342867,11.1752988 L6.23491926,11.1752988 C5.49322723,11.1752988 4.97241636,10.6940239 4.86655745,10.0010195 Z M13.2284274,3.54101264 C13.2284274,3.0794823 12.9200375,2.7725102 12.457101,2.7725102 L6.35630431,2.7725102 C5.89405918,2.7725102 5.58566922,3.0794823 5.58566922,3.54101264 L5.58566922,9.62770103 C5.58566922,10.0885283 5.89405918,10.3962152 6.35630431,10.3962152 L12.457101,10.3962152 C12.9200375,10.3962152 13.2284274,10.0885283 13.2284274,9.62770103 L13.2284274,3.54101264 L13.2284274,3.54101264 Z M9.75919853,8.35532 L9.05490982,8.35532 L9.05490982,6.94674258 L7.64632068,6.94674258 L7.64632068,6.24244215 L9.05490982,6.24244215 L9.05490982,4.83386473 L9.75919853,4.83386473 L9.75919853,6.24244215 L11.167776,6.24244215 L11.167776,6.94674258 L9.75919853,6.94674258 L9.75919853,8.35532 Z" id="形状"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>删除</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="红熊空间-记忆管理" transform="translate(-598, -364)" stroke="#5B6167" stroke-width="1.1">
<g id="1" transform="translate(256, 127)">
<g id="删除" transform="translate(342, 237)">
<g id="编组-12" transform="translate(4, 3)">
<line x1="-1.52774427e-18" y1="2.49787878" x2="12" y2="2.49787878" id="路径-3"></line>
<path d="M1,2.5 L1.93374299,12.5921284 C1.98133561,13.1065214 2.41290016,13.5 2.92949012,13.5 L9.09567289,13.5 C9.61161192,13.5 10.0428571,13.1074826 10.0912621,12.5938193 L11,2.95049398 L11,2.95049398" id="路径-4"></path>
<line x1="4" y1="10.4953596" x2="8" y2="10.4953596" id="路径-5"></line>
<path d="M3,2.5 L3,1 C3,0.44771525 3.44771525,1.11022302e-16 4,0 L8,0 C8.55228475,0 9,0.44771525 9,1 L9,2.5 L9,2.5" id="路径"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 8</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-648, -630)">
<g id="知识库" transform="translate(16, 454)">
<g id="编组-14备份" transform="translate(16, 158)">
<g id="编组-8" transform="translate(616, 18)">
<rect id="矩形" fill="#FBEEEC" x="0" y="0" width="24" height="24" rx="6"></rect>
<g id="删除" transform="translate(4, 4)" stroke="#FF5D34" stroke-linecap="round" stroke-linejoin="round">
<g id="编组-12" transform="translate(3.2, 2.4)">
<line x1="-1.22219542e-18" y1="1.99830302" x2="9.6" y2="1.99830302" id="路径-3"></line>
<path d="M0.8,2 L1.53019479,9.89212843 C1.57778741,10.4065214 2.00935196,10.8 2.52594192,10.8 L7.09449924,10.8 C7.61043827,10.8 8.04168346,10.4074826 8.09008848,9.89381926 L8.8,2.36039518 L8.8,2.36039518" id="路径-4"></path>
<line x1="3.2" y1="8.39628766" x2="6.4" y2="8.39628766" id="路径-5"></line>
<path d="M2.4,2 L2.4,1 C2.4,0.44771525 2.84771525,1.11022302e-16 3.4,0 L6.2,0 C6.75228475,0 7.2,0.44771525 7.2,1 L7.2,2 L7.2,2" id="路径"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 8</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-648, -558)">
<g id="知识库" transform="translate(16, 454)">
<g id="编组-14" transform="translate(16, 86)">
<g id="编组-8" transform="translate(616, 18)">
<rect id="矩形" stroke="#DFE4ED" x="0.5" y="0.5" width="23" height="23" rx="6"></rect>
<g id="删除" transform="translate(4, 4)" stroke="#5B6167" stroke-linecap="round" stroke-linejoin="round">
<g id="编组-12" transform="translate(3.2, 2.4)">
<line x1="-1.22219542e-18" y1="1.99830302" x2="9.6" y2="1.99830302" id="路径-3"></line>
<path d="M0.8,2 L1.53019479,9.89212843 C1.57778741,10.4065214 2.00935196,10.8 2.52594192,10.8 L7.09449924,10.8 C7.61043827,10.8 8.04168346,10.4074826 8.09008848,9.89381926 L8.8,2.36039518 L8.8,2.36039518" id="路径-4"></path>
<line x1="3.2" y1="8.39628766" x2="6.4" y2="8.39628766" id="路径-5"></line>
<path d="M2.4,2 L2.4,1 C2.4,0.44771525 2.84771525,1.11022302e-16 3.4,0 L6.2,0 C6.75228475,0 7.2,0.44771525 7.2,1 L7.2,2 L7.2,2" id="路径"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>删除</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="红熊空间-记忆管理" transform="translate(-598, -364)" stroke="#FF5D34" stroke-width="1.1">
<g id="1" transform="translate(256, 127)">
<g id="删除" transform="translate(342, 237)">
<g id="编组-12" transform="translate(4, 3)">
<line x1="-1.52774427e-18" y1="2.49787878" x2="12" y2="2.49787878" id="路径-3"></line>
<path d="M1,2.5 L1.93374299,12.5921284 C1.98133561,13.1065214 2.41290016,13.5 2.92949012,13.5 L9.09567289,13.5 C9.61161192,13.5 10.0428571,13.1074826 10.0912621,12.5938193 L11,2.95049398 L11,2.95049398" id="路径-4"></path>
<line x1="4" y1="10.4953596" x2="8" y2="10.4953596" id="路径-5"></line>
<path d="M3,2.5 L3,1 C3,0.44771525 3.44771525,1.11022302e-16 4,0 L8,0 C8.55228475,0 9,0.44771525 9,1 L9,2.5 L9,2.5" id="路径"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编辑</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="应用管理-编排-默认状态" transform="translate(-246, -24)" stroke="#5B6167">
<g id="编辑" transform="translate(246, 24)">
<g id="编组-10" transform="translate(2.8, 2.8)">
<path d="M10.4,4.47335995 L10.4,8.4 C10.4,9.5045695 9.5045695,10.4 8.4,10.4 L2,10.4 C0.8954305,10.4 0,9.5045695 0,8.4 L-2.22044605e-16,2 C-2.22044605e-16,0.8954305 0.8954305,2.22044605e-16 2,0 L5.96294416,0 L5.96294416,0" id="路径"></path>
<line x1="4.14075334" y1="6.29066973" x2="10.4" y2="1.16982777e-14" id="路径-2"></line>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1005 B

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 13</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-612, -630)">
<g id="知识库" transform="translate(16, 454)">
<g id="编组-14备份" transform="translate(16, 158)">
<g id="编组-13" transform="translate(580, 18)">
<rect id="矩形" fill="#EEF0F3" x="0" y="0" width="24" height="24" rx="6"></rect>
<g id="编辑" transform="translate(4, 4)" stroke="#5B6167" stroke-linecap="round" stroke-linejoin="round">
<g id="编组-10" transform="translate(2.8, 2.8)">
<path d="M10.4,4.47335995 L10.4,8.4 C10.4,9.5045695 9.5045695,10.4 8.4,10.4 L2,10.4 C0.8954305,10.4 0,9.5045695 0,8.4 L-2.22044605e-16,2 C-2.22044605e-16,0.8954305 0.8954305,2.22044605e-16 2,0 L5.96294416,0 L5.96294416,0" id="路径"></path>
<line x1="4.14075334" y1="6.29066973" x2="10.4" y2="1.16982777e-14" id="路径-2"></line>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 13</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-612, -558)">
<g id="知识库" transform="translate(16, 454)">
<g id="编组-14" transform="translate(16, 86)">
<g id="编组-13" transform="translate(580, 18)">
<rect id="矩形" stroke="#DFE4ED" x="0.5" y="0.5" width="23" height="23" rx="6"></rect>
<g id="编辑" transform="translate(4, 4)" stroke="#5B6167" stroke-linecap="round" stroke-linejoin="round">
<g id="编组-10" transform="translate(2.8, 2.8)">
<path d="M10.4,4.47335995 L10.4,8.4 C10.4,9.5045695 9.5045695,10.4 8.4,10.4 L2,10.4 C0.8954305,10.4 0,9.5045695 0,8.4 L-2.22044605e-16,2 C-2.22044605e-16,0.8954305 0.8954305,2.22044605e-16 2,0 L5.96294416,0 L5.96294416,0" id="路径"></path>
<line x1="4.14075334" y1="6.29066973" x2="10.4" y2="1.16982777e-14" id="路径-2"></line>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编辑</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="应用管理-编排-默认状态" transform="translate(-246, -24)" stroke="#212332">
<g id="编辑" transform="translate(246, 24)">
<g id="编组-10" transform="translate(2.8, 2.8)">
<path d="M10.4,4.47335995 L10.4,8.4 C10.4,9.5045695 9.5045695,10.4 8.4,10.4 L2,10.4 C0.8954305,10.4 0,9.5045695 0,8.4 L-2.22044605e-16,2 C-2.22044605e-16,0.8954305 0.8954305,2.22044605e-16 2,0 L5.96294416,0 L5.96294416,0" id="路径"></path>
<line x1="4.14075334" y1="6.29066973" x2="10.4" y2="1.16982777e-14" id="路径-2"></line>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1005 B

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>404</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-一般空状态" transform="translate(-119, -106)">
<g id="404" transform="translate(119, 106)">
<g id="编组" transform="translate(20, 8)">
<path d="M80.100062,0 L80.100062,0 C118.465873,0 149.855401,31.4054758 149.855401,69.7907779 L149.855401,183.049219 L10.3447228,183.049219 L10.3447228,69.7926492 C10.3447228,31.4073471 41.7342513,0.0018712671 80.100062,0.0018712671 L80.100062,0 Z" id="路径" fill="#D2D3D5"></path>
<path d="M80.100062,0 L80.100062,0 C118.465873,0 149.855401,31.4054758 149.855401,69.7907779 L149.855401,183.049219 L10.3447228,183.049219 L10.3447228,69.7926492 C10.3447228,31.4073471 41.7342513,0.0018712671 80.100062,0.0018712671 L80.100062,0 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<polygon id="路径" fill="#FBFDFF" points="51.452418 80.1819242 65.8613394 93.561484 43.2791331 183.051091 10.3447228 183.051091 10.3447228 96.5723527"></polygon>
<polygon id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round" points="51.452418 80.1819242 65.8613394 93.561484 43.2791331 183.051091 10.3447228 183.051091 10.3447228 96.5723527"></polygon>
<path d="M87.117491,51.6245169 C87.1380645,51.6376158 89.6442891,52.2888167 91.7296924,55.5616629 C91.8643553,55.7712448 91.3425369,56.1829236 91.1891709,56.3494663 L67.4436275,82.8391235 L68.7603306,90.0322742 L65.8613394,93.561484 L51.452418,80.1819242 L54.4019077,77.0381954 L62.3432733,78.6250299 L87.1156207,51.6245169 L87.117491,51.6245169 Z" id="路径" fill="#373435"></path>
<path d="M87.117491,51.6245169 C87.1380645,51.6376158 89.6442891,52.2888167 91.7296924,55.5616629 C91.8643553,55.7712448 91.3425369,56.1829236 91.1891709,56.3494663 L67.4436275,82.8391235 L68.7603306,90.0322742 L65.8613394,93.561484 L51.452418,80.1819242 L54.4019077,77.0381954 L62.3432733,78.6250299 L87.1156207,51.6245169 L87.117491,51.6245169 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<line x1="0" y1="183.051091" x2="160" y2="183.051091" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></line>
<path d="M143.756298,159.576045 C143.874128,159.911002 129.884157,170.863528 129.717699,170.863528 C129.685904,170.854172 121.69965,164.935354 116.831216,161.226502 C109.591219,155.708136 108.055689,151.028097 106.639859,146.559511 C106.580009,146.368642 93.7889114,168.65169 93.7533753,168.565612 L78.4074252,160.66138 L94.9485078,112.246086 L121.454639,110.434699 L130.151613,145.416167 L143.760038,159.577916 L143.756298,159.576045 Z" id="路径" fill="#FBFDFF"></path>
<path d="M143.756298,159.576045 C143.874128,159.911002 129.884157,170.863528 129.717699,170.863528 C129.685904,170.854172 121.69965,164.935354 116.831216,161.226502 C109.591219,155.708136 108.055689,151.028097 106.639859,146.559511 C106.580009,146.368642 93.7889114,168.65169 93.7533753,168.565612 L78.4074252,160.66138 L94.9485078,112.246086 L121.454639,110.434699 L130.151613,145.416167 L143.760038,159.577916 L143.756298,159.576045 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M140.124142,155.878421 C140.69833,156.218992 154.044911,168.921153 154.044911,168.921153 C154.044911,168.921153 139.136615,181.726234 137.404702,182.875192 C137.404702,182.875192 123.81676,182.996824 123.81676,182.955656 C123.792535,177.603832 128.724561,175.992671 129.594258,175.457489 C129.594258,175.457489 128.088653,171.295791 127.370451,168.984776 L140.124142,155.878421 Z" id="路径" fill="#D2D3D5"></path>
<path d="M140.124142,155.878421 C140.69833,156.218992 154.044911,168.921153 154.044911,168.921153 C154.044911,168.921153 139.136615,181.726234 137.404702,182.875192 C137.404702,182.875192 123.81676,182.996824 123.81676,182.955656 C123.792535,177.603832 128.724561,175.992671 129.594258,175.457489 C129.594258,175.457489 128.088653,171.295791 127.370451,168.984776 L140.124142,155.878421 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M94.1910295,168.125864 C94.01709,168.698472 87.1511567,182.747945 87.1511567,182.747945 C87.1511567,182.747945 56.492922,166.892699 56.5545494,166.815977 C62.2722012,159.693935 69.8694285,165.872859 78.8450793,160.221632 L94.1910295,168.125864 Z" id="路径" fill="#D2D3D5"></path>
<path d="M94.1910295,168.125864 C94.01709,168.698472 87.1511567,182.747945 87.1511567,182.747945 C87.1511567,182.747945 56.492922,166.892699 56.5545494,166.815977 C62.2722012,159.693935 69.8694285,165.872859 78.8450793,160.221632 L94.1910295,168.125864 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<line x1="107.674144" y1="149.575993" x2="101.692871" y2="132.163853" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></line>
<path d="M129.592388,175.457489 C131.694624,175.167442 132.048114,175.1637 134.079278,175.1637" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M108.525138,68.6324636 L118.387319,68.5332864 L118.720236,60.3390078 L119.079337,45.6476898 C119.346792,41.0986394 114.618631,38.1214535 110.726501,41.4822492 C109.593089,42.4609219 106.621156,47.0211998 105.562556,48.5182135 C103.411692,51.5627651 101.142997,54.9572436 102.401721,57.1054582 C103.131144,58.3479796 105.28949,59.5867584 109.161046,58.8008262 L108.525138,68.6324636 Z" id="路径" fill="#FBFDFF"></path>
<path d="M108.525138,68.6324636 L118.387319,68.5332864 L118.720236,60.3390078 L119.079337,45.6476898 C119.346792,41.0986394 114.618631,38.1214535 110.726501,41.4822492 C109.593089,42.4609219 106.621156,47.0211998 105.562556,48.5182135 C103.411692,51.5627651 101.142997,54.9572436 102.401721,57.1054582 C103.131144,58.3479796 105.28949,59.5867584 109.161046,58.8008262 L108.525138,68.6324636 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M107.322524,52.6312586 C108.29883,53.1439858 110.71902,54.5661488 112.164775,51.8696529" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M119.053152,68.1646468 C119.146668,68.6287211 121.57621,107.975854 121.98581,112.934712 C121.99142,113.00582 94.7465136,113.082542 94.7465136,113.082542 C94.9559891,112.438827 103.791366,75.2080962 104.879891,71.3289595 C105.033257,70.7825495 105.828141,68.2226561 108.229628,68.1814882 C109.866155,68.1534192 119.053152,68.1627756 119.053152,68.1627756 L119.053152,68.1646468 Z" id="路径" fill="#373435"></path>
<path d="M119.053152,68.1646468 C119.146668,68.6287211 121.57621,107.975854 121.98581,112.934712 C121.99142,113.00582 94.7465136,113.082542 94.7465136,113.082542 C94.9559891,112.438827 103.791366,75.2080962 104.879891,71.3289595 C105.033257,70.7825495 105.828141,68.2226561 108.229628,68.1814882 C109.866155,68.1534192 119.053152,68.1627756 119.053152,68.1627756 L119.053152,68.1646468 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M72.7478462,81.2017647 L96.336283,70.9771613 C95.0233205,67.913897 94.5613522,66.3888143 95.4404012,59.3472362 C95.7265597,57.0605478 96.0950121,51.3082727 91.3705916,50.8011594 C90.8169778,50.7412788 89.5133669,51.085592 89.5133669,51.085592 C88.817609,49.4931437 86.5414334,46.9051813 83.7228658,47.5582535 C78.2278747,48.8325864 79.7615346,55.0189954 79.6250015,55.002154 C74.5863677,52.5957045 71.2609443,58.3704348 73.3182929,62.9512967 C70.1817714,62.3188084 66.620688,65.3334197 68.8744199,73.4172936 C69.3008522,74.9479901 72.7478462,81.203636 72.7478462,81.203636 L72.7478462,81.2017647 Z" id="路径" fill="#FBFDFF"></path>
<path d="M72.7478462,81.2017647 L96.336283,70.9771613 C95.0233205,67.913897 94.5613522,66.3888143 95.4404012,59.3472362 C95.7265597,57.0605478 96.0950121,51.3082727 91.3705916,50.8011594 C90.8169778,50.7412788 89.5133669,51.085592 89.5133669,51.085592 C88.817609,49.4931437 86.5414334,46.9051813 83.7228658,47.5582535 C78.2278747,48.8325864 79.7615346,55.0189954 79.6250015,55.002154 C74.5863677,52.5957045 71.2609443,58.3704348 73.3182929,62.9512967 C70.1817714,62.3188084 66.620688,65.3334197 68.8744199,73.4172936 C69.3008522,74.9479901 72.7478462,81.203636 72.7478462,81.203636 L72.7478462,81.2017647 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M149.702035,102.749405 L127.750126,110.648024 C128.462716,113.286511 127.041276,115.099768 126.497013,119.82846 C125.761979,126.201996 130.228296,129.297072 133.394742,128.005898 C135.078027,127.319143 135.255707,127.530596 136.005704,129.179182 C138.068664,133.711391 144.743825,132.292971 143.836721,126.750277 C143.470139,124.515984 143.862906,124.821001 144.457667,126.31053 C146.455165,131.308684 154.873461,129.033223 152.277462,122.556768 C149.889067,116.602396 151.013127,120.969933 152.898407,122.61852 C156.206997,125.51337 162.036775,121.203842 158.099758,115.369231 C157.370334,114.287638 149.702035,102.747534 149.702035,102.747534 L149.702035,102.749405 Z" id="路径" fill="#FBFDFF"></path>
<path d="M149.702035,102.749405 L127.750126,110.648024 C128.462716,113.286511 127.041276,115.099768 126.497013,119.82846 C125.761979,126.201996 130.228296,129.297072 133.394742,128.005898 C135.078027,127.319143 135.255707,127.530596 136.005704,129.179182 C138.068664,133.711391 144.743825,132.292971 143.836721,126.750277 C143.470139,124.515984 143.862906,124.821001 144.457667,126.31053 C146.455165,131.308684 154.873461,129.033223 152.277462,122.556768 C149.889067,116.602396 151.013127,120.969933 152.898407,122.61852 C156.206997,125.51337 162.036775,121.203842 158.099758,115.369231 C157.370334,114.287638 149.702035,102.747534 149.702035,102.747534 L149.702035,102.749405 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M134.316808,122.798161 C133.5612,116.525674 140.030626,114.811593 142.162788,120.22704 C142.684606,121.553769 143.434603,123.612162 143.638468,125.02684" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M141.021894,118.357644 C140.52252,114.888315 146.694566,111.858734 149.363508,116.847532 C149.445802,117.000976 151.624721,120.889469 151.624721,120.889469" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M148.821116,116.001719 C147.988825,112.676477 151.858511,109.740459 154.976329,111.60237 C155.703882,112.036504 157.020585,113.846019 157.615346,114.603883" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M115.987703,75.4981426 L115.776357,70.3689995 L102.841245,85.2006626 L96.4634645,71.0688534 L72.545852,80.8986195 C72.5739067,80.8873919 86.9042748,105.505782 88.9485312,107.886034 C90.9591219,110.226989 97.2639602,111.85312 100.548237,105.460871 C103.600594,99.523341 110.167276,89.2033029 112.946567,83.5707889 C115.252668,78.8982349 115.697804,76.0651365 115.985832,75.4981426 L115.987703,75.4981426 Z" id="路径" fill="#373435"></path>
<path d="M115.987703,75.4981426 L115.776357,70.3689995 L102.841245,85.2006626 L96.4634645,71.0688534 L72.545852,80.8986195 C72.5739067,80.8873919 86.9042748,105.505782 88.9485312,107.886034 C90.9591219,110.226989 97.2639602,111.85312 100.548237,105.460871 C103.600594,99.523341 110.167276,89.2033029 112.946567,83.5707889 C115.252668,78.8982349 115.697804,76.0651365 115.985832,75.4981426 L115.987703,75.4981426 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M92.5788163,110.924971 C95.2084819,111.418986 98.4516114,110.561946 100.51083,106.555563 C103.563187,100.616161 110.12987,90.2979941 112.909161,84.6654802" id="路径" stroke="#D2D3D5" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M118.832455,68.1646468 L132.773797,79.9349169 C137.879762,83.8701916 138.001333,84.076031 141.424013,89.5382597 L149.700165,102.749405 L127.856734,111.405887 L124.581809,91.9709069 L118.318118,74.7982887 L118.832455,68.1627756 L118.832455,68.1646468 Z" id="路径" fill="#373435"></path>
<path d="M118.832455,68.1646468 L132.773797,79.9349169 C137.879762,83.8701916 138.001333,84.076031 141.424013,89.5382597 L149.700165,102.749405 L127.856734,111.405887 L124.581809,91.9709069 L118.318118,74.7982887 L118.832455,68.1627756 L118.832455,68.1646468 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<line x1="89.1804505" y1="50.4587175" x2="92.1261996" y2="56.4299308" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></line>
<polygon id="路径" fill="#373435" points="91.3949057 54.7158501 95.6835424 49.3715113 90.6243352 45.5896805 88.2696062 48.4115513"></polygon>
<polygon id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round" points="91.3949057 54.7158501 95.6835424 49.3715113 90.6243352 45.5896805 88.2696062 48.4115513"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="88px" height="88px" viewBox="0 0 88 88" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 4</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-默认状态" transform="translate(-312, -1001)">
<g id="变量设置" transform="translate(16, 854)">
<g id="编组-4" transform="translate(296, 147)">
<g transform="translate(6.6, 16.5)">
<path d="M9.59885431,14.3602629 L0.62096034,36.2897577 C0.390787927,36.8519792 0.659966871,37.4943413 1.22218834,37.7245138 C1.35446245,37.7786665 1.49602244,37.8065217 1.63895236,37.8065217 L9.64333503,37.8065217 L9.64333503,37.8065217 L9.59885431,14.3602629 Z" id="路径" fill="#373435"></path>
<path d="M9.59885431,14.3602629 L0.62096034,36.2897577 C0.390787927,36.8519792 0.659966871,37.4943413 1.22218834,37.7245138 C1.35446245,37.7786665 1.49602244,37.8065217 1.63895236,37.8065217 L9.64333503,37.8065217 L9.64333503,37.8065217" id="路径" stroke="#212332" stroke-width="0.7"></path>
<path d="M9.64333503,14.6347826 L50.6275089,14.6347826 L50.6275089,56.1 L11.843335,56.1 C10.6283086,56.1 9.64333503,55.1150264 9.64333503,53.9 L9.64333503,14.6347826 L9.64333503,14.6347826 Z" id="矩形" stroke="#212332" stroke-width="0.7" fill="#FBFDFF"></path>
<path d="M50.6275089,14.6347826 L67.5033452,14.6347826 L67.5033452,53.9 C67.5033452,55.1150264 66.5183717,56.1 65.3033452,56.1 L50.6275089,56.1 L50.6275089,56.1 L50.6275089,14.6347826 Z" id="矩形" stroke="#212332" stroke-width="0.7" fill="#FBFDFF"></path>
<path d="M50.6275089,14.6347826 L67.5033452,14.6347826 L74.8311959,34.8570079 C75.245141,35.999347 74.6546609,37.2609647 73.5123218,37.6749097 C73.2720256,37.7619849 73.0183941,37.8065217 72.7628079,37.8065217 L60.5669446,37.8065217 C59.6409255,37.8065217 58.8140403,37.2266569 58.4985566,36.3560356 L50.6275089,14.6347826 L50.6275089,14.6347826 Z" id="矩形" stroke="#212332" stroke-width="0.7" fill="#FBFDFF"></path>
<line x1="22.9701292" y1="48.8376809" x2="36.2297149" y2="48.8376809" id="路径-47" stroke="#212332" stroke-width="0.7"></line>
<line x1="50.5554849" y1="0" x2="50.5554849" y2="5.46898434" id="路径-42" stroke="#212332" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"></line>
<line x1="52.7022035" y1="6.60259184" x2="56.316661" y2="2.47008584" id="路径-43" stroke="#212332" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"></line>
<line x1="53.8023233" y1="8.72936151" x2="59.1867294" y2="8.72936151" id="路径-44" stroke="#212332" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"></line>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>订单</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-一般空状态" transform="translate(-119, -486)">
<g id="订单" transform="translate(119, 486)">
<g id="编组" transform="translate(16, 11)">
<line x1="0" y1="177.892337" x2="184" y2="177.892337" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></line>
<path d="M120.557361,161.2045 C120.370234,161.589935 160.187501,161.2045 160.187501,161.2045 C160.187501,161.2045 154.547869,99.6640658 153.855283,96.6882477 L123.901994,87.244009 C121.172515,102.508534 119.038833,114.437646 116.309354,129.702171 C115.221004,135.488006 114.401515,137.253687 116.257733,145.651437 L120.559512,161.206653 L120.557361,161.2045 Z" id="路径" fill="#FBFDFF"></path>
<path d="M120.557361,161.2045 C120.370234,161.589935 160.187501,161.2045 160.187501,161.2045 C160.187501,161.2045 154.79307,100.742854 154.100484,97.7670356 L123.914652,87.3709662 C121.185173,102.635492 119.038833,114.437646 116.309354,129.702171 C115.221004,135.488006 114.401515,137.253687 116.257733,145.651437 L120.475627,159.740277 L120.557361,161.2045 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M139.936876,159.74889 C140.087438,160.457316 141.509176,177.920329 141.509176,177.920329 C141.509176,177.920329 102.655507,177.972008 102.685602,177.853578 C105.260234,167.365003 115.012368,170.765015 120.475627,159.740277 L139.936876,159.74889 Z" id="路径" fill="#D2D3D5"></path>
<path d="M139.936876,159.74889 C140.087438,160.457316 141.509176,177.920329 141.509176,177.920329 C141.509176,177.920329 102.655507,177.972008 102.685602,177.853578 C105.260234,167.365003 115.012368,170.765015 120.475627,159.740277 L139.936876,159.74889 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M160.002525,159.723051 C160.174596,160.431476 161.811423,177.920329 161.811423,177.920329 C161.811423,177.920329 122.97281,177.974161 122.985712,177.853578 C124.192364,167.072159 132.587286,170.765015 137.725762,159.740277 L160.004676,159.723051 L160.002525,159.723051 Z" id="路径" fill="#D2D3D5"></path>
<path d="M160.002525,159.723051 C160.174596,160.431476 161.811423,177.920329 161.811423,177.920329 C161.811423,177.920329 122.97281,177.974161 122.985712,177.853578 C124.192364,167.072159 132.587286,170.765015 137.725762,159.740277 L160.004676,159.723051 L160.002525,159.723051 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M130.537489,45.9227726 L141.874828,45.8086494 L141.861922,36.3794835 L141.562949,19.4720135 C141.648984,14.2374161 136.069577,10.8115647 131.754892,14.6788363 C130.498773,15.8049961 127.3004,21.0525132 126.156127,22.7751285 C123.831015,26.2784976 121.385453,30.1845279 122.936245,32.656481 C123.835317,34.0862517 126.377668,35.511716 130.791294,34.6073429 L130.535338,45.9206194 L130.537489,45.9227726 Z" id="路径" fill="#FBFDFF"></path>
<path d="M130.537489,45.9227726 L141.874828,45.8086494 L141.861922,36.3794835 L141.562949,19.4720135 C141.648984,14.2374161 136.069577,10.8115647 131.754892,14.6788363 C130.498773,15.8049961 127.3004,21.0525132 126.156127,22.7751285 C123.831015,26.2784976 121.385453,30.1845279 122.936245,32.656481 C123.835317,34.0862517 126.377668,35.511716 130.791294,34.6073429 L130.535338,45.9206194 L130.537489,45.9227726 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M128.382297,27.5123208 C129.528721,28.1023166 132.380801,29.7388012 133.914385,26.6359402" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M137.671783,159.740277 C135.674461,151.641114 134.336677,146.423025 133.658429,144.08601 C132.062469,138.58656 131.731232,134.706369 132.527061,129.127249 L133.802539,113.479441" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M130.535338,45.9206194 C130.374021,46.4567834 123.267482,91.875691 122.21993,97.5947741 C122.204942,97.6787516 154.100484,97.7670356 154.100484,97.7670356 C151.990461,88.8245086 148.417834,62.9013004 145.735674,49.6199359 C145.608772,48.9911813 145.004372,46.0368959 142.238328,45.9916773 C140.982208,45.9701446 137.081212,45.9464586 130.535338,45.9206194 Z" id="路径" fill="#373435"></path>
<path d="M130.535338,45.9206194 C130.374021,46.4567834 123.267482,91.875691 122.21993,97.5947741 C122.204942,97.6787516 154.100484,97.7670356 154.100484,97.7670356 C151.990461,88.8245086 148.417834,62.9013004 145.735674,49.6199359 C145.608772,48.9911813 145.004372,46.0368959 142.238328,45.9916773 C140.982208,45.9701446 137.081212,45.9464586 130.535338,45.9206194 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M130.853669,57.2855743 L130.61277,46.0110567 L113.197017,53.803738 C112.026933,54.3614347 109.024291,54.2688441 107.98111,53.4032299 L87.3820401,39.2088792 L65.1784069,52.6000605 L61.7004185,54.475558 L97.5471442,69.7400835 C102.683469,72.0440815 108.308045,72.5694792 113.330372,69.4278594 L130.853669,57.2855743 Z" id="路径" fill="#373435"></path>
<path d="M130.853669,57.2855743 L130.56578,46.0633486 L113.197017,53.803738 C112.026933,54.3614347 109.024291,54.2688441 107.98111,53.4032299 L87.3820401,39.2088792 L65.1784069,52.6000605 L61.7004185,54.475558 L97.5471442,69.7400835 C102.683469,72.0440815 108.308045,72.5694792 113.330372,69.4278594 L130.853669,57.2855743 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M140.562785,55.7309139 L142.67926,81.3569709 C142.756692,85.2134761 138.717322,84.3823142 137.708554,83.4736345 L122.942697,72.959221 L109.583522,97.0349241 C109.468808,97.6177423 120.391703,97.8490954 142.352207,97.7289833 L150.994599,90.3145709 L140.562785,55.7309139 Z" id="路径" fill="#373435"></path>
<path d="M140.562785,55.7309139 L142.67926,81.3569709 C142.756692,85.2134761 138.717322,84.3823142 137.708554,83.4736345 L122.942697,72.959221 L109.583522,97.0349241 C109.468808,97.6177423 120.391703,97.8490954 142.352207,97.7289833 L150.994599,90.3145709 L140.562785,55.7309139 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<polygon id="路径" fill="#FBFDFF" fill-rule="nonzero" points="2.23262338 6.96367265 95.6887756 6.96367265 95.6887756 129.086336 2.23262338 129.086336"></polygon>
<polygon id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round" points="2.23262338 6.96367265 95.6887756 6.96367265 95.6887756 129.086336 2.23262338 129.086336"></polygon>
<polygon id="路径" fill="#D2D3D5" fill-rule="nonzero" points="83.7190751 6.96367265 95.6887756 6.96367265 95.6887756 129.086336 83.7190751 129.086336"></polygon>
<polygon id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round" points="83.7190751 6.96367265 95.6887756 6.96367265 95.6887756 129.086336 83.7190751 129.086336"></polygon>
<path d="M95.6887756,6.96367265 L2.23262338,6.96367265 L2.23262338,2.53009133 C2.23262338,1.13907942 3.37044397,0 4.75991864,0 L93.1614804,0 C94.550955,0 95.6887756,1.13907942 95.6887756,2.53009133 L95.6887756,6.96367265 Z" id="路径" fill="#FBFDFF"></path>
<path d="M95.6887756,6.96367265 L2.23262338,6.96367265 L2.23262338,2.53009133 C2.23262338,1.13907942 3.37044397,0 4.75991864,0 L93.1614804,0 C94.550955,0 95.6887756,1.13907942 95.6887756,2.53009133 L95.6887756,6.96367265 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M7.14095341,2.34275691 C7.78622028,2.34275691 8.31103734,2.8681546 8.31103734,3.51413537 C8.31103734,4.16011613 7.78622028,4.68551382 7.14095341,4.68551382 C6.49568653,4.68551382 5.97086947,4.16011613 5.97086947,3.51413537 C5.97086947,2.8681546 6.49568653,2.34275691 7.14095341,2.34275691" id="路径" fill="#373435"></path>
<path d="M10.4167582,2.34275691 C9.77149136,2.34275691 9.2466743,2.8681546 9.2466743,3.51413537 C9.2466743,4.16011613 9.77149136,4.68551382 10.4167582,4.68551382 C11.0620251,4.68551382 11.5868422,4.16011613 11.5868422,3.51413537 C11.5868422,2.8681546 11.0620251,2.34275691 10.4167582,2.34275691" id="路径" fill="#373435"></path>
<path d="M13.8861431,2.34275691 C13.2408763,2.34275691 12.7160592,2.8681546 12.7160592,3.51413537 C12.7160592,4.16011613 13.2408763,4.68551382 13.8861431,4.68551382 C14.53141,4.68551382 15.0562271,4.16011613 15.0562271,3.51413537 C15.0562271,2.8681546 14.53141,2.34275691 13.8861431,2.34275691" id="路径" fill="#373435"></path>
<path d="M89.6791901,41.8358677 L89.6791901,41.8358677 C92.9700512,41.8358677 95.6393052,44.510228 95.6393052,47.8025767 L95.6393052,87.1923305 C95.6393052,90.4868324 92.9679003,93.1590395 89.6791901,93.1590395 L89.6791901,93.1590395 C86.3883291,93.1590395 83.7169242,90.4846791 83.7169242,87.1901772 L83.7169242,47.8025767 C83.7169242,44.5080748 86.3883291,41.8337144 89.6791901,41.8337144 L89.6791901,41.8358677 Z" id="路径" fill="#FBFDFF" fill-rule="nonzero"></path>
<path d="M89.6791901,41.8358677 L89.6791901,41.8358677 C92.9700512,41.8358677 95.6393052,44.510228 95.6393052,47.8025767 L95.6393052,87.1923305 C95.6393052,90.4868324 92.9679003,93.1590395 89.6791901,93.1590395 L89.6791901,93.1590395 C86.3883291,93.1590395 83.7169242,90.4846791 83.7169242,87.1901772 L83.7169242,47.8025767 C83.7169242,44.5080748 86.3883291,41.8337144 89.6791901,41.8337144 L89.6791901,41.8358677 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M16.1789914,80.0004113 L68.3423655,80.0004113 C69.2650971,80.0004113 70.1491128,80.3664671 70.8008323,81.0210609 C71.4547027,81.6735015 71.820354,82.5584951 71.820354,83.4822476 L71.820354,83.4822476 C71.820354,84.4060001 71.4547027,85.2909938 70.8008323,85.9434343 C70.1491128,86.5980282 69.2650971,86.964084 68.3423655,86.964084 L16.1789914,86.964084 C15.2562598,86.964084 14.3722442,86.5980282 13.7205246,85.9434343 C13.0666542,85.2909938 12.701003,84.4060001 12.701003,83.4822476 L12.701003,83.4822476 C12.701003,82.5584951 13.0666542,81.6735015 13.7205246,81.0210609 C14.3722442,80.3664671 15.2562598,80.0004113 16.1789914,80.0004113 Z" id="路径" fill="#FBFDFF" fill-rule="nonzero"></path>
<path d="M16.1789914,80.0004113 L68.3423655,80.0004113 C69.2650971,80.0004113 70.1491128,80.3664671 70.8008323,81.0210609 C71.4547027,81.6735015 71.820354,82.5584951 71.820354,83.4822476 L71.820354,83.4822476 C71.820354,84.4060001 71.4547027,85.2909938 70.8008323,85.9434343 C70.1491128,86.5980282 69.2650971,86.964084 68.3423655,86.964084 L16.1789914,86.964084 C15.2562598,86.964084 14.3722442,86.5980282 13.7205246,85.9434343 C13.0666542,85.2909938 12.701003,84.4060001 12.701003,83.4822476 L12.701003,83.4822476 C12.701003,82.5584951 13.0666542,81.6735015 13.7205246,81.0210609 C14.3722442,80.3664671 15.2562598,80.0004113 16.1789914,80.0004113 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M19.9236902,104.371112 L64.5976668,104.371112 C68.5832651,104.371112 71.820354,107.611782 71.820354,111.60179 L71.820354,111.60179 C71.820354,115.593951 68.5832651,118.832468 64.5976668,118.832468 L19.9236902,118.832468 C15.9380918,118.832468 12.701003,115.591798 12.701003,111.60179 L12.701003,111.60179 C12.701003,107.609629 15.9380918,104.371112 19.9236902,104.371112 Z" id="路径" fill="#D2D3D5" fill-rule="nonzero"></path>
<path d="M19.9236902,104.371112 L64.5976668,104.371112 C68.5832651,104.371112 71.820354,107.611782 71.820354,111.60179 L71.820354,111.60179 C71.820354,115.593951 68.5832651,118.832468 64.5976668,118.832468 L19.9236902,118.832468 C15.9380918,118.832468 12.701003,115.591798 12.701003,111.60179 L12.701003,111.60179 C12.701003,107.609629 15.9380918,104.371112 19.9236902,104.371112 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M16.1789914,90.979931 L36.4769364,90.979931 C38.3955299,90.979931 39.9549248,92.5410512 39.9549248,94.4617674 L39.9549248,94.4617674 C39.9549248,96.3824835 38.3976808,97.9436037 36.4769364,97.9436037 L16.1789914,97.9436037 C14.2603979,97.9436037 12.701003,96.3846368 12.701003,94.4617674 L12.701003,94.4617674 C12.701003,92.5410512 14.2603979,90.979931 16.1789914,90.979931 Z" id="路径" fill="#FBFDFF" fill-rule="nonzero"></path>
<path d="M16.1789914,90.979931 L36.4769364,90.979931 C38.3955299,90.979931 39.9549248,92.5410512 39.9549248,94.4617674 L39.9549248,94.4617674 C39.9549248,96.3824835 38.3976808,97.9436037 36.4769364,97.9436037 L16.1789914,97.9436037 C14.2603979,97.9436037 12.701003,96.3846368 12.701003,94.4617674 L12.701003,94.4617674 C12.701003,92.5410512 14.2603979,90.979931 16.1789914,90.979931 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M59.293573,90.979931 L68.2004068,90.979931 C70.1190003,90.979931 71.6783952,92.5410512 71.6783952,94.4617674 L71.6783952,94.4617674 C71.6783952,96.3824835 70.1211512,97.9436037 68.2004068,97.9436037 L59.293573,97.9436037 C57.3749795,97.9436037 55.8155846,96.3846368 55.8155846,94.4617674 L55.8155846,94.4617674 C55.8155846,92.5410512 57.3749795,90.979931 59.293573,90.979931 Z" id="路径" fill="#FBFDFF" fill-rule="nonzero"></path>
<path d="M59.293573,90.979931 L68.2004068,90.979931 C70.1190003,90.979931 71.6783952,92.5410512 71.6783952,94.4617674 L71.6783952,94.4617674 C71.6783952,96.3824835 70.1211512,97.9436037 68.2004068,97.9436037 L59.293573,97.9436037 C57.3749795,97.9436037 55.8155846,96.3846368 55.8155846,94.4617674 L55.8155846,94.4617674 C55.8155846,92.5410512 57.3749795,90.979931 59.293573,90.979931 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M110.147055,97.2287183 L124.510696,74.0380088 C121.460735,71.727551 120.443364,69.6281135 118.243004,65.6144196 C117.395553,64.0683723 116.894396,61.4241577 114.653169,59.7855199 C111.990368,57.8411178 106.757253,59.0900139 105.471021,62.6558277 C105.22582,63.3341075 98.3150118,59.6283312 92.1591658,59.1955241 C89.0597339,58.9780439 87.227176,59.938402 86.4851191,61.5576604 C85.8592102,62.9249864 85.9516985,64.7983306 87.2830992,66.4735741 C89.0941482,68.7517329 97.8568723,72.8601706 97.8568723,72.8601706 C95.0219999,72.119446 91.6988755,72.2917075 90.69441,75.3816488 C89.9394478,77.7050263 91.2859047,80.5559548 92.4237252,81.8543761 C92.4990064,81.9383536 91.0019872,82.5584951 90.3373624,84.1712938 C89.7824328,85.517087 89.8469595,87.6961955 91.5009936,89.492022 C93.7486732,91.931676 98.271994,96.0853324 110.149206,97.2308716 L110.147055,97.2287183 Z" id="路径" fill="#FBFDFF"></path>
<path d="M110.147055,97.2287183 L124.510696,74.0380088 C121.460735,71.727551 120.443364,69.6281135 118.243004,65.6144196 C117.395553,64.0683723 116.894396,61.4241577 114.653169,59.7855199 C111.990368,57.8411178 106.757253,59.0900139 105.471021,62.6558277 C105.22582,63.3341075 98.3150118,59.6283312 92.1591658,59.1955241 C89.0597339,58.9780439 87.227176,59.938402 86.4851191,61.5576604 C85.8592102,62.9249864 85.9516985,64.7983306 87.2830992,66.4735741 C89.0941482,68.7517329 97.8568723,72.8601706 97.8568723,72.8601706 C95.0219999,72.119446 91.6988755,72.2917075 90.69441,75.3816488 C89.9394478,77.7050263 91.2859047,80.5559548 92.4237252,81.8543761 C92.4990064,81.9383536 91.0019872,82.5584951 90.3373624,84.1712938 C89.7824328,85.517087 89.8469595,87.6961955 91.5009936,89.492022 C93.7486732,91.931676 98.271994,96.0853324 110.149206,97.2308716 L110.147055,97.2287183 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M91.9333224,81.2170084 C92.3419914,81.9189742 95.1209408,83.5877578 97.5105791,84.2466582" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<line x1="96.2437051" y1="72.1237525" x2="100.77778" y2="74.2662554" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></line>
<line x1="103.922381" y1="62.3005383" x2="109.540505" y2="64.8930745" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></line>
<path d="M125.886541,74.5257227 L138.177448,81.3225186 C139.229233,81.9125144 141.993127,81.8156173 141.993127,79.7786246 L140.84025,59.1115466" id="路径" stroke="#FBFDFF" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M126.62287,99.1838868 L144.387067,99.2441783 C150.018096,99.6231537 155.249059,96.546132 153.642344,88.2022138" id="路径" stroke="#FEFEFE" stroke-width="0.4" stroke-linecap="round"></path>
<g id="锁" transform="translate(21, 21)">
<g id="编组-5" transform="translate(6, 4)">
<path d="M6.5625,21.8445574 L6.5625,10.9375 C6.5625,4.89688555 11.4593855,0 17.5,0 C23.5406145,-1.77635684e-15 28.4375,4.89688555 28.4375,10.9375 L28.4375,21.8445574 L28.4375,21.8445574" id="路径" stroke="#373435" stroke-width="0.4"></path>
<rect id="矩形" fill="#373435" x="0" y="14.7865312" width="35" height="26.2134688" rx="3.3"></rect>
<path d="M19.2495215,27.7092935 L19.2495215,32.3196897 C19.2495215,33.2842634 18.4667383,34.0670836 17.4997437,34.0670836 C16.533313,34.0670836 15.7499146,33.2842634 15.7499146,32.3196897 L15.7499146,27.7092935 C14.7050928,27.1048989 14.0000854,25.9783341 14.0000854,24.6853241 C14.0000854,22.7551014 15.5668311,21.1905362 17.4997437,21.1905362 C19.4326562,21.1905362 20.9999146,22.7551014 20.9999146,24.6853241 C20.9999146,25.9783341 20.2954712,27.1049501 19.2495728,27.7092935 L19.2495215,27.7092935 Z" id="路径" fill="#FBFDFF" fill-rule="nonzero"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>导出</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-262, -134)" fill="#5B6167" fill-rule="nonzero">
<g id="添加变量备份" transform="translate(246, 44)">
<g id="导出" transform="translate(16, 90)">
<path d="M3.57638835,13.9995313 C3.12621359,13.9995313 2.75106796,13.8476384 2.45095146,13.5438528 C2.15083495,13.2400672 2.0007767,12.8603352 2.0007767,12.4046568 L2.0007767,10.2022112 C2.0007767,10.0503184 2.07580583,9.89842563 2.15083495,9.82247923 C2.22586408,9.74653283 2.37592233,9.67058643 2.52598058,9.67058643 C2.67603883,9.67058643 2.82609709,9.74653283 2.90112621,9.82247923 C2.97615534,9.89842563 3.05118447,10.0503184 3.05118447,10.2022112 L3.05118447,12.4046568 C3.05118447,12.5565496 3.12621359,12.7843888 3.20124272,12.8603352 C3.27627184,12.9362816 3.4263301,13.012228 3.65141748,13.012228 L12.3547961,13.012228 C12.5048544,13.012228 12.7299417,12.9362816 12.8049709,12.8603352 C12.88,12.7843888 12.9550291,12.632496 12.9550291,12.4046568 L12.9550291,10.2022112 C12.9550291,10.0503184 13.0300583,9.89842563 13.1050874,9.82247923 C13.1801165,9.74653283 13.3301748,9.67058643 13.480233,9.67058643 C13.6302913,9.67058643 13.7803495,9.74653283 13.8553786,9.82247923 C13.9304078,9.89842563 14.0054369,10.0503184 14.0054369,10.2022112 L14.0054369,12.4046568 C14.0054369,12.8603352 13.8553786,13.2400672 13.5552621,13.5438528 C13.2551456,13.8476384 12.88,13.9995313 12.4298252,13.9995313 L3.57638835,13.9995313 Z M8.0031068,10.733836 C7.85304854,10.733836 7.70299029,10.6578896 7.62796117,10.5819432 C7.55293204,10.5059968 7.47790291,10.354104 7.47790291,10.2022112 L7.47790291,3.82271361 C7.47790291,3.82271361 7.47790291,3.74676721 7.40287379,3.74676721 L7.32784466,3.74676721 L5.60217476,5.64542722 C5.52714563,5.72137362 5.30205825,5.79732002 5.30205825,5.79732002 C5.152,5.79732002 5.00194175,5.72137362 4.92691262,5.64542722 C4.77685437,5.49353441 4.70182524,5.41758801 4.70182524,5.34164161 C4.70182524,5.18974881 4.77685437,5.03785601 4.8518835,4.96190961 L7.55293204,2.2278392 C7.70299029,2.0759464 7.85304854,2 8.0031068,2 C8.15316505,2 8.3032233,2.0759464 8.37825243,2.1518928 L11.0042718,4.96190961 C11.079301,5.03785601 11.1543301,5.18974881 11.1543301,5.34164161 C11.1543301,5.49353441 11.079301,5.64542722 11.0042718,5.72137362 C10.9292427,5.79732002 10.7791845,5.87326642 10.6291262,5.87326642 C10.479068,5.87326642 10.4040388,5.72137362 10.3290097,5.64542722 L8.52831068,3.74676721 L8.45328155,3.74676721 C8.45328155,3.74676721 8.37825243,3.74676721 8.37825243,3.82271361 L8.37825243,10.2781576 C8.37825243,10.4300504 8.3032233,10.5819432 8.22819417,10.6578896 C8.15316505,10.733836 8.07813592,10.733836 8.0031068,10.733836 L8.0031068,10.733836 Z" id="形状"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>导出</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="应用管理-编排-操作状态-1" transform="translate(-262, -134)" fill="#212332" fill-rule="nonzero">
<g id="添加变量备份" transform="translate(246, 44)">
<g id="导出" transform="translate(16, 90)">
<path d="M3.57638835,13.9995313 C3.12621359,13.9995313 2.75106796,13.8476384 2.45095146,13.5438528 C2.15083495,13.2400672 2.0007767,12.8603352 2.0007767,12.4046568 L2.0007767,10.2022112 C2.0007767,10.0503184 2.07580583,9.89842563 2.15083495,9.82247923 C2.22586408,9.74653283 2.37592233,9.67058643 2.52598058,9.67058643 C2.67603883,9.67058643 2.82609709,9.74653283 2.90112621,9.82247923 C2.97615534,9.89842563 3.05118447,10.0503184 3.05118447,10.2022112 L3.05118447,12.4046568 C3.05118447,12.5565496 3.12621359,12.7843888 3.20124272,12.8603352 C3.27627184,12.9362816 3.4263301,13.012228 3.65141748,13.012228 L12.3547961,13.012228 C12.5048544,13.012228 12.7299417,12.9362816 12.8049709,12.8603352 C12.88,12.7843888 12.9550291,12.632496 12.9550291,12.4046568 L12.9550291,10.2022112 C12.9550291,10.0503184 13.0300583,9.89842563 13.1050874,9.82247923 C13.1801165,9.74653283 13.3301748,9.67058643 13.480233,9.67058643 C13.6302913,9.67058643 13.7803495,9.74653283 13.8553786,9.82247923 C13.9304078,9.89842563 14.0054369,10.0503184 14.0054369,10.2022112 L14.0054369,12.4046568 C14.0054369,12.8603352 13.8553786,13.2400672 13.5552621,13.5438528 C13.2551456,13.8476384 12.88,13.9995313 12.4298252,13.9995313 L3.57638835,13.9995313 Z M8.0031068,10.733836 C7.85304854,10.733836 7.70299029,10.6578896 7.62796117,10.5819432 C7.55293204,10.5059968 7.47790291,10.354104 7.47790291,10.2022112 L7.47790291,3.82271361 C7.47790291,3.82271361 7.47790291,3.74676721 7.40287379,3.74676721 L7.32784466,3.74676721 L5.60217476,5.64542722 C5.52714563,5.72137362 5.30205825,5.79732002 5.30205825,5.79732002 C5.152,5.79732002 5.00194175,5.72137362 4.92691262,5.64542722 C4.77685437,5.49353441 4.70182524,5.41758801 4.70182524,5.34164161 C4.70182524,5.18974881 4.77685437,5.03785601 4.8518835,4.96190961 L7.55293204,2.2278392 C7.70299029,2.0759464 7.85304854,2 8.0031068,2 C8.15316505,2 8.3032233,2.0759464 8.37825243,2.1518928 L11.0042718,4.96190961 C11.079301,5.03785601 11.1543301,5.18974881 11.1543301,5.34164161 C11.1543301,5.49353441 11.079301,5.64542722 11.0042718,5.72137362 C10.9292427,5.79732002 10.7791845,5.87326642 10.6291262,5.87326642 C10.479068,5.87326642 10.4040388,5.72137362 10.3290097,5.64542722 L8.52831068,3.74676721 L8.45328155,3.74676721 C8.45328155,3.74676721 8.37825243,3.74676721 8.37825243,3.82271361 L8.37825243,10.2781576 C8.37825243,10.4300504 8.3032233,10.5819432 8.22819417,10.6578896 C8.15316505,10.733836 8.07813592,10.733836 8.0031068,10.733836 L8.0031068,10.733836 Z" id="形状"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="120px" height="120px" viewBox="0 0 120 120" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 29</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆看板-空状态" transform="translate(-484, -789)">
<g id="编组-29" transform="translate(484, 789)">
<g transform="translate(1.3636, 24.5253)">
<rect id="矩形" fill="#373435" x="10.661157" y="3.59700342" width="97.7272727" height="68.258321" rx="2.592"></rect>
<line x1="-8.95117314e-15" y1="71.8553244" x2="117.272727" y2="71.8553244" id="路径-77" stroke="#373435" stroke-width="0.7"></line>
<path d="M99.5041322,32.4755238 L104.01957,32.4755238 C105.451092,32.4755238 106.61157,33.6360018 106.61157,35.0675238 L106.61157,47.3856574 C106.61157,48.8171795 105.451092,49.9776574 104.01957,49.9776574 L99.5041322,49.9776574 L99.5041322,49.9776574 L99.5041322,32.4755238 Z" id="矩形" stroke="#373435" stroke-width="0.7" fill="#FFFFFF"></path>
<path d="M99.5041322,21.9742437 L104.01957,21.9742437 C105.451092,21.9742437 106.61157,23.1347216 106.61157,24.5662437 L106.61157,36.8843773 C106.61157,38.3158993 105.451092,39.4763773 104.01957,39.4763773 L99.5041322,39.4763773 L99.5041322,39.4763773 L99.5041322,21.9742437 Z" id="矩形" stroke="#373435" stroke-width="0.7" fill="#FFFFFF"></path>
<path d="M99.5041322,12.3480702 L104.01957,12.3480702 C105.451092,12.3480702 106.61157,13.5085481 106.61157,14.9400702 L106.61157,27.2582038 C106.61157,28.6897259 105.451092,29.8502038 104.01957,29.8502038 L99.5041322,29.8502038 L99.5041322,29.8502038 L99.5041322,12.3480702 Z" id="矩形" stroke="#373435" stroke-width="0.7" fill="#D2D3D5"></path>
<rect id="矩形" stroke="#373435" stroke-width="0.7" fill="#FFFFFF" x="10.661157" y="3.59700342" width="88.8429752" height="63.8827876" rx="3.24"></rect>
<line x1="55.0826446" y1="3.59700342" x2="55.0826446" y2="67.479791" id="路径-62" stroke="#373435" stroke-width="0.7"></line>
<path d="M59.5247934,14.0982836 C59.5247934,11.6817432 57.5359756,9.72275018 55.0826446,9.72275018 C52.6293136,9.72275018 50.6404959,11.6817432 50.6404959,14.0982836" id="路径" stroke="#373435" stroke-width="0.7"></path>
<path d="M50.6404959,15.4109436 C51.3764952,15.4109436 51.9731405,15.019145 51.9731405,14.5358369 C51.9731405,14.0525288 51.3764952,13.6607302 50.6404959,13.6607302 C49.9044966,13.6607302 49.3078512,14.0525288 49.3078512,14.5358369 C49.3078512,15.019145 49.9044966,15.4109436 50.6404959,15.4109436 Z" id="椭圆形" fill="#373435"></path>
<path d="M59.5247934,15.4109436 C60.2607927,15.4109436 60.857438,15.019145 60.857438,14.5358369 C60.857438,14.0525288 60.2607927,13.6607302 59.5247934,13.6607302 C58.7887941,13.6607302 58.1921488,14.0525288 58.1921488,14.5358369 C58.1921488,15.019145 58.7887941,15.4109436 59.5247934,15.4109436 Z" id="椭圆形" fill="#373435"></path>
<path d="M59.5247934,21.099137 C59.5247934,18.6825966 57.5359756,16.7236036 55.0826446,16.7236036 C52.6293136,16.7236036 50.6404959,18.6825966 50.6404959,21.099137" id="路径" stroke="#373435" stroke-width="0.7"></path>
<path d="M50.6404959,22.411797 C51.3764952,22.411797 51.9731405,22.0199984 51.9731405,21.5366904 C51.9731405,21.0533823 51.3764952,20.6615837 50.6404959,20.6615837 C49.9044966,20.6615837 49.3078512,21.0533823 49.3078512,21.5366904 C49.3078512,22.0199984 49.9044966,22.411797 50.6404959,22.411797 Z" id="椭圆形" fill="#373435"></path>
<path d="M59.5247934,22.411797 C60.2607927,22.411797 60.857438,22.0199984 60.857438,21.5366904 C60.857438,21.0533823 60.2607927,20.6615837 59.5247934,20.6615837 C58.7887941,20.6615837 58.1921488,21.0533823 58.1921488,21.5366904 C58.1921488,22.0199984 58.7887941,22.411797 59.5247934,22.411797 Z" id="椭圆形" fill="#373435"></path>
<path d="M59.5247934,50.8527641 C59.5247934,48.4362237 57.5359756,46.4772307 55.0826446,46.4772307 C52.6293136,46.4772307 50.6404959,48.4362237 50.6404959,50.8527641" id="路径" stroke="#373435" stroke-width="0.7"></path>
<path d="M50.6404959,52.1654241 C51.3764952,52.1654241 51.9731405,51.7736255 51.9731405,51.2903174 C51.9731405,50.8070094 51.3764952,50.4152108 50.6404959,50.4152108 C49.9044966,50.4152108 49.3078512,50.8070094 49.3078512,51.2903174 C49.3078512,51.7736255 49.9044966,52.1654241 50.6404959,52.1654241 Z" id="椭圆形" fill="#373435"></path>
<path d="M59.5247934,52.1654241 C60.2607927,52.1654241 60.857438,51.7736255 60.857438,51.2903174 C60.857438,50.8070094 60.2607927,50.4152108 59.5247934,50.4152108 C58.7887941,50.4152108 58.1921488,50.8070094 58.1921488,51.2903174 C58.1921488,51.7736255 58.7887941,52.1654241 59.5247934,52.1654241 Z" id="椭圆形" fill="#373435"></path>
<path d="M59.5247934,57.8536175 C59.5247934,55.4370772 57.5359756,53.4780841 55.0826446,53.4780841 C52.6293136,53.4780841 50.6404959,55.4370772 50.6404959,57.8536175" id="路径" stroke="#373435" stroke-width="0.7"></path>
<path d="M50.6404959,59.1662776 C51.3764952,59.1662776 51.9731405,58.774479 51.9731405,58.2911709 C51.9731405,57.8078628 51.3764952,57.4160642 50.6404959,57.4160642 C49.9044966,57.4160642 49.3078512,57.8078628 49.3078512,58.2911709 C49.3078512,58.774479 49.9044966,59.1662776 50.6404959,59.1662776 Z" id="椭圆形" fill="#373435"></path>
<path d="M59.5247934,59.1662776 C60.2607927,59.1662776 60.857438,58.774479 60.857438,58.2911709 C60.857438,57.8078628 60.2607927,57.4160642 59.5247934,57.4160642 C58.7887941,57.4160642 58.1921488,57.8078628 58.1921488,58.2911709 C58.1921488,58.774479 58.7887941,59.1662776 59.5247934,59.1662776 Z" id="椭圆形" fill="#373435"></path>
<line x1="65.6260058" y1="24.676438" x2="91.5597871" y2="24.676438" id="路径-74" stroke="#373435" stroke-width="0.7"></line>
<line x1="77.286204" y1="16.3629245" x2="91.5597871" y2="16.3629245" id="路径-74" stroke="#373435" stroke-width="0.7"></line>
<line x1="65.6260058" y1="31.2397381" x2="91.5597871" y2="31.2397381" id="路径-74" stroke="#373435" stroke-width="0.7"></line>
<line x1="65.6260058" y1="52.2422984" x2="91.5597871" y2="52.2422984" id="路径-74" stroke="#373435" stroke-width="0.7"></line>
<line x1="77.286204" y1="43.9287849" x2="91.5597871" y2="43.9287849" id="路径-74" stroke="#373435" stroke-width="0.7"></line>
<line x1="65.6260058" y1="58.8055985" x2="91.5597871" y2="58.8055985" id="路径-74" stroke="#373435" stroke-width="0.7"></line>
<path d="M14.9523677,5.83793521 L8.56965451,32.0570639 C9.36997293,32.7070255 11.8107364,33.5069446 15.8919449,34.4568211 C27.2522131,37.1008546 37.1040353,32.4755238 39.4085298,23.3580646 C40.7489843,18.0547154 41.6953226,14.2388662 42.2475449,11.9105169 L14.9523677,5.83793521 Z" id="路径-75" stroke="#373435" stroke-width="0.7" fill="#FFFFFF"></path>
<path d="M15.3239522,34.2903807 C22.130096,34.9290553 26.6463027,32.5140633 28.8725722,27.0454048 C33.2139397,27.8586059 36.773898,26.4656147 39.5524472,22.8664314" id="路径-76" stroke="#373435" stroke-width="0.7"></path>
<path d="M23.0982254,2.46449614 L23.0696718,1.82296794 C23.0644053,0.854105047 23.8538202,0.0729773102 24.8329059,0.0782435646 C25.8119915,0.0835633015 26.6099881,0.873272679 26.6152811,1.84213557 L26.6823943,14.1221057 C26.6876608,15.0909686 25.8982459,15.8720963 24.9191602,15.8668301 C23.9400746,15.8615103 23.142078,15.071801 23.136785,14.1029381 L23.1096245,9.13131934" id="路径" stroke="#373435" stroke-width="0.7" transform="translate(24.876, 7.9725) rotate(-23) translate(-24.876, -7.9725)"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>API</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆看板" transform="translate(-1174, -110)" fill="#5B6167" fill-rule="nonzero">
<g id="API调用次数" transform="translate(1144, 80)">
<g id="编组-5" transform="translate(20, 20)">
<g id="API" transform="translate(10, 10)">
<path d="M20.183785,2 C21.1770101,2 22,2.81194687 22,3.81621501 L22,20.1837654 C22,21.1769905 21.1880531,21.9999804 20.183785,21.9999804 L3.81621501,21.9999804 C2.82249953,21.9999804 2,21.1880335 2,20.1837654 L2,3.81619539 C2,2.82247991 2.81192725,2 3.81619539,2 L20.183785,2 Z M20.5467926,7.72632909 L3.45316815,7.72632909 L3.45316815,20.1837654 C3.46650764,20.3784704 3.62149108,20.5334622 3.81619539,20.5468122 L20.1837458,20.5468122 C20.365024,20.5468122 20.5467926,20.3650436 20.5467926,20.1837654 L20.5467926,7.72632909 Z M19.1684542,10.0019968 L19.1684542,16.551355 L17.8970351,16.551355 L17.8970351,10.0019968 L19.1684542,10.0019968 Z M8.52774291,10.0019968 L11.1664378,16.5513746 L9.71376004,16.5513746 L9.16894458,15.0981868 L6.52973967,15.0981868 L5.98492421,16.5513746 L4.61760921,16.5513746 L7.1604083,10.0019968 L8.52774291,10.0019968 Z M14.2787711,9.99190777 C14.8851672,9.99412804 15.2889585,10.0074496 15.4395988,10.0873792 C15.8031556,10.183785 16.1666928,10.3655536 16.3695471,10.7070048 C16.5513354,11.0705616 16.732594,11.4335888 16.732594,11.9784043 C16.7220609,12.3203655 16.6688269,12.6623266 16.5513354,12.9826725 C16.4654626,13.2603565 16.1877785,13.4421251 16.0065199,13.6239134 C15.8332058,13.7907005 15.6054976,13.8893007 15.365279,13.9015778 C15.0876145,13.9980032 14.6386949,13.9980032 13.9979836,13.9980032 L13.1749741,13.9980032 L13.1749741,16.5402923 L11.8071687,16.5402923 L11.8071687,9.99146372 Z M7.80113922,11.5405473 L6.8932769,13.9980032 L8.7094919,13.9980032 L7.80113922,11.5405473 Z M14.7883348,11.1880531 L13.1538884,11.1880531 L13.1538884,13.0042681 L14.0548702,13.0041359 C14.5026669,13.0030779 14.7989899,12.9935564 14.8842306,12.9078623 C14.9806561,12.8224995 15.1624247,12.7265841 15.3441933,12.5448155 C15.5254715,12.3630469 15.5254715,12.2776841 15.5149189,12.0105527 C15.5149189,11.7434213 15.4185131,11.5616526 15.3331503,11.4657372 C15.1513817,11.2839686 15.0660189,11.1880531 14.7883348,11.1880531 Z M20.1837654,3.45316815 L3.81619539,3.45316815 C3.63442678,3.45316815 3.45316815,3.6344464 3.45316815,3.81621501 L3.45316815,6.2736513 L20.5468122,6.2736513 L20.5468122,3.81619539 C20.5468122,3.63442678 20.3650436,3.45316815 20.1837654,3.45316815 Z M5.45064179,3.99800323 C5.81417901,3.99800323 6.17724548,4.36103047 6.17724548,4.72407733 C6.17724548,5.08763416 5.81419863,5.4506614 5.45064179,5.4506614 L4.72407733,5.4506614 C4.36103047,5.4506614 3.99800323,5.08763416 3.99800323,4.72407733 C3.99800323,4.36103047 4.36103047,3.99800323 4.72407733,3.99800323 L5.45064179,3.99800323 Z M8.1752291,3.99800323 C8.53827595,3.99800323 8.90181317,4.36103047 8.90181317,4.72407733 C8.90181317,5.08763416 8.53827595,5.4506614 8.1752291,5.4506614 L7.44864502,5.4506614 C7.08559817,5.4506614 6.72206095,5.08763416 6.72206095,4.72407733 C6.72206095,4.36103047 7.08559817,3.99800323 7.44864502,3.99800323 L8.1752291,3.99800323 Z M10.9103495,3.99800323 C11.2733963,3.99800323 11.6364432,4.36103047 11.6364432,4.72407733 C11.6364432,5.08763416 11.2733963,5.4506614 10.9103495,5.4506614 L10.1837654,5.4506614 C9.82022816,5.4506614 9.4571813,5.08763416 9.4571813,4.72407733 C9.4571813,4.36103047 9.82022816,3.99800323 10.1837654,3.99800323 L10.9103495,3.99800323 Z" id="形状结合"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 B

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 16</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆看板" transform="translate(-1372, -1136)" stroke="#BABDC8">
<g id="快速操作" transform="translate(848, 1048)">
<g id="1" transform="translate(296, 68)">
<g id="编组-16" transform="translate(228, 20)">
<line x1="13.7142857" y1="2.28571429" x2="2.28571429" y2="13.7142857" id="路径-15"></line>
<polyline id="路径" points="5.55102041 2.28571429 13.7142857 2.28571429 13.7142857 10.4489796"></polyline>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 929 B

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="14px" height="14px" viewBox="0 0 14 14" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>箭头_向上</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆看板" transform="translate(-1349, -186)" fill="#369F21" fill-rule="nonzero">
<g id="API调用次数" transform="translate(1144, 80)">
<g id="编组-3" transform="translate(205, 105)">
<g id="箭头_向上" transform="translate(0, 1)">
<polygon id="路径" points="7.58333789 4.21666211 7.58333789 12.4416621 6.41666211 12.4416621 6.41666211 4.21666211 4.60833789 6.025 3.79166211 5.20832422 7 2 10.2083379 5.20832422 9.39166211 6.025"></polygon>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 946 B

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 32</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆看板" transform="translate(-276, -699)">
<g id="最近记忆活动" transform="translate(256, 632)">
<g id="编组-18" transform="translate(20, 64)">
<g id="编组-32" transform="translate(0, 3)">
<rect id="矩形" stroke="#E1E2E7" x="0.5" y="0.5" width="39" height="39" rx="8"></rect>
<g id="ai" transform="translate(10, 10)">
<g id="编组-5" transform="translate(0, 1)">
<path d="M8.28720375,0.224064323 L8.28720375,17 C8.28720375,17.5522847 8.734919,18 9.28720375,18 L13.0261803,18 C13.5784651,18 14.0261803,17.5522847 14.0261803,17 L14.0261803,15.0113042 L14.0261803,15.0113042 L15.5361593,15.0113042 C16.6407288,15.0113042 17.5361593,14.1158737 17.5361593,13.0113042 L17.5361593,11.1181466 L17.5361593,11.1181466 C18.94936,10.9269131 19.42233,10.4075569 18.955069,9.5600778 C18.4878081,8.71259873 18.0148382,7.98004933 17.5361593,7.3624296 C16.8964429,4.42435429 15.8608138,2.4587377 14.4292722,1.46557981 C12.9977305,0.472421924 10.9503744,0.0585834281 8.28720375,0.224064323 Z" id="路径-4" stroke="#212332" stroke-width="1.7" stroke-linejoin="round"></path>
<path d="M3.28720375,1.85075505 L5.13574583,1.85075505 C5.41188821,1.85075505 5.63574583,2.07461267 5.63574583,2.35075505 L5.63574583,4.26840929 C5.63574583,4.54455166 5.85960346,4.76840929 6.13574583,4.76840929 L8.28720375,4.76840929 L8.28720375,4.76840929" id="路径-5" stroke="#212332" stroke-width="1.7"></path>
<path d="M3.28720375,12.850755 L5.13574583,12.850755 C5.41188821,12.850755 5.63574583,13.0746127 5.63574583,13.350755 L5.63574583,15.2684093 C5.63574583,15.5445517 5.85960346,15.7684093 6.13574583,15.7684093 L8.28720375,15.7684093 L8.28720375,15.7684093" id="路径-5" stroke="#212332" stroke-width="1.7" transform="translate(5.7872, 14.3096) scale(1, -1) translate(-5.7872, -14.3096)"></path>
<line x1="4.08888168" y1="8.75" x2="8.07296647" y2="8.75" id="路径-6" stroke="#212332" stroke-width="1.7"></line>
<circle id="椭圆形" fill="#212332" cx="1.75" cy="1.75" r="1.75"></circle>
<circle id="椭圆形备份-4" fill="#212332" cx="1.75" cy="15.75" r="1.75"></circle>
<circle id="椭圆形备份-3" fill="#212332" cx="2.75" cy="8.75" r="1.75"></circle>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>知识库</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆看板" transform="translate(-878, -110)" fill="#5B6167" fill-rule="nonzero">
<g id="知识库" transform="translate(848, 80)">
<g id="编组-5" transform="translate(20, 20)">
<g id="知识库" transform="translate(10, 10)">
<path d="M8.7122437,3 C9.78625269,3 10.7983988,3.38712601 11.5605155,4.09016045 C11.7271867,4.24386316 11.879989,4.41166596 12.0171841,4.59165977 C12.1534707,4.41405344 12.3048097,4.24827077 12.4695567,4.09611296 C13.2331771,3.39010227 14.2448936,3.00106295 15.318473,3.00106295 L20.7894747,3.00106295 C22.0082601,3.00106295 23,3.94007206 23,5.09422203 L23,18.5375501 C23,19.6917 22.0082601,20.6304966 20.7894747,20.6304966 L13.9660808,20.6304966 C13.913349,20.6282582 13.8625028,20.6501274 13.8281781,20.6898091 L13.3783831,21.3154609 C13.0701426,21.7440419 12.5606327,22 12.0154657,22 C11.4702988,22 10.9607889,21.7448923 10.6525483,21.3152483 L10.2025386,20.6895965 C10.1682611,20.6499749 10.1175084,20.6281118 10.0648506,20.630284 L3.21052529,20.6668494 C1.99173989,20.6668494 1,19.7280529 1,18.5736903 L1,5.12951194 C1,3.97514937 1.99173989,3.03656544 3.21052529,3.03656544 L8.7122437,3 Z M20.7894747,4.48812854 L15.318473,4.48812854 C13.911736,4.48812854 12.767272,5.52471636 12.767272,6.79855439 L12.767272,16.5989438 C12.767272,17.0098791 12.4306769,17.343008 12.0154657,17.343008 C11.6002546,17.343008 11.2636594,17.0098791 11.2636594,16.5989438 L11.2636594,6.79855439 C11.2636594,6.18714615 11.0058973,5.61187817 10.5354814,5.17883277 C10.0526069,4.73239421 9.4051943,4.48812854 8.7122437,4.48812854 L3.21052529,4.52511916 C2.82066003,4.52511916 2.50361258,4.79638374 2.50361258,5.12993712 L2.50361258,18.5736903 C2.50361258,18.9072437 2.82066003,19.1787209 3.21052529,19.1787209 L10.0648506,19.1421554 C10.6100176,19.1421554 11.1195274,19.3972632 11.427768,19.8266946 L11.877563,20.4525589 C11.9170865,20.5074071 11.9931263,20.5118715 12.0154657,20.5118715 C12.0378051,20.5118715 12.1136302,20.5074071 12.1531537,20.4525589 L12.6042375,19.8266946 C12.912478,19.3981135 13.4217731,19.1421554 13.9671549,19.1421554 L20.7894747,19.1421554 C21.17934,19.1421554 21.4963874,18.8708909 21.4963874,18.5373375 L21.4963874,5.09315908 C21.4963874,4.7596057 21.17934,4.48812854 20.7894747,4.48812854 Z M7.40796719,10.389196 C7.82317834,10.389196 8.15977348,10.7223249 8.15977348,11.1332602 C8.15977348,11.5441956 7.82317834,11.8773245 7.40796719,11.8773245 L5.23846905,11.8773245 C4.8232579,11.8773245 4.48666276,11.5441956 4.48666276,11.1332602 C4.48666276,10.7223249 4.8232579,10.389196 5.23846905,10.389196 L7.40796719,10.389196 Z M18.7890256,10.389196 C19.2042367,10.389196 19.5408319,10.7223249 19.5408319,11.1332602 C19.5408319,11.5441956 19.2042367,11.8773245 18.7890256,11.8773245 L16.6206014,11.8773245 C16.2053903,11.8773245 15.8687952,11.5441956 15.8687952,11.1332602 C15.8687952,10.7223249 16.2053903,10.389196 16.6206014,10.389196 L18.7890256,10.389196 Z M8.78699473,7.15251639 C9.20220588,7.15251639 9.53880102,7.48564531 9.53880102,7.89658066 C9.53880102,8.30751601 9.20220588,8.64064493 8.78699473,8.64064493 L5.23954306,8.64064493 C4.82433191,8.64064493 4.48773677,8.30751601 4.48773677,7.89658066 C4.48773677,7.48564531 4.82433191,7.15251639 5.23954306,7.15251639 L8.78699473,7.15251639 Z M18.7890256,7.15251639 C19.2042367,7.15251639 19.5408319,7.48564531 19.5408319,7.89658066 C19.5408319,8.30751601 19.2042367,8.64064493 18.7890256,8.64064493 L15.2417887,8.64064493 C14.8265776,8.64064493 14.4899824,8.30751601 14.4899824,7.89658066 C14.4899824,7.48564531 14.8265776,7.15251639 15.2417887,7.15251639 L18.7890256,7.15251639 Z" id="形状结合"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 38</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆看板" transform="translate(-276, -778)">
<g id="最近记忆活动" transform="translate(256, 632)">
<g id="编组-17" transform="translate(20, 134)">
<g id="编组-38" transform="translate(0, 12)">
<rect id="矩形" stroke="#E1E2E7" x="0.5" y="0.5" width="39" height="39" rx="8"></rect>
<g id="危险品-icon" transform="translate(10, 10)" fill="#212332" fill-rule="nonzero">
<rect id="矩形" opacity="0" x="0" y="0" width="20" height="20"></rect>
<path d="M18.55125,17.1875 L12.00125,6.8625 L12.00125,1.66625 L12.835,1.66625 C13.2938482,1.66352732 13.6653389,1.29259358 13.66875,0.83375 C13.6660199,0.374418198 13.2943318,0.00273012748 12.835,0 L6.16875,0 C5.7094182,0.00273012748 5.33773013,0.374418198 5.335,0.83375 C5.335,1.28875 5.7125,1.66625 6.16875,1.66625 L7.0025,1.66625 L7.0025,6.8625 L0.4525,17.1875 C-0.52375,18.7375 0.16625,20 2.0025,20 L17.0025,20 C18.8375,20 19.5275,18.7375 18.5525,17.1875 L18.55125,17.1875 Z M8.40875,7.7475 L8.66875,7.34375 L8.66875,1.66625 L10.335,1.66625 L10.335,7.34375 L10.59625,7.7475 L14.73625,14.33125 C14.03375,15.25625 11.97125,14.9475 8.75625,13.435 C7.38625,12.79 5.89625,13.0425 4.6775,13.5125 L8.40875,7.7475 Z M1.63,18.22125 L3.07,15.99625 C3.62396409,15.5831322 4.22173279,15.232268 4.8525,14.95 C5.45,14.6875 6.01625,14.525 6.5375,14.4675 C7.145,14.4 7.69125,14.4775 8.1625,14.69875 C9.85,15.49375 11.225,15.97125 12.3625,16.1575 C12.725,16.21625 13.065,16.24625 13.3825,16.24625 C13.74125,16.24625 14.07,16.20875 14.36875,16.13375 C14.8125,16.02 15.1925,15.825 15.5025,15.55125 L17.27,18.36 L1.63,18.22125 Z" id="形状"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="120px" height="120px" viewBox="0 0 120 120" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 15</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆看板-空状态" transform="translate(-484, -1215)">
<g id="编组-15" transform="translate(484, 1215)">
<g id="编组-18" transform="translate(23, 22)">
<g id="编组-17" transform="translate(0, 18.4936)">
<polygon id="路径-73" fill="#D2D3D5" points="-2.75208433e-16 19.7634835 17.3660602 19.7634835 17.3660602 1.8193695e-12"></polygon>
<polygon id="路径-73" fill="#D2D3D5" transform="translate(66.317, 9.8817) scale(-1, 1) translate(-66.317, -9.8817)" points="57.6339398 19.7634835 75 19.7634835 75 1.92488832e-16"></polygon>
<rect id="矩形" fill="#373435" x="23.2988267" y="24.6695043" width="28.2038429" height="11.1012769"></rect>
<polyline id="路径-70" stroke="#373435" stroke-width="0.7" points="0 19.7356035 17.3659376 1.81916045e-12 57.8135666 1.81917701e-12 74.8014963 19.7356035"></polyline>
<line x1="57.8135666" y1="1.81917701e-12" x2="57.8135666" y2="19.7634835" id="路径-71" stroke="#373435" stroke-width="0.7"></line>
<line x1="17.3659376" y1="1.81917701e-12" x2="17.3659376" y2="19.7634835" id="路径-72" stroke="#373435" stroke-width="0.7"></line>
</g>
<g id="编组-13" transform="translate(15.9413, 0)">
<path d="M12.2356988,4.465226 L0.972921988,16.8958133 C0.375475584,17.5552075 0.196532154,18.4931521 0.509248704,19.3261895 L11.5939287,48.8543765 C11.9398119,49.7757657 12.9671393,50.2423055 13.8885285,49.8964223 C13.9021171,49.8913212 13.9156429,49.8860543 13.9291028,49.8806228 L40.1039064,39.3181687 C40.9912726,38.9600852 41.4374282,37.965102 41.1145377,37.0643333 L30.7025048,8.01784388 C30.3990531,7.17130361 29.6436708,6.56862589 28.7508796,6.46075021 L12.2356988,4.465226 L12.2356988,4.465226 Z" id="路径-63" fill="#FFFFFF"></path>
<polygon id="路径-69" fill="#D2D3D5" points="10.2431625 45.6045267 11.6513385 48.7791958 12.310847 49.4243401 13.0949245 49.8708465 13.9180136 49.8708465 15.2213982 49.4243401 40.0651494 39.2819249 41.0158582 37.7992125 40.9090466 36.3521362 39.9422386 33.8596111"></polygon>
<path d="M12.2356988,4.465226 L0.972921988,16.8958133 C0.375475584,17.5552075 0.196532154,18.4931521 0.509248704,19.3261895 L11.5939287,48.8543765 C11.9398119,49.7757657 12.9671393,50.2423055 13.8885285,49.8964223 C13.9021171,49.8913212 13.9156429,49.8860543 13.9291028,49.8806228 L40.1039064,39.3181687 C40.9912726,38.9600852 41.4374282,37.965102 41.1145377,37.0643333 L30.7025048,8.01784388 C30.3990531,7.17130361 29.6436708,6.56862589 28.7508796,6.46075021 L12.2356988,4.465226 L12.2356988,4.465226 Z" id="路径-63" stroke="#373435" stroke-width="0.7"></path>
<line x1="10.2431625" y1="45.6045267" x2="40.0651494" y2="33.8596111" id="路径-64" stroke="#373435" stroke-width="0.7"></line>
<line x1="15.3038006" y1="22.6558631" x2="25.6583863" y2="22.6558631" id="路径-65" stroke="#373435" stroke-width="0.7"></line>
<line x1="14.5337764" y1="28.3391138" x2="24.4437183" y2="28.3391138" id="路径-66" stroke="#373435" stroke-width="0.7"></line>
<line x1="18.1342602" y1="20.080611" x2="16.55384" y2="31.1519924" id="路径-67" stroke="#373435" stroke-width="0.7"></line>
<line x1="23.7611042" y1="20.080611" x2="22.0303089" y2="31.1519924" id="路径-68" stroke="#373435" stroke-width="0.7"></line>
<path d="M10.3527811,5.53364867 L10.3527811,5.53364867 L10.3589861,3.3537869 C10.3634212,1.7957286 11.6231284,0.529077436 13.1726209,0.524516118 C14.7221134,0.520207272 15.9746299,1.77966774 15.9702066,3.33772605 L15.9449563,12.2040847 C15.9405213,13.762143 14.6808141,15.0287942 13.1313216,15.0332409 C11.5818291,15.0376644 10.3293126,13.7782039 10.3337359,12.2201456" id="路径" stroke="#373435" stroke-width="0.7" transform="translate(13.152, 7.7789) rotate(-23) translate(-13.152, -7.7789)"></path>
<path d="M11.6540475,12.524912 C11.6553006,12.0847015 11.6571802,11.4243857 11.6596864,10.5439647 C11.6622207,9.65364562 12.3820534,8.92984496 13.2674777,8.92730395 C14.1529019,8.92477629 14.8686256,9.64446799 14.866098,10.534787 C14.8625318,11.7852395 14.8598622,12.7230789 14.8580825,13.3483051" id="路径" stroke="#373435" stroke-width="0.7" transform="translate(13.2601, 11.1378) rotate(-23) translate(-13.2601, -11.1378)"></path>
</g>
<path d="M74.8014963,38.2292187 L74.8014963,74 L0,74 L0,38.2292187 L22.0846423,38.2300152 C22.4068783,46.4591016 29.1408409,53.0309213 37.4007481,53.0309213 C45.6606554,53.0309213 52.394618,46.4591016 52.716854,38.2300152 L74.8014963,38.2292187 Z" id="形状结合" stroke="#373435" stroke-width="0.7" fill="#FFFFFF" stroke-linejoin="round"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 39</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-记忆看板" transform="translate(-276, -954)">
<g id="最近记忆活动" transform="translate(256, 632)">
<g id="编组-14" transform="translate(20, 310)">
<g id="编组-39" transform="translate(0, 12)">
<rect id="矩形" stroke="#E1E2E7" x="0.5" y="0.5" width="39" height="39" rx="8"></rect>
<g id="清理" transform="translate(8, 8)">
<rect id="矩形" fill="#212332" fill-rule="nonzero" opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M12,2 C13.1045695,2 14,2.8954305 14,4 L14,5 L19,5 C20.1045695,5 21,5.8954305 21,7 L21,10 L3,10 L3,7 C3,5.8954305 3.8954305,5 5,5 L10,5 L10,4 C10,2.8954305 10.8954305,2 12,2 Z" id="形状结合" stroke="#212332" stroke-width="1.7" stroke-linejoin="round"></path>
<path d="M4,10 L20,10 L20.4584773,15.5017271 C20.7336658,18.8039893 18.2797377,21.704086 14.9774756,21.9792745 C14.8117436,21.9930855 14.6455091,22 14.4792027,22 L5.1735991,22 C4.0690296,22 3.1735991,21.1045695 3.1735991,20 C3.1735991,19.9445645 3.17590391,19.889153 3.18050758,19.833909 L4,10 L4,10 Z" id="矩形" stroke="#212332" stroke-width="1.7"></path>
<line x1="8.97868467" y1="18.020421" x2="8.73730175" y2="22" id="路径-7" stroke="#212332" stroke-width="1.7" stroke-linecap="round"></line>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 893 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 752 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 603 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 678 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 807 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 712 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 994 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 443 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 416 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 665 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 617 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="200px" height="200px" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>定价</title>
<g id="V1.0版" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="红熊空间-一般空状态" transform="translate(-1073, -106)">
<g id="定价" transform="translate(1073, 106)">
<g id="编组" transform="translate(12, 7)">
<path d="M10.210004,40.7181362 C13.3071681,40.7181362 15.8192668,42.8689882 15.8192668,45.5195123 C15.8192668,48.1700363 13.3092138,50.3208883 10.210004,50.3208883 C7.11079419,50.3208883 4.60074112,48.1700363 4.60074112,45.5195123 C4.60074112,42.8689882 7.11283988,40.7181362 10.210004,40.7181362 Z" id="路径" fill="#FEFEFE"></path>
<path d="M10.210004,40.7181362 C13.3071681,40.7181362 15.8192668,42.8689882 15.8192668,45.5195123 C15.8192668,48.1700363 13.3092138,50.3208883 10.210004,50.3208883 C7.11079419,50.3208883 4.60074112,48.1700363 4.60074112,45.5195123 C4.60074112,42.8689882 7.11283988,40.7181362 10.210004,40.7181362 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<line x1="0" y1="184.897187" x2="175" y2="184.897187" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></line>
<path d="M41.420089,7.09158212 C50.8287045,16.5490601 50.8287045,31.8800655 41.420089,41.3375435 C32.0134982,50.7929863 16.7596765,50.7929863 7.35308567,41.3375435 C-2.05552984,31.8800655 -2.05552984,16.5490601 7.35308567,7.09158212 C16.7596765,-2.36386071 32.0134982,-2.36386071 41.420089,7.09158212 Z" id="路径" fill="#D2D3D5" fill-rule="nonzero"></path>
<path d="M41.420089,7.09158212 C50.8287045,16.5490601 50.8287045,31.8800655 41.420089,41.3375435 C32.0134982,50.7929863 16.7596765,50.7929863 7.35308567,41.3375435 C-2.05552984,31.8800655 -2.05552984,16.5490601 7.35308567,7.09158212 C16.7596765,-2.36386071 32.0134982,-2.36386071 41.420089,7.09158212 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M24.3865873,45.2707044 C12.8177616,45.2707044 3.43879316,35.8432255 3.43879316,24.2145628 C3.43879316,12.5859001 12.8177616,3.15842123 24.3865873,3.15842123 C35.955413,3.15842123 45.3343815,12.5859001 45.3343815,24.2145628 C45.3343815,35.8432255 35.955413,45.2707044 24.3865873,45.2707044 Z" id="路径" fill="#D2D3D5"></path>
<path d="M24.3865873,45.2707044 C12.8177616,45.2707044 3.43879316,35.8432255 3.43879316,24.2145628 C3.43879316,12.5859001 12.8177616,3.15842123 24.3865873,3.15842123 C35.955413,3.15842123 45.3343815,12.5859001 45.3343815,24.2145628 C45.3343815,35.8432255 35.955413,45.2707044 24.3865873,45.2707044 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M99.2442662,57.1744156 C99.2442662,57.1744156 85.8511795,92.9040558 83.9323288,98.0409381 C83.9036892,98.1166846 55.6794006,85.2177417 56.5917752,85.2115729 C56.5917752,85.2115729 80.4996727,59.9606531 82.5780866,57.4664051 C82.5780866,57.4664051 86.164169,53.4237904 89.5149978,54.4005157 C91.669102,55.0276762 98.5589624,56.7981194 99.2442662,57.1764719 L99.2442662,57.1744156 Z" id="路径" fill="#373435"></path>
<path d="M99.2442662,57.1744156 C99.2442662,57.1744156 85.8511795,92.9040558 83.9323288,98.0409381 C83.9036892,98.1166846 55.6794006,85.2177417 56.5917752,85.2115729 C56.5917752,85.2115729 80.4996727,59.9606531 82.5780866,57.4664051 C82.5780866,57.4664051 86.164169,53.4237904 89.5149978,54.4005157 C91.669102,55.0276762 98.5589624,56.7981194 99.2442662,57.1764719 L99.2442662,57.1744156 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M88.3264559,54.2483522 L98.2316531,56.8988763 L100.250742,51.5443653 L106.191406,36.5295268 C108.185947,31.9502273 104.593727,26.7622737 99.426332,28.4936478 C97.922755,28.9974324 93.2197297,32.3779302 91.591366,33.4512999 C88.2855423,35.6350521 84.7280995,38.1251876 85.169967,40.9073125 C85.4256774,42.5173671 87.1133659,44.7607509 91.2804222,45.6799009 L88.3244103,54.2462959 L88.3264559,54.2483522 Z" id="路径" fill="#FBFDFF"></path>
<path d="M88.3264559,54.2483522 L98.2316531,56.8988763 L100.250742,51.5443653 L106.191406,36.5295268 C108.185947,31.9502273 104.593727,26.7622737 99.426332,28.4936478 C97.922755,28.9974324 93.2197297,32.3779302 91.591366,33.4512999 C88.2855423,35.6350521 84.7280995,38.1251876 85.169967,40.9073125 C85.4256774,42.5173671 87.1133659,44.7607509 91.2804222,45.6799009 L88.3244103,54.2462959 L88.3264559,54.2483522 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M91.4072546,39.3630584 C92.1866598,40.1403261 94.0666425,42.2397715 96.5357819,39.5069969" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M93.2442779,65.9505496 L98.2316531,56.8988763 C100.371438,57.3553668 102.273923,58.4986495 103.982068,60.8510153 C105.798635,63.3534884 107.046501,66.9169936 108.627814,69.8060443 L125.983389,104.120261 L102.26015,107.386322 L93.2442779,65.9505496 Z" id="路径" fill="#373435"></path>
<path d="M93.2442779,65.9505496 L98.2316531,56.8988763 C100.371438,57.3553668 102.273923,58.4986495 103.982068,60.8510153 C105.798635,63.3534884 107.046501,66.9169936 108.627814,69.8060443 L125.983389,104.120261 L102.021558,106.826856 L93.2442779,65.9505496 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M83.9323288,98.0385466 L56.5917752,85.2095166 L34.062668,108.766075 C26.5447829,115.917761 28.1895121,125.697351 33.3569074,133.120464 C35.8301382,136.673688 38.7800131,141.137836 41.6705632,145.606098 L41.6705632,167.219487 L54.4867674,167.219487 L53.9671639,165.177617 L76.580144,156.635897 L69.8478012,140.132323 L83.9343745,98.0364903 L83.9323288,98.0385466 Z" id="路径" fill="#FBFDFF"></path>
<path d="M69.7536998,140.138492 C76.3448905,120.782881 83.9323288,98.0406029 83.9323288,98.0406029 M41.6951114,145.26887 C41.5825988,147.29429 41.6296495,165.889084 41.7482992,167.219487 C41.7646646,167.332581 49.2089052,167.061154 54.7302036,166.84319" id="形状" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M60.5788114,166.60672 C60.5604003,167.225656 57.5266523,184.956818 57.5266523,184.956818 C57.5266523,184.956818 19.5567297,185.012338 19.5833096,184.899243 C21.9113109,174.414354 34.6334136,177.677645 41.7503448,167.221543 L60.5788114,166.608776 L60.5788114,166.60672 Z" id="路径" fill="#D2D3D5"></path>
<path d="M60.5788114,166.60672 C60.5604003,167.225656 57.5266523,184.956818 57.5266523,184.956818 C57.5266523,184.956818 19.5567297,185.012338 19.5833096,184.899243 C21.9113109,174.414354 34.6334136,177.677645 41.7503448,167.221543 L60.5788114,166.608776 L60.5788114,166.60672 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M63.6739298,184.907468 C63.4304935,184.907468 41.5335024,184.907468 41.5335024,184.907468 C41.187782,184.880737 43.1557291,177.539875 51.8539733,176.900377 C57.3139013,173.569229 53.9671639,165.177617 53.9671639,165.177617 L76.580144,156.635897 L85.3172562,177.881215 L63.6739298,184.907468 Z" id="路径" fill="#D2D3D5"></path>
<path d="M63.6739298,184.907468 C63.4304935,184.907468 41.5335024,184.907468 41.5335024,184.907468 C41.187782,184.880737 43.1557291,177.539875 51.8539733,176.900377 C57.3139013,173.569229 53.9671639,165.177617 53.9671639,165.177617 L76.580144,156.635897 L85.3172562,177.881215 L63.6739298,184.907468 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M51.8519276,176.900377 C55.4195988,176.388367 58.3510626,177.825696 58.7029201,178.119741" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M56.5917752,85.2095166 L34.062668,108.766075 C26.5447829,115.917761 28.1895121,125.697351 33.3569074,133.120464 C40.774554,143.773967 52.4860894,162.631962 53.9651182,165.177617 L76.5780983,156.635897 L58.9954527,114.649046 L61.6671148,106.465116" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M100.846036,184.893979 C100.846036,166.864411 109.984105,158.144404 113.287682,154.697961 C115.72176,152.158618 117.656175,150.830163 117.656175,149.194724 C117.656175,146.985735 114.284562,145.380588 110.587607,140.824184 L110.134567,140.25849 C105.808842,134.784463 100.923291,126.444264 100.846036,113.703164 L151.120742,113.703164 C151.040776,126.891321 145.809171,135.364321 141.379171,140.824184 C137.682217,145.380588 134.310603,146.985735 134.310603,149.194724 C134.310603,150.773768 136.11391,152.066636 138.429136,154.439527 L139.60562,155.66926 C143.425792,159.728161 151.120742,168.349199 151.120742,184.893979 L100.846036,184.893979 Z" id="路径" stroke="#373435" stroke-width="0.4" fill="#FBFDFF"></path>
<path d="M109.282765,183.188432 C108.215564,174.018088 122.314148,171.263121 123.484417,170.763897 C124.384624,170.379879 124.478264,168.617575 124.473543,167.310462 L124.461858,166.306467 C124.461858,165.751201 124.64116,161.648386 124.789171,157.358727 L124.891022,154.158959 C124.984535,150.885283 125.026391,148.013675 124.914918,147.166619 C124.625823,144.96986 122.208863,144.083225 118.721646,140.542485 C115.234429,137.001744 112.012934,132.161031 110.243394,126.336849 L141.723384,126.336849 C139.953844,132.161031 136.732349,137.001744 133.245132,140.542485 C129.757915,144.083225 127.340955,144.96986 127.05186,147.166619 C126.772566,149.288912 127.45579,164.120339 127.502431,166.142068 L127.50492,166.306467 C127.50492,167.436146 127.312092,170.264674 128.482361,170.763897 C129.652631,171.263121 143.751214,174.018088 142.684013,183.188432 L109.282765,183.188432 Z" id="路径" fill="#373435"></path>
<path d="M101.440283,118.985359 C88.7176294,122.971888 85.7334246,110.36646 97.3421583,107.542829 C108.259358,104.888346 102.809599,110.318406 104.634698,112.392401 C106.041341,113.989704 105.558053,117.695599 101.440283,118.985359 Z" id="路径" fill="#FBFDFF"></path>
<path d="M101.440283,118.985359 C88.7176294,122.971888 85.7334246,110.36646 97.3421583,107.542829 C108.259358,104.888346 102.809599,110.318406 104.634698,112.392401 C106.041341,113.989704 105.558053,117.695599 101.440283,118.985359 Z" id="路径" stroke="#373435" stroke-width="0.399" stroke-linecap="round"></path>
<path d="M135.113272,113.272743 C134.708568,104.980609 125.862041,102.456833 118.657907,103.342942 C116.72672,103.579366 110.722948,104.242506 108.318296,104.455864 C98.1260277,105.361194 96.9688871,115.994501 102.013942,121.778235 C104.349833,124.455784 110.518631,125.851261 111.072644,120.42889 C111.072644,120.42889 111.076573,120.895971 113.090273,122.583614 C116.084301,125.090091 121.412256,124.997829 121.561564,120.480788 C121.573352,120.107891 124.256975,123.654249 128.294197,122.796972 C134.024892,121.580255 130.608479,113.351551 131.502365,113.288121 C132.578958,113.211235 135.113272,113.295809 135.113272,113.274666 L135.113272,113.272743 Z" id="路径" fill="#FBFDFF"></path>
<path d="M135.113272,113.272743 C134.708568,104.980609 125.862041,102.456833 118.657907,103.342942 C116.72672,103.579366 110.722948,104.242506 108.318296,104.455864 C98.1260277,105.361194 96.9688871,115.994501 102.013942,121.778235 C104.349833,124.455784 110.525024,125.936617 111.079037,120.514245 C113.757748,124.760024 121.412256,124.997829 121.561564,120.480788 C121.573352,120.107891 124.256975,123.654249 128.294197,122.796972 C134.024892,121.580255 131.640828,114.284353 131.502365,113.716619 C131.520113,113.715352 131.538258,113.714128 131.55678,113.712947 C132.661828,113.642493 135.113272,113.723959 135.113272,113.703164 L135.113272,113.272743 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M112.231309,121.853627 C110.899569,120.521168 107.336843,117.343912 108.734045,110.321771" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M121.650973,120.514245 C118.236728,117.69922 118.08725,112.601657 118.864609,109.613905" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M84.6565006,62.2410497 L87.6493349,54.2648023 L67.738702,54.2648023 C65.5170902,54.332659 62.7676922,53.8432682 61.2497954,52.3956585 L50.1826503,42.165746 L27.1421224,58.9900966 C32.3974821,63.365826 36.7036448,66.3001145 42.5072476,67.5338728 C45.7087415,68.2144961 51.97876,68.681268 55.1454773,67.8525937 L84.6585463,62.2410497 L84.6565006,62.2410497 Z" id="路径" fill="#373435"></path>
<path d="M84.6565006,62.2410497 L87.6493349,54.2648023 L67.738702,54.2648023 C65.5170902,54.332659 62.7676922,53.8432682 61.2497954,52.3956585 L50.1826503,42.165746 L27.1421224,58.9900966 C32.3974821,63.365826 36.7036448,66.3001145 42.5072476,67.5338728 C45.7087415,68.2144961 51.97876,68.681268 55.1454773,67.8525937 L84.6585463,62.2410497 L84.6565006,62.2410497 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M26.6900264,58.56445 L49.7919248,41.9046005 C49.0984383,40.7654303 49.3786968,38.8592737 50.2992542,35.805722 C51.275045,32.5650502 49.687595,30.6630061 47.809658,30.3298914 C47.809658,30.3298914 46.3490403,34.886572 44.317677,37.9216174 C41.2900662,42.4433416 36.4786197,45.7457013 34.9423117,45.665507 C30.7568443,45.4434305 19.3378416,44.4852116 12.9819045,44.2281786 C7.63039768,44.0102146 5.42106001,51.7664418 12.5625395,54.1105825 C18.5911673,56.0907646 26.1520118,58.1079594 26.6900264,58.5665062 L26.6900264,58.56445 Z" id="路径" fill="#FBFDFF"></path>
<path d="M26.6900264,58.56445 L49.7919248,41.9046005 C49.0984383,40.7654303 49.3786968,38.8592737 50.2992542,35.805722 C51.275045,32.5650502 49.687595,30.6630061 47.809658,30.3298914 C47.809658,30.3298914 46.3490403,34.886572 44.317677,37.9216174 C41.2900662,42.4433416 36.4786197,45.7457013 34.9423117,45.665507 C30.7568443,45.4434305 19.3378416,44.4852116 12.9819045,44.2281786 C7.63039768,44.0102146 5.42106001,51.7664418 12.5625395,54.1105825 C18.5911673,56.0907646 26.1520118,58.1079594 26.6900264,58.5665062 L26.6900264,58.56445 Z" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<path d="M19.1148622,44.5715747 C17.8935894,44.4625927 16.3245505,44.5222243 14.9989479,45.1658349 C12.2781895,46.4859563 12.042936,50.5861463 13.6958478,52.6670853 C14.921212,54.2092832 15.9501905,55.1736709 17.8813153,55.7699874" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></path>
<line x1="29.5846679" y1="45.3077171" x2="39.4489514" y2="46.1507853" id="路径" stroke="#373435" stroke-width="0.4" stroke-linecap="round"></line>
<line x1="24.3865873" y1="3.15842123" x2="24.3865873" y2="8.42245662" id="路径-2" stroke="#373435" stroke-width="0.4"></line>
<line x1="24.3865873" y1="45.0435149" x2="24.3865873" y2="39.7794795" id="路径-3" stroke="#373435" stroke-width="0.4"></line>
<line x1="3.43879316" y1="24.2145628" x2="8.67574171" y2="24.2145628" id="路径-4" stroke="#373435" stroke-width="0.4"></line>
<line x1="45.3343815" y1="24.2145628" x2="40.097433" y2="24.2145628" id="路径-5" stroke="#373435" stroke-width="0.4"></line>
<polyline id="路径-59" stroke="#373435" stroke-width="0.4" points="24.3865873 11.6908899 24.3865873 24.2145628 33.8131806 33.6898265"></polyline>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 387 B

Some files were not shown because too many files have changed in this diff Show More