리빌더 부분 추가
2
plugin/editor/rb.editor/_common.php
Normal file
@ -0,0 +1,2 @@
|
||||
<?php
|
||||
include_once("../../../common.php");
|
||||
130
plugin/editor/rb.editor/autosave.editor.js
Normal file
@ -0,0 +1,130 @@
|
||||
var AUTOSAVE_INTERVAL = 600000;
|
||||
|
||||
function autosave() {
|
||||
//console.log("자동 저장 실행");
|
||||
|
||||
$("form#fwrite").each(function () {
|
||||
let contentToSave = "";
|
||||
const formElement = this; // 현재 폼 요소를 formElement로 지정
|
||||
const uid = $(formElement).find("input[name='uid']").val(); // ✅ uid 가져오기
|
||||
|
||||
if (typeof g5_editor !== "undefined") {
|
||||
if (g5_editor.indexOf("ckeditor4") !== -1 && typeof CKEDITOR.instances.wr_content !== "undefined") {
|
||||
contentToSave = CKEDITOR.instances.wr_content.getData();
|
||||
} else if (g5_editor.indexOf("cheditor5") !== -1 && typeof ed_wr_content !== "undefined") {
|
||||
contentToSave = ed_wr_content.outputBodyHTML();
|
||||
} else if (g5_editor.indexOf("rb.editor") !== -1) {
|
||||
//console.log("RB 에디터 감지됨");
|
||||
|
||||
const editorIframe = document.querySelector("iframe[data-editor-id]");
|
||||
if (editorIframe) {
|
||||
//console.log("iframe 메시지 전송 시작");
|
||||
|
||||
// RB 에디터에서 데이터 요청
|
||||
editorIframe.contentWindow.postMessage({
|
||||
type: "rbeditor-get-content"
|
||||
}, "*");
|
||||
|
||||
// 메시지 이벤트 리스너 추가 (한 번만 실행되도록 변경)
|
||||
const messageHandler = function (event) {
|
||||
if (event.data.type === "rbeditor-content") {
|
||||
//console.log("RB 에디터에서 데이터 응답 받음", event.data);
|
||||
contentToSave = event.data.content;
|
||||
|
||||
saveContentToServer(formElement, contentToSave); // formElement를 올바르게 전달
|
||||
window.removeEventListener("message", messageHandler);
|
||||
}
|
||||
};
|
||||
|
||||
// 기존 중복 등록 방지 후 추가
|
||||
window.removeEventListener("message", messageHandler);
|
||||
window.addEventListener("message", messageHandler);
|
||||
} else {
|
||||
console.error("에디터를 찾을 수 없습니다.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ✅ 기존 CKEditor, cheditor 데이터 저장
|
||||
if (contentToSave) {
|
||||
saveContentToServer(formElement, contentToSave); // ✅ formElement를 올바르게 전달
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function saveContentToServer(formElement, content) {
|
||||
const uid = $(formElement).find("input[name='uid']").val(); // uid 값을 가져옴
|
||||
const subject = $(formElement).find("input[name='wr_subject']").val(); // 제목 가져오기
|
||||
|
||||
//if (save_wr_subject !== subject || save_wr_content !== content) { 클릭 > 저장 기존데이터 덮어쓰지 않음
|
||||
$.ajax({
|
||||
url: g5_bbs_url + "/ajax.autosave.php",
|
||||
data: {
|
||||
"uid": uid, // 아이프레임 부모에서 uid 값을 올바르게 가져옴
|
||||
"subject": subject,
|
||||
"content": content
|
||||
},
|
||||
type: "POST",
|
||||
success: function (data) {
|
||||
if (data) {
|
||||
$("#autosave_count").html(data);
|
||||
//console.log("자동저장 완료", data);
|
||||
alert('임시저장이 완료 되었습니다.');
|
||||
} else {
|
||||
alert('저장될 내용과 이전 내용이 동일합니다.\n최초 저장시 제목을 입력해주셔야 합니다.');
|
||||
}
|
||||
},
|
||||
error: function (xhr, status, error) {
|
||||
console.error("AJAX 오류:", error); // 에러 로그 추가
|
||||
}
|
||||
});
|
||||
|
||||
save_wr_subject = subject;
|
||||
save_wr_content = content;
|
||||
//}
|
||||
}
|
||||
|
||||
|
||||
// 아이프레임 내부 버튼클릭, 정보받기
|
||||
window.addEventListener("message", function (event) {
|
||||
if (event.data.type === "autosave-trigger") {
|
||||
//console.log("RB 에디터에서 autosave-trigger 요청 수신 → autosave 실행");
|
||||
autosave();
|
||||
}
|
||||
|
||||
if (event.data.type === "trigger-autosave-popup") {
|
||||
//console.log("팝업 실행");
|
||||
$("#btn_autosave").click(); // 기존 버튼 클릭 이벤트 실행
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
$(document).on('click', '.autosave_load', function () {
|
||||
var $li = $(this).parents('li');
|
||||
var as_id = $li.data('as_id');
|
||||
var as_uid = $li.data('uid');
|
||||
|
||||
$('#fwrite input[name=\"uid\"]').val(as_uid);
|
||||
|
||||
$.get(g5_bbs_url + '/ajax.autosaveload.php', {
|
||||
'as_id': as_id
|
||||
}, function (data) {
|
||||
var subject = $(data).find('item').find('subject').text();
|
||||
var content = $(data).find('item').find('content').text();
|
||||
|
||||
$('#wr_subject').val(subject);
|
||||
|
||||
// RB 에디터가 존재하는 경우 iframe으로 데이터 전달
|
||||
const editorIframe = document.querySelector('iframe[data-editor-id]');
|
||||
if (editorIframe) {
|
||||
editorIframe.contentWindow.postMessage({
|
||||
type: 'rbeditor-insert-content',
|
||||
content: content
|
||||
}, '*');
|
||||
} else {
|
||||
console.error('에디터를 찾을 수 없습니다.');
|
||||
}
|
||||
}, 'xml');
|
||||
|
||||
$('#autosave_pop').hide();
|
||||
});
|
||||
29
plugin/editor/rb.editor/css/inc.font.css
Normal file
@ -0,0 +1,29 @@
|
||||
@font-face {
|
||||
font-family: 'Nanumsqneo';
|
||||
src: url('../fonts/Nanumsqneo/Nanumsqneo-Bold.eot');
|
||||
src: url('../fonts/Nanumsqneo/Nanumsqneo-Bold.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/Nanumsqneo/Nanumsqneo-Bold.woff2') format('woff2'),
|
||||
url('../fonts/Nanumsqneo/Nanumsqneo-Bold.woff') format('woff'),
|
||||
url('../fonts/Nanumsqneo/Nanumsqneo-Bold.ttf') format('truetype');
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'TheJamsil';
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
src: url('../fonts/TheJamsil/TheJamsil-Light.eot');
|
||||
src: url('../fonts/TheJamsil/TheJamsil-Light.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/TheJamsil/TheJamsil-Light.woff2') format('woff2'),
|
||||
url('../fonts/TheJamsil/TheJamsil-Light.woff') format('woff'),
|
||||
url('../fonts/TheJamsil/TheJamsil-Light.ttf') format("truetype");
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Pretendard';
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: local('Pretendard Regular'), url(../fonts/Pretendard/woff2/Pretendard-Regular.woff2) format('woff2'), url(../fonts/Pretendard/woff/Pretendard-Regular.woff) format('woff');
|
||||
}
|
||||
498
plugin/editor/rb.editor/css/inc.skin.css
Normal file
@ -0,0 +1,498 @@
|
||||
/* 게시물 편집 { */
|
||||
mark {background-color:rgba(170, 32, 255, 0.1) !important;}
|
||||
|
||||
.mf_wrap_inner {
|
||||
background-color: #f9f9f9;
|
||||
border-radius: 10px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.mf_wrap_inner .cmt_btn2 {
|
||||
background-color: transparent;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.mf_wrap_inner .rb_mf_wrap_list {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.mf_wrap_inner .cmt_btn2 b {
|
||||
color: #000 !important;
|
||||
}
|
||||
|
||||
.mf_wrap_inner .cmt_btn2 span.total {
|
||||
color: #999 !important;
|
||||
}
|
||||
|
||||
.mf_wrap_inner #bo_vc2 article {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.rb_mf_wrap_list {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.rb_mf_wrap {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.rb_mf_wrap ul {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.rb_mf_wrap ul li {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.rb_mf_wrap ul li span {
|
||||
background-color: #F0F3F9;
|
||||
padding: 5px 10px 5px 10px;
|
||||
border-radius: 6px;
|
||||
font-size: 12px;
|
||||
color: rgba(0, 0, 0, 0.6);
|
||||
}
|
||||
|
||||
.edit_add_wrap {
|
||||
top: 18px !important;
|
||||
}
|
||||
|
||||
.cmt_btn2 {
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
border: 0;
|
||||
border-bottom: 1px solid #ddd;
|
||||
background: #fff;
|
||||
font-weight: bold;
|
||||
margin: 30px 0 0px;
|
||||
padding: 0 0 15px;
|
||||
cursor: inherit;
|
||||
}
|
||||
|
||||
.rb_bbs_wrap .cmt_btn2 span.total {
|
||||
color: #000;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.rb_bbs_wrap .cmt_btn2 b {
|
||||
color: #999;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
#bo_vc2 article .cm_wrap {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#bo_vc2 article {
|
||||
margin: 0px 0;
|
||||
position: relative;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
|
||||
#bo_vc2 .bo_vl_opt {
|
||||
position: absolute;
|
||||
top: 18px;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.edit_add_a {
|
||||
line-height: 25px !important;
|
||||
display: inline-block;
|
||||
height: 25px !important;
|
||||
border: 1px solid #ddd;
|
||||
background-color: #fff;
|
||||
border-radius: 4px;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
color: #999;
|
||||
padding-left: 10px !important;
|
||||
padding-right: 10px !important;
|
||||
width: auto !important;
|
||||
font-size: 12px
|
||||
}
|
||||
|
||||
.edit_add_a:hover {
|
||||
color: #666;
|
||||
border-color: #666;
|
||||
}
|
||||
|
||||
.edit_add_b {
|
||||
line-height: 25px !important;
|
||||
display: inline-block;
|
||||
height: 25px !important;
|
||||
border: 1px solid #ddd;
|
||||
background-color: #fff;
|
||||
border-radius: 4px;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
color: #999;
|
||||
padding-left: 10px !important;
|
||||
padding-right: 10px !important;
|
||||
width: auto !important;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.edit_add_b:hover {
|
||||
color: #666;
|
||||
border-color: #666;
|
||||
}
|
||||
|
||||
/* } */
|
||||
|
||||
/* 에디터 { */
|
||||
|
||||
.rb_editor_data * {
|
||||
line-height: 160% !important;
|
||||
}
|
||||
|
||||
.rb_editor_data img {max-width: 100%;}
|
||||
.rb_editor_data table {max-width: 100%;}
|
||||
|
||||
|
||||
.rb_editor_data .rb-codes pre {
|
||||
box-sizing: border-box;
|
||||
background-color: #F0F3F9;
|
||||
color: #374d6e;
|
||||
padding: 15px 15px 15px 15px;
|
||||
font-size: 12px;
|
||||
border-radius: 6px;
|
||||
position: relative;
|
||||
margin-bottom: 10px;
|
||||
text-align: left !important;
|
||||
}
|
||||
|
||||
.rb_editor_data ul,
|
||||
li {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.rb_editor_data .resizable img {
|
||||
display: block;
|
||||
width: 100% !important;
|
||||
height: 100% !important;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.rb_editor_data .resizable {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
user-select: none;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.rb_editor_data .rb-editor-hr {border-color:rgba(0,0,0,0.1) !important; display: block;}
|
||||
|
||||
/* 메타 정보 */
|
||||
|
||||
.rb_editor_data .url-preview {
|
||||
padding: 0px;
|
||||
margin: 10px 0;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
border:1px solid rgba(0,0,0,0.0);
|
||||
display: inline-block;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview-video .url-preview {width: 450px; height:auto;}
|
||||
.rb_editor_data .url-preview-meta .url-preview {width: 450px; background-color: #F0F3F9; padding: 20px; border-radius: 10px; min-height: 125px;}
|
||||
.rb_editor_data .url-preview-img .url-preview {width: 450px; height:auto;}
|
||||
.rb_editor_data .url-preview-img .url-preview .delete-preview img {object-fit: none; width: auto; height:auto;}
|
||||
|
||||
|
||||
.rb_editor_data .url-preview .proxyImg {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
left: 20px;
|
||||
padding-left: 0px !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 0px !important;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview .proxyImg img {
|
||||
width: 150px;
|
||||
height: 83px !important;
|
||||
object-fit: cover;
|
||||
border-radius: 10px;
|
||||
border:0px !important;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview .metaData {
|
||||
padding-left: 170px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview .delete-preview {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview .delete-preview:hover {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview h3 {
|
||||
margin: 0px 0;
|
||||
font-size: 16px;
|
||||
display: block;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview p {
|
||||
margin: 2px 0;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview a {
|
||||
color: #000;
|
||||
font-size: 11px;
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview .rb-video-container {
|
||||
position: relative;
|
||||
padding-bottom: 56.25%;
|
||||
/* 16:9 비율 */
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
max-width: 100%;
|
||||
background: black;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview .rb-video-container iframe {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#autosave_wrapper {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul1 {
|
||||
padding-right: 115px;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
width: 105px;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #btn_autosave {
|
||||
border-radius: 10px;
|
||||
width: 100%;
|
||||
height: 47px;
|
||||
background-color: #F0F3F9;
|
||||
color: #25282B
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop {
|
||||
display: none;
|
||||
z-index: 10;
|
||||
position: absolute !important;
|
||||
top: 50px;
|
||||
right: 0;
|
||||
width: 300px;
|
||||
height: auto !important;
|
||||
height: 270px;
|
||||
max-height: 270px;
|
||||
background: #fff;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 0px 50px rgba(0, 0, 0, 0.1);
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop:after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 10px;
|
||||
right: 45px;
|
||||
top: -9px;
|
||||
border: solid transparent;
|
||||
border-width: 0 8px 10px 8px;
|
||||
border-bottom-color: currentColor;
|
||||
box-sizing: border-box;
|
||||
color: #fff;
|
||||
filter: drop-shadow(0 -4px 3px rgba(0, 0, 0, .1));
|
||||
z-index: 12;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop:before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop ul {
|
||||
border: 0px;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop li {
|
||||
border-radius: 0px;
|
||||
padding: 0px 0px 10px 0px;
|
||||
font-size: 14px;
|
||||
background-color: transparent;
|
||||
position: relative;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop li:last-child {
|
||||
border-bottom: 0px;
|
||||
padding-bottom: 0px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop span {
|
||||
float: none;
|
||||
font-size: 11px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop a {
|
||||
float: none;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop button.autosave_del {
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
right: 0px;
|
||||
background:url(../image/svg/reset-btn.svg) no-repeat 50% 50%;
|
||||
background-size: 80%;
|
||||
text-indent:-999px;
|
||||
overflow:hidden;
|
||||
height:20px;
|
||||
width:20px;
|
||||
opacity: 0.3
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop button.autosave_del:hover {opacity: 0.5;}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop button.autosave_close {
|
||||
height: 35px;
|
||||
color: #25282B;
|
||||
font-weight: normal;
|
||||
font-size: 12px;
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.05);
|
||||
border-bottom-left-radius: 0px;
|
||||
border-bottom-right-radius: 10px;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop button.autosave_close:hover {
|
||||
background-color: #F0F3F9;
|
||||
}
|
||||
|
||||
.autosave_save {cursor:pointer;width:100%;height:30px;background:none;color:#888;font-weight:bold;font-size:0.92em}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop button.autosave_save {
|
||||
height: 35px;
|
||||
color: #25282B;
|
||||
font-weight: normal;
|
||||
font-size: 12px;
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.05);
|
||||
width: 50%;
|
||||
border-right: 1px solid rgba(0,0,0,0.05);
|
||||
border-bottom-left-radius: 10px;
|
||||
border-bottom-right-radius: 0px;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop button.autosave_save:hover {
|
||||
background-color: #F0F3F9;
|
||||
}
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 #autosave_pop .autosave_btn_wrap {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#autosave_wrapper ul.autosave_wrapper_ul2 .autosave_guide {
|
||||
text-align: left;
|
||||
font-size: 13px;
|
||||
padding: 15px;
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.05);
|
||||
color: #777;
|
||||
line-height: 140%;
|
||||
}
|
||||
|
||||
|
||||
.resizable-table-handle {display: none;}
|
||||
.rb_editor_table_wrap {position: relative;}
|
||||
td .resizable_wrap, th .resizable_wrap {max-width: 100%;}
|
||||
|
||||
.rb_editor_data .rb_tag {margin-top: -2px; display: inline-block; margin-bottom: 5px; vertical-align:top; max-width: 100%; width: auto; white-space: nowrap;overflow: hidden;text-overflow: ellipsis; max-width: 90%;}
|
||||
.rb_editor_data .rb_tag a {border-bottom: 0px !important; text-decoration: none !important; border-bottom: 0px !important; padding: 5px 10px 5px 10px; border-radius: 40px; font-size: 12px; background-color: #F0F3F9; display: block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;}
|
||||
.rb_editor_data .rb_tag a:hover {background-color: #e6e9ef;}
|
||||
|
||||
|
||||
#bo_v_con img {border:0px}
|
||||
|
||||
.img_boxx2 .resizable img {max-width: 100%; width:100% !important; height:auto !important;}
|
||||
.img_boxx .resizable img {max-width: 100%; width:100% !important; height:auto !important;}
|
||||
.img_boxx2 .resizable {height:auto !important;}
|
||||
.img_boxx .resizable {height:auto !important;}
|
||||
|
||||
|
||||
@media all and (max-width:1024px) {
|
||||
.img_boxx2 .resizable {width:100% !important;}
|
||||
.img_boxx .resizable {width:100% !important;}
|
||||
}
|
||||
|
||||
|
||||
@media all and (max-width:512px) {
|
||||
.rb_editor_data .url-preview-video .url-preview {width: 100% !important;}
|
||||
.rb_editor_data .url-preview-meta .url-preview {width: 100% !important;}
|
||||
|
||||
.rb_editor_data .url-preview .proxyImg {
|
||||
position: inherit;
|
||||
top: inherit;
|
||||
left: inherit;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview .metaData {
|
||||
padding-left: 0px !important;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview .proxyImg img {
|
||||
width: 100%;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview .delete-preview {
|
||||
top: auto;
|
||||
bottom: 10px;
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
.rb_editor_data .url-preview a {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.resizable-table {overflow-x: auto; width: 100% !important; display: block; max-width: 100%;}
|
||||
.resizable-table .rb_editor_table_wrap {min-width: 768px; width: auto;}
|
||||
.rb_editor_data .url-preview .proxyImg img {height: auto !important;}
|
||||
|
||||
}
|
||||
|
||||
/* } */
|
||||
109
plugin/editor/rb.editor/css/metadata.css
Normal file
@ -0,0 +1,109 @@
|
||||
/* 메타 정보 */
|
||||
.url-preview {
|
||||
padding: 0px;
|
||||
margin: 10px 0;
|
||||
margin-bottom: 0px;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
border:1px solid rgba(0,0,0,0.0);
|
||||
display: inline-block;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.url-preview-video .url-preview {width: 450px; height:auto;}
|
||||
.url-preview-meta .url-preview {width: 450px; background-color: #F0F3F9; padding: 20px; border-radius: 10px; min-height: 125px;}
|
||||
.url-preview-img .url-preview {width: 450px; height:auto;}
|
||||
.url-preview-img .url-preview a {border:0px;}
|
||||
.url-preview .delete-preview img {object-fit: none !important; width: auto; height:auto; cursor: pointer;}
|
||||
|
||||
.url-preview .proxyImg {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
.url-preview .proxyImg img {
|
||||
width: 150px;
|
||||
height: 83px;
|
||||
object-fit: cover;
|
||||
border-radius: 10px;
|
||||
border:0px !important;
|
||||
}
|
||||
|
||||
.url-preview .metaData {
|
||||
padding-left: 170px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.url-preview .delete-preview {
|
||||
position: absolute;
|
||||
top: -4px;
|
||||
right: -33px;
|
||||
background-color:transparent;
|
||||
width: 24px; height:24px;
|
||||
border: 0px;
|
||||
cursor: pointer;
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
|
||||
.url-preview h3 {
|
||||
margin: 0px 0;
|
||||
font-size: 16px;
|
||||
display: block;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.url-preview p {
|
||||
margin: 2px 0;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
|
||||
.url-preview a {
|
||||
color: #000;
|
||||
font-size: 11px;
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
border:0px !important;
|
||||
border-bottom: 0px !important;
|
||||
}
|
||||
|
||||
.url-preview .rb-video-container {
|
||||
position: relative;
|
||||
padding-bottom: 56.25%; /* 16:9 비율 */
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
max-width: 100%;
|
||||
background: black;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.url-preview .rb-video-container iframe {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
@media all and (max-width:512px) {
|
||||
.url-preview-video .url-preview {width: 100% !important;}
|
||||
.url-preview-meta .url-preview {width: 100% !important;}
|
||||
.url-preview .proxyImg {position: inherit; top:inherit; left: inherit; width: 100%;}
|
||||
.url-preview .metaData {padding-left: 0px !important; margin-top: 15px;}
|
||||
.url-preview .proxyImg img {width: 100%; height:150px;}
|
||||
.url-preview .delete-preview {top:-1px; right:-1px; background-color: #fff;}
|
||||
.url-preview a {margin-top: 10px;}
|
||||
.url-preview .proxyImg img {height: auto !important; border:0px !important;}
|
||||
}
|
||||
151
plugin/editor/rb.editor/css/preview.css
Normal file
@ -0,0 +1,151 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
word-wrap: break-word;
|
||||
font-family:'font-R',sans-serif !important;
|
||||
}
|
||||
|
||||
|
||||
.font-R {font-family:'font-R',sans-serif !important;}
|
||||
.font-B {font-family:'font-B',sans-serif !important;}
|
||||
.font-H {font-family:'font-H',sans-serif !important;}
|
||||
|
||||
ul, li {padding: 0px; margin: 0px; list-style: none;}
|
||||
mark {background-color:rgba(170, 32, 255, 0.1) !important;}
|
||||
#rb_editor_preview * {line-height: 140% !important;}
|
||||
#rb_editor_preview img {max-width: 100%;}
|
||||
#rb_editor_preview table {max-width: 100%;}
|
||||
|
||||
#rb_editor_preview {
|
||||
padding: 20px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#rb_editor_preview .resizable img {
|
||||
display: block;
|
||||
width: 100% !important;
|
||||
height: 100% !important;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#rb_editor_preview .resizable {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
user-select: none;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
/* 메타 정보 */
|
||||
|
||||
#rb_editor_preview .url-preview {
|
||||
padding: 0px;
|
||||
margin: 10px 0;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
border:1px solid rgba(0,0,0,0.0);
|
||||
display: inline-block;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#rb_editor_preview .url-preview-video .url-preview {width: 450px; height:auto;}
|
||||
#rb_editor_preview .url-preview-meta .url-preview {width: 450px; background-color: #F0F3F9; padding: 20px; border-radius: 10px; min-height: 125px;}
|
||||
#rb_editor_preview .url-preview-img .url-preview {width: 450px; height:auto;}
|
||||
#rb_editor_preview .url-preview-img .url-preview a {border:0px;}
|
||||
#rb_editor_preview .url-preview-img .url-preview .delete-preview img {object-fit: none; width: auto; height:auto;}
|
||||
|
||||
#rb_editor_preview .url-preview .proxyImg {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
#rb_editor_preview .url-preview .proxyImg img {
|
||||
width: 150px;
|
||||
height: 83px;
|
||||
object-fit: cover;
|
||||
border-radius: 10px;
|
||||
border:0px !important;
|
||||
}
|
||||
|
||||
#rb_editor_preview .url-preview .metaData {
|
||||
padding-left: 170px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#rb_editor_preview .url-preview .delete-preview {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#rb_editor_preview .url-preview .delete-preview:hover {
|
||||
opacity: 0.7;
|
||||
}
|
||||
#rb_editor_preview .url-preview h3 {
|
||||
margin: 0px 0;
|
||||
font-size: 16px;
|
||||
display: block;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#rb_editor_preview .url-preview p {
|
||||
margin: 2px 0;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
|
||||
#rb_editor_preview .url-preview a {
|
||||
color: #000;
|
||||
font-size: 11px;
|
||||
display: block;
|
||||
margin-top: 0px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#rb_editor_preview .url-preview .rb-video-container {
|
||||
position: relative;
|
||||
padding-bottom: 56.25%; /* 16:9 비율 */
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
max-width: 100%;
|
||||
background: black;
|
||||
}
|
||||
#rb_editor_preview .url-preview .rb-video-container iframe {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#rb_editor_preview .rb-editor-hr {border-color:rgba(0,0,0,0.1);}
|
||||
|
||||
.resizable-table-handle {display: none;}
|
||||
.rb_editor_table_wrap {position: relative;}
|
||||
td .resizable_wrap, th .resizable_wrap {max-width: 100%;}
|
||||
|
||||
#rb_editor_preview .rb_tag {margin-top: -2px; display: inline-block; margin-bottom: 5px; vertical-align:top; max-width: 100%; width: auto; white-space: nowrap;overflow: hidden;text-overflow: ellipsis; max-width: 90%;}
|
||||
#rb_editor_preview .rb_tag a {border-bottom: 0px !important; text-decoration: none !important; border-bottom: 0px !important; padding: 5px 10px 5px 10px; border-radius: 40px; font-size: 12px; background-color: #F0F3F9; display: block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;}
|
||||
#rb_editor_preview .rb_tag a:hover {background-color: #e6e9ef;}
|
||||
|
||||
@media all and (max-width:512px) {
|
||||
#rb_editor_preview .url-preview-video .url-preview {width: 100% !important;}
|
||||
#rb_editor_preview .url-preview-meta .url-preview {width: 100% !important;}
|
||||
#rb_editor_preview .url-preview .proxyImg {position: inherit; top:inherit; left: inherit; width: 100%;}
|
||||
#rb_editor_preview .url-preview .metaData {padding-left: 0px !important; margin-top: 15px;}
|
||||
#rb_editor_preview .url-preview .proxyImg img {width: 100%; height:150px;}
|
||||
#rb_editor_preview .url-preview .delete-preview {top:auto; bottom:10px; right:15px;}
|
||||
#rb_editor_preview .url-preview a {margin-top: 10px;}
|
||||
#rb_editor_preview .url-preview .proxyImg img {height: auto !important;}
|
||||
#rb_editor_preview .resizable-table {overflow-x: auto; width: 100% !important; display: block; max-width: 100%;}
|
||||
#rb_editor_preview .resizable-table .rb_editor_table_wrap {min-width: 768px; width: auto;}
|
||||
}
|
||||
118
plugin/editor/rb.editor/css/range.css
Normal file
@ -0,0 +1,118 @@
|
||||
|
||||
/* 커스텀 */
|
||||
.rb_range_item {
|
||||
width: 100px;
|
||||
height: 3px;
|
||||
border: 0;
|
||||
border-radius: 3px;
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
outline: none;
|
||||
border:0px !important;
|
||||
margin-left: 0px; margin-right: 0px;
|
||||
margin-top: -3px;
|
||||
}
|
||||
|
||||
.rb_range_item .ui-slider-handle {
|
||||
position: absolute;
|
||||
margin: -7px 0 0 -15px; border-radius: 100px;
|
||||
color: #fff;
|
||||
border: 0;
|
||||
height: 18px;
|
||||
line-height: 18px;
|
||||
text-align: center;
|
||||
width: 30px;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
font-size: 9px;
|
||||
text-decoration: none;
|
||||
transition: transform 0.1s ease;
|
||||
color:#fff !important;
|
||||
background-color: #09244B;
|
||||
}
|
||||
|
||||
.rb_range_item .ui-slider-range {
|
||||
border:0px !important; border-radius: 4px !important;
|
||||
}
|
||||
|
||||
|
||||
.rb_range_item .ui-slider-handle:hover,
|
||||
.rb_range_item .ui-slider-handle:focus {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.rb_range_item .cntr {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
/* 기본 */
|
||||
#image-toolbar [type="range"] {
|
||||
appearance: none;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
width: 70px;
|
||||
height: 2px; /* thumb의 height와 일치 */
|
||||
margin: 0; /* reset margin */
|
||||
padding: 0; /* reset padding */
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/* thumb */
|
||||
#image-toolbar [type="range"]::-webkit-slider-thumb { /* Webkit 기반 브라우저 */
|
||||
appearance: none;
|
||||
width: 1rem; /* height와 일치 */
|
||||
height: 1rem;
|
||||
border: none;
|
||||
border-radius: 50%;
|
||||
background-color: #09244B;
|
||||
transition: all 0.15s ease-in-out;
|
||||
margin-top: calc((0.1rem - 1rem) * 0.5); /* calc((track의 height - thumb의 height) * 0.5) */
|
||||
}
|
||||
#image-toolbar [type="range"]::-moz-range-thumb { /* 파이어폭스 */
|
||||
appearance: none;
|
||||
width: 1rem; /* height와 일치 */
|
||||
height: 1rem;
|
||||
border: none;
|
||||
border-radius: 50%;
|
||||
background-color: #09244B;
|
||||
transition: all 0.15s ease-in-out;
|
||||
}
|
||||
#image-toolbar [type="range"]:focus::-webkit-slider-thumb { /* Webkit 기반 브라우저 */
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(0, 0, 0, .1);
|
||||
}
|
||||
#image-toolbar [type="range"]:focus::-moz-range-thumb { /* 파이어폭스 */
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(0, 0, 0, .1);
|
||||
}
|
||||
#image-toolbar [type="range"]::-webkit-slider-thumb:active { /* Webkit 기반 브라우저 */
|
||||
opacity: 0.7
|
||||
}
|
||||
#image-toolbar [type="range"]::-moz-range-thumb:active { /* 파이어폭스 */
|
||||
opacity: 0.7
|
||||
}
|
||||
|
||||
/* track */
|
||||
#image-toolbar [type="range"]::-webkit-slider-runnable-track { /* Webkit 기반 브라우저 */
|
||||
cursor: pointer;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background-color: #d3d9de;
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
#image-toolbar [type="range"]::-moz-range-track { /* 파이어폭스 */
|
||||
cursor: pointer;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background-color: #d3d9de;
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
|
||||
/* disabled 속성 적용 시 */
|
||||
#image-toolbar [type="range"]:disabled::-webkit-slider-thumb { /* Webkit 기반 브라우저 */
|
||||
pointer-events: none;
|
||||
opacity: .5
|
||||
}
|
||||
#image-toolbar [type="range"]:disabled::-moz-range-thumb { /* 파이어폭스 */
|
||||
opacity: .5
|
||||
}
|
||||
1666
plugin/editor/rb.editor/css/style.css
Normal file
245
plugin/editor/rb.editor/editor.lib.php
Normal file
@ -0,0 +1,245 @@
|
||||
<?php
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
|
||||
function editor_html($id, $content, $is_dhtml_editor = true)
|
||||
{
|
||||
global $g5, $config;
|
||||
static $js = true;
|
||||
|
||||
$editor_url = G5_EDITOR_URL.'/'.$config['cf_editor'];
|
||||
|
||||
// ✅ Nonce 생성 및 세션에 저장
|
||||
if (!isset($_SESSION['token_' . FT_NONCE_SESSION_KEY])) {
|
||||
$_SESSION['token_' . FT_NONCE_SESSION_KEY] = ft_nonce_create('rbeditor');
|
||||
}
|
||||
$nonce = $_SESSION['token_' . FT_NONCE_SESSION_KEY];
|
||||
|
||||
$html = "<span class=\"sound_only\">웹에디터 시작</span>";
|
||||
|
||||
if ($is_dhtml_editor) {
|
||||
if ($js) {
|
||||
$js = false;
|
||||
}
|
||||
|
||||
$html .= "<script>
|
||||
var g5_editor_url = '{$editor_url}';
|
||||
var ed_nonce = '{$nonce}';
|
||||
|
||||
window.addEventListener('message', function(event) {
|
||||
if (event.data.type === 'request-nonce') {
|
||||
event.source.postMessage({ type: 'rbeditor-nonce', nonce: ed_nonce }, '*');
|
||||
}
|
||||
if (event.data.type === 'rbeditor-ready') {
|
||||
const editorId = event.data.editorId;
|
||||
const iframe = document.getElementById('rb-editor-frame-' + editorId);
|
||||
const hiddenInput = document.getElementById('rb-' + editorId + '-hidden');
|
||||
if (iframe && hiddenInput) {
|
||||
setTimeout(() => {
|
||||
iframe.contentWindow.postMessage({
|
||||
type: 'rbeditor-set-content',
|
||||
content: hiddenInput.value,
|
||||
editorId: editorId
|
||||
}, '*');
|
||||
}, 100);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
document.querySelectorAll('.rb-editor-frames').forEach((iframe) => {
|
||||
iframe.addEventListener('load', function() {
|
||||
var messageData = {
|
||||
type: 'rbeditor-config',
|
||||
g5_editor_url: g5_editor_url || '',
|
||||
g5_bo_table: typeof g5_bo_table !== 'undefined' ? g5_bo_table : '',
|
||||
g5_is_member: typeof g5_is_member !== 'undefined' ? g5_is_member : '',
|
||||
g5_is_mobile: typeof g5_is_mobile !== 'undefined' ? g5_is_mobile : '',
|
||||
g5_url: typeof g5_url !== 'undefined' ? g5_url : '',
|
||||
g5_bbs_url: typeof g5_bbs_url !== 'undefined' ? g5_bbs_url : '',
|
||||
g5_editor: typeof g5_editor !== 'undefined' ? g5_editor : '',
|
||||
g5_is_admin: typeof g5_is_admin !== 'undefined' ? g5_is_admin : ''
|
||||
};
|
||||
if (typeof g5_admin_url !== 'undefined') {
|
||||
messageData.g5_admin_url = g5_admin_url;
|
||||
}
|
||||
iframe.contentWindow.postMessage(messageData, '*');
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
</script>";
|
||||
|
||||
$html .= "
|
||||
<iframe id='rb-editor-frame-{$id}' src='{$editor_url}/rb.editor.html?editorId={$id}' data-editor-id='{$id}' class='rb-editor-frames' width='100%' height='670px' frameborder='0'></iframe>
|
||||
<input type='hidden' name='{$id}' id='rb-{$id}-hidden' value='".htmlspecialchars($content, ENT_QUOTES, 'UTF-8')."'>";
|
||||
|
||||
$html .= "<script>
|
||||
window.addEventListener('message', function(event) {
|
||||
if (event.data.type === 'rbeditor-content') {
|
||||
const editorId = event.data.editorId;
|
||||
const hiddenInput = document.getElementById('rb-' + editorId + '-hidden');
|
||||
|
||||
if (hiddenInput) {
|
||||
let content = event.data.content;
|
||||
const iframe = document.getElementById('rb-editor-frame-' + editorId);
|
||||
if (!iframe) {
|
||||
hiddenInput.value = ensureEditorDataWrapper(content);
|
||||
return;
|
||||
}
|
||||
try {
|
||||
const editorElem = iframe.contentWindow.document.querySelector('#editor');
|
||||
let editorStyle = editorElem ? editorElem.style.cssText.trim() : '';
|
||||
content = ensureEditorDataWrapper(content, editorStyle);
|
||||
hiddenInput.value = content;
|
||||
} catch (e) {
|
||||
hiddenInput.value = ensureEditorDataWrapper(content);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
function ensureEditorDataWrapper(content, editorStyle = '') {
|
||||
let parser = new DOMParser();
|
||||
let doc = parser.parseFromString(content, 'text/html');
|
||||
|
||||
// 내용이 텍스트도 없이 완전히 비어있거나 빈 div만 존재하면 빈 값 리턴
|
||||
if (!doc.body.textContent.trim() && !doc.body.querySelector('img, video, iframe')) {
|
||||
return '';
|
||||
}
|
||||
|
||||
let existingEditorData = doc.querySelector('.rb_editor_data');
|
||||
|
||||
if (!existingEditorData) {
|
||||
let wrapper = doc.createElement('div');
|
||||
wrapper.className = 'rb_editor_data';
|
||||
if (editorStyle) wrapper.style.cssText = editorStyle;
|
||||
wrapper.innerHTML = doc.body.innerHTML.trim();
|
||||
doc.body.innerHTML = '';
|
||||
doc.body.appendChild(wrapper);
|
||||
} else {
|
||||
let allElements = [...doc.body.children];
|
||||
allElements.forEach(el => {
|
||||
if (!el.classList.contains('rb_editor_data')) {
|
||||
existingEditorData.appendChild(el);
|
||||
}
|
||||
});
|
||||
if (editorStyle) {
|
||||
existingEditorData.style.cssText = editorStyle;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return doc.body.innerHTML;
|
||||
}
|
||||
</script>";
|
||||
} else {
|
||||
$html .= "<textarea id='$id' name='$id' style='width:100%;height:300px;'>$content</textarea>\n";
|
||||
}
|
||||
|
||||
$html .= "<span class=\"sound_only\">웹 에디터 끝</span>";
|
||||
return $html;
|
||||
}
|
||||
|
||||
// 에디터 내용 저장 (TEXTAREA → DIV 대응)
|
||||
function get_editor_js($id, $is_dhtml_editor = true)
|
||||
{
|
||||
if ($is_dhtml_editor) {
|
||||
return "
|
||||
const iframe_{$id} = document.getElementById('rb-editor-frame-{$id}').querySelector('iframe');
|
||||
if (iframe_{$id} && iframe_{$id}.contentWindow) {
|
||||
iframe_{$id}.contentWindow.postMessage({
|
||||
type: 'rbeditor-get-content',
|
||||
editorId: '{$id}'
|
||||
}, '*');
|
||||
}
|
||||
";
|
||||
} else {
|
||||
return "var {$id}_editor = document.getElementById('{$id}');\n";
|
||||
}
|
||||
}
|
||||
|
||||
// 에디터 값이 비어 있는지 검사 (TEXTAREA → DIV 대응)
|
||||
function chk_editor_js($id, $is_dhtml_editor = true)
|
||||
{
|
||||
if ($is_dhtml_editor) {
|
||||
return "
|
||||
var content = document.getElementById('rb-{$id}-hidden').value;
|
||||
if (!content || content.trim() === '') {
|
||||
alert('내용을 입력해 주십시오.');
|
||||
return false;
|
||||
}
|
||||
";
|
||||
} else {
|
||||
return "if (!{$id}_editor.value) { alert(\"내용을 입력해 주십시오.\"); {$id}_editor.focus(); return false; }\n";
|
||||
}
|
||||
}
|
||||
|
||||
// Nonce 관련 상수 및 함수 정의
|
||||
if (!defined('FT_NONCE_UNIQUE_KEY'))
|
||||
define('FT_NONCE_UNIQUE_KEY', sha1($_SERVER['SERVER_SOFTWARE'] . G5_MYSQL_USER . session_id() . G5_TABLE_PREFIX));
|
||||
|
||||
if (!defined('FT_NONCE_SESSION_KEY'))
|
||||
define('FT_NONCE_SESSION_KEY', substr(md5(FT_NONCE_UNIQUE_KEY), 5));
|
||||
|
||||
if (!defined('FT_NONCE_DURATION'))
|
||||
define('FT_NONCE_DURATION', 60 * 60);
|
||||
|
||||
if (!defined('FT_NONCE_KEY'))
|
||||
define('FT_NONCE_KEY', '_nonce');
|
||||
|
||||
if (session_status() === PHP_SESSION_NONE) {
|
||||
session_start();
|
||||
}
|
||||
|
||||
function ft_nonce_create($action = '', $user = '', $timeoutSeconds = FT_NONCE_DURATION)
|
||||
{
|
||||
$secret = ft_get_secret_key($action . $user);
|
||||
set_session('token_' . FT_NONCE_SESSION_KEY, $secret);
|
||||
|
||||
$salt = ft_nonce_generate_hash();
|
||||
$time = time();
|
||||
$maxTime = $time + $timeoutSeconds;
|
||||
$nonce = $salt . '|' . $maxTime . '|' . sha1($salt . $secret . $maxTime);
|
||||
|
||||
return $nonce;
|
||||
}
|
||||
|
||||
function ft_nonce_is_valid($nonce, $action = '', $user = '')
|
||||
{
|
||||
$secret = ft_get_secret_key($action.$user);
|
||||
$token = get_session('token_'.FT_NONCE_SESSION_KEY);
|
||||
|
||||
if ($secret != $token) return false;
|
||||
if (!is_string($nonce)) return false;
|
||||
|
||||
$a = explode('|', $nonce);
|
||||
if (count($a) != 3) return false;
|
||||
|
||||
$salt = $a[0];
|
||||
$maxTime = intval($a[1]);
|
||||
$hash = $a[2];
|
||||
$back = sha1($salt . $secret . $maxTime);
|
||||
|
||||
if ($back != $hash || time() > $maxTime) return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function ft_get_secret_key($secret)
|
||||
{
|
||||
return md5(FT_NONCE_UNIQUE_KEY . $secret);
|
||||
}
|
||||
|
||||
function ft_nonce_generate_hash()
|
||||
{
|
||||
$length = 10;
|
||||
$chars = '1234567890qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM';
|
||||
$ll = strlen($chars) - 1;
|
||||
$o = '';
|
||||
|
||||
while (strlen($o) < $length) {
|
||||
$o .= $chars[rand(0, $ll)];
|
||||
}
|
||||
return $o;
|
||||
}
|
||||
@ -0,0 +1,4 @@
|
||||
body, html, * {font-family:'Malgun Gothic', dotum, sans-serif !important;}
|
||||
.font-H {font-weight: black !important;}
|
||||
.font-B {font-weight: bold !important;}
|
||||
.font-R {font-weight: normal !important;}
|
||||
BIN
plugin/editor/rb.editor/fonts/Nanumsqneo/Nanumsqneo-Bold.eot
Normal file
BIN
plugin/editor/rb.editor/fonts/Nanumsqneo/Nanumsqneo-Bold.ttf
Normal file
BIN
plugin/editor/rb.editor/fonts/Nanumsqneo/Nanumsqneo-Bold.woff
Normal file
BIN
plugin/editor/rb.editor/fonts/Nanumsqneo/Nanumsqneo-Bold.woff2
Normal file
BIN
plugin/editor/rb.editor/fonts/Nanumsqneo/Nanumsqneo-Heavy.eot
Normal file
BIN
plugin/editor/rb.editor/fonts/Nanumsqneo/Nanumsqneo-Heavy.ttf
Normal file
BIN
plugin/editor/rb.editor/fonts/Nanumsqneo/Nanumsqneo-Heavy.woff
Normal file
BIN
plugin/editor/rb.editor/fonts/Nanumsqneo/Nanumsqneo-Heavy.woff2
Normal file
31
plugin/editor/rb.editor/fonts/Nanumsqneo/Nanumsqneo.css
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'font-R';
|
||||
src: url('./Nanumsqneo-Bold.eot');
|
||||
src: url('./Nanumsqneo-Bold.eot?#iefix') format('embedded-opentype'),
|
||||
url('./Nanumsqneo-Bold.woff2') format('woff2'),
|
||||
url('./Nanumsqneo-Bold.woff') format('woff'),
|
||||
url('./Nanumsqneo-Bold.ttf') format('truetype');
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'font-B';
|
||||
src: url('./Nanumsqneo-ExtraBold.eot');
|
||||
src: url('./Nanumsqneo-ExtraBold.eot?#iefix') format('embedded-opentype'),
|
||||
url('./Nanumsqneo-ExtraBold.woff2') format('woff2'),
|
||||
url('./Nanumsqneo-ExtraBold.woff') format('woff'),
|
||||
url('./Nanumsqneo-ExtraBold.ttf') format('truetype');
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'font-H';
|
||||
src: url('./Nanumsqneo-Heavy.eot');
|
||||
src: url('./Nanumsqneo-Heavy.eot?#iefix') format('embedded-opentype'),
|
||||
url('./Nanumsqneo-Heavy.woff2') format('woff2'),
|
||||
url('./Nanumsqneo-Heavy.woff') format('woff'),
|
||||
url('./Nanumsqneo-Heavy.ttf') format('truetype');
|
||||
font-weight: black;
|
||||
}
|
||||
30
plugin/editor/rb.editor/fonts/Pretendard/Pretendard.css
Normal file
@ -0,0 +1,30 @@
|
||||
/*
|
||||
Copyright (c) 2021 Kil Hyung-jin, with Reserved Font Name Pretendard.
|
||||
https://github.com/orioncactus/pretendard
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: 'font-H';
|
||||
font-weight: black;
|
||||
font-display: swap;
|
||||
src: local('Pretendard Black'), url(./woff2/Pretendard-Black.woff2) format('woff2'), url(./woff/Pretendard-Black.woff) format('woff');
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'font-B';
|
||||
font-weight: bold;
|
||||
font-display: swap;
|
||||
src: local('Pretendard Bold'), url(./woff2/Pretendard-Bold.woff2) format('woff2'), url(./woff/Pretendard-Bold.woff) format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'font-R';
|
||||
font-weight: normal;
|
||||
font-display: swap;
|
||||
src: local('Pretendard Regular'), url(./woff2/Pretendard-Regular.woff2) format('woff2'), url(./woff/Pretendard-Regular.woff) format('woff');
|
||||
}
|
||||
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-ExtraBold.eot
Normal file
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-ExtraBold.otf
Normal file
38959
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-ExtraBold.svg
Normal file
|
After Width: | Height: | Size: 4.7 MiB |
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-ExtraBold.ttf
Normal file
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-ExtraBold.woff
Normal file
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-Light.eot
Normal file
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-Light.otf
Normal file
39357
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-Light.svg
Normal file
|
After Width: | Height: | Size: 4.8 MiB |
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-Light.ttf
Normal file
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-Light.woff
Normal file
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-Light.woff2
Normal file
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-Medium.eot
Normal file
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-Medium.otf
Normal file
39663
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-Medium.svg
Normal file
|
After Width: | Height: | Size: 4.9 MiB |
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-Medium.ttf
Normal file
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-Medium.woff
Normal file
BIN
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil-Medium.woff2
Normal file
34
plugin/editor/rb.editor/fonts/TheJamsil/TheJamsil.css
Normal file
@ -0,0 +1,34 @@
|
||||
|
||||
@font-face {
|
||||
font-family: 'font-R';
|
||||
font-weight: normal;
|
||||
src: url('./TheJamsil-Light.eot');
|
||||
src: url('./TheJamsil-Light.eot?#iefix') format('embedded-opentype'),
|
||||
url('./TheJamsil-Light.woff2') format('woff2'),
|
||||
url('./TheJamsil-Light.woff') format('woff'),
|
||||
url('./TheJamsil-Light.ttf') format("truetype");
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'font-B';
|
||||
font-weight: bold;
|
||||
src: url('./TheJamsil-Medium.eot');
|
||||
src: url('./TheJamsil-Medium.eot?#iefix') format('embedded-opentype'),
|
||||
url('./TheJamsil-Medium.woff2') format('woff2'),
|
||||
url('./TheJamsil-Medium.woff') format('woff'),
|
||||
url('./TheJamsil-Medium.ttf') format("truetype");
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'font-H';
|
||||
font-weight: black;
|
||||
src: url('./TheJamsil-ExtraBold.eot');
|
||||
src: url('./TheJamsil-ExtraBold.eot?#iefix') format('embedded-opentype'),
|
||||
url('./TheJamsil-ExtraBold.woff2') format('woff2'),
|
||||
url('./TheJamsil-ExtraBold.woff') format('woff'),
|
||||
url('./TheJamsil-ExtraBold.ttf') format("truetype");
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
h2 {font-weight: normal !important;}
|
||||
18
plugin/editor/rb.editor/image/ai/Gemini.svg
Normal file
|
After Width: | Height: | Size: 6.6 KiB |
21
plugin/editor/rb.editor/image/ai/Stability.svg
Normal file
@ -0,0 +1,21 @@
|
||||
<svg width="478" height="145" viewBox="0 0 478 145" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_146_176)">
|
||||
<rect width="478" height="145" fill="white"/>
|
||||
<path d="M31.082 107.543C42.727 107.543 50.206 101.673 50.206 92.396C50.206 85.201 45.567 80.183 37.331 78.29L32.313 77.059L31.581 76.89C27.435 75.899 25.402 74.797 25.402 71.663C25.402 68.918 27.579 67.403 31.272 67.403C43.009 67.403 47.264 71.663 47.264 71.663V62.433L47.112 62.285C46.263 61.497 41.753 57.841 31.177 57.841C20.006 57.841 13 63.521 13 72.42C13 79.487 17.566 84.361 25.801 86.417L30.987 87.662C35.342 88.703 37.519 89.839 37.519 93.153C37.519 96.182 35.152 97.887 30.987 97.887C18.987 97.887 13 91.476 13 91.476V102.544L13.154 102.707C14.02 103.566 18.694 107.543 31.082 107.543ZM88.391 106.978V96.686L86.469 96.721C85.353 96.731 83.762 96.73 81.73 96.694L81.318 96.686C76.177 96.596 74.39 94.171 74.39 88.489V69.154H87.275V58.783H74.391V48.447H62.306V58.784H55.482V69.155H62.306V89.301C62.306 101.206 68.078 106.978 79.892 106.978H88.391ZM316.835 106.978V96.686L314.913 96.721C313.797 96.731 312.206 96.73 310.174 96.694L309.762 96.686C304.621 96.596 302.834 94.171 302.834 88.489V69.154H315.719V58.783H302.834V48.447H290.749V58.784H283.925V69.155H290.749V89.301C290.749 101.206 296.521 106.978 308.335 106.978H316.835ZM131.266 58.87V65.89C128.084 60.742 122.178 57.841 115.439 57.841C102.055 57.841 92.789 67.949 92.789 82.457C92.789 96.965 101.961 106.979 115.158 106.979C121.99 106.979 127.99 104.078 131.266 98.93V105.95H142.582V58.872H131.266V58.87ZM117.441 96.98C109.833 96.98 104.762 91.102 104.762 82.892C104.762 74.784 109.931 68.804 117.441 68.804C125.049 68.804 130.608 74.784 130.608 82.892C130.608 91.102 124.951 96.98 117.441 96.98ZM181.853 57.84C174.275 57.84 169.746 62.425 166.59 67.205V37.27H154.505V105.985H166.229V99.131C169.295 104.091 175.27 106.701 181.853 106.701C194.479 106.701 203.678 96.78 203.678 82.892C203.678 69.093 195.651 57.84 181.853 57.84ZM179.238 96.162C171.504 96.162 166.119 90.288 166.119 82.358C166.119 74.526 171.993 68.945 179.532 68.945C187.168 68.945 192.064 74.428 192.064 82.358C192.063 90.288 186.678 96.162 179.238 96.162ZM220.228 50.543C223.986 50.543 226.785 47.824 226.785 44.146C226.785 40.388 224.066 37.749 220.228 37.749C216.47 37.749 213.751 40.388 213.751 44.146C213.752 47.905 216.47 50.543 220.228 50.543ZM214.226 106.724H226.311V59.255H214.226V106.724ZM269.651 50.543C273.409 50.543 276.208 47.824 276.208 44.146C276.208 40.388 273.489 37.749 269.651 37.749C265.893 37.749 263.174 40.388 263.174 44.146C263.175 47.905 265.893 50.543 269.651 50.543ZM263.649 106.724H275.734V59.255H263.649V106.724ZM238.797 106.155H251.252V37H238.797V106.155ZM329.442 124.654H342.814L368.501 58.985H355.977L344.751 91L333.488 58.985H319.599L338.221 104.827L329.442 124.654Z" fill="url(#paint0_linear_146_176)"/>
|
||||
<path d="M428.639 58.87V65.89C425.457 60.742 419.551 57.841 412.812 57.841C399.428 57.841 390.162 67.949 390.162 82.457C390.162 96.965 399.334 106.979 412.531 106.979C419.363 106.979 425.363 104.078 428.638 98.93V105.95H439.954V58.872H428.639V58.87ZM414.815 96.98C407.208 96.98 402.136 91.102 402.136 82.892C402.136 74.784 407.305 68.804 414.815 68.804C422.423 68.804 427.982 74.784 427.982 82.892C427.981 91.102 422.325 96.98 414.815 96.98ZM458.443 50.543C462.201 50.543 465 47.824 465 44.146C465 40.388 462.281 37.749 458.443 37.749C454.685 37.749 451.966 40.388 451.966 44.146C451.967 47.905 454.685 50.543 458.443 50.543ZM452.441 106.724H464.526V59.255H452.441V106.724Z" fill="url(#paint1_linear_146_176)"/>
|
||||
<path d="M375.638 107.335C379.779 107.335 382.864 104.339 382.864 100.286C382.864 96.1451 379.868 93.2371 375.638 93.2371C371.497 93.2371 368.501 96.1451 368.501 100.286C368.5 104.427 371.496 107.335 375.638 107.335Z" fill="#E80000"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_146_176" x1="190.728" y1="37.0237" x2="190.728" y2="124.676" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9D39FF"/>
|
||||
<stop offset="1" stop-color="#A380FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_146_176" x1="427.586" y1="37.7746" x2="427.586" y2="107.002" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9D39FF"/>
|
||||
<stop offset="1" stop-color="#A380FF"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_146_176">
|
||||
<rect width="478" height="145" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
BIN
plugin/editor/rb.editor/image/no_image.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/1.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ff919b;}.cls-2{fill:#fff;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M140.41,74.34c.22,6.25-1.11,12.25-2.91,18.2-2.06,6.79-4,13.62-6.7,20.21-2.08,5.16-4.71,10.11-8.91,13.86-2.39,2.14-4.87,4.46-8.12,5.35-2.68.73-5.21,1.91-8,2.45-3.53.7-6.79,2.28-10.25,3.25A61,61,0,0,1,78,140.24c-1.22,0-2.44.13-3.66.18a30.64,30.64,0,0,1-6.47-.55,37.3,37.3,0,0,0-8.58,0,49.15,49.15,0,0,1-8.23-.14c-2-.21-4.08-.5-6.12-.76a26.66,26.66,0,0,1-9.16-3.46,82.88,82.88,0,0,1-11.2-7.55,40.85,40.85,0,0,1-10.64-12.16c-1.95-3.41-4.1-6.7-6.18-10A49.52,49.52,0,0,1,2.09,91.29,49.4,49.4,0,0,1,.61,80.45C.48,74.28.15,68.1,0,61.93a62.36,62.36,0,0,1,.9-8.5C1.42,49,3.31,45,5,41c1-2.48,1.71-5.06,2.77-7.52A27.41,27.41,0,0,1,18.49,21c3.73-2.39,7.27-5,10.79-7.73,2-1.56,4.39-2.76,6.58-4.15A72.47,72.47,0,0,1,45.8,4.19,34.91,34.91,0,0,1,55,2.08c4.38-.63,8.8-.89,13.17-1.56A34.68,34.68,0,0,1,71.73.28C74.66.11,77.6.05,80.54,0s6,.86,8.89,1.51a90.45,90.45,0,0,1,23.71,9,16,16,0,0,1,3.13,2.29c3.13,2.86,6.27,5.72,9.33,8.65a40.11,40.11,0,0,1,6.06,8.16,40.75,40.75,0,0,1,5.82,14c.64,3.52,1.29,7,1.83,10.57a126.74,126.74,0,0,1,.9,14C140.29,70.22,140.34,72.28,140.41,74.34Z"/><path class="cls-2" d="M100.7,60.31A12.86,12.86,0,0,0,94,49a4.17,4.17,0,0,0-2.21-.62c-2.06,0-4.12-.09-6.17,0a14.06,14.06,0,0,0-10.1,4.55c-.88,1-1.72,2-2.74,3.17-.34-1.59-.69-2.94-.92-4.3-.73-4.4-3.6-6.86-7.51-8.38a15.58,15.58,0,0,0-4.52-1c-3.12-.21-6.34-.6-9.25.88a23.75,23.75,0,0,0-7.47,6A9.8,9.8,0,0,0,41,53.44,40.21,40.21,0,0,0,40.1,63.7a14.22,14.22,0,0,0,1.84,6.65c2.27,4.1,5.06,7.9,7.25,12.05a30.64,30.64,0,0,0,6.75,8.68c1.54,1.36,3,2.86,4.62,4.07,1.87,1.38,3.3,3.61,6.08,3.42,1-.07,2.16.14,3-.41a36.82,36.82,0,0,0,3.09-2.51c4-3.1,8.27-5.73,12.37-8.67a54.82,54.82,0,0,0,9.21-8.46,31.61,31.61,0,0,0,4-5.7C100.48,68.9,100.82,64.68,100.7,60.31Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/10.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#fff;}.cls-3{fill:#292929;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M140.42,64a49.73,49.73,0,0,0-1.37-10c-1.12-4.81-2.45-9.57-3.85-14.31h0c-.73-2.39-1.44-4.78-2.2-7.17A39.61,39.61,0,0,0,128.24,22c-1.91-4.64-5.67-7.69-9.51-10.51-2.74-2-6.19-2.79-9.42-3.87-1.73-.58-3.53-.94-5.21-1.64A82.77,82.77,0,0,0,94,2.51h0A48.41,48.41,0,0,0,80.34.43c-2.89-.09-5.79-.74-8.66-.2a23.9,23.9,0,0,1-6.59.25c-.75-.07-1.52,0-2.28,0A24.23,24.23,0,0,0,57.71,0c-3-.16-6.06.37-9.09.55A27.66,27.66,0,0,0,37.09,4.29a81.4,81.4,0,0,0-14,9.46A32.3,32.3,0,0,0,16,22.17h0A131.8,131.8,0,0,0,6.21,37.7a24.25,24.25,0,0,0-1.09,2.63A61.32,61.32,0,0,0,1.5,53.58,59,59,0,0,0,1,61.32H1a12.23,12.23,0,0,0-.24,2.27c-.15,3-.28,5.94-.53,8.9A51.13,51.13,0,0,0,.41,83.27,44,44,0,0,0,3.19,94.53c1.05,2.61,1.92,5.3,2.75,8a27.65,27.65,0,0,0,10,14.25c1.18.9,2.47,1.66,3.67,2.54,5,3.66,9.62,7.84,15,11,4.68,2.71,9.33,5.47,14.72,6.61,3.66.77,7.37,1.12,11.05,1.75,5.45.94,11,1.32,16.46,1.74,3.71.28,7.26-.65,10.86-1.26a87.54,87.54,0,0,0,17.12-5.25c3.7-1.44,7.35-3,10.32-5.77,1.65-1.53,3.3-3.07,5.09-4.43,6.42-4.9,10.66-11.44,14.15-18.56a42.26,42.26,0,0,0,2.87-9.72q1.05-4.85,1.79-9.75a75.08,75.08,0,0,0,.66-7.62C140,73.35,140.54,68.7,140.42,64Z"/><path class="cls-2" d="M38.28,39a3.63,3.63,0,0,1-.91.13c-3-.28-5.4,1.13-7.76,2.77C25.2,44.94,20.36,47.36,16,50.5c-4,2.89-8,5.89-12,8.81C3,60,2,60.65,1,61.32a59,59,0,0,1,.54-7.74A61.32,61.32,0,0,1,5.12,40.33,24.25,24.25,0,0,1,6.21,37.7,131.8,131.8,0,0,1,16,22.17a16.58,16.58,0,0,1,4.38-.48c2-.11,4-.05,6.06,0A4.44,4.44,0,0,0,29,20.9Q41,13.3,53.15,5.81c2.78-1.74,5.68-3.28,8.5-4.95A3.42,3.42,0,0,1,62.81.45c.76,0,1.53,0,2.28,0A23.9,23.9,0,0,0,71.68.23c2.87-.54,5.77.11,8.66.2A48.41,48.41,0,0,1,94,2.51c0,.62-.56.77-1,1C84.24,9.05,74.77,13.3,66,18.78c-.58.36-1.15.72-1.91,1.23,1.83,0,3.42,0,5,0,3.29,0,6.53.57,9.81.61s6.31.4,9.47.52c2.29.1,4.58.06,6.87,0,9-.16,17.92.32,26.88.26,1.67,0,3.34.25,5,.21a1.9,1.9,0,0,1,1.09.31A39.61,39.61,0,0,1,133,32.47c.76,2.39,1.47,4.78,2.2,7.17,0,.5-.27.58-.75.56q-9.93-.33-19.85-.61c-5.43-.15-10.87-.26-16.31-.39-.51.06-.63-.37-.8-.68a10,10,0,0,1-1.67-3.6c0-.28-.13-.57-.42-.63a7.34,7.34,0,0,0-3.06,0c-.52.12-.42.66-.32,1.07A11.12,11.12,0,0,0,93.28,38c.21.36.66.69.34,1.21-.53,0-1.06-.07-1.59-.06-7.52.18-15-.25-22.51-.75-8.16-.53-16.3-.15-24.45.06-.53,0-1.06.1-1.59.16-.23-.5.16-.78.42-1.08.69-.8,1.24-1.7,2-2.47a4,4,0,0,0-5,1.3,24.78,24.78,0,0,1-1.57,2C39,38.66,38.77,39,38.28,39Z"/><path class="cls-3" d="M69.15,62.69a17.77,17.77,0,0,1,4.86.58c4.72,1.43,7.1,4.94,8.47,9.39a44.76,44.76,0,0,1,1.2,7.08c.07.5-.17.63-.53.67a13,13,0,0,1-3.3,0c-.93-.15-.83-1-.86-1.64a21.19,21.19,0,0,0-2.16-8.93c-1.27-2.48-2.94-4.6-5.77-5.53a8.2,8.2,0,0,0-6.62.48,17.86,17.86,0,0,0-6,4.52c-1.38,1.8-3,1.1-4.61,1.12-.68,0-.78-.58-.29-1,3.47-3.17,6.9-6.42,12-6.47C66.79,62.91,68,62.77,69.15,62.69Z"/><path class="cls-2" d="M42.8,51c0-3.28-.46-3.39,2.4-3.4a29.54,29.54,0,0,0,4.5-.16,24.13,24.13,0,0,1,7,.45,1.63,1.63,0,0,1,1.49,1.83,6.28,6.28,0,0,1-.6,3,12.54,12.54,0,0,0-.75,2.86c-.08.29-.15.59-.24.88-.85,2.7-2,3.43-4.78,3.2-1.67-.14-3.34-.31-5-.33a1.92,1.92,0,0,1-2-1.25C43.81,55.48,42.83,52.85,42.8,51Z"/><path class="cls-2" d="M87.52,58.63a43.26,43.26,0,0,1-5.15-.43,4.58,4.58,0,0,1-3.6-4,11.73,11.73,0,0,1,.76-5.71c.12-.27.13-.64.45-.76,2-.76,4-1.7,6.34-1.2,1.81.39,3.66.63,5.45,1.13.37.11.88.22.87.62,0,1.58.93,2.92.85,4.55a6.41,6.41,0,0,1-3,5.41C89.62,58.79,88.56,58.55,87.52,58.63Z"/><path class="cls-3" d="M50.68,48.32c3.79,0,4,.11,3.74,3.83a31.63,31.63,0,0,1-.7,4.62,1.29,1.29,0,0,1-1.25,1.1,7.2,7.2,0,0,1-1.14.07c-1.24,0-2.9.5-3.59-.47a7.91,7.91,0,0,1-1.22-4.17c0-.72,0-1.45,0-2.17,0-1.94.74-2.71,2.69-2.81C49.69,48.3,50.19,48.32,50.68,48.32Z"/><path class="cls-3" d="M82.27,52.35V50.41c0-1.79,0-1.81,1.72-2.21a12.77,12.77,0,0,1,4-.11,13.24,13.24,0,0,1,2.21,2.4,34.89,34.89,0,0,1-.09,4.9,1.77,1.77,0,0,1-1.31,1.54,10.83,10.83,0,0,1-5,.44c-.85-.09-1.3-.46-1.31-1.37,0-1.21-.11-2.43-.17-3.64Z"/><path class="cls-3" d="M93.62,39.26a26.28,26.28,0,0,1-1.86-3.62c-.41-1.41-.22-1.7,1.22-1.74.38,0,.76,0,1.14,0,1.06,0,2.11-.25,2.17,1.56,0,1.39,1.19,2.57,2,3.76,1.06,2.34,3,3.91,4.87,5.5.71.61,1.51,1.11,2.25,1.78-1.86.16-3.7.8-5.49-.54A22.34,22.34,0,0,1,93.62,39.26Z"/><path class="cls-3" d="M46.33,34.94c-.42-.79-1.52-.33-2.32-.44a3.24,3.24,0,0,0-3.38,1.74A10.47,10.47,0,0,1,38.28,39a18.9,18.9,0,0,1-4,4.2c-.46.32-1.27.59-1.15,1.13s1,.32,1.51.4a3.94,3.94,0,0,0,2.87-.28,16.74,16.74,0,0,0,4-3.7,11.19,11.19,0,0,1,1.95-2.06,19.28,19.28,0,0,0,1.68-2.27C45.49,35.8,46.62,35.47,46.33,34.94Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/11.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#fff;}.cls-3{fill:#292929;}.cls-4{fill:#d6674c;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M139.7,62.52c.32,2.91-.35,5.46.32,7.88.93,3.34,0,6.6-.13,9.89-.14,3-.75,6-1.09,9.08s-1.49,5.75-2.33,8.6a20,20,0,0,1-4.07,7.33,79.6,79.6,0,0,0-5.35,6.24,55.76,55.76,0,0,1-3.44,4.89,67,67,0,0,1-8.67,8.17A108,108,0,0,1,101,133.91a41.64,41.64,0,0,1-19.33,6c-2.31.08-4.61.44-6.93.55a22.09,22.09,0,0,1-5.78-.58,29,29,0,0,0-7.25-.66,22.62,22.62,0,0,1-9.33-1.63c-1.82-.73-3.82-.61-5.75-.84-4.77-.58-9.37-1.6-13.47-4.27-2.53-1.64-4.69-3.75-7.07-5.58-1-.73-1.92-1.44-2.85-2.2-4.94-4.07-7.78-9.58-10.17-15.37a11.67,11.67,0,0,0-1.45-2.12,38.07,38.07,0,0,1-6.34-14A68.16,68.16,0,0,0,3.2,86.47a76.06,76.06,0,0,1-3-14.11A42.06,42.06,0,0,1,.74,61c.43-2.87.53-5.84,1.6-8.53,2.9-7.29,5.85-14.53,10.89-20.73,3.17-3.9,6.12-8,9.54-11.69a36.88,36.88,0,0,1,10.35-8c1.44-.72,2.81-1.58,4.19-2.41A21,21,0,0,1,42.6,7.15a22.13,22.13,0,0,0,5-2.24,21.28,21.28,0,0,1,9.16-2.76C60,1.94,63,1,66.12.35a15.32,15.32,0,0,1,6-.1,30.34,30.34,0,0,0,8.14.41,46,46,0,0,1,15.65,1.8,47,47,0,0,1,7.82,2.79A30.81,30.81,0,0,1,112,11.43a18.62,18.62,0,0,0,1.93,1.73c2.62,2,4.62,4.6,6.92,6.91,3.75,3.77,6.41,8.35,9.16,12.83A133.64,133.64,0,0,1,137.19,46a5.2,5.2,0,0,1,.37.95C138.92,52.16,140.4,57.41,139.7,62.52Z"/><path class="cls-2" d="M37.9,41.15a15.14,15.14,0,0,1,.68-4.85,3.48,3.48,0,0,1,3-2.65,17.76,17.76,0,0,1,7,.47c3.62.79,5.21,3.56,4.11,7.09a13.29,13.29,0,0,1-2.45,4.25,4.53,4.53,0,0,1-3.62,1.45A12.85,12.85,0,0,1,40,45.72c-1.47-.74-2.23-1.67-2.06-3.31C37.93,42.07,37.9,41.73,37.9,41.15Z"/><path class="cls-2" d="M97.88,36a3.18,3.18,0,0,0-1.69-2.93c-4.24-2-14-3.83-14.28,3.55a11.91,11.91,0,0,1-.23,1.77c-.45,2.46,0,3.44,2.17,4.73a11,11,0,0,0,5.61,1.26A7.21,7.21,0,0,0,95.51,42C97.15,40.18,98.07,38.47,97.88,36Z"/><path class="cls-3" d="M93.42,44.8c-1.22.35-1.89-.72-2.81-1.12a24.37,24.37,0,0,1-7.1-4.82c-1.07-1-1-1.56-.15-2.73a21.47,21.47,0,0,1,2.7-2.86A14.26,14.26,0,0,0,89,30a1.39,1.39,0,0,1,1.41-.73c.18,0,.37,0,.56,0a6.09,6.09,0,0,1,2.84.28,22.86,22.86,0,0,1-1.59,2.26c-1.31,1.45-2.88,2.62-4.13,4.13s-1.26,1.81.13,3A25.09,25.09,0,0,0,95,43.28c.48.19,1.3.28,1.18,1s-.87.41-1.37.46S93.87,44.77,93.42,44.8Z"/><path class="cls-3" d="M35.67,33.83c1.77-.44,3.37-.66,4.83.06A46,46,0,0,0,45,36.1a24,24,0,0,1,5.25,3.19c.82.56.57,1.36.08,2-1.68,2.1-3.41,4.15-5.13,6.22-.51.62-1.24.47-1.89.46-.84,0-2.1.38-2.4-.33s.69-1.54,1.32-2.13a50.93,50.93,0,0,0,3.68-4.37c.54-.64.44-1.09-.24-1.67-2.29-2-5.16-2.83-7.75-4.21A14.47,14.47,0,0,1,35.67,33.83Z"/><path class="cls-4" d="M74.72,81.48a15.06,15.06,0,0,1-5.82-.89A6,6,0,0,1,65,76.11a74.78,74.78,0,0,1-1.36-9.54c-.33-3.24.18-6.43.23-9.63,0-.57.2-.92.82-.95,4.06-.16,8.09-.78,12.15-1a64.33,64.33,0,0,0,8-1.26c2.07-.35,4.09-1,6.25-.68,1.38.18,1.67.32,2,1.62a4.05,4.05,0,0,1,.12,1.69c-.51,2.83-.3,5.75-.93,8.55a34.82,34.82,0,0,1-2.78,8.46,19.12,19.12,0,0,1-5.17,6.22,9,9,0,0,1-4.47,1.5A28.51,28.51,0,0,1,74.72,81.48Z"/><path class="cls-3" d="M93.12,50.66a29,29,0,0,0-6,.24c-2.45.26-4.91.42-7.36.75-4.58.61-9.15,1.32-13.72,2-2.22.3-4.47.43-6.68.78-4.89.79-9.63,2.36-14.54,3.06-.27,0-.6.12-.61.39s.35.45.64.46A15.11,15.11,0,0,0,49,58.18c2.84-.64,5.68-1.23,8.5-2,1-.26,1,.09.76.83A33.93,33.93,0,0,0,57.08,69.3c.2,4.2,1.32,8,5.21,10.35A19.66,19.66,0,0,1,64.06,81a4.49,4.49,0,0,0,2.48.9c2.1.16,4.2.1,6.56.13A38.61,38.61,0,0,0,81,81.45c5-1.19,9.39-3.12,11.36-8.41a22.35,22.35,0,0,0,1.14-4.8c.73-5.5.4-11.06.64-16.59C94.17,50.89,93.78,50.72,93.12,50.66Zm-3.44,1.81c-.3,5.75.13,11.52-.83,17.25-1,6.11-4.82,9.41-10.55,10.8-3,.73-6.11.42-9.17.44a1.26,1.26,0,0,1-.73-.25,35.16,35.16,0,0,1-4.71-4c-1.6-1.82-1.81-4.16-2.1-6.42a33.26,33.26,0,0,1,1.22-14,1.47,1.47,0,0,1,1.41-1.27c2.74-.28,5.48-.69,8.2-1.1.52-.07.56.11.57.51.07,3,.62,5.88.64,8.84,0,.94,0,1.88,0,2.81s.26,1.2,1.16,1.23c3.22.12,3.21.15,3.22-3a69,69,0,0,0-.6-8.62,6.4,6.4,0,0,1,0-1.45,1.13,1.13,0,0,1,1.13-1.13c3.44-.45,6.87-1,10.33-1.24C89.33,51.86,89.72,51.75,89.68,52.47Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/12.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#292929;}.cls-3{fill:#fff;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M.32,74.9c0-4.21-.15-8.42,0-12.62A103,103,0,0,1,1.75,49.17a45.32,45.32,0,0,1,2.92-8.49,90.55,90.55,0,0,1,12.2-21.53,21,21,0,0,1,3.8-3.43c2.37-1.91,4.74-3.82,7.07-5.78,3.4-2.85,7.4-4.6,11.42-6.37C45.14.93,51.42.13,57.88.06c3.06,0,6.11-.12,9.18,0,3.51.14,7,.73,10.45,1.05,2.17.19,4.31.51,6.47.73A43.5,43.5,0,0,1,96.92,5.4a213.47,213.47,0,0,1,24.37,12c4.35,2.61,8.53,5.69,11.25,10,2,3.18,3.88,6.49,4.42,10.54.61,4.51,1.14,9.07,2.12,13.56a53.51,53.51,0,0,1,1.3,13.88c-.18,3.93-.82,7.84-1.19,11.76a23.15,23.15,0,0,1-1.38,5.49,25.53,25.53,0,0,0-1,6.84,65.52,65.52,0,0,1-3.59,16.62,27.7,27.7,0,0,1-5.42,8.65c-4.41,5.25-9,10.27-14.9,14a31.89,31.89,0,0,1-3.84,2c-5.2,2.35-10.41,4.7-15.75,6.74-4.43,1.68-9.08,2.2-13.74,2.73-5.28.59-10.48-.25-15.7-.84-3.62-.4-7.25-.87-10.88-1.2a39.19,39.19,0,0,1-9-2c-2.34-.78-4.77-1.32-6.91-2.61-4-2.42-8.24-4.61-12.35-6.93-5.63-3.16-9.34-8-11.88-13.82a91.88,91.88,0,0,0-5.21-10,70.49,70.49,0,0,1-4-8.93A57.14,57.14,0,0,1,.47,83.29,36.72,36.72,0,0,1,.05,74.9Z"/><path class="cls-2" d="M70.85,70.09a26.8,26.8,0,0,1-8.76-1,14.17,14.17,0,0,1-6.42-3.69,25.87,25.87,0,0,1-6.13-8.53,51.49,51.49,0,0,1-1.95-6.64c-.06-.22-.1-.45-.15-.67-.5-2.09-.5-2.09,1.7-2.11s2.31,0,2.81,2.23c.77,3.45,1.55,6.94,3.55,9.9,4.55,6.76,8.39,9.62,16.83,9.48,4.51-.08,7-2.7,9.32-5.91,2-2.81,3.08-6.07,4.21-9.29q.47-1.33,1-2.67c0-.11.14-.23.11-.32-.55-1.79.83-1.4,1.69-1.41,2.68,0,3.53-.29,2.29,2.85-1.5,3.8-2.46,7.84-4.93,11.2-2.13,2.89-4.41,5.69-8.31,6.19A37.3,37.3,0,0,1,70.85,70.09Z"/><path class="cls-3" d="M94.78,37.88c-.06-1,0-1.9,0-2.85h0c0-1.25,0-2.5,0-3.75,0-.41,0-.87-.47-.94-1.26-.19-2.25-1.12-3.5-1.26a22.84,22.84,0,0,0-10.09.82,1.71,1.71,0,0,0-1.34,2c.34,2.39.44,4.82,1.57,7.05A5.21,5.21,0,0,0,85.11,42a18,18,0,0,0,6.33-.25C93.43,41.24,94.93,40.38,94.78,37.88Z"/><path class="cls-3" d="M58.49,31.35a7.59,7.59,0,0,0-5.33-3.51c-2.28-.41-4.42.39-6.64.54a1,1,0,0,0-.69.35c-.69,1.36-1.69,2.59-1.84,4.19-.19,2,.33,3.92.4,5.89a2,2,0,0,0,.67,1.28c1.28,1.35,3.07,1.42,4.69,1.69,2.39.38,4.57-.47,6.75-1.5a3.47,3.47,0,0,0,2.27-3.53c0-.6,0-1.21,0-2.08S59.16,32.4,58.49,31.35Z"/><path class="cls-2" d="M91.36,33.46a2.18,2.18,0,0,0-1.21-2,17.14,17.14,0,0,0-2.69-.43,10.3,10.3,0,0,0-2.9.23c-.77.06-1.17.39-1.13,1.22.08,2.24.13,4.47.17,6.71a.69.69,0,0,0,.66.76,16.26,16.26,0,0,0,3.75.2,7.06,7.06,0,0,0,1.88-.38c.74-.27.83-.46,1.06-1.18A16.08,16.08,0,0,0,91.36,33.46Z"/><path class="cls-2" d="M54.93,30.6c.64.23.75.77.83,1.35.27,2-.09,4.09.55,6.09.18.58-.39,1-.9,1.13a14.13,14.13,0,0,1-6.15.71A1.85,1.85,0,0,1,47.61,38c-.09-2-.08-3.94,0-5.91a1.59,1.59,0,0,1,1.15-1.63,3.36,3.36,0,0,0,1.34.06,19.82,19.82,0,0,1,4.68.12Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/13.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#fff;}.cls-3{fill:#292929;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M72.94.05c4.25.11,8.49.33,12.72.84a25.34,25.34,0,0,1,5.45,1.57C94.82,3.78,98.63,4.86,102,7a38.37,38.37,0,0,1,5.94,4.33c1.44,1.36,3.08,2.5,4.53,3.84,2.17,2,3.87,4.47,6.2,6.27a31,31,0,0,1,8.46,10.39,71.47,71.47,0,0,0,5.21,7.76c3.21,4.62,5.62,9.54,6.28,15.25.31,2.7,1.21,5.28,1.58,8a25.93,25.93,0,0,1-1,11.35c-.76,2.41-1.64,4.78-2.49,7.16a11.36,11.36,0,0,0-.56,2.83,21.59,21.59,0,0,1-2.53,7.91,33.16,33.16,0,0,0-2.92,7.68c-.83,3.35-2.77,6.13-4.47,9-2.44,4.17-5,8.28-8.69,11.38a75.71,75.71,0,0,1-10.4,7.54A103.83,103.83,0,0,1,91.5,135.5a49,49,0,0,1-11,2.46c-2.54.33-4.9,1.36-7.38,1.92a18.55,18.55,0,0,1-7.78.25c-1.63-.33-3.28-.64-4.94-.82-2.28-.24-4.3-1.34-6.42-2.07-3.45-1.18-6.83-2.55-10.21-3.92a9,9,0,0,1-2.72-1.6,11.09,11.09,0,0,0-3.09-2.07c-2.36-1-4.46-2.52-6.79-3.57-2.67-1.2-4.75-3.23-7.07-5-4.2-3.15-6.58-7.68-9.41-11.9-1.84-2.73-3.51-5.56-5.1-8.45A74.9,74.9,0,0,1,3.9,87.87c-1-3.07-1.75-6.21-2.59-9.31a28.84,28.84,0,0,1-1-12.43,75.8,75.8,0,0,1,3-12.75,56.09,56.09,0,0,1,4.46-9.19A21.35,21.35,0,0,0,9.5,39.63a16,16,0,0,1,3.07-5.86,81.62,81.62,0,0,0,7-9.54,10.7,10.7,0,0,1,2.67-2.78c2.84-2.13,5.43-4.58,8.16-6.85A73.7,73.7,0,0,1,41.51,7.14a38.16,38.16,0,0,1,7.87-2.93C51.58,3.54,53.8,3,56,2.51q5.51-1.09,11-2A23.46,23.46,0,0,1,72.94.05Z"/><path class="cls-2" d="M62.88,31.1c1.71.84,2.94,2.18,2.44,4.46a11.68,11.68,0,0,1-4.87,7.62,11.89,11.89,0,0,1-6.64,1.66,8.06,8.06,0,0,1-5.05-1.29,2,2,0,0,1-.82-.85c-1-2.75-2.08-5.48-1.1-8.51.31-1,1.08-1.33,1.79-1.79a5.58,5.58,0,0,0,1.53-1.34c1.9-2.55,6.46-1.66,9-1.11A16,16,0,0,1,62.88,31.1Z"/><path class="cls-2" d="M94.93,31.44a4.52,4.52,0,0,1,.69,5.43,27.77,27.77,0,0,1-2.08,3.82c-1,1.32-1.9,2.49-3.78,2.53a14.9,14.9,0,0,1-4.6-.23,17.74,17.74,0,0,1-3.67-1.76,3.52,3.52,0,0,1-1.84-2.79A15.07,15.07,0,0,0,79.36,37c-.59-2.37.22-4.5,1.16-6.58a3.28,3.28,0,0,1,2-1.48c2-.77,5-.72,7.17-.68a5,5,0,0,1,1.44.19,5.43,5.43,0,0,1,1.51.91A14.35,14.35,0,0,1,94.93,31.44Z"/><path class="cls-3" d="M83.78,56.11A6.76,6.76,0,0,1,79.84,55c-.41-.24-.49-.69-.62-1.11a13.83,13.83,0,0,0-2.12-4.75,1.56,1.56,0,0,0-1.37-.69,19.89,19.89,0,0,0-8.42,1.88c-6.26,2.85-10.63,7.63-14.15,13.33a2.84,2.84,0,0,0-.62,1.61c0,.53-.39.43-.69.4a7.8,7.8,0,0,1-3.06-1.12c-.66-.39-.37-.93-.15-1.43a28.09,28.09,0,0,1,3.89-5.77A28.68,28.68,0,0,1,65,48a17.46,17.46,0,0,1,12.25-.63,8.74,8.74,0,0,1,5.56,6A14.91,14.91,0,0,0,83.78,56.11Z"/><path class="cls-3" d="M62.88,32.37l-1,2.89a1.57,1.57,0,0,1-1.44,1.11,16.76,16.76,0,0,1-5.29,0c-.56-.08-.84-.28-.8-.9.08-1.33.12-2.68.17-4a7.88,7.88,0,0,0,.1-2.47,1.08,1.08,0,0,1,1-1.26,24.41,24.41,0,0,1,5-.27,2.45,2.45,0,0,1,2.42,2.49A12.85,12.85,0,0,1,62.88,32.37Z"/><path class="cls-3" d="M86.4,30.43c0-.11.07-.22.1-.33.12-.68.25-1.35.34-2a.88.88,0,0,1,.75-.83c2.1-.31,4.18-.51,6.09.8a1.38,1.38,0,0,1,.7,1.1,27,27,0,0,1,0,4c-.57,1.43-1.12,2.72-3.07,2.86-1.37.09-2.74.12-4.1.15-.6,0-.87-.28-1-.88-.33-1.29.11-2.52.1-3.78C86.47,31.18,86.13,30.77,86.4,30.43Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/14.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#d6674c;}.cls-2{fill:#292929;}.cls-3{fill:#fff;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M77.3,140.43c-5.75-.25-11.51,0-17.23-.9a52.78,52.78,0,0,1-10.32-2.91c-3.47-1.31-6.94-2.58-10.41-3.86a71.43,71.43,0,0,1-8.92-4.25c-3.39-1.81-6.9-3.47-9.87-5.95-6.47-5.39-11.73-11.76-14.8-19.8a25.19,25.19,0,0,0-1.61-3.59C1.67,94.81.91,90,.48,85.11q-.52-6-.48-12a57.11,57.11,0,0,1,4.76-23c3-6.68,5.64-13.5,9.25-19.87,1.57-2.76,3.86-4.85,5.93-7.14a63.42,63.42,0,0,1,8.7-7.85c2.6-2,5.29-3.84,7.93-5.77,1.19-.88,2.37-1.81,3.48-2.8A25.91,25.91,0,0,1,50.68,1.34,31.73,31.73,0,0,1,59.16.57,71.64,71.64,0,0,0,66.78.12c4-.43,7.88.38,11.75,1.07,5.31.94,10.15,3.38,15.22,5.1,2.53.86,5,1.79,7.51,2.76a57.43,57.43,0,0,1,12.62,7.36c5.06,3.69,8.77,8.68,12.72,13.44A56.49,56.49,0,0,1,133,38.37a55,55,0,0,1,4.28,10.38A67.06,67.06,0,0,1,140.38,63c.27,3.14-.56,6.12-1,9.16-.8,5-2.82,9.65-4.46,14.4a13.88,13.88,0,0,0-.86,3.94c-.08,2.19-1.09,4.12-1.7,6.16A66.63,66.63,0,0,1,121.57,118c-2,2.6-3.68,5.36-5.53,8a37.81,37.81,0,0,1-5.15,6.55,4.14,4.14,0,0,1-1.18.83c-1.93.8-3.26,2.5-5.19,3.4a43.16,43.16,0,0,1-9.55,2.8c-5.07,1.08-10.22.81-15.35.87Z"/><path class="cls-2" d="M61.08,71.15c-.11,0-.22,0-.34,0-2.2.18-2.33-.71-1.51-2.63a16.71,16.71,0,0,1,5.94-7.23c2.53-1.75,5.4-1.8,8.34-1.56,3.6.29,5.73,2.46,7.28,5.45a8,8,0,0,0,.64,1.19c1.22,1.53,1.36,3.37,1.57,5.2.13,1.16-.08,2.38.71,3.42.24.32-.2.42-.43.44a18.83,18.83,0,0,1-3.6,0c-.51-.06-.75-.38-.8-.92a26.27,26.27,0,0,0-.64-5.12,15.19,15.19,0,0,0-5.45-8.19c-1.24-.89-2.41-.15-3.42.55a16.78,16.78,0,0,0-6,7.57,1.79,1.79,0,0,1-.13.32c-.26.42.23.87,0,1.29a.29.29,0,0,1-.18.13l-1.91.14Z"/><path class="cls-3" d="M56.17,55.78a22.58,22.58,0,0,1-3.56-.24c-1.82-.12-2.87-1.44-3.94-2.67a1.62,1.62,0,0,1-.18-1.42c.53-2.53,1.11-5,1.68-7.56a1.65,1.65,0,0,1,.94-1.19,18,18,0,0,1,11-1.78,5.13,5.13,0,0,1,2.55,1.36,1.53,1.53,0,0,1,.6,1.51c-.93,3.35-1.36,6.84-3.22,9.92C61,55.6,59.38,56,57.44,55.89Z"/><path class="cls-3" d="M95.19,46.72v1.92c0,2.86-1.69,4.49-4.11,5.49a16.27,16.27,0,0,1-7.93,1.22c-1.57-.17-2.25-.44-2.25-1.94,0-3.41-1-6.78-.43-10.22.16-1,.56-1.39,1.59-1.44,1.72-.08,3.44-.32,5.15-.52a14.62,14.62,0,0,1,4.72.18c1.55.34,3.5,1.61,3.29,3.84a14.42,14.42,0,0,0,0,1.47Z"/><path class="cls-2" d="M64.6,36.73a1,1,0,0,1-.81-.31c-2.86-2.55-6.39-3.88-9.77-5.5-2.49-1.18-5.05-2.12-7.59-3.15-.33-.13-.82-.24-.85-.66s.5-.6.85-.77,1-.42,1.56-.63a2.53,2.53,0,0,1,2.51.23c1.52,1,3.41,1.09,5,2,2.08,1.13,4.27,2,6.45,3a26,26,0,0,1,6,3.85c.41.32.38.6-.06.86A7.88,7.88,0,0,1,64.6,36.73Z"/><path class="cls-2" d="M91,28.44a7.82,7.82,0,0,1,3.51,1.69c.42.36.13.49-.28.63A100.33,100.33,0,0,0,81.5,36c-.54.26-1.06.56-1.58.85-.14.07-.37.14-.38.22-.07,1.64-1.14.67-1.7.57A7.27,7.27,0,0,1,75,36.3c-.57-.41-.67-.71.08-1.1a128.58,128.58,0,0,1,15.3-6.61C90.58,28.53,90.76,28.49,91,28.44Z"/><path class="cls-2" d="M60.72,43.73a3.82,3.82,0,0,0-1.43-.56c-.43-.38-.9,0-1.35-.06h0a10.22,10.22,0,0,0-4.57,0l-.2,0c-.57.16-.61.66-.73,1.12-.3.22-.65.43-.64.86,0,1.89-.72,3.69-.68,5.57.05,2.27.59,2.8,2.64,2.86.3,0,.59.12.89.12,2.77,0,4.2,0,5.1-2.36.76-1.32.64-2.87,1.14-4.26a1.85,1.85,0,0,0,.43-1.19h0a.38.38,0,0,0,.06-.13A1.36,1.36,0,0,0,60.72,43.73Z"/><path class="cls-2" d="M91.79,44c.11-1.25-.38-1.76-1.57-1.74a.59.59,0,0,0-.19-.05c-.14-.32-.42-.22-.67-.23-.07-.06-.12-.07-.17-.05a10.42,10.42,0,0,0-4,0,2,2,0,0,0-1.93,1.85,9.34,9.34,0,0,0-.33,4.45A7.58,7.58,0,0,0,83,49.32c0,.26,0,.52,0,.78,0,1.65.1,1.83,1.7,2a19.26,19.26,0,0,0,5-.06,1.84,1.84,0,0,0,1.72-1.63A4.05,4.05,0,0,0,92.16,48C92.28,46.64,91.67,45.35,91.79,44Zm-2.68-1.94Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/15.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffb340;}.cls-2{fill:#292929;}.cls-3{fill:#fff;}.cls-4{fill:#d6674c;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M82.08,140.43h-25c-2.25-.27-4.52-.45-6.76-.9a32,32,0,0,1-6.76-2.06c-3.11-1.37-6.2-2.8-9.38-4-.79-.3-1.55-.67-2.32-1-4.23-1.68-7.52-4.62-10.53-7.93a8.07,8.07,0,0,1-1-1.28q-3-4.94-6.24-9.76c-.35-.55-.68-1.11-1.08-1.63A72.16,72.16,0,0,1,4.12,95.81c-.4-1-.92-1.93-1.25-3A55.25,55.25,0,0,1,.8,80.2C.63,77.8.49,75.4.21,73A28.22,28.22,0,0,1,0,69.57C0,65.7,0,61.83,0,58a21.74,21.74,0,0,1,.69-5.57c.6-2.33,1.21-4.67,1.73-7a74.24,74.24,0,0,1,3.31-8.94,69.71,69.71,0,0,1,5.74-11.5,9.3,9.3,0,0,1,1.29-1.75c3.39-3.32,6.51-6.91,9.92-10.2,3-2.88,6.63-4.75,10.15-6.83,6-3.53,12.56-4.64,19.25-5.55A76.94,76.94,0,0,1,61.43,0c5.35-.06,10.7,0,16.05,0A44,44,0,0,1,91.87,2.36c7.43,2.46,14.88,4.91,22.09,8,5.05,2.16,9.87,4.88,13.57,9a26.6,26.6,0,0,1,6.38,11c1.28,4.8,2.38,9.66,3.94,14.39a65,65,0,0,1,2.53,12.14,15.78,15.78,0,0,1,0,2.06c0,4.11,0,8.21,0,12.31a7.1,7.1,0,0,1-.24,2.16,17.74,17.74,0,0,0-.58,5.8,86.22,86.22,0,0,1-1.31,18.07,32.09,32.09,0,0,1-4.71,11.14,82.3,82.3,0,0,1-10.09,13.06,29.32,29.32,0,0,1-6,4.92,186.78,186.78,0,0,1-16.33,9.32,44.1,44.1,0,0,1-18.52,4.62A.74.74,0,0,0,82.08,140.43Z"/><path class="cls-2" d="M78.43,31a7.67,7.67,0,0,1-3.36-1.61c-.5-.4-.3-.65.19-.92,1.47-.8,2.89-1.7,4.39-2.45,3.75-1.89,7.39-4,11-6a1.08,1.08,0,0,1,.86-.07,9.14,9.14,0,0,1,2.86,1.34c.66.44.81.79-.07,1.23-3.52,1.75-6.85,3.85-10.38,5.58-1.61.79-3.13,1.74-4.69,2.62C79,30.82,78.78,31.06,78.43,31Z"/><path class="cls-2" d="M46.89,26.34c6.18.4,11.4,1.16,16.28,3.45.86.41,1.66.95,2.5,1.4.56.3.46.61.07,1a8.07,8.07,0,0,1-2.8,1.71,1.34,1.34,0,0,1-1.18-.22c-5.67-3.42-11.93-4.42-18.42-4.52-.34,0-.86.28-1-.2s.36-.63.66-.86C44.4,27,45.89,26.16,46.89,26.34Z"/><path class="cls-2" d="M84.55,66.92c-.17-.7-.2-1.43-.32-2.15-.51-3-.89-6-2.7-8.54-1.66-2.33-3.69-4.43-6.63-4.66A19.22,19.22,0,0,0,63,54.2a13.37,13.37,0,0,0-6.37,9.46c-.17,1-.43,1.93-.69,2.89-.5,1.84-.51,1.83,1.3,2.22.08,0,.18,0,.22,0,.92,1,2.18.7,3.28.68,3.44-.08,6.87-.27,10.3-.42v-.23c4.15-.18,8.31-.38,12.46-.52C84.48,68.29,84.81,67.92,84.55,66.92Zm-5.43.62c-5.93.26-11.86.56-17.79.83-1.23,0-1.4-.21-1.08-1.42s.66-2.56,1-3.85h0a10.67,10.67,0,0,1,3-6.27,13,13,0,0,1,7.16-4,3.22,3.22,0,0,1,2.56.72,12,12,0,0,1,4.81,7h0c.56,2,.77,4,1.15,6C80.1,67.26,79.83,67.51,79.12,67.54Z"/><path class="cls-3" d="M61.78,39c-3-.71-6-.44-9-.33a11.87,11.87,0,0,0-5.57,1.83.93.93,0,0,0-.42,1c.06,1.26.11,2.52.16,3.78h-.06c0,1.14.15,2.29.13,3.43a1.64,1.64,0,0,0,1.44,1.78,29.27,29.27,0,0,0,8.71.87c3.71-.3,5.44-2,6-4.4a18.23,18.23,0,0,0,.6-5.55C63.7,39.74,63.35,39.33,61.78,39Z"/><path class="cls-3" d="M90.51,36.89a81.59,81.59,0,0,0-10.72-.1c-1.76.17-2,.36-1.94,2.07a26.57,26.57,0,0,1-.48,5.9c-.57,2.89.57,4,3.49,4.2,3.12.22,6-.58,9-1.26A2.92,2.92,0,0,0,92,46a19.92,19.92,0,0,0,1.3-5.51C93.2,37.65,92.71,37,90.51,36.89Z"/><path class="cls-4" d="M61.25,63.1c3-.32,5.94-.84,8.94-.89a5.15,5.15,0,0,1,3.46.88A.86.86,0,0,0,75,63c1-1.11,2-2.17,3.68-2.21.06,0,.12-.18.18-.28.56,2,.77,4,1.15,6,.13.69-.14.94-.85,1-5.93.26-11.86.56-17.79.83-1.23,0-1.4-.21-1.08-1.42S60.91,64.39,61.25,63.1Z"/><path class="cls-2" d="M55.61,40.14l.57.08c2.5.32,2.5.32,2.61,2.93.08,1.75.13,3.51.24,5.26a1.1,1.1,0,0,1-.9,1.33,16.6,16.6,0,0,1-5.5.85c-1.18-.05-1.77-.5-1.85-1.7-.14-2.21-.24-4.42-.33-6.63-.05-1.24.25-1.52,1.83-1.79C53.36,40.06,54.42,39.47,55.61,40.14Z"/><path class="cls-2" d="M89.15,42.48c0,.91.13,1.82.1,2.73,0,1.61-.61,2.15-2.2,2.3a16.71,16.71,0,0,1-5-.14,1.62,1.62,0,0,1-1.43-1.75c0-2.21,0-4.42.08-6.62,0-.74.49-1,1.16-1.16a13.62,13.62,0,0,1,6,.62,1.58,1.58,0,0,1,1.32,1.73c0,.75.06,1.52.09,2.28Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/16.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#fff;}.cls-3{fill:#d6674c;}.cls-4{fill:#292929;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M.17,73.41c-.72-5.33,1-10.54,2.38-15.77C4.06,52,6.06,46.5,7.88,41c1.93-5.86,5.53-10.64,9.51-15.18C19,24,20.56,22.16,22.24,20.44c1.83-1.88,4-3.39,5.87-5.24s3.58-3.42,5.32-5.18A26.19,26.19,0,0,1,48.57,2.34C52.81,1.71,57.05,1,61.26.25A27.6,27.6,0,0,1,67.62.12a49.21,49.21,0,0,1,6.87.56c2,.38,3.93.9,5.89,1.37,5,1.22,10.1,2.38,15.11,3.72A56.12,56.12,0,0,1,109.21,12a48.37,48.37,0,0,1,8,6.29c2.8,2.54,5.42,5.29,8.2,7.86a39.75,39.75,0,0,1,9.08,12.93,87.52,87.52,0,0,1,5.21,13.83c1,3.66.7,7.31.49,11-.33,5.58-2,10.88-3.22,16.27a4.45,4.45,0,0,0-.23,1.22c.33,4.44-1.25,8.54-2.12,12.77-1.46,7-4.71,13.25-8.3,19.32a33.87,33.87,0,0,0-2.42,4.47,78.15,78.15,0,0,1-3.78,6.9,9.42,9.42,0,0,1-3.19,3.87c-1.8,1.08-3,2.91-4.84,4a44.83,44.83,0,0,1-14.63,5.11c-7.36,1.24-14.8,1.86-22.24,2.46a50.61,50.61,0,0,1-11.79-.33c-5.07-.77-9.95-2.33-14.94-3.43-6.78-1.51-13.1-4.29-19.41-7.09a31.85,31.85,0,0,1-8.6-5.87c-3-2.76-6.1-5.37-8.28-8.86-2-3.13-3.63-6.43-5.68-9.49-3.18-4.73-4.1-10.16-5-15.57C.61,84.34-.24,79,.17,73.41Z"/><path class="cls-2" d="M81.14,42.91a6.54,6.54,0,0,0,2,1.78c2.66,1.64,6,2.45,9,1.39s5.1-4.39,4.2-7.38a10.38,10.38,0,0,0-2.73-4c-3.15-3.3-5.65-4.2-9.67-1.3C81.28,35.35,79.08,39.92,81.14,42.91Z"/><path class="cls-2" d="M40.66,41.55a6.06,6.06,0,0,0,3.19,6.27,8.15,8.15,0,0,0,5.55-.06,10.88,10.88,0,0,0,4-1.9,7.16,7.16,0,0,0,1-9.57C49.84,30.49,41.45,35.37,40.66,41.55Z"/><path class="cls-3" d="M76.65,56.38a29.13,29.13,0,0,1,1.1,8.15c0,.89-.51.81-1.09.81-5,0-9.93.13-14.89-.25a20.76,20.76,0,0,1-4.23-.34c-.68-.19-.75-.45-.56-1a36,36,0,0,1,1.66-4,3.7,3.7,0,0,1,2.49-.28,10.41,10.41,0,0,1,2.43.28A3.2,3.2,0,0,0,66.74,59c.47-.42,1.07-.68,1.57-1.07C70,56.59,72,56.56,74,56.65A4.92,4.92,0,0,0,76.65,56.38Z"/><path class="cls-4" d="M84.25,33c1.83-.3,2.81.66,3.58,2.2,1.17,2.34,1.33,2.4,3,.46,1.42-1.64,3.13-1,4.75-.91.69,0,.31.52,0,.84a53.25,53.25,0,0,1-4.39,3.83c-.57.49-.67.8-.15,1.41,1.32,1.55,1.9,3.53,2.83,5.31a.75.75,0,0,1-.64,1.15,12.61,12.61,0,0,1-3.13,0c-.27,0-.56-.1-.58-.42-.11-1.34-1-2.36-1.41-3.6-.24-.77-.74-1.27-1.61-.43a22.21,22.21,0,0,0-2,1.74c-.45.58-1.1.34-1.67.38s-1.12,0-1.68,0c-.37,0-.81,0-1-.4s.27-.66.55-.88c1.46-1.11,2.9-2.24,4.41-3.27.65-.45.73-.86.31-1.45-1.21-1.72-1.72-3.89-3.43-5.31-.43-.35.1-.53.32-.56C83,33,83.62,33,84.25,33Z"/><path class="cls-4" d="M56.06,44.93a4.08,4.08,0,0,1-3.44-1.19,3,3,0,0,0-.36-.26c-2.54-1.65-2.33-1.81-3.74,1.14-1.11,2.33-1,2.39-3.61,2.31-1.72,0-1.65,0-1.13-1.62a21.16,21.16,0,0,1,2.31-4.2c.39-.65.26-1-.34-1.3-1.56-.87-3.1-1.76-4.65-2.63-.15-.09-.37-.15-.37-.37s.26-.37.47-.38c1.9,0,3.84-.53,5.49,1,1.05,1,1.15.9,1.84-.32s1.39-2.39,2-3.61a1.35,1.35,0,0,1,1.19-.86c1,0,1.95,0,2.91,0,.46,0,.9.1.45.82-1.23,2-2.34,4-3.57,5.95-.39.63-.26.9.32,1.19,1.9,1,3.92,1.67,5.56,3.08.32.28,1,.42.87.88s-.77.27-1.2.3S56.51,44.93,56.06,44.93Z"/><path class="cls-4" d="M80.92,55.85a8.13,8.13,0,0,0-6.45-5.63,21.06,21.06,0,0,0-9.24.28c-5.12,1.32-9.2,4-11.11,9.28-.58,1.61-1.51,3.1-1.73,4.84-.12.95.11,1.48,1.23,1.44,5.65-.19,11.28.53,16.92.35,3.48-.11,6.95.13,10.43-.14,1-.08,1.23-.42,1.25-1.36A28.27,28.27,0,0,0,80.92,55.85Zm-4.26,9.49c-5,0-9.93.13-14.89-.25a20.76,20.76,0,0,1-4.23-.34c-.68-.19-.75-.45-.56-1a36,36,0,0,1,1.66-4h0c1.89-5,5.74-7.67,10.83-8.55,3.14-.54,6.44,2,7.18,5.19h0a29.13,29.13,0,0,1,1.1,8.15C77.75,65.42,77.24,65.34,76.66,65.34Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/17.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 142.47 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#292929;}.cls-3{fill:#fff;}.cls-4{fill:#ffb340;}.cls-5{fill:#d6674c;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M68.56.07a81.89,81.89,0,0,1,15,.76c6.44,1,12.62,2.8,18.07,6.7,2.5,1.79,5.29,3.13,7.65,5.16A18.16,18.16,0,0,1,111.62,15a38.24,38.24,0,0,0,7,6.43,18.93,18.93,0,0,1,4.93,5.42,16.57,16.57,0,0,0,2.38,2.89,77.85,77.85,0,0,1,6.76,7.18,27.78,27.78,0,0,1,4.92,11c.64,3,1.43,6,2.25,8.9,1,3.62.51,7.24.25,10.87a42.55,42.55,0,0,1-1.9,9.3c-.9,2.94-1,6-1.5,9a95.56,95.56,0,0,1-4.36,15.9c-2.07,5.62-4.46,11.18-8.43,15.72-4.43,5.08-8.94,10.07-15,13.21-3.12,1.61-6.05,3.64-9.34,4.89a76.93,76.93,0,0,1-16.84,4.21,76.3,76.3,0,0,1-11,.51,55.78,55.78,0,0,1-15.85-2.13c-3.45-1-7.1-1.23-10.53-2.4a39.24,39.24,0,0,1-13.21-7,23,23,0,0,0-5-3.25,47,47,0,0,1-14.21-10.94,77.51,77.51,0,0,1-7.53-10.4A13.46,13.46,0,0,1,4,100.86C3,97.63,2.48,94.3,1.73,91S.84,84.66.39,81.48c-.8-5.6-.2-11.19.31-16.75.42-4.68.92-9.38,1.79-14,.5-2.69,2-4.94,2.89-7.47a17.63,17.63,0,0,1,2.53-4.7c2.27-3.18,4.82-6.22,6.63-9.67,2.22-4.22,5.51-7.37,8.54-10.81.9-1,2-1.92,2.79-3,2.68-3.4,6.31-5.59,9.72-8C38,5.36,40.92,4.76,43.8,4.32a42.79,42.79,0,0,0,8.81-2.43A36.74,36.74,0,0,1,62.1.11,63.22,63.22,0,0,1,68.56.07Z"/><path class="cls-2" d="M94.42,40.53a8.07,8.07,0,0,1-4.45.19,41.67,41.67,0,0,1-10.31-3.08,11.53,11.53,0,0,1-1.11-.56c-1.28-.8-1.43-1.71-.43-2.88A19.11,19.11,0,0,1,82.32,31a25.19,25.19,0,0,0,3.22-2.27c1.57-1.46,3.43-1.05,5.25-1,.2,0,.48.1.49.37s-.28.31-.46.43l-7.7,5.33a3.69,3.69,0,0,0-.41.38c-1.15,1.2-1,1.93.47,2.66a43,43,0,0,0,9.87,3A2,2,0,0,1,94.42,40.53Z"/><path class="cls-2" d="M81.83,49.58a4.06,4.06,0,0,0-4.16-4.29h-.9a15.26,15.26,0,0,0-4,.38c-3.88.88-7.75,1.81-11.63,2.7a76.67,76.67,0,0,0-9.28,2.3c-.76.27-1,.57-.74,1.37s.5,1.89.72,2.85c.8,3.39,1.76,6.7,4,9.47A9.21,9.21,0,0,0,59.13,67a18.92,18.92,0,0,0,11.52,1.78c2.73-.51,5.2-1.63,6.6-4.27A36.32,36.32,0,0,0,79,60.89C80.46,57.25,81.94,53.61,81.83,49.58Zm-4.64,3.09a36,36,0,0,1-1.48,5.09h0a22.86,22.86,0,0,1-3.87,8c-1.74,2.14-4.33,2.48-7.26,1.39-4-1.47-6-4.55-7.19-8.39h0c-.93-2.12-1.1-4.45-1.79-6.65-.24-.76.45-.86.91-1a58,58,0,0,1,6.34-1.55c4.1-.93,8.2-1.86,12.29-2.86a1.18,1.18,0,0,1,1.53.63C77.74,49,77.45,50.89,77.19,52.67Z"/><path class="cls-3" d="M57.56,32.83a4.61,4.61,0,0,0-2.75-4.21c-2.42-1.16-5-.87-7.44-.62a10.46,10.46,0,0,0-5,1.4A2.85,2.85,0,0,0,40.8,32c.05,2.25,0,4.51.25,6.76a2.92,2.92,0,0,0,3,2.94c1.87.12,3.75.2,5.63.3A18.52,18.52,0,0,0,56,41.25c.57-.2,1-.44,1.11-1.11A49.71,49.71,0,0,0,57.56,32.83Z"/><path class="cls-4" d="M120.7,50.58a23.9,23.9,0,0,1-2.53.18c.21-6.22-3.53-13.26-7.65-17.82a20.93,20.93,0,0,0-8-5.92c-.32-.12-.63-.25-.94-.4s-.74-.24-.72-.63.46-.46.77-.56a20.79,20.79,0,0,0,10.87-8.32c2.91-4.3,4.22-8.81,5.41-13.75,1.52-.15,3.56-1.09,5-.43,1.17.53.74,1.83.75,3.05a28.16,28.16,0,0,0,.73,6.73A11.38,11.38,0,0,0,128.77,19c2.86,2.2,5.52,4.68,8.62,6.58a24.81,24.81,0,0,0,4.13,1.82c.38.15.87.29.94.74s-.48.61-.81.8a37.55,37.55,0,0,0-10.26,8.1,61,61,0,0,0-4.9,6.21c-.43.66-2.71,6.74-3,6.81A23.77,23.77,0,0,1,120.7,50.58Z"/><path class="cls-2" d="M46.06,40.34A2,2,0,0,1,45,38.6a49.24,49.24,0,0,1,.11-6.54,1.56,1.56,0,0,1,1.65-1.48,25.66,25.66,0,0,1,5.61.26c.43.06.64.2.8.73.78,2.59.4,5.21.34,7.83,0,.53-.39.78-.84,1-.26.15-.58,0-.85.17a7.84,7.84,0,0,0-1.36.14c-.17,0-.35,0-.48-.12H49A7.57,7.57,0,0,1,46.06,40.34Z"/><path class="cls-5" d="M57.39,58.72c2.29-1.43,4.82-1.55,7.41-1.41a3.73,3.73,0,0,1,2.56,1.28c.41.45.7.58,1.29.11,1.72-1.37,3.81-1.14,5.83-1.07.41,0,.82.08,1.23.13a22.86,22.86,0,0,1-3.87,8c-1.74,2.14-4.33,2.48-7.26,1.39C60.62,65.64,58.57,62.56,57.39,58.72Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/18.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#292929;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M138.93,62.71a37,37,0,0,0,.6,7.24,48.82,48.82,0,0,1,.85,12.14c-.13,3.93-1.07,7.68-1.75,11.5a14.49,14.49,0,0,1-1.62,4,98.93,98.93,0,0,1-6.88,10.63,74.7,74.7,0,0,1-5.75,7.18,70.94,70.94,0,0,1-6.85,6.34c-4.37,3.77-9,7.2-13.72,10.57a15.62,15.62,0,0,1-3.87,2.05c-1.77.63-3.54,1.25-5.28,2-2.38,1-5,.91-7.51,1.43-3.44.72-7.06.57-10.35,2a4.58,4.58,0,0,1-2,.27c-3.42-.08-6.82.29-10.24.31a78,78,0,0,1-12.77-1,24.24,24.24,0,0,1-10.49-4.61,38.79,38.79,0,0,0-6.77-4,42.3,42.3,0,0,1-10.21-7.11,103.47,103.47,0,0,1-13.07-14.21A45.24,45.24,0,0,1,1.94,88.67c-.5-3-1.6-5.89-1.28-8.94C1.08,75.77.5,71.89.07,68A17.11,17.11,0,0,1,.5,62.56a18.12,18.12,0,0,0,.36-3.67A75.76,75.76,0,0,1,1,49.36a24.63,24.63,0,0,1,3.33-9.92c1.81-2.93,3.6-5.87,5.3-8.87,5.58-9.79,20-18.85,30.44-22.55a31.47,31.47,0,0,0,4.83-2.4,35.66,35.66,0,0,1,5.21-2.14A49.48,49.48,0,0,1,58.4.92C61.2.43,64-.23,66.87.08a38.82,38.82,0,0,0,5.06,0A35.87,35.87,0,0,1,82.58,1.67C86.89,2.9,91.25,4,95.25,6,97.55,7.2,99.7,8.68,102,9.79a80,80,0,0,1,10.61,6.55,35.79,35.79,0,0,1,9.44,9.21c.94,1.36,2,2.61,3,3.91a20.29,20.29,0,0,1,3,4.74A12.27,12.27,0,0,0,130,37.37,29.31,29.31,0,0,1,135.7,50a31.07,31.07,0,0,0,1.83,5A17.42,17.42,0,0,1,138.93,62.71Z"/><path class="cls-2" d="M54.4,34.47c2.18.07,4.73-.34,7.17.33a33.85,33.85,0,0,0,9.35.74c2.35,0,4.66-.55,7-.73a121.87,121.87,0,0,1,18.72,0,18.15,18.15,0,0,1,5.85,1.41c2.12.91,2.8,1.86,2.69,4.12A27.57,27.57,0,0,1,100.8,54a6.36,6.36,0,0,1-3.74,2.5c-3.46,1.08-7,1-10.56.78a33.74,33.74,0,0,1-6-.62c-4.32-1-6.72-3.8-7.73-8-.66-2.76-1.58-5.46-2.35-8.19a.85.85,0,0,0-.94-.73,26.81,26.81,0,0,1-3.59-.16c-.91-.14-1.18.21-1.33,1-.7,3.6-1.93,7.06-2.83,10.6-.7,2.77-2.33,4.73-5.2,5.27a26.83,26.83,0,0,1-7.05.2c-3-.24-5.94-.52-8.89-1a16.36,16.36,0,0,1-4.08-1.49,2.25,2.25,0,0,1-1-1,35,35,0,0,1-3.71-13.41,3.33,3.33,0,0,1,1.79-3.35,11,11,0,0,1,5.13-1.38C43.84,34.57,49,34.67,54.4,34.47Z"/><path class="cls-2" d="M71,76.35a26.3,26.3,0,0,1-4.67-.46c-3.46-.75-5.06-3.34-6.44-6.18-.29-.6-.06-.93.61-.95.38,0,.75-.05,1.12-.08a2.75,2.75,0,0,1,3.15,1.75c1.08,2.37,2.62,4.47,5.59,4.79a6.69,6.69,0,0,0,3.25-.63,24.21,24.21,0,0,0,10-7.89,25.3,25.3,0,0,0,2.89-3.85c.36-.72,1-.78,1.73-.74,1,.06,2.35-.45,2.83.36.3.49-.75,1.66-1.37,2.38-2.49,2.88-4.66,6.07-8,8.1C77.7,75.34,75.38,76.47,71,76.35Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/19.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160.75 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#292929;}.cls-3{fill:#fff;}.cls-4{fill:#8cbbe8;}.cls-5{fill:#d6674c;}.cls-6{fill:#2a2a2a;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M65.45.7c2.44,0,4.88,0,7.32,0A18.48,18.48,0,0,0,78.46.26,8.44,8.44,0,0,1,81.3,0c3.27.13,6.55.35,9.83.38C95.94.44,100.46,1.85,105,3c3.36.86,6.48,2.53,9.9,3.19,2.6.5,5,1.63,7.51,2.35a9.18,9.18,0,0,1,4.32,2.22c1.47,1.57,3.45,2.45,5,4a41.18,41.18,0,0,1,6.07,9c3,5.46,4.55,11.48,6.42,17.36a122.44,122.44,0,0,1,4.29,15.77,47.53,47.53,0,0,1,.64,10.79c-.25,4.76-.23,9.54-.56,14.3A90.4,90.4,0,0,1,147,92.83c-.55,2.84-1.09,5.67-1.92,8.44-1.2,4-3.49,7.45-5.55,11a41.06,41.06,0,0,1-9,10.28c-2,1.7-3.79,3.55-5.72,5.28-2.89,2.6-6.45,4.06-9.95,5.58a95.34,95.34,0,0,1-23.45,6.84,34.14,34.14,0,0,1-5.72.08c-6.76-.09-13.43-1.18-20.15-1.8-7.36-.69-14-3.34-20.37-7-5.12-2.95-9.69-6.63-14.5-10-1.75-1.23-3.63-2.28-5.32-3.58a27,27,0,0,1-9.45-12.66c-1.49-4.25-3.12-8.45-4.8-12.62a28.55,28.55,0,0,1-1.3-5.79,44.62,44.62,0,0,1-1-8.84c.19-6.87.34-13.74.74-20.6a57.69,57.69,0,0,1,2.79-13.26c2.13-7,6.36-12.9,10.16-19a57,57,0,0,1,4.67-6.78,44,44,0,0,1,7.71-7A87.86,87.86,0,0,1,46.29,4,30.14,30.14,0,0,1,57.92.91C60.42.7,62.92.23,65.45.7Z"/><path class="cls-2" d="M112.4,45.5a10.49,10.49,0,0,1-1.24-.15,63.05,63.05,0,0,0-13.44-.89c-8.85.35-17.7.72-26.55,1A75.83,75.83,0,0,0,54,47.84a28.47,28.47,0,0,0-5,1.58c.47.5,1,.61,1.13,1.19.41,1.47,1,2.89,1.42,4.35a29.6,29.6,0,0,0,8.82,13.68,23,23,0,0,0,13.64,5.82,36.35,36.35,0,0,0,9.42-.73,37,37,0,0,0,20-10.44,44.72,44.72,0,0,0,10.23-15.7C114.31,46.14,113.93,45.61,112.4,45.5Zm-3.28,2.37a37.08,37.08,0,0,1-3.27,6.55,25.46,25.46,0,0,1-3.41,5,4.28,4.28,0,0,1-1.09,1h0A35.37,35.37,0,0,1,80.72,72.85C73,74.51,67.54,71.15,62.56,66a14.68,14.68,0,0,1-2-2.61h0A21.06,21.06,0,0,1,57,57.2c-.79-2.23-1.54-4.47-2.35-6.7-.25-.7-.15-1,.65-1.26a66.09,66.09,0,0,1,16.52-2.69c8.48-.26,16.95-.64,25.42-1a48.71,48.71,0,0,1,11.05.69C109.6,46.51,109.6,46.51,109.12,47.87Z"/><path class="cls-3" d="M68.65,32.33c-1.71-2.47-3-4.59-6.18-5.24-2.19-.44-5.18-1-7.06.58-2.91,2.41-3.18,10.69.82,12.28,3.4,1.35,7,1.73,10.5,0A5.27,5.27,0,0,0,68.65,32.33ZM57.08,28Z"/><path class="cls-3" d="M105.76,28.18c-.88-2.76-3-3.71-5.78-4-2.14-.22-6.14-.61-7.63,1.27-1.3,1.64-1.21,3.46-1.17,5.32l.06,1.2a1.79,1.79,0,0,0,.5,1.26c.17.39.34.77.5,1.16,1.15,2.84,4.27,4.14,7.14,4.35C103.84,39.07,106.9,31.8,105.76,28.18Z"/><path class="cls-4" d="M150.26,71.46c-1.1.16-2,.89-3,1.21a7.9,7.9,0,0,1-2.69.34c-1.41-.08-2.82,0-4.23,0-6.14-.07-10.17-3.24-12.75-8.61-.91-1.89-2-3.66-3-5.51-1.6-3-2.39-6.25-3.48-9.41-2-5.68-7.77-24,5.31-19.51A113.91,113.91,0,0,1,137,34.4c3.79,1.77,7.79,3.12,11.26,5.54,2.49,1.74,5.42,3,7.45,5.26,3.69,4.18,5.86,9,4.74,14.78-.7,3.55-3,6.09-5.67,8.32a33.43,33.43,0,0,1-3,2c-.33.24-.76.36-1,.76Z"/><path class="cls-4" d="M13.89,74.21A27.4,27.4,0,0,1,1.68,64.15c-2.45-3.55-2-7.42-.16-11.09C3.81,48.44,8,45.75,12.31,43.37c2.9-1.6,6-2.89,9-4.35,3.26-1.58,6.79-2.22,10.28-3,3.31-.74,6.61-2.15,10.05-2.08,3.6.07,3.83,2.6,3.2,5.52a110.47,110.47,0,0,1-2.85,11.19c-.67,2.06-1.31,4.13-2,6.2a44.8,44.8,0,0,1-2.49,5.63,23.32,23.32,0,0,1-1.27,2.43,20.52,20.52,0,0,1-18,10.1,9.31,9.31,0,0,1-2.05-.09A6.56,6.56,0,0,1,13.89,74.21Z"/><path class="cls-5" d="M60.52,63.43c5.06-2,10-1,14.93.55a1.1,1.1,0,0,0,1.45-.41A17.41,17.41,0,0,1,87.78,56.7c3.55-.72,7.2-.86,10.55,1.15a10.1,10.1,0,0,1,3,2.57A35.37,35.37,0,0,1,80.72,72.85C73,74.51,67.54,71.15,62.56,66A14.68,14.68,0,0,1,60.52,63.43Z"/><path class="cls-6" d="M57.08,28c3.91.09,6.94,2.14,9.86,4.44a.81.81,0,0,1,.13,1.29q-2.16,2.81-4.3,5.64c-.58.78-1.45.6-2.22.61s-1.87.44-2.25-.24S59,38.5,59.41,37.9c.94-1.34,1.92-2.66,3-3.92.56-.66.31-1-.23-1.47a16.43,16.43,0,0,0-4-2.37c-.87-.39-1.72-.8-2.58-1.21-.39-.44-.06-.66.27-.88a.47.47,0,0,1,.26-.22A1,1,0,0,1,57.08,28Z"/><path class="cls-6" d="M101.78,25.39c.2.49-.26.67-.48.92a37.67,37.67,0,0,1-4,3.94c-.79.67-.87,1.21-.12,2a44.19,44.19,0,0,0,5.15,4.11l-.29.45a3.09,3.09,0,0,1-1,.42,12.66,12.66,0,0,1-2.82,0,24,24,0,0,1-5.66-4.47,4.28,4.28,0,0,1-.45-.91,2.88,2.88,0,0,1,.19-1.33c1.54-1.76,3.26-3.33,4.9-5A2,2,0,0,1,98.9,25c.81.2,1.65,0,2.47.16Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/2.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#618dd3;}.cls-2{fill:#fff;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M0,69.72C.11,64.36.36,59,.2,53.54A26.67,26.67,0,0,1,2.52,41.75c1.2-2.68,3-5,4.47-7.55,1-1.68,1.9-3.4,3-5,2-3,5-5.1,7.78-7.3A24.17,24.17,0,0,1,23,18.56c1-.42,1.41-1.44,2.18-2.1a40.71,40.71,0,0,1,13.3-8,43.07,43.07,0,0,0,6.19-3,37.64,37.64,0,0,1,5-2A51.53,51.53,0,0,1,57.91,1a34.31,34.31,0,0,1,8.63-.9,37.65,37.65,0,0,0,4.75,0C75.8-.24,80,1.1,84.3,2.18a69.75,69.75,0,0,1,17.4,7.45c3.67,2.08,7.26,4.28,10.73,6.65a36.31,36.31,0,0,1,9.45,9.09,41.21,41.21,0,0,0,3.25,4.17c1.88,2.07,2.73,4.73,4.25,7,.69,1,1.3,2.12,2.08,3.07,3.77,4.63,5.17,11.91,6.77,17.5,2.06,7.22,2.34,17,2.15,24.56a70.67,70.67,0,0,1-1.55,10.86,17.38,17.38,0,0,1-1.83,5,106.39,106.39,0,0,1-6.91,10.64,77.34,77.34,0,0,1-5.7,7.1,70.58,70.58,0,0,1-7,6.42c-4.39,3.78-9.06,7.22-13.79,10.57a11.75,11.75,0,0,1-2.13,1.27c-4.66,1.94-9.34,3.81-14.48,4.21-2.21.17-4.4.68-6.62.89a3.86,3.86,0,0,0-1.32.3c-2.35,1.16-4.91,1-7.42,1.23-4.33.36-8.68.2-13,.24-2.71,0-5.37-.79-8.06-1.15-3.7-.5-6.73-2.34-9.66-4.41A40.21,40.21,0,0,0,34,130.8a42.28,42.28,0,0,1-10.16-7A106.25,106.25,0,0,1,11.14,110.1a48.12,48.12,0,0,1-10-22.38A93.58,93.58,0,0,1,0,69.72Z"/><path class="cls-2" d="M98.44,79.56a7.65,7.65,0,0,0-1.55-.23A12.38,12.38,0,0,0,99.67,77a5,5,0,0,0,1.17-5c-.45-1.57-1.31-3-3.08-3.11a3.35,3.35,0,0,1-.84-.29c-.87-.35-.89-.43-.22-1.19.15-.17.29-.35.45-.5a3.68,3.68,0,0,0,1.15-3.45,11.7,11.7,0,0,0-.5-2.2,3.56,3.56,0,0,0-1.89-2.14,11.49,11.49,0,0,0-6-1.45c-2.11.11-4.23.09-6.34.15-.74,0-1-.26-1.23-1.11A30.16,30.16,0,0,1,82,50.9a19.9,19.9,0,0,0-2.64-9.19c-.63-1.16-1.39-2.45-2.86-2.55a25.15,25.15,0,0,0-3.13,0,3.21,3.21,0,0,0-2.69,1.66,17.11,17.11,0,0,0-1.58,4.4c-.57,2.41-1,4.83-1.82,7.19-1.14,3.48-3.35,5.38-6.64,5.89a10,10,0,0,0-4,1.76,3.25,3.25,0,0,0-1.33,1.48,18.69,18.69,0,0,0-1.5,6.78c0,3.52.09,7,.09,10.54q0,2.94-.14,5.88a4.25,4.25,0,0,0,1.29,3.69,15.22,15.22,0,0,0,4.05,2.45A19.16,19.16,0,0,0,66,92.26a16.79,16.79,0,0,1,4.48.25,13.45,13.45,0,0,0,3.71.56A58.59,58.59,0,0,0,86,92.3c3.54-.65,7-1.25,10.35-2.86a10.4,10.4,0,0,0,4.07-3.59c.62-.92.26-2,.28-3A3.16,3.16,0,0,0,98.44,79.56Z"/><path class="cls-2" d="M50.28,87.16c-.3-3.82-1.18-7.62-.55-11.46.42-3.43,0-6.84-.31-10.26a9.41,9.41,0,0,0-1-4.1,2,2,0,0,0-1.73-1.05C44,60.1,41.42,60,38.79,60a1.11,1.11,0,0,0-1.24.82A23.9,23.9,0,0,0,37.06,71c.19,1.39.46,2.77.6,4.17q.6,6.26,1.18,12.51a2.08,2.08,0,0,0,1.82,2,22.4,22.4,0,0,0,9.36.54c.2,0,.56-.06.45-.34A9,9,0,0,1,50.28,87.16Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/20.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#fff;}.cls-3{fill:#d6674c;}.cls-4{fill:#292929;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M140.42,66.54a105.37,105.37,0,0,1-1.1,12.56c-.3,2.78-.48,5.58-1,8.33a125.12,125.12,0,0,1-4.29,16.89c-1.34,4.09-3.84,7.51-6.18,11.05-3.17,4.79-7.51,8.29-12,11.68-1.42,1.07-2.81,2.19-4.18,3.33a26.25,26.25,0,0,1-8.18,4.16,97.94,97.94,0,0,1-17,4.71,72.33,72.33,0,0,1-9.7,1.17,52.93,52.93,0,0,1-7.92-.68c-7-.83-13.84-2.29-20.68-3.79a32.78,32.78,0,0,1-8.54-3,91.08,91.08,0,0,1-13.65-9c-2.81-2.22-5.43-4.71-8.2-7-.87-.73-1.79-1.4-2.7-2.09a26.66,26.66,0,0,1-9.3-12.33c-.75-2.07-1.3-4.19-1.87-6.3A59.57,59.57,0,0,0,2.05,90C.71,86.52.53,82.9.16,79.29c-.51-4.78.33-9.47.83-14.18.39-3.65.86-7.29,1.2-10.94a55.08,55.08,0,0,1,2.7-11.41C7.31,35.13,12,28.85,16.76,22.62c1.55-2,3-4.11,4.63-6a41.24,41.24,0,0,1,9.28-7.64A66.8,66.8,0,0,1,45.1,1.51,19.67,19.67,0,0,1,50.88.35c2.65-.07,5.3-.33,8-.35,4.49,0,8.92,1,13.42,1.09A120.88,120.88,0,0,1,89.59,2.35a60.23,60.23,0,0,1,13.57,4.18c3.54,1.45,7.11,2.82,10.69,4.19a34,34,0,0,1,7,3.21,5.82,5.82,0,0,1,1.38,1.17c1.3,1.7,3.26,2.66,4.61,4.35A46.44,46.44,0,0,1,132,28.51c2.14,4.48,3.09,9.33,4.27,14.1,1.23,5,2.31,10,3.31,15A41,41,0,0,1,140.42,66.54Z"/><path class="cls-2" d="M98.47,24.58A15.83,15.83,0,0,0,93,22.51a19.7,19.7,0,0,0-7.75-.5,24.94,24.94,0,0,0-5.91,2.28,3.91,3.91,0,0,0-2.29,3.32c-.09,1.61-.45,3.25,0,4.85.88,3.47,1.95,6.85,6.07,7.81a11.8,11.8,0,0,0,3.36.34,12.41,12.41,0,0,0,2.6-.19,11.69,11.69,0,0,0,6.75-2.94,15.08,15.08,0,0,0,4.59-8.68A3.81,3.81,0,0,0,98.47,24.58Z"/><path class="cls-2" d="M62.9,24a2,2,0,0,0-1.07-.6c-4.11-1-8.19-2.18-12.49-1.93a6.83,6.83,0,0,0-3.52,1.31c-.23.17-2.73,2.5-2.47,2.63-2,3.22-2.55,6.5-.52,10,1,1.78,2.06,3.65,4.16,4.29a17.27,17.27,0,0,0,8.85.37c5-1.1,7.92-4.67,9.45-9.33C66.32,27.58,65.35,25.32,62.9,24Z"/><path class="cls-3" d="M97.23,29c.09,3.57-1.81,6.41-4,9.1a1.34,1.34,0,0,1-1.11.5,10.21,10.21,0,0,1-4.56-.94c-3.6-1.78-5.39-4.86-7-8.18-.67-1.38-.28-2.92,0-4.34a2.28,2.28,0,0,1,2.06-1.57,15.14,15.14,0,0,1,4.75.12c1,.19,1.27,1.12,1.64,1.89.28.58.5.77,1,.22,1.08-1.13,2.53-.88,3.86-.84,3.11.08,3.4.45,3.31,3.56C97.23,28.65,97.23,28.77,97.23,29Z"/><path class="cls-3" d="M44.23,24.72a.76.76,0,0,0,.47-.44,13,13,0,0,1,6.46-.53,3.24,3.24,0,0,1,2.48,1.36c.26.34.56.68.92.06a3.67,3.67,0,0,1,3.87-1.78c.83.07,1.66.1,2.48.21s1.54.5,1.52,1.48c0,2.17.3,4.39-.69,6.47a56.17,56.17,0,0,1-5.06,5.63,2.27,2.27,0,0,1-1.59.7,8.38,8.38,0,0,1-5.49-1.75,16.12,16.12,0,0,1-4.7-4.68,19.1,19.1,0,0,1-1.1-3.33C43.85,27,43.55,25.79,44.23,24.72Z"/><path class="cls-3" d="M56.53,59.13c.67-.12.83-.75,1.1-1.21a5.07,5.07,0,0,1,3-2.25c3-1,5.95-1.1,8.71.72.66.43.94.13,1.21-.39a8,8,0,0,1,5.38-4.5c1.94-.43,4-.57,5.62,1.08.47.47.81,1.12,1.54,1.29-2.45,2.76-4.54,5.8-7.6,8a13.68,13.68,0,0,1-17-.85C57.78,60.44,57.17,59.77,56.53,59.13Z"/><path class="cls-4" d="M89.46,43.85A71.24,71.24,0,0,0,81,43.41q-8.1.17-16.19.78a105,105,0,0,1-14.52.32,3,3,0,0,0-.79,0c-.35.07-.63.22-.61.67.07,1.85,0,3.7.17,5.55.52,5.23,2.78,9.35,7.34,12.13a18.87,18.87,0,0,0,9.92,2.66,35,35,0,0,0,4.12,0c5.24,0,9.4-2.27,12.83-6.06,1.27-1.41,2.43-2.9,3.66-4.34,2.37-2.76,3.18-6.16,3.93-9.56C91.08,44.32,90.7,44,89.46,43.85Zm-3.14,1.73c-.75,2.89-1.41,5.82-3.23,8.29h0c-2.45,2.76-4.54,5.8-7.6,8a13.68,13.68,0,0,1-17-.85c-.67-.61-1.28-1.28-1.92-1.92a14.94,14.94,0,0,1-3-8,30.72,30.72,0,0,1-.28-3.84c0-1.06.51-1.44,1.4-1.49,2.42-.14,4.83-.33,7.25-.35,3.25,0,6.48-.48,9.72-.59,4.64-.16,9.28-.65,13.93-.24C86.23,44.73,86.48,45,86.32,45.58Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/21.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 156.99 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#292929;}.cls-3{fill:#ff919b;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M91.76,140.43c-5.53-.2-11.06-.38-16.58-.63s-10.46-2-15.34-4.24a76.69,76.69,0,0,1-9.17-4.67c-2.91-1.83-5.84-3.61-8.74-5.46a17.21,17.21,0,0,0-2.29-1.29,27.53,27.53,0,0,1-13.93-15.3,89.25,89.25,0,0,0-4-8.37c-1.95-3.64-2.64-7.63-3.6-11.55-.88-3.63-.77-7.35-.93-11-.21-4.82-.65-9.63-.62-14.44a53.65,53.65,0,0,1,5.78-24.51c2.17-4.22,4.34-8.43,6.58-12.6A32.1,32.1,0,0,1,34,19.45,89.68,89.68,0,0,1,46.65,8.71,34.24,34.24,0,0,1,60.53,3.12c5.4-1.05,10.84-1,16.28-1.33a9.24,9.24,0,0,0,2.46-.47A20.21,20.21,0,0,1,84.89.4c3-.09,6-.37,9-.4,6.62-.06,13,1.33,19.36,3.09,2.39.66,4.89.82,7.26,1.48,2.59.73,5.28,1.09,7.76,2.21a5.19,5.19,0,0,1,1.52,1c1.48,1.47,3.55,2,5.06,3.48a45.13,45.13,0,0,1,9.33,13.22,239.77,239.77,0,0,1,9.72,24.13,45.07,45.07,0,0,1,2.45,14c.08,4.43.49,8.85.6,13.29a111.45,111.45,0,0,1-1,14.71,37.43,37.43,0,0,1-2.6,11c-2.71,6.2-5.76,12.16-10.81,16.87a53.93,53.93,0,0,0-4.34,4.72c-2.73,3.29-6.31,5.4-10,7.37a92.39,92.39,0,0,1-23.77,9.09c-3.36.73-6.83.58-10.26.66-.8,0-1.61,0-2.41,0Z"/><path class="cls-2" d="M104.84,38.78c-2.62.07-3-.4-2.41-3,.67-3.15,1.89-5.94,5-7.41,5.48-2.61,11.81-1.32,13.25,5.69.22,1,.35,2.11.58,3.15.15.64,0,1-.67,1-1,0-2,0-3,0-.63,0-.77-.47-.88-1a22.73,22.73,0,0,0-1.18-5,7.28,7.28,0,0,0-2.29-3.07c-.85-.66-1.36-.48-2.16,0-3.35,2.1-4.25,5.3-4.12,9,0,.52-.17.6-.52.62C105.91,38.8,105.37,38.78,104.84,38.78Z"/><path class="cls-2" d="M83.29,37.41h-.46c-2.07,0-1.85-.07-1.88-1.92a9.93,9.93,0,0,0-2.9-6.9,1.26,1.26,0,0,0-1.81-.19,12.32,12.32,0,0,0-3.76,4.11,17.31,17.31,0,0,0-2.15,4.3,1.31,1.31,0,0,1-.08.21c-.33.52-4,.6-4.38.11a.63.63,0,0,1,0-.65,20.23,20.23,0,0,1,5.63-8.24,7.75,7.75,0,0,1,4.3-1.39c1-.09,1.91,0,2.87-.05a5,5,0,0,1,4.51,2.26,11.27,11.27,0,0,1,2.34,7.5.76.76,0,0,1-.86.82H83.29Z"/><path class="cls-2" d="M96.11,58.17a4.29,4.29,0,0,1-2.61.44,13.63,13.63,0,0,1-8.23-2.36,3.62,3.62,0,0,1-1.82-2.52c-.26-1.91.3-2.69,2.17-3.3l2.28-.73a3.4,3.4,0,0,1-1.48-3.37,2.93,2.93,0,0,1,2.93-2.75,12.7,12.7,0,0,1,9,2.33c.27.2.71.36.63.74s-.59.38-1,.4h-.12a6.48,6.48,0,0,1-5.25-1.54c-1.11-.84-1.37-.61-1.67.77A2.65,2.65,0,0,0,92,49.1c.3.26.78.53.59,1s-.64.32-1,.4a13.52,13.52,0,0,0-1.66.44c-.8.27-1.73.32-1.94,1.47a2.9,2.9,0,0,0,1.21,3.12,10.23,10.23,0,0,0,5.26,2.07A2.33,2.33,0,0,1,96.11,58.17Z"/><path class="cls-3" d="M46.23,27.88c3.82.42,6.54,3,9.12,6.45,2.4,3.15,3.28,6.91,4.43,10.6,1.54,4.92,1.68,9.94,1.49,15a42.61,42.61,0,0,1-3.19,13.64,30.27,30.27,0,0,1-2,4.46c-1.72,2.95-2.42,6.3-3.78,9.39a19.15,19.15,0,0,0-.84,2.1,2.47,2.47,0,0,1-1.74,1.66,14.09,14.09,0,0,1-3.77.5,17.11,17.11,0,0,1-8.46-2c-3.2-1.69-6.6-3-9.84-4.59a59.7,59.7,0,0,1-11.23-7.62,54.23,54.23,0,0,1-13-15.71A24.18,24.18,0,0,1,.05,48.3a9.83,9.83,0,0,1,4-6.95,16.81,16.81,0,0,1,9.8-3.64A12.89,12.89,0,0,1,23.51,41,44.91,44.91,0,0,1,29,46.62a18.46,18.46,0,0,0,1-3.93,28.16,28.16,0,0,1,2.68-8c2.21-4.21,6.1-5.94,10.55-6.7A11.2,11.2,0,0,1,46.23,27.88Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/22.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#292929;}.cls-3{fill:#d6674c;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M140.39,64.63c-.07,6.1-.19,12.21-.7,18.29a34,34,0,0,1-2.06,9.22,92,92,0,0,1-6.48,13.77c-1.89,3.29-4.08,6.43-6.08,9.68-1.2,2-2.08,4.09-3.43,6-3.64,5-8.62,8.22-14.32,10.49a68.31,68.31,0,0,0-7.25,3.41c-3.59,1.94-7.56,2.57-11.45,3.49-3.68.87-7.43.74-11.17.9-4.54.19-9.08.5-13.63.59A53.63,53.63,0,0,1,53,139.34a54.78,54.78,0,0,1-15.71-5.54c-4-2.08-7.95-4.12-11.84-6.33-5.11-2.9-8.91-7.26-12.59-11.73a77.65,77.65,0,0,1-6.3-8.86c-2.09-3.41-2.78-7.22-3.58-11C1.62,89.2,2.13,82.42.93,75.74-.91,65.51.13,55.06,2.76,45.09,3.5,42.28,4,39.44,4.65,36.62A44.43,44.43,0,0,1,7.18,28a3.81,3.81,0,0,1,.76-1.13c1.48-1.46,2.11-3.49,3.51-5.05,2.36-2.63,5.29-4.48,8.12-6.48a52.66,52.66,0,0,1,9.93-5C35.23,7.94,41,5.7,46.9,3.58A51.87,51.87,0,0,1,63.82.45C67.87.39,71.92.12,76,0A94.29,94.29,0,0,1,88.53.85a74.39,74.39,0,0,1,8.26,1.21c3.89.84,7.35,2.76,10.92,4.43,4.81,2.24,8.41,6,12.42,9.29,7,5.72,11,13.22,14.53,21.23a120.92,120.92,0,0,1,5,14.74c.78,2.68.53,5.45.76,8.18C140.5,61.49,140.39,63.06,140.39,64.63Z"/><path class="cls-2" d="M68.13,67.41A58.77,58.77,0,0,1,48.8,62.64,10.21,10.21,0,0,1,45,59.53a16.47,16.47,0,0,1-3.76-8.44c-.18-1.48-.19-1.48,1.36-1.67a5.06,5.06,0,0,1,.68-.09c2.17.06,2.21-.31,2.57,2.07a15.37,15.37,0,0,0,5.73,9.72,5.24,5.24,0,0,0,1.19.7,52.83,52.83,0,0,0,16.26,4.36,23.32,23.32,0,0,0,13.4-2.62A20.41,20.41,0,0,0,90,56.22a32.79,32.79,0,0,0,3.71-7.82,1.07,1.07,0,0,1,1.06-.86c.88,0,1.75-.1,2.63-.15s1,.28.75,1A29.53,29.53,0,0,1,89,62.27c-2.75,2.28-6,3.2-9.33,4.1C75.84,67.42,71.85,67.34,68.13,67.41Z"/><path class="cls-3" d="M17.86,43c-.78-8,12-6.1,14.49-1,1.35,2.75.16,6.26-2.45,8.31-3.17,2.5-8.54,1.24-10.51-2C18.38,46.68,17.37,45,17.86,43Z"/><path class="cls-3" d="M120.51,49c-.68,3-1.82,5.85-4.55,7.68-2.16,1.44-4.32.42-6.44-.25l-.29-.14c-3.93-2.07-4-3.4-2.89-7.3a7.4,7.4,0,0,1,2.45-3.88c1.75-1.39,3.64-2.21,5.9-1.64a8.08,8.08,0,0,1,5.25,3.36A3.22,3.22,0,0,1,120.51,49Z"/><path class="cls-2" d="M90.72,26.62c3.66.2,6,2.08,7.27,5.56a70,70,0,0,1,1.7,7.22c.22.91-.2,1.28-1,1.35-.38,0-.76.11-1.14.12a5.48,5.48,0,0,1-2-.07c-.75-.3-.09-1.11-.27-1.69-.78-2.47-.94-5.12-2-7.5a7.62,7.62,0,0,0-3.33-3.5c-.66-.39-1.11-.06-1.62.37-2.61,2.2-4,5.18-5.15,8.26-.49,1.28-.94,2.57-1.48,3.83-.07.17-.15.43-.28.47a9.08,9.08,0,0,1-4,.19c-.35-.07-.42-.42-.24-.74,1.17-2.19,1.69-4.65,2.82-6.87a19,19,0,0,1,4.1-5.45,4.15,4.15,0,0,1,2-1A17.37,17.37,0,0,1,90.72,26.62Z"/><path class="cls-2" d="M59.91,41.63c-1.51,0-1.52,0-1.56-1.55A18.14,18.14,0,0,0,56.7,32.2,6.26,6.26,0,0,0,54,29.61a2.4,2.4,0,0,0-3,.54A16.16,16.16,0,0,0,46.57,37c-.6,1.85-1.13,3.71-1.66,5.58a.64.64,0,0,1-.64.52c-1,.07-2.06.14-3.08.15-.7,0-1-.39-.75-1.05,1-2.67,1.53-5.52,2.93-8A17.66,17.66,0,0,1,47,29.73a5.82,5.82,0,0,1,3.12-1.29,18.36,18.36,0,0,1,6.36-.09,6.5,6.5,0,0,1,4.95,4,21.5,21.5,0,0,1,1.49,8.28c0,.59-.28.82-.82.85Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/23.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffb340;}.cls-2{fill:#fff;}.cls-3{fill:#292929;}.cls-4{fill:#d6674c;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M66.69.17A34.72,34.72,0,0,1,80.52,1.85c2.77,1,5.76.86,8.63,1.38a10.28,10.28,0,0,1,3.12.89C95.76,6,99.65,6.56,103.42,7.5a25.06,25.06,0,0,1,11.79,6.25,134.08,134.08,0,0,1,10,10.14c1.94,2.39,3.06,5.27,4.3,8.05,3.27,7.32,7.42,15.29,8.16,23.38a34.9,34.9,0,0,0,1.26,5.84,31.53,31.53,0,0,1,1,5.9c.15,1.88.52,3.72.57,5.62a40.56,40.56,0,0,1-1.19,12.17c-1,3.41-1.33,7-2.9,10.2-1.79,3.61-3.78,7.12-5.87,10.57A49.34,49.34,0,0,1,123.8,114c-2.56,2.69-5,5.51-7.7,8-4.63,4.35-9.48,8.32-15.55,10.5a39.67,39.67,0,0,0-4.51,2c-8.94,4.56-18.16,4.24-27.73,5.65a15.12,15.12,0,0,1-6.67-.41,33.44,33.44,0,0,0-8.28-1.32A45.46,45.46,0,0,1,36,134.22c-2.44-1.13-5.11-1.92-7.14-3.78a41.17,41.17,0,0,1-6.12-6.12c-1.08-1.5-2.65-2.55-3.76-4-1.82-2.45-3.72-4.82-5.55-7.25a47.79,47.79,0,0,1-3.38-6A175.05,175.05,0,0,1,1.59,88.31c-.9-2.25-.69-4.7-1.21-7-.81-3.57-.11-7,.08-10.58a117.63,117.63,0,0,1,5.9-32.53c1.75-5.08,5.12-8.93,9.27-12.19a28.44,28.44,0,0,0,4.55-5,37.87,37.87,0,0,1,7.64-6.78A96.89,96.89,0,0,1,42.89,5.53C50.44,1.88,58.24-.7,66.69.17Z"/><path class="cls-2" d="M38.11,43.14a2.87,2.87,0,0,0,1.15,1.26,3,3,0,0,0,1.48.18,21.35,21.35,0,0,0,6.17-1.29,3.72,3.72,0,0,0,1.6-.95A3.9,3.9,0,0,0,49.19,41c.64-1.76,1.15-3.86.07-5.4a5.23,5.23,0,0,0-2.54-1.71,11.07,11.07,0,0,0-6-.73C35.1,34.29,35.81,39.13,38.11,43.14Z"/><path class="cls-2" d="M88.39,38.84a4.39,4.39,0,0,0-.46,3.74A5.92,5.92,0,0,0,89,44.16a12.12,12.12,0,0,0,2.36,2.22,7.86,7.86,0,0,0,12-4.15,2,2,0,0,0,.09-1.13,2.08,2.08,0,0,0-.64-.89,19.14,19.14,0,0,0-7.65-4.49C92,34.76,90,36.08,88.39,38.84Z"/><path class="cls-3" d="M96.18,48.58c-2.17.47-3.17-.81-4-2.49-.71-1.48-1.54-2.91-2.29-4.37a8.35,8.35,0,0,1-.56-1.35c-.5-1.66,0-2.55,1.69-2.86a25.42,25.42,0,0,1,10.35-.24c.38.08.86.15.8.58s-.54.33-.88.29a20.7,20.7,0,0,0-6.13.32c-1.57.25-2,.79-1.39,2.3a55,55,0,0,0,3.3,6.38c.23.41.77.81.51,1.28S96.64,48.58,96.18,48.58Z"/><path class="cls-3" d="M39.55,33.19a16,16,0,0,1,9.08,3.09,1.87,1.87,0,0,1,.15,2.6c-1.43,1.92-2.92,3.79-4.38,5.69a1,1,0,0,1-1,.46c-.93-.09-1.86-.17-2.79-.28-.75-.08-.89-.44-.42-1,1.29-1.65,2.56-3.31,3.86-5,1.07-1.36,1-2.07-.49-2.94a11.85,11.85,0,0,0-4.81-1.76,5.14,5.14,0,0,1-.76-.16c-.19-.06-.39-.2-.35-.38a.54.54,0,0,1,.42-.3C38.58,33.17,39.07,33.19,39.55,33.19Z"/><path class="cls-4" d="M91.31,64.74l.6,4.08c.07.53-.21.71-.71.77a59.76,59.76,0,0,1-9.27.37c-4.72-.2-9.4-.87-14.11-1.06-3.78-.16-7.53-.54-11.3-.79s-7.27-.9-10.9-1.38c-.56-.08-.73-.47-.83-1-.64-3.58,1.14-6.41,2.84-9.28a16.67,16.67,0,0,1,8.88-1.21,4,4,0,0,1,2.24,1.2,27.47,27.47,0,0,1,4,4.66,1,1,0,0,0,1.48.5c4.52-1.92,9.3-2.14,14.1-2.08a34,34,0,0,1,5,.51,10.66,10.66,0,0,1,7,4.28C90.56,64.53,90.67,65.3,91.31,64.74Z"/><path class="cls-3" d="M96.32,69.44c-.26-1.55-.35-3.13-.66-4.66-1.23-6.07-4.82-10.63-9.74-14.07a27.59,27.59,0,0,0-13.21-4.86,65.49,65.49,0,0,0-14.41.41c-2,.24-3.69,1.38-5.53,2.11a20.53,20.53,0,0,0-8.38,6.06,16.76,16.76,0,0,0-4.28,9.82,2.84,2.84,0,0,0,2,3.09c3.28.52,6.57,1.08,9.88,1.4,5.7.55,11.39,1.15,17.13,1.34,5,.17,10,.92,15.07,1.07,3.73.34,7.48-.21,11.23-.61C96.07,70.47,96.46,70.23,96.32,69.44Zm-5.12.15a59.76,59.76,0,0,1-9.27.37c-4.72-.2-9.4-.87-14.11-1.06-3.78-.16-7.53-.54-11.3-.79s-7.27-.9-10.9-1.38c-.56-.08-.73-.47-.83-1-.64-3.58,1.14-6.41,2.84-9.28h0a20.28,20.28,0,0,1,9-7.1c.87-.33,1.67-.83,2.51-1.23,2.16-1,4.5-1,6.8-1.15a35,35,0,0,1,4.7-.16,21,21,0,0,1,11.19,4.13c4.8,3.41,8.27,7.87,9.43,13.83h0l.6,4.08C92,69.35,91.7,69.53,91.2,69.59Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/24.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#fff;}.cls-3{fill:#292929;}.cls-4{fill:#d6674c;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M26.83,13.13c4.43-2,8.69-4.35,13.59-5.13,2.9-.45,5.49-1.87,8.21-2.85A97.63,97.63,0,0,1,65.17.93,66.6,66.6,0,0,1,77.89,0c6.63.15,12.8,2.15,19,4.24,2.87,1,5.31,2.92,8,4.38,7.06,3.89,12.64,9.38,17.65,15.54a78,78,0,0,1,7.9,12.06,61.52,61.52,0,0,1,5.81,14.36c.64,2.53,1.59,5,2.43,7.46a45.66,45.66,0,0,1,1.44,7c.77,4.33.26,8.59-.36,12.86-.28,1.89.13,3.73.14,5.6a52.91,52.91,0,0,1-2.43,15.82c-1.23,4-3.24,7.59-5,11.31a16.72,16.72,0,0,1-3.77,4.48,101.43,101.43,0,0,1-10.22,8.73c-2,1.48-4,2.85-6,4.32a17.44,17.44,0,0,1-2.49,1.34A164.29,164.29,0,0,1,93,137.14,41.62,41.62,0,0,1,84.12,140c-6.37,1-12.67.32-19-.62a8.13,8.13,0,0,0-2.49-.21c-2.8.47-5.43-.36-8.11-.83-4.13-.73-8.11-2-12.18-3a33.61,33.61,0,0,1-5.79-2.38c-2.71-1.2-5.39-2.45-7.44-4.67-1.2-1.29-2.39-2.61-3.51-4a57.73,57.73,0,0,0-6.28-6,40.68,40.68,0,0,1-6-7.31,60.58,60.58,0,0,1-3.81-6.12A133.2,133.2,0,0,1,2.83,90.58,45.09,45.09,0,0,1,.23,69.82C.34,68.55.32,67.27.41,66a20.76,20.76,0,0,1,1.2-5.59,46.75,46.75,0,0,0,2.12-10,16.07,16.07,0,0,1,2-5.82A15,15,0,0,0,7,41.12a70.07,70.07,0,0,1,2.61-9,25,25,0,0,1,6.6-9.47c3.2-2.77,5.93-6,9.31-8.61Z"/><path class="cls-2" d="M54.41,41.75c-2.51,0-5.08.19-7.3-1.38a6.18,6.18,0,0,1-2.66-5c-.09-1.68,0-3.37,0-5-.09-3.72,2.42-6,6-5.73,2.33.15,4.67.1,7,.19,2.87.1,4.2,1.07,4.6,3.88s1.09,5.69.53,8.62a12.45,12.45,0,0,1-1.09,3.16,1.67,1.67,0,0,1-1.44,1A37.21,37.21,0,0,1,54.41,41.75Z"/><path class="cls-2" d="M81.2,25a29.62,29.62,0,0,1,10.43,1.76,1.34,1.34,0,0,1,1,1.46c0,3.42-1.44,6.34-3,9.24-.39.73-.85,1.42-1.31,2.11a3.36,3.36,0,0,1-2.4,1.5,31.61,31.61,0,0,1-9.46-.5,4,4,0,0,1-3.11-4.29,46.21,46.21,0,0,1,1.21-7.49c.61-2.61,1.27-3.25,3.9-3.63C79.36,25,80.28,25,81.2,25Z"/><path class="cls-3" d="M71.88,45.08a26.55,26.55,0,0,0-6.1-.42H63.24a10.18,10.18,0,0,0-8.93,4.62C53.14,51,52.8,53,52.24,54.86a17.27,17.27,0,0,0,.26,10.8,8.62,8.62,0,0,0,5.76,5.71,20.21,20.21,0,0,0,3.69.71c6.73.86,11.47-1.53,15.37-7.17a18.48,18.48,0,0,0,3-10.21C80.44,49.27,76.43,46,71.88,45.08Zm4,11.27a17,17,0,0,1-1.44,5.45h0a14.57,14.57,0,0,1-9.33,9.1c-1.7.62-3.3-.12-4.75-.93a6.51,6.51,0,0,1-3-3.21,14.53,14.53,0,0,1-1.39-7,18.64,18.64,0,0,1,2.5-9.85,8.14,8.14,0,0,1,5.63-4.14A11.54,11.54,0,0,1,71.61,47C75.28,49.13,76.3,52.44,75.85,56.35Z"/><path class="cls-3" d="M53.8,37.75a19.44,19.44,0,0,1-3.25-.22,1.39,1.39,0,0,1-1.24-1.2,18.6,18.6,0,0,1-.2-5.21c.14-1.87,1.36-2.9,3.75-2.84,3.46.08,3.85-.38,4,3.48.06,1.48.24,3,.37,4.43.08.94-.18,1.51-1.27,1.46A19.43,19.43,0,0,0,53.8,37.75Z"/><path class="cls-3" d="M86.76,31c.11,1.7-.55,3.42-.87,5.2a1.09,1.09,0,0,1-1,.9,11.06,11.06,0,0,1-6.07-.69.82.82,0,0,1-.58-.95c.2-1.65,0-3.33.37-5a2.54,2.54,0,0,1,2.75-2.33,14.46,14.46,0,0,1,2.87,0C86.68,28.37,86.77,28.42,86.76,31Z"/><path class="cls-4" d="M56,59.76a27,27,0,0,1,4.31.23A7,7,0,0,1,64,61.91c.57.46.84.47,1.35,0a3.68,3.68,0,0,1,2.52-1c1.22,0,2.44,0,3.66,0a3.12,3.12,0,0,1,1.85.67c.32.22.62.57,1.08.26a14.55,14.55,0,0,1-9.33,9.1c-1.7.62-3.3-.12-4.75-.93a6.51,6.51,0,0,1-3-3.21A14.53,14.53,0,0,1,56,59.76Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/25.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#292929;}.cls-3{fill:#ff919b;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M78.88,140.14a151.86,151.86,0,0,1-20-.1c-4.19,0-8.28-.88-12.42-1.41-7.85-1-14.54-4.73-20.89-9.14-3.09-2.15-5.57-5.05-8.1-7.85a37.94,37.94,0,0,0-2.88-2.93,22.28,22.28,0,0,1-4.71-6.41,110.65,110.65,0,0,1-7.71-19A58,58,0,0,1,.09,73.6c.17-3.66.49-7.29.75-10.94A87.45,87.45,0,0,1,2.52,49.77a43.94,43.94,0,0,1,3.42-8.7,66.46,66.46,0,0,1,5.26-9.49c1.93-2.86,4-5.67,5.94-8.51,1.43-2.06,2.52-4.35,4.06-6.34A28,28,0,0,1,34.06,7.24c3.86-1.39,7.6-3.08,11.36-4.73C47.89,1.43,50.55,1.14,53.14.6A31.75,31.75,0,0,1,59.37,0C65.91,0,72.45.11,79,0c5.36-.08,10.47,1.12,15.57,2.51,6.21,1.69,11.6,5.09,17,8.38a91.73,91.73,0,0,1,8.29,5.24,43,43,0,0,1,7.71,7.9,105.52,105.52,0,0,1,6.14,8.65,34.44,34.44,0,0,1,5,13.47A185.37,185.37,0,0,1,140,83.89a60.13,60.13,0,0,1-1.87,9.75,45.19,45.19,0,0,1-1.59,5.48c-.9,2.48-1.37,5.07-2,7.61a70.88,70.88,0,0,1-2.55,7.79,8.58,8.58,0,0,1-2,3c-1,1-1.45,2.31-2.37,3.35-2.56,2.86-5.79,4.78-9,6.78-3.88,2.43-8.21,3.76-12.45,5.33-7.42,2.74-14.93,5.49-22.79,6.64C81.89,139.86,80.39,140,78.88,140.14Z"/><path class="cls-2" d="M66.49,74.58a31.75,31.75,0,0,1-6-.46,12.35,12.35,0,0,1-3.88-1.56,25.89,25.89,0,0,1-7.67-6,21.87,21.87,0,0,1-4.47-9.36c-.12-.58.2-.69.59-.7,1.06,0,2.13,0,3.19,0,.65,0,.72.52.83,1A19,19,0,0,0,54,67c2.76,2.78,5.85,5.39,9.77,6.2a14.5,14.5,0,0,0,12.1-2.43c2-1.53,4.23-2.86,5.86-4.84a63.63,63.63,0,0,0,5.47-8.11,5.45,5.45,0,0,0,.44-1.29c.46-1.83.46-1.9,2.4-1.86,3.11.06,2.59-.37,1.86,2.59a13.86,13.86,0,0,1-2.23,3.94C87.83,64.06,86,66.94,83.24,69c-3.17,2.34-6.3,4.78-10.44,5.24A42.87,42.87,0,0,1,66.49,74.58Z"/><path class="cls-3" d="M32.77,46.44a5.47,5.47,0,0,1,6,4.83c.32,3.5-.87,8.45-5.26,9.35a9.93,9.93,0,0,1-5.8-.51c-1.88-.78-2.68-2.57-2.46-5.16C25.56,51.58,28.63,45.83,32.77,46.44Z"/><path class="cls-3" d="M115.19,49.16a8.81,8.81,0,0,1-3.62,7.15,3.36,3.36,0,0,1-2.09.84c-3.37,0-6.37-.77-8.35-3.88-1.24-1.93-.8-5.76,1-6.87,2.16-1.31,4.54-2.52,7.31-1.92.81.18,1.65.23,2.46.43C114.59,45.57,115.24,46.44,115.19,49.16Z"/><path class="cls-2" d="M51,49.25c-2.25-.12-4.53-.1-6.57-1.4a8.68,8.68,0,0,1-2.63-2.94,12.25,12.25,0,0,1-2-6.32c0-.9.32-1.28,1.19-1.22h.23c.94,0,2-.32,2.78.18s.2,1.69.41,2.55c.76,3.09,1.92,5.92,4.85,7.61a1.94,1.94,0,0,0,2,0c4.62-2.25,6.29-6.31,7-11a.52.52,0,0,1,.59-.51c1.1,0,2.2,0,3.29,0,.57,0,.83.32.69.9-1,4.49-2.52,8.64-7.06,11A9,9,0,0,1,51,49.25Z"/><path class="cls-2" d="M88.74,47.49c-2.13-.15-4.26-.05-6.27-1a6.13,6.13,0,0,1-2.85-2.35,24.43,24.43,0,0,1-3.29-6.82c-.3-1.27-.18-1.46,1.13-1.53,3.08-.17,3-.14,3.85,2.81a18,18,0,0,0,3.4,6.11,4.57,4.57,0,0,0,2.76,1.49c1.91.38,2.85-1,3.73-2.25a17.37,17.37,0,0,0,3.21-7.94c.14-1,.53-1.4,1.53-1.31a17.28,17.28,0,0,0,2.16,0c.7,0,1,.32.87,1-.77,4.19-2.17,8-5.65,10.84C91.92,47.71,90.28,47.31,88.74,47.49Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/26.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#fff;}.cls-3{fill:#292929;}.cls-4{fill:#d6674c;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M77.26,140.43c-5.12-.25-10.26,0-15.36-.65a46.52,46.52,0,0,1-10.63-2.6c-4.05-1.53-8.11-3-12.17-4.55a74.8,74.8,0,0,1-9.21-4.41c-2.44-1.31-4.83-2.72-7.21-4.15-3.82-2.29-6.58-5.75-9.56-9-4.1-4.45-6.3-10-8.69-15.37-1-2.29-2.3-4.47-2.83-7A75.05,75.05,0,0,1,.23,81.47q-.23-4-.23-8A58.73,58.73,0,0,1,5.29,48.9c2.91-6.41,5.44-13,9-19.1,1.39-2.36,3.4-4.15,5.19-6.15a65.11,65.11,0,0,1,9.25-8.4c2.6-2,5.28-3.85,7.92-5.77,1.26-.92,2.46-1.92,3.65-2.94a25.81,25.81,0,0,1,10.8-5.28A40.27,40.27,0,0,1,59.49.57c2.8-.11,5.6-.31,8.39-.51a23.55,23.55,0,0,1,5.75.29,73.7,73.7,0,0,1,7.92,1.51c1.91.57,3.77,1.33,5.64,2,4.69,1.72,9.4,3.4,14.07,5.19a56.75,56.75,0,0,1,12.81,7.47,52.64,52.64,0,0,1,9.22,9.23,127.62,127.62,0,0,1,8.78,11,46.71,46.71,0,0,1,5.37,12.33,78,78,0,0,1,2.77,11.7,29.45,29.45,0,0,1-.38,9.18,80.08,80.08,0,0,1-4.28,14.9A24,24,0,0,0,134,91c-.27,3.09-1.85,5.84-2.74,8.78-2.45,8.13-7.16,14.94-12.2,21.57-.89,1.18-1.55,2.55-2.4,3.78a54,54,0,0,1-5.81,7.47,3.59,3.59,0,0,1-1.19.81c-1.9.78-3.21,2.44-5.09,3.34a40.35,40.35,0,0,1-8.36,2.57c-5.51,1.31-11.14,1.06-16.75,1.11Z"/><path class="cls-2" d="M55.77,46.8c-1.86-.15-3.87-.33-5.89-.47a2.22,2.22,0,0,1-2-1.72,14.35,14.35,0,0,1-.23-7.33,3.59,3.59,0,0,1,3.62-2.79,45.39,45.39,0,0,1,9.72.95,10.24,10.24,0,0,1,2.71,1.68.68.68,0,0,1,.22.47,8.93,8.93,0,0,1-4.86,8.85C58.1,46.91,57,46.66,55.77,46.8Z"/><path class="cls-3" d="M89.86,28c2.11-2.39,4.41-2.53,6.63-.56a62.39,62.39,0,0,1,8.15,8.42,14.85,14.85,0,0,0,2.68,2.44c.55.44.43.65,0,1a9.23,9.23,0,0,1-2.75,1.38c-.79.25-1.18-.45-1.68-.84-2-1.58-3.48-3.7-5.14-5.62S94,30.83,92.22,29.05A5.06,5.06,0,0,0,89.86,28Z"/><path class="cls-2" d="M92.34,38.87c0,1.88-.24,3.75-.41,5.62a1.92,1.92,0,0,1-1.58,1.75,15,15,0,0,1-5.58.4c-1-.08-2-.28-3.06-.37-.47-.05-.92-.13-1.08-.61-.95-2.75-2-5.47-.6-8.44a3.53,3.53,0,0,1,3.11-2.35A42.24,42.24,0,0,1,89.2,35C91.73,35.07,92.34,35.87,92.34,38.87Z"/><path class="cls-3" d="M54.26,26a2.58,2.58,0,0,0-1.69.66,103.36,103.36,0,0,1-9,5.42A35.18,35.18,0,0,0,39.17,35c-.24.18-.44.44-.76.31a7.49,7.49,0,0,1-2.95-2.05c-.39-.46,0-.74.38-1a42.52,42.52,0,0,1,3.79-2.48,102.81,102.81,0,0,0,10-6.09,1.44,1.44,0,0,1,1.64-.15A8.35,8.35,0,0,1,54.26,26Z"/><path class="cls-3" d="M56.45,36.18c3.07,0,3.14.07,3.12,3.15,0,1.78-.78,3.37-1.13,5.05a.69.69,0,0,1-.64.53,16.38,16.38,0,0,1-5,0,1.07,1.07,0,0,1-.94-1.17,35.59,35.59,0,0,1,.71-5.36C52.77,36.87,54.24,36.19,56.45,36.18Z"/><path class="cls-3" d="M81.64,40.59a21.87,21.87,0,0,0,0-2.43,1.53,1.53,0,0,1,1.3-1.84,11.75,11.75,0,0,1,4.5-.18,1,1,0,0,1,.88.81A25.79,25.79,0,0,1,89,44.06a.74.74,0,0,1-.77.86,27.9,27.9,0,0,1-5.17-.05,1.33,1.33,0,0,1-1.35-1.63c.07-.88,0-1.77,0-2.65Z"/><path class="cls-3" d="M87,62.52a18,18,0,0,0-3.61-5.39,17.69,17.69,0,0,0-9.21-5.77c-1-.22-1.94-.44-2.93-.57-2.58-.33-5.16-.95-7.76-.08a22.79,22.79,0,0,0-7,4c-3.86,3.1-5.6,7.31-6.24,12.1a.77.77,0,0,0,.38.84A20.65,20.65,0,0,0,55.58,70a58.6,58.6,0,0,0,10.09,1.87c4.15.31,8.27.84,12.42,1,2.53.1,5.06.4,7.57-.18,2.17-.5,2.18-.49,2.2-2.66V68.91A13.41,13.41,0,0,0,87,62.52ZM83.65,66c0,1.4-.05,2.81,0,4.21,0,.61-.35.72-.78.87a14.64,14.64,0,0,1-5.7.44c-3-.16-6-.34-9-.64-3.75-.38-7.56-.37-11.17-1.73a14.56,14.56,0,0,1-2.13-1.36.5.5,0,0,1-.22-.58c.53-2.56.9-5.17,2.43-7.4h0a19.48,19.48,0,0,1,9.67-7.56,9.64,9.64,0,0,1,8.14.86A19.25,19.25,0,0,1,81.22,59a11.66,11.66,0,0,1,2.43,7Z"/><path class="cls-4" d="M83.65,66c0,1.4-.05,2.81,0,4.21,0,.61-.35.72-.78.87a14.64,14.64,0,0,1-5.7.44c-3-.16-6-.34-9-.64-3.75-.38-7.56-.37-11.17-1.73a14.56,14.56,0,0,1-2.13-1.36.5.5,0,0,1-.22-.58c.53-2.56.9-5.17,2.43-7.4a12.85,12.85,0,0,1,5.61-1A5.39,5.39,0,0,1,65.43,60a22.71,22.71,0,0,1,4.89,4.13c1,1.15,1.08,1.16,2.44.55A23.33,23.33,0,0,1,78,63a3.49,3.49,0,0,1,2.65.45C81.79,64.16,83,64.75,83.65,66Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.9 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/27.svg
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/28.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#618dd3;}.cls-2{fill:#fff;}.cls-3{fill:#292929;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M.06,73.45A58.84,58.84,0,0,1,.74,62.52a43.78,43.78,0,0,1,1.43-6.86c.91-3,1.58-6.11,2.23-9.19A43,43,0,0,1,6.75,40c1.57-4,4.22-7.39,7-10.69C15,27.78,15.57,26,16.56,24.35A53.65,53.65,0,0,1,26.74,12.21,79.72,79.72,0,0,1,37.16,4.93a15.33,15.33,0,0,1,3.48-1.42A65.45,65.45,0,0,1,52.41,1.08a78,78,0,0,1,15.3-1c6.63.38,13.17,1.31,19.73,2.18a21.74,21.74,0,0,1,8.28,2.49,7.82,7.82,0,0,0,1.75.84c2.94.87,5.18,2.81,7.62,4.48,3.23,2.23,6,5,9.78,6.59,1.43.6,2.24,2,3.41,3a104.91,104.91,0,0,1,10.4,10,47.2,47.2,0,0,1,5.09,7,18.8,18.8,0,0,1,2.46,7.6,55.38,55.38,0,0,0,2.52,10c1.22,3.7,1.41,7.56,1.6,11.4a93.25,93.25,0,0,1-.95,16.78c-.94,7.11-2.79,14-7.18,20-1.84,2.51-3.3,5.27-5.34,7.66A22.26,22.26,0,0,1,124,112.9a47.52,47.52,0,0,0-6.79,7.25,17.11,17.11,0,0,1-4.85,4.06,14.87,14.87,0,0,0-2.93,2.3,64,64,0,0,1-7.2,6.56,25.76,25.76,0,0,1-9.37,4.35c-3.32.75-6.64,1.47-9.93,2.35-4.36,1.18-8.73.53-13.1,0A38.65,38.65,0,0,1,62.23,138c-3.07-1-6.28-1.13-9.4-1.8-4.35-.94-8.55-2.26-12.76-3.6a68.45,68.45,0,0,1-12.16-5.44,34.29,34.29,0,0,1-8.71-6.66c-2.12-2.29-4.64-4.25-6.49-6.76A80.44,80.44,0,0,1,6.3,102.76C2.78,96.05,1.24,88.82.41,81.39A51,51,0,0,1,.06,73.45Z"/><path class="cls-2" d="M91.25,57.13c-.16-1.61.26-3.14.2-4.7,0-.69.32-1.08,1.13-1.22a9.57,9.57,0,0,1,7.22,1.53,14.67,14.67,0,0,1,4.85,5.54,5.29,5.29,0,0,1-3,7.39,12.81,12.81,0,0,1-5.41.26c-2.86-.38-4.53-2.34-4.83-5.51A16.63,16.63,0,0,1,91.25,57.13Z"/><path class="cls-2" d="M78.45,45.31a13.64,13.64,0,0,1,.66-4.15c.54-1.86,2-2.91,3.43-3.95A4.15,4.15,0,0,1,85,36.88c1.89.14,3.77-.19,5.66-.08s2.08.39,2.31,2.37a12.84,12.84,0,0,1-.81,6.41,5.94,5.94,0,0,1-5.07,3.74,29.45,29.45,0,0,1-4.88,0C79.71,49.12,78.45,47.85,78.45,45.31Z"/><path class="cls-3" d="M104,37.57a8.34,8.34,0,0,1-3.84,1.62,1,1,0,0,1-.81-.3C95.07,36,90.53,33.6,86.71,30.14c-1-.9-1.94-1.83-3-2.65s-1.34-2.29-2.23-3.3c-.29-.33,0-.62.29-.81a8.66,8.66,0,0,1,2.66-1.08,1.14,1.14,0,0,1,1.38.6c3.08,4.93,7.84,8,12.56,11C100.2,35.1,102,36.3,104,37.57Z"/><path class="cls-2" d="M53.35,36.75c5.56,0,4.7.29,5.92,3.73a11,11,0,0,1,.16,6.05,3.55,3.55,0,0,1-3.18,2.7,26.78,26.78,0,0,1-7.53-.15,2.85,2.85,0,0,1-2.14-1.6,22.78,22.78,0,0,1-1.76-7.09,1.73,1.73,0,0,1,1-1.81A16.91,16.91,0,0,1,53.35,36.75Z"/><path class="cls-3" d="M55.26,22.46c-1.53-.89-1.66-.81-2.76.5a7.14,7.14,0,0,1-.54.56c-1.76,1.8-4,2.95-6.05,4.33a42.14,42.14,0,0,1-10.37,5.56c-.88.29-.81.68-.14,1.17,1.62,1.2,3.29,1.88,5.16.49a3.23,3.23,0,0,0,1.57-.66,40.07,40.07,0,0,0,7.62-4.5h0a22,22,0,0,0,3.36-2.23h0a8,8,0,0,0,2.64-2C57.68,23.6,57.26,23.63,55.26,22.46Z"/><path class="cls-3" d="M80.76,69.62c-.56-3.36-2.27-6.27-3.69-9.27a10,10,0,0,0-5-5,16.38,16.38,0,0,0-6.44-1,1.05,1.05,0,0,0-.46-.09,14.13,14.13,0,0,0-3.84.15,5.92,5.92,0,0,0-4.24,2,9.21,9.21,0,0,0-1.77,1.35h0s-.08,0-.1,0c-3.3,2.53-5,6-6.22,9.89-.19.61.33.55.67.56.92,0,1.85,0,2.78,0a.9.9,0,0,0,1-.72,20,20,0,0,1,7.68-10.82,5.68,5.68,0,0,1,4-1.41h0a3,3,0,0,0,.75.2,6.64,6.64,0,0,1,5.45,3A30.28,30.28,0,0,1,76.18,69c.67,2.45.64,2.46,3.26,2.36C81,71.27,81,71.15,80.76,69.62Z"/><path class="cls-3" d="M84.5,47C82.07,47,82.05,46.92,82,44.5a7.7,7.7,0,0,1,1.28-5,2.26,2.26,0,0,1,1.73-1,24.66,24.66,0,0,1,4.21,0c.75,0,1,.14.87,1.09a33.21,33.21,0,0,1-1.25,5.86,1.48,1.48,0,0,1-1.29,1.16A16.06,16.06,0,0,1,84.5,47Z"/><path class="cls-3" d="M56.93,42.62a14.76,14.76,0,0,1-.24,3.73,1.47,1.47,0,0,1-1.31,1.16,16.31,16.31,0,0,1-5,0,1,1,0,0,1-.93-.77,30.46,30.46,0,0,0-1.27-4.48A3.85,3.85,0,0,1,48,40.52c.09-1.64.48-2,2.12-2.2a21.61,21.61,0,0,1,5.21,0A1.24,1.24,0,0,1,56.6,39.5,14.34,14.34,0,0,1,56.93,42.62Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/29.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#8cbbe8;}.cls-2{fill:#fff;}.cls-3{fill:#292929;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M139.53,57.56c-.88-4.6-1.85-9.18-3-13.73-1.32-5.23-2.31-10.58-4.63-15.51A41.56,41.56,0,0,0,127,19.66c-1.67-2.05-4-3.4-5.64-5.41-.11-.13-.32-.18-.48-.29a29.16,29.16,0,0,0-7-3.22c-4-1.44-7.81-3.1-11.73-4.62A59.11,59.11,0,0,0,89.53,2.33c-3-.44-6-.71-9-1C79,1.13,77.38.65,75.88.94c-3.17.6-6.27.13-9.39-.22C64.09.46,61.68.05,59.26,0c-2.79,0-5.59.29-8.4.36a17.24,17.24,0,0,0-5.34,1A72.21,72.21,0,0,0,28,10.74a35.54,35.54,0,0,0-6.95,6.18c-1.54,1.83-2.87,3.81-4.32,5.7C12,28.85,7.32,35.12,4.9,42.74A57.82,57.82,0,0,0,2.25,53.47C1.81,57.3,1.45,61.13,1,65,.51,69.71-.37,74.43.17,79.23c.29,2.62.15,5.34,1,7.85C3,92.6,4.24,98.32,6.34,103.76a25.51,25.51,0,0,0,6.88,9.47c2,1.81,4.27,3.27,6.32,5,2.25,1.92,4.34,4,6.69,5.81a105.22,105.22,0,0,0,12.68,8.42,36,36,0,0,0,9.32,3.5c5.69,1.28,11.41,2.45,17.18,3.27,4.37.62,8.75,1.55,13.2,1a90.87,90.87,0,0,0,10.9-1.59c4-1,8.08-2,12-3.43,4.27-1.5,8.51-3.05,11.88-6.28a24.73,24.73,0,0,1,2.4-1.9c4.5-3.38,8.85-6.88,12-11.65,2.37-3.57,4.89-7,6.24-11.15a133,133,0,0,0,4.28-16.77c.53-2.78.7-5.62,1-8.44.41-4,1.15-8.08,1.1-12.28A44,44,0,0,0,139.53,57.56Z"/><path class="cls-2" d="M84.29,50.69a12.67,12.67,0,0,1-2-.45c-2.31-.94-3-2.44-2.24-5,.4-1.34.78-2.68,1.08-4a6.53,6.53,0,0,1,2.58-3.64,1.35,1.35,0,0,1,.74-.26,32.25,32.25,0,0,1,7.92.29,6.7,6.7,0,0,1,4.11,2.86c.74,1.17.32,2.66.19,4a6,6,0,0,1-3.18,4.69,9.71,9.71,0,0,1-2.63,1.51l-.58.11-.54.17a6.32,6.32,0,0,1-2.49,0A29.43,29.43,0,0,1,84.29,50.69Z"/><path class="cls-2" d="M60.53,33.38c1.39,0,2.78,0,4.18.15a2.78,2.78,0,0,1,2.45,2.2c1,2.92-.83,7.46-3.45,9.09a6.48,6.48,0,0,1-2.86.54,18,18,0,0,1-5.43-.22,5.25,5.25,0,0,1-3.53-2.31,4.08,4.08,0,0,1,0-4.21,44.9,44.9,0,0,1,2.74-3.75,3.63,3.63,0,0,1,3.24-1.5C58.78,33.39,59.66,33.38,60.53,33.38Z"/><path class="cls-3" d="M108.52,40c-1.46.69-3,.41-4.53.32a.54.54,0,0,1-.37-.24c-1.8-2.87-3.92-5.55-5-8.84a31.83,31.83,0,0,1-1.16-4.84c-.11-.64.12-1,.83-1,3.36-.31,3.23-.29,4,2.92a21.67,21.67,0,0,0,5.34,10.48c.32.32.59.69.88,1A.62.62,0,0,1,108.52,40Z"/><path class="cls-3" d="M55,21.62a4.83,4.83,0,0,0-5,1.48,13.15,13.15,0,0,1-1,1.2,64.43,64.43,0,0,1-10,8.55c-.51.69,0,.9.51.94.83.06,1.67,0,2.5,0,.38,0,.79.06,1.07-.25a22.2,22.2,0,0,1,3-2.36,53.48,53.48,0,0,0,6.09-5.56h0a17.19,17.19,0,0,0,2.93-3.27C55.36,22,55.43,21.79,55,21.62Z"/><path class="cls-3" d="M84.41,71.89c-.15-.13-.11-.49-.14-.75-.23-1.72-.17-3.46-.41-5.19a15.81,15.81,0,0,0-3.81-8.57,5.08,5.08,0,0,0-2.91-1.87A30.61,30.61,0,0,0,67,55.7a8,8,0,0,0-2.73.88,18.78,18.78,0,0,0-6.37,3.18,10.28,10.28,0,0,0-2.56,2h0c-1.67,1.76-2.93,3.84-4.46,5.71-.54.67-.19,1.25.64,1.37a14.14,14.14,0,0,0,3.5,0c.28,0,.75-.13.44-.49-.52-.6,0-.88.23-1.24a20,20,0,0,0,2.45-3.26,3.78,3.78,0,0,0,.93-1.4h0l.88-.89c2.13-1.31,4.09-2.89,6.43-3.85a22.73,22.73,0,0,1,3.26-1.1c2-.37,4.09-1,5.77.75a13.67,13.67,0,0,1,3.67,6.8,32.41,32.41,0,0,1,.66,7.22c0,.94.4,1.31,1.27,1.31s2,0,3,0C84.41,72.7,85.55,72.91,84.41,71.89Z"/><path class="cls-3" d="M85.39,48.5a4.54,4.54,0,0,0-.5-.12A3.05,3.05,0,0,1,83.66,48c-.73-.48-.72-1.46-.73-2.25a11.86,11.86,0,0,1,2-5.84,1.84,1.84,0,0,1,1.56-.79,25.32,25.32,0,0,1,5.77.09,1.18,1.18,0,0,1,1.08,1.22,8.9,8.9,0,0,1-2.07,7.18,1.7,1.7,0,0,1-1.4.72c-1.1.06-2.16.62-3.24.45C86.2,48.75,85.8,48.61,85.39,48.5Z"/><path class="cls-3" d="M58.26,43.94c-.26,0-.64-.08-1-.08-2.56,0-2.61-1-2.2-2.93a9,9,0,0,1,2-4.62,2.23,2.23,0,0,1,1.42-.81,10,10,0,0,1,5,.58.79.79,0,0,1,.59.84,12.39,12.39,0,0,1-.83,4.55C62.45,43.33,61.21,44,58.26,43.94Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/3.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#fff;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M77.26,140.43c-5.12-.25-10.26,0-15.37-.65a45.82,45.82,0,0,1-10.62-2.61L39.1,132.63a75.57,75.57,0,0,1-9.21-4.41c-2.45-1.31-4.84-2.72-7.21-4.15-3.82-2.3-6.58-5.75-9.57-9-4.1-4.45-6.29-10-8.68-15.36-1-2.29-2.3-4.47-2.83-7A73.78,73.78,0,0,1,.23,81.47C.08,78.77,0,76.06,0,73.35A58.69,58.69,0,0,1,5.29,48.9c2.91-6.41,5.44-13,9-19.1,1.39-2.36,3.4-4.15,5.19-6.15a65.11,65.11,0,0,1,9.25-8.4c2.6-2,5.28-3.85,7.92-5.77,1.26-.92,2.46-1.93,3.65-2.94A25.85,25.85,0,0,1,51.13,1.26,40.9,40.9,0,0,1,59.5.57C62.29.46,65.09.26,67.89.06a23.47,23.47,0,0,1,5.74.29,72.78,72.78,0,0,1,7.92,1.51c2,.58,3.84,1.35,5.75,2.05C91.92,5.6,96.56,7.26,101.16,9a57.23,57.23,0,0,1,12.91,7.52,53.33,53.33,0,0,1,9.22,9.23,127.62,127.62,0,0,1,8.78,11,46.71,46.71,0,0,1,5.37,12.33,78.16,78.16,0,0,1,2.77,11.71,29.4,29.4,0,0,1-.38,9.17,80.85,80.85,0,0,1-4.28,14.9A24,24,0,0,0,134,91c-.27,3.09-1.85,5.84-2.74,8.78-2.46,8.14-7.17,14.94-12.2,21.57-.9,1.19-1.55,2.56-2.4,3.78a54.83,54.83,0,0,1-5.81,7.48,3.84,3.84,0,0,1-1.19.8c-1.9.78-3.21,2.45-5.09,3.34a40.35,40.35,0,0,1-8.36,2.57c-5.51,1.31-11.15,1.07-16.75,1.11Z"/><path class="cls-2" d="M48.54,89.17a62.35,62.35,0,0,1,.78-11.26,1.14,1.14,0,0,0-.53-1.22c-1.23-1-2.43-2.06-3.72-3a23.18,23.18,0,0,1-6.16-6.29,8.55,8.55,0,0,1-1.73-4.8c0-1.77,1.06-2.71,2.38-3.45a27.41,27.41,0,0,1,11.86-3.25c2.21-.14,4.44,0,6.66,0,.49,0,1,0,1.14-.6,1.54-5.26,5.19-9.13,8.7-13.09.69-.77,1.32-1.59,2-2.4a3.73,3.73,0,0,1,2.69-1.56,20.87,20.87,0,0,1,6,.17,3.52,3.52,0,0,1,2,1.52c2.2,2.78,3,6.11,4,9.42a25.79,25.79,0,0,1,.63,8.25c0,.76.15,1.06,1,1,3.41-.09,6.6,1.12,9.85,1.9,2.19.52,4.15,1.91,6.09,3.11,1.55,1,1.55,3.48.23,5.21a21.57,21.57,0,0,1-10,7.43c-1,.36-1,.84-1,1.8a50.08,50.08,0,0,0,1.1,7.56A41.88,41.88,0,0,1,93,93.13a6.83,6.83,0,0,1-.82,3.08c-.61,1.24-1.8,1.3-2.93,1.44-4.72.57-8.12-1.79-11.11-5.05-2.12-2.33-3.81-5-5.72-7.47-.25-.32-.58-.57-.84-.88s-.6-.3-.87.08c-3,4.25-7.11,7.5-11,10.92A9.59,9.59,0,0,1,51,97.4c-1.5-.32-2.38-1.77-2.43-3.9C48.52,92.05,48.54,90.61,48.54,89.17Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/30.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#fff;}.cls-3{fill:#e06c4f;}.cls-4{fill:#292929;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M140.43,57.65a1.58,1.58,0,0,1-.23-.56c0-.39,0-.77,0-1.16a3.15,3.15,0,0,0-.06-.61,17.44,17.44,0,0,0-.38-2.14c-.63-2.6-1.33-5.19-1.91-7.81a4.61,4.61,0,0,0-.31-1.1,129.73,129.73,0,0,0-5.62-13.71c-1.26-2.61-2.47-5.33-4.51-7.43-2.87-3-5.68-6-8.57-8.93-4.93-5-11-8.33-17.4-10.76C94.41.81,87,.22,79.57.06,73.7-.06,67.83,0,62,.05a42,42,0,0,0-5,.31,42.73,42.73,0,0,0-8.11,1.93c-4.82,1.59-9.63,3.19-14.39,5A80.88,80.88,0,0,0,18.06,15c-4.22,2.76-7,6.59-9.76,10.6a3.53,3.53,0,0,0-.4.83A78.76,78.76,0,0,0,5.27,35a57.5,57.5,0,0,1-1.46,5.78,79.41,79.41,0,0,0-2.34,8.41A47.15,47.15,0,0,0,0,61.93c.1,2,0,3.91,0,5.87a24.33,24.33,0,0,0,.71,7.74A7.08,7.08,0,0,1,.87,77.6c.07,5.24-.3,10.5.68,15.7.57,3,.76,6.18,2.09,9a58.19,58.19,0,0,0,3.71,6.86,94.31,94.31,0,0,0,5.75,7.87,40.53,40.53,0,0,0,11.22,10.18c4.1,2.37,8.13,4.84,12.28,7.12a50.16,50.16,0,0,0,17.73,5.77c1.24.17,2.5.07,3.73.29H83a.57.57,0,0,1,.42-.11,42.64,42.64,0,0,0,10.34-1.69,39,39,0,0,0,5.59-2.33c3.75-1.7,7.65-3,11.32-4.92a23.85,23.85,0,0,0,9.4-8.51c3.52-5.6,7.42-10.94,10.83-16.61a90.38,90.38,0,0,0,6.46-13.41,24,24,0,0,0,.92-3.55,82.27,82.27,0,0,0,1.18-9.9c.2-3.45.63-6.89.73-10.35,0,0,0-.11,0-.17,0-.48,0-1,0-1.45v-.07h0v-.67a.86.86,0,0,1,.22-.53Z"/><path class="cls-2" d="M76.18,41.9a18.32,18.32,0,0,1-6.83-1.11,2.89,2.89,0,0,1-1.85-2,32.82,32.82,0,0,1-1.4-6.81c-.27-2.09,1.26-3.76,3.87-4.11a22.82,22.82,0,0,1,7.51.13c2.75.55,5.59,3.72,5.24,6.64-.1.87,0,1.75-.13,2.62-.32,2.9-1.9,4.43-4.82,4.67C77.17,41.94,76.56,41.9,76.18,41.9Z"/><path class="cls-2" d="M47.07,45.83a10.29,10.29,0,0,1-4.26-.51,4.45,4.45,0,0,1-2.6-4.23,58.54,58.54,0,0,1,.41-6,.9.9,0,0,1,.44-.74c2.74-1.88,5.8-2,9-1.72a8.08,8.08,0,0,1,6,2.95,1.63,1.63,0,0,1,.46.9c.14,2.43,0,4.64-1.85,6.67C52.47,45.46,50,46,47.07,45.83Z"/><path class="cls-3" d="M47.52,72.14a5.54,5.54,0,0,0,1.55-2.48,1.83,1.83,0,0,1,.74-1c1.85-1.27,3.36-3,5.3-4.12a10.18,10.18,0,0,1,5.24-1.36c.88,0,1.76.05,2.63,0a7.52,7.52,0,0,1,6.52,3.1c.51.61.91.87,1.49.11a2,2,0,0,1,.65-.46,49.47,49.47,0,0,1,5.83-2.58c2.25-.85,4.72-.6,7.12-.52a20,20,0,0,1,4.28,1c-1.5,3-4,5.18-6.58,7.17a41,41,0,0,1-11.76,6,10.09,10.09,0,0,1-2.58.34c-1,.06-2-.06-3,0-3.57.33-6.94-.61-10.33-1.46a4.67,4.67,0,0,1-1.38-.51C51.42,74.2,49.48,73.15,47.52,72.14Z"/><path class="cls-4" d="M71.3,33.44c.07-.91.17-1.82.2-2.73s.46-1.07,1.18-1.06a5.21,5.21,0,0,0,.79,0c3.35-.32,4.28,1.12,5,4.05A9.25,9.25,0,0,1,78.2,38a1.35,1.35,0,0,1-1.28,1.09,14.16,14.16,0,0,1-4.21-.19,1.3,1.3,0,0,1-1-1A13.45,13.45,0,0,1,71.3,33.44Z"/><path class="cls-4" d="M51.59,38.92c-.06.8-.11,1.48-.17,2.16-.15,1.72-.9,2.42-2.67,2.44-.88,0-1.75,0-2.62-.06-1.85-.15-2.71-.91-2.94-2.73a16.06,16.06,0,0,1,.28-4.89,1.86,1.86,0,0,1,1.76-1.55,14.83,14.83,0,0,1,4.21.13,2.35,2.35,0,0,1,2,2.1C51.54,37.35,51.54,38.19,51.59,38.92Z"/><path class="cls-4" d="M96.1,49.89c0-1-.37-1.29-1.34-1.36a72.58,72.58,0,0,0-10.83.55c-6.63.54-13.24,1.27-19.82,2.25a77.65,77.65,0,0,0-9,1.83c-.74.14-1.48.27-2.22.43a61.39,61.39,0,0,0-8.36,2h0a14.41,14.41,0,0,0-2.41.69c-3.13.84-5.87,2.65-9,3.55-.37.11-.33.38-.25.73A16.89,16.89,0,0,0,40.27,71c2.25,1.51,4.91,2.3,7.12,3.85,3.22,2.25,7,2.7,10.66,3.35s7.15.2,10.74.2a16.78,16.78,0,0,0,5.42-.67,41.4,41.4,0,0,0,15.44-8.85,22,22,0,0,0,5.27-8.07C96.34,57.29,96.05,53.58,96.1,49.89ZM88.62,63.53A13.78,13.78,0,0,1,87,66a30.13,30.13,0,0,1-9.31,7.43c-4.14,2.26-8.38,4-13.24,3.53a16.26,16.26,0,0,0-1.71,0c-3.19.05-6.12-1.1-9.13-1.87a2.93,2.93,0,0,1-.9-.49,30,30,0,0,0-5-2.73c-.33-.19-.68-.34-1-.51a16.84,16.84,0,0,1-8.27-8.74C37.76,61,38,60.75,39.52,60c5.63-2.64,11.71-3.88,17.71-5.36A144.87,144.87,0,0,1,76.44,51.5c4.46-.47,8.93-.86,13.4-1.29Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/4.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 145.05"><defs><style>.cls-1{fill:#d6674c;}.cls-2{fill:#292929;}.cls-3{fill:#fff;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M137.73,95a97.2,97.2,0,0,1-9.26,21.35,23.17,23.17,0,0,1-4.11,4.8c-2.68,2.67-5.1,5.63-8.27,7.78a38.18,38.18,0,0,1-7.75,4.45c-1.07.4-2,1-3.07,1.54a84.69,84.69,0,0,1-8,2.95,70,70,0,0,1-14.36,3.51c-3.28.48-6.31,1.71-9.5,2.39A71,71,0,0,1,63.06,145a17.62,17.62,0,0,1-5-.66c-3.81-.88-7.61-1.77-11.39-2.78a25.22,25.22,0,0,1-10.85-6.25c-1.82-1.7-3.55-3.5-5.31-5.27a8.79,8.79,0,0,0-1.87-1.51,20.3,20.3,0,0,1-6.38-5.71,38.56,38.56,0,0,0-6.37-6.77c-2.43-2-4-4.69-5.74-7.28-2.93-4.42-5.85-8.85-7.21-14A85.31,85.31,0,0,1,.44,79.85a100.94,100.94,0,0,1-.3-14.23c.22-3.26.39-6.59,1.55-9.7,1.52-4.09,2.1-8.38,3-12.61A15.24,15.24,0,0,1,7.6,36.54a34.09,34.09,0,0,0,2.22-3.35c2-3.27,5-5.67,7.64-8.39a2.76,2.76,0,0,0,.75-1.95c.15-2.79-.53-5.48-.8-8.22-.36-3.64-.1-7.28-.18-10.92,0-.77.52-.78,1.09-.86,4.05-.53,7.08,1.49,9.89,4,1.64,1.45,3.13,3.06,4.81,4.46a1.06,1.06,0,0,0,1.58.07,18.52,18.52,0,0,1,3.15-1.89,36.07,36.07,0,0,0,5.81-3.69A14.57,14.57,0,0,1,49.5,3.09c3.36-.77,6.81-1,10.21-1.63A131.83,131.83,0,0,1,76.07,0c2.31-.12,4.65.42,7,.55a81.38,81.38,0,0,1,10.76,1.7c3.84.73,7.8,1.41,11,3.94a7,7,0,0,1,1.09,1,4.38,4.38,0,0,0,2.24,1.51,12,12,0,0,1,3.2,1.79,1.62,1.62,0,0,0,1.79.09c2.9-1.29,5.61-3,8.64-4a12.83,12.83,0,0,1,5.9-1c.92.11,1.21.33,1.25,1.28.22,5.08-.84,10-1.77,14.91-.39,2-.82,4.06-1.25,6.08a2.43,2.43,0,0,0,.51,2.12c2,2.62,4.25,5.07,5.68,8.07,2,4.07,3.79,8.17,4.47,12.72.38,2.59,1.31,5.1,1.92,7.66a78.56,78.56,0,0,1,1.9,16.75A67.25,67.25,0,0,1,137.73,95Z"/><path class="cls-2" d="M66.74,73.38a39.78,39.78,0,0,1-8.44-.73c-4.51-.9-8.47-5.26-9.28-10.1-.13-.83-.33-1.65-.45-2.48s.24-1.47,1.23-1.47h.12a10.42,10.42,0,0,1,2.86.11c1.16.39.39,1.61.64,2.44a27.75,27.75,0,0,0,1.64,5,10.63,10.63,0,0,0,9.74,6,16.12,16.12,0,0,0,4.64-.32A10,10,0,0,0,75,67.8,20.77,20.77,0,0,0,78.46,60a1.27,1.27,0,0,1,1.3-1.13c3.62-.34,3.93.1,2.78,3.51a19.92,19.92,0,0,1-4.6,7.73c-1.93,2-4.45,2.63-7,3.06A15.93,15.93,0,0,1,66.74,73.38Z"/><path class="cls-3" d="M46.78,53.59c-1-.05-1.91-.07-2.87-.14a1.48,1.48,0,0,1-1.58-1.69c.09-2.55.14-5.11.26-7.66s1.8-3.75,4.71-4a19.11,19.11,0,0,1,6.52.52,1.56,1.56,0,0,1,1.31,1.67A21.84,21.84,0,0,1,53.81,50c-.43,1.42-3.26,3.45-4.75,3.5-.76,0-1.52,0-2.27,0Z"/><path class="cls-3" d="M87.47,52.08a13.06,13.06,0,0,1-3.69-.23c-2-.63-2.89-1.69-2.73-3.75.18-2.38.57-4.75.93-7.11a1.58,1.58,0,0,1,1.44-1.41,30.39,30.39,0,0,1,9.18.19,5,5,0,0,1,1.47.5c1.65.88,2.14,1.62,1.49,3.38-.72,1.91-1.17,3.9-2,5.78a3.84,3.84,0,0,1-4,2.65C88.91,52.06,88.19,52.08,87.47,52.08Z"/><path class="cls-2" d="M52.62,46.6c0,1.08,0,2.16,0,3.23A1.71,1.71,0,0,1,51,51.62a12.64,12.64,0,0,1-3.93.08c-.67-.07-1-.43-1.22-1.09A13.84,13.84,0,0,1,45.43,45a2.77,2.77,0,0,1,2.64-2.63,19.76,19.76,0,0,1,3.69.05c.67,0,1,.26,1,1-.07,1,0,2.08,0,3.12Z"/><path class="cls-2" d="M83.83,48c0-1.89.56-3.7.69-5.58a1,1,0,0,1,.94-.91,21.58,21.58,0,0,1,5.62,0c1.49.22,2,1,1.92,2.49a14.24,14.24,0,0,1-1.64,5.35c-.94,1.86-2.75,1.2-4.23,1.44a3.68,3.68,0,0,1-1.07-.15C83.75,50.39,83.75,50.39,83.83,48Z"/><path class="cls-2" d="M75,37.12a1.13,1.13,0,0,0,.92-.36c3.26-2.9,7.28-4.42,11.14-6.26,2.82-1.35,5.75-2.42,8.64-3.59.37-.15.93-.28,1-.75s-.57-.68-1-.88c-.57-.28-1.18-.48-1.77-.72a2.9,2.9,0,0,0-2.86.27c-1.73,1.09-3.89,1.24-5.72,2.23C83,28.34,80.51,29.38,78,30.43a29.33,29.33,0,0,0-6.76,4.38c-.47.37-.44.69.06,1A9,9,0,0,0,75,37.12Z"/><path class="cls-2" d="M45.52,27.24a8.84,8.84,0,0,0-4,1.93c-.49.41-.16.56.31.72a113.85,113.85,0,0,1,14.45,6c.61.3,1.21.65,1.81,1,.15.08.42.16.42.25.09,1.86,1.3.76,1.94.64a8.16,8.16,0,0,0,3.21-1.54c.64-.47.75-.81-.1-1.25a144.14,144.14,0,0,0-17.42-7.53C45.94,27.35,45.73,27.3,45.52,27.24Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/5.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 154.65"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#292929;}.cls-3{fill:#8cbbe8;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M78.82,14.22h.23c1.51.45,3.08.24,4.62.42A35.62,35.62,0,0,1,90.14,16c8,2.52,16,5.09,23.69,8.33,5.26,2.2,10.26,5,14,9.44a25.84,25.84,0,0,1,5.75,10c1.44,5.36,2.86,10.74,4.53,16.05a58.91,58.91,0,0,1,2.14,10,24.36,24.36,0,0,1,.17,3.19c0,4,0,8.1,0,12.15a6.47,6.47,0,0,1-.19,1.93,19.45,19.45,0,0,0-.58,6.35c0,2.83.14,5.67,0,8.48-.33,5.22-.77,10.45-3.06,15.26a54.62,54.62,0,0,1-5.58,9.17,94.67,94.67,0,0,1-6.28,7.85,35.51,35.51,0,0,1-7.62,6.32c-5,3.06-10,6.15-15.21,8.83a48.2,48.2,0,0,1-11,3.75,60.82,60.82,0,0,1-6.15,1.23,31.19,31.19,0,0,1-4.09.25c-6.9,0-13.79.07-20.69,0a40.05,40.05,0,0,1-16-3.14c-3.51-1.56-7.06-3-10.65-4.41a27.83,27.83,0,0,1-13.93-12A100.72,100.72,0,0,0,12,124.22,38.38,38.38,0,0,1,8.85,119a60.65,60.65,0,0,1-6.18-13.87A60.49,60.49,0,0,1,1,93.76C.84,91,.57,88.14.24,85.34,0,83.56.14,81.76.1,80a77,77,0,0,1,.11-9.73,59.67,59.67,0,0,1,1.62-7.48A87.84,87.84,0,0,1,7,48.23,58.19,58.19,0,0,1,11.82,39,8.86,8.86,0,0,1,13,37.46c3.21-3.1,6.15-6.46,9.31-9.61a37.87,37.87,0,0,1,8.39-6.07c3.79-2.14,7.58-4.27,11.91-5.12A93.83,93.83,0,0,1,59,14.45c4.23-.22,8.47-.06,12.7-.11h3A30.43,30.43,0,0,0,78.82,14.22Z"/><path class="cls-2" d="M69.91,83.37a36.61,36.61,0,0,1-9.6-1A15.66,15.66,0,0,1,50.59,75a18.29,18.29,0,0,1-3.14-7.64c-.24-2.22-.23-2.34,1.95-2.47a7.12,7.12,0,0,1,.8,0,4,4,0,0,1,1.68.18c.63.36-.08,1,0,1.51.48,4.1,2.43,7.46,5,10.57,3,3.71,7.13,5,11.71,5.11a40.45,40.45,0,0,0,5.93-.06c3.49-.42,5.94-2.55,7.73-5.45a23.4,23.4,0,0,0,3.27-10.18.75.75,0,0,1,.79-.78,18.51,18.51,0,0,1,3.07,0c.63,0,.92.39.79,1-.91,4.32-1.84,8.64-4.87,12.11a12.47,12.47,0,0,1-8.6,4.36C74.4,83.43,72.16,83.35,69.91,83.37Z"/><path class="cls-2" d="M89.16,46c2.87-.69,4.69,1.14,6.49,2.82,1.06,1,1.26,2.5,1.58,3.86a19.13,19.13,0,0,1,.3,4.21c0,.63-.21.93-.83.93h-.35c-3.11.16-3.11.16-3.29-2.88A15.4,15.4,0,0,0,91.91,50c-.54-1.31-1.92-1.81-2.83-2.75-.22-.23-.42-.05-.6.1a11.13,11.13,0,0,0-4.39,8.29.85.85,0,0,0,0,.45c.74,1.4-.31,1.22-1.11,1.26l-.57,0c-2.84.09-3.54-.63-2.72-3.41a13.38,13.38,0,0,1,3.39-6.12,6.4,6.4,0,0,1,4.8-1.94C88.32,46,88.74,46,89.16,46Z"/><path class="cls-2" d="M51.62,46.37c1.76.08,3.57-.12,5.1,1.15a8.88,8.88,0,0,1,2.81,5.09,32.2,32.2,0,0,0,.89,3.64c.23.61,0,.8-.53.81a26.2,26.2,0,0,1-3.07,0c-.77-.06-1-.71-1.15-1.37-.44-1.72-.49-3.55-1.37-5.15A12.59,12.59,0,0,0,53.48,49c-1.47-2-3.79-1.89-5.18.25-1.12,1.73-2.11,3.62-1.95,5.62.15,1.84-.83,1.61-1.86,1.65a19.49,19.49,0,0,1-2.16-.07c-.62,0-.72-.46-.66-1a14.58,14.58,0,0,1,2.73-7.28,2.37,2.37,0,0,1,1.21-.81A14,14,0,0,1,51.62,46.37Z"/><path class="cls-3" d="M110.54,21.58a11.28,11.28,0,0,0-1.67-3.52,27.13,27.13,0,0,0-5.57-5.8C98,8,92.25,4.35,85.52,2.58a74.57,74.57,0,0,0-33.29-1.3C47.35,2.14,42,2.82,38.11,6.13c-1,.85-2,1.66-3,2.48a10.57,10.57,0,0,0-4,9.11,6.08,6.08,0,0,0,1.66,4.19,39.54,39.54,0,0,0,12.46,9c9.87,4.76,20.45,6.48,31.28,6.89,4.61.17,9.24.17,13.86,0a31.49,31.49,0,0,0,13.52-3.34c3-1.52,5.58-3.24,6.43-6.72C110.71,25.68,110.44,23.62,110.54,21.58Zm-7.46,2.07a7.52,7.52,0,0,1-3.18,3.71A32.79,32.79,0,0,1,82.79,32.1c-2.9.07-5.8.08-8.7,0-9.77-.29-19.43-1.35-28.72-4.65a39.66,39.66,0,0,1-6.86-3.21,1.25,1.25,0,0,1-.64-1.07,9.47,9.47,0,0,1,3.05-8.35C53,2.88,77.67,4.1,92.51,8.81A32.15,32.15,0,0,1,102.3,14a4.19,4.19,0,0,1,1.61,3.55A16.28,16.28,0,0,1,103.08,23.65Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/6.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 137.3"><defs><style>.cls-1{fill:#ffd561;}.cls-2{fill:#292929;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M73,0c4.22.11,8.43.32,12.63.8a26.46,26.46,0,0,1,5.56,1.57c3.63,1.27,7.38,2.29,10.69,4.34A36.42,36.42,0,0,1,108,11.1c1,.93,2.1,1.68,3.14,2.53A47.9,47.9,0,0,1,116,18.56a22.52,22.52,0,0,0,3,2.69A34.79,34.79,0,0,1,125.86,29a20.7,20.7,0,0,1,2.74,5,2.25,2.25,0,0,0,.56.79c3.15,3.21,5.29,7.12,7.39,11a18.17,18.17,0,0,1,1.49,5c.71,3.5,1.48,7,2.09,10.49a23.46,23.46,0,0,1-.95,11.21c-.76,2.35-1.64,4.67-2.49,7a11.39,11.39,0,0,0-.57,2.76,20.06,20.06,0,0,1-2.43,7.54,33.39,33.39,0,0,0-3,7.71c-.83,3.24-2.73,5.93-4.42,8.73-2.46,4.11-5,8.16-8.76,11.22a74.88,74.88,0,0,1-10.59,7.48,100.94,100.94,0,0,1-13.34,6.72,35.45,35.45,0,0,1-10.39,2.79c-3.55.24-6.87,1.49-10.3,2.31a16.5,16.5,0,0,1-7.56.21c-1.34-.3-2.73-.41-4.09-.66-5.3-1-10.16-3.24-15.16-5.09-.78-.29-1.54-.65-2.34-.9A7.16,7.16,0,0,1,41,128.78a15.22,15.22,0,0,0-3.28-2.15c-3.15-1.6-6.28-3.23-9.41-4.86a10.41,10.41,0,0,1-1.27-.85c-5.25-3.79-9.13-8.74-12.54-14.2-2.64-4.24-5.11-8.56-7.57-12.89a46.21,46.21,0,0,1-2.48-6.17A94.34,94.34,0,0,1,1.17,76.59,30.51,30.51,0,0,1,.3,64.2,58.62,58.62,0,0,1,5.09,48C5.63,46.8,6.32,45.71,7,44.62a33.91,33.91,0,0,0,2.8-6.84,13.79,13.79,0,0,1,3-5.06A65.16,65.16,0,0,0,19.26,24a14,14,0,0,1,3.53-3.54,48,48,0,0,0,6.85-5.74c1.23-1.35,3-2.11,4.46-3.13C36,10.29,38,9.06,40,7.81a35.07,35.07,0,0,1,9.4-3.7,70.51,70.51,0,0,1,7.51-1.89C60.28,1.64,63.67,1,67.08.43A26.8,26.8,0,0,1,73,0Z"/><path class="cls-2" d="M82.65,104.61c0,2,0,2-2.1,2s-2.07,0-2.21-2.07c-.08-1.24-.22-2.46-.42-3.68a12,12,0,0,0-2.73-5.63,5.35,5.35,0,0,0-5.38-1.9,19.11,19.11,0,0,0-7.5,2.79,19.93,19.93,0,0,0-7,8.28.74.74,0,0,1-.73.51c-.91,0-1.82,0-2.73,0s-1-.41-.69-1.15a22.28,22.28,0,0,1,2.16-3.27,18.35,18.35,0,0,1,11.06-7.44,22.4,22.4,0,0,1,11.52-.34c3.4.93,4.91,3.69,6,6.71A16.9,16.9,0,0,1,82.65,104.61Z"/><path class="cls-2" d="M40.94,85.51c2.15-1,4.17-2.24,6.28-3.29a11.47,11.47,0,0,0,4.51-4.73c.35-.57.59-.64,1.08-.37l.4.19c2.65,1.45,2.71,1.83,1,4.26a9.51,9.51,0,0,1-3.46,3.09c-1.72.87-3.45,1.73-5.1,2.72a2.34,2.34,0,0,1-2.89-.19A5.73,5.73,0,0,1,40.94,85.51Z"/><path class="cls-2" d="M100.78,86c-1.75,2.17-3.93,2.6-6.09,1.35a8.33,8.33,0,0,0-1.34-.73A12.66,12.66,0,0,1,87,81.21c-1.06-1.63-1-2.08.66-3.07.37-.22.79-.37,1.18-.56.72-.37,1-.17,1.44.6,1.35,2.53,3,4.8,5.87,5.88C97.72,84.65,99,85.88,100.78,86Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/7.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#99c458;}.cls-2{fill:#fff;}.cls-3{fill:#292929;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M140.39,64.74c-.1,6.07-.24,12.13-.67,18.19-.42,5.86-2.75,11.12-5.14,16.39-2.59,5.74-6.28,10.81-9.46,16.19-.51.85-1,1.72-1.46,2.6a27.15,27.15,0,0,1-14.28,13c-2.94,1.22-5.83,2.54-8.61,4-3.43,1.85-7.14,2.65-10.84,3.58a54.27,54.27,0,0,1-11.14,1.13c-5,.21-9.94.5-14.91.6a59,59,0,0,1-15.05-2c-6.27-1.5-11.75-4.72-17.36-7.68a65.16,65.16,0,0,1-8.56-4.88,57.36,57.36,0,0,1-10-10c-1.9-2.3-3.61-4.73-5.3-7.19-2.65-3.85-3.75-8.2-4.65-12.69A87.44,87.44,0,0,1,1.78,81.58,16,16,0,0,0,1,76.4C.17,74.24.47,71.94.27,69.71a69.66,69.66,0,0,1,3-26.9,49,49,0,0,0,1.07-5.26c.45-2.43,1.29-4.76,1.87-7.15a14,14,0,0,1,2.84-5.14c.85-1.1,1.39-2.39,2.35-3.48,2.35-2.65,5.3-4.49,8.15-6.46,3.81-2.63,8.16-4.18,12.38-6,4.89-2.08,9.87-3.94,14.86-5.76A51.76,51.76,0,0,1,63.64.45C67.73.39,71.82.11,75.92,0A96.11,96.11,0,0,1,88.48.84c3.27.35,6.59.55,9.7,1.61,6.89,2.34,13.43,5.36,18.79,10.46,2.16,2.06,4.27,4.18,6.54,6.11,3.24,2.74,5.32,6.27,7.26,9.92a100.35,100.35,0,0,1,8.82,22.69c.72,2.9.54,5.84.78,8.76C140.49,61.83,140.39,63.29,140.39,64.74Z"/><path class="cls-2" d="M83.91,40.91a4.24,4.24,0,0,0,1,1.3,12.62,12.62,0,0,0,5.39,3.1,7.48,7.48,0,0,0,6-1,5.33,5.33,0,0,0,2.19-5.49,7.18,7.18,0,0,0-1.14-2.26c-2-2.86-6-5.69-9.72-4.54C84.71,33,82.63,38.07,83.91,40.91Z"/><path class="cls-2" d="M40.3,45.36a10.84,10.84,0,0,0,2.87,1.77,5.77,5.77,0,0,0,2.79.72,5.77,5.77,0,0,0,3.7-2.36A25.56,25.56,0,0,0,52,42.32a4.65,4.65,0,0,0,.93-3.72,4.47,4.47,0,0,0-1.38-1.83c-2.58-2.31-8.3-6-11.39-2.7C37.41,37,37.39,42.72,40.3,45.36Z"/><path class="cls-3" d="M59.32,60a14.11,14.11,0,0,0-1.45-6.52c-.77-1.41-1-1.4-2.11-.28A13.13,13.13,0,0,0,52.22,58c-.07.21-.23.45-.19.65.31,1.45-.65,1.39-1.59,1.38-.65,0-1.3,0-1.95,0-.9,0-1.24-.37-1-1.29a9.16,9.16,0,0,1,1.36-3,29.06,29.06,0,0,1,3.83-4.24c1.28-1.27,2.91-1.15,4.51-1.17,3-.06,4.8,1.58,5.77,4.28.19.53.39.6.91.41a15.91,15.91,0,0,1,7.57-.46.81.81,0,0,1,.51.23c.92,1.2,1.59.58,2.51-.13a11,11,0,0,1,5.66-2c.72-.09,1.44-.13,2.16-.15a4.69,4.69,0,0,1,4.24,2.07c1.23,1.64,2.83,3,3,5.23a5.94,5.94,0,0,0,.25,2.36c.14.29-.2.47-.48.51a10.75,10.75,0,0,1-1.14,0c-2.61,0-3.37.3-3.19-2.77a4.88,4.88,0,0,0-1.65-3.78,10.09,10.09,0,0,0-.74-.72c-.58-.44-.82-1.49-1.67-1.39A4.38,4.38,0,0,0,78.1,55.6,8.74,8.74,0,0,0,76,61.28c-.07,2.26-.06,2.43-2.22,2.32-2.49-.13-2.69.44-2.46-2.37.21-2.48-1.24-3.87-2.81-5.29a1,1,0,0,0-1.26,0,4.46,4.46,0,0,0-1.8,2,12.77,12.77,0,0,0-1.17,2.85A1.78,1.78,0,0,1,62,62.37c-.07,0-.15,0-.22,0C58.7,62.33,59.35,62.47,59.32,60Z"/><path class="cls-3" d="M94.88,46.31c-.19,0-.38,0-.57,0-1,.07-1.67,0-2-1.22s-1.23-1.9-1.64-3c-.2-.54-.55-.69-1-.21-.13.14-.33.22-.44.37-1.34,1.92-3.31,1.89-5.33,1.75-.28,0-.61,0-.72-.28s.24-.51.45-.69c1.44-1.25,2.88-2.49,4.36-3.7.56-.45.56-.8.2-1.42-.93-1.57-1.75-3.21-2.65-4.81-.42-.75-.16-1,.61-1.1a14.64,14.64,0,0,1,3,0,.87.87,0,0,1,.82.64c.39.87.9,1.68,1.3,2.54.3.64.6.59,1,.12a15,15,0,0,1,3.13-2.48c.83-.62,1.91-.31,2.89-.3.54,0,1.4-.26,1.55.33S99,33.68,98.54,34a54.57,54.57,0,0,0-4.9,4.46c-.52.47-.1.84.11,1.2,1,1.82,2.07,3.64,3.18,5.42.58.94.12,1.13-.67,1.18-.46,0-.92,0-1.38,0Z"/><path class="cls-3" d="M51,44.48c-2.18.61-3.16-1.5-4.63-2.56-.81-.59-1.13-.59-1.6.21a11.21,11.21,0,0,1-1.08,1.48c-.45.55-.65,1.38-1.45,1.53a10,10,0,0,1-3.74,0c-.56-.11-.31-.42-.07-.74,1.2-1.57,2.35-3.19,3.57-4.75.56-.71.6-1.27-.18-1.79a26.12,26.12,0,0,1-4.4-3.8c-.19-.2-.62-.29-.45-.68s.48-.3.79-.34c2.11-.24,4-.06,5.34,2,.49.77,1,1,1.48-.1a19.62,19.62,0,0,1,1.53-2.27,1.06,1.06,0,0,1,1-.5c.8,0,1.6,0,2.4,0,.39,0,.84,0,1.05.33s-.19.79-.43,1.09a23.38,23.38,0,0,0-2.46,4.25A1,1,0,0,0,48,39.24c1.65,1.35,3.26,2.75,4.87,4.15.24.21.68.41.53.78s-.57.31-.92.31Z"/><path class="cls-3" d="M108.65,33.5c-1.19.28-1.94-.25-2.54-1.63-.8-1.82-2.18-3.37-3-5.22-.4-.9-.2-1.15.7-1.2,3.17-.2,3.19-.22,4.59,2.65.63,1.27,1.64,2.28,2.23,3.58.76,1.67.72,1.77-1.07,1.82Z"/><path class="cls-3" d="M27.9,29.8H26.78c-.4,0-1,.13-1.07-.39s.39-.71.72-.94c1.78-1.24,3.61-2.41,5.31-3.77a8.06,8.06,0,0,1,4.66-.23c.27.17.58.4.08.63a35.8,35.8,0,0,0-5.65,3.8A4,4,0,0,1,27.9,29.8Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/8.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 140.43"><defs><style>.cls-1{fill:#8cbbe7;}.cls-2{fill:#fff;}.cls-3{fill:#292929;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M70,.07c2.87,0,5.74,0,8.61,0,5.48-.06,10.74,1.16,16,2.6,6.51,1.79,12.09,5.42,17.79,8.84a62,62,0,0,1,9.34,6.23,44.57,44.57,0,0,1,5.47,5.86,90.51,90.51,0,0,1,8,11.6,33.06,33.06,0,0,1,3.57,11.06c1,5.68.62,11.38.65,17.08a12.67,12.67,0,0,0,.43,3.52,12.74,12.74,0,0,1,.51,4.08c0,1.49-.08,3,0,4.48a62.19,62.19,0,0,1-2.67,20.16c-1.17,4.12-2.42,8.21-3.47,12.36a29.59,29.59,0,0,1-2.54,7.32,5.15,5.15,0,0,1-1,1.4c-1.42,1.28-2.05,3.11-3.35,4.48-2.92,3.08-6.53,5.16-10.13,7.25-3.76,2.18-7.94,3.38-12,4.86a176.17,176.17,0,0,1-18.08,5.82A44.59,44.59,0,0,1,76,140.43c-4.9-.06-9.8,0-14.7-.09a71.22,71.22,0,0,1-9.65-1.07,98.83,98.83,0,0,1-10.65-2c-3.66-1-6.86-2.94-10.19-4.65-5.3-2.72-9.36-6.84-13.26-11.18a8.41,8.41,0,0,0-.89-.9c-3.94-3.36-6.52-7.67-8.59-12.33a114.94,114.94,0,0,1-5.63-14.8A53.8,53.8,0,0,1,.1,74.84c.45-7,1-14,1.83-20.9C2.55,48.72,4.69,44,7,39.4a84.55,84.55,0,0,1,4.28-7.6c1.9-3,4.09-5.8,6.09-8.74C18.8,21,20,18.7,21.5,16.71A27.21,27.21,0,0,1,34.17,7.4C38.06,6,41.82,4.3,45.59,2.65A35.85,35.85,0,0,1,53.35.78,39.74,39.74,0,0,1,61.43,0c2.86.05,5.73,0,8.6,0Z"/><path class="cls-2" d="M95.16,49.32a4.61,4.61,0,0,1-4.92-2.21c-.38-.57-1.17-.75-1.49-1.4a5.53,5.53,0,0,1,0-5.07,9.48,9.48,0,0,1,3.74-3.77,6,6,0,0,1,2.79-.51,7.56,7.56,0,0,1,5.6,1.45c.8.65.77,1.83.9,2.77a8.89,8.89,0,0,1-2.16,7.23A4.6,4.6,0,0,1,95.16,49.32Z"/><path class="cls-2" d="M54.06,44.54a7.74,7.74,0,0,1-2.55,6.55,2.88,2.88,0,0,1-1.38.79,13,13,0,0,1-5.56,0c-1.86-.46-3.83-3.27-3.85-5.24,0-3.31,2.05-6.4,4.79-7a13.9,13.9,0,0,1,5.78-.06C53.44,40,54.1,41.18,54.06,44.54Z"/><path class="cls-3" d="M89.54,56.36c-.68-2-.67-2-2.8-2-.81,0-1.75-.28-2.41.41-1,1-2.07,1.81-2.94,2.89a16.46,16.46,0,0,1-2.61,2.82A22.81,22.81,0,0,1,77,58.16a4.93,4.93,0,0,0-5.4-2.5,2.23,2.23,0,0,0-1.92,1.15c-.91,1.6-1.88,3.16-2.79,4.75-.27.47-.49.57-1,.23A51,51,0,0,1,60.78,58c-1.57-1.51-3.42-1.69-5.41-1.54-.34,0-.68.1-1,.11a1.53,1.53,0,0,0-1.45.93c-1.12,2.3-2.29,4.58-3.34,6.91-.69,1.53-.57,1.65,1.08,2.1,0,0,0,.13.07.2h1.38c.15-.51.57-.22.86-.27s.68-.1.76-.54c.44-2.34,1.8-4.28,2.74-6.41.29-.65.53-.62,1.07-.22,1.57,1.15,3.26,2.15,4.77,3.38a8.07,8.07,0,0,0,6.29,1.78,2.16,2.16,0,0,0,1.87-1.09c.82-1.4,1.7-2.78,2.59-4.24a22.23,22.23,0,0,1,2.33,3.13c.28.47.59,1,1.18,1,2.26.18,4.54.42,6.12-1.79a15.55,15.55,0,0,1,1.58-1.67c.43-.43.72-1,1.38-1.37.08.36.15.62.19.87a44.51,44.51,0,0,1,.73,4.88c0,.61.08,1.38,1,1.39s2,0,3,0c.46,0,.78-.16.68-.78A50.07,50.07,0,0,0,89.54,56.36Z"/><path class="cls-3" d="M95.65,39c2-.45,3.65-1.84,5.75-2.23a6.58,6.58,0,0,0-5.26-.26c-1.74.76-3.48,1.5-5.28,2.12a6.62,6.62,0,0,0-2.55,1.47c-1,.92-1.11,1.47-.21,2.39,1.83,1.88,3.76,3.67,5.65,5.49.69.66,2,1.28,2,2,0,1.35.83.93,1.44,1s1.3,0,2,0a1.23,1.23,0,0,0,1.32-.7c.23-.57-.3-.81-.64-1.08-2.5-2-4.49-4.57-7-6.59a3,3,0,0,1-.52-.61.84.84,0,0,1,.14-1.28A6.69,6.69,0,0,1,95.65,39Z"/><path class="cls-3" d="M52.45,44.59c.86-1.39.55-2.15-1-2.43-2.44-.43-4.9-.72-7.34-1.1a16.88,16.88,0,0,0-6.05.16c-.3.06-.72.11-.71.41s.44.48.79.49c.69,0,1.38,0,2.07,0a27.26,27.26,0,0,1,6.11.69c.69.11,1.71-.25,2,.5s-.59,1.48-1.12,2.12c-.15.17-.32.33-.48.49l-6.1,5.9c-.16.15-.47.22-.37.5s.4.33.67.33c1,0,2.06,0,3.09,0a1.67,1.67,0,0,0,1.12-.53c2-2,4.1-4,6.13-6A8.83,8.83,0,0,0,52.45,44.59Z"/><path class="cls-3" d="M36.9,29.54c-1,0-2,0-3,0a1.16,1.16,0,0,0-1,.61c-1.64,2.93-4,5.33-6.11,7.86-.42.49-1.36,1-1.08,1.58s1.34.16,2,.41c.82-.25,1.79.24,2.48-.58,2.5-2.93,5.24-5.67,7.18-9C37.77,29.67,37.43,29.56,36.9,29.54Z"/><path class="cls-3" d="M111.11,33c-1.2-2.55-2.7-4.95-3.71-7.59a.85.85,0,0,0-.82-.65c-1,0-2,0-3,0-.64,0-.91.33-.7,1a4,4,0,0,0,.36,1,41.34,41.34,0,0,1,3.1,6.12c.62,1.44,1.53,2.26,3.18,1.92l.69,0C112,34.55,111.88,34.6,111.11,33Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
1
plugin/editor/rb.editor/image/sticker/Facecon/9.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.43 144.96"><defs><style>.cls-1{fill:#ebebeb;}.cls-2{fill:#ffd561;}.cls-3{fill:#fff;}.cls-4{fill:#d6674c;}.cls-5{fill:#292929;}</style></defs><g id="레이어_2" data-name="레이어 2"><g id="Graphic_Elements" data-name="Graphic Elements"><path class="cls-1" d="M94,0a.89.89,0,0,1,0,.23.79.79,0,0,1-1.13,0V0Z"/><path class="cls-2" d="M140.12,70.89A65.63,65.63,0,0,0,138.49,61c-.62-2.49-1.48-4.92-2-7.42-.15-.78-.32-1.56-.51-2.33-1.56-6.3-4.85-10.64-8.34-15.86-3.25-4.86-5.68-9.8-9.75-14.17C110.07,12.81,99.42,6.68,87.61,5.53,84.42,5.22,81.22,5,78,4.62c-2.91-.3-5.8.18-8.7.31a57.92,57.92,0,0,0-7.76.76c-2.44.43-4.93.61-7.39,1a30.2,30.2,0,0,0-7.35,1.69c-2.32,1-4.59,2.05-6.88,3.09a8.57,8.57,0,0,0-1.16.71c-4.57,3-8.51,6.94-13.6,9.26a2.84,2.84,0,0,0-.63.48c-3.14,2.92-6.31,5.83-9.42,8.79a31.79,31.79,0,0,0-5,5.52A38.35,38.35,0,0,1,7.65,39.8a16.32,16.32,0,0,0-3.08,6.86c-.73,3.14-.88,6.41-2.07,9.44A39.77,39.77,0,0,0,0,69.81,93.18,93.18,0,0,0,2,92.57a38.65,38.65,0,0,0,3.55,10.17c1.84,3.44,4.22,6.54,6.34,9.81a22,22,0,0,0,4.59,5A32.69,32.69,0,0,1,21.83,123,20.78,20.78,0,0,0,28,128.66a11.86,11.86,0,0,1,2.48,1.79c1.63,1.62,3.29,3.22,5,4.81a27.31,27.31,0,0,0,9.32,5.8c3.41,1.28,7.07,1.62,10.56,2.62a26.64,26.64,0,0,0,10.87,1.1c3.71-.48,7.45-.74,11-2.07a10.71,10.71,0,0,1,2.69-.8c4.4-.35,8.64-1.57,12.94-2.41a41.8,41.8,0,0,0,4.79-1.56,63.72,63.72,0,0,0,7.54-2.67c1.13-.53,2.21-1.18,3.38-1.63a37.78,37.78,0,0,0,7.81-4.42,51.53,51.53,0,0,0,6.24-5.56,41.29,41.29,0,0,0,8.22-10.22c2.7-5,5.54-9.89,7-15.45a76.75,76.75,0,0,0,2.62-16.53A82.91,82.91,0,0,0,140.12,70.89Z"/><path class="cls-1" d="M94,0a.89.89,0,0,1,0,.23.79.79,0,0,1-1.13,0V0Z"/><path class="cls-3" d="M64.24,41.74c.4,3.2-.61,6.22-1.18,9.28a8.29,8.29,0,0,1-2.51,4.49,57.83,57.83,0,0,1-5,4.19c-2.62,1.94-5.66,2.41-8.87,2.41a13.57,13.57,0,0,1-9.48-3.58,6.94,6.94,0,0,1-2.59-5.42A49.28,49.28,0,0,1,35,44.87a15,15,0,0,1,.54-2c1.12-3.16,2.26-6.32,3.38-9.48a5.75,5.75,0,0,1,3.41-3.54,20.86,20.86,0,0,1,11.94-1.34A11.8,11.8,0,0,1,64.1,37.8,22.58,22.58,0,0,1,64.24,41.74Z"/><path class="cls-3" d="M91.18,30.66c4,1.93,7.87,4.76,9.76,8.78a17.31,17.31,0,0,1,1.5,7.69,27.81,27.81,0,0,1-1.21,9.25,15.14,15.14,0,0,1-1.6,3.47,4.08,4.08,0,0,1-3.54,1.83,66.62,66.62,0,0,1-9.69-.59A9,9,0,0,1,78.86,56c-1.11-2.33-3-4.26-3.74-6.8A30.8,30.8,0,0,1,74,37.38c.13-1.65,0-3.36.91-4.84,1.41-2.34,3.28-4,6.24-4a22.78,22.78,0,0,1,8.46,1.38C90.11,30.16,90.64,30.4,91.18,30.66Z"/><path class="cls-4" d="M62,78.9c2.21.6,4.31,1.35,5.09,3.82.18.57.37.9,1.08.76a13.47,13.47,0,0,1,2.9.18c-.63,2.51-1.15,5.08-3,7-.93,1-1.62,1-2.64.13A9.2,9.2,0,0,1,62,83.31C62,81.84,62,80.37,62,78.9Z"/><path class="cls-5" d="M73.25,69.75c-2.91-3.78-7.09-4.41-11.53-3.82a2.48,2.48,0,0,0-2.12,1.55c-.29,1-.64,2-.87,3a39.52,39.52,0,0,0-1.25,10.07v2.71a10,10,0,0,0,4.19,8.37,3.1,3.1,0,0,0,1.42.63,31.91,31.91,0,0,0,6.1.21,4.67,4.67,0,0,0,3.86-2.22,18.66,18.66,0,0,0,2.6-7.06c.44-2.09.14-4.22.29-6.32C76.15,74.07,74.82,71.78,73.25,69.75ZM71.08,83.66c-.63,2.51-1.15,5.08-3,7-.93,1-1.62,1-2.64.13A9.2,9.2,0,0,1,62,83.31c0-1.47,0-2.94,0-4.41h0a25.56,25.56,0,0,1,2.28-11c.39-.81.79-.93,1.56-.45a11,11,0,0,1,5.65,9.65,22.26,22.26,0,0,1-.42,6.51Z"/><path class="cls-5" d="M112.76,14.42a31,31,0,0,0-.14,4.72c0,8.38-.49,16.75-.78,25.13-.12,3.51-.21,7-.23,10.53,0,1.65,0,1.65-1.6,1.71-2.88.11-2.94.1-2.86-2.74.22-9.24.52-18.49,1-27.73.18-3.5.11-7,.08-10.53,0-1.89.36-3.76.2-5.65.08-1.23.19-2.47.25-3.71a.85.85,0,0,1,1-.93c1.08,0,2.43-.35,3.18.16s.09,1.94.09,3C113,10.36,112.83,12.39,112.76,14.42Z"/><path class="cls-5" d="M95.59,5.93c.11,5.65-.24,11.29.1,17a167.11,167.11,0,0,1,.23,16.75c0,1.37-.4,1.71-1.78,1.76s-3.35.38-3.19-1.62A121.64,121.64,0,0,0,91.13,21c-.17-2.33-.08-4.66,0-7,0-3,.1-6-.09-8.91,0-.94,0-1.87.05-2.81,0-1.84,0-1.84,1.81-2H94C95.54.39,95.52.39,95.51,2,95.51,3.3,95.56,4.62,95.59,5.93Z"/><path class="cls-5" d="M127.56,35.38a24.34,24.34,0,0,0-.38,4.5c-.06,3-.5,5.87-.82,8.79-.08.75-.41,1.09-1.23,1.14-3.49.19-3.45.14-3-3.67.76-5.87.89-11.8,1.24-17.71,0-1.43.08-2.86.08-4.3,0-4.19,0-8.38,0-12.58,0-1.73.24-2,1.94-2a5,5,0,0,1,2.44.15c.82.48.06,1.48.06,2.24,0,6.2.19,12.39-.15,18.58A43.83,43.83,0,0,0,127.56,35.38Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
BIN
plugin/editor/rb.editor/image/sticker/error.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
3
plugin/editor/rb.editor/image/svg/ai-btn.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.39782 2.17833C8.67949 1.545 9.54699 1.51417 9.88699 2.08333L9.93616 2.17833L10.8045 4.1325C11.5627 5.83827 12.8236 7.27189 14.4187 8.24167L14.687 8.39917L16.2287 9.26583C16.3512 9.33445 16.4547 9.43264 16.5295 9.55146C16.6044 9.67029 16.6484 9.80597 16.6574 9.94614C16.6665 10.0863 16.6403 10.2265 16.5812 10.354C16.5222 10.4814 16.4322 10.5921 16.3195 10.6758L16.2295 10.7342L14.687 11.6008C13.0598 12.5161 11.7509 13.9064 10.9353 15.5858L10.8045 15.8675L9.93616 17.8217C9.65449 18.455 8.78699 18.4858 8.44699 17.9167L8.39782 17.8217L7.52949 15.8675C6.77126 14.1617 5.51034 12.7281 3.91532 11.7583L3.64699 11.6008L2.10532 10.7342C1.98277 10.6656 1.87933 10.5674 1.80443 10.4485C1.72954 10.3297 1.68558 10.194 1.67655 10.0539C1.66752 9.9137 1.69371 9.7735 1.75274 9.64604C1.81176 9.51859 1.90175 9.40794 2.01449 9.32417L2.10449 9.26583L3.64699 8.39917C5.27417 7.48387 6.58309 6.09355 7.39866 4.41417L7.52949 4.1325L8.39782 2.17833ZM16.0178 1.7675C16.4315 2.70717 17.1369 3.48855 18.0295 3.99583C18.1628 4.07083 18.1628 4.2625 18.0295 4.3375C17.1364 4.84486 16.4307 5.62657 16.017 6.56667C16.0012 6.60206 15.9754 6.63211 15.9429 6.6532C15.9104 6.67429 15.8724 6.68551 15.8337 6.68551C15.7949 6.68551 15.7569 6.67429 15.7244 6.6532C15.6919 6.63211 15.6662 6.60206 15.6503 6.56667C15.2365 5.62688 14.5307 4.84548 13.6378 4.33833C13.6077 4.32114 13.5826 4.29628 13.5652 4.26628C13.5478 4.23628 13.5386 4.2022 13.5386 4.1675C13.5386 4.1328 13.5478 4.09872 13.5652 4.06872C13.5826 4.03872 13.6077 4.01386 13.6378 3.99667C14.531 3.48909 15.2368 2.70708 15.6503 1.76667C15.6662 1.73128 15.6919 1.70122 15.7244 1.68014C15.7569 1.65905 15.7949 1.64783 15.8337 1.64783C15.8724 1.64783 15.9104 1.65905 15.9429 1.68014C15.9754 1.70122 16.0012 1.73128 16.017 1.76667L16.0178 1.7675Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
3
plugin/editor/rb.editor/image/svg/align-center-btn.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.1667 15C14.3791 15.0002 14.5834 15.0816 14.7378 15.2274C14.8923 15.3732 14.9852 15.5725 14.9976 15.7845C15.0101 15.9965 14.9411 16.2053 14.8048 16.3682C14.6685 16.5311 14.4751 16.6357 14.2642 16.6608L14.1667 16.6667H5.83333C5.62093 16.6664 5.41664 16.5851 5.26219 16.4393C5.10775 16.2935 5.0148 16.0942 5.00236 15.8822C4.98991 15.6701 5.0589 15.4614 5.19522 15.2985C5.33155 15.1356 5.52492 15.0309 5.73583 15.0058L5.83333 15H14.1667ZM16.6667 10.8333C16.8877 10.8333 17.0996 10.9211 17.2559 11.0774C17.4122 11.2337 17.5 11.4457 17.5 11.6667C17.5 11.8877 17.4122 12.0996 17.2559 12.2559C17.0996 12.4122 16.8877 12.5 16.6667 12.5H3.33333C3.11232 12.5 2.90036 12.4122 2.74408 12.2559C2.5878 12.0996 2.5 11.8877 2.5 11.6667C2.5 11.4457 2.5878 11.2337 2.74408 11.0774C2.90036 10.9211 3.11232 10.8333 3.33333 10.8333H16.6667ZM14.1667 6.66667C14.3791 6.6669 14.5834 6.74823 14.7378 6.89404C14.8923 7.03985 14.9852 7.23913 14.9976 7.45116C15.0101 7.6632 14.9411 7.87198 14.8048 8.03486C14.6685 8.19774 14.4751 8.30241 14.2642 8.3275L14.1667 8.33333H5.83333C5.62093 8.3331 5.41664 8.25177 5.26219 8.10596C5.10775 7.96015 5.0148 7.76087 5.00236 7.54884C4.98991 7.3368 5.0589 7.12802 5.19522 6.96514C5.33155 6.80226 5.52492 6.69759 5.73583 6.6725L5.83333 6.66667H14.1667ZM16.6667 2.5C16.8791 2.50024 17.0834 2.58157 17.2378 2.72737C17.3923 2.87318 17.4852 3.07246 17.4976 3.2845C17.5101 3.49653 17.4411 3.70532 17.3048 3.86819C17.1685 4.03107 16.9751 4.13575 16.7642 4.16083L16.6667 4.16667H3.33333C3.12093 4.16643 2.91664 4.0851 2.76219 3.93929C2.60775 3.79349 2.5148 3.59421 2.50236 3.38217C2.48991 3.17014 2.5589 2.96135 2.69522 2.79847C2.83155 2.6356 3.02492 2.53092 3.23583 2.50583L3.33333 2.5H16.6667Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
3
plugin/editor/rb.editor/image/svg/align-left-btn.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.6667 15C11.8791 15.0002 12.0834 15.0816 12.2378 15.2274C12.3923 15.3732 12.4852 15.5725 12.4976 15.7845C12.5101 15.9965 12.4411 16.2053 12.3048 16.3682C12.1685 16.5311 11.9751 16.6357 11.7642 16.6608L11.6667 16.6667H3.33333C3.12093 16.6664 2.91664 16.5851 2.76219 16.4393C2.60775 16.2935 2.5148 16.0942 2.50236 15.8822C2.48991 15.6701 2.5589 15.4614 2.69522 15.2985C2.83155 15.1356 3.02492 15.0309 3.23583 15.0058L3.33333 15H11.6667ZM16.6667 10.8333C16.8877 10.8333 17.0996 10.9211 17.2559 11.0774C17.4122 11.2337 17.5 11.4457 17.5 11.6667C17.5 11.8877 17.4122 12.0996 17.2559 12.2559C17.0996 12.4122 16.8877 12.5 16.6667 12.5H3.33333C3.11232 12.5 2.90036 12.4122 2.74408 12.2559C2.5878 12.0996 2.5 11.8877 2.5 11.6667C2.5 11.4457 2.5878 11.2337 2.74408 11.0774C2.90036 10.9211 3.11232 10.8333 3.33333 10.8333H16.6667ZM11.6667 6.66667C11.8791 6.6669 12.0834 6.74823 12.2378 6.89404C12.3923 7.03985 12.4852 7.23913 12.4976 7.45116C12.5101 7.6632 12.4411 7.87198 12.3048 8.03486C12.1685 8.19774 11.9751 8.30241 11.7642 8.3275L11.6667 8.33333H3.33333C3.12093 8.3331 2.91664 8.25177 2.76219 8.10596C2.60775 7.96015 2.5148 7.76087 2.50236 7.54884C2.48991 7.3368 2.5589 7.12802 2.69522 6.96514C2.83155 6.80226 3.02492 6.69759 3.23583 6.6725L3.33333 6.66667H11.6667ZM16.6667 2.5C16.8791 2.50024 17.0834 2.58157 17.2378 2.72737C17.3923 2.87318 17.4852 3.07246 17.4976 3.2845C17.5101 3.49653 17.4411 3.70532 17.3048 3.86819C17.1685 4.03107 16.9751 4.13575 16.7642 4.16083L16.6667 4.16667H3.33333C3.12093 4.16643 2.91664 4.0851 2.76219 3.93929C2.60775 3.79349 2.5148 3.59421 2.50236 3.38217C2.48991 3.17014 2.5589 2.96135 2.69522 2.79847C2.83155 2.6356 3.02492 2.53092 3.23583 2.50583L3.33333 2.5H16.6667Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
3
plugin/editor/rb.editor/image/svg/align-right-btn.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.6667 15C16.8791 15.0002 17.0834 15.0816 17.2378 15.2274C17.3923 15.3732 17.4852 15.5725 17.4976 15.7845C17.5101 15.9965 17.4411 16.2053 17.3048 16.3682C17.1685 16.5311 16.9751 16.6357 16.7642 16.6608L16.6667 16.6667H8.33333C8.12093 16.6664 7.91664 16.5851 7.76219 16.4393C7.60775 16.2935 7.5148 16.0942 7.50236 15.8822C7.48991 15.6701 7.55889 15.4614 7.69522 15.2985C7.83155 15.1356 8.02492 15.0309 8.23583 15.0058L8.33333 15H16.6667ZM16.6667 10.8333C16.8877 10.8333 17.0996 10.9211 17.2559 11.0774C17.4122 11.2337 17.5 11.4457 17.5 11.6667C17.5 11.8877 17.4122 12.0996 17.2559 12.2559C17.0996 12.4122 16.8877 12.5 16.6667 12.5H3.33333C3.11232 12.5 2.90036 12.4122 2.74408 12.2559C2.5878 12.0996 2.5 11.8877 2.5 11.6667C2.5 11.4457 2.5878 11.2337 2.74408 11.0774C2.90036 10.9211 3.11232 10.8333 3.33333 10.8333H16.6667ZM16.6667 6.66667C16.8791 6.6669 17.0834 6.74823 17.2378 6.89404C17.3923 7.03985 17.4852 7.23913 17.4976 7.45116C17.5101 7.6632 17.4411 7.87198 17.3048 8.03486C17.1685 8.19774 16.9751 8.30241 16.7642 8.3275L16.6667 8.33333H8.33333C8.12093 8.3331 7.91664 8.25177 7.76219 8.10596C7.60775 7.96015 7.5148 7.76087 7.50236 7.54884C7.48991 7.3368 7.55889 7.12802 7.69522 6.96514C7.83155 6.80226 8.02492 6.69759 8.23583 6.6725L8.33333 6.66667H16.6667ZM16.6667 2.5C16.8791 2.50024 17.0834 2.58157 17.2378 2.72737C17.3923 2.87318 17.4852 3.07246 17.4976 3.2845C17.5101 3.49653 17.4411 3.70532 17.3048 3.86819C17.1685 4.03107 16.9751 4.13575 16.7642 4.16083L16.6667 4.16667H3.33333C3.12093 4.16643 2.91664 4.0851 2.76219 3.93929C2.60775 3.79349 2.5148 3.59421 2.50236 3.38217C2.48991 3.17014 2.5589 2.96135 2.69522 2.79847C2.83155 2.6356 3.02492 2.53092 3.23583 2.50583L3.33333 2.5H16.6667Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
3
plugin/editor/rb.editor/image/svg/arr_down.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1 1L5 5L9 1" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 207 B |
3
plugin/editor/rb.editor/image/svg/beautify-btn.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.16667 2.5C3.72464 2.5 3.30072 2.67559 2.98816 2.98816C2.67559 3.30072 2.5 3.72464 2.5 4.16667V7.5C2.5 7.94203 2.67559 8.36595 2.98816 8.67851C3.30072 8.99107 3.72464 9.16667 4.16667 9.16667H12.5C12.942 9.16667 13.366 8.99107 13.6785 8.67851C13.9911 8.36595 14.1667 7.94203 14.1667 7.5V4.16667C14.1667 3.72464 13.9911 3.30072 13.6785 2.98816C13.366 2.67559 12.942 2.5 12.5 2.5H4.16667ZM4.16667 10.8333C3.72464 10.8333 3.30072 11.0089 2.98816 11.3215C2.67559 11.634 2.5 12.058 2.5 12.5V15.8333C2.5 16.2754 2.67559 16.6993 2.98816 17.0118C3.30072 17.3244 3.72464 17.5 4.16667 17.5H15.8333C16.2754 17.5 16.6993 17.3244 17.0118 17.0118C17.3244 16.6993 17.5 16.2754 17.5 15.8333V12.5C17.5 12.058 17.3244 11.634 17.0118 11.3215C16.6993 11.0089 16.2754 10.8333 15.8333 10.8333H4.16667Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 951 B |
3
plugin/editor/rb.editor/image/svg/bold-btn.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.8337 2.5C11.6677 2.49988 12.4826 2.75009 13.1729 3.21823C13.8632 3.68638 14.3971 4.35092 14.7055 5.12586C15.014 5.9008 15.0827 6.75047 14.9029 7.56492C14.7231 8.37937 14.303 9.12111 13.697 9.69417C14.4896 10.1358 15.1163 10.8241 15.482 11.6545C15.8477 12.4848 15.9323 13.4119 15.7231 14.2947C15.5139 15.1776 15.0222 15.968 14.3227 16.5459C13.6233 17.1239 12.7543 17.4577 11.8478 17.4967L11.667 17.5H5.08366C4.85778 17.5001 4.63981 17.4168 4.47156 17.2661C4.30331 17.1154 4.19663 16.9079 4.17199 16.6833L4.16699 16.5833V3.41667C4.16688 3.19078 4.25016 2.97281 4.40088 2.80457C4.5516 2.63632 4.75913 2.52964 4.98366 2.505L5.08366 2.5H10.8337ZM11.667 10.8333H5.83366V15.8333H11.667C12.33 15.8333 12.9659 15.5699 13.4348 15.1011C13.9036 14.6323 14.167 13.9964 14.167 13.3333C14.167 12.6703 13.9036 12.0344 13.4348 11.5656C12.9659 11.0967 12.33 10.8333 11.667 10.8333ZM10.8337 4.16667H5.83366V9.16667H10.8337C11.4967 9.16667 12.1326 8.90327 12.6014 8.43443C13.0703 7.96559 13.3337 7.32971 13.3337 6.66667C13.3337 6.00363 13.0703 5.36774 12.6014 4.8989C12.1326 4.43006 11.4967 4.16667 10.8337 4.16667Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
3
plugin/editor/rb.editor/image/svg/br-btn.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.3476 3.22832L17.8559 4.54582C17.6543 5.01796 17.451 5.48935 17.2459 5.95999C16.6809 7.17249 15.9026 8.58999 14.9734 9.56832C14.0851 10.5017 12.7451 11.3625 11.6717 11.9733C11.8133 12.6506 11.7838 13.3525 11.5859 14.0156C11.388 14.6786 11.028 15.2819 10.5384 15.7708C8.64674 17.6625 6.53341 17.6625 4.96174 17.1958C3.77007 16.8408 2.79007 16.1975 1.85341 15.4058C1.81491 15.3735 1.78435 15.3327 1.76411 15.2866C1.74386 15.2406 1.73446 15.1905 1.73664 15.1403C1.73881 15.09 1.7525 15.041 1.77665 14.9968C1.80079 14.9527 1.83475 14.9147 1.87591 14.8858L2.29257 14.5842C2.85257 14.1617 3.39674 13.6458 3.53424 12.955C3.63008 12.1842 3.68424 11.7633 3.69841 11.6942C3.81341 11.12 4.05674 10.4683 4.64674 9.87749C5.13561 9.38802 5.73873 9.02809 6.40161 8.83021C7.06449 8.63234 7.76623 8.60276 8.44341 8.74415C9.05424 7.67165 9.91508 6.33166 10.8484 5.44415C11.8267 4.51415 13.2442 3.73582 14.4567 3.17082L15.8709 2.55999L17.1884 2.06915C17.3499 2.0135 17.5238 2.00434 17.6902 2.04271C17.8567 2.08109 18.009 2.16545 18.1299 2.2862C18.2507 2.40694 18.3352 2.55921 18.3737 2.72563C18.4122 2.89206 18.4031 3.06595 18.3476 3.22749V3.22832ZM9.98341 9.41082C10.3809 9.69024 10.7268 10.0365 11.0059 10.4342C11.3326 10.245 11.6684 10.04 11.9976 9.82415L11.9726 9.76832C11.8354 9.48013 11.6493 9.21791 11.4226 8.99332C11.2224 8.79224 10.9929 8.6228 10.7417 8.49082L10.5926 8.41915C10.3767 8.74832 10.1726 9.08415 9.98341 9.41082ZM16.1851 4.23165C15.8659 4.36415 15.5184 4.51499 15.1601 4.68165C13.9867 5.22915 12.7717 5.91499 11.9967 6.65165C11.8601 6.7827 11.7295 6.91978 11.6051 7.06249C11.9067 7.22916 12.2567 7.47082 12.6009 7.81582C12.9459 8.15999 13.1876 8.50999 13.3542 8.81165C13.5026 8.68165 13.6409 8.55082 13.7651 8.41999C14.5017 7.64499 15.1876 6.42999 15.7351 5.25582C15.9017 4.89749 16.0526 4.55082 16.1851 4.23165Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
3
plugin/editor/rb.editor/image/svg/canvas-mode-btn.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.2439 14.4108C15.3938 14.2614 15.5951 14.1746 15.8067 14.1681C16.0183 14.1617 16.2245 14.236 16.3833 14.376C16.5421 14.5161 16.6416 14.7113 16.6617 14.9221C16.6818 15.1328 16.6209 15.3433 16.4914 15.5108L16.4222 15.5892L15.1722 16.8392C14.9307 17.0807 14.644 17.2723 14.3284 17.403C14.0128 17.5338 13.6746 17.601 13.333 17.601C12.9915 17.601 12.6532 17.5338 12.3377 17.403C12.0221 17.2723 11.7354 17.0807 11.4939 16.8392C11.3319 16.6774 11.1162 16.5806 10.8876 16.5673C10.6591 16.5539 10.4336 16.6249 10.2539 16.7667L10.1722 16.8392L9.75553 17.2558C9.60557 17.4053 9.40434 17.4921 9.19271 17.4985C8.98109 17.505 8.77494 17.4307 8.61613 17.2906C8.45733 17.1506 8.35778 16.9554 8.3377 16.7446C8.31762 16.5338 8.37852 16.3233 8.50803 16.1558L8.5772 16.0775L8.99386 15.6608C9.23538 15.4193 9.5221 15.2277 9.83767 15.097C10.1532 14.9663 10.4915 14.899 10.833 14.899C11.1746 14.899 11.5128 14.9663 11.8284 15.097C12.144 15.2277 12.4307 15.4193 12.6722 15.6608C12.8342 15.8226 13.0499 15.9194 13.2784 15.9328C13.507 15.9461 13.7325 15.8752 13.9122 15.7333L13.9939 15.6608L15.2439 14.4108ZM13.7355 3.31917C14.1162 2.93238 14.6327 2.70938 15.1752 2.6976C15.7178 2.68583 16.2435 2.88621 16.6406 3.25613C17.0376 3.62604 17.2747 4.13628 17.3013 4.67829C17.3279 5.22031 17.1419 5.75131 16.783 6.15834L16.6814 6.26667L7.0347 15.9125C6.91471 16.0326 6.77152 16.127 6.61386 16.19L6.49303 16.2308L4.12886 16.9033C3.99331 16.9421 3.85014 16.9458 3.71274 16.9143C3.57534 16.8827 3.44818 16.8168 3.34315 16.7227C3.23811 16.6287 3.15863 16.5096 3.11212 16.3765C3.06562 16.2434 3.0536 16.1007 3.0772 15.9617L3.09803 15.8725L3.77053 13.5075C3.81718 13.3443 3.89657 13.1923 4.00386 13.0608L4.08886 12.9658L13.7355 3.31917Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
3
plugin/editor/rb.editor/image/svg/cl-btn.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.0003 1.66666C14.6028 1.66666 18.3337 5.39749 18.3337 9.99999C18.3337 10.5408 18.282 11.07 18.1837 11.5833C17.8728 13.1958 16.3003 13.9092 14.9278 13.7458L14.782 13.725L13.332 13.4833C13.1633 13.4552 12.9902 13.4677 12.8273 13.5199C12.6644 13.5721 12.5163 13.6624 12.3953 13.7833C12.087 14.0917 11.9395 14.5158 12.147 14.93C12.4995 15.635 12.5045 16.44 12.1928 17.0992C11.7762 17.9833 10.9253 18.3333 10.0003 18.3333C5.39783 18.3333 1.66699 14.6025 1.66699 9.99999C1.66699 5.39749 5.39783 1.66666 10.0003 1.66666ZM6.25033 9.16666C6.08617 9.16666 5.92363 9.19899 5.77197 9.26181C5.62031 9.32463 5.48252 9.4167 5.36644 9.53277C5.25037 9.64885 5.15829 9.78664 5.09548 9.9383C5.03266 10.09 5.00033 10.2525 5.00033 10.4167C5.00033 10.5808 5.03266 10.7434 5.09548 10.895C5.15829 11.0467 5.25037 11.1845 5.36644 11.3005C5.48252 11.4166 5.62031 11.5087 5.77197 11.5715C5.92363 11.6343 6.08617 11.6667 6.25033 11.6667C6.58185 11.6667 6.89979 11.535 7.13421 11.3005C7.36863 11.0661 7.50033 10.7482 7.50033 10.4167C7.50033 10.0851 7.36863 9.76719 7.13421 9.53277C6.89979 9.29835 6.58185 9.16666 6.25033 9.16666ZM12.0837 5.83332C11.7521 5.83332 11.4342 5.96502 11.1998 6.19944C10.9654 6.43386 10.8337 6.7518 10.8337 7.08332C10.8337 7.41484 10.9654 7.73279 11.1998 7.96721C11.4342 8.20163 11.7521 8.33332 12.0837 8.33332C12.4152 8.33332 12.7331 8.20163 12.9675 7.96721C13.202 7.73279 13.3337 7.41484 13.3337 7.08332C13.3337 6.7518 13.202 6.43386 12.9675 6.19944C12.7331 5.96502 12.4152 5.83332 12.0837 5.83332ZM7.91699 5.83332C7.58547 5.83332 7.26753 5.96502 7.03311 6.19944C6.79869 6.43386 6.66699 6.7518 6.66699 7.08332C6.66699 7.41484 6.79869 7.73279 7.03311 7.96721C7.26753 8.20163 7.58547 8.33332 7.91699 8.33332C8.24851 8.33332 8.56646 8.20163 8.80088 7.96721C9.0353 7.73279 9.16699 7.41484 9.16699 7.08332C9.16699 6.7518 9.0353 6.43386 8.80088 6.19944C8.56646 5.96502 8.24851 5.83332 7.91699 5.83332Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
3
plugin/editor/rb.editor/image/svg/close_btn.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9998 13.414L17.6568 19.071C17.8454 19.2532 18.098 19.3539 18.3602 19.3517C18.6224 19.3494 18.8732 19.2442 19.0586 19.0588C19.2441 18.8734 19.3492 18.6226 19.3515 18.3604C19.3538 18.0982 19.253 17.8456 19.0708 17.657L13.4138 12L19.0708 6.343C19.253 6.15439 19.3538 5.90179 19.3515 5.6396C19.3492 5.3774 19.2441 5.12659 19.0586 4.94118C18.8732 4.75577 18.6224 4.6506 18.3602 4.64832C18.098 4.64604 17.8454 4.74684 17.6568 4.929L11.9998 10.586L6.34282 4.929C6.15337 4.75134 5.90224 4.65436 5.64255 4.65858C5.38287 4.6628 5.13502 4.76788 4.95143 4.95159C4.76785 5.1353 4.66294 5.38323 4.65891 5.64292C4.65488 5.9026 4.75203 6.15367 4.92982 6.343L10.5858 12L4.92882 17.657C4.83331 17.7492 4.75713 17.8596 4.70472 17.9816C4.65231 18.1036 4.62473 18.2348 4.62357 18.3676C4.62242 18.5004 4.64772 18.6321 4.698 18.755C4.74828 18.8778 4.82254 18.9895 4.91643 19.0834C5.01032 19.1773 5.12197 19.2515 5.24487 19.3018C5.36777 19.3521 5.49944 19.3774 5.63222 19.3762C5.765 19.3751 5.89622 19.3475 6.01823 19.2951C6.14023 19.2427 6.25058 19.1665 6.34282 19.071L11.9998 13.414Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
3
plugin/editor/rb.editor/image/svg/css-mode-btn.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.66705 2.5C6.87945 2.50024 7.08374 2.58157 7.23819 2.72737C7.39263 2.87318 7.48557 3.07246 7.49802 3.2845C7.51047 3.49653 7.44148 3.70532 7.30516 3.86819C7.16883 4.03107 6.97546 4.13575 6.76455 4.16083L6.66705 4.16667H5.83371C5.6296 4.16669 5.4326 4.24163 5.28007 4.37726C5.12754 4.5129 5.03009 4.69979 5.00621 4.9025L5.00038 5V8.33333C5.00038 8.97333 4.75955 9.55833 4.36371 10C4.72038 10.3983 4.95038 10.9108 4.99288 11.4767L5.00038 11.6667V15C5.00041 15.2041 5.07534 15.4011 5.21097 15.5536C5.34661 15.7062 5.5335 15.8036 5.73621 15.8275L5.83371 15.8333H6.66705C6.87945 15.8336 7.08374 15.9149 7.23819 16.0607C7.39263 16.2065 7.48557 16.4058 7.49802 16.6178C7.51047 16.8299 7.44148 17.0386 7.30516 17.2015C7.16883 17.3644 6.97546 17.4691 6.76455 17.4942L6.66705 17.5H5.83371C5.19604 17.5 4.58245 17.2564 4.11849 16.8189C3.65454 16.3815 3.37529 15.7832 3.33788 15.1467L3.33371 15V11.6667C3.33369 11.4626 3.25875 11.2656 3.12312 11.113C2.98748 10.9605 2.80059 10.863 2.59788 10.8392L2.50038 10.8333C2.28798 10.8331 2.08369 10.7518 1.92924 10.606C1.77479 10.4602 1.68185 10.2609 1.6694 10.0488C1.65695 9.8368 1.72594 9.62802 1.86227 9.46514C1.99859 9.30226 2.19197 9.19759 2.40288 9.1725L2.50038 9.16667C2.70449 9.16664 2.90149 9.0917 3.05402 8.95607C3.20655 8.82044 3.304 8.63354 3.32788 8.43083L3.33371 8.33333V5C3.33368 4.36232 3.57732 3.74874 4.01478 3.28478C4.45225 2.82083 5.05047 2.54158 5.68705 2.50417L5.83371 2.5H6.66705ZM14.167 2.5C14.8047 2.49996 15.4183 2.7436 15.8823 3.18107C16.3462 3.61854 16.6255 4.21676 16.6629 4.85333L16.667 5V8.33333C16.6671 8.53744 16.742 8.73445 16.8776 8.88698C17.0133 9.03951 17.2002 9.13695 17.4029 9.16083L17.5004 9.16667C17.7128 9.1669 17.9171 9.24823 18.0715 9.39404C18.226 9.53985 18.3189 9.73913 18.3314 9.95116C18.3438 10.1632 18.2748 10.372 18.1385 10.5349C18.0022 10.6977 17.8088 10.8024 17.5979 10.8275L17.5004 10.8333C17.2963 10.8334 17.0993 10.9083 16.9467 11.0439C16.7942 11.1796 16.6968 11.3665 16.6729 11.5692L16.667 11.6667V15C16.6671 15.6377 16.4234 16.2513 15.986 16.7152C15.5485 17.1792 14.9503 17.4584 14.3137 17.4958L14.167 17.5H13.3337C13.1213 17.4998 12.917 17.4184 12.7626 17.2726C12.6081 17.1268 12.5152 16.9275 12.5027 16.7155C12.4903 16.5035 12.5593 16.2947 12.6956 16.1318C12.8319 15.9689 13.0253 15.8643 13.2362 15.8392L13.3337 15.8333H14.167C14.3712 15.8333 14.5682 15.7584 14.7207 15.6227C14.8732 15.4871 14.9707 15.3002 14.9945 15.0975L15.0004 15V11.6667C15.0004 11.0267 15.2412 10.4417 15.637 10C15.2701 9.59072 15.0489 9.07151 15.0079 8.52333L15.0004 8.33333V5C15.0004 4.79589 14.9254 4.59889 14.7898 4.44636C14.6541 4.29383 14.4673 4.19638 14.2645 4.1725L14.167 4.16667H13.3337C13.1213 4.16643 12.917 4.0851 12.7626 3.93929C12.6081 3.79349 12.5152 3.59421 12.5027 3.38217C12.4903 3.17014 12.5593 2.96135 12.6956 2.79847C12.8319 2.6356 13.0253 2.53092 13.2362 2.50583L13.3337 2.5H14.167Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
3
plugin/editor/rb.editor/image/svg/date-btn.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M17.5 10V15.8333C17.5 16.2754 17.3244 16.6993 17.0118 17.0118C16.6993 17.3244 16.2754 17.5 15.8333 17.5H4.16667C3.72464 17.5 3.30072 17.3244 2.98816 17.0118C2.67559 16.6993 2.5 16.2754 2.5 15.8333V10H17.5ZM13.3333 2.5C13.5543 2.5 13.7663 2.5878 13.9226 2.74408C14.0789 2.90036 14.1667 3.11232 14.1667 3.33333V4.16667H15.8333C16.2754 4.16667 16.6993 4.34226 17.0118 4.65482C17.3244 4.96738 17.5 5.39131 17.5 5.83333V8.33333H2.5V5.83333C2.5 5.39131 2.67559 4.96738 2.98816 4.65482C3.30072 4.34226 3.72464 4.16667 4.16667 4.16667H5.83333V3.33333C5.83333 3.11232 5.92113 2.90036 6.07741 2.74408C6.23369 2.5878 6.44565 2.5 6.66667 2.5C6.88768 2.5 7.09964 2.5878 7.25592 2.74408C7.4122 2.90036 7.5 3.11232 7.5 3.33333V4.16667H12.5V3.33333C12.5 3.11232 12.5878 2.90036 12.7441 2.74408C12.9004 2.5878 13.1123 2.5 13.3333 2.5Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 948 B |
3
plugin/editor/rb.editor/image/svg/del-btn.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.05315 5.875L14.1248 12.9467L11.2373 15.8333H16.6665C16.8875 15.8333 17.0995 15.9211 17.2557 16.0774C17.412 16.2337 17.4998 16.4457 17.4998 16.6667C17.4998 16.8877 17.412 17.0996 17.2557 17.2559C17.0995 17.4122 16.8875 17.5 16.6665 17.5H7.41065C7.07924 17.4997 6.76151 17.3678 6.52731 17.1333L2.33898 12.9467C2.18414 12.7919 2.06132 12.6081 1.97752 12.4059C1.89372 12.2036 1.85059 11.9868 1.85059 11.7679C1.85059 11.549 1.89372 11.3322 1.97752 11.13C2.06132 10.9277 2.18414 10.7439 2.33898 10.5892L7.05315 5.875ZM12.9456 2.34L17.6598 7.05333C17.8147 7.2081 17.9375 7.39187 18.0213 7.59412C18.1051 7.79637 18.1482 8.01315 18.1482 8.23208C18.1482 8.45101 18.1051 8.66779 18.0213 8.87004C17.9375 9.0723 17.8147 9.25606 17.6598 9.41083L15.3031 11.7675L8.23231 4.69666L10.589 2.34C10.9015 2.02755 11.3254 1.85202 11.7673 1.85202C12.2093 1.85202 12.6331 2.02755 12.9456 2.34Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1002 B |
3
plugin/editor/rb.editor/image/svg/facecon1.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.99984 1.66669C14.6023 1.66669 18.3332 5.39752 18.3332 10C18.3332 14.6025 14.6023 18.3334 9.99984 18.3334C5.39734 18.3334 1.6665 14.6025 1.6665 10C1.6665 5.39752 5.39734 1.66669 9.99984 1.66669ZM9.99984 3.33335C8.23173 3.33335 6.53603 4.03573 5.28579 5.28598C4.03555 6.53622 3.33317 8.23191 3.33317 10C3.33317 11.7681 4.03555 13.4638 5.28579 14.7141C6.53603 15.9643 8.23173 16.6667 9.99984 16.6667C11.7679 16.6667 13.4636 15.9643 14.7139 14.7141C15.9641 13.4638 16.6665 11.7681 16.6665 10C16.6665 8.23191 15.9641 6.53622 14.7139 5.28598C13.4636 4.03573 11.7679 3.33335 9.99984 3.33335ZM10.8332 13.3334C11.0542 13.3334 11.2661 13.4212 11.4224 13.5774C11.5787 13.7337 11.6665 13.9457 11.6665 14.1667C11.6665 14.3877 11.5787 14.5997 11.4224 14.7559C11.2661 14.9122 11.0542 15 10.8332 15H9.1665C8.94549 15 8.73353 14.9122 8.57725 14.7559C8.42097 14.5997 8.33317 14.3877 8.33317 14.1667C8.33317 13.9457 8.42097 13.7337 8.57725 13.5774C8.73353 13.4212 8.94549 13.3334 9.1665 13.3334H10.8332ZM7.08317 9.16669C7.24732 9.16669 7.40987 9.19902 7.56152 9.26184C7.71318 9.32466 7.85098 9.41673 7.96705 9.5328C8.08313 9.64888 8.1752 9.78668 8.23802 9.93833C8.30084 10.09 8.33317 10.2525 8.33317 10.4167C8.33317 10.5808 8.30084 10.7434 8.23802 10.895C8.1752 11.0467 8.08313 11.1845 7.96705 11.3006C7.85098 11.4166 7.71318 11.5087 7.56152 11.5715C7.40987 11.6344 7.24732 11.6667 7.08317 11.6667C6.75165 11.6667 6.43371 11.535 6.19929 11.3006C5.96487 11.0661 5.83317 10.7482 5.83317 10.4167C5.83317 10.0852 5.96487 9.76722 6.19929 9.5328C6.43371 9.29838 6.75165 9.16669 7.08317 9.16669ZM12.9165 9.16669C13.0807 9.16669 13.2432 9.19902 13.3949 9.26184C13.5465 9.32466 13.6843 9.41673 13.8004 9.5328C13.9165 9.64888 14.0085 9.78668 14.0714 9.93833C14.1342 10.09 14.1665 10.2525 14.1665 10.4167C14.1665 10.5808 14.1342 10.7434 14.0714 10.895C14.0085 11.0467 13.9165 11.1845 13.8004 11.3006C13.6843 11.4166 13.5465 11.5087 13.3949 11.5715C13.2432 11.6344 13.0807 11.6667 12.9165 11.6667C12.585 11.6667 12.267 11.535 12.0326 11.3006C11.7982 11.0661 11.6665 10.7482 11.6665 10.4167C11.6665 10.0852 11.7982 9.76722 12.0326 9.5328C12.267 9.29838 12.585 9.16669 12.9165 9.16669Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
3
plugin/editor/rb.editor/image/svg/facecon2.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.99984 1.66669C14.6023 1.66669 18.3332 5.39752 18.3332 10C18.3332 14.6025 14.6023 18.3334 9.99984 18.3334C5.39734 18.3334 1.6665 14.6025 1.6665 10C1.6665 5.39752 5.39734 1.66669 9.99984 1.66669ZM9.99984 3.33335C8.23173 3.33335 6.53603 4.03573 5.28579 5.28598C4.03555 6.53622 3.33317 8.23191 3.33317 10C3.33317 11.7681 4.03555 13.4638 5.28579 14.7141C6.53603 15.9643 8.23173 16.6667 9.99984 16.6667C11.7679 16.6667 13.4636 15.9643 14.7139 14.7141C15.9641 13.4638 16.6665 11.7681 16.6665 10C16.6665 8.23191 15.9641 6.53622 14.7139 5.28598C13.4636 4.03573 11.7679 3.33335 9.99984 3.33335ZM12.639 10C13.4823 10 14.1665 10.6834 14.1665 11.5275V11.6667C14.1665 12.7718 13.7275 13.8316 12.9461 14.613C12.1647 15.3944 11.1049 15.8334 9.99984 15.8334C8.89477 15.8334 7.83496 15.3944 7.05356 14.613C6.27216 13.8316 5.83317 12.7718 5.83317 11.6667V11.5275C5.83317 10.6842 6.5165 10 7.36067 10H12.639ZM12.4998 11.6667H7.49984C7.49984 12.3297 7.76323 12.9656 8.23207 13.4345C8.70091 13.9033 9.3368 14.1667 9.99984 14.1667C10.6629 14.1667 11.2988 13.9033 11.7676 13.4345C12.2364 12.9656 12.4998 12.3297 12.4998 11.6667ZM7.49984 5.83335C7.70395 5.83338 7.90095 5.90832 8.05348 6.04395C8.20601 6.17958 8.30346 6.36648 8.32734 6.56919L8.33317 6.66669V8.33335C8.33293 8.54575 8.2516 8.75005 8.1058 8.90449C7.95999 9.05894 7.76071 9.15188 7.54867 9.16433C7.33664 9.17678 7.12785 9.10779 6.96498 8.97147C6.8021 8.83514 6.69742 8.64177 6.67234 8.43085L6.6665 8.33335V6.66669C6.6665 6.44567 6.7543 6.23371 6.91058 6.07743C7.06686 5.92115 7.27882 5.83335 7.49984 5.83335ZM11.9107 6.07752C12.0606 5.92806 12.2619 5.84129 12.4735 5.83483C12.6851 5.82837 12.8913 5.9027 13.0501 6.04273C13.2089 6.18276 13.3084 6.37798 13.3285 6.58875C13.3486 6.79952 13.2877 7.01003 13.1582 7.17752L13.089 7.25585L12.8448 7.50002L13.089 7.74419C13.2385 7.89415 13.3252 8.09538 13.3317 8.30701C13.3382 8.51863 13.2638 8.72478 13.1238 8.88359C12.9838 9.04239 12.7885 9.14194 12.5778 9.16202C12.367 9.1821 12.1565 9.1212 11.989 8.99169L11.9107 8.92252L11.0773 8.08919C10.9339 7.94569 10.8477 7.75478 10.8349 7.55225C10.8222 7.34973 10.8838 7.14952 11.0082 6.98919L11.0773 6.91085L11.9107 6.07752Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
3
plugin/editor/rb.editor/image/svg/facecon3.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.99984 1.66669C14.6023 1.66669 18.3332 5.39752 18.3332 10C18.3332 14.6025 14.6023 18.3334 9.99984 18.3334C5.39734 18.3334 1.6665 14.6025 1.6665 10C1.6665 5.39752 5.39734 1.66669 9.99984 1.66669ZM9.99984 3.33335C8.23173 3.33335 6.53603 4.03573 5.28579 5.28598C4.03555 6.53622 3.33317 8.23191 3.33317 10C3.33317 11.7681 4.03555 13.4638 5.28579 14.7141C6.53603 15.9643 8.23173 16.6667 9.99984 16.6667C11.7679 16.6667 13.4636 15.9643 14.7139 14.7141C15.9641 13.4638 16.6665 11.7681 16.6665 10C16.6665 8.23191 15.9641 6.53622 14.7139 5.28598C13.4636 4.03573 11.7679 3.33335 9.99984 3.33335ZM8.47317 12.8709C9.474 11.37 11.4815 10.3442 13.5357 10.8584C13.6434 10.8833 13.7452 10.9295 13.8349 10.9943C13.9246 11.059 14.0006 11.1409 14.0583 11.2353C14.1161 11.3297 14.1544 11.4346 14.1712 11.544C14.1879 11.6533 14.1827 11.7649 14.1559 11.8723C14.1291 11.9796 14.0811 12.0805 14.0149 12.1691C13.9486 12.2577 13.8654 12.3323 13.7701 12.3884C13.6747 12.4445 13.5691 12.481 13.4595 12.4959C13.3499 12.5108 13.2384 12.5037 13.1315 12.475C11.8523 12.155 10.5257 12.7967 9.85984 13.7959C9.73717 13.9797 9.54649 14.1074 9.32973 14.1507C9.11297 14.1939 8.88789 14.1493 8.704 14.0267C8.52012 13.904 8.3925 13.7133 8.34921 13.4966C8.30592 13.2798 8.35051 13.0547 8.47317 12.8709ZM7.9165 6.66669C8.24802 6.66669 8.56597 6.79838 8.80039 7.0328C9.03481 7.26722 9.1665 7.58517 9.1665 7.91669C9.1665 8.24821 9.03481 8.56615 8.80039 8.80057C8.56597 9.03499 8.24802 9.16669 7.9165 9.16669C7.58498 9.16669 7.26704 9.03499 7.03262 8.80057C6.7982 8.56615 6.6665 8.24821 6.6665 7.91669C6.6665 7.58517 6.7982 7.26722 7.03262 7.0328C7.26704 6.79838 7.58498 6.66669 7.9165 6.66669ZM12.9165 5.83335C13.248 5.83335 13.566 5.96505 13.8004 6.19947C14.0348 6.43389 14.1665 6.75183 14.1665 7.08335C14.1665 7.41487 14.0348 7.73282 13.8004 7.96724C13.566 8.20166 13.248 8.33335 12.9165 8.33335C12.585 8.33335 12.267 8.20166 12.0326 7.96724C11.7982 7.73282 11.6665 7.41487 11.6665 7.08335C11.6665 6.75183 11.7982 6.43389 12.0326 6.19947C12.267 5.96505 12.585 5.83335 12.9165 5.83335Z" fill="#09244B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |