first commit

master
anthonywj 4 years ago
commit 0e2aede6b0

@ -0,0 +1,9 @@
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 4
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

@ -0,0 +1,3 @@
VUE_APP_API_BASE=http://192.168.31.140:9998
template=./public/index-dev.html
outputDir=serve

@ -0,0 +1,3 @@
VUE_APP_API_BASE=http://127.0.0.1:8080/glxp_warehous/
template=./public/index.html
outputDir=dist

@ -0,0 +1,4 @@
VUE_APP_API_BASE=http://localhost/vue-admin-php/public/index.php
template=./public/index.html
NODE_ENV=production
outputDir=stage

@ -0,0 +1,20 @@
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
'@vue/prettier'
],
plugins: [
'vue'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
},
parserOptions: {
parser: 'babel-eslint'
}
}

22
.gitignore vendored

@ -0,0 +1,22 @@
.DS_Store
node_modules
/dist
/stage
# local env files
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*

@ -0,0 +1,330 @@
<template>
<div>
<div style="display: flex">
<el-checkbox v-model="checked" class="checkitemTag"
>是否关联第三方产品信息</el-checkbox
>
<el-button
style="margin-right: 20px"
type="primary"
size="mini"
icon="search"
@click="combine"
>选入</el-button
>
</div>
<el-card class="el-card" v-if="checked">
<div>
<el-form :inline="true" :model="erpQuery" style="display: flex" size="mini">
<el-form-item class="query-form-item">
<el-input
v-model="erpQuery.invcode"
placeholder="存货编码"
@keyup.enter.native="keyupErp_submit($event)"
></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-input v-model="erpQuery.goodsname" placeholder="存货名称"></el-input>
</el-form-item>
<el-form-item style="display: flex">
<el-button type="primary" icon="search" @click="getErpList"></el-button>
</el-form-item>
</el-form>
<el-table
:data="erpList"
style="width: 100%"
highlight-current-row="true"
v-loading="erpLloading"
:row-class-name="tableRowClassName"
@current-change="handleErpChange"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="第三方编码" prop="invcode"></el-table-column>
<el-table-column label="存货名称" prop="invname"></el-table-column>
<el-table-column label="计量单位" prop="measname"></el-table-column>
<el-table-column label="规格型号" prop="invspec"></el-table-column>
</el-table>
<el-pagination
:page-size="erpQuery.limit"
@current-change="handleErpPageChange"
layout="prev, pager, next"
:total="pageTotal"
></el-pagination>
</div>
</el-card>
<el-card class="el-card">
<div>
<el-form :inline="true" :model="unionQuery" class="query-form" size="mini">
<el-row>
<el-form-item class="query-form-item">
<el-input
v-model="unionQuery.nameCode"
size="mini"
placeholder="最小单元销售标识"
@keyup.enter.native="keyup_submit($event)"
></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-input
v-model="unionQuery.cpmctymc"
size="mini"
placeholder="产品通用名"
></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-input
v-model="unionQuery.ylqxzcrbarmc"
size="mini"
placeholder="医疗器械注册人"
></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-input
v-model="unionQuery.ggxh"
placeholder="规格型号"
size="mini"
></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-button-group>
<el-button type="primary" icon="search" @click="getList" size="mini"
>查询</el-button
>
</el-button-group>
</el-form-item>
</el-row>
</el-form>
<el-table
:data="udidlList"
style="width: 100%"
@row-click="intentDetail"
v-loading="loading"
:row-class-name="tableRowClassName"
@selection-change="handleSelectionUdiChange"
>
<el-table-column
type="selection"
width="55"
:selectable="checkSelectable"
></el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="产品标识"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="产品名称"
prop="cpmctymc"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="规格型号"
prop="ggxh"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="医疗器械注册人"
prop="ylqxzcrbarmc"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="注册证编号"
prop="zczbhhzbapzbh"
show-overflow-tooltip
></el-table-column>
</el-table>
<el-pagination
:page-size="unionQuery.limit"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
></el-pagination>
</div>
</el-card>
</div>
</template>
<script>
import { getUdiInfos } from "../../api/basic/udiInfo";
import { combineUdi } from "../../api/basic/UdiInfoRelevance";
import { getErpProduct, getInvbasdoc, combineProduct } from "../../api/erp/udiRelevance";
export default {
name: "closeDialog",
props: {
closeDialog: {
type: Function,
required: true,
},
},
data() {
return {
erpQuery: {
invcode: null,
goodsname: "",
page: 1,
limit: 10,
},
unionQuery: {
page: 1,
limit: 20,
nameCode: "",
cpmctymc: "",
ylqxzcrbarmc: "",
ggxh: "",
},
combineQuery: {
thirdId: "",
keys: [],
},
checked: true,
udidlList: [],
erpList: [],
pageTotal: 1,
total: 1,
currentRow: null,
loading: false,
erpLloading: false,
multipleUdiSelection: [],
};
},
methods: {
getList() {
if (
this.unionQuery.nameCode == "" &&
this.unionQuery.cpmctymc == "" &&
this.unionQuery.ylqxzcrbarmc == "" &&
this.unionQuery.ggxh == ""
) {
this.$message.warning("请输入查询条件");
return;
}
this.loading = true;
getUdiInfos(this.unionQuery)
.then((response) => {
this.loading = false;
this.udidlList = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.udidlList = [];
this.total = 0;
});
},
checkSelectable(row, index) {
return !row.check;
},
handleCurrentChange(val) {
this.unionQuery.page = val;
this.getList();
},
tableRowClassName({ row, rowIndex }) {
if (row.checked) return "warning-row";
return "";
},
handleErpChange(val) {
console.log(val);
if (val.checked) {
this.$message.warning("该产品已被选入");
return;
}
this.currentRow = val;
this.unionQuery.cpmctymc = this.currentRow.invname;
},
handleErpPageChange(val) {
this.erpQuery.page = val;
this.getErpList();
},
getErpList() {
this.erplLoading = true;
getInvbasdoc(this.erpQuery)
.then((response) => {
this.erplLoading = false;
this.erpList = response.data.list || [];
this.pageTotal = response.data.total || 0;
})
.catch(() => {
this.erplLoading = false;
this.erpList = [];
this.pageTotal = 0;
});
},
keyupErp_submit(event) {
console.log("全选----");
this.getErpList();
event.target.select();
},
intentBack() {
this.$router.go(-1);
},
combine() {
let selectData = this.multipleUdiSelection;
var ids = [];
selectData.forEach((obj, index) => {
ids.push(obj.uuid);
});
this.combineQuery.keys = ids;
if (this.checked) {
this.combineQuery.thirdId = this.currentRow.invcode;
this.combineQuery.erpName = this.currentRow.invname;
} else {
this.combineQuery.thirdId = "";
}
combineUdi(this.combineQuery)
.then((response) => {
if (response.code == 20000) {
this.$emit("closeUdi", true);
} else {
this.$emit("closeUdi", false);
}
})
.catch(() => {
this.$emit("closeUdi", false);
});
},
intentDetail(row) {
this.$emit("productInfo", row);
this.closeDialog();
},
handleSelectionUdiChange(val) {
console.log("----" + val);
this.multipleUdiSelection = val;
},
keyup_submit(event) {
console.log("全选----");
this.getList();
event.target.select();
},
},
};
</script>
<style scoped>
.checkitemTag {
float: left;
text-align: left;
margin-top: 5px;
width: 100%;
}
div /deep/.el-table .warning-row {
background: #bebebe;
}
div /deep/.el-table .success-row {
background: #ffffff;
}
</style>

@ -0,0 +1,330 @@
<template>
<div>
<div style="display: flex">
<el-checkbox v-model="checked" class="checkitemTag"
>是否关联第三方产品信息</el-checkbox
>
<el-button
style="margin-right: 20px"
type="primary"
size="mini"
icon="search"
@click="combine"
>选入</el-button
>
</div>
<el-card class="el-card" v-if="checked">
<div>
<el-form :inline="true" :model="erpQuery" style="display: flex" size="mini">
<el-form-item class="query-form-item">
<el-input
v-model="erpQuery.invcode"
placeholder="存货编码"
@keyup.enter.native="keyupErp_submit($event)"
></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-input v-model="erpQuery.goodsname" placeholder="存货名称"></el-input>
</el-form-item>
<el-form-item style="display: flex">
<el-button type="primary" icon="search" @click="getErpList"></el-button>
</el-form-item>
</el-form>
<el-table
:data="erpList"
style="width: 100%"
highlight-current-row="true"
v-loading="erpLloading"
:row-class-name="tableRowClassName"
@current-change="handleErpChange"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="第三方编码" prop="invcode"></el-table-column>
<el-table-column label="存货名称" prop="invname"></el-table-column>
<el-table-column label="计量单位" prop="measname"></el-table-column>
<el-table-column label="规格型号" prop="invspec"></el-table-column>
</el-table>
<el-pagination
:page-size="erpQuery.limit"
@current-change="handleErpPageChange"
layout="prev, pager, next"
:total="pageTotal"
></el-pagination>
</div>
</el-card>
<el-card class="el-card">
<div>
<el-form :inline="true" :model="unionQuery" class="query-form" size="mini">
<el-row>
<el-form-item class="query-form-item">
<el-input
v-model="unionQuery.nameCode"
size="mini"
placeholder="最小单元销售标识"
@keyup.enter.native="keyup_submit($event)"
></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-input
v-model="unionQuery.cpmctymc"
size="mini"
placeholder="产品通用名"
></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-input
v-model="unionQuery.ylqxzcrbarmc"
size="mini"
placeholder="医疗器械注册人"
></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-input
v-model="unionQuery.ggxh"
placeholder="规格型号"
size="mini"
></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-button-group>
<el-button type="primary" icon="search" @click="getList" size="mini"
>查询</el-button
>
</el-button-group>
</el-form-item>
</el-row>
</el-form>
<el-table
:data="udidlList"
style="width: 100%"
@row-click="intentDetail"
v-loading="loading"
:row-class-name="tableRowClassName"
@selection-change="handleSelectionUdiChange"
>
<el-table-column
type="selection"
width="55"
:selectable="checkSelectable"
></el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="产品标识"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="产品名称"
prop="cpmctymc"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="规格型号"
prop="ggxh"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="医疗器械注册人"
prop="ylqxzcrbarmc"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="注册证编号"
prop="zczbhhzbapzbh"
show-overflow-tooltip
></el-table-column>
</el-table>
<el-pagination
:page-size="unionQuery.limit"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
></el-pagination>
</div>
</el-card>
</div>
</template>
<script>
import { getUdiInfos } from "../../api/basic/udiInfo";
import { combineUdi } from "../../api/basic/udiRelevance";
import { getErpProduct, getInvbasdoc, combineProduct } from "../../api/erp/udiRelevance";
export default {
name: "closeDialog",
props: {
closeDialog: {
type: Function,
required: true,
},
},
data() {
return {
erpQuery: {
invcode: null,
goodsname: "",
page: 1,
limit: 10,
},
unionQuery: {
page: 1,
limit: 20,
nameCode: "",
cpmctymc: "",
ylqxzcrbarmc: "",
ggxh: "",
},
combineQuery: {
thirdId: "",
keys: [],
},
checked: true,
udidlList: [],
erpList: [],
pageTotal: 1,
total: 1,
currentRow: null,
loading: false,
erpLloading: false,
multipleUdiSelection: [],
};
},
methods: {
getList() {
if (
this.unionQuery.nameCode == "" &&
this.unionQuery.cpmctymc == "" &&
this.unionQuery.ylqxzcrbarmc == "" &&
this.unionQuery.ggxh == ""
) {
this.$message.warning("请输入查询条件");
return;
}
this.loading = true;
getUdiInfos(this.unionQuery)
.then((response) => {
this.loading = false;
this.udidlList = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.udidlList = [];
this.total = 0;
});
},
checkSelectable(row, index) {
return !row.check;
},
handleCurrentChange(val) {
this.unionQuery.page = val;
this.getList();
},
tableRowClassName({ row, rowIndex }) {
if (row.checked) return "warning-row";
return "";
},
handleErpChange(val) {
console.log(val);
if (val.checked) {
this.$message.warning("该产品已被选入");
return;
}
this.currentRow = val;
this.unionQuery.cpmctymc = this.currentRow.invname;
},
handleErpPageChange(val) {
this.erpQuery.page = val;
this.getErpList();
},
getErpList() {
this.erplLoading = true;
getInvbasdoc(this.erpQuery)
.then((response) => {
this.erplLoading = false;
this.erpList = response.data.list || [];
this.pageTotal = response.data.total || 0;
})
.catch(() => {
this.erplLoading = false;
this.erpList = [];
this.pageTotal = 0;
});
},
keyupErp_submit(event) {
console.log("全选----");
this.getErpList();
event.target.select();
},
intentBack() {
this.$router.go(-1);
},
combine() {
let selectData = this.multipleUdiSelection;
var ids = [];
selectData.forEach((obj, index) => {
ids.push(obj.uuid);
});
this.combineQuery.keys = ids;
if (this.checked) {
this.combineQuery.thirdId = this.currentRow.invcode;
this.combineQuery.erpName = this.currentRow.invname;
} else {
this.combineQuery.thirdId = "";
}
combineUdi(this.combineQuery)
.then((response) => {
if (response.code == 20000) {
this.$emit("closeUdi", true);
} else {
this.$emit("closeUdi", false);
}
})
.catch(() => {
this.$emit("closeUdi", false);
});
},
intentDetail(row) {
this.$emit("productInfo", row);
this.closeDialog();
},
handleSelectionUdiChange(val) {
console.log("----" + val);
this.multipleUdiSelection = val;
},
keyup_submit(event) {
console.log("全选----");
this.getList();
event.target.select();
},
},
};
</script>
<style scoped>
.checkitemTag {
float: left;
text-align: left;
margin-top: 5px;
width: 100%;
}
div /deep/.el-table .warning-row {
background: #bebebe;
}
div /deep/.el-table .success-row {
background: #ffffff;
}
</style>

@ -0,0 +1,5 @@
module.exports = {
plugins: {
autoprefixer: {}
}
}

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2018 lmxdawn
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

@ -0,0 +1 @@
UDIC出入库系统

@ -0,0 +1,3 @@
module.exports = {
presets: ["@vue/app"]
};

@ -0,0 +1,16 @@
module.exports = {
moduleFileExtensions: ["js", "jsx", "json", "vue"],
transform: {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$":
"jest-transform-stub",
"^.+\\.jsx?$": "babel-jest"
},
moduleNameMapper: {
"^@/(.*)$": "<rootDir>/src/$1"
},
snapshotSerializers: ["jest-serializer-vue"],
testMatch: [
"<rootDir>/(tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx))"
]
};

17122
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -0,0 +1,45 @@
{
"name": "my-project",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"stage": "vue-cli-service build --mode stage",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"element-ui": "^2.8.2",
"file-saver": "^2.0.5",
"js-cookie": "^2.2.0",
"mockjs": "^1.0.1-beta3",
"node-sass": "^4.14.1",
"nprogress": "^0.2.0",
"pinyin": "^2.10.2",
"vue": "^2.5.16",
"vue-router": "^3.0.1",
"vuedraggable": "^2.17.0",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-beta.15",
"@vue/cli-plugin-eslint": "^3.0.0-beta.15",
"@vue/cli-plugin-unit-jest": "^3.0.0-beta.15",
"@vue/cli-service": "^3.0.0-beta.15",
"@vue/eslint-config-prettier": "^3.0.0-rc.3",
"@vue/test-utils": "^1.0.0-beta.16",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.0.1",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"vue-template-compiler": "^2.5.16"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}

@ -0,0 +1,5 @@
window.global_config = {
"BASE_URL":"http://139.159.187.130:8080/UDI_WMS_MC",
// "BASE_URL":"http://127.0.0.1:9991",
};

@ -0,0 +1,4 @@
{
"BASE_URL":"http://127.0.0.1:9991",
"BASE_URL2": "http://127.0.0.1:9994"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>医疗器械出入库管理系统</title>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
<script src="./tinymce4.7.5/tinymce.min.js"></script>
</html>

File diff suppressed because one or more lines are too long

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>医疗器械出入库管理系统</title>
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<!-- <link rel="stylesheet" href="./index.css"> -->
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
<script src=./tinymce4.7.5/tinymce.min.js></script>
<!-- <script src="./vue.runtime.min.js"></script>
<script src="./vuex.min.js"></script>
<script src="./vue-router.min.js"></script>
<script src="./index.js"></script> -->
<script src="https://unpkg.zhimg.com/vue@2.5.16/dist/vue.runtime.min.js"></script>
<script src="https://unpkg.zhimg.com/vuex@3.0.1/dist/vuex.min.js"></script>
<script src="https://unpkg.zhimg.com/vue-router@3.0.1/dist/vue-router.min.js"></script>
<script src="https://unpkg.zhimg.com/element-ui/lib/index.js"></script>
ga('create', 'UA-110990780-1', 'auto');
ga('send', 'pageview');
window.addEventListener('hashchange', function () {
ga('set', 'page', window.location.href);
ga('send', 'pageview');
});
</script>
</body>
</html>

File diff suppressed because one or more lines are too long

@ -0,0 +1,230 @@
tinymce.addI18n('zh_CN',{
"Cut": "\u526a\u5207",
"Heading 5": "\u6807\u98985",
"Header 2": "\u6807\u98982",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u4f60\u7684\u6d4f\u89c8\u5668\u4e0d\u652f\u6301\u5bf9\u526a\u8d34\u677f\u7684\u8bbf\u95ee\uff0c\u8bf7\u4f7f\u7528Ctrl+X\/C\/V\u952e\u8fdb\u884c\u590d\u5236\u7c98\u8d34\u3002",
"Heading 4": "\u6807\u98984",
"Div": "Div\u533a\u5757",
"Heading 2": "\u6807\u98982",
"Paste": "\u7c98\u8d34",
"Close": "\u5173\u95ed",
"Font Family": "\u5b57\u4f53",
"Pre": "\u9884\u683c\u5f0f\u6587\u672c",
"Align right": "\u53f3\u5bf9\u9f50",
"New document": "\u65b0\u6587\u6863",
"Blockquote": "\u5f15\u7528",
"Numbered list": "\u7f16\u53f7\u5217\u8868",
"Heading 1": "\u6807\u98981",
"Headings": "\u6807\u9898",
"Increase indent": "\u589e\u52a0\u7f29\u8fdb",
"Formats": "\u683c\u5f0f",
"Headers": "\u6807\u9898",
"Select all": "\u5168\u9009",
"Header 3": "\u6807\u98983",
"Blocks": "\u533a\u5757",
"Undo": "\u64a4\u6d88",
"Strikethrough": "\u5220\u9664\u7ebf",
"Bullet list": "\u9879\u76ee\u7b26\u53f7",
"Header 1": "\u6807\u98981",
"Superscript": "\u4e0a\u6807",
"Clear formatting": "\u6e05\u9664\u683c\u5f0f",
"Font Sizes": "\u5b57\u53f7",
"Subscript": "\u4e0b\u6807",
"Header 6": "\u6807\u98986",
"Redo": "\u91cd\u590d",
"Paragraph": "\u6bb5\u843d",
"Ok": "\u786e\u5b9a",
"Bold": "\u7c97\u4f53",
"Code": "\u4ee3\u7801",
"Italic": "\u659c\u4f53",
"Align center": "\u5c45\u4e2d",
"Header 5": "\u6807\u98985",
"Heading 6": "\u6807\u98986",
"Heading 3": "\u6807\u98983",
"Decrease indent": "\u51cf\u5c11\u7f29\u8fdb",
"Header 4": "\u6807\u98984",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u5f53\u524d\u4e3a\u7eaf\u6587\u672c\u7c98\u8d34\u6a21\u5f0f\uff0c\u518d\u6b21\u70b9\u51fb\u53ef\u4ee5\u56de\u5230\u666e\u901a\u7c98\u8d34\u6a21\u5f0f\u3002",
"Underline": "\u4e0b\u5212\u7ebf",
"Cancel": "\u53d6\u6d88",
"Justify": "\u4e24\u7aef\u5bf9\u9f50",
"Inline": "\u6587\u672c",
"Copy": "\u590d\u5236",
"Align left": "\u5de6\u5bf9\u9f50",
"Visual aids": "\u7f51\u683c\u7ebf",
"Lower Greek": "\u5c0f\u5199\u5e0c\u814a\u5b57\u6bcd",
"Square": "\u65b9\u5757",
"Default": "\u9ed8\u8ba4",
"Lower Alpha": "\u5c0f\u5199\u82f1\u6587\u5b57\u6bcd",
"Circle": "\u7a7a\u5fc3\u5706",
"Disc": "\u5b9e\u5fc3\u5706",
"Upper Alpha": "\u5927\u5199\u82f1\u6587\u5b57\u6bcd",
"Upper Roman": "\u5927\u5199\u7f57\u9a6c\u5b57\u6bcd",
"Lower Roman": "\u5c0f\u5199\u7f57\u9a6c\u5b57\u6bcd",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u6807\u8bc6\u7b26\u5e94\u8be5\u4ee5\u5b57\u6bcd\u5f00\u5934\uff0c\u540e\u8ddf\u5b57\u6bcd\u3001\u6570\u5b57\u3001\u7834\u6298\u53f7\u3001\u70b9\u3001\u5192\u53f7\u6216\u4e0b\u5212\u7ebf\u3002",
"Name": "\u540d\u79f0",
"Anchor": "\u951a\u70b9",
"Id": "\u6807\u8bc6\u7b26",
"You have unsaved changes are you sure you want to navigate away?": "\u4f60\u8fd8\u6709\u6587\u6863\u5c1a\u672a\u4fdd\u5b58\uff0c\u786e\u5b9a\u8981\u79bb\u5f00\uff1f",
"Restore last draft": "\u6062\u590d\u4e0a\u6b21\u7684\u8349\u7a3f",
"Special character": "\u7279\u6b8a\u7b26\u53f7",
"Source code": "\u6e90\u4ee3\u7801",
"Language": "\u8bed\u8a00",
"Insert\/Edit code sample": "\u63d2\u5165\/\u7f16\u8f91\u4ee3\u7801\u793a\u4f8b",
"B": "B",
"R": "R",
"G": "G",
"Color": "\u989c\u8272",
"Right to left": "\u4ece\u53f3\u5230\u5de6",
"Left to right": "\u4ece\u5de6\u5230\u53f3",
"Emoticons": "\u8868\u60c5",
"Robots": "\u673a\u5668\u4eba",
"Document properties": "\u6587\u6863\u5c5e\u6027",
"Title": "\u6807\u9898",
"Keywords": "\u5173\u952e\u8bcd",
"Encoding": "\u7f16\u7801",
"Description": "\u63cf\u8ff0",
"Author": "\u4f5c\u8005",
"Fullscreen": "\u5168\u5c4f",
"Horizontal line": "\u6c34\u5e73\u5206\u5272\u7ebf",
"Horizontal space": "\u6c34\u5e73\u8fb9\u8ddd",
"Insert\/edit image": "\u63d2\u5165\/\u7f16\u8f91\u56fe\u7247",
"General": "\u666e\u901a",
"Advanced": "\u9ad8\u7ea7",
"Source": "\u5730\u5740",
"Border": "\u8fb9\u6846",
"Constrain proportions": "\u4fdd\u6301\u7eb5\u6a2a\u6bd4",
"Vertical space": "\u5782\u76f4\u8fb9\u8ddd",
"Image description": "\u56fe\u7247\u63cf\u8ff0",
"Style": "\u6837\u5f0f",
"Dimensions": "\u5927\u5c0f",
"Insert image": "\u63d2\u5165\u56fe\u7247",
"Image": "\u56fe\u7247",
"Zoom in": "\u653e\u5927",
"Contrast": "\u5bf9\u6bd4\u5ea6",
"Back": "\u540e\u9000",
"Gamma": "\u4f3d\u9a6c\u503c",
"Flip horizontally": "\u6c34\u5e73\u7ffb\u8f6c",
"Resize": "\u8c03\u6574\u5927\u5c0f",
"Sharpen": "\u9510\u5316",
"Zoom out": "\u7f29\u5c0f",
"Image options": "\u56fe\u7247\u9009\u9879",
"Apply": "\u5e94\u7528",
"Brightness": "\u4eae\u5ea6",
"Rotate clockwise": "\u987a\u65f6\u9488\u65cb\u8f6c",
"Rotate counterclockwise": "\u9006\u65f6\u9488\u65cb\u8f6c",
"Edit image": "\u7f16\u8f91\u56fe\u7247",
"Color levels": "\u989c\u8272\u5c42\u6b21",
"Crop": "\u88c1\u526a",
"Orientation": "\u65b9\u5411",
"Flip vertically": "\u5782\u76f4\u7ffb\u8f6c",
"Invert": "\u53cd\u8f6c",
"Date\/time": "\u65e5\u671f\/\u65f6\u95f4",
"Insert date\/time": "\u63d2\u5165\u65e5\u671f\/\u65f6\u95f4",
"Remove link": "\u5220\u9664\u94fe\u63a5",
"Url": "\u5730\u5740",
"Text to display": "\u663e\u793a\u6587\u5b57",
"Anchors": "\u951a\u70b9",
"Insert link": "\u63d2\u5165\u94fe\u63a5",
"Link": "\u94fe\u63a5",
"New window": "\u5728\u65b0\u7a97\u53e3\u6253\u5f00",
"None": "\u65e0",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u5c5e\u4e8e\u5916\u90e8\u94fe\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7f00\u5417\uff1f",
"Paste or type a link": "\u7c98\u8d34\u6216\u8f93\u5165\u94fe\u63a5",
"Target": "\u6253\u5f00\u65b9\u5f0f",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u4e3a\u90ae\u4ef6\u5730\u5740\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7f00\u5417\uff1f",
"Insert\/edit link": "\u63d2\u5165\/\u7f16\u8f91\u94fe\u63a5",
"Insert\/edit video": "\u63d2\u5165\/\u7f16\u8f91\u89c6\u9891",
"Media": "\u5a92\u4f53",
"Alternative source": "\u955c\u50cf",
"Paste your embed code below:": "\u5c06\u5185\u5d4c\u4ee3\u7801\u7c98\u8d34\u5728\u4e0b\u9762:",
"Insert video": "\u63d2\u5165\u89c6\u9891",
"Poster": "\u5c01\u9762",
"Insert\/edit media": "\u63d2\u5165\/\u7f16\u8f91\u5a92\u4f53",
"Embed": "\u5185\u5d4c",
"Nonbreaking space": "\u4e0d\u95f4\u65ad\u7a7a\u683c",
"Page break": "\u5206\u9875\u7b26",
"Paste as text": "\u7c98\u8d34\u4e3a\u6587\u672c",
"Preview": "\u9884\u89c8",
"Print": "\u6253\u5370",
"Save": "\u4fdd\u5b58",
"Could not find the specified string.": "\u672a\u627e\u5230\u641c\u7d22\u5185\u5bb9.",
"Replace": "\u66ff\u6362",
"Next": "\u4e0b\u4e00\u4e2a",
"Whole words": "\u5168\u5b57\u5339\u914d",
"Find and replace": "\u67e5\u627e\u548c\u66ff\u6362",
"Replace with": "\u66ff\u6362\u4e3a",
"Find": "\u67e5\u627e",
"Replace all": "\u5168\u90e8\u66ff\u6362",
"Match case": "\u533a\u5206\u5927\u5c0f\u5199",
"Prev": "\u4e0a\u4e00\u4e2a",
"Spellcheck": "\u62fc\u5199\u68c0\u67e5",
"Finish": "\u5b8c\u6210",
"Ignore all": "\u5168\u90e8\u5ffd\u7565",
"Ignore": "\u5ffd\u7565",
"Add to Dictionary": "\u6dfb\u52a0\u5230\u5b57\u5178",
"Insert row before": "\u5728\u4e0a\u65b9\u63d2\u5165",
"Rows": "\u884c",
"Height": "\u9ad8",
"Paste row after": "\u7c98\u8d34\u5230\u4e0b\u65b9",
"Alignment": "\u5bf9\u9f50\u65b9\u5f0f",
"Border color": "\u8fb9\u6846\u989c\u8272",
"Column group": "\u5217\u7ec4",
"Row": "\u884c",
"Insert column before": "\u5728\u5de6\u4fa7\u63d2\u5165",
"Split cell": "\u62c6\u5206\u5355\u5143\u683c",
"Cell padding": "\u5355\u5143\u683c\u5185\u8fb9\u8ddd",
"Cell spacing": "\u5355\u5143\u683c\u5916\u95f4\u8ddd",
"Row type": "\u884c\u7c7b\u578b",
"Insert table": "\u63d2\u5165\u8868\u683c",
"Body": "\u8868\u4f53",
"Caption": "\u6807\u9898",
"Footer": "\u8868\u5c3e",
"Delete row": "\u5220\u9664\u884c",
"Paste row before": "\u7c98\u8d34\u5230\u4e0a\u65b9",
"Scope": "\u8303\u56f4",
"Delete table": "\u5220\u9664\u8868\u683c",
"H Align": "\u6c34\u5e73\u5bf9\u9f50",
"Top": "\u9876\u90e8\u5bf9\u9f50",
"Header cell": "\u8868\u5934\u5355\u5143\u683c",
"Column": "\u5217",
"Row group": "\u884c\u7ec4",
"Cell": "\u5355\u5143\u683c",
"Middle": "\u5782\u76f4\u5c45\u4e2d",
"Cell type": "\u5355\u5143\u683c\u7c7b\u578b",
"Copy row": "\u590d\u5236\u884c",
"Row properties": "\u884c\u5c5e\u6027",
"Table properties": "\u8868\u683c\u5c5e\u6027",
"Bottom": "\u5e95\u90e8\u5bf9\u9f50",
"V Align": "\u5782\u76f4\u5bf9\u9f50",
"Header": "\u8868\u5934",
"Right": "\u53f3\u5bf9\u9f50",
"Insert column after": "\u5728\u53f3\u4fa7\u63d2\u5165",
"Cols": "\u5217",
"Insert row after": "\u5728\u4e0b\u65b9\u63d2\u5165",
"Width": "\u5bbd",
"Cell properties": "\u5355\u5143\u683c\u5c5e\u6027",
"Left": "\u5de6\u5bf9\u9f50",
"Cut row": "\u526a\u5207\u884c",
"Delete column": "\u5220\u9664\u5217",
"Center": "\u5c45\u4e2d",
"Merge cells": "\u5408\u5e76\u5355\u5143\u683c",
"Insert template": "\u63d2\u5165\u6a21\u677f",
"Templates": "\u6a21\u677f",
"Background color": "\u80cc\u666f\u8272",
"Custom...": "\u81ea\u5b9a\u4e49...",
"Custom color": "\u81ea\u5b9a\u4e49\u989c\u8272",
"No color": "\u65e0",
"Text color": "\u6587\u5b57\u989c\u8272",
"Table of Contents": "\u5185\u5bb9\u5217\u8868",
"Show blocks": "\u663e\u793a\u533a\u5757\u8fb9\u6846",
"Show invisible characters": "\u663e\u793a\u4e0d\u53ef\u89c1\u5b57\u7b26",
"Words: {0}": "\u5b57\u6570\uff1a{0}",
"Insert": "\u63d2\u5165",
"File": "\u6587\u4ef6",
"Edit": "\u7f16\u8f91",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u5728\u7f16\u8f91\u533a\u6309ALT-F9\u6253\u5f00\u83dc\u5355\uff0c\u6309ALT-F10\u6253\u5f00\u5de5\u5177\u680f\uff0c\u6309ALT-0\u67e5\u770b\u5e2e\u52a9",
"Tools": "\u5de5\u5177",
"View": "\u89c6\u56fe",
"Table": "\u8868\u683c",
"Format": "\u683c\u5f0f"
});

@ -0,0 +1,138 @@
/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript */
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
code[class*="language-"],
pre[class*="language-"] {
color: black;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
direction: ltr;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
text-shadow: none;
background: #b3d4fc;
}
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #f5f2f0;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #a67f59;
background: hsla(0, 0%, 100%, .5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function {
color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 354 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 329 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 331 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 338 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 343 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 323 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 338 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 B

@ -0,0 +1,154 @@
.mce-visualblocks p {
padding-top: 10px;
border: 1px dashed #BBB;
margin-left: 3px;
background-image: url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7);
background-repeat: no-repeat;
}
.mce-visualblocks h1 {
padding-top: 10px;
border: 1px dashed #BBB;
margin-left: 3px;
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==);
background-repeat: no-repeat;
}
.mce-visualblocks h2 {
padding-top: 10px;
border: 1px dashed #BBB;
margin-left: 3px;
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==);
background-repeat: no-repeat;
}
.mce-visualblocks h3 {
padding-top: 10px;
border: 1px dashed #BBB;
margin-left: 3px;
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7);
background-repeat: no-repeat;
}
.mce-visualblocks h4 {
padding-top: 10px;
border: 1px dashed #BBB;
margin-left: 3px;
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==);
background-repeat: no-repeat;
}
.mce-visualblocks h5 {
padding-top: 10px;
border: 1px dashed #BBB;
margin-left: 3px;
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==);
background-repeat: no-repeat;
}
.mce-visualblocks h6 {
padding-top: 10px;
border: 1px dashed #BBB;
margin-left: 3px;
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==);
background-repeat: no-repeat;
}
.mce-visualblocks div:not([data-mce-bogus]) {
padding-top: 10px;
border: 1px dashed #BBB;
margin-left: 3px;
background-image: url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7);
background-repeat: no-repeat;
}
.mce-visualblocks section {
padding-top: 10px;
border: 1px dashed #BBB;
margin: 0 0 1em 3px;
background-image: url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=);
background-repeat: no-repeat;
}
.mce-visualblocks article {
padding-top: 10px;
border: 1px dashed #BBB;
margin: 0 0 1em 3px;
background-image: url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7);
background-repeat: no-repeat;
}
.mce-visualblocks blockquote {
padding-top: 10px;
border: 1px dashed #BBB;
background-image: url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7);
background-repeat: no-repeat;
}
.mce-visualblocks address {
padding-top: 10px;
border: 1px dashed #BBB;
margin: 0 0 1em 3px;
background-image: url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=);
background-repeat: no-repeat;
}
.mce-visualblocks pre {
padding-top: 10px;
border: 1px dashed #BBB;
margin-left: 3px;
background-image: url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==);
background-repeat: no-repeat;
}
.mce-visualblocks figure {
padding-top: 10px;
border: 1px dashed #BBB;
margin: 0 0 1em 3px;
background-image: url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7);
background-repeat: no-repeat;
}
.mce-visualblocks hgroup {
padding-top: 10px;
border: 1px dashed #BBB;
margin: 0 0 1em 3px;
background-image: url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7);
background-repeat: no-repeat;
}
.mce-visualblocks aside {
padding-top: 10px;
border: 1px dashed #BBB;
margin: 0 0 1em 3px;
background-image: url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=);
background-repeat: no-repeat;
}
.mce-visualblocks figcaption {
border: 1px dashed #BBB;
}
.mce-visualblocks ul {
padding-top: 10px;
border: 1px dashed #BBB;
margin: 0 0 1em 3px;
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==);
background-repeat: no-repeat;
}
.mce-visualblocks ol {
padding-top: 10px;
border: 1px dashed #BBB;
margin: 0 0 1em 3px;
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==);
background-repeat: no-repeat;
}
.mce-visualblocks dl {
padding-top: 10px;
border: 1px dashed #BBB;
margin: 0 0 1em 3px;
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==);
background-repeat: no-repeat;
}

@ -0,0 +1 @@
.word-wrap{word-wrap:break-word;-ms-word-break:break-all;word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.mce-content-body .mce-reset{margin:0;padding:0;border:0;outline:0;vertical-align:top;background:transparent;text-decoration:none;color:black;font-family:Arial;font-size:11px;text-shadow:none;float:none;position:static;width:auto;height:auto;white-space:nowrap;cursor:inherit;line-height:normal;font-weight:normal;text-align:left;-webkit-tap-highlight-color:transparent;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;direction:ltr;max-width:none}.mce-object{border:1px dotted #3A3A3A;background:#D5D5D5 url(img/object.gif) no-repeat center}.mce-preview-object{display:inline-block;position:relative;margin:0 2px 0 2px;line-height:0;border:1px solid gray}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-preview-object .mce-shim{position:absolute;top:0;left:0;width:100%;height:100%;background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}figure.align-left{float:left}figure.align-right{float:right}figure.image.align-center{display:table;margin-left:auto;margin-right:auto}figure.image{display:inline-block;border:1px solid gray;margin:0 2px 0 1px;background:#f5f2f0}figure.image img{margin:8px 8px 0 8px}figure.image figcaption{margin:6px 8px 6px 8px;text-align:center}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc li{list-style-type:none}.mce-pagebreak{cursor:default;display:block;border:0;width:100%;height:5px;border:1px dashed #666;margin-top:15px;page-break-before:always}@media print{.mce-pagebreak{border:0}}.mce-item-anchor{cursor:default;display:inline-block;-webkit-user-select:all;-webkit-user-modify:read-only;-moz-user-select:all;-moz-user-modify:read-only;user-select:all;user-modify:read-only;width:9px !important;height:9px !important;border:1px dotted #3A3A3A;background:#D5D5D5 url(img/anchor.gif) no-repeat center}.mce-nbsp,.mce-shy{background:#AAA}.mce-shy::after{content:'-'}.mce-match-marker{background:#AAA;color:#fff}.mce-match-marker-selected{background:#3399ff;color:#fff}.mce-spellchecker-word{border-bottom:2px solid rgba(208,2,27,0.5);cursor:default}.mce-spellchecker-grammar{border-bottom:2px solid #008000;cursor:default}.mce-item-table,.mce-item-table td,.mce-item-table th,.mce-item-table caption{border:1px dashed #BBB}td[data-mce-selected],th[data-mce-selected]{background-color:#2276d2 !important}.mce-edit-focus{outline:1px dotted #333}.mce-content-body *[contentEditable=false] *[contentEditable=true]:focus{outline:2px solid #2276d2}.mce-content-body *[contentEditable=false] *[contentEditable=true]:hover{outline:2px solid #2276d2}.mce-content-body *[contentEditable=false][data-mce-selected]{outline:2px solid #2276d2}.mce-content-body *[data-mce-selected="inline-boundary"]{background:#bfe6ff}.mce-content-body .mce-item-anchor[data-mce-selected]{background:#D5D5D5 url(img/anchor.gif) no-repeat center}.mce-content-body hr{cursor:default}.ephox-snooker-resizer-bar{background-color:#2276d2;opacity:0}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:.2}.mce-content-body{line-height:1.3}

@ -0,0 +1 @@
body{background-color:#FFFFFF;color:#000000;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:14px;line-height:1.3;scrollbar-3dlight-color:#F0F0EE;scrollbar-arrow-color:#676662;scrollbar-base-color:#F0F0EE;scrollbar-darkshadow-color:#DDDDDD;scrollbar-face-color:#E0E0DD;scrollbar-highlight-color:#F0F0EE;scrollbar-shadow-color:#F0F0EE;scrollbar-track-color:#F5F5F5}td,th{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:14px}.word-wrap{word-wrap:break-word;-ms-word-break:break-all;word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.mce-content-body .mce-reset{margin:0;padding:0;border:0;outline:0;vertical-align:top;background:transparent;text-decoration:none;color:black;font-family:Arial;font-size:11px;text-shadow:none;float:none;position:static;width:auto;height:auto;white-space:nowrap;cursor:inherit;line-height:normal;font-weight:normal;text-align:left;-webkit-tap-highlight-color:transparent;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;direction:ltr;max-width:none}.mce-object{border:1px dotted #3A3A3A;background:#D5D5D5 url(img/object.gif) no-repeat center}.mce-preview-object{display:inline-block;position:relative;margin:0 2px 0 2px;line-height:0;border:1px solid gray}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-preview-object .mce-shim{position:absolute;top:0;left:0;width:100%;height:100%;background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}figure.align-left{float:left}figure.align-right{float:right}figure.image.align-center{display:table;margin-left:auto;margin-right:auto}figure.image{display:inline-block;border:1px solid gray;margin:0 2px 0 1px;background:#f5f2f0}figure.image img{margin:8px 8px 0 8px}figure.image figcaption{margin:6px 8px 6px 8px;text-align:center}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc li{list-style-type:none}.mce-pagebreak{cursor:default;display:block;border:0;width:100%;height:5px;border:1px dashed #666;margin-top:15px;page-break-before:always}@media print{.mce-pagebreak{border:0}}.mce-item-anchor{cursor:default;display:inline-block;-webkit-user-select:all;-webkit-user-modify:read-only;-moz-user-select:all;-moz-user-modify:read-only;user-select:all;user-modify:read-only;width:9px !important;height:9px !important;border:1px dotted #3A3A3A;background:#D5D5D5 url(img/anchor.gif) no-repeat center}.mce-nbsp,.mce-shy{background:#AAA}.mce-shy::after{content:'-'}.mce-match-marker{background:#AAA;color:#fff}.mce-match-marker-selected{background:#3399ff;color:#fff}.mce-spellchecker-word{border-bottom:2px solid rgba(208,2,27,0.5);cursor:default}.mce-spellchecker-grammar{border-bottom:2px solid #008000;cursor:default}.mce-item-table,.mce-item-table td,.mce-item-table th,.mce-item-table caption{border:1px dashed #BBB}td[data-mce-selected],th[data-mce-selected]{background-color:#2276d2 !important}.mce-edit-focus{outline:1px dotted #333}.mce-content-body *[contentEditable=false] *[contentEditable=true]:focus{outline:2px solid #2276d2}.mce-content-body *[contentEditable=false] *[contentEditable=true]:hover{outline:2px solid #2276d2}.mce-content-body *[contentEditable=false][data-mce-selected]{outline:2px solid #2276d2}.mce-content-body *[data-mce-selected="inline-boundary"]{background:#bfe6ff}.mce-content-body .mce-item-anchor[data-mce-selected]{background:#D5D5D5 url(img/anchor.gif) no-repeat center}.mce-content-body hr{cursor:default}.ephox-snooker-resizer-bar{background-color:#2276d2;opacity:0}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:.2} a {color: #1478F0;}

@ -0,0 +1,63 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="tinymce-small" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe000;" glyph-name="save" d="M960 80v591.938l-223.938 224.062h-592.062c-44.182 0-80-35.816-80-80v-736c0-44.184 35.818-80 80-80h736c44.184 0 80 35.816 80 80zM576 768h64v-192h-64v192zM704 128h-384v255.882c0.034 0.042 0.076 0.082 0.116 0.118h383.77c0.040-0.036 0.082-0.076 0.116-0.118l-0.002-255.882zM832 128h-64v256c0 35.2-28.8 64-64 64h-384c-35.2 0-64-28.8-64-64v-256h-64v640h64v-192c0-35.2 28.8-64 64-64h320c35.2 0 64 28.8 64 64v171.010l128-128.072v-490.938z" />
<glyph unicode="&#xe001;" glyph-name="newdocument" d="M850.746 717.254l-133.492 133.49c-24.888 24.892-74.054 45.256-109.254 45.256h-416c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h640c35.2 0 64 28.8 64 64v544c0 35.2-20.366 84.364-45.254 109.254zM805.49 672.002c6.792-6.796 13.792-19.162 18.894-32.002h-184.384v184.386c12.84-5.1 25.204-12.1 32-18.896l133.49-133.488zM831.884 64h-639.77c-0.040 0.034-0.082 0.076-0.114 0.116v767.77c0.034 0.040 0.076 0.082 0.114 0.114h383.886v-256h256v-511.884c-0.034-0.040-0.076-0.082-0.116-0.116z" />
<glyph unicode="&#xe002;" glyph-name="fullpage" d="M1024 367.542v160.916l-159.144 15.914c-8.186 30.042-20.088 58.548-35.21 84.98l104.596 127.838-113.052 113.050-127.836-104.596c-26.434 15.124-54.942 27.026-84.982 35.208l-15.914 159.148h-160.916l-15.914-159.146c-30.042-8.186-58.548-20.086-84.98-35.208l-127.838 104.594-113.050-113.050 104.596-127.836c-15.124-26.432-27.026-54.94-35.21-84.98l-159.146-15.916v-160.916l159.146-15.914c8.186-30.042 20.086-58.548 35.21-84.982l-104.596-127.836 113.048-113.048 127.838 104.596c26.432-15.124 54.94-27.028 84.98-35.21l15.916-159.148h160.916l15.914 159.144c30.042 8.186 58.548 20.088 84.982 35.21l127.836-104.596 113.048 113.048-104.596 127.836c15.124 26.434 27.028 54.942 35.21 84.98l159.148 15.92zM704 384l-128-128h-128l-128 128v128l128 128h128l128-128v-128z" />
<glyph unicode="&#xe003;" glyph-name="alignleft" d="M64 768h896v-128h-896zM64 384h896v-128h-896zM64 576h576v-128h-576zM64 192h576v-128h-576z" />
<glyph unicode="&#xe004;" glyph-name="aligncenter" d="M64 768h896v-128h-896zM64 384h896v-128h-896zM256 576h512v-128h-512zM256 192h512v-128h-512z" />
<glyph unicode="&#xe005;" glyph-name="alignright" d="M64 768h896v-128h-896zM64 384h896v-128h-896zM384 576h576v-128h-576zM384 192h576v-128h-576z" />
<glyph unicode="&#xe006;" glyph-name="alignjustify" d="M64 768h896v-128h-896zM64 384h896v-128h-896zM64 576h896v-128h-896zM64 192h896v-128h-896z" />
<glyph unicode="&#xe007;" glyph-name="cut" d="M864.408 289.868c-46.47 46.47-106.938 68.004-161.082 62.806l-63.326 63.326 192 192c0 0 128 128 0 256l-320-320-320 320c-128-128 0-256 0-256l192-192-63.326-63.326c-54.144 5.198-114.61-16.338-161.080-62.806-74.98-74.98-85.112-186.418-22.626-248.9 62.482-62.482 173.92-52.354 248.9 22.626 46.47 46.468 68.002 106.938 62.806 161.080l63.326 63.326 63.328-63.328c-5.196-54.144 16.336-114.61 62.806-161.078 74.978-74.98 186.418-85.112 248.898-22.626 62.488 62.482 52.356 173.918-22.624 248.9zM353.124 201.422c-2.212-24.332-15.020-49.826-35.14-69.946-22.212-22.214-51.080-35.476-77.218-35.476-10.524 0-25.298 2.228-35.916 12.848-21.406 21.404-17.376 73.132 22.626 113.136 22.212 22.214 51.080 35.476 77.218 35.476 10.524 0 25.298-2.228 35.916-12.848 13.112-13.11 13.47-32.688 12.514-43.19zM512 352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zM819.152 108.848c-10.62-10.62-25.392-12.848-35.916-12.848-26.138 0-55.006 13.262-77.218 35.476-20.122 20.12-32.928 45.614-35.138 69.946-0.958 10.502-0.6 30.080 12.514 43.192 10.618 10.622 25.39 12.848 35.916 12.848 26.136 0 55.006-13.262 77.216-35.474 40.004-40.008 44.032-91.736 22.626-113.14z" />
<glyph unicode="&#xe008;" glyph-name="paste" d="M704 576v160c0 17.6-14.4 32-32 32h-160v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-160c-17.602 0-32-14.4-32-32v-512c0-17.6 14.398-32 32-32h224v-192h384l192 192v384h-192zM320 831.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886h-128v63.886zM192 640v64h384v-64h-384zM704 90.51v101.49h101.49l-101.49-101.49zM832 256h-192v-192h-256v448h448v-256z" />
<glyph unicode="&#xe009;" glyph-name="searchreplace" d="M888 576h-56v256h64v64h-320v-64h64v-256h-256v256h64v64h-320v-64h64v-256h-56c-39.6 0-72-32.4-72-72v-432c0-39.6 32.4-72 72-72h240c39.6 0 72 32.4 72 72v312h128v-312c0-39.6 32.4-72 72-72h240c39.6 0 72 32.4 72 72v432c0 39.6-32.4 72-72 72zM348 64h-184c-19.8 0-36 14.4-36 32s16.2 32 36 32h184c19.8 0 36-14.4 36-32s-16.2-32-36-32zM544 448h-64c-17.6 0-32 14.4-32 32s14.4 32 32 32h64c17.6 0 32-14.4 32-32s-14.4-32-32-32zM860 64h-184c-19.8 0-36 14.4-36 32s16.2 32 36 32h184c19.8 0 36-14.4 36-32s-16.2-32-36-32z" />
<glyph unicode="&#xe00a;" glyph-name="bullist" d="M384 832h576v-128h-576zM384 512h576v-128h-576zM384 192h576v-128h-576zM128 768c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM128 448c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM128 128c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64z" />
<glyph unicode="&#xe00b;" glyph-name="numlist" d="M384 832h576v-128h-576zM384 512h576v-128h-576zM384 192h576v-128h-576zM320 430v146h-64v320h-128v-64h64v-256h-64v-64h128v-50l-128-60v-146h128v-64h-128v-64h128v-64h-128v-64h192v320h-128v50z" />
<glyph unicode="&#xe00c;" glyph-name="indent" d="M64 768h896v-128h-896zM384 384h576v-128h-576zM384 576h576v-128h-576zM64 192h896v-128h-896zM64 576l224-160-224-160z" />
<glyph unicode="&#xe00d;" glyph-name="outdent" d="M64 768h896v-128h-896zM64 384h576v-128h-576zM64 576h576v-128h-576zM64 192h896v-128h-896zM960 576l-224-160 224-160z" />
<glyph unicode="&#xe00e;" glyph-name="blockquote" d="M256.428 535.274c105.8 0 191.572-91.17 191.572-203.638 0-112.464-85.772-203.636-191.572-203.636-105.802 0-191.572 91.17-191.572 203.636l-0.856 29.092c0 224.93 171.54 407.272 383.144 407.272v-116.364c-73.1 0-141.826-30.26-193.516-85.204-9.954-10.578-19.034-21.834-27.224-33.656 9.784 1.64 19.806 2.498 30.024 2.498zM768.428 535.274c105.8 0 191.572-91.17 191.572-203.638 0-112.464-85.772-203.636-191.572-203.636-105.802 0-191.572 91.17-191.572 203.636l-0.856 29.092c0 224.93 171.54 407.272 383.144 407.272v-116.364c-73.1 0-141.826-30.26-193.516-85.204-9.956-10.578-19.036-21.834-27.224-33.656 9.784 1.64 19.806 2.498 30.024 2.498z" />
<glyph unicode="&#xe00f;" glyph-name="undo" d="M704 0c59 199 134.906 455.266-256 446.096v-222.096l-336.002 336 336.002 336v-217.326c468.092 12.2 544-358.674 256-678.674z" />
<glyph unicode="&#xe010;" glyph-name="redo" d="M576 678.674v217.326l336.002-336-336.002-336v222.096c-390.906 9.17-315-247.096-256-446.096-288 320-212.092 690.874 256 678.674z" />
<glyph unicode="&#xe011;" glyph-name="unlink" d="M927.274 729.784l-133.49 133.488c-21.104 21.104-49.232 32.728-79.198 32.728s-58.094-11.624-79.196-32.726l-165.492-165.49c-43.668-43.668-43.668-114.724 0-158.392l2.746-2.746 67.882 67.882-2.746 2.746c-6.132 6.132-6.132 16.494 0 22.626l165.492 165.492c4.010 4.008 8.808 4.608 11.312 4.608s7.302-0.598 11.312-4.61l133.49-133.488c6.132-6.134 6.132-16.498 0.002-22.628l-165.494-165.494c-4.008-4.008-8.806-4.608-11.31-4.608s-7.302 0.6-11.312 4.612l-2.746 2.746-67.88-67.884 2.742-2.742c21.106-21.108 49.23-32.728 79.2-32.728s58.094 11.624 79.196 32.726l165.494 165.492c43.662 43.666 43.662 114.72-0.004 158.39zM551.356 359.356l-67.882-67.882 2.746-2.746c4.008-4.008 4.61-8.806 4.61-11.31 0-2.506-0.598-7.302-4.606-11.314l-165.494-165.49c-4.010-4.010-8.81-4.61-11.314-4.61s-7.304 0.6-11.314 4.61l-133.492 133.486c-4.010 4.010-4.61 8.81-4.61 11.314s0.598 7.3 4.61 11.312l165.49 165.488c4.010 4.012 8.81 4.612 11.314 4.612s7.304-0.6 11.314-4.612l2.746-2.742 67.882 67.88-2.746 2.746c-21.104 21.104-49.23 32.726-79.196 32.726s-58.092-11.624-79.196-32.726l-165.488-165.486c-21.106-21.104-32.73-49.234-32.73-79.198s11.624-58.094 32.726-79.198l133.49-133.49c21.106-21.102 49.232-32.726 79.198-32.726s58.092 11.624 79.196 32.726l165.494 165.492c21.104 21.104 32.722 49.23 32.722 79.196s-11.624 58.094-32.726 79.196l-2.744 2.746zM352 250c-9.724 0-19.45 3.71-26.87 11.128-14.84 14.84-14.84 38.898 0 53.738l320 320c14.84 14.84 38.896 14.84 53.736 0 14.844-14.84 14.844-38.9 0-53.74l-320-320c-7.416-7.416-17.142-11.126-26.866-11.126z" />
<glyph unicode="&#xe012;" glyph-name="link" d="M927.274 729.784l-133.49 133.488c-21.104 21.104-49.232 32.728-79.198 32.728s-58.094-11.624-79.196-32.726l-165.492-165.49c-43.668-43.668-43.668-114.724 0-158.392l2.746-2.746 67.882 67.882-2.746 2.746c-6.132 6.132-6.132 16.494 0 22.626l165.492 165.492c4.010 4.008 8.808 4.608 11.312 4.608s7.302-0.598 11.312-4.61l133.49-133.488c6.132-6.134 6.132-16.498 0.002-22.628l-165.494-165.494c-4.008-4.008-8.806-4.608-11.31-4.608s-7.302 0.6-11.312 4.612l-2.746 2.746-67.88-67.884 2.742-2.742c21.106-21.108 49.23-32.728 79.2-32.728s58.094 11.624 79.196 32.726l165.494 165.492c43.662 43.666 43.662 114.72-0.004 158.39zM551.356 359.356l-67.882-67.882 2.746-2.746c4.008-4.008 4.61-8.806 4.61-11.31 0-2.506-0.598-7.302-4.606-11.314l-165.494-165.49c-4.010-4.010-8.81-4.61-11.314-4.61s-7.304 0.6-11.314 4.61l-133.492 133.486c-4.010 4.010-4.61 8.81-4.61 11.314s0.598 7.3 4.61 11.312l165.49 165.488c4.010 4.012 8.81 4.612 11.314 4.612s7.304-0.6 11.314-4.612l2.746-2.742 67.882 67.88-2.746 2.746c-21.104 21.104-49.23 32.726-79.196 32.726s-58.092-11.624-79.196-32.726l-165.488-165.486c-21.106-21.104-32.73-49.234-32.73-79.198s11.624-58.094 32.726-79.198l133.49-133.49c21.106-21.102 49.232-32.726 79.198-32.726s58.092 11.624 79.196 32.726l165.494 165.492c21.104 21.104 32.722 49.23 32.722 79.196s-11.624 58.094-32.726 79.196l-2.744 2.746zM800 122c-9.724 0-19.45 3.708-26.87 11.13l-128 127.998c-14.844 14.84-14.844 38.898 0 53.738 14.84 14.844 38.896 14.844 53.736 0l128-128c14.844-14.84 14.844-38.896 0-53.736-7.416-7.422-17.142-11.13-26.866-11.13zM608 0c-17.674 0-32 14.326-32 32v128c0 17.674 14.326 32 32 32s32-14.326 32-32v-128c0-17.674-14.326-32-32-32zM928 320h-128c-17.674 0-32 14.326-32 32s14.326 32 32 32h128c17.674 0 32-14.326 32-32s-14.326-32-32-32zM224 774c9.724 0 19.45-3.708 26.87-11.13l128-128c14.842-14.84 14.842-38.898 0-53.738-14.84-14.844-38.898-14.844-53.738 0l-128 128c-14.842 14.84-14.842 38.898 0 53.738 7.418 7.422 17.144 11.13 26.868 11.13zM416 896c17.674 0 32-14.326 32-32v-128c0-17.674-14.326-32-32-32s-32 14.326-32 32v128c0 17.674 14.326 32 32 32zM96 576h128c17.674 0 32-14.326 32-32s-14.326-32-32-32h-128c-17.674 0-32 14.326-32 32s14.326 32 32 32z" />
<glyph unicode="&#xe013;" glyph-name="bookmark" d="M256 896v-896l256 256 256-256v896h-512zM704 170.51l-192 192-192-192v661.49h384v-661.49z" />
<glyph unicode="&#xe014;" glyph-name="image" d="M896 832h-768c-35.2 0-64-28.8-64-64v-640c0-35.2 28.8-64 64-64h768c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64zM896 128.116c-0.012-0.014-0.030-0.028-0.042-0.042l-191.958 319.926-160-128-224 288-191.968-479.916c-0.010 0.010-0.022 0.022-0.032 0.032v639.77c0.034 0.040 0.076 0.082 0.114 0.114h767.77c0.040-0.034 0.082-0.076 0.116-0.116v-639.768zM640 608c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96s-96-42.981-96-96z" />
<glyph unicode="&#xe015;" glyph-name="media" d="M896 832h-768c-35.2 0-64-28.8-64-64v-640c0-35.2 28.8-64 64-64h768c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64zM256 128h-128v128h128v-128zM256 384h-128v128h128v-128zM256 640h-128v128h128v-128zM704 128h-384v640h384v-640zM896 128h-128v128h128v-128zM896 384h-128v128h128v-128zM896 640h-128v128h128v-128zM384 640v-384l288 192z" />
<glyph unicode="&#xe016;" glyph-name="help" d="M448 256h128v-128h-128v128zM704 704c35.346 0 64-28.654 64-64v-166l-228-154h-92v64l192 128v64h-320v128h384zM512 896c-119.666 0-232.166-46.6-316.784-131.216-84.614-84.618-131.216-197.118-131.216-316.784 0-119.664 46.602-232.168 131.216-316.784 84.618-84.616 197.118-131.216 316.784-131.216 119.664 0 232.168 46.6 316.784 131.216s131.216 197.12 131.216 316.784c0 119.666-46.6 232.166-131.216 316.784-84.616 84.616-197.12 131.216-316.784 131.216z" />
<glyph unicode="&#xe017;" glyph-name="code" d="M416 256l-192 192 192 192-64 64-256-256 256-256zM672 704l-64-64 192-192-192-192 64-64 256 256z" />
<glyph unicode="&#xe018;" glyph-name="insertdatetime" d="M77.798 655.376l81.414-50.882c50.802 81.114 128.788 143.454 221.208 174.246l-30.366 91.094c-113.748-37.898-209.728-114.626-272.256-214.458zM673.946 869.834l-30.366-91.094c92.422-30.792 170.404-93.132 221.208-174.248l81.412 50.882c-62.526 99.834-158.506 176.562-272.254 214.46zM607.974 255.992c-4.808 0-9.692 1.090-14.286 3.386l-145.688 72.844v211.778c0 17.672 14.328 32 32 32s32-14.328 32-32v-172.222l110.31-55.156c15.806-7.902 22.214-27.124 14.31-42.932-5.604-11.214-16.908-17.696-28.646-17.698zM512 768c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384s-171.922 384-384 384zM512 96c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.058 0 288-128.942 288-288s-128.942-288-288-288z" />
<glyph unicode="&#xe019;" glyph-name="preview" d="M64 504.254c45.318 49.92 97.162 92.36 153.272 125.124 90.332 52.744 192.246 80.622 294.728 80.622 102.48 0 204.396-27.878 294.726-80.624 56.112-32.764 107.956-75.204 153.274-125.124v117.432c-33.010 28.118-68.124 53.14-104.868 74.594-105.006 61.314-223.658 93.722-343.132 93.722s-238.128-32.408-343.134-93.72c-36.742-21.454-71.856-46.478-104.866-74.596v-117.43zM512 640c-183.196 0-345.838-100.556-448-256 102.162-155.448 264.804-256 448-256s345.838 100.552 448 256c-102.162 155.444-264.804 256-448 256zM512 448c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.348 28.654 64 64 64s64-28.652 64-64zM728.066 263.338c-67.434-39.374-140.128-59.338-216.066-59.338s-148.632 19.964-216.066 59.338c-51.554 30.104-98.616 71.31-138.114 120.662 39.498 49.35 86.56 90.558 138.116 120.66 13.276 7.752 26.758 14.74 40.426 20.982-10.512-23.742-16.362-50.008-16.362-77.642 0-106.040 85.962-192 192-192 106.040 0 192 85.96 192 192 0 27.634-5.85 53.9-16.36 77.642 13.668-6.244 27.15-13.23 40.426-20.982 51.554-30.102 98.616-71.31 138.116-120.66-39.498-49.352-86.56-90.558-138.116-120.662z" />
<glyph unicode="&#xe01a;" glyph-name="forecolor" d="M651.168 676.166c-24.612 81.962-28.876 91.834-107.168 91.834h-64c-79.618 0-82.664-10.152-108.418-96 0-0.002 0-0.002-0.002-0.004l-143.998-479.996h113.636l57.6 192h226.366l57.6-192h113.63l-145.246 484.166zM437.218 512l38.4 136c10.086 33.618 36.38 30 36.38 30s26.294 3.618 36.38-30h0.004l38.4-136h-149.564z" />
<glyph unicode="&#xe01b;" glyph-name="table" d="M64 768v-704h896v704h-896zM384 320v128h256v-128h-256zM640 256v-128h-256v128h256zM640 640v-128h-256v128h256zM320 640v-128h-192v128h192zM128 448h192v-128h-192v128zM704 448h192v-128h-192v128zM704 512v128h192v-128h-192zM128 256h192v-128h-192v128zM704 128v128h192v-128h-192z" />
<glyph unicode="&#xe01c;" glyph-name="hr" d="M64 512h896v-128h-896z" />
<glyph unicode="&#xe01d;" glyph-name="removeformat" d="M64 192h512v-128h-512v128zM768 768h-220.558l-183.766-512h-132.288l183.762 512h-223.15v128h576v-128zM929.774 64l-129.774 129.774-129.774-129.774-62.226 62.226 129.774 129.774-129.774 129.774 62.226 62.226 129.774-129.774 129.774 129.774 62.226-62.226-129.774-129.774 129.774-129.774-62.226-62.226z" />
<glyph unicode="&#xe01e;" glyph-name="subscript" d="M768 50v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
<glyph unicode="&#xe01f;" glyph-name="superscript" d="M768 754v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
<glyph unicode="&#xe020;" glyph-name="charmap" d="M704 128v37.004c151.348 61.628 256 193.82 256 346.996 0 212.078-200.576 384-448 384s-448-171.922-448-384c0-153.176 104.654-285.368 256-346.996v-37.004h-192l-64 96v-224h320v222.812c-100.9 51.362-170.666 161.54-170.666 289.188 0 176.732 133.718 320 298.666 320s298.666-143.268 298.666-320c0-127.648-69.766-237.826-170.666-289.188v-222.812h320v224l-64-96h-192z" />
<glyph unicode="&#xe021;" glyph-name="emoticons" d="M512 820c99.366 0 192.782-38.694 263.042-108.956s108.958-163.678 108.958-263.044-38.696-192.782-108.958-263.042-163.676-108.958-263.042-108.958-192.782 38.696-263.044 108.958-108.956 163.676-108.956 263.042 38.694 192.782 108.956 263.044 163.678 108.956 263.044 108.956zM512 896c-247.424 0-448-200.576-448-448s200.576-448 448-448 448 200.576 448 448-200.576 448-448 448v0zM320 576c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM576 576c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM512 304c-101.84 0-192.56 36.874-251.166 94.328 23.126-117.608 126.778-206.328 251.166-206.328s228.040 88.72 251.168 206.328c-58.608-57.454-149.328-94.328-251.168-94.328z" />
<glyph unicode="&#xe022;" glyph-name="print" d="M256 832h512v-128h-512v128zM896 640h-768c-35.2 0-64-28.8-64-64v-256c0-35.2 28.796-64 64-64h128v-192h512v192h128c35.2 0 64 28.8 64 64v256c0 35.2-28.8 64-64 64zM704 128h-384v256h384v-256zM910.4 544c0-25.626-20.774-46.4-46.398-46.4s-46.402 20.774-46.402 46.4 20.778 46.4 46.402 46.4c25.626 0 46.398-20.774 46.398-46.4z" />
<glyph unicode="&#xe023;" glyph-name="fullscreen" d="M480 576l-192 192 128 128h-352v-352l128 128 192-192zM640 480l192 192 128-128v352h-352l128-128-192-192zM544 320l192-192-128-128h352v352l-128-128-192 192zM384 416l-192-192-128 128v-352h352l-128 128 192 192z" />
<glyph unicode="&#xe024;" glyph-name="spellcheck" d="M960 832v64h-192c-35.202 0-64-28.8-64-64v-320c0-15.856 5.858-30.402 15.496-41.614l-303.496-260.386-142 148-82-70 224-288 416 448h128v64h-192v320h192zM256 448h64v384c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-384h64v192h128v-192zM128 704v128h128v-128h-128zM640 512v96c0 35.2-8.8 64-44 64 35.2 0 44 28.8 44 64v96c0 35.2-28.8 64-64 64h-192v-448h192c35.2 0 64 28.8 64 64zM448 832h128v-128h-128v128zM448 640h128v-128h-128v128z" />
<glyph unicode="&#xe025;" glyph-name="nonbreaking" d="M448 448h-128v128h128v128h128v-128h128v-128h-128v-128h-128v128zM960 384v-320h-896v320h128v-192h640v192h128z" />
<glyph unicode="&#xe026;" glyph-name="template" d="M512 576h128v-64h-128zM512 192h128v-64h-128zM576 384h128v-64h-128zM768 384v-192h-64v-64h128v256zM384 384h128v-64h-128zM320 192h128v-64h-128zM320 576h128v-64h-128zM192 768v-256h64v192h64v64zM704 512h128v256h-64v-192h-64zM64 896v-896h896v896h-896zM896 64h-768v768h768v-768zM192 384v-256h64v192h64v64zM576 768h128v-64h-128zM384 768h128v-64h-128z" />
<glyph unicode="&#xe027;" glyph-name="pagebreak" d="M816 896l16-384h-640l16 384h32l16-320h512l16 320h32zM208 0l-16 320h640l-16-320h-32l-16 256h-512l-16-256h-32zM64 448h128v-64h-128zM256 448h128v-64h-128zM448 448h128v-64h-128zM640 448h128v-64h-128zM832 448h128v-64h-128z" />
<glyph unicode="&#xe028;" glyph-name="restoredraft" d="M576 896c247.424 0 448-200.576 448-448s-200.576-448-448-448v96c94.024 0 182.418 36.614 248.902 103.098s103.098 154.878 103.098 248.902c0 94.022-36.614 182.418-103.098 248.902s-154.878 103.098-248.902 103.098c-94.022 0-182.418-36.614-248.902-103.098-51.14-51.138-84.582-115.246-97.306-184.902h186.208l-224-256-224 256h164.57c31.060 217.102 217.738 384 443.43 384zM768 512v-128h-256v320h128v-192z" />
<glyph unicode="&#xe02a;" glyph-name="bold" d="M625.442 465.818c48.074 38.15 78.558 94.856 78.558 158.182 0 114.876-100.29 208-224 208h-224v-768h288c123.712 0 224 93.124 224 208 0 88.196-59.118 163.562-142.558 193.818zM384 656c0 26.51 21.49 48 48 48h67.204c42.414 0 76.796-42.98 76.796-96s-34.382-96-76.796-96h-115.204v144zM547.2 192h-115.2c-26.51 0-48 21.49-48 48v144h163.2c42.418 0 76.8-42.98 76.8-96s-34.382-96-76.8-96z" />
<glyph unicode="&#xe02b;" glyph-name="italic" d="M832 832v-64h-144l-256-640h144v-64h-448v64h144l256 640h-144v64h448z" />
<glyph unicode="&#xe02c;" glyph-name="underline" d="M192 128h576v-64h-576v64zM640 832v-384c0-31.312-14.7-61.624-41.39-85.352-30.942-27.502-73.068-42.648-118.61-42.648-45.544 0-87.668 15.146-118.608 42.648-26.692 23.728-41.392 54.040-41.392 85.352v384h-128v-384c0-141.382 128.942-256 288-256s288 114.618 288 256v384h-128z" />
<glyph unicode="&#xe02d;" glyph-name="strikethrough" d="M960 448h-265.876c-50.078 35.42-114.43 54.86-182.124 54.86-89.206 0-164.572 50.242-164.572 109.712s75.366 109.714 164.572 109.714c75.058 0 140.308-35.576 159.12-82.286h113.016c-7.93 50.644-37.58 97.968-84.058 132.826-50.88 38.16-117.676 59.174-188.078 59.174-70.404 0-137.196-21.014-188.074-59.174-54.788-41.090-86.212-99.502-86.212-160.254s31.424-119.164 86.212-160.254c1.956-1.466 3.942-2.898 5.946-4.316h-265.872v-64h512.532c58.208-17.106 100.042-56.27 100.042-100.572 0-59.468-75.368-109.71-164.572-109.71-75.060 0-140.308 35.574-159.118 82.286h-113.016c7.93-50.64 37.582-97.968 84.060-132.826 50.876-38.164 117.668-59.18 188.072-59.18 70.402 0 137.198 21.016 188.074 59.174 54.79 41.090 86.208 99.502 86.208 160.254 0 35.298-10.654 69.792-30.294 100.572h204.012v64z" />
<glyph unicode="&#xe02e;" glyph-name="visualchars" d="M384 832c-123.712 0-224-100.288-224-224s100.288-224 224-224v-320h128v640h64v-640h128v640h128v128h-448z" />
<glyph unicode="&#xe02f;" glyph-name="ltr" d="M448 832c-123.712 0-224-100.288-224-224s100.288-224 224-224v-320h128v640h64v-640h128v640h128v128h-448zM64 64l224 192-224 192z" />
<glyph unicode="&#xe030;" glyph-name="rtl" d="M320 832c-123.712 0-224-100.288-224-224s100.288-224 224-224v-320h128v640h64v-640h128v640h128v128h-448zM960 448l-224-192 224-192z" />
<glyph unicode="&#xe031;" glyph-name="copy" d="M832 640h-192v64l-192 192h-384v-704h384v-192h576v448l-192 192zM832 549.49l101.49-101.49h-101.49v101.49zM448 805.49l101.49-101.49h-101.49v101.49zM128 832h256v-192h192v-384h-448v576zM960 64h-448v128h128v384h128v-192h192v-320z" />
<glyph unicode="&#xe032;" glyph-name="resize" d="M768 704h64v-64h-64zM640 576h64v-64h-64zM640 448h64v-64h-64zM640 320h64v-64h-64zM512 448h64v-64h-64zM512 320h64v-64h-64zM384 320h64v-64h-64zM768 576h64v-64h-64zM768 448h64v-64h-64zM768 320h64v-64h-64zM768 192h64v-64h-64zM640 192h64v-64h-64zM512 192h64v-64h-64zM384 192h64v-64h-64zM256 192h64v-64h-64z" />
<glyph unicode="&#xe034;" glyph-name="browse" d="M928 832h-416l-32 64h-352l-64-128h896zM840.34 256h87.66l32 448h-896l64-640h356.080c-104.882 37.776-180.080 138.266-180.080 256 0 149.982 122.018 272 272 272 149.98 0 272-122.018 272-272 0-21.678-2.622-43.15-7.66-64zM874.996 110.25l-134.496 110.692c17.454 28.922 27.5 62.814 27.5 99.058 0 106.040-85.96 192-192 192s-192-85.96-192-192 85.96-192 192-192c36.244 0 70.138 10.046 99.058 27.5l110.692-134.496c22.962-26.678 62.118-28.14 87.006-3.252l5.492 5.492c24.888 24.888 23.426 64.044-3.252 87.006zM576 196c-68.484 0-124 55.516-124 124s55.516 124 124 124 124-55.516 124-124-55.516-124-124-124z" />
<glyph unicode="&#xe035;" glyph-name="pastetext" d="M704 576v160c0 17.6-14.4 32-32 32h-160v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-160c-17.602 0-32-14.4-32-32v-512c0-17.6 14.398-32 32-32h224v-192h576v576h-192zM320 831.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886h-128v63.886zM192 640v64h384v-64h-384zM832 64h-448v448h448v-448zM448 448v-128h32l32 64h64v-192h-48v-64h160v64h-48v192h64l32-64h32v128z" />
<glyph unicode="&#xe603;" glyph-name="codesample" d="M200.015 577.994v103.994c0 43.077 34.919 77.997 77.997 77.997h26v103.994h-26c-100.51 0-181.991-81.481-181.991-181.991v-103.994c0-43.077-34.919-77.997-77.997-77.997h-26v-103.994h26c43.077 0 77.997-34.919 77.997-77.997v-103.994c0-100.509 81.481-181.991 181.991-181.991h26v103.994h-26c-43.077 0-77.997 34.919-77.997 77.997v103.994c0 50.927-20.928 96.961-54.642 129.994 33.714 33.032 54.642 79.065 54.642 129.994zM823.985 577.994v103.994c0 43.077-34.919 77.997-77.997 77.997h-26v103.994h26c100.509 0 181.991-81.481 181.991-181.991v-103.994c0-43.077 34.919-77.997 77.997-77.997h26v-103.994h-26c-43.077 0-77.997-34.919-77.997-77.997v-103.994c0-100.509-81.482-181.991-181.991-181.991h-26v103.994h26c43.077 0 77.997 34.919 77.997 77.997v103.994c0 50.927 20.928 96.961 54.642 129.994-33.714 33.032-54.642 79.065-54.642 129.994zM615.997 603.277c0-57.435-46.56-103.994-103.994-103.994s-103.994 46.56-103.994 103.994c0 57.435 46.56 103.994 103.994 103.994s103.994-46.56 103.994-103.994zM512 448.717c-57.435 0-103.994-46.56-103.994-103.994 0-55.841 26-100.107 105.747-103.875-23.715-33.413-59.437-46.608-105.747-50.94v-61.747c0 0 207.991-18.144 207.991 216.561-0.202 57.437-46.56 103.996-103.994 103.996z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 24 KiB

@ -0,0 +1,131 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="tinymce" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe000;" glyph-name="save" d="M896 960h-896v-1024h1024v896l-128 128zM512 832h128v-256h-128v256zM896 64h-768v768h64v-320h576v320h74.978l53.022-53.018v-714.982z" />
<glyph unicode="&#xe001;" glyph-name="newdocument" d="M903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608z" />
<glyph unicode="&#xe002;" glyph-name="fullpage" d="M1024 367.542v160.916l-159.144 15.914c-8.186 30.042-20.088 58.548-35.21 84.98l104.596 127.838-113.052 113.050-127.836-104.596c-26.434 15.124-54.942 27.026-84.982 35.208l-15.914 159.148h-160.916l-15.914-159.146c-30.042-8.186-58.548-20.086-84.98-35.208l-127.838 104.594-113.050-113.050 104.596-127.836c-15.124-26.432-27.026-54.94-35.21-84.98l-159.146-15.916v-160.916l159.146-15.914c8.186-30.042 20.086-58.548 35.21-84.982l-104.596-127.836 113.048-113.048 127.838 104.596c26.432-15.124 54.94-27.028 84.98-35.21l15.916-159.148h160.916l15.914 159.144c30.042 8.186 58.548 20.088 84.982 35.21l127.836-104.596 113.048 113.048-104.596 127.836c15.124 26.434 27.028 54.942 35.21 84.98l159.148 15.92zM704 384l-128-128h-128l-128 128v128l128 128h128l128-128v-128z" />
<glyph unicode="&#xe003;" glyph-name="alignleft" d="M0 896h1024v-128h-1024zM0 704h640v-128h-640zM0 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
<glyph unicode="&#xe004;" glyph-name="aligncenter" d="M0 896h1024v-128h-1024zM192 704h640v-128h-640zM192 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
<glyph unicode="&#xe005;" glyph-name="alignright" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
<glyph unicode="&#xe006;" glyph-name="alignjustify" d="M0 896h1024v-128h-1024zM0 704h1024v-128h-1024zM0 512h1024v-128h-1024zM0 320h1024v-128h-1024zM0 128h1024v-128h-1024z" />
<glyph unicode="&#xe007;" glyph-name="cut" d="M890.774 250.846c-45.654 45.556-103.728 69.072-157.946 69.072h-29.112l-63.904 64.008 255.62 256.038c63.904 64.010 63.904 192.028 0 256.038l-383.43-384.056-383.432 384.054c-63.904-64.008-63.904-192.028 0-256.038l255.622-256.034-63.906-64.008h-29.114c-54.22 0-112.292-23.518-157.948-69.076-81.622-81.442-92.65-202.484-24.63-270.35 29.97-29.902 70.288-44.494 112.996-44.494 54.216 0 112.29 23.514 157.946 69.072 53.584 53.464 76.742 124 67.084 185.348l65.384 65.488 65.376-65.488c-9.656-61.348 13.506-131.882 67.084-185.348 45.662-45.558 103.732-69.072 157.948-69.072 42.708 0 83.024 14.592 112.994 44.496 68.020 67.866 56.988 188.908-24.632 270.35zM353.024 114.462c-7.698-17.882-19.010-34.346-33.626-48.926-14.636-14.604-31.172-25.918-49.148-33.624-16.132-6.916-32.96-10.568-48.662-10.568-15.146 0-36.612 3.402-52.862 19.612-16.136 16.104-19.52 37.318-19.52 52.288 0 15.542 3.642 32.21 10.526 48.212 7.7 17.884 19.014 34.346 33.626 48.926 14.634 14.606 31.172 25.914 49.15 33.624 16.134 6.914 32.96 10.568 48.664 10.568 15.146 0 36.612-3.4 52.858-19.614 16.134-16.098 19.522-37.316 19.522-52.284 0.002-15.542-3.638-32.216-10.528-48.214zM512.004 293.404c-49.914 0-90.376 40.532-90.376 90.526 0 49.992 40.462 90.52 90.376 90.52s90.372-40.528 90.372-90.52c0-49.998-40.46-90.526-90.372-90.526zM855.272 40.958c-16.248-16.208-37.712-19.612-52.86-19.612-15.704 0-32.53 3.652-48.666 10.568-17.972 7.706-34.508 19.020-49.142 33.624-14.614 14.58-25.926 31.042-33.626 48.926-6.886 15.998-10.526 32.672-10.526 48.212 0 14.966 3.384 36.188 19.52 52.286 16.246 16.208 37.712 19.614 52.86 19.614 15.7 0 32.53-3.654 48.66-10.568 17.978-7.708 34.516-19.018 49.15-33.624 14.61-14.58 25.924-31.042 33.626-48.926 6.884-15.998 10.526-32.67 10.526-48.212-0.002-14.97-3.39-36.186-19.522-52.288z" />
<glyph unicode="&#xe008;" glyph-name="paste" d="M832 640v160c0 17.6-14.4 32-32 32h-224v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-224c-17.602 0-32-14.4-32-32v-640c0-17.6 14.398-32 32-32h288v-192h448l192 192v512h-192zM384 895.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886h-128v63.886zM192 704v64h512v-64h-512zM832 26.51v101.49h101.49l-101.49-101.49zM960 192h-192v-192h-320v576h512v-384z" />
<glyph unicode="&#xe009;" glyph-name="searchreplace" d="M64 960h384v-64h-384zM576 960h384v-64h-384zM952 640h-56v256h-256v-256h-256v256h-256v-256h-56c-39.6 0-72-32.4-72-72v-560c0-39.6 32.4-72 72-72h304c39.6 0 72 32.4 72 72v376h128v-376c0-39.6 32.4-72 72-72h304c39.6 0 72 32.4 72 72v560c0 39.6-32.4 72-72 72zM348 0h-248c-19.8 0-36 14.4-36 32s16.2 32 36 32h248c19.8 0 36-14.4 36-32s-16.2-32-36-32zM544 448h-64c-17.6 0-32 14.4-32 32s14.4 32 32 32h64c17.6 0 32-14.4 32-32s-14.4-32-32-32zM924 0h-248c-19.8 0-36 14.4-36 32s16.2 32 36 32h248c19.8 0 36-14.4 36-32s-16.2-32-36-32z" />
<glyph unicode="&#xe00a;" glyph-name="bullist" d="M384 896h640v-128h-640v128zM384 512h640v-128h-640v128zM384 128h640v-128h-640v128zM0 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM0 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM0 64c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128z" />
<glyph unicode="&#xe00b;" glyph-name="numlist" d="M384 128h640v-128h-640zM384 512h640v-128h-640zM384 896h640v-128h-640zM192 960v-256h-64v192h-64v64zM128 434v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM256 256v-320h-192v64h128v64h-128v64h128v64h-128v64z" />
<glyph unicode="&#xe00c;" glyph-name="indent" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM0 256v384l256-192z" />
<glyph unicode="&#xe00d;" glyph-name="outdent" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM256 640v-384l-256 192z" />
<glyph unicode="&#xe00e;" glyph-name="blockquote" d="M225 512c123.712 0 224-100.29 224-224 0-123.712-100.288-224-224-224s-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.634-11.636-22.252-24.016-31.83-37.020 11.438 1.8 23.16 2.746 35.104 2.746zM801 512c123.71 0 224-100.29 224-224 0-123.712-100.29-224-224-224s-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.636-11.636-22.254-24.016-31.832-37.020 11.44 1.8 23.16 2.746 35.106 2.746z" />
<glyph unicode="&#xe00f;" glyph-name="undo" d="M761.862-64c113.726 206.032 132.888 520.306-313.862 509.824v-253.824l-384 384 384 384v-248.372c534.962 13.942 594.57-472.214 313.862-775.628z" />
<glyph unicode="&#xe010;" glyph-name="redo" d="M576 711.628v248.372l384-384-384-384v253.824c-446.75 10.482-427.588-303.792-313.86-509.824-280.712 303.414-221.1 789.57 313.86 775.628z" />
<glyph unicode="&#xe011;" glyph-name="link" d="M320 256c17.6-17.6 47.274-16.726 65.942 1.942l316.118 316.116c18.668 18.668 19.54 48.342 1.94 65.942s-47.274 16.726-65.942-1.942l-316.116-316.116c-18.668-18.668-19.542-48.342-1.942-65.942zM476.888 284.888c4.56-9.050 6.99-19.16 6.99-29.696 0-17.616-6.744-34.060-18.992-46.308l-163.382-163.382c-12.248-12.248-28.694-18.992-46.308-18.992s-34.060 6.744-46.308 18.992l-99.382 99.382c-12.248 12.248-18.992 28.694-18.992 46.308s6.744 34.060 18.992 46.308l163.382 163.382c12.248 12.248 28.694 18.994 46.308 18.994 10.536 0 20.644-2.43 29.696-6.99l65.338 65.338c-27.87 21.41-61.44 32.16-95.034 32.16-39.986 0-79.972-15.166-110.308-45.502l-163.382-163.382c-60.67-60.67-60.67-159.948 0-220.618l99.382-99.382c30.334-30.332 70.32-45.5 110.306-45.5 39.988 0 79.974 15.168 110.308 45.502l163.382 163.382c55.82 55.82 60.238 144.298 13.344 205.344l-65.34-65.34zM978.498 815.116l-99.382 99.382c-30.334 30.336-70.32 45.502-110.308 45.502-39.986 0-79.972-15.166-110.308-45.502l-163.382-163.382c-55.82-55.82-60.238-144.298-13.342-205.342l65.338 65.34c-4.558 9.050-6.988 19.16-6.988 29.694 0 17.616 6.744 34.060 18.992 46.308l163.382 163.382c12.248 12.248 28.694 18.994 46.308 18.994s34.060-6.746 46.308-18.994l99.382-99.382c12.248-12.248 18.992-28.694 18.992-46.308s-6.744-34.060-18.992-46.308l-163.382-163.382c-12.248-12.248-28.694-18.992-46.308-18.992-10.536 0-20.644 2.43-29.696 6.99l-65.338-65.338c27.872-21.41 61.44-32.16 95.034-32.16 39.988 0 79.974 15.168 110.308 45.502l163.382 163.382c60.67 60.666 60.67 159.944 0 220.614z" />
<glyph unicode="&#xe012;" glyph-name="unlink" d="M476.888 284.886c4.56-9.048 6.99-19.158 6.99-29.696 0-17.616-6.744-34.058-18.992-46.308l-163.38-163.38c-12.248-12.248-28.696-18.992-46.308-18.992s-34.060 6.744-46.308 18.992l-99.38 99.38c-12.248 12.25-18.992 28.696-18.992 46.308s6.744 34.060 18.992 46.308l163.38 163.382c12.248 12.246 28.696 18.992 46.308 18.992 10.538 0 20.644-2.43 29.696-6.988l65.338 65.336c-27.87 21.41-61.44 32.16-95.034 32.16-39.986 0-79.972-15.166-110.308-45.502l-163.38-163.382c-60.67-60.67-60.67-159.95 0-220.618l99.38-99.382c30.334-30.332 70.32-45.5 110.306-45.5 39.988 0 79.974 15.168 110.308 45.502l163.38 163.38c55.82 55.82 60.238 144.298 13.344 205.346l-65.34-65.338zM978.496 815.116l-99.38 99.382c-30.334 30.336-70.32 45.502-110.308 45.502-39.986 0-79.97-15.166-110.306-45.502l-163.382-163.382c-55.82-55.82-60.238-144.298-13.342-205.342l65.338 65.34c-4.558 9.050-6.988 19.16-6.988 29.694 0 17.616 6.744 34.060 18.992 46.308l163.382 163.382c12.246 12.248 28.694 18.994 46.306 18.994 17.616 0 34.060-6.746 46.308-18.994l99.38-99.382c12.248-12.248 18.992-28.694 18.992-46.308s-6.744-34.060-18.992-46.308l-163.38-163.382c-12.248-12.248-28.694-18.992-46.308-18.992-10.536 0-20.644 2.43-29.696 6.99l-65.338-65.338c27.872-21.41 61.44-32.16 95.034-32.16 39.988 0 79.974 15.168 110.308 45.504l163.38 163.38c60.672 60.666 60.672 159.944 0 220.614zM233.368 681.376l-191.994 191.994 45.256 45.256 191.994-191.994zM384 960h64v-192h-64zM0 576h192v-64h-192zM790.632 214.624l191.996-191.996-45.256-45.256-191.996 191.996zM576 128h64v-192h-64zM832 384h192v-64h-192z" />
<glyph unicode="&#xe013;" glyph-name="anchor" d="M192 960v-1024l320 320 320-320v1024h-640zM768 90.51l-256 256-256-256v805.49h512v-805.49z" />
<glyph unicode="&#xe014;" glyph-name="image" d="M0 832v-832h1024v832h-1024zM960 64h-896v704h896v-704zM704 608c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM896 128h-768l192 512 256-320 128 96z" />
<glyph unicode="&#xe015;" glyph-name="media" d="M0 832v-768h1024v768h-1024zM192 128h-128v128h128v-128zM192 384h-128v128h128v-128zM192 640h-128v128h128v-128zM768 128h-512v640h512v-640zM960 128h-128v128h128v-128zM960 384h-128v128h128v-128zM960 640h-128v128h128v-128zM384 640v-384l256 192z" />
<glyph unicode="&#xe016;" glyph-name="help" d="M448 256h128v-128h-128zM704 704c35.346 0 64-28.654 64-64v-192l-192-128h-128v64l192 128v64h-320v128h384zM512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156s183.038-121.844 294.156-121.844c111.118 0 215.584 43.272 294.156 121.844s121.844 183.038 121.844 294.156c0 111.118-43.272 215.584-121.844 294.156s-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512z" />
<glyph unicode="&#xe017;" glyph-name="code" d="M320 704l-256-256 256-256h128l-256 256 256 256zM704 704h-128l256-256-256-256h128l256 256z" />
<glyph unicode="&#xe018;" glyph-name="inserttime" d="M512 768c-212.076 0-384-171.922-384-384s171.922-384 384-384c212.074 0 384 171.922 384 384s-171.926 384-384 384zM715.644 180.354c-54.392-54.396-126.716-84.354-203.644-84.354s-149.25 29.958-203.646 84.354c-54.396 54.394-84.354 126.718-84.354 203.646s29.958 149.25 84.354 203.646c54.396 54.396 126.718 84.354 203.646 84.354s149.252-29.958 203.642-84.354c54.402-54.396 84.358-126.718 84.358-203.646s-29.958-149.252-84.356-203.646zM325.93 756.138l-42.94 85.878c-98.874-49.536-179.47-130.132-229.006-229.008l85.876-42.94c40.248 80.336 105.732 145.822 186.070 186.070zM884.134 570.070l85.878 42.938c-49.532 98.876-130.126 179.472-229.004 229.008l-42.944-85.878c80.338-40.248 145.824-105.732 186.070-186.068zM512 576h-64v-192c0-10.11 4.7-19.11 12.022-24.972l-0.012-0.016 160-128 39.976 49.976-147.986 118.39v176.622z" />
<glyph unicode="&#xe019;" glyph-name="preview" d="M512 640c-209.368 0-395.244-100.556-512-256 116.756-155.446 302.632-256 512-256s395.244 100.554 512 256c-116.756 155.444-302.632 256-512 256zM448 512c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM773.616 254.704c-39.648-20.258-81.652-35.862-124.846-46.376-44.488-10.836-90.502-16.328-136.77-16.328-46.266 0-92.282 5.492-136.768 16.324-43.194 10.518-85.198 26.122-124.846 46.376-63.020 32.202-120.222 76.41-167.64 129.298 47.418 52.888 104.62 97.1 167.64 129.298 32.336 16.522 66.242 29.946 101.082 40.040-19.888-30.242-31.468-66.434-31.468-105.336 0-106.040 85.962-192 192-192s192 85.96 192 192c0 38.902-11.582 75.094-31.466 105.34 34.838-10.096 68.744-23.52 101.082-40.042 63.022-32.198 120.218-76.408 167.638-129.298-47.42-52.886-104.618-97.1-167.638-129.296zM860.918 716.278c-108.72 55.554-226.112 83.722-348.918 83.722s-240.198-28.168-348.918-83.722c-58.772-30.032-113.732-67.904-163.082-112.076v-109.206c55.338 58.566 120.694 107.754 192.194 144.29 99.62 50.904 207.218 76.714 319.806 76.714s220.186-25.81 319.804-76.716c71.502-36.536 136.858-85.724 192.196-144.29v109.206c-49.35 44.174-104.308 82.046-163.082 112.078z" />
<glyph unicode="&#xe01a;" glyph-name="forecolor" d="M322.018 128l57.6 192h264.764l57.6-192h113.632l-191.996 640h-223.236l-192-640h113.636zM475.618 640h72.764l57.6-192h-187.964l57.6 192z" />
<glyph unicode="&#xe01b;" glyph-name="table" d="M0 896v-896h1024v896h-1024zM384 320v192h256v-192h-256zM640 256v-192h-256v192h256zM640 768v-192h-256v192h256zM320 768v-192h-256v192h256zM64 512h256v-192h-256v192zM704 512h256v-192h-256v192zM704 576v192h256v-192h-256zM64 256h256v-192h-256v192zM704 64v192h256v-192h-256z" />
<glyph unicode="&#xe01c;" glyph-name="hr" d="M0 512h1024v-128h-1024z" />
<glyph unicode="&#xe01d;" glyph-name="removeformat" d="M0 64h576v-128h-576zM192 960h704v-128h-704zM277.388 128l204.688 784.164 123.85-32.328-196.25-751.836zM929.774-64l-129.774 129.774-129.774-129.774-62.226 62.226 129.774 129.774-129.774 129.774 62.226 62.226 129.774-129.774 129.774 129.774 62.226-62.226-129.774-129.774 129.774-129.774z" />
<glyph unicode="&#xe01e;" glyph-name="sub" d="M768 50v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
<glyph unicode="&#xe01f;" glyph-name="sup" d="M768 754v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
<glyph unicode="&#xe020;" glyph-name="charmap" d="M704 64h256l64 128v-256h-384v214.214c131.112 56.484 224 197.162 224 361.786 0 214.432-157.598 382.266-352 382.266-194.406 0-352-167.832-352-382.266 0-164.624 92.886-305.302 224-361.786v-214.214h-384v256l64-128h256v32.59c-187.63 66.46-320 227.402-320 415.41 0 247.424 229.23 448 512 448s512-200.576 512-448c0-188.008-132.37-348.95-320-415.41v-32.59z" />
<glyph unicode="&#xe021;" glyph-name="emoticons" d="M512 960c-282.77 0-512-229.228-512-512 0-282.77 229.228-512 512-512 282.77 0 512 229.23 512 512 0 282.772-229.23 512-512 512zM512 16c-238.586 0-432 193.412-432 432 0 238.586 193.414 432 432 432 238.59 0 432-193.414 432-432 0-238.588-193.41-432-432-432zM384 640c0-35.346-28.654-64-64-64s-64 28.654-64 64 28.654 64 64 64 64-28.654 64-64zM768 640c0-35.346-28.652-64-64-64s-64 28.654-64 64 28.652 64 64 64 64-28.654 64-64zM512 308c141.074 0 262.688 57.532 318.462 123.192-20.872-171.22-156.288-303.192-318.462-303.192-162.118 0-297.498 132.026-318.444 303.168 55.786-65.646 177.386-123.168 318.444-123.168z" />
<glyph unicode="&#xe022;" glyph-name="print" d="M256 896h512v-128h-512zM960 704h-896c-35.2 0-64-28.8-64-64v-320c0-35.2 28.796-64 64-64h192v-256h512v256h192c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM704 64h-384v320h384v-320zM974.4 608c0-25.626-20.774-46.4-46.398-46.4-25.626 0-46.402 20.774-46.402 46.4s20.776 46.4 46.402 46.4c25.626 0 46.398-20.774 46.398-46.4z" />
<glyph unicode="&#xe023;" glyph-name="fullscreen" d="M1024 960v-384l-138.26 138.26-212-212-107.48 107.48 212 212-138.26 138.26zM245.74 821.74l212-212-107.48-107.48-212 212-138.26-138.26v384h384zM885.74 181.74l138.26 138.26v-384h-384l138.26 138.26-212 212 107.48 107.48zM457.74 286.26l-212-212 138.26-138.26h-384v384l138.26-138.26 212 212z" />
<glyph unicode="&#xe024;" glyph-name="spellchecker" d="M128 704h128v-192h64v384c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-384h64v192zM128 896h128v-128h-128v128zM960 896v64h-192c-35.202 0-64-28.8-64-64v-320c0-35.2 28.798-64 64-64h192v64h-192v320h192zM640 800v96c0 35.2-28.8 64-64 64h-192v-448h192c35.2 0 64 28.8 64 64v96c0 35.2-8.8 64-44 64 35.2 0 44 28.8 44 64zM576 576h-128v128h128v-128zM576 768h-128v128h128v-128zM832 384l-416-448-224 288 82 70 142-148 352 302z" />
<glyph unicode="&#xe025;" glyph-name="nonbreaking" d="M448 384h-192v128h192v192h128v-192h192v-128h-192v-192h-128zM1024 320v-384h-1024v384h128v-256h768v256z" />
<glyph unicode="&#xe026;" glyph-name="template" d="M384 768h128v-64h-128zM576 768h128v-64h-128zM896 768v-256h-192v64h128v128h-64v64zM320 576h128v-64h-128zM512 576h128v-64h-128zM192 704v-128h64v-64h-128v256h192v-64zM384 384h128v-64h-128zM576 384h128v-64h-128zM896 384v-256h-192v64h128v128h-64v64zM320 192h128v-64h-128zM512 192h128v-64h-128zM192 320v-128h64v-64h-128v256h192v-64zM960 896h-896v-896h896v896zM1024 960v0-1024h-1024v1024h1024z" />
<glyph unicode="&#xe027;" glyph-name="pagebreak" d="M0 448h128v-64h-128zM192 448h192v-64h-192zM448 448h128v-64h-128zM640 448h192v-64h-192zM896 448h128v-64h-128zM880 960l16-448h-768l16 448h32l16-384h640l16 384zM144-64l-16 384h768l-16-384h-32l-16 320h-640l-16-320z" />
<glyph unicode="&#xe028;" glyph-name="restoredraft" d="M576 896c247.424 0 448-200.576 448-448s-200.576-448-448-448v96c94.024 0 182.418 36.614 248.902 103.098s103.098 154.878 103.098 248.902c0 94.022-36.614 182.418-103.098 248.902s-154.878 103.098-248.902 103.098c-94.022 0-182.418-36.614-248.902-103.098-51.14-51.138-84.582-115.246-97.306-184.902h186.208l-224-256-224 256h164.57c31.060 217.102 217.738 384 443.43 384zM768 512v-128h-256v320h128v-192z" />
<glyph unicode="&#xe02a;" glyph-name="bold" d="M707.88 475.348c37.498 44.542 60.12 102.008 60.12 164.652 0 141.16-114.842 256-256 256h-320v-896h384c141.158 0 256 114.842 256 256 0 92.956-49.798 174.496-124.12 219.348zM384 768h101.5c55.968 0 101.5-57.42 101.5-128s-45.532-128-101.5-128h-101.5v256zM543 128h-159v256h159c58.45 0 106-57.42 106-128s-47.55-128-106-128z" />
<glyph unicode="&#xe02b;" glyph-name="italic" d="M896 896v-64h-128l-320-768h128v-64h-448v64h128l320 768h-128v64z" />
<glyph unicode="&#xe02c;" glyph-name="underline" d="M704 896h128v-416c0-159.058-143.268-288-320-288-176.73 0-320 128.942-320 288v416h128v-416c0-40.166 18.238-78.704 51.354-108.506 36.896-33.204 86.846-51.494 140.646-51.494s103.75 18.29 140.646 51.494c33.116 29.802 51.354 68.34 51.354 108.506v416zM192 128h640v-128h-640z" />
<glyph unicode="&#xe02d;" glyph-name="strikethrough" d="M731.42 442.964c63.92-47.938 100.58-116.086 100.58-186.964s-36.66-139.026-100.58-186.964c-59.358-44.518-137.284-69.036-219.42-69.036-82.138 0-160.062 24.518-219.42 69.036-63.92 47.938-100.58 116.086-100.58 186.964h128c0-69.382 87.926-128 192-128s192 58.618 192 128c0 69.382-87.926 128-192 128-82.138 0-160.062 24.518-219.42 69.036-63.92 47.94-100.58 116.086-100.58 186.964s36.66 139.024 100.58 186.964c59.358 44.518 137.282 69.036 219.42 69.036 82.136 0 160.062-24.518 219.42-69.036 63.92-47.94 100.58-116.086 100.58-186.964h-128c0 69.382-87.926 128-192 128s-192-58.618-192-128c0-69.382 87.926-128 192-128 82.136 0 160.062-24.518 219.42-69.036zM0 448h1024v-64h-1024z" />
<glyph unicode="&#xe02e;" glyph-name="visualchars" d="M384 896h512v-128h-128v-768h-128v768h-128v-768h-128v448c-123.712 0-224 100.288-224 224s100.288 224 224 224z" />
<glyph unicode="&#xe02f;" glyph-name="ltr" d="M448 896h512v-128h-128v-768h-128v768h-128v-768h-128v448c-123.712 0-224 100.288-224 224s100.288 224 224 224zM64 512l256-224-256-224z" />
<glyph unicode="&#xe030;" glyph-name="rtl" d="M256 896h512v-128h-128v-768h-128v768h-128v-768h-128v448c-123.712 0-224 100.288-224 224s100.288 224 224 224zM960 64l-256 224 256 224z" />
<glyph unicode="&#xe031;" glyph-name="copy" d="M832 704h-192v64l-192 192h-448v-768h384v-256h640v576l-192 192zM832 613.49l101.49-101.49h-101.49v101.49zM448 869.49l101.49-101.49h-101.49v101.49zM64 896h320v-192h192v-448h-512v640zM960 0h-512v192h192v448h128v-192h192v-448z" />
<glyph unicode="&#xe032;" glyph-name="resize" d="M768 704h64v-64h-64zM640 576h64v-64h-64zM640 448h64v-64h-64zM640 320h64v-64h-64zM512 448h64v-64h-64zM512 320h64v-64h-64zM384 320h64v-64h-64zM768 576h64v-64h-64zM768 448h64v-64h-64zM768 320h64v-64h-64zM768 192h64v-64h-64zM640 192h64v-64h-64zM512 192h64v-64h-64zM384 192h64v-64h-64zM256 192h64v-64h-64z" />
<glyph unicode="&#xe033;" glyph-name="checkbox" d="M128 416l288-288 480 480-128 128-352-352-160 160z" />
<glyph unicode="&#xe034;" glyph-name="browse" d="M928 832h-416l-32 64h-352l-64-128h896zM904.34 256h74.86l44.8 448h-1024l64-640h484.080c-104.882 37.776-180.080 138.266-180.080 256 0 149.982 122.018 272 272 272 149.98 0 272-122.018 272-272 0-21.678-2.622-43.15-7.66-64zM1002.996 46.25l-198.496 174.692c17.454 28.92 27.5 62.814 27.5 99.058 0 106.040-85.96 192-192 192s-192-85.96-192-192 85.96-192 192-192c36.244 0 70.138 10.046 99.058 27.5l174.692-198.496c22.962-26.678 62.118-28.14 87.006-3.252l5.492 5.492c24.888 24.888 23.426 64.044-3.252 87.006zM640 196c-68.484 0-124 55.516-124 124s55.516 124 124 124 124-55.516 124-124-55.516-124-124-124z" />
<glyph unicode="&#xe035;" glyph-name="pastetext" d="M512 448v-128h32l32 64h64v-256h-48v-64h224v64h-48v256h64l32-64h32v128zM832 640v160c0 17.6-14.4 32-32 32h-224v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-224c-17.602 0-32-14.4-32-32v-640c0-17.6 14.398-32 32-32h288v-192h640v704h-192zM384 895.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886h-128v63.886zM192 704v64h512v-64h-512zM960 0h-512v576h512v-576z" />
<glyph unicode="&#xe600;" glyph-name="gamma" d="M483.2 320l-147.2 336c-9.6 25.6-19.2 44.8-25.6 54.4s-16 12.8-25.6 12.8c-16 0-25.6-3.2-28.8-3.2v70.4c9.6 6.4 25.6 6.4 38.4 9.6 32 0 57.6-6.4 73.6-22.4 6.4-6.4 12.8-16 19.2-25.6 6.4-12.8 12.8-25.6 16-41.6l121.6-291.2 150.4 371.2h92.8l-198.4-470.4v-224h-86.4v224zM0 960v-1024h1024v1024h-1024zM960 0h-896v896h896v-896z" />
<glyph unicode="&#xe601;" glyph-name="orientation" d="M627.2 80h-579.2v396.8h579.2v-396.8zM553.6 406.4h-435.2v-256h435.2v256zM259.2 732.8c176 176 457.6 176 633.6 0s176-457.6 0-633.6c-121.6-121.6-297.6-160-454.4-108.8 121.6-28.8 262.4 9.6 361.6 108.8 150.4 150.4 160 384 22.4 521.6-121.6 121.6-320 128-470.4 19.2l86.4-86.4-294.4-22.4 22.4 294.4 92.8-92.8z" />
<glyph unicode="&#xe602;" glyph-name="invert" d="M892.8-22.4l-89.6 89.6c-70.4-80-172.8-131.2-288-131.2-208 0-380.8 166.4-384 377.6 0 0 0 0 0 0 0 3.2 0 3.2 0 6.4s0 3.2 0 6.4v0c0 0 0 0 0 3.2 0 0 0 3.2 0 3.2 3.2 105.6 48 211.2 105.6 304l-192 192 44.8 44.8 182.4-182.4c0 0 0 0 0 0l569.6-569.6c0 0 0 0 0 0l99.2-99.2-48-44.8zM896 326.4c0 0 0 0 0 0 0 3.2 0 6.4 0 6.4-9.6 316.8-384 627.2-384 627.2s-108.8-89.6-208-220.8l70.4-70.4c6.4 9.6 16 22.4 22.4 32 41.6 51.2 83.2 96 115.2 128v0c32-32 73.6-76.8 115.2-128 108.8-137.6 169.6-265.6 172.8-371.2 0 0 0-3.2 0-3.2v0 0c0-3.2 0-3.2 0-6.4s0-3.2 0-3.2v0 0c0-22.4-3.2-41.6-9.6-64l76.8-76.8c16 41.6 28.8 89.6 28.8 137.6 0 0 0 0 0 0 0 3.2 0 3.2 0 6.4s0 3.2 0 6.4z" />
<glyph unicode="&#xe603;" glyph-name="codesample" d="M199.995 578.002v104.002c0 43.078 34.923 78.001 78.001 78.001h26v104.002h-26c-100.518 0-182.003-81.485-182.003-182.003v-104.002c0-43.078-34.923-78.001-78.001-78.001h-26v-104.002h26c43.078 0 78.001-34.923 78.001-78.001v-104.002c0-100.515 81.485-182.003 182.003-182.003h26v104.002h-26c-43.078 0-78.001 34.923-78.001 78.001v104.002c0 50.931-20.928 96.966-54.646 130.002 33.716 33.036 54.646 79.072 54.646 130.002zM824.005 578.002v104.002c0 43.078-34.923 78.001-78.001 78.001h-26v104.002h26c100.515 0 182.003-81.485 182.003-182.003v-104.002c0-43.078 34.923-78.001 78.001-78.001h26v-104.002h-26c-43.078 0-78.001-34.923-78.001-78.001v-104.002c0-100.515-81.488-182.003-182.003-182.003h-26v104.002h26c43.078 0 78.001 34.923 78.001 78.001v104.002c0 50.931 20.928 96.966 54.646 130.002-33.716 33.036-54.646 79.072-54.646 130.002zM616.002 603.285c0-57.439-46.562-104.002-104.002-104.002s-104.002 46.562-104.002 104.002c0 57.439 46.562 104.002 104.002 104.002s104.002-46.562 104.002-104.002zM512 448.717c-57.439 0-104.002-46.562-104.002-104.002 0-55.845 26-100.115 105.752-103.88-23.719-33.417-59.441-46.612-105.752-50.944v-61.751c0 0 208.003-18.144 208.003 216.577-0.202 57.441-46.56 104.004-104.002 104.004z" />
<glyph unicode="&#xe604;" glyph-name="tablerowprops" d="M0 896v-896h1024v896h-1024zM640 256v-192h-256v192h256zM640 768v-192h-256v192h256zM320 768v-192h-256v192h256zM704 576v192h256v-192h-256zM64 256h256v-192h-256v192zM704 64v192h256v-192h-256z" />
<glyph unicode="&#xe605;" glyph-name="tablecellprops" d="M0 896v-896h1024v896h-1024zM640 256v-192h-256v192h256zM640 768v-192h-256v192h256zM320 768v-192h-256v192h256zM64 512h256v-192h-256v192zM704 512h256v-192h-256v192zM704 576v192h256v-192h-256zM64 256h256v-192h-256v192zM704 64v192h256v-192h-256z" />
<glyph unicode="&#xe606;" glyph-name="table2" d="M0 896v-832h1024v832h-1024zM320 128h-256v192h256v-192zM320 384h-256v192h256v-192zM640 128h-256v192h256v-192zM640 384h-256v192h256v-192zM960 128h-256v192h256v-192zM960 384h-256v192h256v-192zM960 640h-896v192h896v-192z" />
<glyph unicode="&#xe607;" glyph-name="tablemergecells" d="M0 896v-896h1024v896h-1024zM384 64v448h576v-448h-576zM640 768v-192h-256v192h256zM320 768v-192h-256v192h256zM64 512h256v-192h-256v192zM704 576v192h256v-192h-256zM64 256h256v-192h-256v192z" />
<glyph unicode="&#xe608;" glyph-name="tableinsertcolbefore" d="M320 188.8v182.4h-182.4v89.6h182.4v182.4h86.4v-182.4h185.6v-89.6h-185.6v-182.4zM0 896v-896h1024v896h-1024zM640 64h-576v704h576v-704zM960 64h-256v192h256v-192zM960 320h-256v192h256v-192zM960 576h-256v192h256v-192z" />
<glyph unicode="&#xe609;" glyph-name="tableinsertcolafter" d="M704 643.2v-182.4h182.4v-89.6h-182.4v-182.4h-86.4v182.4h-185.6v89.6h185.6v182.4zM0 896v-896h1024v896h-1024zM320 64h-256v192h256v-192zM320 320h-256v192h256v-192zM320 576h-256v192h256v-192zM960 64h-576v704h576v-704z" />
<glyph unicode="&#xe60a;" glyph-name="tableinsertrowbefore" d="M691.2 508.8h-144v-144h-70.4v144h-144v67.2h144v144h70.4v-144h144zM0 896v-896h1024v896h-1024zM320 64h-256v192h256v-192zM640 64h-256v192h256v-192zM960 64h-256v192h256v-192zM960 316.8h-896v451.2h896v-451.2z" />
<glyph unicode="&#xe60b;" glyph-name="tableinsertrowafter" d="M332.8 323.2h144v144h70.4v-144h144v-67.2h-144v-144h-70.4v144h-144zM0 896v-896h1024v896h-1024zM384 768h256v-192h-256v192zM64 768h256v-192h-256v192zM960 64h-896v451.2h896v-451.2zM960 576h-256v192h256v-192z" />
<glyph unicode="&#xe60d;" glyph-name="tablesplitcells" d="M0 896v-896h1024v896h-1024zM384 768h256v-192h-256v192zM320 64h-256v192h256v-192zM320 320h-256v192h256v-192zM320 576h-256v192h256v-192zM960 64h-576v448h576v-448zM960 576h-256v192h256v-192zM864 156.8l-60.8-60.8-131.2 131.2-131.2-131.2-60.8 60.8 131.2 131.2-131.2 131.2 60.8 60.8 131.2-131.2 131.2 131.2 60.8-60.8-131.2-131.2z" />
<glyph unicode="&#xe60e;" glyph-name="tabledelete" d="M0 896h1024v-896h-1024v896zM60.8 768v-704h899.2v704h-899.2zM809.6 211.2l-96-96-204.8 204.8-204.8-204.8-96 96 204.8 204.8-204.8 204.8 96 96 204.8-204.8 204.8 204.8 96-96-204.8-204.8z" />
<glyph unicode="&#xe62a;" glyph-name="tableleftheader" d="M0 896v-832h1024v832h-1024zM640 128h-256v192h256v-192zM640 384h-256v192h256v-192zM640 640h-256v192h256v-192zM960 128h-256v192h256v-192zM960 384h-256v192h256v-192zM960 640h-256v192h256v-192z" />
<glyph unicode="&#xe62b;" glyph-name="tabletopheader" d="M0 896v-832h1024v832h-1024zM320 128h-256v192h256v-192zM320 384h-256v192h256v-192zM640 128h-256v192h256v-192zM640 384h-256v192h256v-192zM960 128h-256v192h256v-192zM960 384h-256v192h256v-192z" />
<glyph unicode="&#xe800;" glyph-name="tabledeleterow" d="M886.4 572.8l-156.8-156.8 160-160-76.8-76.8-160 160-156.8-156.8-76.8 73.6 160 160-163.2 163.2 76.8 76.8 163.2-163.2 156.8 156.8 73.6-76.8zM0 896v-896h1024v896h-1024zM960 576h-22.4l-64-64h86.4v-192h-89.6l64-64h25.6v-192h-896v192h310.4l64 64h-374.4v192h371.2l-64 64h-307.2v192h896v-192z" />
<glyph unicode="&#xe801;" glyph-name="tabledeletecol" d="M320 499.2l64-64v-12.8l-64-64v140.8zM640 422.4l64-64v137.6l-64-64v-9.6zM1024 896v-896h-1024v896h1024zM960 768h-256v-51.2l-12.8 12.8-51.2-51.2v89.6h-256v-89.6l-51.2 51.2-12.8-12.8v51.2h-256v-704h256v118.4l35.2-35.2 28.8 28.8v-115.2h256v115.2l48-48 16 16v-83.2h256v707.2zM672 662.4l-156.8-156.8-163.2 163.2-76.8-76.8 163.2-163.2-156.8-156.8 76.8-76.8 156.8 156.8 160-160 76.8 76.8-160 160 156.8 156.8-76.8 76.8z" />
<glyph unicode="&#xe900;" glyph-name="a11y" d="M960 704v64l-448-128-448 128v-64l320-128v-256l-128-448h64l192 448 192-448h64l-128 448v256zM416 800q0 40 28 68t68 28 68-28 28-68-28-68-68-28-68 28-28 68z" />
<glyph unicode="&#xe901;" glyph-name="toc" d="M0 896h128v-128h-128v128zM192 896h832v-128h-832v128zM0 512h128v-128h-128v128zM192 512h832v-128h-832v128zM0 128h128v-128h-128v128zM192 128h832v-128h-832v128zM192 704h128v-128h-128v128zM384 704h640v-128h-640v128zM192 320h128v-128h-128v128zM384 320h640v-128h-640v128z" />
<glyph unicode="&#xe902;" glyph-name="fill" d="M521.6 915.2l-67.2-67.2-86.4 86.4-86.4-86.4 86.4-86.4-368-368 432-432 518.4 518.4-428.8 435.2zM435.2 134.4l-262.4 262.4 35.2 35.2 576 51.2-348.8-348.8zM953.6 409.6c-6.4-6.4-16-16-28.8-32-28.8-32-41.6-64-41.6-89.6v0 0 0 0 0 0 0c0-16 6.4-35.2 22.4-48 12.8-12.8 32-22.4 48-22.4s35.2 6.4 48 22.4 22.4 32 22.4 48v0 0 0 0 0 0 0c0 25.6-12.8 54.4-41.6 89.6-9.6 16-22.4 25.6-28.8 32v0z" />
<glyph unicode="&#xe903;" glyph-name="borderwidth" d="M0 265.6h1024v-128h-1024v128zM0 32h1024v-64h-1024v64zM0 566.4h1024v-192h-1024v192zM0 928h1024v-256h-1024v256z" />
<glyph unicode="&#xe904;" glyph-name="line" d="M739.2 627.2l-502.4-502.4h-185.6v185.6l502.4 502.4 185.6-185.6zM803.2 688l-185.6 185.6 67.2 67.2c22.4 22.4 54.4 22.4 76.8 0l108.8-108.8c22.4-22.4 22.4-54.4 0-76.8l-67.2-67.2zM41.6 48h940.8v-112h-940.8v112z" />
<glyph unicode="&#xe905;" glyph-name="count" d="M0 480h1024v-64h-1024v64zM304 912v-339.2h-67.2v272h-67.2v67.2zM444.8 694.4v-54.4h134.4v-67.2h-201.6v153.6l134.4 64v54.4h-134.4v67.2h201.6v-153.6zM854.4 912v-339.2h-204.8v67.2h137.6v67.2h-137.6v70.4h137.6v67.2h-137.6v67.2zM115.2 166.4c3.2 57.6 38.4 83.2 108.8 83.2 38.4 0 67.2-9.6 86.4-25.6s25.6-35.2 25.6-70.4v-112c0-25.6 0-28.8 9.6-41.6h-73.6c-3.2 9.6-3.2 9.6-6.4 19.2-22.4-19.2-41.6-25.6-70.4-25.6-54.4 0-89.6 32-89.6 76.8s28.8 70.4 99.2 80l38.4 6.4c16 3.2 22.4 6.4 22.4 16 0 12.8-12.8 22.4-38.4 22.4s-41.6-9.6-44.8-28.8h-67.2zM262.4 115.2c-6.4-3.2-12.8-6.4-25.6-6.4l-25.6-6.4c-25.6-6.4-38.4-16-38.4-28.8 0-16 12.8-25.6 35.2-25.6s41.6 9.6 54.4 32v35.2zM390.4 336h73.6v-112c22.4 16 41.6 22.4 67.2 22.4 64 0 105.6-51.2 105.6-124.8 0-76.8-44.8-134.4-108.8-134.4-32 0-48 9.6-67.2 35.2v-28.8h-70.4v342.4zM460.8 121.6c0-41.6 22.4-70.4 51.2-70.4s51.2 28.8 51.2 70.4c0 44.8-19.2 70.4-51.2 70.4-28.8 0-51.2-28.8-51.2-70.4zM851.2 153.6c-3.2 22.4-19.2 35.2-44.8 35.2-32 0-51.2-25.6-51.2-70.4 0-48 19.2-73.6 51.2-73.6 25.6 0 41.6 12.8 44.8 41.6l70.4-3.2c-9.6-60.8-54.4-96-118.4-96-73.6 0-121.6 51.2-121.6 128 0 80 48 131.2 124.8 131.2 64 0 108.8-35.2 112-96h-67.2z" />
<glyph unicode="&#xe906;" glyph-name="reload" d="M889.68 793.68c-93.608 102.216-228.154 166.32-377.68 166.32-282.77 0-512-229.23-512-512h96c0 229.75 186.25 416 416 416 123.020 0 233.542-53.418 309.696-138.306l-149.696-149.694h352v352l-134.32-134.32zM928 448c0-229.75-186.25-416-416-416-123.020 0-233.542 53.418-309.694 138.306l149.694 149.694h-352v-352l134.32 134.32c93.608-102.216 228.154-166.32 377.68-166.32 282.77 0 512 229.23 512 512h-96z" />
<glyph unicode="&#xe907;" glyph-name="translate" d="M553.6 304l-118.4 118.4c80 89.6 137.6 195.2 172.8 304h137.6v92.8h-326.4v92.8h-92.8v-92.8h-326.4v-92.8h518.4c-32-89.6-80-176-147.2-249.6-44.8 48-80 99.2-108.8 156.8h-92.8c35.2-76.8 80-147.2 137.6-211.2l-236.8-233.6 67.2-67.2 233.6 233.6 144-144c3.2 0 38.4 92.8 38.4 92.8zM816 540.8h-92.8l-208-560h92.8l51.2 140.8h220.8l51.2-140.8h92.8l-208 560zM691.2 214.4l76.8 201.6 76.8-201.6h-153.6z" />
<glyph unicode="&#xe908;" glyph-name="drag" d="M576 896h128v-128h-128v128zM576 640h128v-128h-128v128zM320 640h128v-128h-128v128zM576 384h128v-128h-128v128zM320 384h128v-128h-128v128zM320 128h128v-128h-128v128zM576 128h128v-128h-128v128zM320 896h128v-128h-128v128z" />
<glyph unicode="&#xe90b;" glyph-name="home" d="M1024 369.556l-512 397.426-512-397.428v162.038l512 397.426 512-397.428zM896 384v-384h-256v256h-256v-256h-256v384l384 288z" />
<glyph unicode="&#xe911;" glyph-name="books" d="M576.234 670.73l242.712 81.432 203.584-606.784-242.712-81.432zM0 64h256v704h-256v-704zM64 640h128v-64h-128v64zM320 64h256v704h-256v-704zM384 640h128v-64h-128v64z" />
<glyph unicode="&#xe914;" glyph-name="upload" d="M839.432 760.57c27.492-27.492 50.554-78.672 55.552-120.57h-318.984v318.984c41.898-4.998 93.076-28.060 120.568-55.552l142.864-142.862zM512 576v384h-368c-44 0-80-36-80-80v-864c0-44 36-80 80-80h672c44 0 80 36 80 80v560h-384zM576 192v-192h-192v192h-160l256 256 256-256h-160z" />
<glyph unicode="&#xe915;" glyph-name="editimage" d="M768 416v-352h-640v640h352l128 128h-512c-52.8 0-96-43.2-96-96v-704c0-52.8 43.2-96 96-96h704c52.798 0 96 43.2 96 96v512l-128-128zM864 960l-608-608v-160h160l608 608c0 96-64 160-160 160zM416 320l-48 48 480 480 48-48-480-480z" />
<glyph unicode="&#xe91c;" glyph-name="bubble" d="M928 896h-832c-52.8 0-96-43.2-96-96v-512c0-52.8 43.2-96 96-96h160v-256l307.2 256h364.8c52.8 0 96 43.2 96 96v512c0 52.8-43.2 96-96 96zM896 320h-379.142l-196.858-174.714v174.714h-192v448h768v-448z" />
<glyph unicode="&#xe91d;" glyph-name="user" d="M622.826 257.264c-22.11 3.518-22.614 64.314-22.614 64.314s64.968 64.316 79.128 150.802c38.090 0 61.618 91.946 23.522 124.296 1.59 34.054 48.96 267.324-190.862 267.324s-192.45-233.27-190.864-267.324c-38.094-32.35-14.57-124.296 23.522-124.296 14.158-86.486 79.128-150.802 79.128-150.802s-0.504-60.796-22.614-64.314c-71.22-11.332-337.172-128.634-337.172-257.264h896c0 128.63-265.952 245.932-337.174 257.264z" />
<glyph unicode="&#xe926;" glyph-name="lock" d="M592 512h-16v192c0 105.87-86.13 192-192 192h-128c-105.87 0-192-86.13-192-192v-192h-16c-26.4 0-48-21.6-48-48v-480c0-26.4 21.6-48 48-48h544c26.4 0 48 21.6 48 48v480c0 26.4-21.6 48-48 48zM192 704c0 35.29 28.71 64 64 64h128c35.29 0 64-28.71 64-64v-192h-256v192z" />
<glyph unicode="&#xe927;" glyph-name="unlock" d="M768 896c105.87 0 192-86.13 192-192v-192h-128v192c0 35.29-28.71 64-64 64h-128c-35.29 0-64-28.71-64-64v-192h16c26.4 0 48-21.6 48-48v-480c0-26.4-21.6-48-48-48h-544c-26.4 0-48 21.6-48 48v480c0 26.4 21.6 48 48 48h400v192c0 105.87 86.13 192 192 192h128z" />
<glyph unicode="&#xe928;" glyph-name="settings" d="M448 832v16c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576zM256 704v128h128v-128h-128zM832 528c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-576v-128h576v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h192v128h-192v16zM640 384v128h128v-128h-128zM448 208c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576v16zM256 64v128h128v-128h-128z" />
<glyph unicode="&#xe92a;" glyph-name="remove2" d="M192-64h640l64 704h-768zM640 832v128h-256v-128h-320v-192l64 64h768l64-64v192h-320zM576 832h-128v64h128v-64z" />
<glyph unicode="&#xe92d;" glyph-name="menu" d="M384 896h256v-256h-256zM384 576h256v-256h-256zM384 256h256v-256h-256z" />
<glyph unicode="&#xe930;" glyph-name="warning" d="M1009.956 44.24l-437.074 871.112c-16.742 29.766-38.812 44.648-60.882 44.648s-44.14-14.882-60.884-44.648l-437.074-871.112c-33.486-59.532-5-108.24 63.304-108.24h869.308c68.302 0 96.792 48.708 63.302 108.24zM512 64c-35.346 0-64 28.654-64 64 0 35.348 28.654 64 64 64 35.348 0 64-28.652 64-64 0-35.346-28.652-64-64-64zM556 256h-88l-20 256c0 35.346 28.654 64 64 64s64-28.654 64-64l-20-256z" />
<glyph unicode="&#xe931;" glyph-name="question" d="M448 256h128v-128h-128zM704 704c35.346 0 64-28.654 64-64v-192l-192-128h-128v64l192 128v64h-320v128h384zM512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156s183.038-121.844 294.156-121.844c111.118 0 215.584 43.272 294.156 121.844s121.844 183.038 121.844 294.156c0 111.118-43.272 215.584-121.844 294.156s-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512z" />
<glyph unicode="&#xe932;" glyph-name="pluscircle" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384zM768 384h-192v-192h-128v192h-192v128h192v192h128v-192h192z" />
<glyph unicode="&#xe933;" glyph-name="info" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM448 768h128v-128h-128v128zM640 128h-256v64h64v256h-64v64h192v-320h64v-64z" />
<glyph unicode="&#xe934;" glyph-name="notice" d="M1024 224l-288 736h-448l-288-288v-448l288-288h448l288 288v448l-288 288zM576 128h-128v128h128v-128zM576 384h-128v384h128v-384z" />
<glyph unicode="&#xe935;" glyph-name="drop" d="M864.626 486.838c-65.754 183.44-205.11 348.15-352.626 473.162-147.516-125.012-286.87-289.722-352.626-473.162-40.664-113.436-44.682-236.562 12.584-345.4 65.846-125.14 198.632-205.438 340.042-205.438s274.196 80.298 340.040 205.44c57.27 108.838 53.25 231.962 12.586 345.398zM738.764 201.044c-43.802-83.252-132.812-137.044-226.764-137.044-55.12 0-108.524 18.536-152.112 50.652 13.242-1.724 26.632-2.652 40.112-2.652 117.426 0 228.668 67.214 283.402 171.242 44.878 85.292 40.978 173.848 23.882 244.338 14.558-28.15 26.906-56.198 36.848-83.932 22.606-63.062 40.024-156.34-5.368-242.604z" />
<glyph unicode="&#xe939;" glyph-name="minus" d="M0 544v-192c0-17.672 14.328-32 32-32h960c17.672 0 32 14.328 32 32v192c0 17.672-14.328 32-32 32h-960c-17.672 0-32-14.328-32-32z" />
<glyph unicode="&#xe93a;" glyph-name="plus" d="M992 576h-352v352c0 17.672-14.328 32-32 32h-192c-17.672 0-32-14.328-32-32v-352h-352c-17.672 0-32-14.328-32-32v-192c0-17.672 14.328-32 32-32h352v-352c0-17.672 14.328-32 32-32h192c17.672 0 32 14.328 32 32v352h352c17.672 0 32 14.328 32 32v192c0 17.672-14.328 32-32 32z" />
<glyph unicode="&#xe93b;" glyph-name="arrowup" d="M0 320l192-192 320 320 320-320 192 192-511.998 512z" />
<glyph unicode="&#xe93c;" glyph-name="arrowright" d="M384 960l-192-192 320-320-320-320 192-192 512 512z" />
<glyph unicode="&#xe93d;" glyph-name="arrowdown" d="M1024 576l-192 192-320-320-320 320-192-192 512-511.998z" />
<glyph unicode="&#xe93f;" glyph-name="arrowup2" d="M768 320l-256 256-256-256z" />
<glyph unicode="&#xe940;" glyph-name="arrowdown2" d="M256 576l256-256 256 256z" />
<glyph unicode="&#xe941;" glyph-name="menu2" d="M256 704l256-256 256 256zM255.996 384.004l256-256 256 256z" />
<glyph unicode="&#xe961;" glyph-name="newtab" d="M704 384l128 128v-512h-768v768h512l-128-128h-256v-512h512zM960 896v-352l-130.744 130.744-354.746-354.744h-90.51v90.512l354.744 354.744-130.744 130.744z" />
<glyph unicode="&#xeaa8;" glyph-name="rotateleft" d="M607.998 831.986c-212.070 0-383.986-171.916-383.986-383.986h-191.994l246.848-246.848 246.848 246.848h-191.994c0 151.478 122.798 274.276 274.276 274.276 151.48 0 274.276-122.798 274.276-274.276 0-151.48-122.796-274.276-274.276-274.276v-109.71c212.070 0 383.986 171.916 383.986 383.986s-171.916 383.986-383.986 383.986z" />
<glyph unicode="&#xeaa9;" glyph-name="rotateright" d="M416.002 831.986c212.070 0 383.986-171.916 383.986-383.986h191.994l-246.848-246.848-246.848 246.848h191.994c0 151.478-122.798 274.276-274.276 274.276-151.48 0-274.276-122.798-274.276-274.276 0-151.48 122.796-274.276 274.276-274.276v-109.71c-212.070 0-383.986 171.916-383.986 383.986s171.916 383.986 383.986 383.986z" />
<glyph unicode="&#xeaaa;" glyph-name="flipv" d="M0 576h1024v384zM1024 0v384h-1024z" />
<glyph unicode="&#xeaac;" glyph-name="fliph" d="M576 960v-1024h384zM0-64h384v1024z" />
<glyph unicode="&#xeb35;" glyph-name="zoomin" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM448 768h-128v-128h-128v-128h128v-128h128v128h128v128h-128z" />
<glyph unicode="&#xeb36;" glyph-name="zoomout" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM192 640h384v-128h-384z" />
<glyph unicode="&#xeba7;" glyph-name="sharpen" d="M768 832h-512l-256-256 512-576 512 576-256 256zM512 181.334v2.666h-2.37l-14.222 16h16.592v16h-30.814l-14.222 16h45.036v16h-59.258l-14.222 16h73.48v16h-87.704l-14.222 16h101.926v16h-116.148l-14.222 16h130.37v16h-144.592l-14.222 16h158.814v16h-173.038l-14.222 16h187.26v16h-201.482l-14.222 16h215.704v16h-229.926l-14.222 16h244.148v16h-258.372l-14.222 16h272.594v16h-286.816l-14.222 16h301.038v16h-315.26l-14.222 16h329.482v16h-343.706l-7.344 8.262 139.072 139.072h211.978v-3.334h215.314l16-16h-231.314v-16h247.314l16-16h-263.314v-16h279.314l16-16h-295.314v-16h311.314l16-16h-327.314v-16h343.312l7.738-7.738-351.050-394.928z" />
<glyph unicode="&#xec6a;" glyph-name="options" d="M64 768h896v-192h-896zM64 512h896v-192h-896zM64 256h896v-192h-896z" />
<glyph unicode="&#xeccc;" glyph-name="sun" d="M512 128c35.346 0 64-28.654 64-64v-64c0-35.346-28.654-64-64-64s-64 28.654-64 64v64c0 35.346 28.654 64 64 64zM512 768c-35.346 0-64 28.654-64 64v64c0 35.346 28.654 64 64 64s64-28.654 64-64v-64c0-35.346-28.654-64-64-64zM960 512c35.346 0 64-28.654 64-64s-28.654-64-64-64h-64c-35.348 0-64 28.654-64 64s28.652 64 64 64h64zM192 448c0-35.346-28.654-64-64-64h-64c-35.346 0-64 28.654-64 64s28.654 64 64 64h64c35.346 0 64-28.654 64-64zM828.784 221.726l45.256-45.258c24.992-24.99 24.992-65.516 0-90.508-24.994-24.992-65.518-24.992-90.51 0l-45.256 45.256c-24.992 24.99-24.992 65.516 0 90.51 24.994 24.992 65.518 24.992 90.51 0zM195.216 674.274l-45.256 45.256c-24.994 24.994-24.994 65.516 0 90.51s65.516 24.994 90.51 0l45.256-45.256c24.994-24.994 24.994-65.516 0-90.51s-65.516-24.994-90.51 0zM828.784 674.274c-24.992-24.992-65.516-24.992-90.51 0-24.992 24.994-24.992 65.516 0 90.51l45.256 45.254c24.992 24.994 65.516 24.994 90.51 0 24.992-24.994 24.992-65.516 0-90.51l-45.256-45.254zM195.216 221.726c24.992 24.992 65.518 24.992 90.508 0 24.994-24.994 24.994-65.52 0-90.51l-45.254-45.256c-24.994-24.992-65.516-24.992-90.51 0s-24.994 65.518 0 90.508l45.256 45.258zM512 704c-141.384 0-256-114.616-256-256 0-141.382 114.616-256 256-256 141.382 0 256 114.618 256 256 0 141.384-114.616 256-256 256zM512 288c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160-71.634-160-160-160z" />
<glyph unicode="&#xeccd;" glyph-name="moon" d="M715.812 895.52c-60.25 34.784-124.618 55.904-189.572 64.48 122.936-160.082 144.768-384.762 37.574-570.42-107.2-185.67-312.688-279.112-512.788-252.68 39.898-51.958 90.376-97.146 150.628-131.934 245.908-141.974 560.37-57.72 702.344 188.198 141.988 245.924 57.732 560.372-188.186 702.356z" />
<glyph unicode="&#xecd4;" glyph-name="contrast" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM128 448c0 212.078 171.922 384 384 384v-768c-212.078 0-384 171.922-384 384z" />
<glyph unicode="&#xed6a;" glyph-name="remove22" d="M893.254 738.746l-90.508 90.508-290.746-290.744-290.746 290.744-90.508-90.506 290.746-290.748-290.746-290.746 90.508-90.508 290.746 290.746 290.746-290.746 90.508 90.51-290.744 290.744z" />
<glyph unicode="&#xedc0;" glyph-name="arrowleft" d="M672-64l192 192-320 320 320 320-192 192-512-512z" />
<glyph unicode="&#xedf9;" glyph-name="resize2" d="M0 896v-384c0-35.346 28.654-64 64-64s64 28.654 64 64v229.488l677.488-677.488h-229.488c-35.346 0-64-28.652-64-64 0-35.346 28.654-64 64-64h384c35.346 0 64 28.654 64 64v384c0 35.348-28.654 64-64 64s-64-28.652-64-64v-229.488l-677.488 677.488h229.488c35.346 0 64 28.654 64 64s-28.652 64-64 64h-384c-35.346 0-64-28.654-64-64z" />
<glyph unicode="&#xee78;" glyph-name="crop" d="M832 704l192 192-64 64-192-192h-448v192h-128v-192h-192v-128h192v-512h512v-192h128v192h192v128h-192v448zM320 640h320l-320-320v320zM384 256l320 320v-320h-320z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 B

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,25 @@
<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: "app"
};
</script>
<style type="text/scss" lang="scss">
@import "./styles/base";
html {
height: 100%;
}
body {
height: 100%;
overflow: hidden;
}
#app {
height: 100%;
}
</style>

@ -0,0 +1,44 @@
/**
* Created by lk on 17/6/4.
*/
import axios from "../../utils/axios";
// 获取列表
export function authAdminList(query) {
return axios({
url: "/admin/auth/admin/index",
method: "get",
params: query
});
}
// 获取角色列表
export function authAdminRoleList(query) {
return axios({
url: "/admin/auth/admin/roleList",
method: "get",
params: query
});
}
// 保存
export function authAdminSave(data, formName, method = "post") {
let url =
formName === "add"
? "/admin/auth/admin/save"
: "/admin/auth/admin/edit";
return axios({
url: url,
method: method,
data: data
});
}
// 删除管理员
export function authAdminDelete(data) {
return axios({
url: "/admin/auth/admin/delete",
method: "post",
data: data
});
}

@ -0,0 +1,37 @@
/**
* Created by lk on 17/6/4.
*/
import axios from "../../utils/axios";
// 权限管理
// 获取列表
export function authPermissionRuleList(query) {
return axios({
url: "/admin/auth/permission_rule/index",
method: "get",
params: query
});
}
// 保存
export function authPermissionRuleSave(data, formName, method = "post") {
let url =
formName !== "edit"
? "/admin/auth/permission_rule/save"
: "/admin/auth/permission_rule/edit";
return axios({
url: url,
method: method,
data: data
});
}
// 删除
export function authPermissionRuleDelete(data) {
return axios({
url: "/admin/auth/permission_rule/delete",
method: "post",
data: data
});
}

@ -0,0 +1,51 @@
/**
* Created by lk on 17/6/4.
*/
import axios from "../../utils/axios";
// 获取列表
export function authRoleList(query) {
return axios({
url: "/admin/auth/role/index",
method: "get",
params: query
});
}
// 编辑
export function authRoleAuthList(query) {
return axios({
url: "/admin/auth/role/authList",
method: "get",
params: query
});
}
// 添加
export function authRoleAuth(data) {
return axios({
url: "/admin/auth/role/auth",
method: "post",
data: data
});
}
// 保存
export function authRoleSave(data, formName, method = "post") {
let url =
formName === "add" ? "/admin/auth/role/save" : "/admin/auth/role/edit";
return axios({
url: url,
method: method,
data: data
});
}
// 删除
export function authRoleDelete(data) {
return axios({
url: "/admin/auth/role/delete",
method: "post",
data: data
});
}

@ -0,0 +1,37 @@
/**
* Created by lk on 17/6/4.
*/
import axios from "../../utils/axios";
// 获取信息
export function userInfo(id, token) {
return axios({
url: "/admin/auth/login/userInfo",
method: "get",
params: { id, token }
});
}
export function loginName(username, password) {
console.log(username + " " + password);
return axios({
url: "/login",
method: "post",
data: { username, password }
});
}
export function logout(uid, token) {
return axios({
url: "/admin/auth/login/out",
method: "post",
data: { uid, token }
});
}
export function password(data) {
return axios({
url: "/admin/auth/login/password",
method: "post",
data: data
});
}

@ -0,0 +1,43 @@
import axios from "../../utils/axios";
export function getBasicUnitMaintains(query) {
return axios({
url: "/udiwms/basic/unit/maintain/filter",
method: "get",
params: query
});
}
export function basicUnitMaintainSave(data, formName, method = "post") {
let url =
formName === "add" ? "/udiwms/basic/unit/maintain/save" : "/udiwms/basic/unit/maintain/update";
return axios({
url: url,
method: method,
data: data
});
}
export function combine(query) {
return axios({
url: "/udiwms/basic/unit/maintain/combine",
method: "post",
data: query
});
}
export function deleteBasicUnitMaintain(query) {
return axios({
url: "/udiwms/basic/unit/maintain/delete",
method: "post",
data: query
});
}
export function ucloudUnit(query) {
return axios({
url: "/udiwms/unitMaintain/filterErp",
method: "get",
params: query
});
}

@ -0,0 +1,33 @@
import axios from "../../utils/axios";
export function getBussinessType(query) {
return axios({
url: "/udiwms/bussinessType/filter",
method: "get",
params: query
});
}
export function deleteBussinessType(query) {
return axios({
url: "/udiwms/bussinessType/delete",
method: "post",
data: query
});
}
export function updateBussinessType(query) {
return axios({
url: "/udiwms/bussinessType/update",
method: "post",
data: query
});
}
export function insertBussinessType(query) {
return axios({
url: "/udiwms/bussinessType/insert",
method: "post",
data: query
});
}

@ -0,0 +1,44 @@
import axios from "../../utils/axios";
//--------------获取ERP数据-------------------
export function getErpProduct(query) {
return axios({
url: "/warehouse/getErpGoods",
method: "get",
params: query
});
}
export function getErpUnit(query) {
return axios({
url: "/warehouse/getErpUnit",
method: "get",
params: query
});
}
export function getInvbasdoc(query) {
return axios({
url: "/udiwms/udiinfo/erp/products",
method: "get",
params: query
});
}
//-------------end---------------------------------
export function combineProduct(query) {
return axios({
url: "/warehouse/productInfo/combine",
method: "post",
data: query
});
}
export function combineDrugProduct(query) {
return axios({
url: "/warehouse/productInfo/combineDrug",
method: "post",
data: query
});
}

@ -0,0 +1,19 @@
import axios from "../../utils/axios";
export function getUdiInfos(query) {
return axios({
url: "/udiwms/udiinfo/filterUdi",
method: "get",
params: query
});
}
export function filterByUuid(query) {
return axios({
url: "/udiwms/udiinfo/local/filterByUuid",
method: "get",
params: query
});
}

@ -0,0 +1,73 @@
import axios from "../../utils/axios";
export function getUdiInfos(query) {
return axios({
url: "/udi/udirel/filterUdi",
method: "get",
params: query
});
}
export function deletetUdiInfos(query) {
return axios({
url: "/udi/udirel/deleteById",
method: "post",
data: query
});
}
export function updatetUdiInfos(query) {
return axios({
url: "/udi/udirel/update",
method: "post",
data: query
});
}
export function combineUdi(query) {
return axios({
url: "/udi/udirel/revleance",
method: "post",
data: query
});
}
export function modifyRel(query) {
return axios({
url: "/udi/udirel/modifyRel",
method: "post",
data: query
});
}
export function addErp(query) {
return axios({
url: "/udi/udirel/addErp",
method: "post",
data: query
});
}
export function updateErpProduct(query) {
return axios({
url: "/udi/udirel/updateErp",
method: "get",
params: query
});
}
export function uploadSmp(query) {
return axios({
url: "/udiwms/smp/udirl/upload",
method: "post",
data: query
});
}

@ -0,0 +1,16 @@
import axios from "../../utils/axios";
export function getCompany() {
return axios({
url: "/warehouse/info/company",
method: "get"
});
}
export function modifyComapny(query) {
return axios({
url: "/warehouse/info/modifyCompany",
method: "post",
data: query
});
}

@ -0,0 +1,92 @@
import axios from "../../utils/axios";
//--------------获取ERP数据-------------------
export function getErpMainOrder(query) {
return axios({
url: "/warehouse/getErpMainOrder",
method: "get",
params: query
});
}
export function getCloudErp(query) {
return axios({
url: "/udiwms/erpOrder/filter",
method: "get",
params: query
});
}
export function getErpMainOrderStatus(query) {
return axios({
url: "/warehouse/getErpMainOrderStatus",
method: "get",
params: query
});
}
export function getErpDetailOrder(query) {
return axios({
url: "/warehouse/getErpDetailOrder",
method: "get",
params: query
});
}
export function importErpOrder(query) {
return axios({
url: "/warehouse/importErpOrder",
method: "post",
data: query
});
}
export function combineErpOrder(query) {
return axios({
url: "/warehouse/combineErpOrder",
method: "post",
data: query
});
}
export function deleteErpOrder(query) {
return axios({
url: "/warehouse/deleteErpOrder",
method: "post",
data: query
});
}
export function selectErpOrder(query) {
return axios({
url: "/warehouse/selectErpOrder",
method: "post",
data: query
});
}
export function importErpStock(query) {
return axios({
url: "/warehouse/stockPrint/importErpStock",
method: "post",
data: query
});
}
export function repeatCheck(query) {
return axios({
url: "/warehouse/repeatCheck",
method: "post",
data: query
});
}
export function dlErpStock(query) {
return axios({
url: "/warehouse/dlErpStock",
method: "get",
params: query
});
}

@ -0,0 +1,130 @@
import axios from "../../utils/axios";
export function orderList(query) {
return axios({
url: "/admin/warehouse/inout/order/list",
method: "get",
params: query
});
}
export function orderListByStatus(query) {
return axios({
url: "/udiwms/inout/order/status",
method: "get",
params: query
});
}
export function orderListRepeat(query) {
return axios({
url: "/udiwms/inout/order/repeat",
method: "get",
params: query
});
}
export function codeList(query) {
return axios({
url: "/admin/warehouse/inout/findByOrderId",
method: "get",
params: query
});
}
export function findAllByOrderId(query) {
return axios({
url: "/admin/warehouse/inout/findAllByOrderId",
method: "get",
params: query
});
}
export function mergeOrder(query) {
return axios({
url: "/warehouse/inout/order/mergeOrder",
method: "post",
data: query
});
}
export function updateUnit(query) {
return axios({
url: "/udiwms/inout/order/updateUnit",
method: "post",
data: query
});
}
export function filterOrder(query) {
return axios({
url: "/udiwms/inout/order/filter",
method: "get",
params: query
});
}
export function errorCodeList(query) {
return axios({
url: "/admin/warehouse/inout/findErrorByOrderId",
method: "get",
params: query
});
}
export function deleteByOrderId(query) {
return axios({
url: "/udiwms/inout/order/delete",
method: "post",
data: query
});
}
export function deleteCodes(query) {
return axios({
url: "/warehouse/inout/code/deleteCodes",
method: "post",
data: query
});
}
export function commitOrder(query) {
return axios({
url: "/warehouse/inout/commit",
method: "post",
data: query
});
}
export function updateExportStatus(query) {
return axios({
url: "/udiwms/inout/order/updateExportStatus",
method: "post",
data: query
});
}
export function uploadOrder(query) {
return axios({
url: "/warehouse/inout/order/uploadOrder",
method: "get",
params: query
});
}
export function orderDetail(query) {
return axios(
{
url: "/warehouse/inout/order/detail",
method: "get",
params: query
}
)
}

@ -0,0 +1,11 @@
import axios from "../../utils/axios";
export function getTrace(query) {
return axios({
url: "/udiwarehouse/trace/filter",
method: "get",
params: query
});
}

@ -0,0 +1,71 @@
import axios from "../../utils/axios";
export function importMips(query) {
return axios({
url: "warehouse/manuorder/import",
method: "get",
params: query
});
}
export function postMipsOrder(query) {
return axios({
url: "warehouse/product/insertmips",
method: "post",
data: query
});
}
export function reloadMips(query) {
return axios({
url: "warehouse/product/reloadMips",
method: "post",
data: query
});
}
export function filterBarcodes(query) {
return axios({
url: "warehouse/barcodes/filter",
method: "get",
params: query
});
}
export function filterStock(query) {
return axios({
url: "warehouse/barcodes/stock",
method: "get",
params: query
});
}
export function importXml(query) {
return axios({
url: "warehouse/barcodes/importXml",
method: "post",
data: query
});
}
export function mipsService(query) {
return axios({
url: "warehouse/info/mipsService",
method: "get",
data: query
});
}
export function clearStock(query) {
return axios({
url: "warehouse/barcodes/clearStock",
method: "post",
data: query
});
}

@ -0,0 +1,9 @@
import axios from "../../utils/axios";
export function getOnhands(query) {
return axios({
url: "/udiwms/inv/getOnHand",
method: "get",
params: query
});
}

@ -0,0 +1,48 @@
import axios from "../../utils/axios";
export function filterStcokCheck(query) {
return axios({
url: "/udiwarehouse/stockCheck/filter",
method: "get",
params: query
});
}
export function createStcokCheck(query) {
return axios({
url: "/udiwarehouse/stockCheck/create",
method: "get",
data: query
});
}
export function getDetail(query) {
return axios({
url: "/udiwarehouse/stockCheck/getDetail",
method: "get",
params: query
});
}
export function checkErp(query) {
return axios({
url: "/udiwarehouse/stockCheck/checkErp",
method: "get",
params: query
});
}
export function finishStockCheck(query) {
return axios({
url: "/udiwarehouse/stockCheck/finish",
method: "post",
data: query
});
}
export function deleteStockCheck(query) {
return axios({
url: "/udiwarehouse/stockCheck/delete",
method: "post",
data: query
});
}

@ -0,0 +1,42 @@
import axios from "../../utils/axios";
export function getStockPrint(query) {
return axios({
url: "/udiwarehouse/stockPrint/filter",
method: "post",
data: query
});
}
export function updateStockPrint(query) {
return axios({
url: "/udiwarehouse/stockPrint/import",
method: "get",
params: query
});
}
export function modifyStockPrint(query) {
return axios({
url: "/udiwarehouse/stockPrint/modify",
method: "post",
data: query
});
}
export function deleteStockPrint(query) {
return axios({
url: "/udiwarehouse/stockPrint/delete",
method: "post",
data: query
});
}
export function dlErpStock(query) {
return axios({
url: "/warehouse/stockPrint/dlErpStock",
method: "get",
params: query
});
}

@ -0,0 +1,34 @@
/**
* Created by lk on 17/6/4.
*/
import axios from "../../utils/axios";
// 获取列表
export function systemParamConfigList(query) {
return axios({
url: "/system/param/config/list",
method: "get",
params: query
});
}
// 保存
export function systemParamConfigSave(data, formName, method = "post") {
let url =
formName === "add" ? "/system/param/config/save" : "/system/param/config/update";
return axios({
url: url,
method: method,
data: data
});
}
//获取配置
export function selectSysParamByKey(query) {
return axios({
url: "/udiwms/sys/config/selectByKey",
method: "get",
params: query
});
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

@ -0,0 +1,370 @@
*{margin: 0;padding: 0;list-style: none;}
/*
KISSY CSS Reset
1. reset
2. reset
3. reset 使
1. 2.
<lifesinger@gmail.com>, <ragecarrier@gmail.com>
*/
/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
margin: 0;
padding: 0;
}
/** 设置默认字体 **/
body,
button, input, select, textarea /* for ie */ {
font: 12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif;
}
h1, h2, h3, h4, h5, h6 { font-size: 100%; }
address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读,让 small 正常化 */
/** 重置列表元素 **/
ul, ol { list-style: none; }
/** 重置文本格式元素 **/
a { text-decoration: none; }
a:hover { text-decoration: underline; }
/** 重置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 搭车:让链接里的 img 无边框 */
button, input, select, textarea { font-size: 100%; } /* 使得表单元素在 ie 下能继承字体大小 */
/* 注optgroup 无法扶正 */
/** 重置表格元素 **/
table { border-collapse: collapse; border-spacing: 0; }
/* 清除浮动 */
.ks-clear:after, .clear:after {
content: '\20';
display: block;
height: 0;
clear: both;
}
.ks-clear, .clear {
*zoom: 1;
}
.main {
padding: 30px 100px;
width: 960px;
margin: 0 auto;
}
.main h1{font-size:36px; color:#333; text-align:left;margin-bottom:30px; border-bottom: 1px solid #eee;}
.helps{margin-top:40px;}
.helps pre{
padding:20px;
margin:10px 0;
border:solid 1px #e7e1cd;
background-color: #fffdef;
overflow: auto;
}
.icon_lists{
width: 100% !important;
}
.icon_lists li{
float:left;
width: 100px;
height:180px;
text-align: center;
list-style: none !important;
}
.icon_lists .icon{
font-size: 42px;
line-height: 100px;
margin: 10px 0;
color:#333;
-webkit-transition: font-size 0.25s ease-out 0s;
-moz-transition: font-size 0.25s ease-out 0s;
transition: font-size 0.25s ease-out 0s;
}
.icon_lists .icon:hover{
font-size: 100px;
}
.markdown {
color: #666;
font-size: 14px;
line-height: 1.8;
}
.highlight {
line-height: 1.5;
}
.markdown img {
vertical-align: middle;
max-width: 100%;
}
.markdown h1 {
color: #404040;
font-weight: 500;
line-height: 40px;
margin-bottom: 24px;
}
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
color: #404040;
margin: 1.6em 0 0.6em 0;
font-weight: 500;
clear: both;
}
.markdown h1 {
font-size: 28px;
}
.markdown h2 {
font-size: 22px;
}
.markdown h3 {
font-size: 16px;
}
.markdown h4 {
font-size: 14px;
}
.markdown h5 {
font-size: 12px;
}
.markdown h6 {
font-size: 12px;
}
.markdown hr {
height: 1px;
border: 0;
background: #e9e9e9;
margin: 16px 0;
clear: both;
}
.markdown p,
.markdown pre {
margin: 1em 0;
}
.markdown > p,
.markdown > blockquote,
.markdown > .highlight,
.markdown > ol,
.markdown > ul {
width: 80%;
}
.markdown ul > li {
list-style: circle;
}
.markdown > ul li,
.markdown blockquote ul > li {
margin-left: 20px;
padding-left: 4px;
}
.markdown > ul li p,
.markdown > ol li p {
margin: 0.6em 0;
}
.markdown ol > li {
list-style: decimal;
}
.markdown > ol li,
.markdown blockquote ol > li {
margin-left: 20px;
padding-left: 4px;
}
.markdown code {
margin: 0 3px;
padding: 0 5px;
background: #eee;
border-radius: 3px;
}
.markdown pre {
border-radius: 6px;
background: #f7f7f7;
padding: 20px;
}
.markdown pre code {
border: none;
background: #f7f7f7;
margin: 0;
}
.markdown strong,
.markdown b {
font-weight: 600;
}
.markdown > table {
border-collapse: collapse;
border-spacing: 0px;
empty-cells: show;
border: 1px solid #e9e9e9;
width: 95%;
margin-bottom: 24px;
}
.markdown > table th {
white-space: nowrap;
color: #333;
font-weight: 600;
}
.markdown > table th,
.markdown > table td {
border: 1px solid #e9e9e9;
padding: 8px 16px;
text-align: left;
}
.markdown > table th {
background: #F7F7F7;
}
.markdown blockquote {
font-size: 90%;
color: #999;
border-left: 4px solid #e9e9e9;
padding-left: 0.8em;
margin: 1em 0;
font-style: italic;
}
.markdown blockquote p {
margin: 0;
}
.markdown .anchor {
opacity: 0;
transition: opacity 0.3s ease;
margin-left: 8px;
}
.markdown .waiting {
color: #ccc;
}
.markdown h1:hover .anchor,
.markdown h2:hover .anchor,
.markdown h3:hover .anchor,
.markdown h4:hover .anchor,
.markdown h5:hover .anchor,
.markdown h6:hover .anchor {
opacity: 1;
display: inline-block;
}
.markdown > br,
.markdown > p > br {
clear: both;
}
.hljs {
display: block;
background: white;
padding: 0.5em;
color: #333333;
overflow-x: auto;
}
.hljs-comment,
.hljs-meta {
color: #969896;
}
.hljs-string,
.hljs-variable,
.hljs-template-variable,
.hljs-strong,
.hljs-emphasis,
.hljs-quote {
color: #df5000;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-type {
color: #a71d5d;
}
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-attribute {
color: #0086b3;
}
.hljs-section,
.hljs-name {
color: #63a35c;
}
.hljs-tag {
color: #333333;
}
.hljs-title,
.hljs-attr,
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #795da3;
}
.hljs-addition {
color: #55a532;
background-color: #eaffea;
}
.hljs-deletion {
color: #bd2c00;
background-color: #ffecec;
}
.hljs-link {
text-decoration: underline;
}
pre{
background: #fff;
}

@ -0,0 +1,148 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>IconFont</title>
<link rel="stylesheet" href="demo.css">
<link rel="stylesheet" href="iconfont.css">
</head>
<body>
<div class="main markdown">
<h1>IconFont 图标</h1>
<ul class="icon_lists clear">
<li>
<i class="icon iconfont icon-tongyong"></i>
<div class="name">通用</div>
<div class="fontclass">.icon-tongyong</div>
</li>
<li>
<i class="icon iconfont icon-wxbzhanghu"></i>
<div class="name">wxb账户</div>
<div class="fontclass">.icon-wxbzhanghu</div>
</li>
<li>
<i class="icon iconfont icon-gongyongquan1"></i>
<div class="name">公用-圈</div>
<div class="fontclass">.icon-gongyongquan1</div>
</li>
<li>
<i class="icon iconfont icon-user"></i>
<div class="name">user</div>
<div class="fontclass">.icon-user</div>
</li>
<li>
<i class="icon iconfont icon-shezhi1"></i>
<div class="name">设置</div>
<div class="fontclass">.icon-shezhi1</div>
</li>
<li>
<i class="icon iconfont icon-user-guanli"></i>
<div class="name">用户管理</div>
<div class="fontclass">.icon-user-guanli</div>
</li>
<li>
<i class="icon iconfont icon-pwd"></i>
<div class="name">pwd</div>
<div class="fontclass">.icon-pwd</div>
</li>
<li>
<i class="icon iconfont icon-eye"></i>
<div class="name">eye</div>
<div class="fontclass">.icon-eye</div>
</li>
<li>
<i class="icon iconfont icon-guanggao"></i>
<div class="name">广告</div>
<div class="fontclass">.icon-guanggao</div>
</li>
<li>
<i class="icon iconfont icon-guanliyuan"></i>
<div class="name">管理员</div>
<div class="fontclass">.icon-guanliyuan</div>
</li>
<li>
<i class="icon iconfont icon-cloud-permissions"></i>
<div class="name">权限-</div>
<div class="fontclass">.icon-cloud-permissions</div>
</li>
<li>
<i class="icon iconfont icon-shouye"></i>
<div class="name">首页</div>
<div class="fontclass">.icon-shouye</div>
</li>
<li>
<i class="icon iconfont icon-shijiebei"></i>
<div class="name">世界杯</div>
<div class="fontclass">.icon-shijiebei</div>
</li>
<li>
<i class="icon iconfont icon-jiaose"></i>
<div class="name">角色</div>
<div class="fontclass">.icon-jiaose</div>
</li>
<li>
<i class="icon iconfont icon-baobiao"></i>
<div class="name">报表</div>
<div class="fontclass">.icon-baobiao</div>
</li>
<li>
<i class="icon iconfont icon-guanliyuan1"></i>
<div class="name">管理员</div>
<div class="fontclass">.icon-guanliyuan1</div>
</li>
<li>
<i class="icon iconfont icon-tiku"></i>
<div class="name">题库</div>
<div class="fontclass">.icon-tiku</div>
</li>
<li>
<i class="icon iconfont icon-xiaochengxu"></i>
<div class="name">小程序</div>
<div class="fontclass">.icon-xiaochengxu</div>
</li>
</ul>
<h2 id="font-class-">font-class引用</h2>
<hr>
<p>font-class是unicode使用方式的一种变种主要是解决unicode书写不直观语意不明确的问题。</p>
<p>与unicode使用方式相比具有如下特点</p>
<ul>
<li>兼容性良好支持ie8+,及所有现代浏览器。</li>
<li>相比于unicode语意明确书写更直观。可以很容易分辨这个icon是什么。</li>
<li>因为使用class来定义图标所以当要替换图标时只需要修改class里面的unicode引用。</li>
<li>不过因为本质上还是使用的字体,所以多色图标还是不支持的。</li>
</ul>
<p>使用步骤如下:</p>
<h3 id="-fontclass-">第一步引入项目下面生成的fontclass代码</h3>
<pre><code class="lang-js hljs javascript"><span class="hljs-comment">&lt;link rel="stylesheet" type="text/css" href="./iconfont.css"&gt;</span></code></pre>
<h3 id="-">第二步:挑选相应图标并获取类名,应用于页面:</h3>
<pre><code class="lang-css hljs">&lt;<span class="hljs-selector-tag">i</span> <span class="hljs-selector-tag">class</span>="<span class="hljs-selector-tag">iconfont</span> <span class="hljs-selector-tag">icon-xxx</span>"&gt;&lt;/<span class="hljs-selector-tag">i</span>&gt;</code></pre>
<blockquote>
<p>"iconfont"是你项目下的font-family。可以通过编辑项目查看默认是"iconfont"。</p>
</blockquote>
</div>
</body>
</html>

@ -0,0 +1,207 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>IconFont</title>
<link rel="stylesheet" href="demo.css">
<script src="iconfont.js"></script>
<style type="text/css">
.icon {
/* 通过设置 font-size 来改变图标大小 */
width: 1em; height: 1em;
/* 图标和文字相邻时,垂直对齐 */
vertical-align: -0.15em;
/* 通过设置 color 来改变 SVG 的颜色/fill */
fill: currentColor;
/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示
normalize.css 中也包含这行 */
overflow: hidden;
}
</style>
</head>
<body>
<div class="main markdown">
<h1>IconFont 图标</h1>
<ul class="icon_lists clear">
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-tongyong"></use>
</svg>
<div class="name">通用</div>
<div class="fontclass">#icon-tongyong</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-wxbzhanghu"></use>
</svg>
<div class="name">wxb账户</div>
<div class="fontclass">#icon-wxbzhanghu</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-gongyongquan1"></use>
</svg>
<div class="name">公用-圈</div>
<div class="fontclass">#icon-gongyongquan1</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-user"></use>
</svg>
<div class="name">user</div>
<div class="fontclass">#icon-user</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-shezhi1"></use>
</svg>
<div class="name">设置</div>
<div class="fontclass">#icon-shezhi1</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-user-guanli"></use>
</svg>
<div class="name">用户管理</div>
<div class="fontclass">#icon-user-guanli</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-pwd"></use>
</svg>
<div class="name">pwd</div>
<div class="fontclass">#icon-pwd</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-eye"></use>
</svg>
<div class="name">eye</div>
<div class="fontclass">#icon-eye</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-guanggao"></use>
</svg>
<div class="name">广告</div>
<div class="fontclass">#icon-guanggao</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-guanliyuan"></use>
</svg>
<div class="name">管理员</div>
<div class="fontclass">#icon-guanliyuan</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-cloud-permissions"></use>
</svg>
<div class="name">权限-</div>
<div class="fontclass">#icon-cloud-permissions</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-shouye"></use>
</svg>
<div class="name">首页</div>
<div class="fontclass">#icon-shouye</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-shijiebei"></use>
</svg>
<div class="name">世界杯</div>
<div class="fontclass">#icon-shijiebei</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-jiaose"></use>
</svg>
<div class="name">角色</div>
<div class="fontclass">#icon-jiaose</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-baobiao"></use>
</svg>
<div class="name">报表</div>
<div class="fontclass">#icon-baobiao</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-guanliyuan1"></use>
</svg>
<div class="name">管理员</div>
<div class="fontclass">#icon-guanliyuan1</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-tiku"></use>
</svg>
<div class="name">题库</div>
<div class="fontclass">#icon-tiku</div>
</li>
<li>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-xiaochengxu"></use>
</svg>
<div class="name">小程序</div>
<div class="fontclass">#icon-xiaochengxu</div>
</li>
</ul>
<h2 id="symbol-">symbol引用</h2>
<hr>
<p>这是一种全新的使用方式,应该说这才是未来的主流,也是平台目前推荐的用法。相关介绍可以参考这篇<a href="">文章</a>
这种用法其实是做了一个svg的集合与另外两种相比具有如下特点</p>
<ul>
<li>支持多色图标了,不再受单色限制。</li>
<li>通过一些技巧,支持像字体那样,通过<code>font-size</code>,<code>color</code>来调整样式。</li>
<li>兼容性较差,支持 ie9+,及现代浏览器。</li>
<li>浏览器渲染svg的性能一般还不如png。</li>
</ul>
<p>使用步骤如下:</p>
<h3 id="-symbol-">第一步引入项目下面生成的symbol代码</h3>
<pre><code class="lang-js hljs javascript"><span class="hljs-comment">&lt;script src="./iconfont.js"&gt;&lt;/script&gt;</span></code></pre>
<h3 id="-css-">第二步加入通用css代码引入一次就行</h3>
<pre><code class="lang-js hljs javascript">&lt;style type=<span class="hljs-string">"text/css"</span>&gt;
.icon {
width: <span class="hljs-number">1</span>em; height: <span class="hljs-number">1</span>em;
vertical-align: <span class="hljs-number">-0.15</span>em;
fill: currentColor;
overflow: hidden;
}
&lt;<span class="hljs-regexp">/style&gt;</span></code></pre>
<h3 id="-">第三步:挑选相应图标并获取类名,应用于页面:</h3>
<pre><code class="lang-js hljs javascript">&lt;svg <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"icon"</span> aria-hidden=<span class="hljs-string">"true"</span>&gt;<span class="xml"><span class="hljs-tag">
&lt;<span class="hljs-name">use</span> <span class="hljs-attr">xlink:href</span>=<span class="hljs-string">"#icon-xxx"</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-name">use</span>&gt;</span>
</span>&lt;<span class="hljs-regexp">/svg&gt;
</span></code></pre>
</div>
</body>
</html>

@ -0,0 +1,186 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>IconFont</title>
<link rel="stylesheet" href="demo.css">
<style type="text/css">
@font-face {font-family: "iconfont";
src: url('iconfont.eot'); /* IE9*/
src: url('iconfont.eot#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('iconfont.woff') format('woff'), /* chrome, firefox */
url('iconfont.ttf') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
url('iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */
}
.iconfont {
font-family:"iconfont" !important;
font-size:16px;
font-style:normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.2px;
-moz-osx-font-smoothing: grayscale;
}
</style>
</head>
<body>
<div class="main markdown">
<h1>IconFont 图标</h1>
<ul class="icon_lists clear">
<li>
<i class="icon iconfont">&#xe617;</i>
<div class="name">通用</div>
<div class="code">&amp;#xe617;</div>
</li>
<li>
<i class="icon iconfont">&#xe61f;</i>
<div class="name">wxb账户</div>
<div class="code">&amp;#xe61f;</div>
</li>
<li>
<i class="icon iconfont">&#xe7eb;</i>
<div class="name">公用-圈</div>
<div class="code">&amp;#xe7eb;</div>
</li>
<li>
<i class="icon iconfont">&#xe699;</i>
<div class="name">user</div>
<div class="code">&amp;#xe699;</div>
</li>
<li>
<i class="icon iconfont">&#xe6d1;</i>
<div class="name">设置</div>
<div class="code">&amp;#xe6d1;</div>
</li>
<li>
<i class="icon iconfont">&#xe6df;</i>
<div class="name">用户管理</div>
<div class="code">&amp;#xe6df;</div>
</li>
<li>
<i class="icon iconfont">&#xe819;</i>
<div class="name">pwd</div>
<div class="code">&amp;#xe819;</div>
</li>
<li>
<i class="icon iconfont">&#xe63d;</i>
<div class="name">eye</div>
<div class="code">&amp;#xe63d;</div>
</li>
<li>
<i class="icon iconfont">&#xe679;</i>
<div class="name">广告</div>
<div class="code">&amp;#xe679;</div>
</li>
<li>
<i class="icon iconfont">&#xe618;</i>
<div class="name">管理员</div>
<div class="code">&amp;#xe618;</div>
</li>
<li>
<i class="icon iconfont">&#xe668;</i>
<div class="name">权限-</div>
<div class="code">&amp;#xe668;</div>
</li>
<li>
<i class="icon iconfont">&#xe602;</i>
<div class="name">首页</div>
<div class="code">&amp;#xe602;</div>
</li>
<li>
<i class="icon iconfont">&#xe60d;</i>
<div class="name">世界杯</div>
<div class="code">&amp;#xe60d;</div>
</li>
<li>
<i class="icon iconfont">&#xe67e;</i>
<div class="name">角色</div>
<div class="code">&amp;#xe67e;</div>
</li>
<li>
<i class="icon iconfont">&#xe6fc;</i>
<div class="name">报表</div>
<div class="code">&amp;#xe6fc;</div>
</li>
<li>
<i class="icon iconfont">&#xe65d;</i>
<div class="name">管理员</div>
<div class="code">&amp;#xe65d;</div>
</li>
<li>
<i class="icon iconfont">&#xe62f;</i>
<div class="name">题库</div>
<div class="code">&amp;#xe62f;</div>
</li>
<li>
<i class="icon iconfont">&#xe61e;</i>
<div class="name">小程序</div>
<div class="code">&amp;#xe61e;</div>
</li>
</ul>
<h2 id="unicode-">unicode引用</h2>
<hr>
<p>unicode是字体在网页端最原始的应用方式特点是</p>
<ul>
<li>兼容性最好支持ie6+,及所有现代浏览器。</li>
<li>支持按字体的方式去动态调整图标大小,颜色等等。</li>
<li>但是因为是字体,所以不支持多色。只能使用平台里单色的图标,就算项目里有多色图标也会自动去色。</li>
</ul>
<blockquote>
<p>注意新版iconfont支持多色图标这些多色图标在unicode模式下将不能使用如果有需求建议使用symbol的引用方式</p>
</blockquote>
<p>unicode使用步骤如下</p>
<h3 id="-font-face">第一步拷贝项目下面生成的font-face</h3>
<pre><code class="lang-js hljs javascript">@font-face {
font-family: <span class="hljs-string">'iconfont'</span>;
src: url(<span class="hljs-string">'iconfont.eot'</span>);
src: url(<span class="hljs-string">'iconfont.eot?#iefix'</span>) format(<span class="hljs-string">'embedded-opentype'</span>),
url(<span class="hljs-string">'iconfont.woff'</span>) format(<span class="hljs-string">'woff'</span>),
url(<span class="hljs-string">'iconfont.ttf'</span>) format(<span class="hljs-string">'truetype'</span>),
url(<span class="hljs-string">'iconfont.svg#iconfont'</span>) format(<span class="hljs-string">'svg'</span>);
}
</code></pre>
<h3 id="-iconfont-">第二步定义使用iconfont的样式</h3>
<pre><code class="lang-js hljs javascript">.iconfont{
font-family:<span class="hljs-string">"iconfont"</span> !important;
font-size:<span class="hljs-number">16</span>px;font-style:normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: <span class="hljs-number">0.2</span>px;
-moz-osx-font-smoothing: grayscale;
}
</code></pre>
<h3 id="-">第三步:挑选相应图标并获取字体编码,应用于页面</h3>
<pre><code class="lang-js hljs javascript">&lt;i <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"iconfont"</span>&gt;&amp;#x33;<span class="xml"><span class="hljs-tag">&lt;/<span class="hljs-name">i</span>&gt;</span></span></code></pre>
<blockquote>
<p>"iconfont"是你项目下的font-family。可以通过编辑项目查看默认是"iconfont"。</p>
</blockquote>
</div>
</body>
</html>

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

@ -0,0 +1,87 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<!--
2013-9-30: Created.
-->
<svg>
<metadata>
Created by iconfont
</metadata>
<defs>
<font id="iconfont" horiz-adv-x="1024" >
<font-face
font-family="iconfont"
font-weight="500"
font-stretch="normal"
units-per-em="1024"
ascent="896"
descent="-128"
/>
<missing-glyph />
<glyph glyph-name="x" unicode="x" horiz-adv-x="1001"
d="M281 543q-27 -1 -53 -1h-83q-18 0 -36.5 -6t-32.5 -18.5t-23 -32t-9 -45.5v-76h912v41q0 16 -0.5 30t-0.5 18q0 13 -5 29t-17 29.5t-31.5 22.5t-49.5 9h-133v-97h-438v97zM955 310v-52q0 -23 0.5 -52t0.5 -58t-10.5 -47.5t-26 -30t-33 -16t-31.5 -4.5q-14 -1 -29.5 -0.5
t-29.5 0.5h-32l-45 128h-439l-44 -128h-29h-34q-20 0 -45 1q-25 0 -41 9.5t-25.5 23t-13.5 29.5t-4 30v167h911zM163 247q-12 0 -21 -8.5t-9 -21.5t9 -21.5t21 -8.5q13 0 22 8.5t9 21.5t-9 21.5t-22 8.5zM316 123q-8 -26 -14 -48q-5 -19 -10.5 -37t-7.5 -25t-3 -15t1 -14.5
t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-5 19 -11 39h-368zM336 498v228q0 11 2.5 23t10 21.5t20.5 15.5t34 6h188q31 0 51.5 -14.5t20.5 -52.5v-227h-327z" />
<glyph glyph-name="tongyong" unicode="&#58903;" d="M733.717333 261.92c-101.418667 0-183.616-82.218667-183.616-183.594667 0-101.418667 82.218667-183.637333 183.616-183.637333C835.093333-105.333333 917.333333-23.114667 917.333333 78.304 917.333333 179.701333 835.114667 261.92 733.717333 261.92zM733.717333-62.133333c-77.589333 0-140.416 62.869333-140.416 140.437333s62.826667 140.416 140.416 140.416c77.546667 0 140.416-62.848 140.416-140.416S811.242667-62.133333 733.717333-62.133333zM401.28 338.976 199.722667 338.976C160.170667 338.976 128 371.146667 128 410.698667L128 612.277333C128 651.829333 160.170667 684 199.722667 684l201.557333 0c39.552 0 71.722667-32.170667 71.722667-71.722667l0-201.557333C473.024 371.146667 440.832 338.976 401.28 338.976zM199.722667 641.333333C183.701333 641.333333 170.666667 628.298667 170.666667 612.277333l0-201.557333c0-16.021333 13.034667-29.056 29.056-29.056l201.557333 0c16.021333 0 29.056 13.034667 29.056 29.056L430.336 612.277333C430.336 628.298667 417.301333 641.333333 401.28 641.333333L199.722667 641.333333zM824.256 338.976l-201.536 0c-39.552 0-71.744 32.170667-71.744 71.722667L550.976 612.277333c0 39.552 32.213333 71.722667 71.744 71.722667l201.536 0C863.786667 684 896 651.829333 896 612.277333l0-201.557333C896 371.146667 863.786667 338.976 824.256 338.976zM622.698667 641.333333c-16.042667 0-29.077333-13.034667-29.077333-29.056l0-201.557333c0-16.021333 13.034667-29.056 29.077333-29.056l201.493333 0c16.085333 0 29.077333 13.034667 29.077333 29.056L853.269333 612.277333C853.290667 628.298667 840.298667 641.333333 824.213333 641.333333L622.698667 641.333333zM401.28-84 199.722667-84C160.170667-84 128-51.808 128-12.277333L128 189.28c0 39.552 32.170667 71.722667 71.722667 71.722667l201.557333 0c39.552 0 71.722667-32.192 71.722667-71.722667l0-201.536C473.024-51.808 440.832-84 401.28-84zM199.722667 218.357333C183.701333 218.357333 170.666667 205.322667 170.666667 189.322667l0-201.578667c0-16 13.034667-29.034667 29.056-29.034667l201.557333 0c16.021333 0 29.056 13.034667 29.056 29.034667l0 201.578667c0 16-13.034667 29.034667-29.056 29.034667L199.722667 218.357333z" horiz-adv-x="1024" />
<glyph glyph-name="wxbzhanghu" unicode="&#58911;" d="M917.901055 748.754425 128.015094 748.754425c-32.090882 0-58.18826-26.075889-58.18826-58.125839l0-567.459103c0-32.04688 26.097378-58.125839 58.18826-58.125839l789.885961 0c32.132838 0 58.168818 26.076912 58.168818 58.125839L976.069873 690.628586C976.068849 722.678536 950.033893 748.754425 917.901055 748.754425M932.999938 123.169483c0-8.243755-6.771217-15.056927-15.099906-15.056927L128.015094 108.112556c-8.3072 0-15.120372 6.813173-15.120372 15.056927L112.894721 690.628586c0 8.243755 6.813173 15.057951 15.120372 15.057951l789.885961 0c8.328689 0 15.099906-6.814196 15.099906-15.057951L933.000961 123.169483zM432.709631 384.945535c31.585369 24.14184 52.405557 61.827137 52.405557 104.474446 0 72.677253-59.092863 131.813095-131.729184 131.813095-72.636321 0-131.729184-59.134819-131.729184-131.813095 0-42.647309 20.797675-80.332606 52.405557-104.474446-70.406536-30.703279-119.846552-100.857059-119.846552-182.535313 0-11.861142 9.610892-21.534456 21.534456-21.534456 11.881608 0 21.534456 9.673313 21.534456 21.534456 0 84.706217 67.818595 153.515373 151.937434 155.701155 1.429559 0 2.734274-0.419556 4.163833-0.419556 1.428535 0 2.734274 0.419556 4.119831 0.419556 84.201727-2.187829 152.000879-70.994937 152.000879-155.701155 0-11.861142 9.631358-21.534456 21.534456-21.534456s21.534456 9.673313 21.534456 21.534456C552.577672 284.088476 503.116167 354.242256 432.709631 384.945535M264.726755 489.418958c0 48.957015 39.745213 88.745207 88.661296 88.745207 48.872081 0 88.660272-39.788192 88.660272-88.745207 0-47.441499-37.600363-85.967954-84.538395-88.23867-1.385557 0.083911-2.691295 0.420579-4.119831 0.420579-1.429559 0-2.735297-0.336668-4.163833-0.420579C302.285163 403.452028 264.726755 441.977459 264.726755 489.418958M846.863139 581.86444 558.886355 581.86444c-11.945053 0-21.534456-9.673313-21.534456-21.533432 0-11.861142 9.589402-21.534456 21.534456-21.534456l287.976784 0c11.904121 0 21.534456 9.673313 21.534456 21.534456C868.397594 572.191126 858.76726 581.86444 846.863139 581.86444M846.863139 449.042365 558.886355 449.042365c-11.945053 0-21.534456-9.589402-21.534456-21.533432 0-11.861142 9.589402-21.534456 21.534456-21.534456l287.976784 0c11.904121 0 21.534456 9.673313 21.534456 21.534456C868.397594 439.452963 858.76726 449.042365 846.863139 449.042365M846.863139 316.221314 601.954243 316.221314c-11.94403 0-21.533432-9.589402-21.533432-21.533432 0-11.861142 9.589402-21.534456 21.533432-21.534456l244.908896 0c11.904121 0 21.534456 9.673313 21.534456 21.534456C868.397594 306.630888 858.76726 316.221314 846.863139 316.221314" horiz-adv-x="1024" />
<glyph glyph-name="gongyongquan1" unicode="&#59371;" d="M512.01842 47.923732c-185.231725 0-335.908446 151.291728-335.908446 336.375074 0 185.045483 150.675698 335.608617 335.908446 335.608617 185.213305 0 335.890027-150.544715 335.890027-335.608617C847.908446 199.21546 697.231725 47.923732 512.01842 47.923732zM512 757.506762c-206.290343 0-373.506762-167.216419-373.506762-373.506762s167.216419-373.507786 373.506762-373.507786c206.291366 0 373.506762 167.216419 373.506762 373.507786S718.291366 757.506762 512 757.506762z" horiz-adv-x="1024" />
<glyph glyph-name="user" unicode="&#59033;" d="M576 189.376l0 52.768c70.496 39.712 128 138.784 128 237.824 0 159.072 0 288-192 288s-192-128.928-192-288c0-99.072 57.504-198.112 128-237.824l0-52.768c-217.088-17.76-384-124.416-384-253.376l896 0c0 128.96-166.912 235.648-384 253.376z" horiz-adv-x="1024" />
<glyph glyph-name="shezhi1" unicode="&#59089;" d="M512.008698 503.871111c-66.216097 0-119.872135-53.674457-119.872135-119.872135s53.657061-119.872135 119.872135-119.872135c66.179258 0 119.871111 53.674457 119.871111 119.872135S578.187957 503.871111 512.008698 503.871111zM512.008698 312.076924c-39.72577 0-71.924099 32.19833-71.924099 71.923076 0 39.72577 32.19833 71.923076 71.924099 71.923076 39.70735 0 71.90568-32.197306 71.90568-71.923076C583.913355 344.275253 551.715025 312.076924 512.008698 312.076924zM818.252521 490.189508l-5.619998 1.837858c-3.441379 9.614985-7.330966 19.033495-11.629875 28.219715l2.64013 5.208629c12.719696 15.269775 19.62292 34.302247 19.62292 54.441936 0 22.778796-8.865925 44.185338-24.974811 60.273758l-30.127158 30.128181c-16.10684 16.107863-37.512359 24.972764-60.274782 24.972764-20.120246 0-39.153742-6.938016-54.440913-19.639293l-5.190209-2.639107c-9.169847 4.316306-18.587334 8.205892-28.220738 11.648294l-1.855254 5.653767c-3.994987 43.275619-40.546461 77.292364-84.874039 77.292364l-42.614563 0c-44.344974 0-80.895425-34.035164-84.891436-77.345576l-1.818415-5.583159c-9.614985-3.426029-18.99768-7.313569-28.149107-11.595083l-5.439896 2.693342c-15.251356 12.629645-34.231639 19.514449-54.299697 19.514449-22.744004 0-44.131103-8.864902-60.238966-24.955368l-30.146601-30.146601c-16.10684-16.089443-24.991184-37.495986-24.991184-60.273758 0-20.068058 6.885827-39.065737 19.550265-54.317093l2.674922-5.423523c-4.281513-9.097192-8.133238-18.444071-11.558244-28.02324l-5.816472-1.944282c-43.23878-4.102435-77.166497-40.61707-77.166497-84.873016l0-42.632983c0-44.255946 33.927717-80.770582 77.166497-84.873016l5.816472-1.943258c3.425006-9.579169 7.312546-18.944468 11.558244-28.024264l-2.693342-5.458315c-12.647041-15.233959-19.532869-34.249035-19.532869-54.299697 0-22.7614 8.884344-44.166919 24.991184-60.257385l30.128181-30.146601c16.090467-16.10684 37.495986-24.972764 60.257385-24.972764 20.067035 0 39.065737 6.885827 54.299697 19.514449l5.439896 2.710738c9.133008-4.281513 18.48091-8.133238 28.04166-11.559267l1.961678-5.867638c4.085038-43.185568 40.581254-77.096912 84.85562-77.096912l42.614563 0c44.274366 0 80.771605 33.911344 84.874039 77.096912l1.962701 5.867638c9.577123 3.443425 18.97926 7.313569 28.077475 11.595083l5.244444-2.64013c15.287171-12.700253 34.320667-19.621896 54.423517-19.621896 22.780843 0 44.167942 8.865925 60.274782 24.972764l30.127158 30.146601c16.108886 16.090467 24.974811 37.495986 24.974811 60.257385 0 20.139689-6.921643 39.172161-19.640316 54.459333l-2.64013 5.191232c4.317329 9.168824 8.188496 18.587334 11.648294 28.238135l5.655813 1.836835c43.293015 4.01443 77.30976 40.546461 77.30976 84.873016l0 42.632983C895.598096 449.626673 861.562932 486.177124 818.252521 490.189508zM847.720669 363.004827c0-23.190165-18.782785-41.955554-41.955554-41.955554l-31.216979-10.239202c-5.976108-21.47715-14.412244-41.865503-25.133424-60.845787l14.806217-29.201066c16.393365-16.374946 16.393365-42.954301 0-59.329247l-29.665647-29.683043c-8.204869-8.205892-18.943444-12.290931-29.68202-12.290931s-21.47715 4.085038-29.665647 12.290931l-29.235858 14.806217c-18.889209-10.70276-39.189557-19.086707-60.540841-25.045419l-10.488889-31.323403c0-23.153326-18.784832-41.919738-41.955554-41.919738l-41.97295 0c-23.172769 0-41.955554 18.766412-41.955554 41.919738l-10.488889 31.323403c-21.280676 5.921873-41.508369 14.270005-60.346413 24.902156l-29.433356-14.662955c-8.187473-8.205892-18.944468-12.290931-29.68202-12.290931-10.738575 0-21.459754 4.085038-29.664623 12.290931l-29.664623 29.683043c-16.393365 16.374946-16.393365 42.954301 0 59.329247l14.645558 29.469172c-10.613732 18.801205-18.944468 39.065737-24.920576 60.327994l-31.270191 10.488889c-23.171746 0-41.955554 18.765389-41.955554 41.955554l0 41.97295c0 23.171746 18.783809 41.97295 41.955554 41.97295l31.270191 10.488889c5.957689 21.263279 14.288424 41.509393 24.920576 60.329017l-14.645558 29.413913c-16.393365 16.394389-16.393365 42.990117 0 59.383482l29.664623 29.6636c8.205892 8.188496 18.926048 12.290931 29.664623 12.290931 10.737552 0 18.801205-0.034792 27.131941-8.348132l29.913287-14.895245c19.194154 10.863419 39.850613 19.354813 61.57745 25.384134l11.326976 27.113521c0 23.172769 18.782785 41.955554 41.955554 41.955554l41.97295 0c23.170722 0 41.955554-18.782785 41.955554-41.955554l10.254551-31.215956c21.441335-5.976108 41.86755-14.394848 60.82839-25.151843l29.182646 14.82259c8.188496 8.188496 21.781072 16.429181 32.680307 16.429181s18.463514-8.240685 26.668383-16.429181l29.665647-29.6636c16.393365-16.394389 16.393365-42.990117 0-59.383482l-14.770402-29.218462c10.721179-18.961864 19.138896-39.368636 25.115004-60.809971l31.198559-10.204409c23.172769 0 41.955554-18.801205 41.955554-41.97295L847.719646 363.004827z" horiz-adv-x="1024" />
<glyph glyph-name="user-guanli" unicode="&#59103;" d="M532.137 287.085c16.871-2.781 33.617 8.343 36.645 25.645 3.090 17.18-8.404 33.617-25.645 36.645-24.286 4.325-48.139 6.736-70.942 7.107-132.614 1.545-245.64-38.129-325.357-116.547-81.385-80.026-126.188-196.573-126.188-328.199 0-17.489 14.151-31.639 31.639-31.639s31.639 14.151 31.639 31.639c0 114.509 38.129 215.050 107.278 283.088 68.346 67.234 165.058 100.295 279.936 98.379 19.406-0.309 39.922-2.41 60.994-6.117zM858.978 33.473c-17.242-3.152-28.612-19.589-25.521-36.769 4.943-27.314 7.477-55.864 7.477-84.97 0-17.489 14.151-31.639 31.639-31.639 17.489 0 31.639 14.151 31.639 31.639 0 32.875-2.843 65.257-8.466 96.216-3.152 17.304-20.393 28.242-36.769 25.522zM446.92 381.571c137.249 0 248.915 111.666 248.915 248.915s-111.665 248.916-248.915 248.916-248.915-111.666-248.915-248.915 111.666-248.916 248.915-248.916zM446.92 816.122c102.334 0 185.636-83.301 185.636-185.636s-83.301-185.636-185.636-185.636-185.636 83.301-185.636 185.636 83.301 185.636 185.636 185.636zM505.101 39.892c-14.225-14.225-14.225-37.286 0-51.511 14.225-14.221 37.282-14.221 51.507 0 14.225 14.225 14.225 37.286 0 51.511-14.224 14.221-37.282 14.221-51.507 0zM982.222 361.642c-0.301 0.877-0.583 1.703-0.97 2.557-0.066 0.143-0.097 0.298-0.166 0.44-0.29 0.618-0.846 0.981-1.17 1.572-1.418 2.6-2.75 5.252-4.947 7.451-0.348 0.348-0.815 0.452-1.174 0.781-0.587 0.533-1.321 0.807-1.943 1.29-6.099 4.782-13.282 7.253-20.64 6.929-0.073-0.004-0.146-0.039-0.216-0.043-3.932-0.201-7.767-1.085-11.42-2.746-0.208-0.088-0.429-0.062-0.633-0.154-1.263-0.599-2.078-1.673-3.221-2.41-1.85-1.197-3.87-2.023-5.492-3.645l-85.341-85.402-38.005 38.005 85.65 85.588c12.359 12.359 12.359 32.381 0 44.741-2.225 2.225-4.905 3.58-7.535 5.005-0.819 0.483-1.356 1.255-2.229 1.669-0.221 0.105-0.452 0.154-0.672 0.259-0.023 0.011-0.054 0.015-0.077 0.027-78.832 37.185-173.029 20.84-234.695-40.886-57.83-57.83-73.503-141.39-48.521-213.939l-55.083-55.041c-40.233 3.163-80.030-10.077-109.039-39.14-54.133-54.133-54.133-142.255 0-196.388 27.067-27.067 62.599-40.6 98.194-40.6 35.533 0 71.066 13.533 98.132 40.6 28.584 28.584 41.975 67.608 39.356 107.217l55.883 55.926c21.884-7.532 44.61-12.050 67.531-12.050 53.021 0 106.042 20.207 146.395 60.56 60.908 60.845 77.47 153.581 42.045 231.828zM616.057 60.54c-0.309-0.309-0.397-0.726-0.691-1.043-2.542-2.673-4.511-5.631-5.987-9.011-0.127-0.305-0.247-0.59-0.367-0.896-1.398-3.491-2.090-7.118-2.143-11.003-0.004-0.294-0.004-0.568 0.004-0.861 0.027-2.004-0.386-3.943 0.039-5.983 5.129-25.027-2.596-50.797-20.64-68.841-29.477-29.477-77.492-29.353-106.846 0-29.477 29.477-29.477 77.431 0 106.908 18.353 18.291 44.494 25.769 69.706 20.393 1.112-0.247 2.147 0.066 3.252-0.062 1.178-0.131 2.298-0.68 3.484-0.68 0.97 0 1.885 0.467 2.851 0.556 2.225 0.189 4.287 0.599 6.373 1.24 1.637 0.502 3.163 1.101 4.72 1.873 2.248 1.116 4.226 2.46 6.14 4.082 0.719 0.603 1.611 0.841 2.287 1.518l52.024 51.982c5.453-7.103 10.563-14.399 17.064-20.898 6.5-6.5 13.796-11.61 20.898-17.064l-52.168-52.21zM895.437 174.554c-56.111-56.049-147.26-56.173-203.371 0-56.049 56.049-56.049 147.322 0 203.371 31.478 31.524 75.179 45.629 117.88 40.847l-56.393-56.358c-9.702-9.702-15.017-22.556-14.955-36.275 0-13.719 5.376-26.51 14.955-36.027l55.184-55.307c9.95-9.826 22.988-14.769 36.089-14.769s26.201 4.943 36.213 14.893l55.195 55.234c4.012-41.949-9.885-84.697-40.797-115.609z" horiz-adv-x="1024" />
<glyph glyph-name="pwd" unicode="&#59417;" d="M812.8 486.4H356.266667v170.666667c0 55.466667 68.266667 119.466667 153.6 119.466666s153.6-64 153.6-119.466666v-51.2c4.266667-29.866667 29.866667-51.2 55.466666-51.2 29.866667 0 55.466667 21.333333 59.733334 51.2V657.066667C778.666667 789.333333 659.2 896 509.866667 896S241.066667 789.333333 241.066667 657.066667v-170.666667h-34.133334C151.466667 486.4 104.533333 439.466667 104.533333 384v-409.6C104.533333-81.066667 151.466667-128 206.933333-128h610.133334c55.466667 0 102.4 46.933333 102.4 102.4V384c-4.266667 55.466667-51.2 102.4-106.666667 102.4z m-251.733333-379.733333v-46.933334c0-29.866667-21.333333-51.2-51.2-51.2s-51.2 25.6-51.2 51.2v46.933334c-38.4 21.333333-68.266667 59.733333-68.266667 106.666666 0 64 51.2 119.466667 119.466667 119.466667 64 0 119.466667-51.2 119.466666-119.466667 0-46.933333-29.866667-85.333333-68.266666-106.666666z" horiz-adv-x="1024" />
<glyph glyph-name="eye" unicode="&#58941;" d="M2389.333333 438.072317l-54.805799-65.426623-223.506733 215.761159A1062.669188 1062.669188 0 0 0 1754.489714 282.808779l104.037133-233.59945-75.754055-40.810956-105.621454 237.178843a1248.621626 1248.621626 0 0 0-447.541574-100.897828V-127.941321h-69.886195v272.855423c-202.441121-5.251733-372.902412 37.877027-515.021947 105.621455L536.90906 8.545069l-75.842072 40.810956 107.587187 241.609077c-133.640479 77.309037-238.645808 175.419632-318.507364 270.273566l-195.341012-188.592974L0 438.072317l197.042691 190.235975C89.015415 773.948542 41.89651 896 41.89651 896h139.743052C539.842989 254.995129 1159.752908 281.576529 1159.752908 281.576529 1801.637958 251.738468 2137.836915 896 2137.836915 896h139.743052a1279.193169 1279.193169 0 0 0-117.650565-236.445361l229.433271-221.482322z" horiz-adv-x="2389" />
<glyph glyph-name="guanggao" unicode="&#59001;" d="M897.432 631.802c0 106.86-86.868 193.459-194.023 193.459H318.916c-107.157 0-194.05-86.598-194.05-193.46v-384.275h772.566V631.802zM848.96 295.864H173.365V631.802c0 80.024 65.312 145.121 145.552 145.121h384.492c80.24 0 145.55-65.097 145.55-145.121v-335.938zM69.71 189.758v-48.337H486.94v-199.01h48.445v199.01h417.23v48.336H69.71z m315.973 462.198L296.66 420.83h41.656l24.41 67.09h86.114l25.92-67.09h44l-94.843 231.126h-38.233z m-10.885-130.517l21.932 58.469c3.125 8.406 5.82 16.974 8.11 25.543 2.883-8.623 6.44-18.377 10.535-29.208l20.693-54.804H374.8z m311.958 110.309c-9.539 8.137-21.179 13.795-34.597 16.92-9.538 2.21-22.849 3.288-40.632 3.288h-81.37V420.83h84.982c13.795 0 26.161 1.346 36.832 3.933 10.858 2.642 20.288 6.63 28.048 11.802 7.787 5.174 14.981 12.341 21.448 21.286 6.466 8.891 11.801 20.208 15.87 33.68 4.069 13.364 6.117 28.83 6.117 46.074 0 20.209-3.045 38.53-9.026 54.32-6.063 16.113-15.386 29.477-27.672 39.823z m-8.892-134.828c-3.61-10.94-8.703-19.777-15.089-26.136-4.39-4.365-10.454-7.814-17.997-10.293-7.815-2.533-18.915-3.826-32.98-3.826h-42.546V616.121h41.791c16.813 0 28.992-1.401 36.266-4.15 9.862-3.826 18.402-11.586 25.435-23.064 7.114-11.586 10.724-28.722 10.724-50.87 0-16.113-1.885-29.962-5.604-41.117z" horiz-adv-x="1024" />
<glyph glyph-name="guanliyuan" unicode="&#58904;" d="M460.204 175.408c0 62.552-0.1 121.888-0.1 196.796 60.412 19.156 126.072 41.456 210.312 62.692 1.852 5.676 3.704 11.54 5.5 17.62 5.94 1.8 11.636 5.044 17.076 9.688 4.756 4.18 9.148 9.98 13.04 17.22 3.86 7.384 6.452 17.328 7.604 29.648 1.296 9.436 1.044 17.328-0.396 23.848-1.516 6.52-3.46 11.816-5.804 15.996a32.34 32.34 0 0 1-9.94 11.42 576.8 576.8 0 0 1-4.504 71.58c-2.984 20.644-8.14 42.292-15.272 64.916-7.204 22.768-18.584 43.412-34.224 62.324-6.556 8.252-15.74 16.5-27.38 24.712-11.744 8.252-25.072 15.632-40.02 22.156-14.988 6.376-31.16 11.564-48.164 15.384a236.544 236.544 0 0 1-51.696 5.764c-13.796 0-28.024-1.008-42.76-3.06a188.756 188.756 0 0 1-44.02-11.924c-14.736-5.908-29.072-14.048-43.264-24.352-14.084-10.34-26.748-23.74-38.256-40.204-12.516-17.112-21.94-36.528-28.28-58.288-6.324-21.76-10.588-42.076-13.04-61.024a434.212 434.212 0 0 1-3.62-67.112c-5.42-5.908-9.276-12.068-11.62-18.552-2.448-5.908-4.124-12.932-5.044-21.18-0.9-8.216 0.524-17.436 4.144-27.416 2.952-9.94 6.592-17.688 10.716-22.984 4.268-5.296 8.14-9.332 11.744-12.284 4.14-2.956 8.392-5.044 12.536-6.268a1329.172 1329.172 0 0 1 9.044-28.316 291.612 291.612 0 0 1 9.94-22.48c3.496-7.384 7.748-13.04 12.536-17.22 10.196-8.252 19.504-16.356 27.9-24.356 8.392-7.852 13.184-18.656 14.336-32.204 0.648-9.476 0.9-17.936 0.9-25.58 0-7.744-1.424-14.984-4.52-22.116-2.972-7.024-7.744-14.156-14.336-21.184-6.592-7.132-16.156-14.48-28.8-22.12-16.14-9.936-34.764-17.72-55.8-22.98a733.42 733.42 0 0 1-60.7-18.084c-19.504-6.772-36.564-15.852-51.28-27.452-14.588-11.416-23.504-28.132-26.48-49.892-5.944-38.224-7.368-69.492-4.016-93.7 3.244-24.1 7.888-38.472 13.832-43.3 3.62-2.952 12.392-5.908 26.1-8.86 13.816-2.812 30.6-5.764 50.36-8.72 19.884-2.952 41.84-5.764 66.12-8.468 24.428-2.6 48.884-4.944 73.364-7.024a2266.12 2266.12 0 0 1 71.564-4.9c22.984-1.116 43.3-1.728 60.7-1.728 17.324 0 37.864 0.608 61.636 1.728a2679.32 2679.32 0 0 1 34.32 2.004c-63.096 51.34-111.988 127.088-111.988 229.836zM497.296 172.892c0 52.96-0.084 103.204-0.084 166.628 60.164 19.076 126.396 41.844 217.264 62.488 90.876-20.644 157.104-43.416 217.268-62.488 0-63.424-0.084-113.668-0.084-166.628 0-149.216-121.712-231.296-217.18-256.892-95.472 25.592-217.184 107.68-217.184 256.892z" horiz-adv-x="1024" />
<glyph glyph-name="cloud-permissions" unicode="&#58984;" d="M512.063 807.465l-331.544-105.332c-12.185-3.959-20.838-15.212-20.838-28.486 0-0.044 0-0.088 0-0.132l1.697-414.040 0.388-4.724c0.639-2.871 14.206-72.143 82.021-138.879 52.142-51.419 180.041-118.616 234.604-147.291 8.58-4.526 14.982-7.847 18.637-9.9l6.234-3.373c2.019-1.121 4.427-1.781 6.989-1.781 2.42 0 4.702 0.588 6.712 1.63l9.003 4.572c31.89 15.652 194.132 96.689 254.414 156.102 67.899 66.788 81.466 136.039 82.043 138.921l2.095 418.751c0 0.047 0 0.102 0 0.157 0 13.274-8.653 24.528-20.627 28.426l-331.828 105.38zM808.552 262.481c-2.557-10.173-17.161-60.356-66.621-109.062-47.773-47.145-177.285-114.478-224.368-138.187-1.909-0.987-4.166-1.566-6.559-1.566-2.512 0-4.876 0.638-6.937 1.761l0.002-0.038c-47.983 25.207-175.368 92.111-221.854 137.988-49.596 48.768-64.096 98.879-66.653 109.062l-1.519 384.639c0 0.011 0 0.024 0 0.037 0 5.877 3.822 10.861 9.116 12.602l279.946 88.953c2.677 0.88 5.758 1.388 8.957 1.388s6.281-0.508 9.167-1.447l279.643-88.867c5.431-1.743 9.293-6.749 9.293-12.657 0-0.003 0-0.006 0-0.009l-1.593-384.608-0.020 0.011zM517.092 607.759c0.109 0 0.238 0.001 0.367 0.001 33.592 0 64.019-13.55 86.114-35.482 21.966-21.653 35.579-51.745 35.579-85.016 0-33.524-13.82-63.82-36.074-85.501-18.616-18.085-42.994-30.277-70.117-33.561l13.694-48.16 50.592-0.116c0.074 0.001 0.162 0.001 0.249 0.001 16.689 0 30.225-13.502 30.28-30.179-0.035-8.385-3.507-15.947-9.078-21.36-5.499-5.412-13.098-8.775-21.483-8.775-0.048 0-0.096 0-0.143 0l-50.585 0.116-0.23-84.243c-0.035-8.379-3.506-15.941-9.076-21.354-5.501-5.419-13.105-8.787-21.496-8.787-0.044 0-0.087 0-0.131 0-0.068-0.001-0.157-0.001-0.246-0.001-8.3 0-15.82 3.34-21.288 8.75-5.539 5.477-8.974 13.076-8.987 21.477l0.743 195.242c-26.819 6.777-49.464 21.727-65.747 42.004-12.176 10.831-25.812 40.956-25.812 74.266 0 33.531 13.818 63.835 36.070 85.528 22.129 21.753 52.465 35.166 85.935 35.166 0.298 0 0.596-0.001 0.893-0.003l-0.023-0.013zM590.679 488.242c0.001 0.122 0.001 0.267 0.001 0.411 0 19.505-8.020 37.138-20.942 49.779-28.278 27.745-73.515 27.834-101.887 0.211-13.094-12.644-21.225-30.355-21.225-49.965 0-0.014 0-0.028 0-0.042 0-0.067 0-0.149 0-0.231 0-19.588 8.015-37.304 20.945-50.047 12.963-12.856 30.802-20.795 50.496-20.795 0.11 0 0.22 0 0.331 0.001 38.683-0.135 72.178 32.823 72.272 70.728l0.009-0.051z" horiz-adv-x="1024" />
<glyph glyph-name="shouye" unicode="&#58882;" d="M834.8 446L574 715.9c-16.2 16.7-37.9 26-61 26-23.2 0-44.9-9.2-61-26L191.3 446c-26.9-27.9-23.5-51.9-19-62 3.2-7.2 13.9-26.7 44.7-26.7h38.2v-207.6c0-47.2 34-91.6 82.4-91.6h111V277.8c0 23.5-3.6 36.7 20.6 36.7h87.7c24.2 0 20.6-13.1 20.6-36.7V58h110.9c48.3 0 82.4 44.4 82.4 91.6V357.2H809c30.8 0 41.5 19.6 44.7 26.7 4.4 10.1 7.9 34.2-18.9 62.1zM809 400H727.8v-250.4c0-23.5-15.3-48.7-39.5-48.7h-68V277.8c0 47.2-15.2 79.5-63.5 79.5h-87.7c-48.3 0-63.5-32.3-63.5-79.5v-177h-68c-24.2 0-39.5 25.2-39.5 48.7V399.9H216.9c-0.8 0-1.4 2.9-2 3 1.5 2.6 4.1 9.1 8.4 13.5L484 686.2c7.7 8.1 18.7 13 29.4 12.9 10.7 0.1 21-4.9 28.8-12.9l260.6-269.7c4.3-4.4 6.8-11 8.3-13.5-0.6-0.1-1.3-3-2.1-3z" horiz-adv-x="1024" />
<glyph glyph-name="shijiebei" unicode="&#58893;" d="M561.850182 819.851636c-82.850909 42.728727-164.770909 37.003636-245.76-17.221818C235.101091 748.357818 210.245818 675.234909 241.570909 583.214545c5.585455 14.801455 17.501091 32.861091 35.933091 54.225455 27.601455 32.069818 104.727273 51.758545 135.307636 51.758545 13.777455 0 38.632727 3.165091 41.425455 14.801455 2.746182 11.636364 35.188364 82.664727 82.850909 98.629818 14.708364 4.933818 22.993455 10.705455 24.808727 17.221818z m21.364363 41.425455l33.69891-17.408-10.24-36.538182c-7.214545-25.879273-26.763636-39.424-54.923637-48.872727-19.223273-6.423273-48.64-49.710545-52.270545-65.163637-9.867636-41.518545-43.52-50.641455-86.714182-50.641454-27.508364 0-86.481455-19.828364-100.072727-35.607273-15.127273-17.547636-24.296727-31.371636-27.554909-40.122182l-45.614546-122.274909-42.030545 123.578182c-38.074182 111.988364-5.771636 207.127273 92.718545 273.082182C385.117091 904.843636 485.096727 911.825455 583.214545 861.230545zM735.604364 801.000727c-17.687273 8.471273-34.722909 6.330182-50.967273-6.376727-24.389818-19.083636-68.747636-82.618182-64.325818-131.397818 4.468364-48.733091 21.224727-95.325091 39.936-101.701818 18.664727-6.330182 31.045818-4.189091 44.311272 6.376727 8.843636 7.074909 34.769455 24.669091 77.591273 52.968727 16.290909 7.074909 22.202182 29.649455 17.733818 67.816727-4.421818 38.167273-25.832727 75.543273-64.232727 112.314182z m-2.048-269.498182c-26.251636-20.945455-55.249455-25.274182-88.296728-14.056727-42.589091 14.522182-65.070545 73.309091-71.261091 141.591273-5.445818 59.624727 38.260364 138.100364 81.92 172.218182 29.975273 23.458909 65.815273 27.927273 99.74691 11.729454l6.74909-3.258182 5.352728-5.12c45.707636-43.659636 72.564364-90.577455 78.382545-140.567272 6.283636-54.365091-3.584-94.952727-41.099636-113.850182-39.796364-26.251636-64.325818-43.008-71.493818-48.686546zM485.655273 531.549091c-1.536 21.969455-26.903273 25.413818-76.148364 10.286545-49.198545-15.080727-73.821091-41.192727-73.821091-78.242909 9.262545-31.604364 29.230545-57.669818 59.997091-78.242909a215.831273 215.831273 0 0 0 71.493818-78.289454c43.054545-89.227636 76.893091-139.357091 101.469091-150.341819 36.957091-16.477091 58.321455-16.477091 99.234909-16.47709 2.327273 0-96.814545 30.580364-85.364363 168.866909 3.072 37.096727 16.942545 66.606545 41.518545 88.576 41.518545 41.192727 59.997091 65.908364 55.389091 74.146909-4.654545 8.238545-19.223273 1.396364-43.845818-20.619637-30.72-32.954182-61.486545-42.542545-92.253091-28.811636-30.766545 13.730909-49.989818 50.129455-57.716364 109.149091zM562.269091 464.896c10.612364-4.747636 20.992-1.489455 42.356364 21.038545 15.36 13.730909 28.299636 23.272727 40.587636 29.044364 26.577455 12.520727 57.623273 10.286545 74.798545-20.433454 21.876364-39.098182 3.351273-63.906909-64.977454-131.584-15.36-13.730909-24.017455-32.116364-26.112-57.716364-4.096-49.012364 7.633455-81.221818 28.997818-102.865455a88.203636 88.203636 0 0 1 25.693091-18.152727l2.141091-0.930909c0.837818-0.325818 0.837818-0.325818 3.909818-1.861818 2.513455-0.744727 2.513455-0.744727 17.221818-15.778909l3.025455-5.306182 3.909818-12.381091-2.420364-24.389818-13.498182-18.897455-6.795636-4.747636c-17.966545-6.562909-17.966545-6.562909-23.226182-6.237091-57.576727 0-78.661818 2.885818-118.178909 20.526545-38.912 17.361455-76.101818 72.517818-123.531636 170.868364a169.285818 169.285818 0 0 1-56.366546 61.579636c-39.563636 26.484364-66.373818 61.44-78.801454 103.84291l-1.861818 6.423272V463.592727c0 60.090182 39.703273 102.167273 106.728727 122.740364 74.100364 22.760727 130.606545 15.36 136.098909-49.943273 5.864727-43.845818 17.501091-65.768727 30.301091-71.493818zM361.006545 226.676364c19.502545-72.285091 17.035636-124.881455-7.354181-157.789091-12.101818-16.290909-69.445818-71.447273-98.722909-73.914182-30.161455-2.56-44.776727-9.960727-43.892364-22.202182 21.969455-31.185455 110.917818-48.453818 266.984727-51.758545 234.077091-4.933818 274.292364 56.692364 263.307637 54.225454-41.518545-9.309091-86.621091-8.517818-135.307637 2.466909-48.779636 11.496727-84.107636 34.536727-106.077091 69.026909-21.922909 34.536727-68.235636 94.487273-138.938182 179.944728z m35.84 29.696c71.912727-86.900364 119.109818-148.014545 142.429091-184.645819 14.987636-23.645091 39.889455-39.842909 76.986182-48.593454 42.216727-9.541818 80.337455-10.24 114.874182-2.466909 38.493091 8.657455 67.723636-28.066909 55.528727-62.696727-3.630545-10.286545-9.681455-18.059636-17.594182-25.274182-11.822545-10.752-29.044364-20.619636-50.920727-28.997818-53.76-20.48-133.259636-31.511273-241.105454-29.230546-173.474909 3.677091-269.498182 22.295273-304.081455 71.540364l-7.400727 10.519272-0.930909 12.8c-3.630545 49.012364 33.000727 67.490909 86.388363 72.005819 6.749091 0.605091 53.154909 38.958545 65.256728 55.342545 14.149818 19.037091 15.918545 57.949091-0.232728 117.899636l-55.808 206.894546 136.610909-165.096727z" horiz-adv-x="1024" />
<glyph glyph-name="jiaose" unicode="&#59006;" d="M815.3 436.2h-47.1c1.7-1.9 3.4-3.8 5-5.7 19.6-24.8 26.2-53.5 19.1-82.7l-72-298.1c10-3.2 20.2-5 30.5-5h44.4c49.1 0 98.3 39 109.9 87l52.6 217.5c11.6 48.1-52.1 87-142.4 87z m109.1-107.9l-41.9-177.1c-8.9-38.1-36.5-79.1-75.4-79.1h-35.3c-8.1 0-10.6-1.4-18.2 1.1l-0.3-1.2v1.3c0.1 0 0.2-0.1 0.3-0.1l60.9 249.9c5.4 23.2 17.1 55.8 1.5 75.5-1.2 1.6-2.6 4.4-3.9 6l20.1-1.4c76.8-4.6 101.2-36.7 92.2-74.9zM774.2 479.7c60.1 0 108.8 48.7 108.8 108.8 0 60-48.7 108.7-108.8 108.7-60.1 0-108.7-48.7-108.7-108.7 0-60.1 48.6-108.8 108.7-108.8z m0 190c45.7 0 82.8-37 82.8-82.7s-37.1-82.7-82.8-82.7c-45.7 0-82.7 37.1-82.7 82.7 0 45.7 37 82.7 82.7 82.7zM568.2 474.1h-112c-123.7 0-211.5-53.4-196.1-119.3L330 56.6c15.4-65.9 82.5-119.3 149.7-119.3h61c67.3 0 134.7 53.4 150.6 119.3l72 298.2c16 65.9-71.4 119.3-195.1 119.3zM724 331.5L663.2 80c-13.4-55.5-44.9-108.2-127.1-108.2h-51.4c-79.8 0-113.3 52.6-126.3 108.2l-59 251.5c-16 61.8 27.7 108.2 165.4 108.2h94.5c138.8 0 185.2-48.3 164.7-108.2zM511.8 533.8c82.3 0 149.1 66.7 149.1 149.1 0 82.3-66.7 149.1-149.1 149.1-82.3 0-149.1-66.7-149.1-149.1 0-82.4 66.7-149.1 149.1-149.1z m0 262.4c62.6 0 113.4-50.8 113.4-113.4 0-62.6-50.8-113.4-113.4-113.4-62.6 0-113.4 50.8-113.4 113.4 0 62.7 50.8 113.4 113.4 113.4zM358.2 588.5c0 60-48.7 108.7-108.7 108.7-60.1 0-108.8-48.7-108.8-108.7 0-60.1 48.6-108.8 108.8-108.8 60 0 108.7 48.7 108.7 108.8z m-108.8-82.8c-45.7 0-82.7 37.1-82.7 82.7 0 45.7 37 82.7 82.7 82.7s82.7-37 82.7-82.7c0-45.6-37-82.7-82.7-82.7zM116.8 131.7c11.2-48 60.2-87 109.3-87h44.4c10.3 0 20.5 1.8 30.5 5v0.1L231.1 348c-6.8 29.2-0.1 57.7 19.6 82.5 1.6 2.1 3.3 3.8 4.9 5.7h-46.8c-80.8 0-140.6-31.2-144.1-72.3v-7.7c0.2-2.3 0.6-4.6 1.1-7l51-217.5zM190 403.1l20.1 1.4c-1.3-1.5-2.7-4.3-3.9-6-15.6-19.7-3.9-52.3 1.5-75.5l60.9-249.9c0.1 0 0.2 0.1 0.3 0.1v-1.3l-0.3 1.2c-7.7-2.4-10.1-1.1-18.2-1.1H215c-39 0-66.5 40.9-75.4 79.1L97.7 328.3c-9 38.2 15.4 70.3 92.3 74.8zM268.9 73.3c-0.1 0-0.2-0.1-0.3-0.1l0.3-1.2v1.3zM753.2 71.9l0.3 1.2c-0.1 0-0.2 0.1-0.3 0.1v-1.3zM641.5 261.5L492.8 113.1c-10.1-10.1-26.8-10.1-36.9 0l-73.8 73.7c-10.1 10.4-10.1 26.8 0 36.9 10.4 10.4 26.8 10.4 37.2 0.3l55.5-55.5 129.8 129.8c10 10 26.8 10 36.9 0 10-10 10-26.7 0-36.8z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="baobiao" unicode="&#59132;" d="M815.407407 725.333333c20.859259 0 37.925926-17.066667 37.925926-37.925926v-455.111111c0-20.859259-17.066667-37.925926-37.925926-37.925926H208.592593c-20.859259 0-37.925926 17.066667-37.925926 37.925926V687.407407c0 20.859259 17.066667 37.925926 37.925926 37.925926h606.814814m0 37.925926H208.592593c-41.718519 0-75.851852-34.133333-75.851852-75.851852v-455.111111c0-41.718519 34.133333-75.851852 75.851852-75.851852h606.814814c41.718519 0 75.851852 34.133333 75.851852 75.851852V687.407407c0 41.718519-34.133333 75.851852-75.851852 75.851852zM720.592593 4.740741c-3.792593 0-7.585185 1.896296-11.377778 3.792592L512 152.651852l-197.214815-144.118519c-7.585185-5.688889-20.859259-3.792593-26.548148 3.792593-5.688889 7.585185-3.792593 20.859259 3.792593 26.548148l208.592592 151.703704c7.585185 5.688889 15.17037 5.688889 22.755556 0l208.592592-151.703704c7.585185-5.688889 9.481481-18.962963 3.792593-26.548148-3.792593-5.688889-9.481481-7.585185-15.17037-7.585185zM240.82963 281.6l202.903703 204.8 109.985186-109.985185c7.585185-7.585185 18.962963-7.585185 26.548148 0l223.762963 221.866666c7.585185 7.585185 7.585185 18.962963 0 26.548149-7.585185 7.585185-18.962963 7.585185-26.548149 0l-208.592592-208.592593-109.985185 109.985185c-3.792593 3.792593-7.585185 5.688889-13.274074 5.688889-5.688889 0-9.481481-1.896296-13.274074-5.688889L214.281481 308.148148c-7.585185-7.585185-7.585185-18.962963 0-26.548148 3.792593-3.792593 7.585185-5.688889 13.274075-5.688889 5.688889 0 9.481481 1.896296 13.274074 5.688889z" horiz-adv-x="1024" />
<glyph glyph-name="guanliyuan1" unicode="&#58973;" d="M721.3 557.4c0 110.8-90.2 201-201 201s-201-90.2-201-201c0-72.5 38.6-136.1 96.2-171.5-10.4-3.3-20.6-7.1-30.7-11.3-42.1-17.8-79.9-43.3-112.4-75.8s-58-70.3-75.8-112.4c-18.4-43.6-27.8-89.9-27.8-137.6h46c0 169.6 138 307.6 307.6 307.6 109.9 1.2 198.9 90.9 198.9 201z m-356 0c0 85.5 69.5 155 155 155s155-69.5 155-155-69.5-155-155-155-155 69.5-155 155zM765.5 214v50.2H843v46h-77.4v58H843v46H719.5v-204.8c-40.7-13.8-69.6-52.3-69.6-97.2 0-56.6 46-102.6 102.6-102.6 56.6 0 102.6 46 102.6 102.6 0.1 52.2-39.1 95.4-89.6 101.8z m-13-158.4c-31.2 0-56.6 25.4-56.6 56.6 0 30 23.4 54.8 53.3 56.6 1.1 0.1 2.2 0.1 3.3 0.1 31.2 0 56.6-25.4 56.6-56.6s-25.3-56.7-56.6-56.7z" horiz-adv-x="1024" />
<glyph glyph-name="tiku" unicode="&#58927;" d="M806.912 529.92H312.32c-42.496 0-77.312 33.792-77.312 74.752S269.824 679.936 312.32 679.936h441.856c9.728 0 17.92 8.192 17.92 17.92s-8.192 17.92-17.92 17.92H312.32c-62.464 0-112.64-49.664-112.64-110.592v-485.376c0-65.536 50.688-119.296 112.64-119.296h13.824c9.728 0 17.92 8.192 17.92 17.92s-8.192 17.92-17.92 17.92H312.32c-42.496 0-77.312 37.376-77.312 83.456V524.8c19.968-18.432 47.616-30.208 77.312-30.208H788.992v-458.24H463.872c-9.728 0-17.92-8.192-17.92-17.92s8.192-17.92 17.92-17.92h343.04c9.728 0 17.92 8.192 17.92 17.92V512c-0.512 10.24-8.192 17.92-17.92 17.92z" horiz-adv-x="1024" />
<glyph glyph-name="xiaochengxu" unicode="&#58910;" d="M512 768c-211.7 0-384-172.3-384-384s172.3-384 384-384 384 172.3 384 384-172.3 384-384 384z m0-717.4c-183.8 0-333.4 149.6-333.4 333.4S328.2 717.4 512 717.4 845.4 567.8 845.4 384 695.8 50.6 512 50.6zM702.9 561.1c-24.9 14.2-54.6 17.1-81.6 8.1-26.4-8.8-48-28.3-59.5-53.6L418 277.1l-1.6-3c-5.6-12.9-16.5-22.9-29.8-27.4-13.5-4.5-27.9-3.1-40.5 4.1-19.8 11.3-29.4 35.4-22.7 57.2 7.1 23 28.3 26.5 75.1 29l3.5 0.2c14 0.8 24.7 12.7 23.9 26.6-0.8 14-12.7 24.6-26.6 23.9l-3.4-0.2c-45.7-2.4-102.6-5.5-120.8-64.7-13.6-44.3 5.7-93.1 46-116 15.4-8.8 32.7-13.3 50-13.3 10.7 0 21.3 1.7 31.6 5.1 26.4 8.8 48 28.3 59.5 53.6L606 490.9l1.6 3c5.6 12.9 16.5 22.9 29.8 27.4 13.5 4.5 27.9 3.1 40.5-4.1 19.8-11.3 29.4-35.4 22.7-57.2-7.1-23.2-28.5-26.6-75.7-29.1l-2.8-0.1c-14-0.7-24.7-12.6-24-26.6 0.7-14 12.6-24.8 26.6-24l2.8 0.1c46 2.4 103.2 5.3 121.5 64.7 13.5 44.4-5.8 93.2-46.1 116.1z" horiz-adv-x="1024" />
<svg t="1598496397254" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2178" width="48" height="48"><path d="M209.5 909.6v-40.9 16.2c0.8 13.8 12.2 24.7 26.2 24.7h-26.2zM632.9 718.7h40.9-16.2c-13.8 0.8-24.7 12.2-24.7 26.2v-26.2zM210.1 127.6H251h-16.2c-13.8 0.8-24.7 12.2-24.7 26.2v-26.2zM811.3 127.3v40.9V152c-0.8-13.8-12.2-24.7-26.2-24.7h26.2zM281.7 250.6c0-22.6 18.3-41 41-41h375.7c22.6 0 41 18.3 41 41 0 22.6-18.3 41-41 41H322.6c-22.6-0.1-40.9-18.4-40.9-41zM281.7 429.8c0-22.6 18.3-41 41-41h375.7c22.6 0 41 18.3 41 41 0 22.6-18.3 41-41 41H322.6c-22.6-0.1-40.9-18.4-40.9-41zM281.7 608.9c0-22.6 18.3-41 41-41h158.1c22.6 0 41 18.3 41 41 0 22.6-18.3 41-41 41H322.6c-22.6 0-40.9-18.4-40.9-41z" fill="#242424" p-id="2179"></path><path d="M852.1 637H616.3c-34.7 1.4-62.7 28.6-65.2 63v238.7c0 22.6 18.3 41 41 41 12.4 0 23.5-5.5 31-14.2l256.8-256.8c2.2-2.2 4.1-4.6 5.7-7.1 4.8-6.7 7.6-14.9 7.6-23.7-0.2-22.6-18.5-40.9-41.1-40.9zM633 839.6V718.9h120.8L633 839.6z" fill="#242424" p-id="2180"></path><path d="M829 45.7H188.5c-32.4 3.6-58 29.9-60.4 62.6v820.1c2.8 33.5 29.8 60.1 63.5 62.2h245.6c22.6 0 41-18.3 41-41 0-22.6-18.3-41-41-41H210.1v-781h600.8V675c0 22.6 18.3 41 41 41 22.6 0 41-18.3 41-41V106.3c-3.6-32.9-30.6-58.7-63.9-60.6z" fill="#242424" p-id="2181"></path></svg>
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -0,0 +1,38 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<!--
2013-9-30: Created.
-->
<svg>
<metadata>
Created by iconfont
</metadata>
<defs>
<font id="iconfont" horiz-adv-x="1024" >
<font-face
font-family="iconfont"
font-weight="500"
font-stretch="normal"
units-per-em="1024"
ascent="896"
descent="-128"
/>
<missing-glyph />
<glyph glyph-name="weibiaoti--" unicode="&#58900;" d="M209.5-13.6v40.9-16.2c0.8-13.8 12.2-24.7 26.2-24.7h-26.2zM632.9 177.3h40.9-16.2c-13.8-0.8-24.7-12.2-24.7-26.2v26.2zM210.1 768.4H251h-16.2c-13.8-0.8-24.7-12.2-24.7-26.2v26.2zM811.3 768.7v-40.9V744c-0.8 13.8-12.2 24.7-26.2 24.7h26.2zM281.7 645.4c0 22.6 18.3 41 41 41h375.7c22.6 0 41-18.3 41-41 0-22.6-18.3-41-41-41H322.6c-22.6 0.1-40.9 18.4-40.9 41zM281.7 466.2c0 22.6 18.3 41 41 41h375.7c22.6 0 41-18.3 41-41 0-22.6-18.3-41-41-41H322.6c-22.6 0.1-40.9 18.4-40.9 41zM281.7 287.1c0 22.6 18.3 41 41 41h158.1c22.6 0 41-18.3 41-41 0-22.6-18.3-41-41-41H322.6c-22.6 0-40.9 18.4-40.9 41zM852.1 259H616.3c-34.7-1.4-62.7-28.6-65.2-63v-238.7c0-22.6 18.3-41 41-41 12.4 0 23.5 5.5 31 14.2l256.8 256.8c2.2 2.2 4.1 4.6 5.7 7.1 4.8 6.7 7.6 14.9 7.6 23.7-0.2 22.6-18.5 40.9-41.1 40.9zM633 56.4V177.1h120.8L633 56.4zM829 850.3H188.5c-32.4-3.6-58-29.9-60.4-62.6v-820.1c2.8-33.5 29.8-60.1 63.5-62.2h245.6c22.6 0 41 18.3 41 41 0 22.6-18.3 41-41 41H210.1v781h600.8V221c0-22.6 18.3-41 41-41 22.6 0 41 18.3 41 41V789.7c-3.6 32.9-30.6 58.7-63.9 60.6z" horiz-adv-x="1024" />
<glyph glyph-name="zu" unicode="&#58901;" d="M77.937624 92.68767a78.645247 78.645247 0 1 1 78.645247 78.670831 78.747583 78.747583 0 0 1-78.645247-78.670831z m106.148058 0a27.477227 27.477227 0 1 0-27.502811 27.502811 27.528395 27.528395 0 0 0 27.502811-27.502811zM1008.223396 896a99.777639 99.777639 0 0 1-99.547383-99.572967 95.428357 95.428357 0 0 1 94.430581-99.572967c11.180212 0 26.709706 2.276977 26.709706 5.705234v-98.498438a243.048095 243.048095 0 1 0-486.09619 0V705.80847c0-5.654066 24.458314-8.954403 38.990032-8.954404a98.958951 98.958951 0 0 1 98.728694 99.572967A100.059063 100.059063 0 0 1 581.405357 896a98.396102 98.396102 0 0 1-98.037926-99.572967c0-13.482773 9.18466-26.35153 9.184659-38.094591v-154.27158a303.068182 303.068182 0 0 1 281.42411-300.151605v-244.327296a136.720949 136.720949 0 0 0-273.441898 0l-0.358177 222.580887a182.951255 182.951255 0 1 1-365.851343 0v-31.570668a162.177039 162.177039 0 0 1-134.316052-157.77659 159.158126 159.158126 0 0 1 158.620862-160.795503 163.737664 163.737664 0 0 1 164.019088 160.795503A160.155903 160.155903 0 0 1 185.54397 252.050468v29.98446a132.422836 132.422836 0 0 0 131.578564 135.876677 134.2393 134.2393 0 0 0 133.753204-135.876677l-0.997776-222.580887a187.633129 187.633129 0 0 1 375.266258 0v245.37624c153.50406 16.373766 255.8401 144.293816 255.8401 299.332917V741.754004c25.58401 15.734166 21.69524 34.538413 21.695241 54.775365A95.428357 95.428357 0 0 1 1008.223396 896z m-427.252967-51.16802a48.404947 48.404947 0 1 0-48.404947-48.404947A48.456115 48.456115 0 0 0 580.970429 844.83198z m-314.683323-752.169894a109.627483 109.627483 0 1 0-109.627483 109.627483 109.755403 109.755403 0 0 0 109.550731-109.601899zM959.920785 796.401449a48.404947 48.404947 0 1 0 48.379363-48.404947 48.430531 48.430531 0 0 0-48.456115 48.430531z" horiz-adv-x="1103" />
<glyph glyph-name="yaopin" unicode="&#59480;" d="M734.040816-33.959184h-449.306122c-45.97551 0-83.591837 37.616327-83.591837 83.591837V608.653061c0 45.97551 37.616327 83.591837 83.591837 83.591837h449.306122c45.97551 0 83.591837-37.616327 83.591837-83.591837v-559.020408c0-45.97551-37.616327-83.591837-83.591837-83.591837z m-449.306122 684.408164c-22.987755 0-41.795918-18.808163-41.795918-41.795919v-559.020408c0-22.987755 18.808163-41.795918 41.795918-41.795918h449.306122c22.987755 0 41.795918 18.808163 41.795919 41.795918V608.653061c0 22.987755-18.808163 41.795918-41.795919 41.795919h-449.306122zM734.040816-33.959184h-449.306122c-45.97551 0-83.591837 37.616327-83.591837 83.591837V530.285714h616.489796v-480.653061c0-45.97551-37.616327-83.591837-83.591837-83.591837z m-491.10204 522.44898v-438.857143c0-22.987755 18.808163-41.795918 41.795918-41.795918h449.306122c22.987755 0 41.795918 18.808163 41.795919 41.795918V488.489796h-532.897959zM689.632653 655.673469H334.367347c-28.734694 0-52.244898 23.510204-52.244898 52.244898v41.795919c0 28.734694 23.510204 52.244898 52.244898 52.244898h355.265306c28.734694 0 52.244898-23.510204 52.244898-52.244898v-41.795919c0-28.734694-23.510204-52.244898-52.244898-52.244898zM334.367347 760.163265c-5.746939 0-10.44898-4.702041-10.44898-10.448979v-41.795919c0-5.746939 4.702041-10.44898 10.44898-10.448979h355.265306c5.746939 0 10.44898 4.702041 10.44898 10.448979v41.795919c0 5.746939-4.702041 10.44898-10.44898 10.448979H334.367347zM613.877551 227.265306h-208.979592c-11.493878 0-20.897959 9.404082-20.897959 20.897959s9.404082 20.897959 20.897959 20.897959h208.979592c11.493878 0 20.897959-9.404082 20.897959-20.897959s-9.404082-20.897959-20.897959-20.897959zM509.387755 122.77551c-11.493878 0-20.897959 9.404082-20.897959 20.897959v208.979592c0 11.493878 9.404082 20.897959 20.897959 20.897959s20.897959-9.404082 20.897959-20.897959v-208.979592c0-11.493878-9.404082-20.897959-20.897959-20.897959z" horiz-adv-x="1024" />
<glyph glyph-name="gongsi" unicode="&#59001;" d="M956.624449-26.846357h-29.442936V303.167402c0 17.701887-8.850944 41.545246-29.984829 50.396189l-267.334627 174.851297V802.252249l-2.890104 6.141471C614.869642 838.197919 588.316811 853.190333 555.622508 847.229494L136.376786 722.413124c-23.843359-8.850944-41.545246-32.694302-41.545246-59.427765v-689.831716H64.84671c-18.243782 0-29.98483-14.992415-29.98483-29.98483 0-18.243782 12.102311-29.98483 29.98483-29.98483h891.777739c18.243782 0 29.98483 12.102311 29.98483 29.98483-0.180632 18.243782-12.282942 29.98483-29.98483 29.98483z m-89.231964 333.265126v-333.265126H629.862057V460.316811l237.530428-153.898042zM153.536779 662.985359l415.994355 124.81637v-814.648086H153.536779V662.985359zM450.856236 570.863292H272.753572c-18.243782 0-29.98483-11.741048-29.98483-29.98483 0-18.243782 12.102311-29.98483 29.98483-29.98483h178.102664c18.243782 0 29.98483 11.741048 29.984829 29.98483 0 18.424413-12.282942 29.98483-29.984829 29.98483zM450.856236 392.941259H272.753572c-18.243782 0-29.98483-12.102311-29.98483-29.984829v-0.361263c0-18.243782 12.102311-29.98483 29.98483-29.98483h178.102664c18.243782 0 29.98483 12.102311 29.984829 29.98483v0.180631 0.180632c0 18.243782-12.282942 29.98483-29.984829 29.984829zM450.856236 214.296701H272.753572c-18.243782 0-29.98483-11.741048-29.98483-29.984829v-0.361263c0-18.243782 12.102311-29.98483 29.98483-29.98483h178.102664c18.243782 0 29.98483 11.741048 29.984829 29.98483v0.180631 0.180632c0 18.243782-12.282942 29.98483-29.984829 29.984829zM688.747927 183.950609c0-18.243782 12.102311-29.98483 29.98483-29.98483h59.427765c18.243782 0 29.98483 11.741048 29.98483 29.98483v0.180631 0.180632c0 18.243782-12.102311 29.98483-29.98483 29.984829h-59.427765c-18.243782 0-29.98483-11.741048-29.98483-29.984829v-0.361263z" horiz-adv-x="1024" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

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

Loading…
Cancel
Save