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.
Files changed (356) hide show
  1. package/README.md +188 -0
  2. package/dist/ailogo.png +0 -0
  3. package/dist/cd-aichat.css +1 -0
  4. package/dist/cd-aichat.es.js +32223 -0
  5. package/dist/cd-aichat.umd.js +279 -0
  6. package/dist/index.css +1 -0
  7. package/package.json +61 -0
  8. package/src/ailogo.png +0 -0
  9. package/src/components/AiChat.test.js +538 -0
  10. package/src/components/AiChat.vue +2206 -0
  11. package/src/components/AiChatWidget.test.js +312 -0
  12. package/src/components/AiChatWidget.vue +963 -0
  13. package/src/components/BurnAfterReadDialog.test.js +121 -0
  14. package/src/components/BurnAfterReadDialog.vue +511 -0
  15. package/src/components/BurnAfterReadMessage.test.js +188 -0
  16. package/src/components/BurnAfterReadMessage.vue +193 -0
  17. package/src/components/BurnIndicator.test.js +101 -0
  18. package/src/components/BurnIndicator.vue +164 -0
  19. package/src/components/ChatWindow.vue +0 -0
  20. package/src/components/MentionList.vue +163 -0
  21. package/src/components/ResourceList.vue +194 -0
  22. package/src/components/RichTextEditor.vue +437 -0
  23. package/src/components/ScheduledSendDialog.vue +476 -0
  24. package/src/components/ScreenshotOverlay.vue +78 -0
  25. package/src/components/SendButtonGroup.test.js +174 -0
  26. package/src/components/SendButtonGroup.vue +166 -0
  27. package/src/components/UserDrawer.vue +0 -0
  28. package/src/components/screenshot/ScreenshotsBackground/getBoundsByPoints.ts +41 -0
  29. package/src/components/screenshot/ScreenshotsBackground/index.scss +27 -0
  30. package/src/components/screenshot/ScreenshotsBackground/index.tsx +145 -0
  31. package/src/components/screenshot/ScreenshotsButton/index.scss +29 -0
  32. package/src/components/screenshot/ScreenshotsButton/index.tsx +58 -0
  33. package/src/components/screenshot/ScreenshotsCanvas/getBoundsByPoints.ts +55 -0
  34. package/src/components/screenshot/ScreenshotsCanvas/getPoints.ts +60 -0
  35. package/src/components/screenshot/ScreenshotsCanvas/index.scss +84 -0
  36. package/src/components/screenshot/ScreenshotsCanvas/index.tsx +277 -0
  37. package/src/components/screenshot/ScreenshotsCanvas/isPointInDraw.ts +35 -0
  38. package/src/components/screenshot/ScreenshotsColor/index.scss +45 -0
  39. package/src/components/screenshot/ScreenshotsColor/index.tsx +39 -0
  40. package/src/components/screenshot/ScreenshotsContext.ts +56 -0
  41. package/src/components/screenshot/ScreenshotsMagnifier/index.scss +61 -0
  42. package/src/components/screenshot/ScreenshotsMagnifier/index.tsx +126 -0
  43. package/src/components/screenshot/ScreenshotsOperations/index.scss +25 -0
  44. package/src/components/screenshot/ScreenshotsOperations/index.tsx +118 -0
  45. package/src/components/screenshot/ScreenshotsOption/index.scss +50 -0
  46. package/src/components/screenshot/ScreenshotsOption/index.tsx +150 -0
  47. package/src/components/screenshot/ScreenshotsSize/index.scss +28 -0
  48. package/src/components/screenshot/ScreenshotsSize/index.tsx +41 -0
  49. package/src/components/screenshot/ScreenshotsSizeColor/index.scss +8 -0
  50. package/src/components/screenshot/ScreenshotsSizeColor/index.tsx +25 -0
  51. package/src/components/screenshot/ScreenshotsTextarea/calculateNodeSize.ts +117 -0
  52. package/src/components/screenshot/ScreenshotsTextarea/index.scss +19 -0
  53. package/src/components/screenshot/ScreenshotsTextarea/index.tsx +96 -0
  54. package/src/components/screenshot/composeImage.ts +57 -0
  55. package/src/components/screenshot/exports.ts +4 -0
  56. package/src/components/screenshot/hooks/useBounds.ts +35 -0
  57. package/src/components/screenshot/hooks/useCall.ts +17 -0
  58. package/src/components/screenshot/hooks/useCanvasContextRef.ts +8 -0
  59. package/src/components/screenshot/hooks/useCanvasMousedown.ts +13 -0
  60. package/src/components/screenshot/hooks/useCanvasMousemove.ts +13 -0
  61. package/src/components/screenshot/hooks/useCanvasMouseup.ts +13 -0
  62. package/src/components/screenshot/hooks/useCursor.ts +34 -0
  63. package/src/components/screenshot/hooks/useDispatcher.ts +8 -0
  64. package/src/components/screenshot/hooks/useDrawSelect.ts +16 -0
  65. package/src/components/screenshot/hooks/useEmiter.ts +61 -0
  66. package/src/components/screenshot/hooks/useHistory.ts +160 -0
  67. package/src/components/screenshot/hooks/useLang.ts +8 -0
  68. package/src/components/screenshot/hooks/useOperation.ts +37 -0
  69. package/src/components/screenshot/hooks/useReset.ts +26 -0
  70. package/src/components/screenshot/hooks/useStore.ts +8 -0
  71. package/src/components/screenshot/icons/iconfont.scss +88 -0
  72. package/src/components/screenshot/icons/iconfont.ttf +0 -0
  73. package/src/components/screenshot/icons/iconfont.woff +0 -0
  74. package/src/components/screenshot/icons/iconfont.woff2 +0 -0
  75. package/src/components/screenshot/index.tsx +169 -0
  76. package/src/components/screenshot/operations/Arrow/draw.ts +56 -0
  77. package/src/components/screenshot/operations/Arrow/index.tsx +193 -0
  78. package/src/components/screenshot/operations/Brush/draw.ts +45 -0
  79. package/src/components/screenshot/operations/Brush/index.tsx +169 -0
  80. package/src/components/screenshot/operations/Cancel/index.tsx +18 -0
  81. package/src/components/screenshot/operations/Ellipse/draw.ts +96 -0
  82. package/src/components/screenshot/operations/Ellipse/index.tsx +245 -0
  83. package/src/components/screenshot/operations/Mosaic/index.tsx +223 -0
  84. package/src/components/screenshot/operations/Ok/index.tsx +37 -0
  85. package/src/components/screenshot/operations/Pin/index.tsx +37 -0
  86. package/src/components/screenshot/operations/Rectangle/draw.ts +80 -0
  87. package/src/components/screenshot/operations/Rectangle/index.tsx +245 -0
  88. package/src/components/screenshot/operations/Redo/index.tsx +22 -0
  89. package/src/components/screenshot/operations/Save/index.tsx +37 -0
  90. package/src/components/screenshot/operations/Scan/index.tsx +46 -0
  91. package/src/components/screenshot/operations/Search/index.tsx +39 -0
  92. package/src/components/screenshot/operations/Text/index.tsx +307 -0
  93. package/src/components/screenshot/operations/Undo/index.tsx +22 -0
  94. package/src/components/screenshot/operations/index.ts +34 -0
  95. package/src/components/screenshot/operations/utils.ts +34 -0
  96. package/src/components/screenshot/screenshots.scss +13 -0
  97. package/src/components/screenshot/types.ts +53 -0
  98. package/src/components/screenshot/useGetLoadedImage.ts +29 -0
  99. package/src/components/screenshot/var.scss +107 -0
  100. package/src/components/screenshot/zh_CN.ts +37 -0
  101. package/src/emoji/100.gif +0 -0
  102. package/src/emoji/101.gif +0 -0
  103. package/src/emoji/102.gif +0 -0
  104. package/src/emoji/103.gif +0 -0
  105. package/src/emoji/104.gif +0 -0
  106. package/src/emoji/105.gif +0 -0
  107. package/src/emoji/106.gif +0 -0
  108. package/src/emoji/107.gif +0 -0
  109. package/src/emoji/108.gif +0 -0
  110. package/src/emoji/109.gif +0 -0
  111. package/src/emoji/110.gif +0 -0
  112. package/src/emoji/111.gif +0 -0
  113. package/src/emoji/112.gif +0 -0
  114. package/src/emoji/113.gif +0 -0
  115. package/src/emoji/114.gif +0 -0
  116. package/src/emoji/115.gif +0 -0
  117. package/src/emoji/116.gif +0 -0
  118. package/src/emoji/117.gif +0 -0
  119. package/src/emoji/118.gif +0 -0
  120. package/src/emoji/119.gif +0 -0
  121. package/src/emoji/120.gif +0 -0
  122. package/src/emoji/121.gif +0 -0
  123. package/src/emoji/122.gif +0 -0
  124. package/src/emoji/123.gif +0 -0
  125. package/src/emoji/124.gif +0 -0
  126. package/src/emoji/125.gif +0 -0
  127. package/src/emoji/126.gif +0 -0
  128. package/src/emoji/127.gif +0 -0
  129. package/src/emoji/128.gif +0 -0
  130. package/src/emoji/129.gif +0 -0
  131. package/src/emoji/130.gif +0 -0
  132. package/src/emoji/131.gif +0 -0
  133. package/src/emoji/132.gif +0 -0
  134. package/src/emoji/133.gif +0 -0
  135. package/src/emoji/134.gif +0 -0
  136. package/src/emoji/135.gif +0 -0
  137. package/src/emoji/136.gif +0 -0
  138. package/src/emoji/137.gif +0 -0
  139. package/src/emoji/138.gif +0 -0
  140. package/src/emoji/139.gif +0 -0
  141. package/src/emoji/140.gif +0 -0
  142. package/src/emoji/141.gif +0 -0
  143. package/src/emoji/142.gif +0 -0
  144. package/src/emoji/143.gif +0 -0
  145. package/src/emoji/144.gif +0 -0
  146. package/src/emoji/145.gif +0 -0
  147. package/src/emoji/146.gif +0 -0
  148. package/src/emoji/147.gif +0 -0
  149. package/src/emoji/148.gif +0 -0
  150. package/src/emoji/149.gif +0 -0
  151. package/src/emoji/150.gif +0 -0
  152. package/src/emoji/151.gif +0 -0
  153. package/src/emoji/152.gif +0 -0
  154. package/src/emoji/153.gif +0 -0
  155. package/src/emoji/154.gif +0 -0
  156. package/src/emoji/155.gif +0 -0
  157. package/src/emoji/156.gif +0 -0
  158. package/src/emoji/157.gif +0 -0
  159. package/src/emoji/158.gif +0 -0
  160. package/src/emoji/159.gif +0 -0
  161. package/src/emoji/160.gif +0 -0
  162. package/src/emoji/161.gif +0 -0
  163. package/src/emoji/162.gif +0 -0
  164. package/src/emoji/163.gif +0 -0
  165. package/src/emoji/164.gif +0 -0
  166. package/src/emoji/165.gif +0 -0
  167. package/src/emoji/166.gif +0 -0
  168. package/src/emoji/167.gif +0 -0
  169. package/src/emoji/168.gif +0 -0
  170. package/src/emoji/169.gif +0 -0
  171. package/src/emoji/170.gif +0 -0
  172. package/src/emoji/171.gif +0 -0
  173. package/src/emoji/172.gif +0 -0
  174. package/src/emoji/173.gif +0 -0
  175. package/src/emoji/174.gif +0 -0
  176. package/src/emoji/175.gif +0 -0
  177. package/src/emoji/176.gif +0 -0
  178. package/src/emoji/177.gif +0 -0
  179. package/src/emoji/178.gif +0 -0
  180. package/src/emoji/179.gif +0 -0
  181. package/src/emoji/180.gif +0 -0
  182. package/src/emoji/181.gif +0 -0
  183. package/src/emoji/182.gif +0 -0
  184. package/src/emoji/183.gif +0 -0
  185. package/src/emoji/184.gif +0 -0
  186. package/src/emoji/185.gif +0 -0
  187. package/src/emoji/186.gif +0 -0
  188. package/src/emoji/187.gif +0 -0
  189. package/src/emoji/188.gif +0 -0
  190. package/src/emoji/189.gif +0 -0
  191. package/src/emoji/190.gif +0 -0
  192. package/src/emoji/191.gif +0 -0
  193. package/src/emoji/192.gif +0 -0
  194. package/src/emoji/193.gif +0 -0
  195. package/src/emoji/194.gif +0 -0
  196. package/src/emoji/195.gif +0 -0
  197. package/src/emoji/196.gif +0 -0
  198. package/src/emoji/197.gif +0 -0
  199. package/src/emoji/198.gif +0 -0
  200. package/src/emoji/199.gif +0 -0
  201. package/src/emoji/200.png +0 -0
  202. package/src/emoji/201.png +0 -0
  203. package/src/emoji/202.png +0 -0
  204. package/src/emoji/203.png +0 -0
  205. package/src/emoji/204.png +0 -0
  206. package/src/emoji/205.png +0 -0
  207. package/src/emoji/206.png +0 -0
  208. package/src/emoji/207.png +0 -0
  209. package/src/emoji/208.png +0 -0
  210. package/src/emoji/209.png +0 -0
  211. package/src/emoji/210.png +0 -0
  212. package/src/emoji/211.png +0 -0
  213. package/src/emoji/212.png +0 -0
  214. package/src/emoji/213.png +0 -0
  215. package/src/emoji/214.png +0 -0
  216. package/src/emoji/215.png +0 -0
  217. package/src/emoji/216.png +0 -0
  218. package/src/emoji/217.png +0 -0
  219. package/src/emoji/218.png +0 -0
  220. package/src/emoji/219.png +0 -0
  221. package/src/emoji2/101--Streamline-The-Team.png +0 -0
  222. package/src/emoji2/128--Streamline-The-Team.png +0 -0
  223. package/src/emoji2/134--Streamline-The-Team.png +0 -0
  224. package/src/emoji2/173--Streamline-The-Team.png +0 -0
  225. package/src/emoji2/Airplane--Streamline-Emoji.svg +24 -0
  226. package/src/emoji2/Alien--Streamline-Emoji.svg +21 -0
  227. package/src/emoji2/Amazed-Face--Streamline-Emoji.svg +16 -0
  228. package/src/emoji2/Amusing-Face--Streamline-Emoji.svg +20 -0
  229. package/src/emoji2/Anguished-Face--Streamline-Emoji.svg +19 -0
  230. package/src/emoji2/Anxious-Face--Streamline-Emoji.svg +17 -0
  231. package/src/emoji2/Astonished-Face--Streamline-Emoji.svg +20 -0
  232. package/src/emoji2/Backhand-Index-Pointing-Down-1--Streamline-Emoji.svg +12 -0
  233. package/src/emoji2/Backhand-Index-Pointing-Left-1--Streamline-Emoji.svg +13 -0
  234. package/src/emoji2/Backhand-Index-Pointing-Right-1--Streamline-Emoji.svg +13 -0
  235. package/src/emoji2/Backhand-Index-Pointing-Up-1--Streamline-Emoji.svg +14 -0
  236. package/src/emoji2/Bar-Chart--Streamline-Emoji.svg +22 -0
  237. package/src/emoji2/Beaming-Face-With-Smiling-Eyes--Streamline-Emoji.svg +20 -0
  238. package/src/emoji2/Boy-1--Streamline-Emoji.svg +17 -0
  239. package/src/emoji2/Boy-2--Streamline-Emoji.svg +17 -0
  240. package/src/emoji2/Boy-3--Streamline-Emoji.svg +17 -0
  241. package/src/emoji2/Broken-Heart--Streamline-Emoji.svg +12 -0
  242. package/src/emoji2/Clapping-Hands-1--Streamline-Emoji.svg +23 -0
  243. package/src/emoji2/Clinking-Glasses-2--Streamline-Emoji.svg +43 -0
  244. package/src/emoji2/Confounded-Face--Streamline-Emoji.svg +17 -0
  245. package/src/emoji2/Confused-Face--Streamline-Emoji.svg +15 -0
  246. package/src/emoji2/Construction-Worker--Streamline-Emoji.svg +21 -0
  247. package/src/emoji2/Couple-With-Heart-Woman-Man-1--Streamline-Emoji.svg +40 -0
  248. package/src/emoji2/Couple-With-Heart-Woman-Man-2--Streamline-Emoji.svg +40 -0
  249. package/src/emoji2/Cowboy-Hat-Face--Streamline-Emoji.svg +22 -0
  250. package/src/emoji2/Crazy-Face--Streamline-Emoji.svg +25 -0
  251. package/src/emoji2/Crossed-Fingers-1--Streamline-Emoji.svg +25 -0
  252. package/src/emoji2/Crown--Streamline-Emoji.svg +35 -0
  253. package/src/emoji2/Crying-Face--Streamline-Emoji.svg +26 -0
  254. package/src/emoji2/Delivery-Truck--Streamline-Emoji.svg +31 -0
  255. package/src/emoji2/Determined-Face--Streamline-Emoji.svg +25 -0
  256. package/src/emoji2/Disappointed-Face--Streamline-Emoji.svg +15 -0
  257. package/src/emoji2/Dizzy-Face--Streamline-Emoji.svg +20 -0
  258. package/src/emoji2/Downcast-Face-With-Sweat--Streamline-Emoji.svg +18 -0
  259. package/src/emoji2/Drooling-Face-1--Streamline-Emoji.svg +19 -0
  260. package/src/emoji2/Drooling-Face-2--Streamline-Emoji.svg +18 -0
  261. package/src/emoji2/Ear--Streamline-Emoji.svg +14 -0
  262. package/src/emoji2/Exclamation-Mark--Streamline-Emoji.svg +12 -0
  263. package/src/emoji2/Exploding-Head--Streamline-Emoji.svg +24 -0
  264. package/src/emoji2/Expressionless-Face--Streamline-Emoji.svg +15 -0
  265. package/src/emoji2/Face-Blowing-A-Kiss--Streamline-Emoji.svg +18 -0
  266. package/src/emoji2/Face-Savoring-Food--Streamline-Emoji.svg +18 -0
  267. package/src/emoji2/Face-Screaming-In-Fear--Streamline-Emoji.svg +18 -0
  268. package/src/emoji2/Face-Vomiting--Streamline-Emoji.svg +28 -0
  269. package/src/emoji2/Face-With-Head-Bandage--Streamline-Emoji.svg +25 -0
  270. package/src/emoji2/Face-With-Medical-Mask--Streamline-Emoji.svg +23 -0
  271. package/src/emoji2/Face-With-Monocle--Streamline-Emoji.svg +26 -0
  272. package/src/emoji2/Face-With-Raised-Eyebrow--Streamline-Emoji.svg +17 -0
  273. package/src/emoji2/Face-With-Rolling-Eyes--Streamline-Emoji.svg +17 -0
  274. package/src/emoji2/Face-With-Steam-From-Nose--Streamline-Emoji.svg +19 -0
  275. package/src/emoji2/Face-With-Symbols-On-Mouth--Streamline-Emoji.svg +22 -0
  276. package/src/emoji2/Face-With-Tears-Of-Joy--Streamline-Emoji.svg +34 -0
  277. package/src/emoji2/Face-With-Thermometer--Streamline-Emoji.svg +31 -0
  278. package/src/emoji2/Face-With-Tongue--Streamline-Emoji.svg +18 -0
  279. package/src/emoji2/Face-Without-Mouth--Streamline-Emoji.svg +14 -0
  280. package/src/emoji2/Fearful-Face--Streamline-Emoji.svg +18 -0
  281. package/src/emoji2/Flexed-Biceps-1--Streamline-Emoji.svg +13 -0
  282. package/src/emoji2/Flushed-Face--Streamline-Emoji.svg +19 -0
  283. package/src/emoji2/Folded-Hands-1--Streamline-Emoji.svg +29 -0
  284. package/src/emoji2/Frowning-Face--Streamline-Emoji.svg +15 -0
  285. package/src/emoji2/Fuel-Pump--Streamline-Emoji.svg +30 -0
  286. package/src/emoji2/Girl-1--Streamline-Emoji.svg +23 -0
  287. package/src/emoji2/Glasses-1--Streamline-Emoji.svg +27 -0
  288. package/src/emoji2/Grimacing-Face--Streamline-Emoji.svg +19 -0
  289. package/src/emoji2/Grinning-Cat-Face--Streamline-Emoji.svg +32 -0
  290. package/src/emoji2/Grinning-Face--Streamline-Emoji.svg +16 -0
  291. package/src/emoji2/Grinning-Face-With-Sweat--Streamline-Emoji.svg +19 -0
  292. package/src/emoji2/Grinning-Squinting-Face--Streamline-Emoji.svg +16 -0
  293. package/src/emoji2/Hand-With-Fingers-Splayed-1--Streamline-Emoji.svg +14 -0
  294. package/src/emoji2/Heart-Suit--Streamline-Emoji.svg +9 -0
  295. package/src/emoji2/Hushed-Face-1--Streamline-Emoji.svg +17 -0
  296. package/src/emoji2/Hushed-Face-2--Streamline-Emoji.svg +15 -0
  297. package/src/emoji2/Index-Pointing-Up-1--Streamline-Emoji.svg +17 -0
  298. package/src/emoji2/Kissing-Face-With-Closed-Eyes--Streamline-Emoji.svg +18 -0
  299. package/src/emoji2/Loudly-Crying-Face--Streamline-Emoji.svg +16 -0
  300. package/src/emoji2/Lying-Face--Streamline-Emoji.svg +15 -0
  301. package/src/emoji2/Man-1--Streamline-Emoji.svg +17 -0
  302. package/src/emoji2/Man-Facepalming-1--Streamline-Emoji.svg +21 -0
  303. package/src/emoji2/Man-Gesturing-No-1--Streamline-Emoji.svg +34 -0
  304. package/src/emoji2/Man-Gesturing-Ok-1--Streamline-Emoji.svg +25 -0
  305. package/src/emoji2/Man-Health-Worker-1--Streamline-Emoji.svg +41 -0
  306. package/src/emoji2/Man-Raising-Hand-1--Streamline-Emoji.svg +26 -0
  307. package/src/emoji2/Man-Shrugging-1--Streamline-Emoji.svg +31 -0
  308. package/src/emoji2/Money-Mouth-Face-2--Streamline-Emoji.svg +30 -0
  309. package/src/emoji2/Mouth--Streamline-Emoji.svg +12 -0
  310. package/src/emoji2/Nauseated-Face-2--Streamline-Emoji.svg +19 -0
  311. package/src/emoji2/Neutral-Face--Streamline-Emoji.svg +15 -0
  312. package/src/emoji2/Ok-Hand-1--Streamline-Emoji.svg +14 -0
  313. package/src/emoji2/Old-Man-1--Streamline-Emoji.svg +27 -0
  314. package/src/emoji2/Old-Woman-1--Streamline-Emoji.svg +23 -0
  315. package/src/emoji2/Oncoming-Fist-1--Streamline-Emoji.svg +15 -0
  316. package/src/emoji2/Person-Wearing-Turban-2--Streamline-Emoji.svg +20 -0
  317. package/src/emoji2/Pile-Of-Poo--Streamline-Emoji.svg +15 -0
  318. package/src/emoji2/Police-Car-Light--Streamline-Emoji.svg +26 -0
  319. package/src/emoji2/Rocket--Streamline-Emoji.svg +32 -0
  320. package/src/emoji2/Sailboat--Streamline-Emoji.svg +18 -0
  321. package/src/emoji2/Shaved-Ice--Streamline-Emoji.svg +21 -0
  322. package/src/emoji2/Shortcake-2--Streamline-Emoji.svg +18 -0
  323. package/src/emoji2/Shushing-Face--Streamline-Emoji.svg +21 -0
  324. package/src/emoji2/Sign-Of-The-Horns-1--Streamline-Emoji.svg +19 -0
  325. package/src/emoji2/Sleeping-Face--Streamline-Emoji.svg +21 -0
  326. package/src/emoji2/Slightly-Smiling-Face--Streamline-Emoji.svg +15 -0
  327. package/src/emoji2/Smiling-Face-With-Halo--Streamline-Emoji.svg +20 -0
  328. package/src/emoji2/Smiling-Face-With-Heart-Eyes--Streamline-Emoji.svg +21 -0
  329. package/src/emoji2/Smirking-Face--Streamline-Emoji.svg +17 -0
  330. package/src/emoji2/Sun-With-Face--Streamline-Emoji.svg +24 -0
  331. package/src/emoji2/Thumbs-Down-1--Streamline-Emoji.svg +20 -0
  332. package/src/emoji2/Thumbs-Up-1--Streamline-Emoji.svg +19 -0
  333. package/src/emoji2/Winking-Face--Streamline-Emoji.svg +18 -0
  334. package/src/emoji2/Woman-Gesturing-No-1--Streamline-Emoji.svg +34 -0
  335. package/src/emoji2/Woman-Gesturing-Ok-2--Streamline-Emoji.svg +25 -0
  336. package/src/emoji2/Woman-Raising-Hand-1--Streamline-Emoji.svg +26 -0
  337. package/src/emoji2/Womans-Sandal--Streamline-Emoji.svg +13 -0
  338. package/src/emoji2/Worried-Face--Streamline-Emoji.svg +17 -0
  339. package/src/emoji2/Writing-Hand-1--Streamline-Emoji.svg +17 -0
  340. package/src/emoji2/Zipper-Mouth-Face--Streamline-Emoji.svg +21 -0
  341. package/src/index.js +19 -0
  342. package/src/services/burn-after-read-service.js +313 -0
  343. package/src/services/burn-after-read-service.test.js +325 -0
  344. package/src/services/dify-api.js +338 -0
  345. package/src/services/dify-api.test.js +376 -0
  346. package/src/services/scheduled-send-service.js +311 -0
  347. package/src/services/scheduled-send-service.test.js +317 -0
  348. package/src/styles/index.css +2368 -0
  349. package/src/utils/emoji.js +125 -0
  350. package/src/utils/emojiData.js +267 -0
  351. package/src/utils/eventEmitter.js +114 -0
  352. package/src/utils/state.js +224 -0
  353. package/src/utils/state.test.js +198 -0
  354. package/src/utils/storage.js +122 -0
  355. package/src/utils/storage.test.js +162 -0
  356. 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="Face-With-Head-Bandage--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Face With Head Bandage Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M6.013333333333333 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="M24.68 7a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
7
+ <path d="M32.68 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 57.01333333333333 26.666666666666664a24.333333333333332 24.333333333333332 0 0 1 -24.333333333333332 24.333333333333332Z" fill="#ebcb00" stroke-width="1"></path>
8
+ <path d="M11.346666666666666 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>
9
+ <path d="M6.013333333333333 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>
10
+ <path d="M52 35c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.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>
11
+ <path d="M13.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>
12
+ <path d="M20 28.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="M45.33333333333333 28.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="M47.18666666666667 22.546666666666667a15.239999999999998 15.239999999999998 0 0 1 -4.52 -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>
15
+ <path d="M26.013333333333335 45a12 12 0 0 1 13.333333333333332 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-width="1"></path>
16
+ <path d="M4.653333333333333 28.959999999999997a1.3333333333333333 1.3333333333333333 0 0 0 0.6 1.1066666666666665 1.3333333333333333 1.3333333333333333 0 0 0 1.2666666666666666 0.10666666666666666L51.626666666666665 10.413333333333332a1.3333333333333333 1.3333333333333333 0 0 0 0.7866666666666666 -1 1.3333333333333333 1.3333333333333333 0 0 0 -0.41333333333333333 -1.2 34.36 34.36 0 0 0 -5.653333333333333 -4.359999999999999 1.3333333333333333 1.3333333333333333 0 0 0 -1.2 -0.06666666666666667L6.04 20.919999999999998a1.3333333333333333 1.3333333333333333 0 0 0 -0.7599999999999999 0.9199999999999999 33.86666666666666 33.86666666666666 0 0 0 -0.6266666666666666 7.119999999999999Z" fill="#f0f0f0" stroke-width="1"></path>
17
+ <path d="m35.86666666666666 10.333333333333332 8.879999999999999 -3.893333333333333a1.3333333333333333 1.3333333333333333 0 0 1 1.2 0 33.33333333333333 33.33333333333333 0 0 1 5.039999999999999 3.8266666666666667h0.7866666666666666a1.3333333333333333 1.3333333333333333 0 0 0 0.6399999999999999 -0.9199999999999999 1.3333333333333333 1.3333333333333333 0 0 0 -0.41333333333333333 -1.2 34.36 34.36 0 0 0 -5.653333333333333 -4.359999999999999 1.3333333333333333 1.3333333333333333 0 0 0 -1.2 -0.06666666666666667l-14.933333333333332 6.613333333333333Z" fill="#ffffff" stroke-width="1"></path>
18
+ <path d="m25.93333333333333 21.666666666666664 6.093333333333334 -2.6666666666666665H10.426666666666666l-4.386666666666667 1.92a1.3333333333333333 1.3333333333333333 0 0 0 -0.6799999999999999 0.7466666666666667Z" fill="#e0e0e0" stroke-width="1"></path>
19
+ <path d="M6.053333333333333 21.52a1.04 1.04 0 0 0 -0.24 0.14666666666666667" fill="#e0e0e0" stroke-width="1"></path>
20
+ <path d="M4.653333333333333 28.959999999999997a1.3333333333333333 1.3333333333333333 0 0 0 0.6 1.1066666666666665 1.3333333333333333 1.3333333333333333 0 0 0 1.2666666666666666 0.10666666666666666L51.626666666666665 10.413333333333332a1.3333333333333333 1.3333333333333333 0 0 0 0.7866666666666666 -1 1.3333333333333333 1.3333333333333333 0 0 0 -0.41333333333333333 -1.2 34.36 34.36 0 0 0 -5.653333333333333 -4.359999999999999 1.3333333333333333 1.3333333333333333 0 0 0 -1.2 -0.06666666666666667L6.04 20.919999999999998a1.3333333333333333 1.3333333333333333 0 0 0 -0.7599999999999999 0.9199999999999999 33.86666666666666 33.86666666666666 0 0 0 -0.6266666666666666 7.119999999999999Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
21
+ <path d="M52.413333333333334 9.426666666666666a1.3333333333333333 1.3333333333333333 0 0 1 -0.7866666666666666 0.9866666666666666L32.68 18.666666666666664l-5.933333333333334 2.6666666666666665 -20.226666666666667 8.84a1.3333333333333333 1.3333333333333333 0 0 1 -1.8666666666666665 -1.2266666666666666A33.906666666666666 33.906666666666666 0 0 1 5.333333333333333 21.839999999999996a1.3333333333333333 1.3333333333333333 0 0 1 0.4933333333333333 -0.7733333333333332 0.6933333333333334 0.6933333333333334 0 0 1 0.24 -0.13333333333333333h0l5.586666666666667 -2.453333333333333 33.519999999999996 -14.666666666666666a1.3333333333333333 1.3333333333333333 0 0 1 1.2133333333333334 0.06666666666666667A36.22666666666667 36.22666666666667 0 0 1 52 8.213333333333333a1.3333333333333333 1.3333333333333333 0 0 1 0.41333333333333333 1.2133333333333334Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
22
+ <path d="M6.84 17.133333333333333a1.3333333333333333 1.3333333333333333 0 0 0 1.2266666666666666 1.8666666666666665H57.33333333333333a1.3333333333333333 1.3333333333333333 0 0 0 1.1199999999999999 -0.6 1.3333333333333333 1.3333333333333333 0 0 0 0.10666666666666666 -1.3333333333333333 34.06666666666666 34.06666666666666 0 0 0 -3.4266666666666663 -6.253333333333334 1.3333333333333333 1.3333333333333333 0 0 0 -1.08 -0.5466666666666666H11.333333333333332a1.3333333333333333 1.3333333333333333 0 0 0 -1.0666666666666667 0.5466666666666666 34.06666666666666 34.06666666666666 0 0 0 -3.4266666666666663 6.32Z" fill="#f0f0f0" stroke-width="1"></path>
23
+ <path d="M56.84 13.666666666666666a24 24 0 0 0 -1.7333333333333334 -2.786666666666666 1.3333333333333333 1.3333333333333333 0 0 0 -1.08 -0.5466666666666666H11.333333333333332a1.3333333333333333 1.3333333333333333 0 0 0 -1.0666666666666667 0.5466666666666666 24 24 0 0 0 -1.7333333333333334 2.786666666666666Z" fill="#ffffff" stroke-width="1"></path>
24
+ <path d="M6.84 17.133333333333333a1.3333333333333333 1.3333333333333333 0 0 0 1.2266666666666666 1.8666666666666665H57.33333333333333a1.3333333333333333 1.3333333333333333 0 0 0 1.1199999999999999 -0.6 1.3333333333333333 1.3333333333333333 0 0 0 0.10666666666666666 -1.3333333333333333 34.06666666666666 34.06666666666666 0 0 0 -3.4266666666666663 -6.253333333333334 1.3333333333333333 1.3333333333333333 0 0 0 -1.08 -0.5466666666666666H11.333333333333332a1.3333333333333333 1.3333333333333333 0 0 0 -1.0666666666666667 0.5466666666666666 34.06666666666666 34.06666666666666 0 0 0 -3.4266666666666663 6.32Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
25
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-With-Medical-Mask--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Face With Medical Mask Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M5.333333333333333 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="M32 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 56.33333333333333 26.666666666666664 24.333333333333332 24.333333333333332 0 0 1 32 51Z" fill="#ebcb00" stroke-width="1"></path>
7
+ <path d="M24 7a8 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.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>
9
+ <path d="M51.33333333333333 35c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.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>
10
+ <path d="M12.666666666666666 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>
11
+ <path d="M17.333333333333332 50.666666666666664a26.666666666666664 26.666666666666664 0 0 0 29.333333333333332 0v-11.599999999999998s-8 -3.333333333333333 -14.666666666666666 -3.333333333333333 -14.666666666666666 3.333333333333333 -14.666666666666666 3.333333333333333Z" fill="#8cffe4" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="M32 35.666666666666664c-6.666666666666666 0 -14.666666666666666 3.333333333333333 -14.666666666666666 3.333333333333333v3.333333333333333s8 -3.333333333333333 14.666666666666666 -3.333333333333333 14.666666666666666 3.333333333333333 14.666666666666666 3.333333333333333v-3.333333333333333s-8 -3.333333333333333 -14.666666666666666 -3.333333333333333Z" fill="#e5fff9" stroke-width="1"></path>
13
+ <path d="M17.333333333333332 50.666666666666664a26.666666666666664 26.666666666666664 0 0 0 29.333333333333332 0v-11.599999999999998s-8 -3.333333333333333 -14.666666666666666 -3.333333333333333 -14.666666666666666 3.333333333333333 -14.666666666666666 3.333333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="M5.333333333333333 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>
15
+ <path d="m17.333333333333332 39 -12 -9.333333333333332" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="m46.666666666666664 39 12 -9.333333333333332" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="M46.666666666666664 44.33333333333333a10.253333333333334 10.253333333333334 0 0 0 5.333333333333333 1.3333333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
18
+ <path d="M17.333333333333332 44.33333333333333a10.253333333333334 10.253333333333334 0 0 1 -5.333333333333333 1.3333333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
19
+ <path d="m22 27.666666666666664 -7.333333333333333 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
20
+ <path d="m49.33333333333333 27.666666666666664 -7.333333333333333 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
21
+ <path d="M17.333333333333332 21.21333333333333a15.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>
22
+ <path d="M46.666666666666664 21.21333333333333a15.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>
23
+ </svg>
@@ -0,0 +1,26 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-With-Monocle--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Face With Monocle 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 23.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="M56.666666666666664 18.666666666666664H58.666666666666664a2 2 0 0 1 2 2V22.666666666666664a2 2 0 0 1 -2 2h-2V18.666666666666664Z" fill="#87898c" stroke-width="1"></path>
15
+ <path d="M58.666666666666664 18.666666666666664h-2v2H58.666666666666664a2 2 0 0 1 2 2v-2A2 2 0 0 0 58.666666666666664 18.666666666666664Z" fill="#bdbec0" stroke-width="1"></path>
16
+ <path d="M56.666666666666664 18.666666666666664H58.666666666666664a2 2 0 0 1 2 2V22.666666666666664a2 2 0 0 1 -2 2h-2l0 0V18.666666666666664l0 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="M35.33333333333333 22a11.333333333333332 11.333333333333332 0 1 0 22.666666666666664 0 11.333333333333332 11.333333333333332 0 1 0 -22.666666666666664 0Z" fill="#87898c" stroke-width="1"></path>
18
+ <path d="M46.666666666666664 13.333333333333332a11.333333333333332 11.333333333333332 0 0 1 11.253333333333332 10c0 -0.44 0.07999999999999999 -0.88 0.07999999999999999 -1.3333333333333333a11.333333333333332 11.333333333333332 0 0 0 -22.666666666666664 0c0 0.45333333333333337 0 0.8933333333333333 0.07999999999999999 1.3333333333333333A11.333333333333332 11.333333333333332 0 0 1 46.666666666666664 13.333333333333332Z" fill="#bdbec0" stroke-width="1"></path>
19
+ <path d="M35.33333333333333 22a11.333333333333332 11.333333333333332 0 1 0 22.666666666666664 0 11.333333333333332 11.333333333333332 0 1 0 -22.666666666666664 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
20
+ <path d="M38 22a8.666666666666666 8.666666666666666 0 1 0 17.333333333333332 0 8.666666666666666 8.666666666666666 0 1 0 -17.333333333333332 0Z" fill="#00b8f0" stroke-width="1"></path>
21
+ <path d="M46.666666666666664 13.333333333333332a8.666666666666666 8.666666666666666 0 0 0 -7.533333333333333 12.946666666666667l10.426666666666666 -12.44A8.68 8.68 0 0 0 46.666666666666664 13.333333333333332Z" fill="#4acfff" stroke-width="1"></path>
22
+ <path d="M38 22a8.666666666666666 8.666666666666666 0 1 0 17.333333333333332 0 8.666666666666666 8.666666666666666 0 1 0 -17.333333333333332 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
23
+ <path d="M60.666666666666664 21.333333333333332s2 0.07999999999999999 2 2.6666666666666665v22.666666666666664a4.96 4.96 0 0 1 -5.333333333333333 5.333333333333333 4.906666666666666 4.906666666666666 0 0 1 -5.333333333333333 -5.333333333333333v-0.36" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
24
+ <path d="M28 38.16a8.813333333333333 8.813333333333333 0 0 1 4 -0.8266666666666667 8.813333333333333 8.813333333333333 0 0 1 4 0.8266666666666667" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
25
+ <path d="M14.666666666666666 20s0.5599999999999999 -3.333333333333333 3.333333333333333 -3.333333333333333S21.333333333333332 20 21.333333333333332 20" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
26
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-With-Raised-Eyebrow--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Face With Raised Eyebrow 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 26c0 1.1066666666666665 0.6 2 1.3333333333333333 2s1.3333333333333333 -0.8933333333333333 1.3333333333333333 -2 -0.6 -2 -1.3333333333333333 -2 -1.3333333333333333 0.8933333333333333 -1.3333333333333333 2Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="m24.666666666666664 36.666666666666664 14.666666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M42.44 19.333333333333332a4.1866666666666665 4.1866666666666665 0 0 1 3.5599999999999996 -2.6666666666666665 4.1866666666666665 4.1866666666666665 0 0 1 3.5599999999999996 2.6666666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="M14.093333333333334 22.77333333333333a8.306666666666667 8.306666666666667 0 0 0 3.8533333333333335 1.2266666666666666 8.413333333333332 8.413333333333332 0 0 0 4.066666666666666 -0.09333333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-With-Rolling-Eyes--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Face With Rolling Eyes 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="M24.666666666666664 26.666666666666664a4.666666666666666 4.666666666666666 0 1 1 -4.666666666666666 -4.666666666666666 4.666666666666666 4.666666666666666 0 0 1 4.666666666666666 4.666666666666666Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="M48.666666666666664 26.666666666666664a4.666666666666666 4.666666666666666 0 1 1 -4.666666666666666 -4.666666666666666 4.666666666666666 4.666666666666666 0 0 1 4.666666666666666 4.666666666666666Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="M13.333333333333332 35.33333333333333c0 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>
13
+ <path d="M50.666666666666664 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.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>
14
+ <path d="M18.666666666666664 24.666666666666664a1.3333333333333333 1.3333333333333333 0 1 0 2.6666666666666665 0 1.3333333333333333 1.3333333333333333 0 1 0 -2.6666666666666665 0Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M42.666666666666664 24.666666666666664a1.3333333333333333 1.3333333333333333 0 1 0 2.6666666666666665 0 1.3333333333333333 1.3333333333333333 0 1 0 -2.6666666666666665 0Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="m28 42.666666666666664 8 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ </svg>
@@ -0,0 +1,19 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-With-Steam-From-Nose--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Face With Steam From Nose 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 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>
10
+ <path d="M14.333333333333332 20.666666666666664a15.239999999999998 15.239999999999998 0 0 1 4.493333333333333 1.4666666666666668A15.133333333333333 15.133333333333333 0 0 1 22.666666666666664 24.88" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="M49.666666666666664 20.666666666666664A15.533333333333333 15.533333333333333 0 0 0 41.33333333333333 24.88" 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 42a12 12 0 0 1 13.333333333333332 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-width="1"></path>
15
+ <path d="M50.666666666666664 27.333333333333332a2.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="M18 27.333333333333332a2.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="M55.58666666666666 46.48a3.493333333333333 3.493333333333333 0 0 0 -4.72 -1.4533333333333334 3.3999999999999995 3.3999999999999995 0 0 0 -1.1333333333333333 0.9866666666666666L41.33333333333333 34.666666666666664a1.5599999999999998 1.5599999999999998 0 0 0 -2.6666666666666665 1.44l4.7333333333333325 13.333333333333332a3.3999999999999995 3.3999999999999995 0 0 0 -1.4533333333333334 0.39999999999999997A3.493333333333333 3.493333333333333 0 0 0 45.093333333333334 56a5.3999999999999995 5.3999999999999995 0 0 0 9.173333333333332 -4.866666666666666 3.493333333333333 3.493333333333333 0 0 0 1.3199999999999998 -4.653333333333333Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
18
+ <path d="M8.413333333333332 46.48a3.493333333333333 3.493333333333333 0 0 1 4.72 -1.4533333333333334 3.3999999999999995 3.3999999999999995 0 0 1 1.1333333333333333 0.9866666666666666L22.666666666666664 34.666666666666664a1.5599999999999998 1.5599999999999998 0 0 1 2.6666666666666665 1.44L20.613333333333333 49.33333333333333a3.3999999999999995 3.3999999999999995 0 0 1 1.4533333333333334 0.39999999999999997 3.493333333333333 3.493333333333333 0 0 1 -3.16 6.266666666666667 5.3999999999999995 5.3999999999999995 0 0 1 -9.173333333333332 -4.866666666666666 3.493333333333333 3.493333333333333 0 0 1 -1.3199999999999998 -4.653333333333333Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
19
+ </svg>
@@ -0,0 +1,22 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-With-Symbols-On-Mouth--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Face With Symbols On Mouth Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M5.333333333333333 28.493333333333332a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ff6242" stroke-width="1"></path>
6
+ <path d="M32 1.8266666666666667a26.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.16Z" fill="#e04122" stroke-width="1"></path>
7
+ <path d="M24 7.16a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#ff866e" stroke-width="1"></path>
8
+ <path d="M12 60.17333333333333a20 2 0 1 0 40 0 20 2 0 1 0 -40 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
9
+ <path d="M5.333333333333333 28.493333333333332a26.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="M52.666666666666664 32.49333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2 1.4933333333333334 -2 3.333333333333333 -2 3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#e04122" stroke-width="1"></path>
11
+ <path d="M11.333333333333332 32.49333333333333c0 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="#e04122" stroke-width="1"></path>
12
+ <path d="M19.333333333333332 27.16a1.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.16a1.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="M42 24.493333333333332s3.0533333333333332 -5.333333333333333 8 -2.6666666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M22 24.493333333333332s-3.0533333333333332 -5.333333333333333 -8 -2.6666666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="m10 35.82666666666667 44 0 0 15.333333333333332 -44 0Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="m18.386666666666663 42.81333333333333 1.3333333333333333 1.4933333333333334a7.32 7.32 0 0 1 0.9866666666666666 -1.04 0.7599999999999999 0.7599999999999999 0 0 1 0.9866666666666666 0.09333333333333334 0.9199999999999999 0.9199999999999999 0 0 1 0 1.1199999999999999 6.346666666666666 6.346666666666666 0 0 1 -0.8533333333333333 1.0266666666666666l0.88 0.9866666666666666a0.8133333333333332 0.8133333333333332 0 0 1 0 1.2266666666666666 0.8933333333333333 0.8933333333333333 0 0 1 -1.3333333333333333 0l-0.8933333333333333 -0.9066666666666667a4.1066666666666665 4.1066666666666665 0 0 1 -2.8 1.2133333333333334 2.8 2.8 0 0 1 -3.1333333333333333 -2.7733333333333334 3.2133333333333334 3.2133333333333334 0 0 1 1.9333333333333331 -2.76 2.413333333333333 2.413333333333333 0 0 1 -0.8533333333333333 -1.7333333333333334c0 -1.3333333333333333 1.3333333333333333 -2.1466666666666665 2.6666666666666665 -2.1466666666666665s2.6933333333333334 0.6799999999999999 2.6933333333333334 1.9733333333333332a2.6666666666666665 2.6666666666666665 0 0 1 -1.6133333333333333 2.2266666666666666Zm0 2.7466666666666666 -1.853333333333333 -2.0666666666666664c-0.9199999999999999 0.5866666666666667 -1.0933333333333333 1.08 -1.0933333333333333 1.5599999999999998a1.2 1.2 0 0 0 1.3333333333333333 1.2533333333333332 2.1066666666666665 2.1066666666666665 0 0 0 1.6533333333333333 -0.7466666666666667Zm-0.17333333333333334 -4.786666666666666a0.8133333333333332 0.8133333333333332 0 0 0 -1.6133333333333333 -0.10666666666666666c0 0.45333333333333337 0.3466666666666667 0.7733333333333332 0.6799999999999999 1.1066666666666665 0.6666666666666666 -0.30666666666666664 0.9733333333333333 -0.6399999999999999 0.9733333333333333 -1Z" fill="#ff6242" stroke-width="1"></path>
18
+ <path d="M25.333333333333332 46.13333333333333V44l-0.9199999999999999 -0.29333333333333333A2.213333333333333 2.213333333333333 0 0 1 22.666666666666664 41.48 2.893333333333333 2.893333333333333 0 0 1 25.333333333333332 38.666666666666664v-0.39999999999999997c0 -0.3466666666666667 0 -0.5866666666666667 0.3466666666666667 -0.5866666666666667s0.3466666666666667 0 0.3466666666666667 0.5866666666666667v0.39999999999999997a4.199999999999999 4.199999999999999 0 0 1 1.5066666666666664 0.3333333333333333 1 1 0 0 1 0.72 0.9199999999999999 0.88 0.88 0 0 1 -0.8533333333333333 0.9466666666666665c-0.3333333333333333 0 -0.9733333333333333 -0.30666666666666664 -1.3333333333333333 -0.3466666666666667v1.7066666666666666c1.7066666666666666 0.4933333333333333 2.893333333333333 1.0266666666666666 2.893333333333333 2.8533333333333335a2.7733333333333334 2.7733333333333334 0 0 1 -1.7866666666666666 2.6666666666666665 3.466666666666667 3.466666666666667 0 0 1 -1.1066666666666665 0.27999999999999997v0.39999999999999997c0 0.3333333333333333 0 0.6 -0.3466666666666667 0.6s-0.3466666666666667 0 -0.3466666666666667 -0.6V48a4.506666666666666 4.506666666666666 0 0 1 -2.333333333333333 -0.6 0.9199999999999999 0.9199999999999999 0 0 1 0.39999999999999997 -1.72c0.39999999999999997 -0.039999999999999994 1.4 0.3866666666666666 1.893333333333333 0.45333333333333337Zm0 -4.213333333333333v-1.4533333333333334a0.84 0.84 0 0 0 -0.6799999999999999 0.7733333333333332c0.026666666666666665 0.37333333333333335 0.36 0.5466666666666666 0.6799999999999999 0.6799999999999999Zm0.6933333333333334 2.293333333333333v1.8666666666666665a1.04 1.04 0 0 0 0.8266666666666667 -1.04c0.026666666666666665 -0.36 -0.18666666666666668 -0.6399999999999999 -0.7999999999999999 -0.8266666666666667Z" fill="#ff6242" stroke-width="1"></path>
19
+ <path d="M31.333333333333332 48a1 1 0 0 1 -1 -1 1 1 0 0 1 2 0 1.0133333333333332 1.0133333333333332 0 0 1 -1 1Zm-0.9199999999999999 -3.6133333333333333v-4.933333333333334a0.8533333333333333 0.8533333333333333 0 0 1 0.9199999999999999 -0.88 0.8666666666666667 0.8666666666666667 0 0 1 0.9066666666666667 0.88v4.92a0.9199999999999999 0.9199999999999999 0 0 1 -1.8266666666666667 0Z" fill="#ff6242" stroke-width="1"></path>
20
+ <path d="m35.346666666666664 44 0.21333333333333332 -1.4533333333333334h-1.0933333333333333a0.6266666666666666 0.6266666666666666 0 1 1 0 -1.24h1.2666666666666666l0.26666666666666666 -2.04c0 -0.39999999999999997 0.19999999999999998 -0.6133333333333333 0.6266666666666666 -0.6133333333333333s0.6266666666666666 0.37333333333333335 0.5599999999999999 0.8266666666666667L36.959999999999994 41.33333333333333h1.2266666666666666l0.27999999999999997 -2.0533333333333332c0 -0.41333333333333333 0.21333333333333332 -0.6133333333333333 0.6399999999999999 -0.6133333333333333s0.6266666666666666 0.36 0.5599999999999999 0.8266666666666667L39.41333333333333 41.33333333333333h1.0933333333333333a0.6266666666666666 0.6266666666666666 0 1 1 0 1.24h-1.2666666666666666L39.04 44h1.0933333333333333a0.6133333333333333 0.6133333333333333 0 0 1 0 1.2266666666666666h-1.3333333333333333l-0.27999999999999997 2.0533333333333332c0 0.41333333333333333 -0.21333333333333332 0.6133333333333333 -0.6399999999999999 0.6133333333333333s-0.6133333333333333 -0.3466666666666667 -0.5599999999999999 -0.8133333333333332l0.2533333333333333 -1.853333333333333h-1.1733333333333333l-0.27999999999999997 2.0533333333333332c0 0.41333333333333333 -0.21333333333333332 0.6133333333333333 -0.6399999999999999 0.6133333333333333s-0.6133333333333333 -0.37333333333333335 -0.5599999999999999 -0.8133333333333332l0.2533333333333333 -1.853333333333333h-1.0933333333333333a0.6133333333333333 0.6133333333333333 0 1 1 0 -1.2266666666666666Zm1.4533333333333334 -1.4533333333333334L36.599999999999994 44h1.2l0.21333333333333332 -1.4533333333333334Z" fill="#ff6242" stroke-width="1"></path>
21
+ <path d="M43.493333333333325 42.666666666666664a2.0666666666666664 2.0666666666666664 0 1 1 1.9733333333333332 -2.0666666666666664A2 2 0 0 1 43.493333333333325 42.666666666666664Zm0 -1.3333333333333333a0.6799999999999999 0.6799999999999999 0 0 0 0.6666666666666666 -0.7599999999999999 0.6933333333333334 0.6933333333333334 0 0 0 -0.6666666666666666 -0.7599999999999999 0.6799999999999999 0.6799999999999999 0 0 0 -0.6666666666666666 0.7599999999999999 0.6799999999999999 0.6799999999999999 0 0 0 0.6666666666666666 0.8266666666666667Zm-0.45333333333333337 5.48 4.226666666666667 -8a0.6266666666666666 0.6266666666666666 0 0 1 0.9466666666666665 -0.30666666666666664 0.7066666666666667 0.7066666666666667 0 0 1 0.29333333333333333 1l-4.293333333333333 8c-0.27999999999999997 0.39999999999999997 -0.6 0.6266666666666666 -1.0666666666666667 0.19999999999999998a0.7333333333333334 0.7333333333333334 0 0 1 -0.10666666666666666 -0.8266666666666667ZM48 48a2.0666666666666664 2.0666666666666664 0 1 1 1.96 -2.0666666666666664A2 2 0 0 1 48 48Zm0 -1.3333333333333333a0.7599999999999999 0.7599999999999999 0 1 0 -0.6666666666666666 -0.7599999999999999 0.6799999999999999 0.6799999999999999 0 0 0 0.6666666666666666 0.7599999999999999Z" fill="#ff6242" stroke-width="1"></path>
22
+ </svg>
@@ -0,0 +1,34 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-With-Tears-Of-Joy--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Face With Tears Of Joy Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M11.493333333333332 29.29333333333333a20.506666666666668 20.506666666666668 0 1 0 41.013333333333335 0 20.506666666666668 20.506666666666668 0 1 0 -41.013333333333335 0Z" fill="#ffe500" stroke-width="1"></path>
6
+ <path d="M32 8.773333333333333A20.52 20.52 0 1 0 52.50666666666667 29.333333333333332 20.506666666666668 20.506666666666668 0 0 0 32 8.773333333333333ZM32 46.666666666666664a18.666666666666664 18.666666666666664 0 1 1 18.666666666666664 -18.666666666666664 18.666666666666664 18.666666666666664 0 0 1 -18.666666666666664 18.666666666666664Z" fill="#ebcb00" stroke-width="1"></path>
7
+ <path d="M25.85333333333333 12.879999999999999a6.1466666666666665 1.5333333333333332 0 1 0 12.293333333333333 0 6.1466666666666665 1.5333333333333332 0 1 0 -12.293333333333333 0Z" fill="#fff48c" stroke-width="1"></path>
8
+ <path d="M15.586666666666666 58a16.413333333333334 2 0 1 0 32.82666666666667 0 16.413333333333334 2 0 1 0 -32.82666666666667 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
9
+ <path d="M11.493333333333332 29.29333333333333a20.506666666666668 20.506666666666668 0 1 0 41.013333333333335 0 20.506666666666668 20.506666666666668 0 1 0 -41.013333333333335 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="M46.86666666666666 34.41333333333333c0 0.8533333333333333 -1.1466666666666665 1.5333333333333332 -2.5599999999999996 1.5333333333333332s-2.5599999999999996 -0.6799999999999999 -2.5599999999999996 -1.5333333333333332 1.1466666666666665 -1.5333333333333332 2.5599999999999996 -1.5333333333333332 2.5599999999999996 0.6799999999999999 2.5599999999999996 1.5333333333333332Z" fill="#ffaa54" stroke-width="1"></path>
11
+ <path d="M17.133333333333333 34.41333333333333c0 0.8533333333333333 1.1466666666666665 1.5333333333333332 2.5599999999999996 1.5333333333333332s2.5599999999999996 -0.6799999999999999 2.5599999999999996 -1.5333333333333332 -1.1466666666666665 -1.5333333333333332 -2.5599999999999996 -1.5333333333333332 -2.5599999999999996 0.6799999999999999 -2.5599999999999996 1.5333333333333332Z" fill="#ffaa54" stroke-width="1"></path>
12
+ <path d="M17.64 30.57333333333333a1.8 1.8 0 1 1 3.5866666666666664 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="M42.773333333333326 30.57333333333333a1.8 1.8 0 1 1 3.5866666666666664 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="M25.786666666666665 37.49333333333333a0.9733333333333333 0.9733333333333333 0 0 0 -0.7333333333333334 0.3333333333333333 0.96 0.96 0 0 0 -0.22666666666666668 0.7733333333333332 7.279999999999999 7.279999999999999 0 0 0 14.346666666666666 0 0.96 0.96 0 0 0 -0.22666666666666668 -0.7733333333333332 0.9733333333333333 0.9733333333333333 0 0 0 -0.7333333333333334 -0.3333333333333333Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M37.72 41.946666666666665a11.653333333333332 11.653333333333332 0 0 0 -5.72 -1.3333333333333333 11.653333333333332 11.653333333333332 0 0 0 -5.72 1.3333333333333333 7.373333333333333 7.373333333333333 0 0 0 11.44 0Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="M4.386666666666667 39.346666666666664c4.3999999999999995 4.3999999999999995 7.653333333333333 -4.426666666666666 12 -5.333333333333333 -6.173333333333333 -4.4799999999999995 -16.386666666666663 0.9333333333333332 -12 5.333333333333333Z" fill="#00b8f0" stroke-width="1"></path>
17
+ <path d="m16.32 34.06666666666666 -0.30666666666666664 0.07999999999999999C10.04 32 2.5066666666666664 36.57333333333333 6.1466666666666665 40.45333333333333a4 4 0 0 1 -1.76 -1.1066666666666665c-4.386666666666667 -4.3999999999999995 5.826666666666666 -9.813333333333333 11.933333333333332 -5.279999999999999Z" fill="#4acfff" stroke-width="1"></path>
18
+ <path d="M4.386666666666667 39.346666666666664c4.3999999999999995 4.3999999999999995 7.653333333333333 -4.426666666666666 12 -5.333333333333333 -6.173333333333333 -4.4799999999999995 -16.386666666666663 0.9333333333333332 -12 5.333333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
19
+ <path d="M8.653333333333332 23.64c-1.3333333333333333 3.8266666666666667 4.746666666666666 3.333333333333333 6.4399999999999995 5.653333333333333 1.0133333333333332 -4.906666666666666 -5.039999999999999 -9.493333333333332 -6.4399999999999995 -5.653333333333333Z" fill="#00b8f0" stroke-width="1"></path>
20
+ <path d="M14.84 26.133333333333333c-1.2133333333333334 -3.373333333333333 -5.093333333333333 -5.466666666666666 -6.186666666666666 -2.493333333333333a2.08 2.08 0 0 0 0.6666666666666666 2.6666666666666665c0.8666666666666667 -2.8 3.5733333333333333 -2.1999999999999997 5.52 -0.17333333333333334Z" fill="#4acfff" stroke-width="1"></path>
21
+ <path d="M8.653333333333332 23.64c-1.3333333333333333 3.8266666666666667 4.746666666666666 3.333333333333333 6.4399999999999995 5.653333333333333 1.0133333333333332 -4.906666666666666 -5.039999999999999 -9.493333333333332 -6.4399999999999995 -5.653333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
22
+ <path d="M1.3333333333333333 29.453333333333333c1.1199999999999999 2.6666666666666665 4 -0.5599999999999999 6.04 -0.17333333333333334C5.6 26.266666666666666 0.27999999999999997 26.8 1.3333333333333333 29.453333333333333Z" fill="#00b8f0" stroke-width="1"></path>
23
+ <path d="M1.8133333333333335 30.133333333333333c0.6933333333333334 -1.3333333333333333 3.453333333333333 -2.213333333333333 5.493333333333333 -1.0266666666666666C5.333333333333333 26.29333333333333 0.29333333333333333 26.85333333333333 1.3333333333333333 29.453333333333333a2.1999999999999997 2.1999999999999997 0 0 0 0.48 0.6799999999999999Z" fill="#4acfff" stroke-width="1"></path>
24
+ <path d="M1.3333333333333333 29.453333333333333c1.1199999999999999 2.6666666666666665 4 -0.5599999999999999 6.04 -0.17333333333333334C5.6 26.266666666666666 0.27999999999999997 26.8 1.3333333333333333 29.453333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
25
+ <path d="M59.38666666666666 39.346666666666664c-4.3999999999999995 4.3999999999999995 -7.640000000000001 -4.426666666666666 -11.933333333333332 -5.333333333333333 6.119999999999999 -4.4799999999999995 16.333333333333332 0.9333333333333332 11.933333333333332 5.333333333333333Z" fill="#00b8f0" stroke-width="1"></path>
26
+ <path d="M47.45333333333333 34.06666666666666a2.6666666666666665 2.6666666666666665 0 0 1 0.30666666666666664 0.07999999999999999C53.73333333333333 32 61.33333333333333 36.57333333333333 57.626666666666665 40.45333333333333a4 4 0 0 0 1.76 -1.1066666666666665c4.3999999999999995 -4.3999999999999995 -5.8133333333333335 -9.813333333333333 -11.933333333333332 -5.279999999999999Z" fill="#4acfff" stroke-width="1"></path>
27
+ <path d="M59.38666666666666 39.346666666666664c-4.3999999999999995 4.3999999999999995 -7.640000000000001 -4.426666666666666 -11.933333333333332 -5.333333333333333 6.119999999999999 -4.4799999999999995 16.333333333333332 0.9333333333333332 11.933333333333332 5.333333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
28
+ <path d="M55.120000000000005 23.64c1.4133333333333333 3.8266666666666667 -4.746666666666666 3.333333333333333 -6.4399999999999995 5.653333333333333 -1.0133333333333332 -4.906666666666666 5.039999999999999 -9.493333333333332 6.4399999999999995 -5.653333333333333Z" fill="#00b8f0" stroke-width="1"></path>
29
+ <path d="M48.93333333333334 26.133333333333333c1.2133333333333334 -3.373333333333333 5.1066666666666665 -5.466666666666666 6.186666666666666 -2.493333333333333a2.08 2.08 0 0 1 -0.6666666666666666 2.6666666666666665c-0.8666666666666667 -2.8 -3.5733333333333333 -2.1999999999999997 -5.52 -0.17333333333333334Z" fill="#4acfff" stroke-width="1"></path>
30
+ <path d="M55.120000000000005 23.64c1.4133333333333333 3.8266666666666667 -4.746666666666666 3.333333333333333 -6.4399999999999995 5.653333333333333 -1.0133333333333332 -4.906666666666666 5.039999999999999 -9.493333333333332 6.4399999999999995 -5.653333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
31
+ <path d="M62.38666666666666 29.453333333333333c-1.1066666666666665 2.6666666666666665 -4 -0.5599999999999999 -6.0266666666666655 -0.17333333333333334 1.8266666666666667 -3.0133333333333328 7.1466666666666665 -2.48 6.0266666666666655 0.17333333333333334Z" fill="#00b8f0" stroke-width="1"></path>
32
+ <path d="M61.959999999999994 30.133333333333333c-0.6799999999999999 -1.3333333333333333 -3.453333333333333 -2.213333333333333 -5.493333333333333 -1.0266666666666666 1.92 -2.813333333333333 7.013333333333333 -2.253333333333333 5.92 0.3466666666666667a2.1999999999999997 2.1999999999999997 0 0 1 -0.42666666666666664 0.6799999999999999Z" fill="#4acfff" stroke-width="1"></path>
33
+ <path d="M62.38666666666666 29.453333333333333c-1.1066666666666665 2.6666666666666665 -4 -0.5599999999999999 -6.0266666666666655 -0.17333333333333334 1.8266666666666667 -3.0133333333333328 7.1466666666666665 -2.48 6.0266666666666655 0.17333333333333334Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
34
+ </svg>
@@ -0,0 +1,31 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-With-Thermometer--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Face With Thermometer Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M11.333333333333332 35a20.666666666666664 20.666666666666664 0 1 0 41.33333333333333 0 20.666666666666664 20.666666666666664 0 1 0 -41.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
6
+ <path d="M49.413333333333334 23.906666666666666a20.626666666666665 20.626666666666665 0 0 0 -34.85333333333333 0 4.093333333333333 4.093333333333333 0 0 0 4.933333333333334 0.72s4.1066666666666665 -2.0533333333333332 12.506666666666668 -2.0533333333333332 12.453333333333333 2.0666666666666664 12.453333333333333 2.0666666666666664a4.1466666666666665 4.1466666666666665 0 0 0 4.96 -0.7333333333333334Z" fill="#ebcb00" stroke-width="1"></path>
7
+ <path d="M32 14.333333333333332a20.666666666666664 20.666666666666664 0 1 0 20.666666666666664 20.666666666666664A20.666666666666664 20.666666666666664 0 0 0 32 14.333333333333332Zm0 38.239999999999995a18.866666666666667 18.866666666666667 0 1 1 18.85333333333333 -18.866666666666667A18.866666666666667 18.866666666666667 0 0 1 32 52.57333333333333Z" fill="#ebcb00" stroke-width="1"></path>
8
+ <path d="M15.466666666666665 61a16.53333333333333 2 0 1 0 33.06666666666666 0 16.53333333333333 2 0 1 0 -33.06666666666666 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
9
+ <path d="M11.333333333333332 35a20.666666666666664 20.666666666666664 0 1 0 41.33333333333333 0 20.666666666666664 20.666666666666664 0 1 0 -41.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="M48.46666666666667 14.853333333333333c-0.5599999999999999 -0.31999999999999995 -5.88 -3.1066666666666665 -16.466666666666665 -3.1066666666666665s-15.906666666666666 2.786666666666666 -16.466666666666665 3.1066666666666665a4.16 4.16 0 0 0 -1.64 5.640000000000001 4.119999999999999 4.119999999999999 0 0 0 5.6 1.6133333333333333S23.599999999999998 20 32 20s12.466666666666665 2.08 12.506666666666668 2.0933333333333333a4.119999999999999 4.119999999999999 0 0 0 5.6 -1.6133333333333333 4.16 4.16 0 0 0 -1.64 -5.626666666666666Z" fill="#e5f8ff" stroke-width="1"></path>
11
+ <path d="M15.533333333333333 17.439999999999998c0.5599999999999999 -0.31999999999999995 5.88 -3.1066666666666665 16.466666666666665 -3.1066666666666665s15.906666666666666 2.786666666666666 16.466666666666665 3.1066666666666665a4.1466666666666665 4.1466666666666665 0 0 1 1.9333333333333331 2.36 4.16 4.16 0 0 0 -1.9333333333333331 -4.946666666666666c-0.5599999999999999 -0.31999999999999995 -5.88 -3.1066666666666665 -16.466666666666665 -3.1066666666666665s-15.906666666666666 2.786666666666666 -16.466666666666665 3.1066666666666665a4.16 4.16 0 0 0 -1.9333333333333331 4.946666666666666 4.1466666666666665 4.1466666666666665 0 0 1 1.9333333333333331 -2.36Z" fill="#ffffff" stroke-width="1"></path>
12
+ <path d="M48.46666666666667 14.853333333333333c-0.5599999999999999 -0.31999999999999995 -5.88 -3.1066666666666665 -16.466666666666665 -3.1066666666666665s-15.906666666666666 2.786666666666666 -16.466666666666665 3.1066666666666665a4.16 4.16 0 0 0 -1.64 5.640000000000001 4.119999999999999 4.119999999999999 0 0 0 5.6 1.6133333333333333S23.599999999999998 20 32 20s12.466666666666665 2.08 12.506666666666668 2.0933333333333333a4.119999999999999 4.119999999999999 0 0 0 5.6 -1.6133333333333333 4.16 4.16 0 0 0 -1.64 -5.626666666666666Z" fill="none" stroke="#45413c" stroke-width="1"></path>
13
+ <path d="M46.986666666666665 40.17333333333333c0 0.8533333333333333 -1.16 1.5466666666666664 -2.5866666666666664 1.5466666666666664s-2.5866666666666664 -0.6933333333333334 -2.5866666666666664 -1.5466666666666664S42.97333333333333 38.666666666666664 44.39999999999999 38.666666666666664s2.5866666666666664 0.6399999999999999 2.5866666666666664 1.5066666666666664Z" fill="#ffaa54" stroke-width="1"></path>
14
+ <path d="M17.013333333333332 40.17333333333333c0 0.8533333333333333 1.16 1.5466666666666664 2.5866666666666664 1.5466666666666664s2.5866666666666664 -0.6933333333333334 2.5866666666666664 -1.5466666666666664S21.026666666666664 38.666666666666664 19.599999999999998 38.666666666666664s-2.5866666666666664 0.6399999999999999 -2.5866666666666664 1.5066666666666664Z" fill="#ffaa54" stroke-width="1"></path>
15
+ <path d="M22.186666666666667 33.97333333333333a1.04 1.04 0 0 1 -1.04 1.0266666666666666 1.04 1.04 0 0 1 0 -2.0666666666666664 1.04 1.04 0 0 1 1.04 1.04Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="M41.81333333333333 33.97333333333333a1.04 1.04 0 0 0 1.04 1.0266666666666666 1.04 1.04 0 0 0 0 -2.0666666666666664 1.04 1.04 0 0 0 -1.04 1.04Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="M20.759999999999998 30.52a11.693333333333332 11.693333333333332 0 0 0 3.4799999999999995 -1.1866666666666665 11.84 11.84 0 0 0 2.986666666666667 -2.12" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
18
+ <path d="M43.239999999999995 30.52a11.693333333333332 11.693333333333332 0 0 1 -3.4799999999999995 -1.1866666666666665 11.84 11.84 0 0 1 -2.986666666666667 -2.12" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
19
+ <path d="M36.959999999999994 62.78666666666667a3.1066666666666665 3.1066666666666665 0 0 1 -3.813333333333333 -2.16L29.333333333333332 46.73333333333333a9.426666666666666 9.426666666666666 0 0 1 6.56 0.45333333333333337l3.24 11.786666666666665a3.1066666666666665 3.1066666666666665 0 0 1 -2.173333333333333 3.813333333333333Z" fill="#ffffff" stroke-width="1"></path>
20
+ <path d="m39.12 58.97333333333333 -0.2533333333333333 -0.8933333333333333a3.1199999999999997 3.1199999999999997 0 0 1 -2.4 2.813333333333333 3.4266666666666663 3.4266666666666663 0 0 1 -3.5733333333333333 -1.1866666666666665l0.2533333333333333 0.9199999999999999a3.093333333333333 3.093333333333333 0 0 0 5.973333333333334 -1.6533333333333333Z" fill="#e5f8ff" stroke-width="1"></path>
21
+ <path d="M36.959999999999994 62.78666666666667a3.1066666666666665 3.1066666666666665 0 0 1 -3.813333333333333 -2.16L29.333333333333332 46.73333333333333a9.426666666666666 9.426666666666666 0 0 1 6.56 0.45333333333333337l3.24 11.786666666666665a3.1066666666666665 3.1066666666666665 0 0 1 -2.173333333333333 3.813333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
22
+ <path d="m36.36 58.666666666666664 -3.3866666666666667 -12.266666666666666" fill="none" stroke="#ff6242" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
23
+ <path d="m31.77333333333333 55.63999999999999 1.9866666666666666 -0.5466666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
24
+ <path d="m32.599999999999994 58.626666666666665 1.9866666666666666 -0.5466666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
25
+ <path d="m30.946666666666665 52.653333333333336 1.9866666666666666 -0.5466666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
26
+ <path d="m30.119999999999997 49.666666666666664 2 -0.5466666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
27
+ <path d="M26.839999999999996 47.906666666666666a9.333333333333332 9.333333333333332 0 0 1 10.32 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-width="1"></path>
28
+ <path d="M22.786666666666665 2.5733333333333333c-3.2266666666666666 2.92 3.4266666666666663 4.306666666666667 -0.5066666666666666 7.3999999999999995" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
29
+ <path d="M41.89333333333333 2.5733333333333333C38.666666666666664 5.493333333333333 45.33333333333333 6.88 41.33333333333333 9.973333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
30
+ <path d="M32.346666666666664 1C29.119999999999997 4 35.76 5.333333333333333 31.826666666666668 8.399999999999999" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
31
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-With-Tongue--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Face With Tongue 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 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>
10
+ <path d="M53.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.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>
11
+ <path d="M10.666666666666666 35.33333333333333c0 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>
12
+ <path d="M21.959999999999997 37.239999999999995c0.6666666666666666 10.666666666666666 6.786666666666666 14.666666666666666 9.133333333333333 16a1.8266666666666667 1.8266666666666667 0 0 0 1.8133333333333335 0c2.3466666666666667 -1.3333333333333333 8.466666666666665 -5.226666666666667 9.133333333333333 -16a1.8266666666666667 1.8266666666666667 0 0 0 -1.8399999999999999 -1.9333333333333331h-16.4a1.8266666666666667 1.8266666666666667 0 0 0 -1.8399999999999999 1.9333333333333331Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="M32 44c0 -2 6 -1.4133333333333333 6 0.6666666666666666V53.33333333333333a6 6 0 0 1 -12 0v-8.666666666666666c0 -2.08 6 -2.6666666666666665 6 -0.6666666666666666Z" fill="#ff6242" stroke-width="1"></path>
14
+ <path d="M32 44c0 -2 -6 -1.4133333333333333 -6 0.6666666666666666v2.6666666666666665c0 -2.08 12 -2.08 12 0v-2.6666666666666665c0 -2.08 -6 -2.6666666666666665 -6 -0.6666666666666666Z" fill="#ff866e" stroke-width="1"></path>
15
+ <path d="M32 44c0 -2 6 -1.4133333333333333 6 0.6666666666666666V53.33333333333333a6 6 0 0 1 -12 0v-8.666666666666666c0 -2.08 6 -2.6666666666666665 6 -0.6666666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="M46.666666666666664 28a1.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="M17.333333333333332 28a1.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>
18
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Face-Without-Mouth--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Face Without Mouth 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="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
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Fearful-Face--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Fearful 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 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>
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="M41.33333333333333 16.666666666666664a15.546666666666667 15.546666666666667 0 0 1 8.333333333333332 4.213333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="M22.666666666666664 16.666666666666664a15.546666666666667 15.546666666666667 0 0 0 -8.333333333333332 4.213333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="M24 27.333333333333332a4.666666666666666 4.666666666666666 0 1 1 -4.666666666666666 -4.666666666666666 4.666666666666666 4.666666666666666 0 0 1 4.666666666666666 4.666666666666666Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M40 27.333333333333332a4.666666666666666 4.666666666666666 0 1 0 4.666666666666666 -4.666666666666666 4.666666666666666 4.666666666666666 0 0 0 -4.666666666666666 4.666666666666666Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="M40.08 48a1.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>
17
+ <path d="M39.25333333333333 42a9.559999999999999 9.559999999999999 0 0 0 -14.506666666666668 0Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
18
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Flexed-Biceps-1--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Flexed Biceps 1 Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M12 60.666666666666664a20 2 0 1 0 40 0 20 2 0 1 0 -40 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
6
+ <path d="m51.22666666666667 32.346666666666664 -2.48 -1.5999999999999999A14.280000000000001 14.280000000000001 0 0 0 30.666666666666664 32.81333333333333l-5.573333333333332 5.76 1.853333333333333 -13.68a16.159999999999997 16.159999999999997 0 0 0 7.6 -0.5066666666666666l5.1866666666666665 -1.6133333333333333a2.6666666666666665 2.6666666666666665 0 0 0 1.8266666666666667 -3.1199999999999997 2.6666666666666665 2.6666666666666665 0 0 0 -0.6799999999999999 -1.3333333333333333l0.7333333333333334 -3.6533333333333333a4.96 4.96 0 0 0 -3.1199999999999997 -5.613333333333333l-4.506666666666666 -1.6533333333333333a8.546666666666667 8.546666666666667 0 0 0 -8.346666666666666 1.3333333333333333l-4.96 4a10.306666666666667 10.306666666666667 0 0 0 -3.24 4.466666666666667L10.559999999999999 35.61333333333333a14 14 0 0 0 1.6133333333333333 12.866666666666667 13.559999999999999 13.559999999999999 0 0 0 9.906666666666666 5.786666666666666l28.906666666666666 2.6666666666666665a1.3333333333333333 1.3333333333333333 0 0 0 1.4533333333333334 -1.3333333333333333V34.586666666666666a2.6666666666666665 2.6666666666666665 0 0 0 -1.2133333333333334 -2.2399999999999998Z" fill="#ffe500" stroke-width="1"></path>
7
+ <path d="M16.2 20.479999999999997c0.9866666666666666 -1.96 2.293333333333333 -2.6666666666666665 9.44 -8.426666666666666a8.546666666666667 8.546666666666667 0 0 1 8.346666666666666 -1.3333333333333333l4.506666666666666 1.6933333333333334a4.906666666666666 4.906666666666666 0 0 1 2.96 3.08l0.15999999999999998 -0.7999999999999999a4.96 4.96 0 0 0 -3.1199999999999997 -5.613333333333333l-4.506666666666666 -1.68a8.546666666666667 8.546666666666667 0 0 0 -8.346666666666666 1.3333333333333333l-4.96 4a10.306666666666667 10.306666666666667 0 0 0 -3.24 4.466666666666667Z" fill="#fff48c" stroke-width="1"></path>
8
+ <path d="m51.22666666666667 32.346666666666664 -2.48 -1.5999999999999999a14.346666666666666 14.346666666666666 0 0 0 -9.173333333333332 -2.2399999999999998A14.253333333333332 14.253333333333332 0 0 0 30.666666666666664 32.81333333333333l-5.573333333333332 5.76L22.666666666666664 40.959999999999994l6.893333333333333 -3.493333333333333c3.88 -1.7733333333333334 6.666666666666666 -5.333333333333333 10.013333333333332 -5.626666666666666a14.346666666666666 14.346666666666666 0 0 1 9.173333333333332 2.2399999999999998l2.48 1.5999999999999999a2.6666666666666665 2.6666666666666665 0 0 1 1.2133333333333334 2.2399999999999998v-3.333333333333333a2.6666666666666665 2.6666666666666665 0 0 0 -1.2133333333333334 -2.2399999999999998Z" fill="#fff48c" stroke-width="1"></path>
9
+ <path d="m51.22666666666667 32.346666666666664 -2.48 -1.5999999999999999A14.280000000000001 14.280000000000001 0 0 0 30.666666666666664 32.81333333333333l-5.573333333333332 5.76 1.853333333333333 -13.68a16.159999999999997 16.159999999999997 0 0 0 7.6 -0.5066666666666666l5.1866666666666665 -1.6133333333333333a2.6666666666666665 2.6666666666666665 0 0 0 1.8266666666666667 -3.1199999999999997 2.6666666666666665 2.6666666666666665 0 0 0 -0.6799999999999999 -1.3333333333333333l0.7333333333333334 -3.6533333333333333a4.96 4.96 0 0 0 -3.1199999999999997 -5.613333333333333l-4.506666666666666 -1.6533333333333333a8.546666666666667 8.546666666666667 0 0 0 -8.346666666666666 1.3333333333333333l-4.96 4a10.306666666666667 10.306666666666667 0 0 0 -3.24 4.466666666666667L10.559999999999999 35.61333333333333a14 14 0 0 0 1.6133333333333333 12.866666666666667 13.559999999999999 13.559999999999999 0 0 0 9.906666666666666 5.786666666666666l28.906666666666666 2.6666666666666665a1.3333333333333333 1.3333333333333333 0 0 0 1.4533333333333334 -1.3333333333333333V34.586666666666666a2.6666666666666665 2.6666666666666665 0 0 0 -1.2133333333333334 -2.2399999999999998Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="M25.106666666666662 38.57333333333333 22.666666666666664 40.959999999999994" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="M24.333333333333332 24.226666666666667h0a16.36 16.36 0 0 0 10.226666666666667 0.15999999999999998l5.1866666666666665 -1.6133333333333333a2.6666666666666665 2.6666666666666665 0 0 0 1.8266666666666667 -3.1199999999999997h0A2.6666666666666665 2.6666666666666665 0 0 0 38.666666666666664 17.53333333333333l-4.3999999999999995 0.4933333333333333a3.6133333333333333 3.6133333333333333 0 0 1 -1.8 -0.3466666666666667 2.44 2.44 0 0 1 -0.37333333333333335 -4.346666666666666h0A2.44 2.44 0 0 1 34.666666666666664 13.333333333333332l1.72 1.0133333333333332" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="M32.10666666666666 46.8s8.559999999999999 3 14 -2.1066666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ </svg>
@@ -0,0 +1,19 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Flushed-Face--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Flushed 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="M24.666666666666664 26.666666666666664a4.666666666666666 4.666666666666666 0 1 1 -4.666666666666666 -4.666666666666666 4.666666666666666 4.666666666666666 0 0 1 4.666666666666666 4.666666666666666Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="M48.666666666666664 26.666666666666664a4.666666666666666 4.666666666666666 0 1 1 -4.666666666666666 -4.666666666666666 4.666666666666666 4.666666666666666 0 0 1 4.666666666666666 4.666666666666666Z" fill="#ffffff" 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 41.33333333333333 13.333333333333332 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M14.226666666666667 16.666666666666664a5.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>
16
+ <path d="M49.773333333333326 16.666666666666664a5.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>
17
+ <path d="M18.666666666666664 26.666666666666664a1.3333333333333333 1.3333333333333333 0 1 0 2.6666666666666665 0 1.3333333333333333 1.3333333333333333 0 1 0 -2.6666666666666665 0Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
18
+ <path d="M42.666666666666664 26.666666666666664a1.3333333333333333 1.3333333333333333 0 1 0 2.6666666666666665 0 1.3333333333333333 1.3333333333333333 0 1 0 -2.6666666666666665 0Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
19
+ </svg>
@@ -0,0 +1,29 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Folded-Hands-1--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Folded Hands 1 Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="m19.799999999999997 15.226666666666667 -6.279999999999999 -8.093333333333334a0.72 0.72 0 0 0 -1.1333333333333333 -0.07999999999999999L9.333333333333332 10.906666666666666a0.72 0.72 0 0 0 0.29333333333333333 1.0933333333333333l9.333333333333332 4.24a0.6533333333333333 0.6533333333333333 0 0 0 0.84 -1.0133333333333332Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
6
+ <path d="m16.799999999999997 21.493333333333332 -9.92 -3.253333333333333a0.7333333333333334 0.7333333333333334 0 0 0 -1 0.5599999999999999l-0.42666666666666664 4.933333333333334a0.7466666666666667 0.7466666666666667 0 0 0 0.9066666666666667 0.72l10.346666666666666 -1.68a0.6533333333333333 0.6533333333333333 0 0 0 0.09333333333333334 -1.2799999999999998Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
7
+ <path d="m16 29.706666666666667 -9.266666666666666 0.18666666666666668a0.6666666666666666 0.6666666666666666 0 0 0 -0.6266666666666666 0.8533333333333333l1.3333333333333333 4.746666666666666a0.6799999999999999 0.6799999999999999 0 0 0 1 0.3866666666666666l7.893333333333333 -4.946666666666666a0.6666666666666666 0.6666666666666666 0 0 0 -0.3333333333333333 -1.2266666666666666Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
8
+ <path d="M28.906666666666666 4.266666666666667a2.973333333333333 2.973333333333333 0 0 0 -2.6666666666666665 2.8533333333333335l-0.7733333333333332 14.466666666666665c-0.2533333333333333 4.453333333333333 -2.1333333333333333 6.453333333333333 -3.0266666666666664 11.226666666666667s-0.6666666666666666 4.56 -1.64 5.533333333333333l-8.133333333333333 8.133333333333333 9.333333333333332 10.773333333333333 5.413333333333332 -5.013333333333333a14.12 14.12 0 0 0 2.7733333333333334 -3.5066666666666664A14.306666666666667 14.306666666666667 0 0 0 32 41.76v-34.666666666666664a2.8533333333333335 2.8533333333333335 0 0 0 -3.093333333333333 -2.8266666666666667Z" fill="#ffe500" stroke-width="1"></path>
9
+ <path d="M28.373333333333335 14.559999999999999a1.6666666666666665 1.6666666666666665 0 0 1 1.68 -1.7466666666666666A1.9466666666666665 1.9466666666666665 0 0 1 32 14.76V12.346666666666666a1.9466666666666665 1.9466666666666665 0 0 0 -1.9466666666666665 -1.9466666666666665c-1.0133333333333332 0 -1.48 0.7333333333333334 -1.5466666666666664 1.7466666666666666Z" fill="#fff48c" stroke-width="1"></path>
10
+ <path d="M29.08 8A3.333333333333333 3.333333333333333 0 0 1 32 9.733333333333333v-2.6666666666666665a2.8533333333333335 2.8533333333333335 0 0 0 -3.093333333333333 -2.8 2.973333333333333 2.973333333333333 0 0 0 -2.6666666666666665 2.8533333333333335l-0.14666666666666667 2.6666666666666665A3.333333333333333 3.333333333333333 0 0 1 29.08 8Z" fill="#fff48c" stroke-width="1"></path>
11
+ <path d="M22.439999999999998 32.81333333333333c-0.88 4.773333333333333 -0.6666666666666666 4.56 -1.64 5.533333333333333l-8.133333333333333 8.133333333333333 1.7066666666666666 1.96 6.426666666666667 -6.426666666666667c0.9733333333333333 -0.9733333333333333 3 -3.9333333333333336 1.64 -9.2Z" fill="#fff48c" stroke-width="1"></path>
12
+ <path d="M28.906666666666666 4.266666666666667a2.973333333333333 2.973333333333333 0 0 0 -2.6666666666666665 2.8533333333333335l-0.7733333333333332 14.466666666666665c-0.2533333333333333 4.453333333333333 -2.1333333333333333 6.453333333333333 -3.0266666666666664 11.226666666666667s-0.6666666666666666 4.56 -1.64 5.533333333333333l-8.133333333333333 8.133333333333333 9.333333333333332 10.773333333333333 5.413333333333332 -5.013333333333333a14.12 14.12 0 0 0 2.7733333333333334 -3.5066666666666664h0A14.306666666666667 14.306666666666667 0 0 0 32 41.76v-34.666666666666664a2.8533333333333335 2.8533333333333335 0 0 0 -3.093333333333333 -2.8266666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="M32 12.346666666666666a1.9466666666666665 1.9466666666666665 0 0 0 -1.9466666666666665 -1.9466666666666665h0c-1.0133333333333332 0 -1.48 0.7333333333333334 -1.5466666666666664 1.7466666666666666l-0.7599999999999999 14.08" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="m4.493333333333333 51.16 8.333333333333332 -6.666666666666666a1.3333333333333333 1.3333333333333333 0 0 1 1.8 0.12l10.146666666666667 10.666666666666666a1.3333333333333333 1.3333333333333333 0 0 1 0.10666666666666666 1.72l-1.92 2.466666666666667a1.3333333333333333 1.3333333333333333 0 0 1 -1.0666666666666667 0.5333333333333333H5.333333333333333a1.3333333333333333 1.3333333333333333 0 0 1 -1.3333333333333333 -1.3333333333333333v-6.48a1.3333333333333333 1.3333333333333333 0 0 1 0.4933333333333333 -1.0266666666666666Z" fill="#009fd9" stroke-width="1"></path>
15
+ <path d="m17.146666666666665 47.18666666666667 -2.5199999999999996 -2.6666666666666665a1.3333333333333333 1.3333333333333333 0 0 0 -1.8 -0.12l-8.333333333333332 6.666666666666666a1.3333333333333333 1.3333333333333333 0 0 0 -0.4933333333333333 1.0266666666666666v5.613333333333333Z" fill="#00b8f0" stroke-width="1"></path>
16
+ <path d="m4.493333333333333 51.16 8.333333333333332 -6.666666666666666a1.3333333333333333 1.3333333333333333 0 0 1 1.8 0.12l10.146666666666667 10.666666666666666a1.3333333333333333 1.3333333333333333 0 0 1 0.10666666666666666 1.72l-1.92 2.466666666666667a1.3333333333333333 1.3333333333333333 0 0 1 -1.0666666666666667 0.5333333333333333H5.333333333333333a1.3333333333333333 1.3333333333333333 0 0 1 -1.3333333333333333 -1.3333333333333333v-6.48a1.3333333333333333 1.3333333333333333 0 0 1 0.4933333333333333 -1.0266666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="m44.199999999999996 15.226666666666667 6.279999999999999 -8.093333333333334a0.72 0.72 0 0 1 1.1333333333333333 -0.07999999999999999L54.666666666666664 10.906666666666666a0.72 0.72 0 0 1 -0.3333333333333333 1.0933333333333333l-9.333333333333332 4.24a0.6533333333333333 0.6533333333333333 0 0 1 -0.7999999999999999 -1.0133333333333332Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
18
+ <path d="m47.199999999999996 21.493333333333332 9.92 -3.253333333333333a0.7333333333333334 0.7333333333333334 0 0 1 1 0.5599999999999999l0.42666666666666664 4.933333333333334a0.7466666666666667 0.7466666666666667 0 0 1 -0.9066666666666667 0.72l-10.346666666666666 -1.68a0.6533333333333333 0.6533333333333333 0 0 1 -0.09333333333333334 -1.2799999999999998Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
19
+ <path d="m48 29.706666666666667 9.333333333333332 0.18666666666666668a0.6666666666666666 0.6666666666666666 0 0 1 0.6266666666666666 0.8533333333333333l-1.3333333333333333 4.746666666666666a0.6799999999999999 0.6799999999999999 0 0 1 -1 0.3866666666666666l-7.986666666666666 -4.946666666666666a0.6666666666666666 0.6666666666666666 0 0 1 0.36 -1.2266666666666666Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
20
+ <path d="M35.093333333333334 4.266666666666667a2.973333333333333 2.973333333333333 0 0 1 2.6666666666666665 2.8533333333333335l0.8133333333333332 14.466666666666665c0.2533333333333333 4.453333333333333 2.1333333333333333 6.453333333333333 3.0266666666666664 11.226666666666667s0.6666666666666666 4.56 1.64 5.533333333333333l8.133333333333333 8.133333333333333 -9.333333333333332 10.773333333333333 -5.413333333333332 -5.013333333333333a14.12 14.12 0 0 1 -2.7733333333333334 -3.5066666666666664A14.306666666666667 14.306666666666667 0 0 1 32 41.76v-34.666666666666664a2.8533333333333335 2.8533333333333335 0 0 1 3.093333333333333 -2.8266666666666667Z" fill="#ffe500" stroke-width="1"></path>
21
+ <path d="M35.626666666666665 14.559999999999999a1.6666666666666665 1.6666666666666665 0 0 0 -1.68 -1.7466666666666666A1.9466666666666665 1.9466666666666665 0 0 0 32 14.76V12.346666666666666a1.9466666666666665 1.9466666666666665 0 0 1 1.9466666666666665 -1.9466666666666665c1.0133333333333332 0 1.48 0.7333333333333334 1.5599999999999998 1.7466666666666666Z" fill="#fff48c" stroke-width="1"></path>
22
+ <path d="M34.92 8A3.333333333333333 3.333333333333333 0 0 0 32 9.733333333333333v-2.6666666666666665a2.8533333333333335 2.8533333333333335 0 0 1 3.093333333333333 -2.8 2.973333333333333 2.973333333333333 0 0 1 2.6666666666666665 2.8533333333333335l0.14666666666666667 2.6666666666666665A3.333333333333333 3.333333333333333 0 0 0 34.92 8Z" fill="#fff48c" stroke-width="1"></path>
23
+ <path d="M41.56 32.81333333333333c0.88 4.773333333333333 0.6666666666666666 4.56 1.64 5.533333333333333l8.133333333333333 8.133333333333333 -1.7066666666666666 1.96 -6.426666666666667 -6.426666666666667c-0.9733333333333333 -0.9733333333333333 -3 -3.9333333333333336 -1.64 -9.2Z" fill="#fff48c" stroke-width="1"></path>
24
+ <path d="M35.093333333333334 4.266666666666667a2.973333333333333 2.973333333333333 0 0 1 2.6666666666666665 2.8533333333333335l0.8133333333333332 14.466666666666665c0.2533333333333333 4.453333333333333 2.1333333333333333 6.453333333333333 3.0266666666666664 11.226666666666667s0.6666666666666666 4.56 1.64 5.533333333333333l8.133333333333333 8.133333333333333 -9.333333333333332 10.773333333333333 -5.413333333333332 -5.013333333333333a14.12 14.12 0 0 1 -2.7733333333333334 -3.5066666666666664h0A14.306666666666667 14.306666666666667 0 0 1 32 41.76v-34.666666666666664a2.8533333333333335 2.8533333333333335 0 0 1 3.093333333333333 -2.8266666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
25
+ <path d="M32 12.346666666666666a1.9466666666666665 1.9466666666666665 0 0 1 1.9466666666666665 -1.9466666666666665h0c1.0133333333333332 0 1.48 0.7333333333333334 1.5599999999999998 1.7466666666666666l0.7466666666666667 14.08" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
26
+ <path d="m59.50666666666667 51.16 -8.333333333333332 -6.666666666666666a1.3333333333333333 1.3333333333333333 0 0 0 -1.8 0.12l-10.146666666666667 10.666666666666666a1.3333333333333333 1.3333333333333333 0 0 0 -0.10666666666666666 1.72l1.92 2.5599999999999996a1.3333333333333333 1.3333333333333333 0 0 0 1.0666666666666667 0.5333333333333333H58.666666666666664a1.3333333333333333 1.3333333333333333 0 0 0 1.3333333333333333 -1.3333333333333333v-6.573333333333332a1.3333333333333333 1.3333333333333333 0 0 0 -0.4933333333333333 -1.0266666666666666Z" fill="#009fd9" stroke-width="1"></path>
27
+ <path d="m46.85333333333333 47.18666666666667 2.5199999999999996 -2.6666666666666665a1.3333333333333333 1.3333333333333333 0 0 1 1.8 -0.12l8.333333333333332 6.666666666666666a1.3333333333333333 1.3333333333333333 0 0 1 0.4933333333333333 1.0266666666666666v5.613333333333333Z" fill="#00b8f0" stroke-width="1"></path>
28
+ <path d="m59.50666666666667 51.16 -8.333333333333332 -6.666666666666666a1.3333333333333333 1.3333333333333333 0 0 0 -1.8 0.12l-10.146666666666667 10.666666666666666a1.3333333333333333 1.3333333333333333 0 0 0 -0.10666666666666666 1.72l1.92 2.5599999999999996a1.3333333333333333 1.3333333333333333 0 0 0 1.0666666666666667 0.5333333333333333H58.666666666666664a1.3333333333333333 1.3333333333333333 0 0 0 1.3333333333333333 -1.3333333333333333v-6.573333333333332a1.3333333333333333 1.3333333333333333 0 0 0 -0.4933333333333333 -1.0266666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
29
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Frowning-Face--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Frowning 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
+ </svg>