cd-aichat 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +188 -0
- package/dist/ailogo.png +0 -0
- package/dist/cd-aichat.css +1 -0
- package/dist/cd-aichat.es.js +32223 -0
- package/dist/cd-aichat.umd.js +279 -0
- package/dist/index.css +1 -0
- package/package.json +61 -0
- package/src/ailogo.png +0 -0
- package/src/components/AiChat.test.js +538 -0
- package/src/components/AiChat.vue +2206 -0
- package/src/components/AiChatWidget.test.js +312 -0
- package/src/components/AiChatWidget.vue +963 -0
- package/src/components/BurnAfterReadDialog.test.js +121 -0
- package/src/components/BurnAfterReadDialog.vue +511 -0
- package/src/components/BurnAfterReadMessage.test.js +188 -0
- package/src/components/BurnAfterReadMessage.vue +193 -0
- package/src/components/BurnIndicator.test.js +101 -0
- package/src/components/BurnIndicator.vue +164 -0
- package/src/components/ChatWindow.vue +0 -0
- package/src/components/MentionList.vue +163 -0
- package/src/components/ResourceList.vue +194 -0
- package/src/components/RichTextEditor.vue +437 -0
- package/src/components/ScheduledSendDialog.vue +476 -0
- package/src/components/ScreenshotOverlay.vue +78 -0
- package/src/components/SendButtonGroup.test.js +174 -0
- package/src/components/SendButtonGroup.vue +166 -0
- package/src/components/UserDrawer.vue +0 -0
- package/src/components/screenshot/ScreenshotsBackground/getBoundsByPoints.ts +41 -0
- package/src/components/screenshot/ScreenshotsBackground/index.scss +27 -0
- package/src/components/screenshot/ScreenshotsBackground/index.tsx +145 -0
- package/src/components/screenshot/ScreenshotsButton/index.scss +29 -0
- package/src/components/screenshot/ScreenshotsButton/index.tsx +58 -0
- package/src/components/screenshot/ScreenshotsCanvas/getBoundsByPoints.ts +55 -0
- package/src/components/screenshot/ScreenshotsCanvas/getPoints.ts +60 -0
- package/src/components/screenshot/ScreenshotsCanvas/index.scss +84 -0
- package/src/components/screenshot/ScreenshotsCanvas/index.tsx +277 -0
- package/src/components/screenshot/ScreenshotsCanvas/isPointInDraw.ts +35 -0
- package/src/components/screenshot/ScreenshotsColor/index.scss +45 -0
- package/src/components/screenshot/ScreenshotsColor/index.tsx +39 -0
- package/src/components/screenshot/ScreenshotsContext.ts +56 -0
- package/src/components/screenshot/ScreenshotsMagnifier/index.scss +61 -0
- package/src/components/screenshot/ScreenshotsMagnifier/index.tsx +126 -0
- package/src/components/screenshot/ScreenshotsOperations/index.scss +25 -0
- package/src/components/screenshot/ScreenshotsOperations/index.tsx +118 -0
- package/src/components/screenshot/ScreenshotsOption/index.scss +50 -0
- package/src/components/screenshot/ScreenshotsOption/index.tsx +150 -0
- package/src/components/screenshot/ScreenshotsSize/index.scss +28 -0
- package/src/components/screenshot/ScreenshotsSize/index.tsx +41 -0
- package/src/components/screenshot/ScreenshotsSizeColor/index.scss +8 -0
- package/src/components/screenshot/ScreenshotsSizeColor/index.tsx +25 -0
- package/src/components/screenshot/ScreenshotsTextarea/calculateNodeSize.ts +117 -0
- package/src/components/screenshot/ScreenshotsTextarea/index.scss +19 -0
- package/src/components/screenshot/ScreenshotsTextarea/index.tsx +96 -0
- package/src/components/screenshot/composeImage.ts +57 -0
- package/src/components/screenshot/exports.ts +4 -0
- package/src/components/screenshot/hooks/useBounds.ts +35 -0
- package/src/components/screenshot/hooks/useCall.ts +17 -0
- package/src/components/screenshot/hooks/useCanvasContextRef.ts +8 -0
- package/src/components/screenshot/hooks/useCanvasMousedown.ts +13 -0
- package/src/components/screenshot/hooks/useCanvasMousemove.ts +13 -0
- package/src/components/screenshot/hooks/useCanvasMouseup.ts +13 -0
- package/src/components/screenshot/hooks/useCursor.ts +34 -0
- package/src/components/screenshot/hooks/useDispatcher.ts +8 -0
- package/src/components/screenshot/hooks/useDrawSelect.ts +16 -0
- package/src/components/screenshot/hooks/useEmiter.ts +61 -0
- package/src/components/screenshot/hooks/useHistory.ts +160 -0
- package/src/components/screenshot/hooks/useLang.ts +8 -0
- package/src/components/screenshot/hooks/useOperation.ts +37 -0
- package/src/components/screenshot/hooks/useReset.ts +26 -0
- package/src/components/screenshot/hooks/useStore.ts +8 -0
- package/src/components/screenshot/icons/iconfont.scss +88 -0
- package/src/components/screenshot/icons/iconfont.ttf +0 -0
- package/src/components/screenshot/icons/iconfont.woff +0 -0
- package/src/components/screenshot/icons/iconfont.woff2 +0 -0
- package/src/components/screenshot/index.tsx +169 -0
- package/src/components/screenshot/operations/Arrow/draw.ts +56 -0
- package/src/components/screenshot/operations/Arrow/index.tsx +193 -0
- package/src/components/screenshot/operations/Brush/draw.ts +45 -0
- package/src/components/screenshot/operations/Brush/index.tsx +169 -0
- package/src/components/screenshot/operations/Cancel/index.tsx +18 -0
- package/src/components/screenshot/operations/Ellipse/draw.ts +96 -0
- package/src/components/screenshot/operations/Ellipse/index.tsx +245 -0
- package/src/components/screenshot/operations/Mosaic/index.tsx +223 -0
- package/src/components/screenshot/operations/Ok/index.tsx +37 -0
- package/src/components/screenshot/operations/Pin/index.tsx +37 -0
- package/src/components/screenshot/operations/Rectangle/draw.ts +80 -0
- package/src/components/screenshot/operations/Rectangle/index.tsx +245 -0
- package/src/components/screenshot/operations/Redo/index.tsx +22 -0
- package/src/components/screenshot/operations/Save/index.tsx +37 -0
- package/src/components/screenshot/operations/Scan/index.tsx +46 -0
- package/src/components/screenshot/operations/Search/index.tsx +39 -0
- package/src/components/screenshot/operations/Text/index.tsx +307 -0
- package/src/components/screenshot/operations/Undo/index.tsx +22 -0
- package/src/components/screenshot/operations/index.ts +34 -0
- package/src/components/screenshot/operations/utils.ts +34 -0
- package/src/components/screenshot/screenshots.scss +13 -0
- package/src/components/screenshot/types.ts +53 -0
- package/src/components/screenshot/useGetLoadedImage.ts +29 -0
- package/src/components/screenshot/var.scss +107 -0
- package/src/components/screenshot/zh_CN.ts +37 -0
- package/src/emoji/100.gif +0 -0
- package/src/emoji/101.gif +0 -0
- package/src/emoji/102.gif +0 -0
- package/src/emoji/103.gif +0 -0
- package/src/emoji/104.gif +0 -0
- package/src/emoji/105.gif +0 -0
- package/src/emoji/106.gif +0 -0
- package/src/emoji/107.gif +0 -0
- package/src/emoji/108.gif +0 -0
- package/src/emoji/109.gif +0 -0
- package/src/emoji/110.gif +0 -0
- package/src/emoji/111.gif +0 -0
- package/src/emoji/112.gif +0 -0
- package/src/emoji/113.gif +0 -0
- package/src/emoji/114.gif +0 -0
- package/src/emoji/115.gif +0 -0
- package/src/emoji/116.gif +0 -0
- package/src/emoji/117.gif +0 -0
- package/src/emoji/118.gif +0 -0
- package/src/emoji/119.gif +0 -0
- package/src/emoji/120.gif +0 -0
- package/src/emoji/121.gif +0 -0
- package/src/emoji/122.gif +0 -0
- package/src/emoji/123.gif +0 -0
- package/src/emoji/124.gif +0 -0
- package/src/emoji/125.gif +0 -0
- package/src/emoji/126.gif +0 -0
- package/src/emoji/127.gif +0 -0
- package/src/emoji/128.gif +0 -0
- package/src/emoji/129.gif +0 -0
- package/src/emoji/130.gif +0 -0
- package/src/emoji/131.gif +0 -0
- package/src/emoji/132.gif +0 -0
- package/src/emoji/133.gif +0 -0
- package/src/emoji/134.gif +0 -0
- package/src/emoji/135.gif +0 -0
- package/src/emoji/136.gif +0 -0
- package/src/emoji/137.gif +0 -0
- package/src/emoji/138.gif +0 -0
- package/src/emoji/139.gif +0 -0
- package/src/emoji/140.gif +0 -0
- package/src/emoji/141.gif +0 -0
- package/src/emoji/142.gif +0 -0
- package/src/emoji/143.gif +0 -0
- package/src/emoji/144.gif +0 -0
- package/src/emoji/145.gif +0 -0
- package/src/emoji/146.gif +0 -0
- package/src/emoji/147.gif +0 -0
- package/src/emoji/148.gif +0 -0
- package/src/emoji/149.gif +0 -0
- package/src/emoji/150.gif +0 -0
- package/src/emoji/151.gif +0 -0
- package/src/emoji/152.gif +0 -0
- package/src/emoji/153.gif +0 -0
- package/src/emoji/154.gif +0 -0
- package/src/emoji/155.gif +0 -0
- package/src/emoji/156.gif +0 -0
- package/src/emoji/157.gif +0 -0
- package/src/emoji/158.gif +0 -0
- package/src/emoji/159.gif +0 -0
- package/src/emoji/160.gif +0 -0
- package/src/emoji/161.gif +0 -0
- package/src/emoji/162.gif +0 -0
- package/src/emoji/163.gif +0 -0
- package/src/emoji/164.gif +0 -0
- package/src/emoji/165.gif +0 -0
- package/src/emoji/166.gif +0 -0
- package/src/emoji/167.gif +0 -0
- package/src/emoji/168.gif +0 -0
- package/src/emoji/169.gif +0 -0
- package/src/emoji/170.gif +0 -0
- package/src/emoji/171.gif +0 -0
- package/src/emoji/172.gif +0 -0
- package/src/emoji/173.gif +0 -0
- package/src/emoji/174.gif +0 -0
- package/src/emoji/175.gif +0 -0
- package/src/emoji/176.gif +0 -0
- package/src/emoji/177.gif +0 -0
- package/src/emoji/178.gif +0 -0
- package/src/emoji/179.gif +0 -0
- package/src/emoji/180.gif +0 -0
- package/src/emoji/181.gif +0 -0
- package/src/emoji/182.gif +0 -0
- package/src/emoji/183.gif +0 -0
- package/src/emoji/184.gif +0 -0
- package/src/emoji/185.gif +0 -0
- package/src/emoji/186.gif +0 -0
- package/src/emoji/187.gif +0 -0
- package/src/emoji/188.gif +0 -0
- package/src/emoji/189.gif +0 -0
- package/src/emoji/190.gif +0 -0
- package/src/emoji/191.gif +0 -0
- package/src/emoji/192.gif +0 -0
- package/src/emoji/193.gif +0 -0
- package/src/emoji/194.gif +0 -0
- package/src/emoji/195.gif +0 -0
- package/src/emoji/196.gif +0 -0
- package/src/emoji/197.gif +0 -0
- package/src/emoji/198.gif +0 -0
- package/src/emoji/199.gif +0 -0
- package/src/emoji/200.png +0 -0
- package/src/emoji/201.png +0 -0
- package/src/emoji/202.png +0 -0
- package/src/emoji/203.png +0 -0
- package/src/emoji/204.png +0 -0
- package/src/emoji/205.png +0 -0
- package/src/emoji/206.png +0 -0
- package/src/emoji/207.png +0 -0
- package/src/emoji/208.png +0 -0
- package/src/emoji/209.png +0 -0
- package/src/emoji/210.png +0 -0
- package/src/emoji/211.png +0 -0
- package/src/emoji/212.png +0 -0
- package/src/emoji/213.png +0 -0
- package/src/emoji/214.png +0 -0
- package/src/emoji/215.png +0 -0
- package/src/emoji/216.png +0 -0
- package/src/emoji/217.png +0 -0
- package/src/emoji/218.png +0 -0
- package/src/emoji/219.png +0 -0
- package/src/emoji2/101--Streamline-The-Team.png +0 -0
- package/src/emoji2/128--Streamline-The-Team.png +0 -0
- package/src/emoji2/134--Streamline-The-Team.png +0 -0
- package/src/emoji2/173--Streamline-The-Team.png +0 -0
- package/src/emoji2/Airplane--Streamline-Emoji.svg +24 -0
- package/src/emoji2/Alien--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Amazed-Face--Streamline-Emoji.svg +16 -0
- package/src/emoji2/Amusing-Face--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Anguished-Face--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Anxious-Face--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Astonished-Face--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Backhand-Index-Pointing-Down-1--Streamline-Emoji.svg +12 -0
- package/src/emoji2/Backhand-Index-Pointing-Left-1--Streamline-Emoji.svg +13 -0
- package/src/emoji2/Backhand-Index-Pointing-Right-1--Streamline-Emoji.svg +13 -0
- package/src/emoji2/Backhand-Index-Pointing-Up-1--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Bar-Chart--Streamline-Emoji.svg +22 -0
- package/src/emoji2/Beaming-Face-With-Smiling-Eyes--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Boy-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Boy-2--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Boy-3--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Broken-Heart--Streamline-Emoji.svg +12 -0
- package/src/emoji2/Clapping-Hands-1--Streamline-Emoji.svg +23 -0
- package/src/emoji2/Clinking-Glasses-2--Streamline-Emoji.svg +43 -0
- package/src/emoji2/Confounded-Face--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Confused-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Construction-Worker--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Couple-With-Heart-Woman-Man-1--Streamline-Emoji.svg +40 -0
- package/src/emoji2/Couple-With-Heart-Woman-Man-2--Streamline-Emoji.svg +40 -0
- package/src/emoji2/Cowboy-Hat-Face--Streamline-Emoji.svg +22 -0
- package/src/emoji2/Crazy-Face--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Crossed-Fingers-1--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Crown--Streamline-Emoji.svg +35 -0
- package/src/emoji2/Crying-Face--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Delivery-Truck--Streamline-Emoji.svg +31 -0
- package/src/emoji2/Determined-Face--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Disappointed-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Dizzy-Face--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Downcast-Face-With-Sweat--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Drooling-Face-1--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Drooling-Face-2--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Ear--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Exclamation-Mark--Streamline-Emoji.svg +12 -0
- package/src/emoji2/Exploding-Head--Streamline-Emoji.svg +24 -0
- package/src/emoji2/Expressionless-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Face-Blowing-A-Kiss--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Face-Savoring-Food--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Face-Screaming-In-Fear--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Face-Vomiting--Streamline-Emoji.svg +28 -0
- package/src/emoji2/Face-With-Head-Bandage--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Face-With-Medical-Mask--Streamline-Emoji.svg +23 -0
- package/src/emoji2/Face-With-Monocle--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Face-With-Raised-Eyebrow--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Face-With-Rolling-Eyes--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Face-With-Steam-From-Nose--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Face-With-Symbols-On-Mouth--Streamline-Emoji.svg +22 -0
- package/src/emoji2/Face-With-Tears-Of-Joy--Streamline-Emoji.svg +34 -0
- package/src/emoji2/Face-With-Thermometer--Streamline-Emoji.svg +31 -0
- package/src/emoji2/Face-With-Tongue--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Face-Without-Mouth--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Fearful-Face--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Flexed-Biceps-1--Streamline-Emoji.svg +13 -0
- package/src/emoji2/Flushed-Face--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Folded-Hands-1--Streamline-Emoji.svg +29 -0
- package/src/emoji2/Frowning-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Fuel-Pump--Streamline-Emoji.svg +30 -0
- package/src/emoji2/Girl-1--Streamline-Emoji.svg +23 -0
- package/src/emoji2/Glasses-1--Streamline-Emoji.svg +27 -0
- package/src/emoji2/Grimacing-Face--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Grinning-Cat-Face--Streamline-Emoji.svg +32 -0
- package/src/emoji2/Grinning-Face--Streamline-Emoji.svg +16 -0
- package/src/emoji2/Grinning-Face-With-Sweat--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Grinning-Squinting-Face--Streamline-Emoji.svg +16 -0
- package/src/emoji2/Hand-With-Fingers-Splayed-1--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Heart-Suit--Streamline-Emoji.svg +9 -0
- package/src/emoji2/Hushed-Face-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Hushed-Face-2--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Index-Pointing-Up-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Kissing-Face-With-Closed-Eyes--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Loudly-Crying-Face--Streamline-Emoji.svg +16 -0
- package/src/emoji2/Lying-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Man-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Man-Facepalming-1--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Man-Gesturing-No-1--Streamline-Emoji.svg +34 -0
- package/src/emoji2/Man-Gesturing-Ok-1--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Man-Health-Worker-1--Streamline-Emoji.svg +41 -0
- package/src/emoji2/Man-Raising-Hand-1--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Man-Shrugging-1--Streamline-Emoji.svg +31 -0
- package/src/emoji2/Money-Mouth-Face-2--Streamline-Emoji.svg +30 -0
- package/src/emoji2/Mouth--Streamline-Emoji.svg +12 -0
- package/src/emoji2/Nauseated-Face-2--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Neutral-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Ok-Hand-1--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Old-Man-1--Streamline-Emoji.svg +27 -0
- package/src/emoji2/Old-Woman-1--Streamline-Emoji.svg +23 -0
- package/src/emoji2/Oncoming-Fist-1--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Person-Wearing-Turban-2--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Pile-Of-Poo--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Police-Car-Light--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Rocket--Streamline-Emoji.svg +32 -0
- package/src/emoji2/Sailboat--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Shaved-Ice--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Shortcake-2--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Shushing-Face--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Sign-Of-The-Horns-1--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Sleeping-Face--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Slightly-Smiling-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Smiling-Face-With-Halo--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Smiling-Face-With-Heart-Eyes--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Smirking-Face--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Sun-With-Face--Streamline-Emoji.svg +24 -0
- package/src/emoji2/Thumbs-Down-1--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Thumbs-Up-1--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Winking-Face--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Woman-Gesturing-No-1--Streamline-Emoji.svg +34 -0
- package/src/emoji2/Woman-Gesturing-Ok-2--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Woman-Raising-Hand-1--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Womans-Sandal--Streamline-Emoji.svg +13 -0
- package/src/emoji2/Worried-Face--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Writing-Hand-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Zipper-Mouth-Face--Streamline-Emoji.svg +21 -0
- package/src/index.js +19 -0
- package/src/services/burn-after-read-service.js +313 -0
- package/src/services/burn-after-read-service.test.js +325 -0
- package/src/services/dify-api.js +338 -0
- package/src/services/dify-api.test.js +376 -0
- package/src/services/scheduled-send-service.js +311 -0
- package/src/services/scheduled-send-service.test.js +317 -0
- package/src/styles/index.css +2368 -0
- package/src/utils/emoji.js +125 -0
- package/src/utils/emojiData.js +267 -0
- package/src/utils/eventEmitter.js +114 -0
- package/src/utils/state.js +224 -0
- package/src/utils/state.test.js +198 -0
- package/src/utils/storage.js +122 -0
- package/src/utils/storage.test.js +162 -0
- package/src/utils/validation.js +249 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Crossed-Fingers-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Crossed Fingers 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M16.666666666666664 60.666666666666664a15.333333333333332 2 0 1 0 30.666666666666664 0 15.333333333333332 2 0 1 0 -30.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M38.666666666666664 28.319999999999997c0.31999999999999995 -3.84 3.4799999999999995 -10.666666666666666 5.853333333333333 -15.32a2.96 2.96 0 1 0 -5.333333333333333 -2.6666666666666665C36.879999999999995 15.226666666666667 32 25.46666666666667 32 28.319999999999997Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M32 30.21333333333333c1.5733333333333333 -4.813333333333333 5.826666666666666 -12.626666666666667 8 -17.066666666666666a2.96 2.96 0 0 1 4 -1.3333333333333333 2.8666666666666663 2.8666666666666663 0 0 1 0.8133333333333332 0.6 2.96 2.96 0 0 0 -5.506666666666666 -2.08C36.879999999999995 15.226666666666667 32 25.46666666666667 32 28.319999999999997Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M38.666666666666664 28.319999999999997c0.31999999999999995 -3.84 3.4799999999999995 -10.666666666666666 5.853333333333333 -15.32a2.96 2.96 0 1 0 -5.333333333333333 -2.6666666666666665C36.879999999999995 15.226666666666667 32 25.46666666666667 32 28.319999999999997Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M34.666666666666664 20.146666666666665c-1.5066666666666664 3.5066666666666664 -2.6666666666666665 6.76 -2.6666666666666665 8.173333333333332v4.119999999999999l-14.173333333333334 0v9.426666666666666a13.573333333333332 13.573333333333332 0 0 0 12.4 13.706666666666665 13.333333333333332 13.333333333333332 0 0 0 14.186666666666667 -13.253333333333332V29.199999999999996c0 -4.893333333333333 -4.306666666666667 -13.533333333333333 -7.453333333333333 -19.133333333333333A3.3066666666666666 3.3066666666666666 0 0 0 31.186666666666667 13.333333333333332c1 1.76 2.32 4.253333333333333 3.4799999999999995 6.8133333333333335Z" fill="#ffe500" stroke-width="1"></path>
|
|
10
|
+
<path d="M34.666666666666664 20.146666666666665c-1.5066666666666664 3.5066666666666664 -2.6666666666666665 6.76 -2.6666666666666665 8.173333333333332v1.893333333333333a70.52 70.52 0 0 1 3.5599999999999996 -8.239999999999998c-0.26666666666666666 -0.6399999999999999 -0.5466666666666666 -1.2266666666666666 -0.8933333333333333 -1.8266666666666667Z" fill="#fff48c" stroke-width="1"></path>
|
|
11
|
+
<path d="M32.46666666666667 15.666666666666666a3.3200000000000003 3.3200000000000003 0 0 1 5.8133333333333335 -3.2133333333333334c-0.42666666666666664 -0.7866666666666666 -0.8666666666666667 -1.5866666666666664 -1.3333333333333333 -2.3866666666666667A3.3066666666666666 3.3066666666666666 0 0 0 31.186666666666667 13.333333333333332c0.3866666666666666 0.6399999999999999 1.2799999999999998 2.333333333333333 1.2799999999999998 2.333333333333333Z" fill="#fff48c" stroke-width="1"></path>
|
|
12
|
+
<path d="M34.666666666666664 20.146666666666665c-1.5066666666666664 3.5066666666666664 -2.6666666666666665 6.76 -2.6666666666666665 8.173333333333332v4.119999999999999l-14.173333333333334 0v9.426666666666666a13.573333333333332 13.573333333333332 0 0 0 12.4 13.706666666666665 13.333333333333332 13.333333333333332 0 0 0 14.186666666666667 -13.253333333333332V29.199999999999996c0 -4.893333333333333 -4.306666666666667 -13.533333333333333 -7.453333333333333 -19.133333333333333A3.3066666666666666 3.3066666666666666 0 0 0 31.186666666666667 13.333333333333332c1 1.76 2.32 4.253333333333333 3.4799999999999995 6.8133333333333335Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M34.666666666666664 20.146666666666665c-1.5066666666666664 3.5066666666666664 -2.6666666666666665 6.76 -2.6666666666666665 8.173333333333332v1.1199999999999999" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M24.906666666666666 32.28a3.546666666666667 3.546666666666667 0 1 0 -7.079999999999999 0v4.32a3.546666666666667 3.546666666666667 0 1 0 7.079999999999999 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
15
|
+
<path d="M24.906666666666666 32.28a3.546666666666667 3.546666666666667 0 1 0 -7.079999999999999 0v3.1999999999999997A3.546666666666667 3.546666666666667 0 0 1 21.333333333333332 32a3.546666666666667 3.546666666666667 0 0 1 3.533333333333333 3.546666666666667Z" fill="#fff48c" stroke-width="1"></path>
|
|
16
|
+
<path d="M32 29.08a3.546666666666667 3.546666666666667 0 0 0 -7.093333333333334 0v7.52a3.546666666666667 3.546666666666667 0 0 0 7.093333333333334 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
17
|
+
<path d="M32 29.08a3.546666666666667 3.546666666666667 0 0 0 -7.093333333333334 0v3.1999999999999997a3.546666666666667 3.546666666666667 0 0 1 3.546666666666667 -3.546666666666667A3.546666666666667 3.546666666666667 0 0 1 32 32.28Z" fill="#fff48c" stroke-width="1"></path>
|
|
18
|
+
<path d="M24.906666666666666 32.28a3.546666666666667 3.546666666666667 0 1 0 -7.079999999999999 0v4.32a3.546666666666667 3.546666666666667 0 1 0 7.079999999999999 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="M32 29.08a3.546666666666667 3.546666666666667 0 0 0 -7.093333333333334 0v7.52a3.546666666666667 3.546666666666667 0 0 0 7.093333333333334 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M44.413333333333334 41.97333333333333a6.92 6.92 0 0 0 -6.92 -6.92H26.666666666666664a1.8266666666666667 1.8266666666666667 0 0 0 -1.8266666666666667 1.8266666666666667 5.08 5.08 0 0 0 5.08 5.093333333333333h5.4399999999999995" fill="#ffe500" stroke-width="1"></path>
|
|
21
|
+
<path d="M26.666666666666664 37.82666666666667h10.773333333333333a6.893333333333333 6.893333333333333 0 0 1 6.32 4.1466666666666665h0.6a6.92 6.92 0 0 0 -6.92 -6.92H26.666666666666664a1.8266666666666667 1.8266666666666667 0 0 0 -1.8266666666666667 1.8266666666666667 5.08 5.08 0 0 0 0.37333333333333335 1.7866666666666666 1.8266666666666667 1.8266666666666667 0 0 1 1.4533333333333334 -0.84Z" fill="#fff48c" stroke-width="1"></path>
|
|
22
|
+
<path d="M44.413333333333334 41.97333333333333a6.92 6.92 0 0 0 -6.92 -6.92H26.666666666666664a1.8266666666666667 1.8266666666666667 0 0 0 -1.8266666666666667 1.8266666666666667h0a5.08 5.08 0 0 0 5.08 5.093333333333333h5.4399999999999995" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
23
|
+
<path d="M38.08 29.85333333333333c0 -2.0666666666666664 -1.5733333333333333 -5.959999999999999 -3.36 -9.706666666666667" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
24
|
+
<path d="M35.41333333333333 41.97333333333333a5.906666666666666 5.906666666666666 0 0 0 -5.92 5.906666666666666v1.76" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Crown--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Crown Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M9.333333333333332 58a22.666666666666664 2 0 1 0 45.33333333333333 0 22.666666666666664 2 0 1 0 -45.33333333333333 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M25.333333333333332 32.666666666666664c-2.4 -2.3066666666666666 -4.466666666666667 -8.36 -6.04 -12.879999999999999a0.6666666666666666 0.6666666666666666 0 0 0 -1.2533333333333332 0C16.466666666666665 24.306666666666665 14.4 30.36 12 32.666666666666664Z" fill="#ebcb00" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
7
|
+
<path d="M38.666666666666664 32.666666666666664c2.4 -2.3066666666666666 4.466666666666667 -8.36 6.04 -12.879999999999999a0.6666666666666666 0.6666666666666666 0 0 1 1.2533333333333332 0c1.5733333333333333 4.52 3.6399999999999997 10.573333333333332 6.04 12.879999999999999Z" fill="#ebcb00" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
8
|
+
<path d="M31.386666666666663 15.626666666666667a0.6533333333333333 0.6533333333333333 0 0 1 1.2266666666666666 0c1.7866666666666666 4.546666666666667 7.1466666666666665 17.04 12 17.04 4.226666666666667 0 8.466666666666665 -5.973333333333334 10.586666666666666 -9.493333333333332a0.6799999999999999 0.6799999999999999 0 0 1 1.24 0.39999999999999997L55.33333333333333 42.666666666666664c0 4.786666666666666 -10.453333333333333 8.666666666666666 -23.333333333333332 8.666666666666666S8.666666666666666 47.45333333333333 8.666666666666666 42.666666666666664l-1.16 -19.093333333333334a0.6799999999999999 0.6799999999999999 0 0 1 1.24 -0.39999999999999997C10.866666666666667 26.666666666666664 15.106666666666666 32.666666666666664 19.333333333333332 32.666666666666664c4.906666666666666 0 10.266666666666666 -12.493333333333332 12.053333333333331 -17.04Z" fill="#ffe500" stroke-width="1"></path>
|
|
9
|
+
<path d="m16.52 49.14666666666666 21.85333333333333 -21.85333333333333a70.08 70.08 0 0 1 -5.76 -11.666666666666666 0.6533333333333333 0.6533333333333333 0 0 0 -1.2266666666666666 0c-1.7866666666666666 4.546666666666667 -7.1466666666666665 17.04 -12 17.04 -4.226666666666667 0 -8.466666666666665 -5.973333333333334 -10.586666666666666 -9.493333333333332a0.6799999999999999 0.6799999999999999 0 0 0 -1.24 0.39999999999999997L8.666666666666666 42.666666666666664c0 2.5733333333333333 3.0533333333333332 4.88 7.853333333333333 6.48Z" fill="#fff48c" stroke-width="1"></path>
|
|
10
|
+
<path d="M31.386666666666663 15.626666666666667a0.6533333333333333 0.6533333333333333 0 0 1 1.2266666666666666 0c1.7866666666666666 4.546666666666667 7.1466666666666665 17.04 12 17.04 4.226666666666667 0 8.466666666666665 -5.973333333333334 10.586666666666666 -9.493333333333332a0.6799999999999999 0.6799999999999999 0 0 1 1.24 0.39999999999999997L55.33333333333333 42.666666666666664c0 4.786666666666666 -10.453333333333333 8.666666666666666 -23.333333333333332 8.666666666666666S8.666666666666666 47.45333333333333 8.666666666666666 42.666666666666664l-1.16 -19.093333333333334a0.6799999999999999 0.6799999999999999 0 0 1 1.24 -0.39999999999999997C10.866666666666667 26.666666666666664 15.106666666666666 32.666666666666664 19.333333333333332 32.666666666666664c4.906666666666666 0 10.266666666666666 -12.493333333333332 12.053333333333331 -17.04Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M36.666666666666664 37.33333333333333a4.666666666666666 4.666666666666666 0 0 0 -9.333333333333332 0v2.6666666666666665a4.666666666666666 4.666666666666666 0 0 0 9.333333333333332 0Z" fill="#ff6242" stroke-width="1"></path>
|
|
12
|
+
<path d="M32 42.666666666666664a4.666666666666666 4.666666666666666 0 0 1 -4.666666666666666 -4.666666666666666V40a4.666666666666666 4.666666666666666 0 0 0 9.333333333333332 0v-2A4.666666666666666 4.666666666666666 0 0 1 32 42.666666666666664Z" fill="#e04122" stroke-width="1"></path>
|
|
13
|
+
<path d="M32 32.666666666666664a4.666666666666666 4.666666666666666 0 0 0 -4.666666666666666 4.666666666666666v2.6666666666666665a2.533333333333333 2.533333333333333 0 0 0 0 0.3333333333333333 4.64 4.64 0 0 1 9.253333333333334 0 2.533333333333333 2.533333333333333 0 0 0 0 -0.3333333333333333v-2.6666666666666665A4.666666666666666 4.666666666666666 0 0 0 32 32.666666666666664Z" fill="#ff866e" stroke-width="1"></path>
|
|
14
|
+
<path d="M36.666666666666664 37.33333333333333a4.666666666666666 4.666666666666666 0 0 0 -9.333333333333332 0v2.6666666666666665a4.666666666666666 4.666666666666666 0 0 0 9.333333333333332 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M44.666666666666664 39.33333333333333a2.6666666666666665 2.6666666666666665 0 1 0 5.333333333333333 0 2.6666666666666665 2.6666666666666665 0 1 0 -5.333333333333333 0Z" fill="#ff6242" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M14 39.33333333333333a2.6666666666666665 2.6666666666666665 0 1 0 5.333333333333333 0 2.6666666666666665 2.6666666666666665 0 1 0 -5.333333333333333 0Z" fill="#ff6242" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M8.666666666666666 49.33333333333333c0 4.786666666666666 10.453333333333333 8.666666666666666 23.333333333333332 8.666666666666666s23.333333333333332 -3.88 23.333333333333332 -8.666666666666666v-6.666666666666666c0 4.786666666666666 -10.453333333333333 8.666666666666666 -23.333333333333332 8.666666666666666S8.666666666666666 47.45333333333333 8.666666666666666 42.666666666666664Z" fill="#c0dceb" stroke-width="1"></path>
|
|
18
|
+
<path d="M32 51.33333333333333c-12.879999999999999 0 -23.333333333333332 -3.88 -23.333333333333332 -8.666666666666666v3.333333333333333c0 4.786666666666666 10.453333333333333 8.666666666666666 23.333333333333332 8.666666666666666s23.333333333333332 -3.88 23.333333333333332 -8.666666666666666V42.666666666666664c0 4.786666666666666 -10.453333333333333 8.666666666666666 -23.333333333333332 8.666666666666666Z" fill="#e8f4fa" stroke-width="1"></path>
|
|
19
|
+
<path d="M8.666666666666666 49.33333333333333c0 4.786666666666666 10.453333333333333 8.666666666666666 23.333333333333332 8.666666666666666s23.333333333333332 -3.88 23.333333333333332 -8.666666666666666v-6.666666666666666c0 4.786666666666666 -10.453333333333333 8.666666666666666 -23.333333333333332 8.666666666666666S8.666666666666666 47.45333333333333 8.666666666666666 42.666666666666664Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M15.333333333333332 16.666666666666664a3.333333333333333 3.333333333333333 0 1 0 6.666666666666666 0 3.333333333333333 3.333333333333333 0 1 0 -6.666666666666666 0Z" fill="#ff6242" stroke-width="1"></path>
|
|
21
|
+
<path d="M16.306666666666665 19.026666666666664a3.333333333333333 3.333333333333333 0 0 1 4.72 -4.72Z" fill="#ff866e" stroke-width="1"></path>
|
|
22
|
+
<path d="M15.333333333333332 16.666666666666664a3.333333333333333 3.333333333333333 0 1 0 6.666666666666666 0 3.333333333333333 3.333333333333333 0 1 0 -6.666666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
23
|
+
<path d="M42 16.666666666666664a3.333333333333333 3.333333333333333 0 1 0 6.666666666666666 0 3.333333333333333 3.333333333333333 0 1 0 -6.666666666666666 0Z" fill="#ff6242" stroke-width="1"></path>
|
|
24
|
+
<path d="M42.97333333333333 19.026666666666664a3.333333333333333 3.333333333333333 0 0 1 4.72 -4.72Z" fill="#ff866e" stroke-width="1"></path>
|
|
25
|
+
<path d="M42 16.666666666666664a3.333333333333333 3.333333333333333 0 1 0 6.666666666666666 0 3.333333333333333 3.333333333333333 0 1 0 -6.666666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
26
|
+
<path d="M3.333333333333333 19.333333333333332a4 4 0 1 0 8 0 4 4 0 1 0 -8 0Z" fill="#ff6242" stroke-width="1"></path>
|
|
27
|
+
<path d="M4.506666666666666 22.16a4 4 0 0 1 5.653333333333333 -5.653333333333333Z" fill="#ff866e" stroke-width="1"></path>
|
|
28
|
+
<path d="M3.333333333333333 19.333333333333332a4 4 0 1 0 8 0 4 4 0 1 0 -8 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
29
|
+
<path d="M28 12.666666666666666a4 4 0 1 0 8 0 4 4 0 1 0 -8 0Z" fill="#ff6242" stroke-width="1"></path>
|
|
30
|
+
<path d="M29.173333333333332 15.493333333333332a4 4 0 0 1 5.653333333333333 -5.653333333333333Z" fill="#ff866e" stroke-width="1"></path>
|
|
31
|
+
<path d="M28 12.666666666666666a4 4 0 1 0 8 0 4 4 0 1 0 -8 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
32
|
+
<path d="M52.666666666666664 19.333333333333332a4 4 0 1 0 8 0 4 4 0 1 0 -8 0Z" fill="#ff6242" stroke-width="1"></path>
|
|
33
|
+
<path d="M53.84 22.16a4 4 0 1 1 5.653333333333333 -5.653333333333333Z" fill="#ff866e" stroke-width="1"></path>
|
|
34
|
+
<path d="M52.666666666666664 19.333333333333332a4 4 0 1 0 8 0 4 4 0 1 0 -8 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
35
|
+
</svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Crying-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Crying Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M25.333333333333332 42a12 12 0 0 1 13.333333333333332 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
11
|
+
<path d="M20 28.666666666666664a1.3333333333333333 1.3333333333333333 0 1 1 -1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M44 28.666666666666664a1.3333333333333333 1.3333333333333333 0 1 0 1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
14
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
15
|
+
<path d="M11.599999999999998 27.906666666666666a9.333333333333332 9.333333333333332 0 0 1 7.186666666666666 -6.973333333333334 9.226666666666667 9.226666666666667 0 0 1 4 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M52.39999999999999 27.906666666666666a9.333333333333332 9.333333333333332 0 0 0 -7.186666666666666 -6.973333333333334 9.226666666666667 9.226666666666667 0 0 0 -4 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M50.519999999999996 53.70666666666666c-4.866666666666666 -2.1333333333333333 1.1333333333333333 -7.466666666666666 0.4666666666666666 -11.133333333333333 5.52 3.44 4.386666666666667 13.253333333333332 -0.4666666666666666 11.133333333333333Z" fill="#00b8f0" stroke-width="1"></path>
|
|
18
|
+
<path d="M50.986666666666665 42.57333333333333a1.5999999999999999 1.5999999999999999 0 0 1 0 0.26666666666666666c3.5733333333333333 4.08 2.2666666666666666 11.493333333333332 -1.9466666666666665 9.813333333333333a3.4799999999999995 3.4799999999999995 0 0 0 1.44 1.0533333333333332c4.893333333333333 2.12 6.0266666666666655 -7.6933333333333325 0.5066666666666666 -11.133333333333333Z" fill="#4acfff" stroke-width="1"></path>
|
|
19
|
+
<path d="M50.519999999999996 53.70666666666666c-4.866666666666666 -2.1333333333333333 1.1333333333333333 -7.466666666666666 0.4666666666666666 -11.133333333333333 5.52 3.44 4.386666666666667 13.253333333333332 -0.4666666666666666 11.133333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M50.28 39.74666666666666c-3.6666666666666665 -0.7733333333333332 -0.29333333333333333 -5.333333333333333 -1.3333333333333333 -7.746666666666666 4.386666666666667 1.5866666666666664 4.986666666666666 8.52 1.3333333333333333 7.746666666666666Z" fill="#00b8f0" stroke-width="1"></path>
|
|
21
|
+
<path d="m49.01333333333333 32 0 0.18666666666666668c3.0533333333333332 2.293333333333333 3.2133333333333334 7.6 0.06666666666666667 7.04a2.413333333333333 2.413333333333333 0 0 0 1.1466666666666665 0.52c3.706666666666666 0.7733333333333332 3.1066666666666665 -6.16 -1.2133333333333334 -7.746666666666666Z" fill="#4acfff" stroke-width="1"></path>
|
|
22
|
+
<path d="M50.28 39.74666666666666c-3.6666666666666665 -0.7733333333333332 -0.29333333333333333 -5.333333333333333 -1.3333333333333333 -7.746666666666666 4.386666666666667 1.5866666666666664 4.986666666666666 8.52 1.3333333333333333 7.746666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
23
|
+
<path d="M13.719999999999999 39.74666666666666c3.6666666666666665 -0.7733333333333332 0.29333333333333333 -5.333333333333333 1.3333333333333333 -7.746666666666666 -4.386666666666667 1.5866666666666664 -4.986666666666666 8.52 -1.3333333333333333 7.746666666666666Z" fill="#00b8f0" stroke-width="1"></path>
|
|
24
|
+
<path d="m14.986666666666666 32 0 0.18666666666666668c-3.0533333333333332 2.293333333333333 -3.2133333333333334 7.6 0 7.04a2.413333333333333 2.413333333333333 0 0 1 -1.1466666666666665 0.52c-3.7733333333333334 0.7733333333333332 -3.173333333333333 -6.16 1.1466666666666665 -7.746666666666666Z" fill="#4acfff" stroke-width="1"></path>
|
|
25
|
+
<path d="M13.719999999999999 39.74666666666666c3.6666666666666665 -0.7733333333333332 0.29333333333333333 -5.333333333333333 1.3333333333333333 -7.746666666666666 -4.386666666666667 1.5866666666666664 -4.986666666666666 8.52 -1.3333333333333333 7.746666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Delivery-Truck--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Delivery Truck Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M6.613333333333333 56.06666666666666a26.05333333333333 2.5999999999999996 0 1 0 52.10666666666666 0 26.05333333333333 2.5999999999999996 0 1 0 -52.10666666666666 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M26.4 40.879999999999995H3.3866666666666667v-9.586666666666666a12 12 0 0 1 1.5199999999999998 -5.826666666666666l5.906666666666666 -10.48a6.413333333333332 6.413333333333332 0 0 1 5.6 -3.28h9.986666666666666Z" fill="#fffce5" stroke-width="1"></path>
|
|
7
|
+
<path d="M16.413333333333334 11.706666666666665a6.413333333333332 6.413333333333332 0 0 0 -5.6 3.28L4.92 25.46666666666667a11.919999999999998 11.919999999999998 0 0 0 -1.5333333333333332 5.826666666666666v4.386666666666667a11.84 11.84 0 0 1 1.5333333333333332 -5.8133333333333335l5.893333333333333 -10.493333333333332a6.426666666666667 6.426666666666667 0 0 1 5.6 -3.2666666666666666h9.986666666666666v-4.3999999999999995Z" fill="#ffffff" stroke-width="1"></path>
|
|
8
|
+
<path d="M26.4 40.879999999999995H3.3866666666666667v-9.586666666666666a12 12 0 0 1 1.5199999999999998 -5.826666666666666l5.906666666666666 -10.48a6.413333333333332 6.413333333333332 0 0 1 5.6 -3.28h9.986666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="m2.213333333333333 40.879999999999995 59.10666666666666 0 0 8.826666666666666 -59.10666666666666 0Z" fill="#ff6242" stroke-width="1"></path>
|
|
10
|
+
<path d="M59.61333333333333 40.879999999999995H3.92a1.7066666666666666 1.7066666666666666 0 0 0 -1.7066666666666666 1.7066666666666666v3.546666666666667a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 -1.7066666666666666h55.693333333333335A1.7066666666666666 1.7066666666666666 0 0 1 61.33333333333333 46.13333333333333v-3.546666666666667a1.7066666666666666 1.7066666666666666 0 0 0 -1.72 -1.7066666666666666Z" fill="#ff866e" stroke-width="1"></path>
|
|
11
|
+
<path d="m2.213333333333333 40.879999999999995 59.10666666666666 0 0 8.826666666666666 -59.10666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M28.133333333333333 6.799999999999999h30.666666666666664a1.7333333333333334 1.7333333333333334 0 0 1 1.7333333333333334 1.7333333333333334v32.346666666666664H26.4V8.533333333333333a1.7333333333333334 1.7333333333333334 0 0 1 1.7333333333333334 -1.7333333333333334Z" fill="#fff48c" stroke-width="1"></path>
|
|
13
|
+
<path d="M58.73333333333333 6.799999999999999H28.133333333333333a1.7333333333333334 1.7333333333333334 0 0 0 -1.7333333333333334 1.7333333333333334v4.413333333333333a1.7333333333333334 1.7333333333333334 0 0 1 1.7333333333333334 -1.7333333333333334h30.599999999999998a1.7466666666666666 1.7466666666666666 0 0 1 1.7466666666666666 1.7333333333333334V8.533333333333333a1.7466666666666666 1.7466666666666666 0 0 0 -1.7466666666666666 -1.7333333333333334Z" fill="#fffacf" stroke-width="1"></path>
|
|
14
|
+
<path d="M28.133333333333333 6.799999999999999h30.666666666666664a1.7333333333333334 1.7333333333333334 0 0 1 1.7333333333333334 1.7333333333333334v32.346666666666664l0 0H26.4l0 0V8.533333333333333a1.7333333333333334 1.7333333333333334 0 0 1 1.7333333333333334 -1.7333333333333334Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M8.6 49.70666666666666a6.293333333333333 6.293333333333333 0 1 0 12.586666666666666 0 6.293333333333333 6.293333333333333 0 1 0 -12.586666666666666 0Z" fill="#656769" stroke-width="1"></path>
|
|
16
|
+
<path d="M41.05333333333333 49.70666666666666a6.293333333333333 6.293333333333333 0 1 0 12.586666666666666 0 6.293333333333333 6.293333333333333 0 1 0 -12.586666666666666 0Z" fill="#656769" stroke-width="1"></path>
|
|
17
|
+
<path d="M14.893333333333333 45.906666666666666a6.306666666666667 6.306666666666667 0 0 1 6.173333333333333 5.039999999999999 6.293333333333333 6.293333333333333 0 1 0 -12.346666666666666 0 6.306666666666667 6.306666666666667 0 0 1 6.173333333333333 -5.039999999999999Z" fill="#525252" stroke-width="1"></path>
|
|
18
|
+
<path d="M47.346666666666664 45.906666666666666a6.306666666666667 6.306666666666667 0 0 1 6.173333333333333 5.039999999999999 6.293333333333333 6.293333333333333 0 1 0 -12.346666666666666 0 6.306666666666667 6.306666666666667 0 0 1 6.173333333333333 -5.039999999999999Z" fill="#525252" stroke-width="1"></path>
|
|
19
|
+
<path d="M8.6 49.70666666666666a6.293333333333333 6.293333333333333 0 1 0 12.586666666666666 0 6.293333333333333 6.293333333333333 0 1 0 -12.586666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M41.05333333333333 49.70666666666666a6.293333333333333 6.293333333333333 0 1 0 12.586666666666666 0 6.293333333333333 6.293333333333333 0 1 0 -12.586666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
<path d="M3.3866666666666667 31.973333333333333H26.4v8.893333333333333H3.3866666666666667z" fill="#ff6242" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
22
|
+
<path d="M19.506666666666668 16.346666666666664h-9.466666666666665L4.906666666666666 25.46666666666667c-0.14666666666666667 0.26666666666666666 -0.27999999999999997 0.5466666666666666 -0.41333333333333333 0.8266666666666667h12.466666666666665a1.76 1.76 0 0 0 1.3333333333333333 -0.6266666666666666l2.5466666666666664 -3.08a1.7066666666666666 1.7066666666666666 0 0 0 0.39999999999999997 -1.1066666666666665v-3.3866666666666667a1.7466666666666666 1.7466666666666666 0 0 0 -1.7333333333333334 -1.7466666666666666Z" fill="#00b8f0" stroke-width="1"></path>
|
|
23
|
+
<path d="M19.506666666666668 16.346666666666664h-4.066666666666666l-5.333333333333333 9.946666666666665h6.826666666666666a1.7466666666666666 1.7466666666666666 0 0 0 1.3333333333333333 -0.6266666666666666l2.5466666666666664 -3.08a1.7066666666666666 1.7066666666666666 0 0 0 0.39999999999999997 -1.1066666666666665v-3.3866666666666667a1.7466666666666666 1.7466666666666666 0 0 0 -1.7066666666666666 -1.7466666666666666Z" fill="#4acfff" stroke-width="1"></path>
|
|
24
|
+
<path d="M19.506666666666668 16.346666666666664h-9.466666666666665L4.906666666666666 25.46666666666667c-0.14666666666666667 0.26666666666666666 -0.27999999999999997 0.5466666666666666 -0.41333333333333333 0.8266666666666667h12.466666666666665a1.76 1.76 0 0 0 1.3333333333333333 -0.6266666666666666l2.5466666666666664 -3.08a1.7066666666666666 1.7066666666666666 0 0 0 0.39999999999999997 -1.1066666666666665v-3.3866666666666667a1.7466666666666666 1.7466666666666666 0 0 0 -1.7333333333333334 -1.7466666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
25
|
+
<path d="M6.426666666666667 33.519999999999996A2.413333333333333 2.413333333333333 0 0 0 4 31.106666666666662H2.5733333333333333V36H4a2.413333333333333 2.413333333333333 0 0 0 2.4266666666666667 -2.48Z" fill="#ff8a14" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
26
|
+
<path d="m26.4 15.159999999999998 34.08 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
27
|
+
<path d="m26.4 23.839999999999996 34.08 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
28
|
+
<path d="m26.4 32.733333333333334 34.08 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
29
|
+
<path d="M12.826666666666664 49.70666666666666a2.0666666666666664 2.0666666666666664 0 1 0 4.133333333333333 0 2.0666666666666664 2.0666666666666664 0 1 0 -4.133333333333333 0Z" fill="#daedf7" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
30
|
+
<path d="M45.28 49.70666666666666a2.0666666666666664 2.0666666666666664 0 1 0 4.133333333333333 0 2.0666666666666664 2.0666666666666664 0 1 0 -4.133333333333333 0Z" fill="#daedf7" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
31
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Determined-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Determined Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M2 29.69333333333333a23.69333333333333 23.69333333333333 0 1 0 47.38666666666666 0 23.69333333333333 23.69333333333333 0 1 0 -47.38666666666666 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M25.69333333333333 6a23.706666666666667 23.706666666666667 0 1 0 23.706666666666667 23.69333333333333A23.706666666666667 23.706666666666667 0 0 0 25.69333333333333 6Zm0 43.84a21.626666666666665 21.626666666666665 0 1 1 21.626666666666665 -21.626666666666665 21.626666666666665 21.626666666666665 0 0 1 -21.626666666666665 21.626666666666665Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M18.586666666666666 10.733333333333334a7.1066666666666665 1.7733333333333334 0 1 0 14.213333333333333 0 7.1066666666666665 1.7733333333333334 0 1 0 -14.213333333333333 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M14.44 30.88a1.1866666666666665 1.1866666666666665 0 1 0 2.373333333333333 0 1.1866666666666665 1.1866666666666665 0 1 0 -2.373333333333333 0Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M20.159999999999997 29.106666666666662s-3.5599999999999996 -5.333333333333333 -7.493333333333333 -3.5599999999999996" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M31.226666666666667 29.106666666666662s3.5599999999999996 -5.333333333333333 7.506666666666666 -3.5599999999999996" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M34.586666666666666 30.88a1.1866666666666665 1.1866666666666665 0 1 0 2.373333333333333 0 1.1866666666666665 1.1866666666666665 0 1 0 -2.373333333333333 0Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M19.773333333333333 41.54666666666667a10.666666666666666 10.666666666666666 0 0 1 11.853333333333333 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M42.879999999999995 36.21333333333333c0 0.9866666666666666 -1.3333333333333333 1.7866666666666666 -2.96 1.7866666666666666s-2.96 -0.7999999999999999 -2.96 -1.7866666666666666 1.3333333333333333 -1.7733333333333334 2.96 -1.7733333333333334 2.96 0.7999999999999999 2.96 1.7733333333333334Z" fill="#ffaa54" stroke-width="1"></path>
|
|
14
|
+
<path d="M8.52 36.21333333333333c0 0.9866666666666666 1.3333333333333333 1.7866666666666666 2.96 1.7866666666666666s2.96 -0.7999999999999999 2.96 -1.7866666666666666 -1.3333333333333333 -1.7733333333333334 -2.96 -1.7733333333333334 -2.96 0.7999999999999999 -2.96 1.7733333333333334Z" fill="#ffaa54" stroke-width="1"></path>
|
|
15
|
+
<path d="M6.293333333333333 59.28a18.96 2 0 1 0 37.92 0 18.96 2 0 1 0 -37.92 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
16
|
+
<path d="M2 29.69333333333333a23.69333333333333 23.69333333333333 0 1 0 47.38666666666666 0 23.69333333333333 23.69333333333333 0 1 0 -47.38666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M44.653333333333336 15.479999999999999H4.32a1.2 1.2 0 0 0 -0.9466666666666665 0.4666666666666666 22.146666666666665 22.146666666666665 0 0 0 -2.5999999999999996 4.373333333333333 1.1866666666666665 1.1866666666666665 0 0 0 0.07999999999999999 1.1333333333333333 1.2266666666666666 1.2266666666666666 0 0 0 1 0.5466666666666666h46.266666666666666a23.560000000000002 23.560000000000002 0 0 0 -3.466666666666667 -6.52Z" fill="#f0f0f0" stroke-width="1"></path>
|
|
18
|
+
<path d="M44.653333333333336 15.479999999999999H4.32a1.2 1.2 0 0 0 -0.9466666666666665 0.4666666666666666 21.813333333333333 21.813333333333333 0 0 0 -1.3333333333333333 1.9066666666666665h44.18666666666667a23.599999999999998 23.599999999999998 0 0 0 -1.5733333333333333 -2.373333333333333Z" fill="#ffffff" stroke-width="1"></path>
|
|
19
|
+
<path d="M44.653333333333336 15.479999999999999H4.32a1.2 1.2 0 0 0 -0.9466666666666665 0.4666666666666666 22.146666666666665 22.146666666666665 0 0 0 -2.5999999999999996 4.373333333333333 1.1866666666666665 1.1866666666666665 0 0 0 0.07999999999999999 1.1333333333333333 1.2266666666666666 1.2266666666666666 0 0 0 1 0.5466666666666666h46.266666666666666a23.560000000000002 23.560000000000002 0 0 0 -3.466666666666667 -6.52Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M45.84 19.04s6.506666666666666 7.266666666666667 16.186666666666667 6.386666666666667a1.1733333333333333 1.1733333333333333 0 0 1 1.24 1.5333333333333332 45.54666666666666 45.54666666666666 0 0 1 -2.4266666666666667 5.653333333333333 1.1866666666666665 1.1866666666666665 0 0 1 -1.48 0.5866666666666667c-3.253333333333333 -1.2 -13.346666666666666 -5.72 -13.52 -14.159999999999998Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
<path d="M45.74666666666667 17.186666666666667s2.213333333333333 11.733333333333334 9.48 19.026666666666664a1.1733333333333333 1.1733333333333333 0 0 1 -0.41333333333333333 1.92 28.453333333333333 28.453333333333333 0 0 1 -7.893333333333333 1.5999999999999999 1.1866666666666665 1.1866666666666665 0 0 1 -1.24 -1c-0.5866666666666667 -3.8533333333333335 -2.373333333333333 -17.226666666666667 0.06666666666666667 -21.546666666666667Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
22
|
+
<path d="M49.986666666666665 18.733333333333334a3.8533333333333335 3.8533333333333335 0 0 1 -3.8533333333333335 3.8533333333333335h-0.5866666666666667a3.8533333333333335 3.8533333333333335 0 1 1 0 -7.6933333333333325h0.5866666666666667a3.84 3.84 0 0 1 3.8533333333333335 3.84Z" fill="#f0f0f0" stroke-width="1"></path>
|
|
23
|
+
<path d="M45.54666666666666 17.333333333333332h0.5866666666666667a3.8533333333333335 3.8533333333333335 0 0 1 3.6666666666666665 2.6666666666666665 4 4 0 0 0 0.18666666666666668 -1.2 3.84 3.84 0 0 0 -3.8533333333333335 -3.84h-0.5866666666666667a3.84 3.84 0 0 0 -3.8533333333333335 3.84 4 4 0 0 0 0.18666666666666668 1.2 3.8666666666666663 3.8666666666666663 0 0 1 3.6666666666666665 -2.6666666666666665Z" fill="#ffffff" stroke-width="1"></path>
|
|
24
|
+
<path d="M49.986666666666665 18.733333333333334a3.8533333333333335 3.8533333333333335 0 0 1 -3.8533333333333335 3.8533333333333335h-0.5866666666666667a3.8533333333333335 3.8533333333333335 0 1 1 0 -7.6933333333333325h0.5866666666666667a3.84 3.84 0 0 1 3.8533333333333335 3.84Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Disappointed-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Disappointed Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M10.666666666666666 59.946666666666665a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
10
|
+
<path d="M17.333333333333332 30a15.239999999999998 15.239999999999998 0 0 0 4.493333333333333 -1.4666666666666668 14.906666666666666 14.906666666666666 0 0 0 3.84 -2.7466666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M46.666666666666664 30a15.239999999999998 15.239999999999998 0 0 1 -4.493333333333333 -1.4666666666666668 14.906666666666666 14.906666666666666 0 0 1 -3.84 -2.7466666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
13
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
14
|
+
<path d="M25.333333333333332 43.36a12 12 0 0 1 13.333333333333332 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-width="1"></path>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Dizzy-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Dizzy Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="m16 25.333333333333332 4.666666666666666 4.666666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M20.666666666666664 25.333333333333332 16 30" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="m48 25.333333333333332 -4.666666666666666 4.666666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="m43.33333333333333 25.333333333333332 4.666666666666666 4.666666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M14.226666666666667 21.333333333333332a5.946666666666666 5.946666666666666 0 0 1 3.7733333333333334 -1.3333333333333333 6.013333333333333 6.013333333333333 0 0 1 3.7733333333333334 1.3333333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M49.773333333333326 21.333333333333332a5.946666666666666 5.946666666666666 0 0 0 -3.7733333333333334 -1.3333333333333333 6.013333333333333 6.013333333333333 0 0 0 -3.7733333333333334 1.3333333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="M22 42a10 10 0 1 0 20 0 10 10 0 1 0 -20 0Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="M23.53333333333333 47.30666666666666a8.466666666666665 4.693333333333333 0 1 0 16.93333333333333 0 8.466666666666665 4.693333333333333 0 1 0 -16.93333333333333 0Z" fill="#ff866e" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Downcast-Face-With-Sweat--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Downcast Face With Sweat Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M63.33333333333333 44.666666666666664a6.666666666666666 6.666666666666666 0 0 1 -13.333333333333332 0c0 -3.6799999999999997 6.666666666666666 -14.666666666666666 6.666666666666666 -14.666666666666666s6.666666666666666 10.986666666666666 6.666666666666666 14.666666666666666Z" fill="#00b8f0" stroke-width="1"></path>
|
|
11
|
+
<path d="M56.666666666666664 48a6.666666666666666 6.666666666666666 0 0 1 -6.3999999999999995 -4.92 6.04 6.04 0 0 0 -0.26666666666666666 1.5866666666666664 6.666666666666666 6.666666666666666 0 0 0 13.333333333333332 0 6.04 6.04 0 0 0 -0.26666666666666666 -1.5866666666666664A6.666666666666666 6.666666666666666 0 0 1 56.666666666666664 48Z" fill="#009fd9" stroke-width="1"></path>
|
|
12
|
+
<path d="M63.33333333333333 44.666666666666664a6.666666666666666 6.666666666666666 0 0 1 -13.333333333333332 0c0 -3.6799999999999997 6.666666666666666 -14.666666666666666 6.666666666666666 -14.666666666666666s6.666666666666666 10.986666666666666 6.666666666666666 14.666666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
14
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
15
|
+
<path d="M25.333333333333332 42a12 12 0 0 1 13.333333333333332 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M13.333333333333332 29.666666666666664a2.333333333333333 2.333333333333333 0 0 1 4.666666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M46 29.666666666666664a2.333333333333333 2.333333333333333 0 0 1 4.666666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Drooling-Face-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Drooling Face 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
10
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M53.213333333333324 25.893333333333334a9.333333333333332 9.333333333333332 0 0 0 -12.44 -4.4799999999999995" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M10.786666666666665 25.893333333333334a9.333333333333332 9.333333333333332 0 0 1 12.44 -4.4799999999999995" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M23.92 39.33333333333333a1.2533333333333332 1.2533333333333332 0 0 0 -0.9466666666666665 0.44 1.3333333333333333 1.3333333333333333 0 0 0 -0.29333333333333333 1.0133333333333332 9.453333333333333 9.453333333333333 0 0 0 18.666666666666664 0 1.3333333333333333 1.3333333333333333 0 0 0 -0.29333333333333333 -1.0133333333333332 1.2533333333333332 1.2533333333333332 0 0 0 -0.9466666666666665 -0.44Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M39.42666666666666 45.120000000000005A15.159999999999998 15.159999999999998 0 0 0 32 43.373333333333335a15.159999999999998 15.159999999999998 0 0 0 -7.426666666666667 1.7466666666666666 9.546666666666667 9.546666666666667 0 0 0 14.853333333333333 0Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M39.36 42.97333333333333a0.5733333333333333 0.5733333333333333 0 0 1 1.08 0.2533333333333333v12.253333333333332a2.173333333333333 2.173333333333333 0 0 1 -4.333333333333333 0v-6.666666666666666a4.826666666666666 4.826666666666666 0 0 1 1.3333333333333333 -3.373333333333333 10.573333333333332 10.573333333333332 0 0 0 1.92 -2.466666666666667Z" fill="#4aeff7" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
17
|
+
<path d="M14.186666666666667 30A5.333333333333333 5.333333333333333 0 0 1 21.333333333333332 27.599999999999998" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="M49.81333333333333 30A5.333333333333333 5.333333333333333 0 0 0 42.666666666666664 27.599999999999998" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Drooling-Face-2--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Drooling Face 2 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
8
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="M19.333333333333332 27.333333333333332a1.3333333333333333 1.3333333333333333 0 1 1 -1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M44.666666666666664 27.333333333333332a1.3333333333333333 1.3333333333333333 0 1 0 1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M40.08 46.666666666666664a1.2133333333333334 1.2133333333333334 0 0 0 0.9466666666666665 -0.45333333333333337 1.3333333333333333 1.3333333333333333 0 0 0 0.29333333333333333 -1.04c-0.7066666666666667 -3.733333333333333 -4.6 -5.84 -9.333333333333332 -5.84s-8.559999999999999 2 -9.333333333333332 5.84a1.3333333333333333 1.3333333333333333 0 0 0 0.29333333333333333 1.04 1.2133333333333334 1.2133333333333334 0 0 0 0.9466666666666665 0.45333333333333337 31.04 31.04 0 0 1 16.186666666666667 0Z" fill="#ff866e" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="m40.38666666666666 46.666666666666664 -2.2399999999999998 9.053333333333333a5.16 5.16 0 0 0 0.52 3.84h0a1.88 1.88 0 0 0 3.3866666666666667 0h0a5.16 5.16 0 0 0 0.6133333333333333 -3.84Z" fill="#e5feff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M12.666666666666666 20a8 8 0 0 1 5.333333333333333 -2 6.746666666666666 6.746666666666666 0 0 1 4.666666666666666 1.3333333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M51.33333333333333 23.333333333333332a8 8 0 0 0 -5.333333333333333 -2 6.746666666666666 6.746666666666666 0 0 0 -4.666666666666666 1.3333333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Ear--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Ear Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M34.266666666666666 4.213333333333333a14.12 14.12 0 0 0 -14.12 14.106666666666666v27.706666666666667a6.666666666666666 6.666666666666666 0 0 0 6.666666666666666 6.666666666666666 8.2 8.2 0 0 0 7.466666666666666 -4.813333333333333 16.146666666666665 16.146666666666665 0 0 1 5.333333333333333 -6.453333333333333 26.026666666666664 26.026666666666664 0 0 0 10.799999999999999 -21.119999999999997A16.08 16.08 0 0 0 34.266666666666666 4.213333333333333Z" fill="#ffda8f" stroke-width="1"></path>
|
|
6
|
+
<path d="M34.48 15.333333333333332a10.293333333333333 10.293333333333333 0 0 1 10.106666666666666 8.386666666666667 24.92 24.92 0 0 0 0.18666666666666668 -2.813333333333333 10.293333333333333 10.293333333333333 0 0 0 -10.293333333333333 -10.293333333333333 8.773333333333333 8.773333333333333 0 0 0 -8.773333333333333 8.76v4.773333333333333a8.773333333333333 8.773333333333333 0 0 1 8.773333333333333 -8.813333333333333Z" fill="#ffbe3d" stroke-width="1"></path>
|
|
7
|
+
<path d="M13.733333333333334 60.28a18.266666666666666 2.3866666666666667 0 1 0 36.53333333333333 0 18.266666666666666 2.3866666666666667 0 1 0 -36.53333333333333 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
8
|
+
<path d="M34.266666666666666 4.213333333333333a14.12 14.12 0 0 0 -14.12 14.106666666666666v4.866666666666666A14.12 14.12 0 0 1 34.266666666666666 9.079999999999998a16 16 0 0 1 15.906666666666666 13.96 23.599999999999998 23.599999999999998 0 0 0 0.15999999999999998 -2.76A16.08 16.08 0 0 0 34.266666666666666 4.213333333333333Z" fill="#ffe9bd" stroke-width="1"></path>
|
|
9
|
+
<path d="M34.266666666666666 4.213333333333333a14.12 14.12 0 0 0 -14.12 14.106666666666666v27.706666666666667a6.666666666666666 6.666666666666666 0 0 0 6.666666666666666 6.666666666666666 8.2 8.2 0 0 0 7.466666666666666 -4.813333333333333 16.146666666666665 16.146666666666665 0 0 1 5.333333333333333 -6.453333333333333 26.026666666666664 26.026666666666664 0 0 0 10.799999999999999 -21.119999999999997A16.08 16.08 0 0 0 34.266666666666666 4.213333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M28.88 26.453333333333333a3.1866666666666665 3.1866666666666665 0 0 0 -3.173333333333333 3.173333333333333v2.986666666666667a3.1866666666666665 3.1866666666666665 0 1 1 6.359999999999999 0v-2.986666666666667a3.1866666666666665 3.1866666666666665 0 0 0 -3.1866666666666665 -3.173333333333333Z" fill="#ffbe3d" stroke-width="1"></path>
|
|
11
|
+
<path d="M28.88 26.453333333333333a3.1866666666666665 3.1866666666666665 0 0 1 3.1866666666666665 3.173333333333333v3.1866666666666665a3.1866666666666665 3.1866666666666665 0 0 1 -6.359999999999999 0v-3.1866666666666665a3.1866666666666665 3.1866666666666665 0 0 1 3.173333333333333 -3.173333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M25.706666666666667 29.626666666666665V19.333333333333332a8.773333333333333 8.773333333333333 0 0 1 8.773333333333333 -8.76 10.293333333333333 10.293333333333333 0 0 1 10.293333333333333 10.293333333333333 24.21333333333333 24.21333333333333 0 0 1 -2.3866666666666667 10.346666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M32.85333333333333 19.306666666666665c3.3200000000000003 0 5.56 1.3333333333333333 5.56 6.346666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Exclamation-Mark--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Exclamation Mark Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M20.69333333333333 58.906666666666666a11.306666666666667 2.4266666666666667 0 1 0 22.613333333333333 0 11.306666666666667 2.4266666666666667 0 1 0 -22.613333333333333 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M33.86666666666666 3.333333333333333h-3.733333333333333c-2.48 0 -4.453333333333333 1.5733333333333333 -4.306666666666667 3.4266666666666663L28 35.093333333333334c0.12 1.5733333333333333 1.8666666666666665 2.813333333333333 4 2.813333333333333s3.84 -1.24 4 -2.813333333333333l2.173333333333333 -28.333333333333332c0.14666666666666667 -1.853333333333333 -1.8266666666666667 -3.4266666666666663 -4.306666666666667 -3.4266666666666663Z" fill="#ff6242" stroke-width="1"></path>
|
|
7
|
+
<path d="M26.08 9.973333333333333a4.413333333333333 4.413333333333333 0 0 1 4 -2.1333333333333333h3.733333333333333a4.413333333333333 4.413333333333333 0 0 1 4 2.1333333333333333l0.2533333333333333 -3.2133333333333334c0.14666666666666667 -1.853333333333333 -1.8266666666666667 -3.4266666666666663 -4.306666666666667 -3.4266666666666663H30.133333333333333c-2.48 0 -4.453333333333333 1.5733333333333333 -4.306666666666667 3.4266666666666663Z" fill="#ff866e" stroke-width="1"></path>
|
|
8
|
+
<path d="M33.86666666666666 3.333333333333333h-3.733333333333333c-2.48 0 -4.453333333333333 1.5733333333333333 -4.306666666666667 3.4266666666666663L28 35.093333333333334c0.12 1.5733333333333333 1.8666666666666665 2.813333333333333 4 2.813333333333333s3.84 -1.24 4 -2.813333333333333l2.173333333333333 -28.333333333333332c0.14666666666666667 -1.853333333333333 -1.8266666666666667 -3.4266666666666663 -4.306666666666667 -3.4266666666666663Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M27.133333333333333 46.986666666666665a4.866666666666666 4.866666666666666 0 1 0 9.733333333333333 0 4.866666666666666 4.866666666666666 0 1 0 -9.733333333333333 0Z" fill="#ff6242" stroke-width="1"></path>
|
|
10
|
+
<path d="M32 45.239999999999995A4.773333333333333 4.773333333333333 0 0 1 36.76 48a5.253333333333333 5.253333333333333 0 0 0 0.10666666666666666 -1.0266666666666666 4.866666666666666 4.866666666666666 0 1 0 -9.733333333333333 0 5.253333333333333 5.253333333333333 0 0 0 0.10666666666666666 1.0266666666666666A4.773333333333333 4.773333333333333 0 0 1 32 45.239999999999995Z" fill="#ff866e" stroke-width="1"></path>
|
|
11
|
+
<path d="M27.133333333333333 46.986666666666665a4.866666666666666 4.866666666666666 0 1 0 9.733333333333333 0 4.866666666666666 4.866666666666666 0 1 0 -9.733333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Exploding-Head--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Exploding Head Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M20.25333333333333 61a12.666666666666666 2 0 1 0 25.333333333333332 0 12.666666666666666 2 0 1 0 -25.333333333333332 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M44.58666666666666 30.93333333333333a1.1466666666666665 1.1466666666666665 0 0 1 0.06666666666666667 0.36c0 1.853333333333333 -5.253333333333333 3.36 -11.733333333333334 3.36s-11.733333333333334 -1.5066666666666664 -11.733333333333334 -3.36a1.1466666666666665 1.1466666666666665 0 0 1 0 -0.36 15.64 15.64 0 1 0 23.333333333333332 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M44.58666666666666 30.93333333333333a1.1466666666666665 1.1466666666666665 0 0 1 0.06666666666666667 0.36 1.2266666666666666 1.2266666666666666 0 0 1 -0.21333333333333332 0.6533333333333333 14.280000000000001 14.280000000000001 0 1 1 -23.04 0 1.2266666666666666 1.2266666666666666 0 0 1 -0.21333333333333332 -0.6533333333333333 1.1466666666666665 1.1466666666666665 0 0 1 0 -0.36 15.64 15.64 0 1 0 23.333333333333332 0Z" fill="#ebcb00" stroke-width="1"></path>
|
|
8
|
+
<path d="M44.58666666666666 30.93333333333333a1.1466666666666665 1.1466666666666665 0 0 1 0.06666666666666667 0.36c0 1.853333333333333 -5.253333333333333 3.36 -11.733333333333334 3.36s-11.733333333333334 -1.5066666666666664 -11.733333333333334 -3.36a1.1466666666666665 1.1466666666666665 0 0 1 0 -0.36 15.64 15.64 0 1 0 23.333333333333332 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M44.266666666666666 45.33333333333333c0 0.6533333333333333 -0.88 1.1733333333333333 -1.96 1.1733333333333333s-1.96 -0.52 -1.96 -1.1733333333333333 0.88 -1.1733333333333333 1.96 -1.1733333333333333 1.96 0.45333333333333337 1.96 1.1733333333333333Z" fill="#ffaa54" stroke-width="1"></path>
|
|
10
|
+
<path d="M21.57333333333333 45.266666666666666a1.96 1.1733333333333333 0 1 0 3.92 0 1.96 1.1733333333333333 0 1 0 -3.92 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M27.333333333333332 38.666666666666664c0 0.9333333333333332 -0.52 1.68 -1.1733333333333333 1.68s-1.1733333333333333 -0.7466666666666667 -1.1733333333333333 -1.68 0.52 -1.6666666666666665 1.1733333333333333 -1.6666666666666665 1.1733333333333333 0.6933333333333334 1.1733333333333333 1.6666666666666665Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M38.50666666666666 38.666666666666664c0 0.9333333333333332 0.5333333333333333 1.68 1.1733333333333333 1.68s1.1733333333333333 -0.7466666666666667 1.1733333333333333 -1.68 -0.52 -1.6666666666666665 -1.1733333333333333 -1.6666666666666665 -1.1733333333333333 0.6933333333333334 -1.1733333333333333 1.6666666666666665Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M29.4 48.81333333333333a3.52 3.52 0 1 0 7.04 0 3.52 3.52 0 1 0 -7.04 0Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M50.01333333333333 26.46666666666667a2.4 2.4 0 1 0 4.8 0 2.4 2.4 0 1 0 -4.8 0Z" fill="#f0f0f0" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M14.919999999999998 24.613333333333333a1.4666666666666668 1.4666666666666668 0 0 0 -1.2133333333333334 1.16A3.0266666666666664 3.0266666666666664 0 0 0 12.173333333333334 25.333333333333332a2.986666666666667 2.986666666666667 0 1 0 2.973333333333333 2.986666666666667 3.0266666666666664 3.0266666666666664 0 0 0 -0.10666666666666666 -0.7866666666666666 1.4133333333333333 1.4133333333333333 0 0 0 0.3333333333333333 0 1.5066666666666664 1.5066666666666664 0 0 0 1.2533333333333332 -1.7066666666666666 1.48 1.48 0 0 0 -1.7066666666666666 -1.2133333333333334Z" fill="#f0f0f0" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M21.186666666666667 31.29333333333333a11.733333333333334 3.3466666666666662 0 1 0 23.46666666666667 0 11.733333333333334 3.3466666666666662 0 1 0 -23.46666666666667 0Z" fill="#ebcb00" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M25.65333333333333 33.93333333333333a34.57333333333333 34.57333333333333 0 0 0 7.266666666666667 0.72 34.8 34.8 0 0 0 7.279999999999999 -0.72 15.493333333333332 15.493333333333332 0 0 1 -1.3333333333333333 -5.933333333333334 11.906666666666666 11.906666666666666 0 0 1 1.1333333333333333 -5.333333333333333H25.88a11.733333333333334 11.733333333333334 0 0 1 1.16 5.333333333333333 15.733333333333334 15.733333333333334 0 0 1 -1.3866666666666667 5.933333333333334Z" fill="#bdbec0" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="M46.29333333333333 9.213333333333333a3.8 3.8 0 0 0 0 -0.3866666666666666 3.893333333333333 3.893333333333333 0 0 0 -5.493333333333333 -3.5733333333333333 9.506666666666666 9.506666666666666 0 0 0 -15.84 0 3.88 3.88 0 0 0 -1.5733333333333333 -0.3466666666666667 3.92 3.92 0 0 0 -3.92 3.92 3.8 3.8 0 0 0 0 0.3866666666666666c-3.1333333333333333 1.4933333333333334 -5.066666666666666 3.52 -5.066666666666666 5.76s1.7866666666666666 4.08 4.693333333333333 5.56A6.666666666666666 6.666666666666666 0 0 0 30.666666666666664 23.28a3.28 3.28 0 0 0 2.213333333333333 1.0533333333333332 3.28 3.28 0 0 0 2.213333333333333 -1.0533333333333332A6.666666666666666 6.666666666666666 0 0 0 46.666666666666664 20.53333333333333c2.9066666666666667 -1.48 4.68 -3.4266666666666663 4.68 -5.56S49.42666666666666 10.666666666666666 46.29333333333333 9.213333333333333Z" fill="#f0f0f0" stroke-width="1"></path>
|
|
19
|
+
<path d="M19.546666666666667 13.68a3.8 3.8 0 0 1 0 -0.3866666666666666A3.92 3.92 0 0 1 23.426666666666666 9.333333333333332a3.8666666666666663 3.8666666666666663 0 0 1 1.5733333333333333 0.3333333333333333 9.506666666666666 9.506666666666666 0 0 1 15.84 0A3.9066666666666667 3.9066666666666667 0 0 1 46.33333333333333 13.333333333333332a3.8 3.8 0 0 1 0 0.3866666666666666A10.093333333333334 10.093333333333334 0 0 1 50.666666666666664 17.21333333333333a4.266666666666667 4.266666666666667 0 0 0 0.6799999999999999 -2.2399999999999998c0 -2.2399999999999998 -1.9333333333333331 -4.266666666666667 -5.066666666666666 -5.76a3.8 3.8 0 0 0 0 -0.3866666666666666 3.893333333333333 3.893333333333333 0 0 0 -5.493333333333333 -3.5733333333333333 9.506666666666666 9.506666666666666 0 0 0 -15.84 0 3.88 3.88 0 0 0 -1.5733333333333333 -0.3466666666666667 3.92 3.92 0 0 0 -3.92 3.92 3.8 3.8 0 0 0 0 0.3866666666666666c-3.1333333333333333 1.4933333333333334 -5.066666666666666 3.52 -5.066666666666666 5.76a4.266666666666667 4.266666666666667 0 0 0 0.6799999999999999 2.2399999999999998 10.173333333333332 10.173333333333332 0 0 1 4.4799999999999995 -3.533333333333333Z" fill="#ffffff" stroke-width="1"></path>
|
|
20
|
+
<path d="M46.29333333333333 9.213333333333333a3.8 3.8 0 0 0 0 -0.3866666666666666 3.893333333333333 3.893333333333333 0 0 0 -5.493333333333333 -3.5733333333333333 9.506666666666666 9.506666666666666 0 0 0 -15.84 0 3.88 3.88 0 0 0 -1.5733333333333333 -0.3466666666666667 3.92 3.92 0 0 0 -3.92 3.92 3.8 3.8 0 0 0 0 0.3866666666666666c-3.1333333333333333 1.4933333333333334 -5.066666666666666 3.52 -5.066666666666666 5.76s1.7866666666666666 4.08 4.693333333333333 5.56A6.666666666666666 6.666666666666666 0 0 0 30.666666666666664 23.28a3.28 3.28 0 0 0 2.213333333333333 1.0533333333333332 3.28 3.28 0 0 0 2.213333333333333 -1.0533333333333332A6.666666666666666 6.666666666666666 0 0 0 46.666666666666664 20.53333333333333c2.9066666666666667 -1.48 4.68 -3.4266666666666663 4.68 -5.56S49.42666666666666 10.666666666666666 46.29333333333333 9.213333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
<path d="M29.4 34.49333333333333a20 20 0 0 0 1.3333333333333333 -5.986666666666666" fill="#f0f0f0" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
22
|
+
<path d="M35.72 34.57333333333333s-0.5599999999999999 -0.8133333333333332 -0.5599999999999999 -3.84" fill="#f0f0f0" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
23
|
+
<path d="m35.13333333333333 23.28 0 3.546666666666667" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
24
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Expressionless-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Expressionless Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="m25.333333333333332 41.33333333333333 13.333333333333332 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M22 29.333333333333332 14.666666666666666 29.333333333333332" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="m49.33333333333333 29.333333333333332 -7.333333333333333 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-Blowing-A-Kiss--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Face Blowing A Kiss Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M2 28.333333333333332a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M28.666666666666664 1.6666666666666665a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333A24.333333333333332 24.333333333333332 0 1 1 53 26.666666666666664 24.333333333333332 24.333333333333332 0 0 1 28.666666666666664 51Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M20.666666666666664 7a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M52.519999999999996 40.25333333333333a26.666666666666664 26.666666666666664 0 0 1 -10.919999999999998 11.373333333333331l-1.4933333333333334 -3.493333333333333 -0.7333333333333334 -1.72a9.853333333333332 9.853333333333332 0 0 1 0.21333333333333332 -7.746666666666666 7.613333333333333 7.613333333333333 0 0 1 5.199999999999999 -4.426666666666666 5.946666666666666 5.946666666666666 0 0 1 6.16 2.253333333333333 6.52 6.52 0 0 1 1.0533333333333332 1.9333333333333331Z" fill="#ebcb00" stroke-width="1"></path>
|
|
9
|
+
<path d="M7.333333333333333 60.33333333333333a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
10
|
+
<path d="M2 28.333333333333332a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M61.33333333333333 39.50666666666666a6.186666666666666 6.186666666666666 0 0 1 0.12 5.506666666666666A8 8 0 0 1 56.81333333333333 49.33333333333333l-11 3.6933333333333334 -4.546666666666667 -10.666666666666666a8 8 0 0 1 0.15999999999999998 -6.359999999999999 6.2 6.2 0 0 1 4.199999999999999 -3.5733333333333333 4.866666666666666 4.866666666666666 0 0 1 5.786666666666666 3.4266666666666663L52.266666666666666 38.666666666666664l2.6666666666666665 -1.1866666666666665a4.866666666666666 4.866666666666666 0 0 1 6.3999999999999995 2.0266666666666664Z" fill="#ff6242" stroke-width="1"></path>
|
|
12
|
+
<path d="M43.346666666666664 37.54666666666667a4.8533333333333335 4.8533333333333335 0 0 1 5.786666666666666 3.413333333333333l0.8533333333333333 2.7466666666666666 2.6666666666666665 -1.1866666666666665a4.8533333333333335 4.8533333333333335 0 0 1 6.3999999999999995 2.0666666666666664 5.7333333333333325 5.7333333333333325 0 0 1 0.6933333333333334 2.8666666666666663 8.36 8.36 0 0 0 1.7066666666666666 -2.44 6.186666666666666 6.186666666666666 0 0 0 -0.12 -5.506666666666666 4.866666666666666 4.866666666666666 0 0 0 -6.3999999999999995 -2.0666666666666664l-2.6666666666666665 1.1866666666666665 -0.8533333333333333 -2.7466666666666666a4.866666666666666 4.866666666666666 0 0 0 -5.786666666666666 -3.4266666666666663A6.2 6.2 0 0 0 41.42666666666666 36a8 8 0 0 0 -0.6933333333333334 2.92 5.626666666666666 5.626666666666666 0 0 1 2.6133333333333333 -1.3733333333333333Z" fill="#ff866e" stroke-width="1"></path>
|
|
13
|
+
<path d="M61.33333333333333 39.50666666666666a6.186666666666666 6.186666666666666 0 0 1 0.12 5.506666666666666A8 8 0 0 1 56.81333333333333 49.33333333333333l-11 3.6933333333333334 -4.546666666666667 -10.666666666666666a8 8 0 0 1 0.15999999999999998 -6.359999999999999 6.2 6.2 0 0 1 4.199999999999999 -3.5733333333333333 4.866666666666666 4.866666666666666 0 0 1 5.786666666666666 3.4266666666666663L52.266666666666666 38.666666666666664l2.6666666666666665 -1.1866666666666665a4.866666666666666 4.866666666666666 0 0 1 6.3999999999999995 2.0266666666666664Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M9.333333333333332 35c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2 -1.4933333333333334 -2 -3.333333333333333 -2 -3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
15
|
+
<path d="M40 28.666666666666664a2.333333333333333 2.333333333333333 0 0 1 4.666666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M12.666666666666666 27a1.3333333333333333 1.3333333333333333 0 1 0 1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M28.68 37.33333333333333a2.6666666666666665 2.6666666666666665 0 0 1 1.3333333333333333 -0.36 2.6666666666666665 2.6666666666666665 0 1 1 0 5.333333333333333 2.6666666666666665 2.6666666666666665 0 1 1 0 5.333333333333333 2.6666666666666665 2.6666666666666665 0 0 1 -1.3333333333333333 -0.36" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-Savoring-Food--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Face Savoring Food Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="M13.333333333333332 30.333333333333332a2.333333333333333 2.333333333333333 0 0 1 4.666666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M46 30.333333333333332a2.333333333333333 2.333333333333333 0 0 1 4.666666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M21.479999999999997 39.33333333333333a15.866666666666667 15.866666666666667 0 0 0 21.066666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M41.33333333333333 40.31999999999999a16 16 0 0 1 -9.213333333333333 3.0133333333333328c4 3.3200000000000003 2.96 8.333333333333332 6.973333333333334 7.853333333333333 5.493333333333333 -0.6666666666666666 4.546666666666667 -7.799999999999999 2.2399999999999998 -10.866666666666667Z" fill="#ff6242" stroke-width="1"></path>
|
|
16
|
+
<path d="M39.78666666666666 51.05333333333333c4.706666666666666 -1.16 3.7466666666666666 -7.799999999999999 1.5333333333333332 -10.666666666666666a15.013333333333332 15.013333333333332 0 0 1 -1.9333333333333331 1.1866666666666665c1.44 2.5733333333333333 2.1066666666666665 7.066666666666666 0.39999999999999997 9.48Z" fill="#ff866e" stroke-width="1"></path>
|
|
17
|
+
<path d="M41.33333333333333 40.31999999999999a16 16 0 0 1 -9.213333333333333 3.0133333333333328c4 3.3200000000000003 2.96 8.333333333333332 6.973333333333334 7.853333333333333 5.493333333333333 -0.6666666666666666 4.546666666666667 -7.799999999999999 2.2399999999999998 -10.866666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-Screaming-In-Fear--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Face Screaming In Fear Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M12.666666666666666 35.33333333333333a3.333333333333333 2 0 1 0 6.666666666666666 0 3.333333333333333 2 0 1 0 -6.666666666666666 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="M25.333333333333332 42a6.666666666666666 10.666666666666666 0 1 0 13.333333333333332 0 6.666666666666666 10.666666666666666 0 1 0 -13.333333333333332 0Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M49.879999999999995 22.05333333333333c2.0533333333333332 3.3066666666666666 1.76 7.186666666666666 -0.6399999999999999 8.68s-6 0 -8 -3.2933333333333334 -1.76 -7.173333333333333 0.6399999999999999 -8.666666666666666 5.959999999999999 -0.026666666666666665 8 3.28Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M14.12 22.05333333333333c-2.0533333333333332 3.3066666666666666 -1.76 7.186666666666666 0.6399999999999999 8.68s6 0 8 -3.2933333333333334 1.76 -7.173333333333333 -0.6399999999999999 -8.666666666666666 -5.959999999999999 -0.026666666666666665 -8 3.28Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M19.68 60.199999999999996a1.3333333333333333 1.3333333333333333 0 0 1 -1.3333333333333333 1.1333333333333333H10.666666666666666a1.3333333333333333 1.3333333333333333 0 0 1 -1.0666666666666667 -0.5333333333333333 1.3333333333333333 1.3333333333333333 0 0 1 -0.21333333333333332 -1.1733333333333333c1.76 -6.173333333333333 -0.44 -16 -4 -22.133333333333333 -2 -3.493333333333333 2.3066666666666666 -3.413333333333333 4 -2.4266666666666667 11.946666666666667 8.093333333333334 10.893333333333333 21.226666666666667 10.293333333333333 25.133333333333333Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M44.32 60.199999999999996a1.3333333333333333 1.3333333333333333 0 0 0 1.3333333333333333 1.1333333333333333H53.33333333333333a1.3333333333333333 1.3333333333333333 0 0 0 1.0666666666666667 -0.5333333333333333 1.3333333333333333 1.3333333333333333 0 0 0 0.21333333333333332 -1.1733333333333333c-1.76 -6.173333333333333 0.44 -16 4 -22.133333333333333 2 -3.493333333333333 -2.3066666666666666 -3.413333333333333 -4 -2.4266666666666667 -11.946666666666667 8.093333333333334 -10.893333333333333 21.226666666666667 -10.293333333333333 25.133333333333333Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M32 52.666666666666664c2.3866666666666667 0 4.466666666666667 -2 5.653333333333333 -5C36.46666666666667 44.666666666666664 34.38666666666666 42.666666666666664 32 42.666666666666664s-4.466666666666667 2 -5.653333333333333 5C27.53333333333333 50.666666666666664 29.613333333333333 52.666666666666664 32 52.666666666666664Z" fill="#ff866e" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-Vomiting--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Face Vomiting Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M8.36 60.666666666666664a23.64 2 0 1 0 47.28 0 23.64 2 0 1 0 -47.28 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M7.76 26.24a24.24 24.24 0 1 0 48.48 0 24.24 24.24 0 1 0 -48.48 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M32 2a24.253333333333334 24.253333333333334 0 1 0 24.24 24.24A24.24 24.24 0 0 0 32 2Zm0 44.85333333333333a22.133333333333333 22.133333333333333 0 1 1 22.119999999999997 -22.119999999999997A22.119999999999997 22.119999999999997 0 0 1 32 46.85333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
8
|
+
<path d="M24.733333333333334 6.853333333333333a7.266666666666667 1.8133333333333335 0 1 0 14.533333333333333 0 7.266666666666667 1.8133333333333335 0 1 0 -14.533333333333333 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
9
|
+
<path d="M7.76 26.24a24.24 24.24 0 1 0 48.48 0 24.24 24.24 0 1 0 -48.48 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M49.57333333333333 32.306666666666665c0 1 -1.3333333333333333 1.8133333333333335 -3.0266666666666664 1.8133333333333335s-3.0266666666666664 -0.8133333333333332 -3.0266666666666664 -1.8133333333333335 1.3333333333333333 -1.8266666666666667 3.0266666666666664 -1.8266666666666667 3.0266666666666664 0.8266666666666667 3.0266666666666664 1.8266666666666667Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M14.426666666666666 32.306666666666665c0 1 1.3333333333333333 1.8133333333333335 3.0266666666666664 1.8133333333333335s3.0266666666666664 -0.8133333333333332 3.0266666666666664 -1.8133333333333335 -1.3333333333333333 -1.8266666666666667 -3.0266666666666664 -1.8266666666666667 -3.0266666666666664 0.8266666666666667 -3.0266666666666664 1.8266666666666667Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="M18.666666666666664 40.18666666666667a13.333333333333332 7.266666666666667 0 1 0 26.666666666666664 0 13.333333333333332 7.266666666666667 0 1 0 -26.666666666666664 0Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M45.04 19.773333333333333A14.333333333333332 14.333333333333332 0 0 1 37.45333333333333 16" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M18.96 19.773333333333333A14.333333333333332 14.333333333333332 0 0 0 26.546666666666667 16" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M46.86666666666666 22 42.97333333333333 24a1.2133333333333334 1.2133333333333334 0 0 0 0 2.173333333333333l3.893333333333333 1.9466666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="m17.133333333333333 22 3.893333333333333 2a1.2133333333333334 1.2133333333333334 0 0 1 0 2.173333333333333l-3.893333333333333 1.9466666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M44 51.773333333333326a4.173333333333333 4.173333333333333 0 0 1 2.013333333333333 0.41333333333333333 2.6666666666666665 2.6666666666666665 0 0 1 1.5066666666666664 1.7866666666666666c2.7733333333333334 1.24 3.493333333333333 2.6666666666666665 3.333333333333333 4.266666666666667s-1.3333333333333333 2.4266666666666667 -6.053333333333333 2.4266666666666667H19.28c-4.706666666666666 0 -5.92 -0.8133333333333332 -6.066666666666666 -2.4266666666666667s0.72 -3.333333333333333 4.32 -4.653333333333333a3.1999999999999997 3.1999999999999997 0 0 1 1.7466666666666666 -5.039999999999999c2.32 -0.3866666666666666 2.413333333333333 -2.4266666666666667 2.413333333333333 -5.453333333333333v-7.52a19.133333333333333 19.133333333333333 0 0 1 10.306666666666667 -2.6666666666666665 19.133333333333333 19.133333333333333 0 0 1 10.306666666666667 2.6666666666666665v8.733333333333333c0 2.173333333333333 0.2533333333333333 5.4399999999999995 1.6933333333333334 7.466666666666666Z" fill="#6dd627" stroke-width="1"></path>
|
|
18
|
+
<path d="M42.306666666666665 40.239999999999995v-4.666666666666666a19.133333333333333 19.133333333333333 0 0 0 -10.306666666666667 -2.6666666666666665 19.133333333333333 19.133333333333333 0 0 0 -10.306666666666667 2.6666666666666665v4.666666666666666a19.133333333333333 19.133333333333333 0 0 1 10.306666666666667 -2.6666666666666665 19.133333333333333 19.133333333333333 0 0 1 10.306666666666667 2.6666666666666665Z" fill="#46b000" stroke-width="1"></path>
|
|
19
|
+
<path d="M44 51.773333333333326a4.173333333333333 4.173333333333333 0 0 1 2.013333333333333 0.41333333333333333 2.6666666666666665 2.6666666666666665 0 0 1 1.5066666666666664 1.7866666666666666c2.7733333333333334 1.24 3.493333333333333 2.6666666666666665 3.333333333333333 4.266666666666667s-1.3333333333333333 2.4266666666666667 -6.053333333333333 2.4266666666666667H19.28c-4.706666666666666 0 -5.92 -0.8133333333333332 -6.066666666666666 -2.4266666666666667s0.72 -3.333333333333333 4.32 -4.653333333333333a3.1999999999999997 3.1999999999999997 0 0 1 1.7466666666666666 -5.039999999999999c2.32 -0.3866666666666666 2.413333333333333 -2.4266666666666667 2.413333333333333 -5.453333333333333v-7.52a19.133333333333333 19.133333333333333 0 0 1 10.306666666666667 -2.6666666666666665 19.133333333333333 19.133333333333333 0 0 1 10.306666666666667 2.6666666666666665v8.733333333333333c0 2.173333333333333 0.2533333333333333 5.4399999999999995 1.6933333333333334 7.466666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M37.45333333333333 40.666666666666664c0 4.693333333333333 0.88 10.146666666666667 3.0399999999999996 10.906666666666666s3.4799999999999995 -0.3333333333333333 5.453333333333333 0.6133333333333333a2.6666666666666665 2.6666666666666665 0 0 1 0 4.84" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
<path d="M21.69333333333333 43.093333333333334c0 3.0266666666666664 -0.09333333333333334 5.066666666666666 -2.413333333333333 5.453333333333333s-3.373333333333333 4.213333333333333 -1.2133333333333334 5.453333333333333a6.079999999999999 6.079999999999999 0 0 0 5.746666666666666 -0.13333333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
22
|
+
<path d="M25.946666666666665 44.30666666666666s-0.27999999999999997 7.76 -3.0399999999999996 10.906666666666666c-1.76 2.013333333333333 -1.92 5.453333333333333 0 5.453333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
23
|
+
<path d="M33.81333333333333 47.33333333333333s1.0666666666666667 6.666666666666666 2.4266666666666667 7.88 3.2666666666666666 0.6 4.8533333333333335 1.2133333333333334 1.8666666666666665 4.24 -0.6 4.24" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
24
|
+
<path d="M29.57333333333333 60.666666666666664a2.893333333333333 2.893333333333333 0 0 1 -1.2133333333333334 -3.6399999999999997" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
25
|
+
<path d="M52.44 48.666666666666664s0.5333333333333333 -2.2399999999999998 1.1733333333333333 -4.279999999999999A1.88 1.88 0 0 1 57.33333333333333 44.266666666666666c0.84 2.173333333333333 -1.7733333333333334 4.266666666666667 -4.893333333333333 4.3999999999999995Z" fill="#6dd627" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
26
|
+
<path d="M52.56 53.56a11.879999999999999 11.879999999999999 0 0 0 2.3866666666666667 -1.8666666666666665c1.1733333333333333 -1.3333333333333333 3.6933333333333334 0.7333333333333334 1.8666666666666665 2.4s-4.253333333333333 -0.5333333333333333 -4.253333333333333 -0.5333333333333333Z" fill="#6dd627" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
27
|
+
<path d="M10.453333333333333 53.85333333333333a16.613333333333333 16.613333333333333 0 0 1 -0.9866666666666666 -4.08c-0.13333333333333333 -2.44 -4.626666666666667 -2.4 -4.133333333333333 0.9733333333333333s5.119999999999999 3.1066666666666665 5.119999999999999 3.1066666666666665Z" fill="#6dd627" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
28
|
+
</svg>
|