first commit

This commit is contained in:
Gitea 2021-11-10 17:14:06 +08:00
parent c681d261ee
commit a1e41b828f
7 changed files with 188 additions and 295 deletions

View File

@ -2,9 +2,9 @@
# True表示开启站点调试模式False表示关闭站点调试模式
debug = False
[database]
#[database]
# engine指定数据库类型接受sqlite、mysql、oracle、postgresql
engine = sqlite
#engine = sqlite
# name表示数据库的名称
# name = db_name
# user表示数据库用户名
@ -15,6 +15,14 @@ engine = sqlite
# host = db_host
# port表示数据库端口
# port = db_port
[database]
engine = mysql
name = note
user = note
password = note843#$.
host = 127.0.0.1
port = 3306
[locale]
# 默认站点语言为 中文简体,如需使用其他语言,请配置 language 参数;

100
delete_note.sh Normal file
View File

@ -0,0 +1,100 @@
#!/bin/bash
PASSWD="Qax318130843#$."
echo ${PASSWD}
MKDIR (){
for DIR in txt
do
if [ ! -d ./${DIR} ];then
mkdir -p ${DIR}
fi
done
}
GET_NUM_TXT (){
DAT=`date +%F|awk -F- '{print $1$2}'`
mysql -uroot -p${PASSWD} -e "use note;select pre_content from app_doc_doc;"|grep -Eo "note/media/[0-9]{6}/.{1,40}.[jpne]{2,3}g" >./txt/used.txt
qshell listbucket imbed|awk '{print $1}'|grep "note" >./txt/qn.txt
find ./media/2* -type f |sed 's#\.\/media\/#note\/media\/#g' >./txt/local.txt
rm -rf ./txt/del_qn.txt
for i in `cat ./txt/qn.txt`
do
grep ${i} ./txt/used.txt >>/dev/null 2>&1
if [ $? -ne 0 ];then
echo ${i} >>./txt/del_qn.txt
fi
done
rm -rf ./txt/del_local.txt
for j in `cat ./txt/local.txt`
do
grep ${j} ./txt/used.txt >>/dev/null 2>&1
if [ $? -ne 0 ];then
echo ${j} >>./txt/del_local.txt
fi
done
JDUGE=`mysql -uroot -p${PASSWD} -e "use note;select count(*) from app_doc_doc where pre_content like '%${DAT}//%';"|awk 'NR==2 {print $1}'`
if [ ${JDUGE} -ne 0 ];then
echo "有\"//\"存在"
else
echo "所有连接正常"
fi
QN=`cat ./txt/qn.txt|wc -l`
USED=`cat ./txt/used.txt|wc -l`
if [ -f ./txt/del_qn.txt ];then
DEL=`cat ./txt/del_qn.txt|wc -l`
else
DEL="0"
fi
LOCAL=`cat ./txt/local.txt|wc -l`
echo "本地总数 ${LOCAL}"
echo "七牛总数 ${QN}"
echo "文章使用 ${USED}"
}
UPLOAD (){
#rm -rf /root/.qshell
#qshell account UZrc4mwvcTQrJUo_XfRONEQtAucbS_BasqWZ1spa rxmxXEZTThYT_UliBp6htJe_NdvIcG63lDDn5n9W 王志珏
qshell qupload upload.conf
}
DEL_QN (){
qshell batchdelete imbed -i ./txt/del_qn.txt
}
DEL_LOCAL (){
for i in `cat ./txt/del_local.txt|sed 's#note\/##g'`
do
rm -rf ${i}
done
}
CHANGE (){
#更换本地图片链接头为七牛云图片连接头
mysql -uroot -p123456 -e "use note;update app_doc_image set file_path=REPLACE(file_path,'/media/','http://cdn.imbed.liuyan.wang/note/media/') where file_path like '/media/%';"
#设置图片来源为七牛云
mysql -uroot -p123456 -e "use note;update app_doc_image set remark='七牛云' where file_path like 'http://cdn.imbed.liuyan.wang/note/media/%'"
mysql -uroot -p123456 -e "use note;update app_doc_doc set content=REPLACE(content,'src=\"/media/','src=\"http://cdn.imbed.liuyan.wang/note/media/') where content like '%src=\"/media/%';"
#更换文章内图片链接
mysql -uroot -p123456 -e "use note;update app_doc_doc set pre_content=REPLACE(pre_content,'(/media/','(http://cdn.imbed.liuyan.wang/note/media/') where pre_content like '%(/media/%';"
mysql -uroot -p123456 -e "use note;update app_doc_doc set pre_content=replace(pre_content,'${DAT}//','${DAT}/') where pre_content like '%${DAT}//%';"
mysql -uroot -p123456 -e "use note;update app_doc_doc set content=replace(content,'${DAT}//','${DAT}/') where content like '%${DAT}//%';"
mysql -uroot -p123456 -e "use note;update app_doc_image set file_path=replace(file_path,'${DAT}//','${DAT}/') where file_path like '%${DAT}//%';"
}
MKDIR
GET_NUM_TXT
cat <<EOF
1 数据库图片链接替换成七牛云
2 上传本地到七牛云
3 删除七牛云多余图片
4 删除本地多余图片
EOF
read -p "选择操作 1|2|3 :" CHO
case ${CHO} in
1)
CHANGE;;
2)
UPLOAD;;
3)
DEL_QN;;
4)
DEL_LOCAL;;
esac

4
import_pic.sh Normal file
View File

@ -0,0 +1,4 @@
#!bin/nash
qshell qupload upload.conf
mysql -uroot -pQax318130843#$. -e "use note;update app_doc_doc set pre_content=REPLACE(pre_content,'(/media/','(http://cdn.imbed.liuyan.wang/note/media/') where pre_content like '%(/media/%';"
mysql -uroot -pQaz318130843#$. -e "use note;update app_doc_doc set content=REPLACE(content,'src=\"/media/','src=\"http://cdn.imbed.liuyan.wang/note/media/') where content like '%src=\"/media/%';"

View File

@ -1,84 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="279"
height="64"
viewBox="0 0 73.818748 16.933334"
version="1.1"
id="svg8"
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
sodipodi:docname="mrdoc-logo - 副本.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="-161.42857"
inkscape:cy="50.714286"
inkscape:document-units="mm"
inkscape:current-layer="text1017"
inkscape:document-rotation="0"
showgrid="true"
units="px"
inkscape:window-width="1920"
inkscape:window-height="1017"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:pagecheckerboard="0"
inkscape:snap-text-baseline="false">
<inkscape:grid
type="xygrid"
id="grid10" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="图层 1"
inkscape:groupmode="layer"
id="layer1">
<g
aria-label="觅道文档"
transform="scale(1.0085087,0.9915631)"
id="text29"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.2124px;line-height:1.25;font-family:xiaowei;-inkscape-font-specification:'xiaowei, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.480309;fill:#4d4d4d" />
<g
aria-label="觅思文档"
id="text1017"
style="font-size:19.4028px;line-height:1.25;font-family:xiaowei;-inkscape-font-specification:'xiaowei, Normal';fill:#4d4d4d;stroke-width:0.264583">
<path
d="M 0.91442951,0.79334046 Q 1.1418061,0.90702874 1.3312865,1.020717 1.5586631,1.1344053 1.9755201,1.2859897 2.3923771,1.3996779 2.8850263,1.4754701 3.3776756,1.5512623 4.0598052,1.5891584 4.779831,1.6270545 6.1819864,1.5133662 6.5230513,1.4754701 7.4325575,1.3996779 8.3799598,1.3238858 8.7210247,1.2859897 10.274764,1.1723014 11.297959,1.0965092 q 1.402155,-0.11368828 1.515844,-0.11368828 0.07579,0 0.07579,0.64423358 V 2.233392 l -0.265273,0.037896 q -0.07579,0 -1.629532,0.1515844 Q 9.6305309,2.4986646 8.7968168,2.5744568 6.409363,2.7639373 6.1819864,2.8018334 4.362974,2.9534178 4.1734935,2.9155217 3.9461169,2.8776256 3.7187404,2.8397295 3.567156,2.8018334 3.1881951,2.6881451 2.9229224,2.6123529 2.5439615,2.4228725 2.2786889,2.2712881 1.937624,2.0439115 1.6344553,1.816535 1.3312865,1.5512623 1.0281178,1.2859897 0.87653342,1.0965092 0.68705295,0.86913265 0.72494904,0.75544437 L 0.76284514,0.64175609 Z M 4.6282466,3.446067 q 0,0 0.2273766,0.1515843 0.2273765,0.1515844 0.4547531,0.378961 0.2273766,0.2652726 0.3410648,0.4926492 0.1136883,0.2273765 0.1136883,0.6442336 0,0.416857 -0.075792,0.4926492 Q 5.6514411,5.6819365 4.8177271,5.1134951 3.9461169,4.5450537 3.9461169,4.5450537 3.9082209,4.5071576 4.2492857,3.9766123 4.5903505,3.446067 4.6282466,3.446067 Z M 7.3946614,3.9766123 Q 7.7357262,3.4839631 7.7736223,3.4839631 7.8115184,3.446067 8.038895,3.6355474 q 0.2273765,0.1515844 0.4547531,0.378961 0.2273766,0.2273765 0.3031687,0.4547531 0.1136883,0.2273765 0.1515844,0.4547531 0.037896,0.2273766 0,0.416857 Q 8.9105051,5.5303521 8.8347129,5.6061443 8.7968168,5.6819365 7.9252067,5.1134951 7.0535966,4.5450537 7.0535966,4.5071576 q 0,-0.037896 0.3410648,-0.5305453 z M 11.942193,3.6355474 q 0.0379,0.037896 0.113688,0.1136883 0.07579,0.037896 0.18948,0.1136883 0.113689,0.075792 0.227377,0.1515844 0.341065,0.2652726 0.378961,0.3031687 0,0 -0.113688,0.1894805 -0.151585,0.1894804 -0.378961,0.416857 -0.303169,0.2652726 -0.530546,0.3789609 -0.227376,0.1136883 -0.492649,0.1515844 -0.227376,0 -0.454753,-0.037896 -0.189481,-0.075792 -0.227377,-0.1136883 -0.07579,-0.037896 0.530546,-0.9095062 L 11.828504,3.5597552 Z M 3.8324287,5.8714169 h 0.6442335 v 0.1136883 0.1515844 h 3.638025 3.6380248 V 6.0230013 5.8714169 h 0.644234 0.682129 l -0.0379,2.8043109 q 0,2.7664152 -0.113688,3.0316872 -0.07579,0.227377 -0.227377,0.416857 -0.151584,0.227377 -0.341064,0.341065 -0.227377,0.151584 -0.378961,0.189481 -0.151585,0.0379 -0.189481,0.0379 -0.0379,-0.0379 -0.0379,-2.9179995 V 6.8946114 H 8.1146872 4.4766622 v 2.1600773 q 0,2.1979733 -0.075792,2.4632463 -0.075792,0.227376 -0.1894805,0.454753 -0.075792,0.18948 -0.3031687,0.378961 -0.1894805,0.18948 -0.3410649,0.265272 -0.075792,0.0379 -0.2273765,0.07579 H 3.2260912 V 9.2820653 5.8714169 Z M 8.038895,7.6146372 q 0.9095062,0 0.9095062,0.037896 0.037896,0.037896 -0.037896,0.6063375 -0.1515843,0.6063375 -0.2652726,0.9474023 -0.1136883,0.4547531 -0.3410649,0.9852989 -0.1894804,0.530545 -0.4547531,1.06109 -0.3031687,0.644234 -0.5305453,1.023195 -0.3410648,0.530545 -0.6821297,0.985298 -0.3410648,0.492649 -0.833714,0.947402 -0.4547531,0.454753 -0.833714,0.757922 -0.3410649,0.265273 -0.7200258,0.530546 -0.3789609,0.227376 -0.9095062,0.492649 -0.5684414,0.265272 -0.9852985,0.416857 -0.3789609,0.113688 -0.7958179,0.227376 -0.3410648,0.113689 -0.416857,0.07579 -0.075792,-0.0379 -0.37896096,-0.0379 -0.30316875,-0.0379 -0.34106484,-0.07579 0,0 0.0378961,-0.0379 0.0378961,-0.0379 0.11368828,-0.07579 0.11368828,-0.0379 0.22737656,-0.07579 Q 1.1418061,16.254946 1.6344553,16.02757 2.0134162,15.838089 2.5060654,15.534921 2.9229224,15.269648 3.3397795,14.928583 3.7566365,14.625414 4.2113896,14.208557 4.6661427,13.753804 4.9693115,13.412739 5.2724802,13.033778 5.5377529,12.616921 5.8788177,12.086376 6.0304021,11.783207 6.2577786,11.404246 6.409363,10.987389 6.5609474,10.570532 6.7125317,10.115779 6.8641161,9.585234 6.9399083,9.2441692 7.0157005,8.8273122 7.0535966,8.3725591 7.0914927,7.8799098 7.1293888,7.7662216 V 7.6146372 Z m 1.2505711,2.3116617 h 0.6442335 v 2.3116621 q 0,0.947402 0,1.667428 0.037896,0.720025 0.037896,0.795818 0.037896,0.18948 0.1515843,0.303168 0.113688,0.07579 0.265273,0.189481 0.151584,0.07579 2.463246,0.07579 2.311661,0 2.349558,0.07579 0,0.07579 -0.0379,0.189481 -0.0379,0.151584 -0.151584,0.303168 -0.113688,0.113689 -0.341065,0.189481 -0.227376,0.07579 -1.212675,0.07579 -1.023194,0.0379 -2.463246,0 Q 9.5926348,16.02757 9.3652582,15.951778 9.1378817,15.875985 8.9484012,15.686505 8.7968168,15.497025 8.7210247,15.34544 8.6831286,15.15596 8.6831286,12.541129 L 8.6452325,9.9262989 Z"
id="path7590" />
<path
d="m 22.212034,1.1723014 h 0.757922 v 0.1894805 0.1515843 h 4.16857 4.16857 V 1.3617819 1.2101975 l 0.720026,-0.037896 h 0.757922 l -0.0379,3.6001288 v 3.6001289 l -0.113689,0.2273765 q -0.07579,0.2652727 -0.227376,0.4547531 -0.113689,0.1515844 -0.341065,0.3031688 -0.227377,0.1515843 -0.492649,0.1515843 H 31.307096 V 9.3578575 9.2062731 h -4.433843 q -4.433843,0 -4.547531,0.1136883 -0.113688,0.075792 -0.303169,0.1515844 -0.151584,0.037896 -0.341065,0.037896 h -0.18948 V 5.3408716 1.1723014 Z m 2.387454,1.0989867 h -1.629532 v 1.3263632 1.3642594 h 1.667428 1.629532 V 3.9008201 q 0,-1.0610906 0,-1.3642594 l -0.0379,-0.2652726 z m 4.888596,0 h -1.781117 v 1.3263632 1.3642594 h 1.781117 1.819012 V 3.5976513 2.2712881 Z m -4.8507,3.4485444 h -1.667428 l -0.0379,1.2884672 q 0,1.2884672 -0.0379,1.3642594 l -0.0379,0.1136882 h 1.705325 1.705324 V 7.0840919 5.7198325 Z m 4.8507,0 h -1.781117 v 0.9474024 q 0,0.9095062 -0.07579,1.2126749 -0.07579,0.2652727 -0.18948,0.4547532 l -0.113689,0.1515843 h 1.970597 2.008493 V 7.0840919 5.7198325 Z m -8.678206,4.4717395 h 0.795818 v 2.160077 q 0,2.160077 -0.07579,2.42535 -0.07579,0.227376 -0.227376,0.568441 -0.151585,0.303169 -0.303169,0.492649 -0.189481,0.189481 -0.378961,0.303169 -0.151585,0.113688 -0.416857,0.113688 h -0.227377 v -3.031687 -3.031687 z m 3.069584,0.0379 h 0.833714 v 1.781116 q 0,1.781116 -0.0379,2.084285 -0.0379,0.378961 -0.07579,0.416857 v 0.151584 h 2.690622 2.728519 v -1.477947 -1.477948 h 0.795818 0.833714 v 1.326363 q -0.0379,1.36426 -0.151584,1.667429 -0.07579,0.265272 -0.151585,0.454753 -0.07579,0.151584 -0.151584,0.265272 0,0.0379 -0.113688,0.113689 -0.07579,0.113688 -0.151585,0.18948 -0.18948,0.189481 -0.265273,0.265273 -0.151584,0.0379 -0.416857,0.0379 H 30.018629 V 15.686505 15.34544 h -2.880103 q -2.880103,0 -2.880103,0.0379 0,0.0379 -0.265273,0.303169 -0.227376,0.265273 -0.341065,0.303169 -0.113688,0.0379 -0.341065,0.0379 h -0.227376 l -0.0379,-2.880103 q 0,-2.842207 0,-2.880103 0.0379,-0.07579 0.833714,-0.0379 z m 3.448544,-0.0379 h 0.833714 l -0.0379,1.136882 q 0,1.136883 -0.113688,1.440052 -0.113688,0.303169 -0.227377,0.530545 -0.113688,0.227377 -0.227376,0.378961 -0.151584,0.189481 -0.341065,0.303169 -0.151584,0.113688 -0.416857,0.113688 l -0.265273,-0.0379 -0.0379,-1.856909 q 0,-1.894804 0,-1.9327 0.0379,-0.07579 0.833714,-0.07579 z m 6.252856,0 h 0.833714 v 2.197973 q -0.0379,2.160077 -0.151585,2.463246 -0.07579,0.303169 -0.227376,0.606337 -0.151585,0.265273 -0.341065,0.454754 -0.151584,0.18948 -0.303169,0.265272 -0.151584,0.07579 -0.378961,0.07579 h -0.227376 v -3.031687 -3.031687 z"
id="path7592" />
<path
d="m 46.655014,1.3238858 q 0.378961,0 0.378961,0.037896 0.0379,0.075792 0.113688,0.4547531 0.07579,0.4547531 0.18948,0.7958179 0.113689,0.3410649 0.265273,0.6442336 0.113688,0.2652727 0.07579,0.3031687 0,0 -0.378961,-0.1136882 Q 46.958182,3.2944826 46.69291,3.1428982 46.389741,2.9913139 46.162365,2.8018334 45.972884,2.6123529 45.783404,2.3849764 45.631819,2.1197037 45.556027,1.8923272 q -0.0379,-0.2273766 -0.0379,-0.378961 l -0.0379,-0.1515843 0.416857,-0.037896 q 0.341065,0 0.757922,0 z m -0.07579,2.4253499 h 7.389738 v 0.3789609 0.3410649 h -1.591636 -1.629532 v 1.6674281 q 0,1.7053242 -0.07579,2.1221812 -0.07579,0.3789609 -0.227377,0.8716101 -0.113688,0.416857 -0.341065,0.8337141 -0.227376,0.416857 -0.454753,0.757922 -0.265273,0.341065 -0.606337,0.720026 -0.341065,0.378961 -0.606338,0.644233 l -0.265273,0.227377 0.07579,0.07579 q 0.113688,0.113688 0.530545,0.378961 0.378961,0.303169 0.87161,0.568441 0.341065,0.227377 0.947402,0.568442 0.49265,0.265272 1.174779,0.568441 0.606338,0.303169 1.250571,0.530545 l 0.568442,0.265273 v 0.303169 q 0,0.341065 -0.0379,0.341065 0,0 -0.644234,-0.189481 -0.606337,-0.151584 -1.288467,-0.378961 -0.644234,-0.227376 -1.440052,-0.530545 -0.757921,-0.303169 -1.440051,-0.644234 -0.757922,-0.341065 -1.250571,-0.644233 -0.492649,-0.303169 -0.568442,-0.303169 -0.0379,0 -0.454753,0.265273 -0.492649,0.303168 -1.06109,0.606337 -0.568442,0.265273 -1.212675,0.530545 -0.606338,0.265273 -1.288467,0.49265 -0.757922,0.303168 -1.55374,0.492649 -0.720026,0.227376 -1.250571,0.341065 -0.416857,0.113688 -0.49265,0.113688 0,0 0,-0.189481 v -0.227376 l 0.68213,-0.265273 q 0.68213,-0.265272 1.174779,-0.492649 0.378961,-0.151584 1.023195,-0.454753 0.530545,-0.265273 0.985298,-0.530545 0.492649,-0.265273 0.909506,-0.530546 0.530545,-0.341065 0.795818,-0.530545 0.303169,-0.227377 0.492649,-0.378961 l 0.113689,-0.07579 -0.606338,-0.644234 Q 44.532833,11.138974 44.229664,10.722117 43.964391,10.30526 43.737015,9.8884028 43.509638,9.4336497 43.433846,9.1304809 43.282261,8.75152 43.244365,8.4483512 43.168573,8.1451825 43.130677,6.32617 V 4.4692615 H 41.16008 39.189483 V 4.1281966 3.7492357 Z m 0.341064,0.7200258 h -2.160077 l 0.0379,1.5916359 q 0,1.629532 0.113688,2.0084929 0.151585,0.416857 0.227377,0.6442336 0.113688,0.2652726 0.341065,0.6442336 0.227376,0.416857 0.568441,0.8716105 0.341065,0.454753 0.606338,0.757921 0.303168,0.303169 0.341065,0.303169 0.0379,0 0.378961,-0.416857 0.341064,-0.378961 0.682129,-0.87161 0.303169,-0.4547531 0.530545,-0.9095062 0.227377,-0.4926492 0.303169,-0.7579218 0.07579,-0.2652727 0.151585,-0.5305453 0.07579,-0.3031688 0.07579,-1.8190125 V 4.4692615 Z"
id="path7594" />
<path
d="m 61.699761,1.2859897 h 0.833714 v 1.4779476 1.4779476 h 0.720026 l 0.720025,0.037896 0.0379,0.3410649 v 0.3410648 h -0.720025 -0.757922 v 0.4926492 l 0.0379,0.4926492 h 0.720026 l 0.720025,0.037896 V 6.32617 6.6672349 h -0.720025 -0.720026 l -0.0379,3.5622331 q 0,3.562232 -0.07579,3.789609 -0.113689,0.265273 -0.189481,0.454753 -0.0379,0.151584 -0.227376,0.378961 -0.151585,0.227377 -0.378961,0.378961 -0.227377,0.18948 -0.49265,0.265273 l -0.303168,0.113688 V 10.30526 l -0.0379,-5.3054532 -1.023195,-0.037896 H 58.743865 V 4.6208459 4.279781 l 1.061091,-0.037896 h 1.061091 V 2.7639373 1.2859897 Z m 7.086569,0.075792 h 0.87161 v 2.2358694 2.2737656 l -0.07579,0.3410649 q -0.151584,0.3410648 -0.265273,0.5305453 -0.113688,0.1894804 -0.113688,0.2273765 0,0 2.008493,0 h 2.008493 v 3.6759214 3.638025 l -0.113688,0.37896 q -0.113689,0.454754 -0.265273,0.644234 -0.113688,0.265273 -0.303169,0.454753 -0.151584,0.189481 -0.341065,0.265273 -0.18948,0.113688 -0.37896,0.07579 h -0.227377 v -0.303169 l -0.0379,-0.341065 h -3.751713 -3.751713 v -0.341064 -0.378961 h 3.751713 3.789609 v -1.743221 -1.74322 h -3.410648 -3.410649 l 0.0379,-0.378961 v -0.341065 h 3.372753 l 3.410648,-0.0379 V 9.0925848 7.6904294 H 67.91472 64.238799 V 7.3114685 6.9704036 h 1.819012 l 1.819013,-0.037896 V 4.1281966 l 0.0379,-2.7664147 z m 3.29696,0.8716101 q 0.189481,-0.1136883 0.227377,-0.075792 0.07579,0 0.454753,0.9852984 0.378961,0.9852984 0.416857,1.0231945 0,0.075792 -0.265273,0.1136883 -0.303168,0.037896 -0.644233,0.2273766 -0.303169,0.1515843 -0.68213,0.4547531 -0.341065,0.2652726 -0.644234,0.6063375 -0.303168,0.3410648 -0.568441,0.7200257 -0.227377,0.3410649 -0.341065,0.3031688 -0.07579,-0.075792 -0.07579,-0.075792 0,-0.037896 0.18948,-0.7200258 Q 70.302174,5.2271833 70.491654,4.696638 70.681135,4.1660927 70.794823,3.9766123 70.946407,3.6734435 71.135888,3.2944826 71.363264,2.9155217 71.628537,2.650249 71.89381,2.3849764 72.08329,2.233392 Z m -8.412932,0.4926492 q 0,0 0.0379,0 0.07579,0 0.227376,0.037896 0.151585,0 0.265273,0 0.492649,0.075792 0.833714,0.1515844 0.378961,0.075792 0.833714,0.3031687 0.454753,0.2273766 0.833714,0.6063375 0.416857,0.3789609 0.492649,0.6063375 l 0.113689,0.1894805 -0.454754,0.7200257 Q 66.398876,6.0608974 66.247292,6.2503778 L 66.1715,6.4019622 66.019915,6.0230013 Q 65.906227,5.6819365 65.754643,5.3787677 65.603058,5.075599 65.337786,4.696638 65.072513,4.3176771 64.693552,3.9387162 64.314591,3.5218592 63.973526,3.2565865 63.632461,2.9913139 63.632461,2.8776256 q 0,-0.1515844 0.0379,-0.1515844 z M 59.729164,5.075599 h 0.757922 v 3.4106483 q 0,3.4485447 -0.07579,3.7517137 -0.07579,0.341064 -0.227377,0.606337 -0.113688,0.265273 -0.341065,0.492649 -0.227376,0.227377 -0.416857,0.303169 -0.18948,0.113688 -0.341065,0.151584 H 58.971242 V 9.4336497 5.075599 Z"
id="path7596" />
<svg width="73.818748" height="16.933334" xmlns="http://www.w3.org/2000/svg">
<metadata id="metadata5">image/svg+xml</metadata>
<g>
<title>background</title>
<rect fill="none" id="canvas_background" height="402" width="582" y="-1" x="-1"/>
</g>
<g>
<title>Layer 1</title>
<text stroke="#000" transform="matrix(9.332223892211914,0,0,1,-610.3354001045227,0) " xml:space="preserve" text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="14" id="svg_1" y="13.617765" x="65.480789" stroke-width="0" fill="#000000"/>
<text font-weight="bold" stroke="#000" transform="matrix(1.199933648109436,0,0,1,-0.6997677683830261,0) " xml:space="preserve" text-anchor="start" font-family="Oswald, sans-serif" font-size="14" id="svg_2" y="14.277105" x="3.136492" stroke-opacity="null" stroke-width="0" fill="#000000">颜颜笔记</text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 864 B

View File

@ -1,101 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg width="200" height="50" xmlns="http://www.w3.org/2000/svg">
<style type="text/css">.st0{fill:#5179BC;}
.st1{fill:#D5402F;}
.st2{fill:#EBB621;}
.st3{fill:#45A256;}
.st4{fill:url(#SVGID_1_);}
.st5{fill:url(#SVGID_2_);}</style>
<svg
width="480"
height="120"
viewBox="0 0 127 31.750001"
version="1.1"
id="svg73"
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
sodipodi:docname="mrdoc_search.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview75"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:document-units="mm"
showgrid="true"
units="px"
inkscape:zoom="1.9804942"
inkscape:cx="256.50163"
inkscape:cy="170.15955"
inkscape:window-width="1920"
inkscape:window-height="986"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
type="xygrid"
id="grid77" />
</sodipodi:namedview>
<defs
id="defs70" />
<g
inkscape:label="图层 1"
inkscape:groupmode="layer"
id="layer1">
<g
aria-label="觅 思 搜 索"
id="text389"
style="font-size:16.9333px;line-height:1.25;font-family:xiaowei;-inkscape-font-specification:'xiaowei, Normal';fill:#333333;stroke-width:0.264583">
<path
d="m 16.28098,10.450273 q 0.198437,0.09922 0.363801,0.198437 0.198437,0.09922 0.562238,0.23151 0.363802,0.09922 0.793749,0.165364 0.429947,0.06615 1.025258,0.09922 0.628384,0.03307 1.85208,-0.06615 0.297656,-0.03307 1.091404,-0.09922 0.826821,-0.06615 1.124477,-0.09922 1.355987,-0.09922 2.248954,-0.165364 1.223695,-0.09922 1.322914,-0.09922 0.06615,0 0.06615,0.562239 v 0.529165 l -0.23151,0.03307 q -0.06615,0 -1.422133,0.132292 -1.190623,0.06615 -1.918225,0.132291 -2.08359,0.165364 -2.282027,0.198437 -1.587497,0.132291 -1.752861,0.09922 -0.198437,-0.03307 -0.396874,-0.06615 -0.132292,-0.03307 -0.46302,-0.132291 -0.23151,-0.06615 -0.562239,-0.23151 -0.23151,-0.132292 -0.529165,-0.330729 Q 16.909364,11.34324 16.644781,11.11173 16.380198,10.88022 16.247907,10.714856 16.082543,10.516419 16.115615,10.4172 l 0.03307,-0.09922 z m 3.241139,2.3151 q 0,0 0.198437,0.132291 0.198437,0.132291 0.396874,0.330728 0.198438,0.23151 0.297656,0.429948 0.09922,0.198437 0.09922,0.562238 0,0.363801 -0.06615,0.429947 -0.03307,0.06615 -0.760676,-0.429947 -0.760675,-0.496093 -0.760675,-0.496093 -0.03307,-0.03307 0.264583,-0.496093 0.297655,-0.463019 0.330728,-0.463019 z m 2.414318,0.463019 q 0.297656,-0.429947 0.330729,-0.429947 0.03307,-0.03307 0.23151,0.132292 0.198437,0.132291 0.396874,0.330728 0.198437,0.198437 0.264583,0.396875 0.09922,0.198437 0.132291,0.396874 0.03307,0.198437 0,0.363801 -0.03307,0.165364 -0.09922,0.23151 -0.03307,0.06615 -0.793749,-0.429947 -0.760675,-0.496093 -0.760675,-0.529166 0,-0.03307 0.297655,-0.46302 z m 3.968742,-0.297655 q 0.03307,0.03307 0.09922,0.09922 0.06615,0.03307 0.165364,0.09922 0.09922,0.06615 0.198437,0.132291 0.297656,0.23151 0.330729,0.264583 0,0 -0.09922,0.165364 -0.132291,0.165365 -0.330728,0.363802 -0.264583,0.23151 -0.46302,0.330728 -0.198437,0.09922 -0.429947,0.132292 -0.198437,0 -0.396874,-0.03307 -0.165365,-0.06615 -0.198438,-0.09922 -0.06615,-0.03307 0.46302,-0.793748 l 0.562239,-0.727603 z m -7.07759,1.951298 h 0.562239 v 0.09922 0.132291 h 3.174993 3.174994 v -0.09922 -0.132291 h 0.562239 0.595311 l -0.03307,2.447391 q 0,2.414318 -0.09922,2.645828 -0.06615,0.198437 -0.198438,0.363802 -0.132291,0.198437 -0.297655,0.297655 -0.198437,0.132292 -0.330729,0.165364 -0.132291,0.03307 -0.165364,0.03307 -0.03307,-0.03307 -0.03307,-2.546609 v -2.513537 h -3.174994 -3.174993 v 1.885153 q 0,1.918225 -0.06615,2.149735 -0.06615,0.198437 -0.165364,0.396874 -0.06615,0.165364 -0.264583,0.330729 -0.165364,0.165364 -0.297656,0.23151 -0.06614,0.03307 -0.198437,0.06614 h -0.09922 v -2.976556 -2.976557 z m 3.671087,1.521351 q 0.793748,0 0.793748,0.03307 0.03307,0.03307 -0.03307,0.529166 -0.132291,0.529165 -0.23151,0.826821 -0.09922,0.396874 -0.297655,0.859894 -0.165365,0.46302 -0.396875,0.92604 -0.264582,0.562238 -0.463019,0.892967 -0.297656,0.46302 -0.595312,0.859894 -0.297655,0.429947 -0.727603,0.826821 -0.396874,0.396875 -0.727602,0.661457 -0.297656,0.23151 -0.628384,0.46302 -0.330729,0.198437 -0.793749,0.429947 -0.496093,0.23151 -0.859894,0.363802 -0.330729,0.09922 -0.69453,0.198437 -0.297656,0.09922 -0.363801,0.06615 -0.06615,-0.03307 -0.330729,-0.03307 -0.264583,-0.03307 -0.297655,-0.06615 0,0 0.03307,-0.03307 0.03307,-0.03307 0.09922,-0.06614 0.09922,-0.03307 0.198437,-0.06615 0.297656,-0.132292 0.727603,-0.330729 0.330728,-0.165364 0.760675,-0.429947 0.363802,-0.23151 0.727603,-0.529165 0.363801,-0.264583 0.760676,-0.628385 0.396874,-0.396874 0.661457,-0.694529 0.264583,-0.330729 0.496093,-0.69453 0.297655,-0.46302 0.429947,-0.727603 0.198437,-0.330729 0.330728,-0.69453 0.132292,-0.363801 0.264583,-0.760676 0.132291,-0.463019 0.198437,-0.760675 0.06615,-0.363802 0.09922,-0.760676 0.03307,-0.429947 0.06615,-0.529165 v -0.132292 z m 1.091404,2.017444 h 0.562238 v 2.017444 q 0,0.826821 0,1.455206 0.03307,0.628384 0.03307,0.694529 0.03307,0.165365 0.132292,0.264583 0.09922,0.06615 0.23151,0.165365 0.132291,0.06615 2.149735,0.06615 2.017444,0 2.050517,0.06615 0,0.06615 -0.03307,0.165364 -0.03307,0.132292 -0.132292,0.264583 -0.09922,0.09922 -0.297655,0.165364 -0.198437,0.06615 -1.058332,0.06615 -0.892966,0.03307 -2.149735,0 -1.223695,-0.06615 -1.422132,-0.132291 -0.198438,-0.06615 -0.363802,-0.23151 -0.132291,-0.165365 -0.198437,-0.297656 -0.03307,-0.165364 -0.03307,-2.447391 l -0.03307,-2.282027 z"
id="path3677" />
<path
d="m 39.795777,10.781001 h 0.661457 v 0.165365 0.132291 h 3.638013 3.638014 v -0.132291 -0.132292 l 0.628384,-0.03307 h 0.661457 l -0.03307,3.141921 v 3.141921 l -0.09922,0.198437 q -0.06615,0.23151 -0.198437,0.396875 -0.09922,0.132291 -0.297656,0.264582 -0.198437,0.132292 -0.429947,0.132292 h -0.23151 v -0.132292 -0.132291 h -3.869523 q -3.869524,0 -3.968743,0.09922 -0.09922,0.06614 -0.264583,0.132291 -0.132291,0.03307 -0.297655,0.03307 h -0.165364 v -3.638014 -3.638014 z m 2.083589,0.959113 h -1.422132 v 1.15755 1.190623 h 1.455205 1.422133 v -0.92604 q 0,-0.92604 0,-1.190623 l -0.03307,-0.23151 z m 4.266398,0 H 44.59134 v 1.15755 1.190623 h 1.554424 1.587497 v -1.190623 -1.15755 z m -4.233325,3.00963 h -1.455205 l -0.03307,1.124477 q 0,1.124477 -0.03307,1.190622 l -0.03307,0.09922 h 1.488279 1.488278 v -1.223696 -1.190622 z m 4.233325,0 H 44.59134 v 0.826821 q 0,0.793748 -0.06615,1.058331 -0.06615,0.23151 -0.165365,0.396874 l -0.09922,0.132292 h 1.719788 1.752861 v -1.223696 -1.190622 z m -7.573683,3.902596 h 0.69453 v 1.885153 q 0,1.885152 -0.06615,2.116662 -0.06614,0.198437 -0.198437,0.496093 -0.132291,0.264583 -0.264582,0.429947 -0.165365,0.165364 -0.330729,0.264583 -0.132291,0.09922 -0.363801,0.09922 H 37.844479 V 21.298168 18.65234 Z m 2.678901,0.03307 h 0.727603 v 1.554424 q 0,1.554424 -0.03307,1.819007 -0.03307,0.330728 -0.06615,0.363801 v 0.132292 h 2.348173 2.381245 v -1.289842 -1.289841 h 0.69453 0.727603 v 1.15755 q -0.03307,1.190623 -0.132292,1.455205 -0.06615,0.23151 -0.132291,0.396875 -0.06615,0.132291 -0.132291,0.23151 0,0.03307 -0.09922,0.09922 -0.06615,0.09922 -0.132291,0.165364 -0.165365,0.165365 -0.23151,0.23151 -0.132292,0.03307 -0.363802,0.03307 h -0.198437 v -0.297655 -0.297656 h -2.513537 q -2.513536,0 -2.513536,0.03307 0,0.03307 -0.23151,0.264583 -0.198437,0.23151 -0.297656,0.264582 -0.09922,0.03307 -0.297656,0.03307 h -0.198437 l -0.03307,-2.513536 q 0,-2.480464 0,-2.513537 0.03307,-0.06615 0.727603,-0.03307 z m 3.00963,-0.03307 h 0.727602 l -0.03307,0.992186 q 0,0.992185 -0.09922,1.256768 -0.09922,0.264583 -0.198437,0.46302 -0.09922,0.198437 -0.198437,0.330728 -0.132292,0.165365 -0.297656,0.264583 -0.132291,0.09922 -0.363801,0.09922 l -0.23151,-0.03307 -0.03307,-1.62057 q 0,-1.653642 0,-1.686715 0.03307,-0.06615 0.727603,-0.06615 z m 5.45702,0 h 0.727603 v 1.918226 q -0.03307,1.885152 -0.132291,2.149735 -0.06615,0.264583 -0.198438,0.529166 -0.132291,0.231509 -0.297655,0.396874 -0.132292,0.165364 -0.264583,0.23151 -0.132291,0.06614 -0.330729,0.06614 H 49.023102 V 21.298168 18.65234 Z"
id="path3679" />
<path
d="m 87.949851,10.020326 0.628384,0.03307 v 0.727602 l 0.03307,0.727603 h 0.992185 1.025259 l 0.03307,-0.264583 v -0.264582 h 0.628384 0.628384 l -0.03307,2.976556 q 0,2.976557 -0.06615,3.174994 -0.06614,0.165364 -0.198437,0.330728 -0.09922,0.132292 -0.297655,0.23151 -0.198438,0.06615 -0.429947,0.06615 h -0.23151 v -0.330728 -0.363802 l -1.025259,0.03307 h -1.025258 l -0.03307,0.496093 q -0.03307,0.529166 -0.06615,0.628384 -0.03307,0.09922 -0.03307,0.165364 0,0.03307 0.760676,0.03307 0.793748,0 0.859894,-0.03307 0.06615,-0.06615 0.92604,-0.06615 l 0.892967,0.03307 -0.628384,0.760676 q -0.628384,0.826821 -0.892967,1.091404 -0.264583,0.297656 -0.69453,0.727603 -0.429947,0.363801 -0.595311,0.496093 -0.132292,0.132291 -0.132292,0.165364 0,0.03307 0.264583,0.165364 0.429947,0.23151 0.959113,0.496093 0.760675,0.396874 1.256768,0.595311 0.595311,0.23151 0.628384,0.264583 l 0.06615,0.03307 -0.09922,0.165364 q -0.03307,0.06615 -0.46302,0.727603 -0.330728,0.595311 -0.363801,0.595311 -0.03307,0 -0.496093,-0.23151 -0.496092,-0.264582 -0.959112,-0.529165 -0.429947,-0.264583 -0.793749,-0.529166 -0.264583,-0.165364 -0.793748,-0.562238 l -0.429947,-0.363802 -0.297656,0.198437 q -0.396874,0.23151 -0.595311,0.330729 -0.165365,0.09922 -0.92604,0.496093 -0.661457,0.330728 -1.322914,0.595311 -0.595312,0.264583 -1.124477,0.429947 -0.496093,0.198437 -0.529166,0.198437 -0.03307,0 -0.132291,-0.198437 -0.06615,-0.198437 -0.03307,-0.198437 0,0 0.264583,-0.132291 0.23151,-0.06615 0.760675,-0.330729 0.496093,-0.264583 1.025259,-0.628384 0.595311,-0.396874 0.959112,-0.661457 0.297656,-0.23151 0.760676,-0.595312 0.330728,-0.297655 0.330728,-0.297655 0,-0.03307 -0.132291,-0.165364 -0.132291,-0.132292 -0.529166,-0.595312 -0.396874,-0.46302 -0.661457,-0.892967 -0.297655,-0.429947 -0.429947,-0.661457 l -0.132291,-0.23151 H 84.675638 84.311837 V 18.751559 18.42083 h 1.521351 1.488279 v -0.661457 -0.69453 H 86.4285 85.50246 l -0.06615,0.132292 q -0.03307,0.09922 -0.165364,0.264582 -0.09922,0.132292 -0.297656,0.198438 -0.165364,0.09922 -0.429947,0.09922 h -0.23151 v -3.340358 -3.340358 h 0.628384 0.628384 v 0.198437 0.23151 h 0.628385 0.595311 v 0.297656 0.330728 H 86.19699 l -0.628385,0.03307 v 0.826822 0.826821 h 0.628385 0.595311 v 0.330728 0.330729 H 86.19699 85.568605 v 0.959113 0.992185 h 0.892967 0.859895 v -3.208067 -3.208066 z m 1.686715,2.149735 q -1.025258,0 -1.058331,0.06615 0,0.03307 0,2.116662 l 0.03307,2.050517 1.025258,0.03307 h 1.025259 v -0.992185 -0.959113 h -0.793749 -0.760675 v -0.330729 -0.330728 h 0.760675 0.793749 v -0.826821 -0.826822 z m -2.083589,6.912226 h -1.951299 l 0.132292,0.132292 q 0.09922,0.09922 0.562238,0.529165 0.496093,0.396874 0.92604,0.727603 0.46302,0.330728 0.529166,0.330728 0.06615,0 0.661457,-0.595311 0.628384,-0.661457 0.859894,-0.859894 l 0.23151,-0.264583 z m -5.953114,-8.92967 h 0.727603 v 1.686716 1.686715 h 0.661457 0.661457 l -0.03307,0.330729 v 0.297655 h -0.628384 l -0.661457,0.03307 v 1.587497 q 0,1.554424 0,1.554424 0.03307,0 0.562238,-0.264583 0.529166,-0.297655 0.562239,-0.297655 0.03307,0 0.03307,0.46302 V 17.7263 l -0.562239,0.297656 -0.595311,0.330728 v 2.3151 l -0.03307,2.348173 -0.09922,0.297655 q -0.09922,0.297656 -0.23151,0.496093 -0.132292,0.198437 -0.297656,0.363801 -0.198437,0.132292 -0.363801,0.23151 -0.23151,0.09922 -0.297656,0.132292 h -0.132291 v -2.678901 q 0,-2.711974 -0.03307,-2.711974 -0.03307,0 -0.661457,0.330728 -0.628385,0.363802 -0.661457,0.363802 -0.03307,0 -0.03307,-0.46302 v -0.46302 l 0.562238,-0.297656 q 0.562239,-0.330728 0.69453,-0.396874 l 0.132292,-0.09922 v -1.951299 -1.984371 h -0.793749 -0.826821 v -0.330728 -0.330729 h 0.826821 0.793749 v -1.686715 -1.686716 z"
id="path3681" />
<path
d="m 107.66127,10.053399 h 0.69453 v 0.826821 0.859894 h 1.91822 1.91823 v 0.330729 0.297655 l -1.91823,0.03307 h -1.88515 l -0.0331,0.264583 q -0.0331,0.23151 -0.0992,0.496093 -0.0992,0.264583 -0.16536,0.363801 -0.0331,0.06615 -0.0662,0.132292 -0.0331,0.03307 -0.0331,0.03307 h 2.01744 2.08359 q 0.0662,0 0.0331,-0.132291 -0.0331,-0.132291 0.0331,-0.132291 0.0661,-0.03307 0.69453,-0.06615 l 0.59531,-0.03307 0.0331,0.297656 q 0.0662,0.330728 0.16536,0.661457 0.0661,0.363801 0.16537,0.562238 0.0661,0.165364 0.13229,0.330729 0.0661,0.132291 0.0661,0.165364 0,0 -0.0661,0 -0.0331,0 -0.33073,-0.132291 -0.29765,-0.09922 -0.56224,-0.264583 -0.26458,-0.165364 -0.46302,-0.363802 l -0.16536,-0.23151 h -2.6789 -2.64583 l 0.19844,0.198438 q 0.23151,0.165364 0.33073,0.297655 l 0.13229,0.09922 -0.79375,0.595311 -0.76068,0.595311 0.0662,0.03307 q 0.0992,0 1.0914,-0.03307 l 0.99219,-0.06614 0.82682,-0.496093 q 0.82682,-0.496093 0.89297,-0.496093 0.0661,0 0.33072,0.46302 0.29766,0.46302 0.26459,0.496093 -0.0662,0.06615 -2.41432,1.422132 -0.62838,0.363802 -1.19062,0.69453 -0.52917,0.297656 -0.8599,0.496093 -0.29765,0.165364 -0.26458,0.198437 0,0 2.05052,-0.198437 2.05051,-0.198437 2.11666,-0.198437 0.0331,-0.03307 -0.0662,-0.09922 -0.0992,-0.09922 -0.46302,-0.297655 -0.23151,-0.132292 -0.29765,-0.165364 -0.0331,-0.03307 -0.0331,-0.132292 v -0.132291 l 0.39688,0.03307 q 0.39687,0 0.69453,0.09922 0.29765,0.06615 0.66146,0.264583 0.3638,0.165364 0.59531,0.330728 0.26458,0.198438 0.49609,0.429948 0.26458,0.23151 0.46302,0.463019 0.19844,0.23151 0.19844,0.264583 0,0.03307 -0.69453,0.429947 -0.66146,0.396875 -0.69453,0.396875 -0.0331,0 -0.13229,-0.363802 -0.1323,-0.330728 -0.16537,-0.396874 -0.0331,-0.06615 -1.42213,0.09922 -1.38906,0.132291 -1.42213,0.132291 -0.0331,0.03307 -0.0331,1.719788 0,1.686716 -0.0992,1.984371 -0.0662,0.297656 -0.16537,0.46302 -0.0992,0.198437 -0.19844,0.330729 -0.13229,0.132291 -0.29765,0.23151 -0.16537,0.132291 -0.42995,0.132291 h -0.26458 v -2.381245 q 0,-2.348173 0,-2.348173 0,0 -0.19844,0.03307 -0.19844,0 -0.66146,0.06615 -0.42994,0.03307 -0.79374,0.06615 l -1.68672,0.165364 -0.39687,0.264583 q -0.42995,0.23151 -0.46302,0.23151 0,0 -0.29766,-0.429947 -0.29766,-0.429947 -0.26458,-0.46302 0.0331,-0.03307 2.24895,-1.355987 2.21588,-1.322914 2.28203,-1.355987 l -0.39688,-0.03307 q -0.13229,0 -0.33072,0 -0.69453,0.03307 -0.92604,0.06615 -0.16537,0.03307 -0.52917,0.297655 -0.3638,0.264583 -0.42995,0.264583 -0.0331,0 -0.42994,-0.330728 -0.36381,-0.297656 -0.46302,-0.363802 -0.0331,-0.03307 0.0331,-0.06614 0.0661,-0.06615 0.26458,-0.23151 0.19844,-0.165365 0.49609,-0.396875 0.33073,-0.23151 0.89297,-0.628384 1.75286,-1.322914 1.78594,-1.355987 0,0 -0.26459,0 -0.23151,0 -0.69453,0 -0.42994,-0.03307 -0.99218,-0.03307 h -1.9513 l -0.19844,0.165365 q -0.19844,0.165364 -0.46302,0.330728 -0.26458,0.132292 -0.49609,0.23151 -0.26458,0.06615 -0.26458,0.06615 -0.0331,-0.03307 0.0992,-0.297656 0.16537,-0.330728 0.26459,-0.727603 0.0992,-0.429947 0.16536,-0.694529 l 0.0331,-0.297656 0.26459,0.03307 q 0.26458,0 0.66145,0.03307 0.29766,0 0.33073,0.03307 0.0661,0 0.0661,0.06615 -0.0331,0.06615 -0.0331,0.23151 0,0.132292 0.0331,0.132292 0,0.03307 1.9513,0.03307 h 1.9513 v -0.661457 -0.628384 h -2.08359 l -2.11667,-0.03307 V 12.03777 l -0.0331,-0.297656 h 2.11666 2.11667 V 10.88022 10.053399 Z m -3.30729,11.046332 h 0.69453 v 0.760676 q -0.0331,0.760675 -0.13229,1.025258 -0.0661,0.23151 -0.19844,0.429947 -0.13229,0.198437 -0.33072,0.330729 -0.16537,0.165364 -0.46302,0.165364 l -0.26459,0.03307 v -1.355987 -1.38906 z m 6.18463,0 h 0.69453 v 0.661457 q 0,0.595312 -0.0662,0.859894 -0.0331,0.264583 -0.13229,0.46302 -0.0992,0.198437 -0.26458,0.396874 -0.19844,0.198438 -0.33073,0.264583 -0.13229,0.09922 -0.3638,0.09922 h -0.23151 v -1.355987 -1.38906 z"
id="path3683" />
<g>
<title>background</title>
<rect x="-1" y="-1" width="42.816233" height="12.204058" id="canvas_background" fill="none"/>
</g>
<g>
<title>Layer 1</title>
<g id="svg_1">
<text fill="#ff7f00" stroke-width="0" x="127.836066" y="31.638826" id="svg_14" font-size="18" font-family="Arvo, sans-serif" text-anchor="start" xml:space="preserve"></text>
<text fill="#559E84" stroke="null" stroke-width="0" stroke-opacity="null" x="158" y="31.639457" id="svg_16" font-size="18" font-family="Arvo, sans-serif" text-anchor="start" xml:space="preserve"></text>
<g id="svg_37" stroke="null">
<path d="m91.522974,17.955419l-1.031728,0c-0.271255,0 -0.491246,0.209859 -0.491246,0.468622l0,14.714986c0,0.258938 0.219991,0.468798 0.491246,0.468798l11.593708,0l0,-14.855714l-2.161557,0l-0.78592,-0.796693l-7.614502,0l-0.000001,0.000001zm0,0" fill="#7ae57d" id="svg_22" stroke="null"/>
<path d="m101.249798,18.752111l0,13.590399c0,0.258762 -0.219991,0.468622 -0.491246,0.468622l-10.758552,0l0,0.328071c0,0.258763 0.219991,0.468622 0.491246,0.468622l11.593708,0l0,-14.855714l-0.835156,0zm0,0" fill="#66d166" id="svg_23" stroke="null"/>
<path d="m102.084954,32.15499l-0.797906,-0.806016c-0.556709,-0.562382 -1.331934,-0.88113 -2.142933,-0.88113l-7.621141,0l0,-12.934257c0,-0.258762 0.219807,-0.468622 0.491246,-0.468622l7.129894,0c0.810999,0 1.586224,0.318748 2.142933,0.88113l0.797906,0.806016l0,13.402879l0.000001,0zm0,0" fill="#ddf5ff" id="svg_24" stroke="null"/>
<path d="m101.299034,31.361112l0.78592,0.793878l0,-13.402879l-0.78592,-0.793878l0,13.402879zm0,0" fill="#c1e9f4" id="svg_25" stroke="null"/>
<path d="m91.522974,30.467845l0,1.218523c0,0.258763 0.219807,0.468622 0.491246,0.468622l10.070733,0l-0.797906,-0.806016c-0.556709,-0.562382 -1.331934,-0.88113 -2.142933,-0.88113l-7.621141,0l0.000001,0.000001zm0,0" fill="#c1e9f4" id="svg_26" stroke="null"/>
<path d="m112.646934,17.955419l1.031728,0c0.271255,0 0.491246,0.209684 0.491246,0.468622l0,14.714986c0,0.258938 -0.219991,0.468798 -0.491246,0.468798l-11.593708,0l0,-14.855714l2.161557,0l0.78592,-0.796693l7.614502,0l0.000001,0.000001zm0,0" fill="#7ae57d" id="svg_27" stroke="null"/>
<path d="m113.383988,17.955419l0,14.387092c0,0.258762 -0.219991,0.468446 -0.491246,0.468446l-10.807787,0l0,0.796693l11.593708,0c0.271255,0 0.491246,-0.209684 0.491246,-0.468622l0,-14.714986c0,-0.258763 -0.219991,-0.468622 -0.491246,-0.468622l-0.294674,0l-0.000001,-0.000001zm0,0" fill="#66d166" id="svg_28" stroke="null"/>
<path d="m102.084954,32.15499l0.797906,-0.806016c0.556709,-0.562382 1.331934,-0.88113 2.142933,-0.88113l7.62114,0l0,-12.934257c0,-0.258762 -0.219807,-0.468622 -0.491062,-0.468622l-7.130078,0c-0.810999,0 -1.586224,0.318748 -2.142933,0.88113l-0.797906,0.806016l0,13.402879zm0,0" fill="#ddf5ff" id="svg_29" stroke="null"/>
<path d="m111.910065,17.064966l0,13.402879l0.736869,0l0,-12.934257c0,-0.258762 -0.219807,-0.468622 -0.491062,-0.468622l-0.245807,0zm0,0" fill="#c1e9f4" id="svg_30" stroke="null"/>
<path d="m112.646934,30.467845l0,1.218523c0,0.258763 -0.219807,0.468622 -0.491062,0.468622l-10.070918,0l0.797906,-0.806016c0.556709,-0.562382 1.331934,-0.88113 2.142933,-0.88113l7.62114,0l0.000001,0.000001zm0,0" fill="#c1e9f4" id="svg_31" stroke="null"/>
<path d="m102.5762,36.934973l-0.982493,0c-0.271255,0 -0.491246,-0.209684 -0.491246,-0.468622l0,-7.826204l1.964985,0l0,7.826204c0,0.258938 -0.219991,0.468622 -0.491246,0.468622zm0,0" fill="#636363" id="svg_32" stroke="null"/>
<path d="m102.281526,28.640147l-1.179065,0l0,1.514931c0.319568,0.051365 0.647804,0.078456 0.982493,0.078456c0.065831,0 0.131109,-0.001759 0.196572,-0.00387l0,6.70531l0.294674,0c0.271255,0 0.491246,-0.209684 0.491246,-0.468622l0,-7.826204l-0.78592,0l0,-0.000001zm0,0" fill="#494949" id="svg_33" stroke="null"/>
<path d="m106.997602,24.610066c0,2.588153 -2.199544,4.686223 -4.912648,4.686223s-4.912648,-2.09807 -4.912648,-4.686223c0,-2.588329 2.199544,-4.686399 4.912648,-4.686399s4.912648,2.09807 4.912648,4.686399zm0,0" fill="#636363" id="svg_34" stroke="null"/>
<path d="m105.251132,21.027146c0.721749,0.815691 1.156937,1.869564 1.156937,3.020538c0,2.588153 -2.199544,4.686223 -4.912648,4.686223c-1.206541,0 -2.311107,-0.415146 -3.166178,-1.103479c0.900987,1.01869 2.249148,1.665861 3.755711,1.665861c2.713103,0 4.912648,-2.09807 4.912648,-4.686223c0,-1.437355 -0.678598,-2.723252 -1.746469,-3.58292l-0.000001,0zm0,0" fill="#494949" id="svg_35" stroke="null"/>
<path d="m105.523863,24.610066c0,1.811689 -1.539755,3.280356 -3.438909,3.280356s-3.438909,-1.468667 -3.438909,-3.280356c0,-1.811866 1.539755,-3.280532 3.438909,-3.280532s3.438909,1.468666 3.438909,3.280532zm0,0" fill="#8db0ff" id="svg_36" stroke="null"/>
</g>
<text xml:space="preserve" text-anchor="start" font-family="Arvo, sans-serif" font-size="18" id="svg_3" y="31.303791" x="25.983606" stroke-width="0" stroke="#000" fill="#007fff"></text>
<text xml:space="preserve" text-anchor="start" font-family="Arvo, sans-serif" font-size="18" id="svg_4" y="31.303791" x="57.950819" stroke-width="0" stroke="#000" fill="#ff5656"></text>
</g>
<circle
id="path31"
cx="64.580482"
cy="16.536459"
r="7.2760415"
style="fill:#0885ff;fill-opacity:1;stroke-width:0.264583" />
<ellipse
style="fill:#ffffff;fill-opacity:1;stroke-width:0.293807"
id="path1230"
cx="64.580681"
cy="16.505604"
rx="5.8584604"
ry="5.8938851" />
<circle
style="fill:#0885ff;fill-opacity:1;stroke-width:0.264583"
id="path1387"
cx="60.751839"
cy="16.626101"
r="1.3229166" />
<circle
style="fill:#0885ff;fill-opacity:1;stroke-width:0.264583"
id="path1387-0"
cx="64.699738"
cy="16.559303"
r="1.3229166" />
<circle
style="fill:#0885ff;fill-opacity:1;stroke-width:0.264583"
id="path1387-2"
cx="68.583458"
cy="16.600042"
r="1.3229166" />
<circle
style="fill:#0885ff;fill-opacity:1;stroke-width:0.264583"
id="path1387-1"
cx="70.533607"
cy="23.118469"
r="1.3229166" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -1,111 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg width="140" height="32" xmlns="http://www.w3.org/2000/svg">
<!-- Created with Method Draw - http://github.com/duopixel/Method-Draw/ -->
<svg
width="140"
height="32"
viewBox="0 0 37.041666 8.4666669"
version="1.1"
id="svg5"
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
sodipodi:docname="mrdoc_search_2.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:document-units="mm"
showgrid="true"
units="px"
inkscape:zoom="2.8008419"
inkscape:cx="69.621925"
inkscape:cy="31.062089"
inkscape:window-width="1920"
inkscape:window-height="986"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<inkscape:grid
type="xygrid"
id="grid9" />
</sodipodi:namedview>
<defs
id="defs2" />
<g
inkscape:label="图层 1"
inkscape:groupmode="layer"
id="layer1">
<g
aria-label="觅思搜索"
id="text453"
style="font-size:7.40833px;line-height:1.25;font-family:xiaowei;-inkscape-font-specification:'xiaowei, Normal';fill:#333333;stroke-width:0.264583">
<path
d="m 8.119622,1.2358272 q 0.086816,0.043408 0.1591633,0.086816 0.086816,0.043408 0.2459797,0.1012858 0.1591633,0.043408 0.3472655,0.072347 0.1881021,0.028939 0.4485512,0.043408 0.2749185,0.014469 0.8102863,-0.028939 0.130224,-0.014469 0.47749,-0.043408 0.361735,-0.028939 0.491959,-0.043408 0.593245,-0.043408 0.983919,-0.072347 0.535368,-0.043408 0.578776,-0.043408 0.02894,0 0.02894,0.2459797 v 0.2315104 l -0.101286,0.014469 q -0.02894,0 -0.622184,0.057878 -0.520898,0.028939 -0.839225,0.057878 -0.911572,0.072347 -0.998388,0.086816 Q 9.4363369,2.0605827 9.3639899,2.0461133 9.2771735,2.0316439 9.1903572,2.0171745 9.1324796,2.0027051 8.9877856,1.9592969 8.8864999,1.9303581 8.7418059,1.8580111 8.6405202,1.8001336 8.5102956,1.7133172 8.3945405,1.6265008 8.2787853,1.5252151 8.1630301,1.4239293 8.1051526,1.3515823 8.0328056,1.264766 8.047275,1.2213578 l 0.014469,-0.043408 z m 1.4180006,1.0128576 q 0,0 0.086816,0.057878 0.086816,0.057878 0.1736327,0.1446939 0.086816,0.1012858 0.1302246,0.1881021 0.043408,0.086816 0.043408,0.2459797 0,0.1591634 -0.028939,0.1881022 Q 9.9282963,3.1023791 9.6099696,2.8853381 9.2771735,2.6682972 9.2771735,2.6682972 9.2627041,2.6538278 9.3929287,2.4512563 9.5231532,2.2486848 9.5376226,2.2486848 Z m 1.0562654,0.2025715 q 0.130225,-0.1881021 0.144694,-0.1881021 0.01447,-0.014469 0.101286,0.057878 0.08682,0.057878 0.173633,0.1446939 0.08682,0.086816 0.115755,0.1736327 0.04341,0.086816 0.05788,0.1736328 0.01447,0.086816 0,0.1591633 -0.01447,0.072347 -0.04341,0.1012858 -0.01447,0.028939 -0.347265,-0.1881022 -0.332796,-0.2170409 -0.332796,-0.2315103 0,-0.014469 0.130224,-0.2025715 z m 1.736328,-0.1302245 q 0.01447,0.014469 0.04341,0.043408 0.02894,0.014469 0.07235,0.043408 0.04341,0.028939 0.08682,0.057878 0.130225,0.1012858 0.144694,0.1157552 0,0 -0.04341,0.072347 -0.05788,0.072347 -0.144694,0.1591634 -0.115755,0.1012857 -0.202571,0.1446939 -0.08682,0.043408 -0.188103,0.057878 -0.08682,0 -0.173632,-0.014469 -0.07235,-0.028939 -0.08682,-0.043408 -0.02894,-0.014469 0.202572,-0.3472655 L 12.286808,2.292093 Z M 9.2337653,3.174726 H 9.479745 v 0.043408 0.057878 h 1.389062 1.389062 V 3.2326036 3.174726 h 0.245979 0.26045 l -0.01447,1.0707352 q 0,1.0562658 -0.04341,1.1575516 -0.02894,0.086816 -0.08682,0.1591633 -0.05788,0.086816 -0.130225,0.1302246 -0.08682,0.057878 -0.144694,0.072347 -0.05788,0.014469 -0.07235,0.014469 -0.01447,-0.014469 -0.01447,-1.1141433 V 3.5653997 H 10.868807 9.479745 v 0.8247555 q 0,0.8392248 -0.028939,0.9405106 -0.028939,0.086816 -0.072347,0.1736327 -0.028939,0.072347 -0.1157552,0.144694 -0.072347,0.072347 -0.1302245,0.1012857 -0.028939,0.014469 -0.086816,0.028939 H 9.002255 V 4.4769715 3.174726 Z m 1.6061027,0.6655922 q 0.347266,0 0.347266,0.014469 0.01447,0.014469 -0.01447,0.2315103 -0.05788,0.2315103 -0.101286,0.3617348 Q 11.02797,4.6216655 10.941154,4.824237 10.868807,5.0268085 10.767521,5.22938 10.651766,5.4753597 10.56495,5.6200537 10.434725,5.8226252 10.304501,5.9962579 10.174276,6.1843601 9.9861739,6.3579928 9.8125411,6.5316255 9.6678472,6.6473807 9.5376226,6.7486665 9.3929287,6.8499522 9.2482347,6.9367686 9.0456632,7.0380543 8.8286223,7.1393401 8.669459,7.1972177 8.524765,7.2406259 8.3656017,7.2840341 8.2353771,7.3274422 8.2064383,7.3129728 8.1774995,7.2985034 8.0617444,7.2985034 7.9459892,7.2840341 7.9315198,7.2695647 q 0,0 0.014469,-0.014469 0.014469,-0.014469 0.043408,-0.028939 0.043408,-0.014469 0.086816,-0.028939 Q 8.2064383,7.1393401 8.3945405,7.0525237 8.5392344,6.9801768 8.7273365,6.8644216 8.8864999,6.7631359 9.0456632,6.6329113 9.2048266,6.5171561 9.3784593,6.3579928 9.552092,6.1843601 9.6678472,6.0541355 9.7836023,5.9094416 9.8848881,5.7502782 10.015113,5.5477067 10.07299,5.4319516 q 0.08682,-0.144694 0.144694,-0.3038573 0.05788,-0.1591634 0.115755,-0.3327961 0.05788,-0.2025715 0.08682,-0.3327961 0.02894,-0.1591633 0.04341,-0.332796 0.01447,-0.1881022 0.02894,-0.2315103 v -0.057878 z m 0.47749,0.882633 h 0.24598 v 0.8826331 q 0,0.3617349 0,0.6366534 0.01447,0.2749184 0.01447,0.3038572 0.01447,0.072347 0.05788,0.1157552 0.04341,0.028939 0.101286,0.072347 0.05788,0.028939 0.94051,0.028939 0.882633,0 0.897103,0.028939 0,0.028939 -0.01447,0.072347 -0.01447,0.057878 -0.05788,0.1157552 -0.04341,0.043408 -0.130225,0.072347 -0.08682,0.028939 -0.46302,0.028939 -0.390674,0.014469 -0.940511,0 -0.535368,-0.028939 -0.622184,-0.057878 -0.08682,-0.028939 -0.159163,-0.1012858 -0.05788,-0.072347 -0.08682,-0.1302246 -0.01447,-0.072347 -0.01447,-1.0707351 l -0.01447,-0.9983883 z"
id="path196" />
<path
d="m 16.251422,1.3805211 h 0.289388 v 0.072347 0.057878 h 1.591633 1.591633 v -0.057878 -0.057878 l 0.274919,-0.014469 h 0.289388 l -0.01447,1.3745925 v 1.3745925 l -0.04341,0.086816 q -0.02894,0.1012858 -0.08682,0.1736328 -0.04341,0.057878 -0.130225,0.1157551 -0.08682,0.057878 -0.188102,0.057878 h -0.101286 v -0.057878 -0.057878 h -1.692919 q -1.692919,0 -1.736327,0.043408 -0.04341,0.028939 -0.115755,0.057878 -0.05788,0.014469 -0.130225,0.014469 h -0.07235 V 2.9721545 1.3805211 Z m 0.911572,0.4196125 H 16.54081 v 0.5064288 0.5208982 h 0.636653 0.622184 V 2.4223175 q 0,-0.405143 0,-0.5208982 l -0.01447,-0.1012857 z m 1.866551,0 h -0.680061 v 0.5064288 0.5208982 h 0.680061 0.694531 V 2.3065624 1.8001336 Z M 17.177463,3.1168485 H 16.54081 l -0.01447,0.4919594 q 0,0.4919594 -0.01447,0.5208982 l -0.01447,0.043408 h 0.651123 0.651123 V 3.6377467 3.1168485 Z m 1.852082,0 h -0.680061 v 0.3617348 q 0,0.3472655 -0.02894,0.4630206 -0.02894,0.1012858 -0.07235,0.1736328 l -0.04341,0.057878 h 0.752408 0.766878 V 3.6377467 3.1168485 Z M 15.716054,4.824237 h 0.303857 v 0.8247555 q 0,0.8247555 -0.02894,0.9260412 -0.02894,0.086816 -0.08682,0.2170409 -0.05788,0.1157552 -0.115755,0.1881022 -0.07235,0.072347 -0.144694,0.1157551 -0.05788,0.043408 -0.159163,0.043408 h -0.08682 V 5.9817886 4.824237 Z m 1.172021,0.014469 h 0.318327 v 0.6800615 q 0,0.6800616 -0.01447,0.7958167 -0.01447,0.144694 -0.02894,0.1591634 v 0.057878 h 1.027327 1.041796 V 5.9673192 5.4030128 h 0.303857 0.318327 v 0.5064288 q -0.01447,0.5208982 -0.05788,0.6366533 -0.02894,0.1012858 -0.05788,0.1736328 -0.02894,0.057878 -0.05788,0.1012857 0,0.014469 -0.04341,0.043408 -0.02894,0.043408 -0.05788,0.072347 -0.07235,0.072347 -0.101285,0.1012857 -0.05788,0.014469 -0.159164,0.014469 h -0.08682 V 6.9222992 6.7920746 h -1.099674 q -1.099674,0 -1.099674,0.014469 0,0.014469 -0.101286,0.1157552 -0.08682,0.1012858 -0.130224,0.1157551 -0.04341,0.014469 -0.130225,0.014469 h -0.08682 l -0.01447,-1.0996739 q 0,-1.0852046 0,-1.099674 0.01447,-0.028939 0.318327,-0.014469 z M 18.20479,4.824237 h 0.318327 l -0.01447,0.4340818 q 0,0.4340819 -0.04341,0.549837 -0.04341,0.1157552 -0.08682,0.2025715 -0.04341,0.086816 -0.08682,0.144694 -0.05788,0.072347 -0.130224,0.1157551 -0.05788,0.043408 -0.159164,0.043408 l -0.101285,-0.014469 -0.01447,-0.7090003 q 0,-0.7234697 0,-0.7379391 0.01447,-0.028939 0.318327,-0.028939 z m 2.38745,0 h 0.318327 v 0.8392249 q -0.01447,0.8247555 -0.05788,0.9405106 -0.02894,0.1157552 -0.08682,0.2315103 -0.05788,0.1012858 -0.130225,0.1736328 -0.05788,0.072347 -0.115755,0.1012857 -0.05788,0.028939 -0.144694,0.028939 h -0.08682 V 5.9817886 4.824237 Z"
id="path198" />
<path
d="m 26.539161,1.047725 0.274919,0.014469 v 0.3183267 l 0.01447,0.3183267 h 0.434082 0.448551 l 0.01447,-0.1157552 V 1.4673375 h 0.274919 0.274918 l -0.01447,1.3022455 q 0,1.3022455 -0.02894,1.3890619 -0.02894,0.072347 -0.08682,0.1446939 -0.04341,0.057878 -0.130225,0.1012858 -0.08682,0.028939 -0.188102,0.028939 H 27.725651 V 4.2888694 4.1297061 L 27.2771,4.1441755 h -0.448551 l -0.01447,0.2170409 q -0.01447,0.2315103 -0.02894,0.2749185 -0.01447,0.043408 -0.01447,0.072347 0,0.014469 0.332796,0.014469 0.347266,0 0.376205,-0.014469 0.02894,-0.028939 0.405143,-0.028939 l 0.390673,0.014469 -0.274918,0.3327961 q -0.274919,0.3617349 -0.390674,0.47749 -0.115755,0.1302246 -0.303857,0.3183267 -0.188102,0.1591634 -0.260449,0.2170409 -0.05788,0.057878 -0.05788,0.072347 0,0.014469 0.115755,0.072347 0.188103,0.1012857 0.419613,0.2170409 0.332796,0.1736327 0.549837,0.2604491 0.260449,0.1012858 0.274918,0.1157551 l 0.02894,0.014469 -0.04341,0.072347 q -0.01447,0.028939 -0.202571,0.3183267 -0.144694,0.2604491 -0.159164,0.2604491 -0.01447,0 -0.217041,-0.1012858 Q 27.537549,7.2261565 27.334978,7.1104013 27.146876,6.9946462 26.987712,6.878891 26.871957,6.806544 26.640447,6.6329113 L 26.452345,6.473748 26.32212,6.5605643 q -0.173633,0.1012858 -0.260449,0.144694 -0.07235,0.043408 -0.405143,0.2170409 -0.289388,0.1446939 -0.578776,0.2604491 -0.260449,0.1157551 -0.491959,0.1881021 -0.217041,0.086816 -0.23151,0.086816 -0.01447,0 -0.05788,-0.086816 -0.02894,-0.086816 -0.01447,-0.086816 0,0 0.115755,-0.057878 0.101285,-0.028939 0.332796,-0.144694 Q 24.947528,6.9657074 25.179038,6.806544 25.439487,6.6329113 25.59865,6.5171561 25.728875,6.4158704 25.931447,6.256707 26.07614,6.1264825 26.07614,6.1264825 q 0,-0.014469 -0.05788,-0.072347 -0.05788,-0.057878 -0.23151,-0.2604491 Q 25.61312,5.5911149 25.497365,5.4030128 25.36714,5.2149106 25.309263,5.1136249 L 25.251385,5.0123391 H 25.106691 24.947528 V 4.8676452 4.7229512 h 0.665592 0.651123 V 4.4335633 4.1297061 h -0.390674 -0.405143 l -0.02894,0.057878 q -0.01447,0.043408 -0.07235,0.1157552 -0.04341,0.057878 -0.130224,0.086816 -0.07235,0.043408 -0.188103,0.043408 H 24.947528 V 2.9721545 1.5107457 h 0.274918 0.274919 v 0.086816 0.1012858 h 0.274918 0.260449 v 0.1302245 0.144694 h -0.260449 l -0.274918,0.014469 v 0.3617348 0.3617349 h 0.274918 0.260449 v 0.1446939 0.144694 h -0.260449 -0.274918 v 0.4196124 0.4340819 h 0.390673 0.376205 V 2.4512563 1.047725 Z M 27.2771,1.9882357 q -0.448551,0 -0.46302,0.028939 0,0.014469 0,0.9260412 l 0.01447,0.8971025 0.448551,0.014469 h 0.448551 V 3.4207057 3.0010933 H 27.378386 27.04559 V 2.8563993 2.7117054 h 0.332796 0.347265 V 2.3499705 1.9882357 Z m -0.911572,3.0241034 h -0.853694 l 0.05788,0.057878 q 0.04341,0.043408 0.245979,0.2315103 0.217041,0.1736327 0.405143,0.3183267 0.202572,0.1446939 0.231511,0.1446939 0.02894,0 0.289388,-0.2604491 0.274918,-0.2893879 0.376204,-0.3762042 L 27.219223,5.0123391 Z M 23.761037,1.1056026 h 0.318327 v 0.7379391 0.7379392 h 0.289388 0.289388 l -0.01447,0.1446939 v 0.1302245 h -0.274918 l -0.289388,0.014469 v 0.694531 q 0,0.6800615 0,0.6800615 0.01447,0 0.24598,-0.1157551 0.23151,-0.1302246 0.245979,-0.1302246 0.01447,0 0.01447,0.2025715 v 0.217041 l -0.24598,0.1302245 -0.260449,0.1446939 v 1.0128577 l -0.01447,1.027327 -0.04341,0.1302245 q -0.04341,0.1302246 -0.101285,0.2170409 -0.05788,0.086816 -0.130225,0.1591634 -0.08682,0.057878 -0.159163,0.1012857 -0.101286,0.043408 -0.130225,0.057878 h -0.05788 V 6.2277683 q 0,-1.1864904 -0.01447,-1.1864904 -0.01447,0 -0.289388,0.144694 -0.274918,0.1591633 -0.289387,0.1591633 -0.01447,0 -0.01447,-0.2025715 V 4.9399922 l 0.24598,-0.1302246 q 0.24598,-0.1446939 0.303857,-0.1736327 l 0.05788,-0.043408 V 3.7390324 2.8708687 H 23.095445 22.73371 V 2.7261748 2.5814809 h 0.361735 0.347266 V 1.8435417 1.1056026 Z"
id="path200" />
<path
d="m 33.006981,1.0621944 h 0.303858 v 0.3617349 0.3762043 h 0.839225 0.839224 V 1.9448275 2.075052 l -0.839224,0.014469 h -0.824756 l -0.01447,0.1157552 q -0.01447,0.1012858 -0.04341,0.2170409 -0.04341,0.1157552 -0.07235,0.1591634 -0.01447,0.028939 -0.02894,0.057878 -0.01447,0.014469 -0.01447,0.014469 h 0.882633 0.911572 q 0.02894,0 0.01447,-0.057878 -0.01447,-0.057878 0.01447,-0.057878 0.02894,-0.014469 0.303857,-0.028939 l 0.260449,-0.014469 0.01447,0.1302245 q 0.02894,0.144694 0.07235,0.2893879 0.02894,0.1591634 0.07235,0.2459797 0.02894,0.072347 0.05788,0.144694 0.02894,0.057878 0.02894,0.072347 0,0 -0.02894,0 -0.01447,0 -0.144694,-0.057878 -0.130224,-0.043408 -0.245979,-0.1157552 -0.115755,-0.072347 -0.202572,-0.1591633 l -0.07235,-0.1012858 h -1.172021 -1.157551 l 0.08682,0.086816 q 0.101286,0.072347 0.144694,0.1302245 l 0.05788,0.043408 -0.347266,0.2604491 -0.332796,0.2604491 0.02894,0.014469 q 0.04341,0 0.47749,-0.014469 l 0.434082,-0.028939 0.361735,-0.2170409 q 0.361734,-0.2170409 0.390673,-0.2170409 0.02894,0 0.144694,0.2025715 0.130225,0.2025715 0.115755,0.2170409 -0.02894,0.028939 -1.056266,0.622184 -0.274918,0.1591633 -0.520898,0.3038573 -0.23151,0.1302245 -0.376204,0.2170409 -0.130225,0.072347 -0.115755,0.086816 0,0 0.897102,-0.086816 0.897103,-0.086816 0.926042,-0.086816 0.01447,-0.014469 -0.02894,-0.043408 -0.04341,-0.043408 -0.202572,-0.1302245 -0.101285,-0.057878 -0.130224,-0.072347 -0.01447,-0.014469 -0.01447,-0.057878 v -0.057878 l 0.173633,0.014469 q 0.173633,0 0.303857,0.043408 0.130225,0.028939 0.289388,0.1157552 0.159164,0.072347 0.260449,0.1446939 0.115755,0.086816 0.217041,0.1881022 0.115755,0.1012857 0.202572,0.2025715 0.08682,0.1012858 0.08682,0.1157552 0,0.014469 -0.303857,0.1881021 -0.289388,0.1736327 -0.303857,0.1736327 -0.01447,0 -0.05788,-0.1591633 -0.05788,-0.144694 -0.07235,-0.1736328 -0.01447,-0.028939 -0.622184,0.043408 -0.607715,0.057878 -0.622184,0.057878 -0.01447,0.014469 -0.01447,0.7524085 0,0.7379391 -0.04341,0.8681637 -0.02894,0.1302245 -0.07235,0.2025715 -0.04341,0.086816 -0.08682,0.1446939 -0.05788,0.057878 -0.130224,0.1012858 -0.07235,0.057878 -0.188102,0.057878 H 32.601838 V 6.4158704 q 0,-1.027327 0,-1.027327 0,0 -0.08682,0.014469 -0.08682,0 -0.289388,0.028939 -0.188102,0.014469 -0.347265,0.028939 l -0.737939,0.072347 -0.173633,0.1157552 q -0.188102,0.1012857 -0.202572,0.1012857 0,0 -0.130224,-0.1881021 -0.130225,-0.1881021 -0.115755,-0.2025715 0.01447,-0.014469 0.983918,-0.5932452 0.96945,-0.5787758 0.998389,-0.5932452 L 32.32692,4.1586449 q -0.05788,0 -0.144694,0 -0.303857,0.014469 -0.405143,0.028939 -0.07235,0.014469 -0.23151,0.1302246 -0.159164,0.1157551 -0.188103,0.1157551 -0.01447,0 -0.188102,-0.1446939 -0.159163,-0.1302245 -0.202571,-0.1591633 -0.01447,-0.014469 0.01447,-0.028939 0.02894,-0.028939 0.115755,-0.1012858 0.08682,-0.072347 0.217041,-0.1736327 0.144694,-0.1012858 0.390674,-0.2749185 0.766878,-0.5787758 0.781347,-0.5932452 0,0 -0.115755,0 -0.101286,0 -0.303857,0 -0.188102,-0.014469 -0.434082,-0.014469 h -0.853694 l -0.08682,0.072347 q -0.08682,0.072347 -0.202571,0.1446939 -0.115755,0.057878 -0.217041,0.1012858 -0.115755,0.028939 -0.115755,0.028939 -0.01447,-0.014469 0.04341,-0.1302246 0.07235,-0.1446939 0.115755,-0.3183266 0.04341,-0.1881022 0.07235,-0.3038573 l 0.01447,-0.1302246 0.115756,0.014469 q 0.115755,0 0.289387,0.014469 0.130225,0 0.144694,0.014469 0.02894,0 0.02894,0.028939 -0.01447,0.028939 -0.01447,0.1012858 0,0.057878 0.01447,0.057878 0,0.014469 0.853694,0.014469 h 0.853695 V 2.3644399 2.0895214 H 31.777083 L 30.851042,2.075052 V 1.9303581 l -0.01447,-0.1302245 h 0.926041 0.926042 V 1.4239293 1.0621944 Z m -1.446939,4.8327778 h 0.303857 v 0.3327961 q -0.01447,0.332796 -0.05788,0.4485512 -0.02894,0.1012857 -0.08682,0.1881021 -0.05788,0.086816 -0.144694,0.144694 -0.07235,0.072347 -0.202571,0.072347 l -0.115755,0.014469 V 6.5026868 5.8949722 Z m 2.705777,0 h 0.303857 v 0.2893879 q 0,0.2604491 -0.02894,0.3762042 -0.01447,0.1157552 -0.05788,0.2025716 -0.04341,0.086816 -0.115756,0.1736327 -0.08682,0.086816 -0.144693,0.1157551 -0.05788,0.043408 -0.159164,0.043408 H 33.961961 V 6.5026868 5.8949722 Z"
id="path202" />
<g>
<title>background</title>
<rect x="-1" y="-1" width="142" height="34" id="canvas_background" fill="#ffffff"/>
<g id="canvasGrid" width="100%" height="100%" x="0" y="0" overflow="visible" display="none">
<rect id="svg_5" width="100%" height="100%" x="0" y="0" stroke-width="0" fill="url(#gridpattern)"/>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="放大镜">
<ellipse
style="fill:#0885ff;fill-opacity:1;stroke-width:0.262296"
id="path3214"
cx="3.730648"
cy="4.1152511"
rx="2.8603187"
ry="2.9104166" />
<ellipse
style="fill:#ffffff;fill-opacity:1;stroke-width:0.371418"
id="path3349"
cx="3.7463393"
cy="4.1379991"
rx="2.3097458"
ry="2.3293169" />
<ellipse
style="fill:#0885ff;fill-opacity:1;stroke-width:0.183574"
id="path3609"
cx="2.5123682"
cy="4.2303929"
rx="0.45271677"
ry="0.46524125" />
<ellipse
style="fill:#0885ff;fill-opacity:1;stroke-width:0.202789"
id="path3609-4"
cx="5.9639711"
cy="6.7483482"
rx="0.51116437"
ry="0.50281471" />
<ellipse
style="fill:#0885ff;fill-opacity:1;stroke-width:0.183574"
id="path3609-5"
cx="3.6875968"
cy="4.2303929"
rx="0.45271677"
ry="0.46524125" />
<ellipse
style="fill:#0885ff;fill-opacity:1;stroke-width:0.183574"
id="path3609-7"
cx="4.8852677"
cy="4.2251811"
rx="0.45271677"
ry="0.46524125" />
<g>
<title>Layer 1</title>
<text style="cursor: move;" fill="#007fff" stroke="#000" stroke-width="0" x="9.16682" y="24.166642" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve"></text>
<text style="cursor: move;" fill="#ff5656" stroke="#000" stroke-width="0" x="43.166729" y="24.499975" id="svg_2" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve"></text>
<text style="cursor: text;" fill="#ff7f00" stroke="#000" stroke-width="0" x="76.833305" y="24.166642" id="svg_3" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve"></text>
<text fill="#559e84" stroke="#000" stroke-width="0" x="110.166548" y="24.499974" id="svg_4" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve"></text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

7
upload.conf Normal file
View File

@ -0,0 +1,7 @@
{
"src_dir":"/usr/local/mrdoc/MrDoc/media",
"key_prefix":"note/media/",
"overwrite" : true,
"rescan_local" : true,
"bucket":"imbed"
}