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,22 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Bar-Chart--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Bar Chart Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="m7.92 7.906666666666666 48.16 0 0 48.17333333333333 -48.16 0Z" fill="#ffffff" stroke-width="1"></path>
6
+ <path d="M54.373333333333335 7.906666666666666H9.626666666666665a1.7066666666666666 1.7066666666666666 0 0 0 -1.7066666666666666 1.7066666666666666v4.279999999999999a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 -1.7066666666666666h44.74666666666667a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 1.7066666666666666V9.613333333333333a1.7066666666666666 1.7066666666666666 0 0 0 -1.7066666666666666 -1.7066666666666666Z" fill="#f0f0f0" stroke-width="1"></path>
7
+ <path d="M14.146666666666665 60.33333333333333a17.866666666666667 2.333333333333333 0 1 0 35.733333333333334 0 17.866666666666667 2.333333333333333 0 1 0 -35.733333333333334 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
8
+ <path d="M7.92 17.599999999999998h48.16v28.813333333333333H7.92z" fill="none" stroke="#e0e0e0" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
9
+ <path d="M7.92 26.786666666666665h48.16v10.44H7.92z" fill="none" stroke="#e0e0e0" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="m36.97333333333333 7.906666666666666 0 48.17333333333333 -9.946666666666665 0 0 -48.17333333333333z" fill="none" stroke="#e0e0e0" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="m46.42666666666666 7.906666666666666 0 48.17333333333333 -28.866666666666664 0 0 -48.17333333333333z" fill="none" stroke="#e0e0e0" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="M29.173333333333332 35.49333333333333h5.653333333333333a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 1.7066666666666666v18.89333333333333h-9.066666666666666V37.199999999999996a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 -1.7066666666666666Z" fill="#ff6242" stroke-width="1"></path>
13
+ <path d="M34.82666666666667 35.49333333333333h-5.653333333333333a1.7066666666666666 1.7066666666666666 0 0 0 -1.7066666666666666 1.7066666666666666v3.173333333333333A1.7066666666666666 1.7066666666666666 0 0 1 29.173333333333332 38.666666666666664h5.653333333333333a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 1.7066666666666666V37.199999999999996a1.7066666666666666 1.7066666666666666 0 0 0 -1.7066666666666666 -1.7066666666666666Z" fill="#ff866e" stroke-width="1"></path>
14
+ <path d="M29.173333333333332 35.49333333333333h5.653333333333333a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 1.7066666666666666v18.89333333333333l0 0h-9.066666666666666l0 0V37.199999999999996a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 -1.7066666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M14.773333333333333 29.333333333333332h5.653333333333333a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 1.7066666666666666v25.05333333333333H13.066666666666666V30.986666666666665A1.7066666666666666 1.7066666666666666 0 0 1 14.773333333333333 29.333333333333332Z" fill="#6dd627" stroke-width="1"></path>
16
+ <path d="M20.426666666666666 29.333333333333332h-5.653333333333333a1.7066666666666666 1.7066666666666666 0 0 0 -1.7066666666666666 1.6533333333333333v3.173333333333333a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 -1.7066666666666666h5.653333333333333a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 1.7066666666666666v-3.173333333333333A1.7066666666666666 1.7066666666666666 0 0 0 20.426666666666666 29.333333333333332Z" fill="#9ceb60" stroke-width="1"></path>
17
+ <path d="M14.773333333333333 29.333333333333332h5.653333333333333a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 1.7066666666666666v25.05333333333333l0 0H13.066666666666666l0 0V30.986666666666665A1.7066666666666666 1.7066666666666666 0 0 1 14.773333333333333 29.333333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
18
+ <path d="M43.61333333333333 18.599999999999998h5.653333333333333a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 1.7066666666666666v35.78666666666666h-9.066666666666666V20.306666666666665a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 -1.7066666666666666Z" fill="#00b8f0" stroke-width="1"></path>
19
+ <path d="M49.25333333333333 18.666666666666664h-5.640000000000001a1.7066666666666666 1.7066666666666666 0 0 0 -1.7066666666666666 1.7066666666666666v3.093333333333333a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 -1.7066666666666666h5.640000000000001a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 1.7066666666666666v-3.16A1.7066666666666666 1.7066666666666666 0 0 0 49.25333333333333 18.666666666666664Z" fill="#4acfff" stroke-width="1"></path>
20
+ <path d="M43.61333333333333 18.599999999999998h5.653333333333333a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 1.7066666666666666v35.78666666666666l0 0h-9.066666666666666l0 0V20.306666666666665a1.7066666666666666 1.7066666666666666 0 0 1 1.7066666666666666 -1.7066666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
21
+ <path d="m7.92 7.906666666666666 48.16 0 0 48.17333333333333 -48.16 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
22
+ </svg>
@@ -0,0 +1,20 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Beaming-Face-With-Smiling-Eyes--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Beaming Face With Smiling Eyes Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M0.6666666666666666 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="M27.333333333333332 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 27.333333333333332 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
7
+ <path d="M19.333333333333332 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
8
+ <path d="M6 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="M0.6666666666666666 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="M46.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>
11
+ <path d="M8 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S13.173333333333334 33.33333333333333 11.333333333333332 33.33333333333333 8 34.22666666666667 8 35.33333333333333Z" fill="#ffaa54" stroke-width="1"></path>
12
+ <path d="M8.666666666666666 30.333333333333332a2.333333333333333 2.333333333333333 0 0 1 4.666666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="M41.33333333333333 30.333333333333332a2.333333333333333 2.333333333333333 0 0 1 4.666666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="m56.89333333333333 40.89333333333333 6.053333333333333 -2.0266666666666664a0.5733333333333333 0.5733333333333333 0 0 0 0 -1.08l-4.973333333333333 -1.6533333333333333A2.28 2.28 0 0 1 56.53333333333333 34.666666666666664l-1.6533333333333333 -4.973333333333333a0.5866666666666667 0.5866666666666667 0 0 0 -0.5466666666666666 -0.3866666666666666 0.5599999999999999 0.5599999999999999 0 0 0 -0.5333333333333333 0.3866666666666666L52.13333333333333 34.666666666666664a2.28 2.28 0 0 1 -1.4666666666666668 1.4666666666666668l-4.973333333333333 1.6533333333333333a0.5733333333333333 0.5733333333333333 0 0 0 0 1.08L50.666666666666664 40.53333333333333a2.28 2.28 0 0 1 1.44 1.44l1.6666666666666665 4.973333333333333a0.5599999999999999 0.5599999999999999 0 0 0 0.5333333333333333 0.3866666666666666 0.5866666666666667 0.5866666666666667 0 0 0 0.5466666666666666 -0.3866666666666666Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M27.333333333333332 48.73333333333333c12.266666666666666 0 13.906666666666666 -5.119999999999999 13.186666666666667 -9.333333333333332a4.546666666666667 4.546666666666667 0 0 0 -6.079999999999999 -3.1466666666666665 21.893333333333334 21.893333333333334 0 0 1 -7.1066666666666665 1.1199999999999999 21.893333333333334 21.893333333333334 0 0 1 -7.1066666666666665 -1.1199999999999999 4.546666666666667 4.546666666666667 0 0 0 -6.079999999999999 3.1466666666666665c-0.72 4.213333333333333 0.9199999999999999 9.333333333333332 13.186666666666667 9.333333333333332Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="M40.64 40.373333333333335a22.77333333333333 22.77333333333333 0 0 1 -6.133333333333333 1.8133333333333335 43.06666666666666 43.06666666666666 0 0 1 -7.173333333333333 0.5466666666666666 43.06666666666666 43.06666666666666 0 0 1 -7.173333333333333 -0.5466666666666666 22.77333333333333 22.77333333333333 0 0 1 -6.133333333333333 -1.8133333333333335" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="m21.04 36.519999999999996 -0.88 5.666666666666666 -0.84 5.453333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
18
+ <path d="m27.333333333333332 48.73333333333333 0 -11.333333333333332" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
19
+ <path d="m33.64 36.519999999999996 0.8666666666666667 5.666666666666666 0.84 5.453333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
20
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Boy-1--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Boy 1 Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M14 59.33333333333333a18 2 0 1 0 36 0 18 2 0 1 0 -36 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
6
+ <path d="M54.50666666666667 30.333333333333332a4.359999999999999 4.359999999999999 0 0 0 -3.733333333333333 -4.306666666666667C48.946666666666665 16.493333333333332 41.239999999999995 9.333333333333332 32 9.333333333333332S15.053333333333331 16.493333333333332 13.226666666666667 26.026666666666664a4.359999999999999 4.359999999999999 0 0 0 0 8.626666666666665C15.053333333333331 44.17333333333333 22.759999999999998 51.33333333333333 32 51.33333333333333S48.946666666666665 44.17333333333333 50.773333333333326 34.666666666666664a4.373333333333333 4.373333333333333 0 0 0 3.733333333333333 -4.333333333333333Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
7
+ <path d="M20.733333333333334 29.199999999999996a1.5999999999999999 1.5999999999999999 0 1 0 1.5999999999999999 -1.5999999999999999 1.5999999999999999 1.5999999999999999 0 0 0 -1.5999999999999999 1.5999999999999999Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
8
+ <path d="M43.266666666666666 29.199999999999996a1.5999999999999999 1.5999999999999999 0 1 1 -1.5999999999999999 -1.5999999999999999 1.5999999999999999 1.5999999999999999 0 0 1 1.5999999999999999 1.5999999999999999Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
9
+ <path d="M26.119999999999997 38.93333333333333a0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 0.31999999999999995 0.9066666666666667 0.9066666666666667 0 0 0 -0.21333333333333332 0.7333333333333334 6.88 6.88 0 0 0 13.573333333333332 0 0.9066666666666667 0.9066666666666667 0 0 0 -0.21333333333333332 -0.7333333333333334 0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 -0.31999999999999995Z" fill="#ff6242" stroke-width="1"></path>
10
+ <path d="M32 41.76a8.386666666666667 8.386666666666667 0 0 0 -5.226666666666667 1.5999999999999999 6.946666666666666 6.946666666666666 0 0 0 10.453333333333333 0 8.386666666666667 8.386666666666667 0 0 0 -5.226666666666667 -1.5999999999999999Z" fill="#ffa694" stroke-width="1"></path>
11
+ <path d="M26.119999999999997 38.93333333333333a0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 0.31999999999999995 0.9066666666666667 0.9066666666666667 0 0 0 -0.21333333333333332 0.7333333333333334 6.88 6.88 0 0 0 13.573333333333332 0 0.9066666666666667 0.9066666666666667 0 0 0 -0.21333333333333332 -0.7333333333333334 0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 -0.31999999999999995Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="M17.613333333333333 36.013333333333335a2.0666666666666664 1.24 0 1 0 4.133333333333333 0 2.0666666666666664 1.24 0 1 0 -4.133333333333333 0Z" fill="#ffaa54" stroke-width="1"></path>
13
+ <path d="M42.25333333333333 36.013333333333335a2.0666666666666664 1.24 0 1 0 4.133333333333333 0 2.0666666666666664 1.24 0 1 0 -4.133333333333333 0Z" fill="#ffaa54" stroke-width="1"></path>
14
+ <path d="M12.826666666666664 26.106666666666662a21.88 21.88 0 0 0 7.533333333333333 -2.333333333333333 17.106666666666666 17.106666666666666 0 0 0 4.84 -4v3.626666666666667a15.853333333333333 15.853333333333333 0 0 0 7.346666666666666 -1.8133333333333335 11.146666666666665 11.146666666666665 0 0 0 4.1466666666666665 -3.7199999999999998 13.159999999999998 13.159999999999998 0 0 0 5.546666666666667 5.613333333333333 19.866666666666667 19.866666666666667 0 0 0 8.533333333333333 2.5199999999999996v-2.0933333333333333a18.973333333333333 18.973333333333333 0 0 0 -37.946666666666665 0Z" fill="#724f3d" stroke-width="1"></path>
15
+ <path d="M31.8 4.946666666666666A18.973333333333333 18.973333333333333 0 0 0 12.826666666666664 23.906666666666666v2.1999999999999997h0.17333333333333334A18.973333333333333 18.973333333333333 0 0 1 50.666666666666664 26.013333333333335h0.17333333333333334v-2.1066666666666665A18.973333333333333 18.973333333333333 0 0 0 31.8 4.946666666666666Z" fill="#a86c4d" stroke-width="1"></path>
16
+ <path d="M12.826666666666664 26.106666666666662a21.88 21.88 0 0 0 7.533333333333333 -2.333333333333333 17.106666666666666 17.106666666666666 0 0 0 4.84 -4v3.626666666666667a15.853333333333333 15.853333333333333 0 0 0 7.346666666666666 -1.8133333333333335 11.146666666666665 11.146666666666665 0 0 0 4.1466666666666665 -3.7199999999999998 13.159999999999998 13.159999999999998 0 0 0 5.546666666666667 5.613333333333333 19.866666666666667 19.866666666666667 0 0 0 8.533333333333333 2.5199999999999996v-2.0933333333333333a18.973333333333333 18.973333333333333 0 0 0 -37.946666666666665 0Z" 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="Boy-2--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Boy 2 Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M11.733333333333334 59.08a20.226666666666667 2.253333333333333 0 1 0 40.45333333333333 0 20.226666666666667 2.253333333333333 0 1 0 -40.45333333333333 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
6
+ <path d="M54.666666666666664 30.28a4.3999999999999995 4.3999999999999995 0 0 0 -3.76 -4.346666666666666C49.02666666666667 16.346666666666664 41.33333333333333 9.133333333333333 32 9.133333333333333s-17.119999999999997 7.213333333333333 -18.946666666666665 16.799999999999997a4.386666666666667 4.386666666666667 0 0 0 0 8.693333333333332C14.879999999999999 44.22666666666667 22.666666666666664 51.44 32 51.44S49.02666666666667 44.22666666666667 50.86666666666666 34.666666666666664A4.3999999999999995 4.3999999999999995 0 0 0 54.666666666666664 30.28Z" fill="#ffda8f" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
7
+ <path d="M26.026666666666664 38.946666666666665a0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 0.31999999999999995 0.9466666666666665 0.9466666666666665 0 0 0 -0.21333333333333332 0.7466666666666667 6.933333333333334 6.933333333333334 0 0 0 13.666666666666666 0 0.8933333333333333 0.8933333333333333 0 0 0 -0.21333333333333332 -0.7466666666666667 0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 -0.31999999999999995Z" fill="#ff6242" stroke-width="1"></path>
8
+ <path d="M32 41.78666666666666a8.48 8.48 0 0 0 -5.333333333333333 1.6133333333333333 7 7 0 0 0 10.533333333333333 0 8.546666666666667 8.546666666666667 0 0 0 -5.199999999999999 -1.6133333333333333Z" fill="#ffa694" stroke-width="1"></path>
9
+ <path d="M26.026666666666664 38.946666666666665a0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 0.31999999999999995 0.9466666666666665 0.9466666666666665 0 0 0 -0.21333333333333332 0.7466666666666667 6.933333333333334 6.933333333333334 0 0 0 13.666666666666666 0 0.8933333333333333 0.8933333333333333 0 0 0 -0.21333333333333332 -0.7466666666666667 0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 -0.31999999999999995Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="M17.453333333333333 36a2.0933333333333333 1.2533333333333332 0 1 0 4.1866666666666665 0 2.0933333333333333 1.2533333333333332 0 1 0 -4.1866666666666665 0Z" fill="#ffbe3d" stroke-width="1"></path>
11
+ <path d="M42.266666666666666 36a2.0933333333333333 1.2533333333333332 0 1 0 4.1866666666666665 0 2.0933333333333333 1.2533333333333332 0 1 0 -4.1866666666666665 0Z" fill="#ffbe3d" stroke-width="1"></path>
12
+ <path d="M31.759999999999998 4.706666666666666A19.106666666666666 19.106666666666666 0 0 0 12.64 23.813333333333333v2.213333333333333a21.893333333333334 21.893333333333334 0 0 0 7.6 -2.36 17.04 17.04 0 0 0 4.866666666666666 -4v3.6533333333333333a15.799999999999999 15.799999999999999 0 0 0 7.3999999999999995 -1.8266666666666667 11.213333333333333 11.213333333333333 0 0 0 4.173333333333333 -3.733333333333333 13.333333333333332 13.333333333333332 0 0 0 5.586666666666667 5.653333333333333 19.906666666666666 19.906666666666666 0 0 0 8.6 2.5199999999999996v-2.12A19.106666666666666 19.106666666666666 0 0 0 31.759999999999998 4.706666666666666Z" fill="#614b44" stroke-width="1"></path>
13
+ <path d="M31.759999999999998 4.706666666666666A19.106666666666666 19.106666666666666 0 0 0 12.64 23.813333333333333v2.213333333333333h0.17333333333333334A19.106666666666666 19.106666666666666 0 0 1 50.666666666666664 25.93333333333333h0.18666666666666668v-2.12A19.106666666666666 19.106666666666666 0 0 0 31.759999999999998 4.706666666666666Z" fill="#947063" stroke-width="1"></path>
14
+ <path d="M31.759999999999998 4.706666666666666A19.106666666666666 19.106666666666666 0 0 0 12.64 23.813333333333333v2.213333333333333a21.893333333333334 21.893333333333334 0 0 0 7.6 -2.36 17.04 17.04 0 0 0 4.866666666666666 -4v3.6533333333333333a15.799999999999999 15.799999999999999 0 0 0 7.3999999999999995 -1.8266666666666667 11.213333333333333 11.213333333333333 0 0 0 4.173333333333333 -3.733333333333333 13.333333333333332 13.333333333333332 0 0 0 5.586666666666667 5.653333333333333 19.906666666666666 19.906666666666666 0 0 0 8.6 2.5199999999999996v-2.12A19.106666666666666 19.106666666666666 0 0 0 31.759999999999998 4.706666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M24.906666666666666 30.119999999999997a2.173333333333333 2.173333333333333 0 0 0 -4 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="M43.04 30.119999999999997a2.1866666666666665 2.1866666666666665 0 0 0 -4 0" 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="Boy-3--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Boy 3 Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M14 59.33333333333333a18 2 0 1 0 36 0 18 2 0 1 0 -36 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
6
+ <path d="M54.50666666666667 30.333333333333332a4.359999999999999 4.359999999999999 0 0 0 -3.733333333333333 -4.306666666666667C48.946666666666665 16.493333333333332 41.239999999999995 9.333333333333332 32 9.333333333333332S15.053333333333331 16.493333333333332 13.226666666666667 26.026666666666664a4.359999999999999 4.359999999999999 0 0 0 0 8.626666666666665C15.053333333333331 44.17333333333333 22.759999999999998 51.33333333333333 32 51.33333333333333S48.946666666666665 44.17333333333333 50.773333333333326 34.666666666666664a4.373333333333333 4.373333333333333 0 0 0 3.733333333333333 -4.333333333333333Z" fill="#d18660" stroke="#45413c" stroke-width="1"></path>
7
+ <path d="M20.733333333333334 29.199999999999996a1.5999999999999999 1.5999999999999999 0 1 0 1.5999999999999999 -1.5999999999999999 1.5999999999999999 1.5999999999999999 0 0 0 -1.5999999999999999 1.5999999999999999Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
8
+ <path d="M43.266666666666666 29.199999999999996a1.5999999999999999 1.5999999999999999 0 1 1 -1.5999999999999999 -1.5999999999999999 1.5999999999999999 1.5999999999999999 0 0 1 1.5999999999999999 1.5999999999999999Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
9
+ <path d="M26.119999999999997 38.93333333333333a0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 0.31999999999999995 0.9066666666666667 0.9066666666666667 0 0 0 -0.21333333333333332 0.7333333333333334 6.88 6.88 0 0 0 13.573333333333332 0 0.9066666666666667 0.9066666666666667 0 0 0 -0.21333333333333332 -0.7333333333333334 0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 -0.31999999999999995Z" fill="#ff6242" stroke-width="1"></path>
10
+ <path d="M32 41.76a8.386666666666667 8.386666666666667 0 0 0 -5.226666666666667 1.5999999999999999 6.946666666666666 6.946666666666666 0 0 0 10.453333333333333 0 8.386666666666667 8.386666666666667 0 0 0 -5.226666666666667 -1.5999999999999999Z" fill="#ffa694" stroke-width="1"></path>
11
+ <path d="M26.119999999999997 38.93333333333333a0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 0.31999999999999995 0.9066666666666667 0.9066666666666667 0 0 0 -0.21333333333333332 0.7333333333333334 6.88 6.88 0 0 0 13.573333333333332 0 0.9066666666666667 0.9066666666666667 0 0 0 -0.21333333333333332 -0.7333333333333334 0.9199999999999999 0.9199999999999999 0 0 0 -0.6933333333333334 -0.31999999999999995Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="M17.613333333333333 36.013333333333335a2.0666666666666664 1.24 0 1 0 4.133333333333333 0 2.0666666666666664 1.24 0 1 0 -4.133333333333333 0Z" fill="#bd704a" stroke-width="1"></path>
13
+ <path d="M42.25333333333333 36.013333333333335a2.0666666666666664 1.24 0 1 0 4.133333333333333 0 2.0666666666666664 1.24 0 1 0 -4.133333333333333 0Z" fill="#bd704a" stroke-width="1"></path>
14
+ <path d="M12.826666666666664 26.106666666666662a21.88 21.88 0 0 0 7.533333333333333 -2.333333333333333 17.106666666666666 17.106666666666666 0 0 0 4.84 -4v3.626666666666667a15.853333333333333 15.853333333333333 0 0 0 7.346666666666666 -1.8133333333333335 11.146666666666665 11.146666666666665 0 0 0 4.1466666666666665 -3.7199999999999998 13.159999999999998 13.159999999999998 0 0 0 5.546666666666667 5.613333333333333 19.866666666666667 19.866666666666667 0 0 0 8.533333333333333 2.5199999999999996v-2.0933333333333333a18.973333333333333 18.973333333333333 0 0 0 -37.946666666666665 0Z" fill="#614b44" stroke-width="1"></path>
15
+ <path d="M31.8 4.946666666666666A18.973333333333333 18.973333333333333 0 0 0 12.826666666666664 23.906666666666666v2.1999999999999997h0.17333333333333334A18.973333333333333 18.973333333333333 0 0 1 50.666666666666664 26.013333333333335h0.17333333333333334v-2.1066666666666665A18.973333333333333 18.973333333333333 0 0 0 31.8 4.946666666666666Z" fill="#947063" stroke-width="1"></path>
16
+ <path d="M12.826666666666664 26.106666666666662a21.88 21.88 0 0 0 7.533333333333333 -2.333333333333333 17.106666666666666 17.106666666666666 0 0 0 4.84 -4v3.626666666666667a15.853333333333333 15.853333333333333 0 0 0 7.346666666666666 -1.8133333333333335 11.146666666666665 11.146666666666665 0 0 0 4.1466666666666665 -3.7199999999999998 13.159999999999998 13.159999999999998 0 0 0 5.546666666666667 5.613333333333333 19.866666666666667 19.866666666666667 0 0 0 8.533333333333333 2.5199999999999996v-2.0933333333333333a18.973333333333333 18.973333333333333 0 0 0 -37.946666666666665 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Broken-Heart--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Broken Heart Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M23.733333333333334 40.70666666666666a2.173333333333333 2.173333333333333 0 0 1 0.26666666666666666 -1.72l4.813333333333333 -7.56a2.8266666666666667 2.8266666666666667 0 0 0 0.22666666666666668 -2.6666666666666665L24.746666666666663 18.666666666666664a2.84 2.84 0 0 1 0.30666666666666664 -2.76L28.839999999999996 10.666666666666666a1.4133333333333333 1.4133333333333333 0 0 0 -0.13333333333333333 -1.8266666666666667 19.24 19.24 0 0 0 -6.506666666666666 -4.6C17.21333333333333 2.3466666666666667 4.933333333333334 3.3200000000000003 4.933333333333334 16.88c0 11.053333333333331 11.426666666666666 23.560000000000002 19.439999999999998 30.959999999999997a0.7066666666666667 0.7066666666666667 0 0 0 1.16 -0.72Z" fill="#ff6242" stroke-width="1"></path>
6
+ <path d="M41.8 4.213333333333333a18.439999999999998 18.439999999999998 0 0 0 -6.119999999999999 4.226666666666667l-5.773333333333333 8a2.84 2.84 0 0 0 -0.30666666666666664 2.76l4.359999999999999 10.333333333333332a2.12 2.12 0 0 1 -0.15999999999999998 1.9733333333333332l-5.026666666666666 7.893333333333333a2.8 2.8 0 0 0 -0.3333333333333333 2.28L32 54.30666666666666s27.066666666666666 -20.426666666666666 27.066666666666666 -37.42666666666666c0 -13.559999999999999 -12.280000000000001 -14.533333333333333 -17.266666666666666 -12.666666666666666Z" fill="#ff6242" stroke-width="1"></path>
7
+ <path d="M28.839999999999996 10.666666666666666a1.4133333333333333 1.4133333333333333 0 0 0 -0.13333333333333333 -1.8266666666666667 19.24 19.24 0 0 0 -6.506666666666666 -4.6C17.21333333333333 2.3466666666666667 4.933333333333334 3.3200000000000003 4.933333333333334 16.88a17.613333333333333 17.613333333333333 0 0 0 0.31999999999999995 3.3200000000000003c1.893333333333333 -8.786666666666665 12.413333333333334 -9.333333333333332 16.946666666666665 -7.92a19.53333333333333 19.53333333333333 0 0 1 4.1066666666666665 1.893333333333333Z" fill="#ff866e" stroke-width="1"></path>
8
+ <path d="M41.8 4.213333333333333a18.439999999999998 18.439999999999998 0 0 0 -6.119999999999999 4.226666666666667l-5.88 8.16A28 28 0 0 1 32 18.546666666666667a28.146666666666665 28.146666666666665 0 0 1 9.799999999999999 -6.266666666666667c4.533333333333333 -1.4533333333333334 15.053333333333331 -0.8666666666666667 16.946666666666665 7.92a17.613333333333333 17.613333333333333 0 0 0 0.31999999999999995 -3.3200000000000003c0 -13.559999999999999 -12.280000000000001 -14.533333333333333 -17.266666666666666 -12.666666666666666Z" fill="#ff866e" stroke-width="1"></path>
9
+ <path d="M15.666666666666666 60.53333333333333a16.333333333333332 2.1333333333333333 0 1 0 32.666666666666664 0 16.333333333333332 2.1333333333333333 0 1 0 -32.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
10
+ <path d="M23.733333333333334 40.70666666666666a2.173333333333333 2.173333333333333 0 0 1 0.26666666666666666 -1.72l4.813333333333333 -7.56a2.8266666666666667 2.8266666666666667 0 0 0 0.22666666666666668 -2.6666666666666665L24.746666666666663 18.666666666666664a2.84 2.84 0 0 1 0.30666666666666664 -2.76L28.839999999999996 10.666666666666666a1.4133333333333333 1.4133333333333333 0 0 0 -0.13333333333333333 -1.8266666666666667 19.24 19.24 0 0 0 -6.506666666666666 -4.6C17.21333333333333 2.3466666666666667 4.933333333333334 3.3200000000000003 4.933333333333334 16.88c0 11.053333333333331 11.426666666666666 23.560000000000002 19.439999999999998 30.959999999999997a0.7066666666666667 0.7066666666666667 0 0 0 1.16 -0.72Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="M41.8 4.213333333333333a18.439999999999998 18.439999999999998 0 0 0 -6.119999999999999 4.226666666666667l-5.773333333333333 8a2.84 2.84 0 0 0 -0.30666666666666664 2.76l4.359999999999999 10.333333333333332a2.12 2.12 0 0 1 -0.15999999999999998 1.9733333333333332l-5.026666666666666 7.893333333333333a2.8 2.8 0 0 0 -0.3333333333333333 2.28L32 54.30666666666666l0 0s27.066666666666666 -20.426666666666666 27.066666666666666 -37.42666666666666c0 -13.559999999999999 -12.280000000000001 -14.533333333333333 -17.266666666666666 -12.666666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Clapping-Hands-1--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Clapping Hands 1 Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M5.253333333333333 30.85333333333333A2.88 2.88 0 0 1 9.333333333333332 30.759999999999998l-4 -3.8533333333333335a3.3066666666666666 3.3066666666666666 0 0 1 4.573333333333333 -4.76l0.15999999999999998 0.15999999999999998a3.52 3.52 0 0 1 4.866666666666666 -5.08l2.293333333333333 2.1999999999999997A3.3066666666666666 3.3066666666666666 0 0 1 21.77333333333333 14.666666666666666l11.906666666666666 11.426666666666666c-1.48 -2.1866666666666665 -0.9866666666666666 -6 1.3333333333333333 -7.226666666666667a2.1333333333333333 2.1333333333333333 0 0 1 2.786666666666666 0.7733333333333332l5.799999999999999 7.48a20.493333333333332 20.493333333333332 0 0 1 -2.6666666666666665 24.906666666666666 12.333333333333332 12.333333333333332 0 0 1 -17.439999999999998 0.36L5.333333333333333 34.93333333333333a2.88 2.88 0 0 1 -0.07999999999999999 -4.08Z" fill="#ebcb00" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
6
+ <path d="m39.666666666666664 31.826666666666668 -5.986666666666666 -5.746666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
7
+ <path d="m10.053333333333333 22.306666666666665 12.013333333333332 11.533333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
8
+ <path d="m9.333333333333332 30.759999999999998 8.173333333333332 7.84" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
9
+ <path d="m17.21333333333333 19.426666666666666 9.733333333333333 9.333333333333332" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="M19.333333333333332 60.666666666666664a15.333333333333332 2 0 1 0 30.666666666666664 0 15.333333333333332 2 0 1 0 -30.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
11
+ <path d="M50.959999999999994 18.21333333333333 58.05333333333333 16a0.52 0.52 0 0 0 0.3333333333333333 -0.7466666666666667l-1.8266666666666667 -3.08a0.5333333333333333 0.5333333333333333 0 0 0 -0.8266666666666667 0l-5.253333333333333 5.333333333333333a0.4666666666666666 0.4666666666666666 0 0 0 0.48 0.7066666666666667Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="m47.04 15.026666666666666 3.466666666666667 -6.56a0.52 0.52 0 0 0 -0.27999999999999997 -0.7733333333333332l-3.4799999999999995 -0.8933333333333333a0.52 0.52 0 0 0 -0.6133333333333333 0.5466666666666666v7.453333333333333a0.48 0.48 0 0 0 0.9066666666666667 0.22666666666666668Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="M21.613333333333333 10.106666666666666 25.333333333333332 3.6399999999999997a0.5333333333333333 0.5333333333333333 0 0 0 -0.26666666666666666 -0.7733333333333332l-3.453333333333333 -0.9866666666666666a0.52 0.52 0 0 0 -0.6266666666666666 0.52l-0.21333333333333332 7.466666666666666a0.4666666666666666 0.4666666666666666 0 0 0 0.84 0.24Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="M16.57333333333333 10.466666666666665 14.666666666666666 3.3066666666666666a0.52 0.52 0 0 0 -0.7333333333333334 -0.36L10.733333333333334 4.666666666666666a0.5333333333333333 0.5333333333333333 0 0 0 -0.06666666666666667 0.8266666666666667l5.093333333333333 5.4399999999999995a0.48 0.48 0 0 0 0.8133333333333332 -0.4666666666666666Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M13.84 33.70666666666666a2.88 2.88 0 0 1 4.08 -0.07999999999999999l-4 -3.8533333333333335a3.3066666666666666 3.3066666666666666 0 1 1 4.573333333333333 -4.76l0.15999999999999998 0.14666666666666667a3.52 3.52 0 1 1 4.866666666666666 -5.08l2.293333333333333 2.1999999999999997a3.2933333333333334 3.2933333333333334 0 0 1 4.56 -4.76l11.906666666666666 11.426666666666666c-1.48 -2.1866666666666665 -0.9866666666666666 -6.013333333333333 1.3333333333333333 -7.226666666666667a2.12 2.12 0 0 1 2.786666666666666 0.7599999999999999l5.799999999999999 7.493333333333333a20.466666666666665 20.466666666666665 0 0 1 -2.6666666666666665 24.893333333333334 12.333333333333332 12.333333333333332 0 0 1 -17.439999999999998 0.36L13.919999999999998 37.8a2.9066666666666667 2.9066666666666667 0 0 1 -0.07999999999999999 -4.093333333333333Z" fill="#ffe500" stroke-width="1"></path>
16
+ <path d="M43.61333333333333 25.546666666666667a2.12 2.12 0 0 1 2.786666666666666 0.7599999999999999l5.799999999999999 7.493333333333333A20.586666666666666 20.586666666666666 0 0 1 55.14666666666666 42.666666666666664a20.466666666666665 20.466666666666665 0 0 0 -2.9466666666666663 -12.626666666666667l-5.799999999999999 -7.56a2.12 2.12 0 0 0 -2.786666666666666 -0.7599999999999999c-1.9866666666666666 1.04 -2.6666666666666665 4 -1.8666666666666665 6.16a4 4 0 0 1 1.8666666666666665 -2.333333333333333Z" fill="#fff48c" stroke-width="1"></path>
17
+ <path d="M25.706666666666667 21.439999999999998a3.3066666666666666 3.3066666666666666 0 0 1 4.653333333333333 -0.10666666666666666L38.666666666666664 29.333333333333332a4.6 4.6 0 0 0 4.973333333333333 0.9466666666666665l-13.333333333333332 -12.786666666666665a3.2933333333333334 3.2933333333333334 0 0 0 -4.96 4.293333333333333 1.9866666666666666 1.9866666666666666 0 0 1 0.36 -0.3466666666666667Z" fill="#fff48c" stroke-width="1"></path>
18
+ <path d="M13.84 33.70666666666666a2.88 2.88 0 0 1 4.08 -0.07999999999999999l-4 -3.8533333333333335a3.3066666666666666 3.3066666666666666 0 1 1 4.573333333333333 -4.76l0.15999999999999998 0.14666666666666667a3.52 3.52 0 1 1 4.866666666666666 -5.08l2.293333333333333 2.1999999999999997a3.2933333333333334 3.2933333333333334 0 0 1 4.56 -4.76l11.906666666666666 11.426666666666666c-1.48 -2.1866666666666665 -0.9866666666666666 -6.013333333333333 1.3333333333333333 -7.226666666666667a2.12 2.12 0 0 1 2.786666666666666 0.7599999999999999l5.799999999999999 7.493333333333333a20.466666666666665 20.466666666666665 0 0 1 -2.6666666666666665 24.893333333333334 12.333333333333332 12.333333333333332 0 0 1 -17.439999999999998 0.36L13.919999999999998 37.8a2.9066666666666667 2.9066666666666667 0 0 1 -0.07999999999999999 -4.093333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
19
+ <path d="m48.25333333333333 34.68 -5.986666666666666 -5.7333333333333325" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
20
+ <path d="M18.64 25.16 30.666666666666664 36.70666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
21
+ <path d="m17.919999999999998 33.626666666666665 8.173333333333332 7.84" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
22
+ <path d="m25.8 22.28 9.733333333333333 9.346666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
23
+ </svg>
@@ -0,0 +1,43 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Clinking-Glasses-2--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Clinking Glasses 2 Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M37.36 60.666666666666664a12 2 0 1 0 24 0 12 2 0 1 0 -24 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
6
+ <path d="M2.6399999999999997 60.666666666666664a12 2 0 1 0 24 0 12 2 0 1 0 -24 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
7
+ <path d="M16.186666666666667 41.239999999999995c0.18666666666666668 5.1866666666666665 -1.96 13.333333333333332 -1.96 13.333333333333332a0.8533333333333333 0.8533333333333333 0 0 1 -0.9333333333333332 0.6533333333333333c-3.44 -0.4933333333333333 -6.226666666666667 -0.24 -6.959999999999999 0.6533333333333333a0.39999999999999997 0.39999999999999997 0 0 0 0.07999999999999999 0.5599999999999999 19.08 19.08 0 0 0 8 3.24 19.173333333333332 19.173333333333332 0 0 0 8.653333333333332 0.26666666666666666 0.41333333333333333 0.41333333333333333 0 0 0 0.29333333333333333 -0.4933333333333333c-0.30666666666666664 -1.1066666666666665 -2.76 -2.453333333333333 -6.093333333333334 -3.3866666666666667a0.84 0.84 0 0 1 -0.6 -0.9733333333333333s1.3333333333333333 -8.373333333333333 3.5866666666666664 -13.04Z" fill="#00b8f0" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
8
+ <path d="M29.479999999999997 35.04c-1.0933333333333333 5.213333333333333 -6.373333333333333 9.333333333333332 -11.586666666666666 8.266666666666666S9.506666666666666 36.28 10.666666666666666 31.066666666666666l7.6 -28 15.52 3.3066666666666666Z" fill="#00b8f0" stroke-width="1"></path>
9
+ <path d="m31.64 20.72 2.1466666666666665 -14.346666666666666 -15.586666666666666 -3.28L10.666666666666666 31.066666666666666a10.879999999999999 10.879999999999999 0 0 0 -0.07999999999999999 3.7733333333333334 52.48 52.48 0 0 0 21.05333333333333 -14.12Z" fill="#4acfff" stroke-width="1"></path>
10
+ <path d="M29.479999999999997 35.04c-1.0933333333333333 5.213333333333333 -6.373333333333333 9.333333333333332 -11.586666666666666 8.266666666666666S9.506666666666666 36.28 10.666666666666666 31.066666666666666l7.6 -28 15.52 3.3066666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="M33.78666666666666 6.373333333333333c-0.18666666666666668 0.9066666666666667 -3.8266666666666667 0.9066666666666667 -8.133333333333333 0S18 4 18.2 3.093333333333333s3.8266666666666667 -0.9066666666666667 8.133333333333333 0 7.653333333333333 2.373333333333333 7.453333333333333 3.28Z" fill="#00b8f0" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="M15.186666666666667 25.599999999999998a3.6 3.6 0 0 1 3.706666666666666 -1.3333333333333333 6.253333333333334 6.253333333333334 0 0 1 4.093333333333333 3Z" fill="#ffe500" stroke-width="1"></path>
13
+ <path d="M27.599999999999998 33.78666666666666c-0.8533333333333333 4.08 -5.199999999999999 8.333333333333332 -9.333333333333332 7.48S12 34.76 12.826666666666664 30.666666666666664L14.666666666666666 24.199999999999996s0.5733333333333333 1.4 3.44 2 4.213333333333333 -1.68 7.079999999999999 -1.08 3.44 2.013333333333333 3.44 2.013333333333333Z" fill="#ffe500" stroke-width="1"></path>
14
+ <path d="M26.666666666666664 25.586666666666666a8.653333333333332 8.653333333333332 0 0 0 -1.5199999999999998 -0.4666666666666666c-2.8666666666666663 -0.6 -4.199999999999999 1.6933333333333334 -7.079999999999999 1.08S14.666666666666666 24.199999999999996 14.666666666666666 24.199999999999996L12.826666666666664 30.666666666666664a9.546666666666667 9.546666666666667 0 0 0 0 3.2666666666666666A55.04 55.04 0 0 0 26.666666666666664 25.586666666666666Z" fill="#fff48c" stroke-width="1"></path>
15
+ <path d="M27.560000000000002 21.77333333333333a0.8533333333333333 0.8533333333333333 0 0 1 -1 0.6533333333333333 0.8266666666666667 0.8266666666666667 0 0 1 -0.6399999999999999 -1 0.8133333333333332 0.8133333333333332 0 0 1 0.9866666666666666 -0.6399999999999999 0.84 0.84 0 0 1 0.6533333333333333 0.9866666666666666Z" fill="#ffe500" stroke-width="1"></path>
16
+ <path d="M26.4 31.386666666666663a0.84 0.84 0 1 1 -1.6533333333333333 -0.3466666666666667 0.84 0.84 0 0 1 1.6533333333333333 0.3466666666666667Z" fill="#fff48c" stroke-width="1"></path>
17
+ <path d="M18.04 36.49333333333333a0.84 0.84 0 0 1 -1 0.6399999999999999 0.8266666666666667 0.8266666666666667 0 0 1 -0.6399999999999999 -0.9866666666666666 0.84 0.84 0 0 1 0.9866666666666666 -0.6533333333333333 0.8533333333333333 0.8533333333333333 0 0 1 0.6533333333333333 1Z" fill="#fff48c" stroke-width="1"></path>
18
+ <path d="M21.453333333333333 32.49333333333333a0.8266666666666667 0.8266666666666667 0 0 1 -1 0.6399999999999999 0.8133333333333332 0.8133333333333332 0 0 1 -0.6399999999999999 -0.9866666666666666 0.84 0.84 0 0 1 0.9866666666666666 -0.6533333333333333 0.8533333333333333 0.8533333333333333 0 0 1 0.6533333333333333 1Z" fill="#fff48c" stroke-width="1"></path>
19
+ <path d="M23.373333333333335 37.61333333333333a0.84 0.84 0 0 1 -1 0.6399999999999999 0.8266666666666667 0.8266666666666667 0 0 1 -0.6399999999999999 -0.9199999999999999 0.84 0.84 0 0 1 0.9866666666666666 -0.6533333333333333 0.8533333333333333 0.8533333333333333 0 0 1 0.6533333333333333 0.9333333333333332Z" fill="#fff48c" stroke-width="1"></path>
20
+ <path d="M19 21.69333333333333a0.84 0.84 0 0 1 -0.9866666666666666 0.6533333333333333 0.84 0.84 0 0 1 0.3466666666666667 -1.6533333333333333 0.8533333333333333 0.8533333333333333 0 0 1 0.6399999999999999 1Z" fill="#ffe500" stroke-width="1"></path>
21
+ <path d="M17.453333333333333 29.08a0.84 0.84 0 1 1 -1.64 -0.3466666666666667 0.84 0.84 0 0 1 0.9866666666666666 -0.6533333333333333 0.8533333333333333 0.8533333333333333 0 0 1 0.6533333333333333 1Z" fill="#fffacf" stroke-width="1"></path>
22
+ <path d="M24 18.453333333333333a0.8266666666666667 0.8266666666666667 0 0 1 -1 0.6399999999999999 0.8133333333333332 0.8133333333333332 0 0 1 -0.6399999999999999 -0.9866666666666666 0.84 0.84 0 0 1 0.9866666666666666 -0.6533333333333333 0.8533333333333333 0.8533333333333333 0 0 1 0.6533333333333333 1Z" fill="#ffe500" stroke-width="1"></path>
23
+ <path d="M23.46666666666667 10.666666666666666a1.68 1.68 0 1 1 -1.3333333333333333 -1.9866666666666666 1.68 1.68 0 0 1 1.3333333333333333 1.9866666666666666Z" fill="#e5f8ff" stroke-width="1"></path>
24
+ <path d="M19.666666666666664 12.4a0.84 0.84 0 0 1 -0.9866666666666666 0.6533333333333333 0.8533333333333333 0.8533333333333333 0 0 1 -0.6533333333333333 -1.0533333333333332 0.84 0.84 0 0 1 1 -0.6399999999999999 0.8266666666666667 0.8266666666666667 0 0 1 0.6399999999999999 1.04Z" fill="#e5f8ff" stroke-width="1"></path>
25
+ <path d="M44.18666666666667 42.16c2.36 4.613333333333333 3.813333333333333 12.96 3.813333333333333 12.96a0.84 0.84 0 0 1 -0.5866666666666667 0.9866666666666666c-3.3200000000000003 1 -5.7333333333333325 2.4 -6.0266666666666655 3.5066666666666664a0.39999999999999997 0.39999999999999997 0 0 0 0.30666666666666664 0.48 19.066666666666666 19.066666666666666 0 0 0 8.64 -0.42666666666666664 19.159999999999997 19.159999999999997 0 0 0 8 -3.373333333333333 0.39999999999999997 0.39999999999999997 0 0 0 0 -0.5733333333333333c-0.7466666666666667 -0.8666666666666667 -3.533333333333333 -1.0666666666666667 -6.959999999999999 -0.52a0.84 0.84 0 0 1 -0.9466666666666665 -0.6399999999999999s-2.3066666666666666 -8.16 -2.1999999999999997 -13.333333333333332Z" fill="#00b8f0" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
26
+ <path d="M53.666666666666664 30.946666666666665c1.2 5.1866666666666665 -1.8666666666666665 11.186666666666667 -7.053333333333333 12.373333333333331s-10.613333333333333 -2.8666666666666663 -11.746666666666666 -8.066666666666666L30.04 6.666666666666666l15.533333333333333 -3.546666666666667Z" fill="#00b8f0" stroke-width="1"></path>
27
+ <path d="m49.626666666666665 17.05333333333333 -4 -13.933333333333332L30.04 6.666666666666666l4.826666666666666 28.57333333333333A10.586666666666666 10.586666666666666 0 0 0 36.373333333333335 38.666666666666664a52.67999999999999 52.67999999999999 0 0 0 13.253333333333332 -21.613333333333333Z" fill="#4acfff" stroke-width="1"></path>
28
+ <path d="M53.666666666666664 30.946666666666665c1.2 5.1866666666666665 -1.8666666666666665 11.186666666666667 -7.053333333333333 12.373333333333331s-10.613333333333333 -2.8666666666666663 -11.746666666666666 -8.066666666666666L30.04 6.666666666666666l15.533333333333333 -3.546666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
29
+ <path d="M45.57333333333333 3.1199999999999997c0.19999999999999998 0.8933333333333333 -3.1066666666666665 2.4266666666666667 -7.3999999999999995 3.413333333333333s-7.933333333333334 1.04 -8.133333333333333 0.14666666666666667 3.093333333333333 -2.44 7.386666666666667 -3.4266666666666663 7.906666666666666 -1.04 8.146666666666667 -0.13333333333333333Z" fill="#00b8f0" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
30
+ <path d="M36.733333333333334 28.373333333333335a3.6 3.6 0 0 1 2.8 -2.786666666666666 6.186666666666666 6.186666666666666 0 0 1 4.96 1.0133333333333332Z" fill="#ffe500" stroke-width="1"></path>
31
+ <path d="M51.44 30.666666666666664c0.9333333333333332 4 -1.24 9.746666666666666 -5.333333333333333 10.666666666666666s-8.493333333333332 -3.24 -9.426666666666666 -7.306666666666667l-1.0933333333333333 -6.666666666666666s1.1066666666666665 1.04 4 0.3866666666666666 3.1199999999999997 -3.2933333333333334 5.986666666666666 -4 4 0.3866666666666666 4 0.3866666666666666Z" fill="#ffe500" stroke-width="1"></path>
32
+ <path d="M47.14666666666666 23.560000000000002a8.306666666666667 8.306666666666667 0 0 0 -1.5733333333333333 0.19999999999999998c-2.8666666666666663 0.6666666666666666 -3.1199999999999997 3.3066666666666666 -5.986666666666666 4s-4 -0.3866666666666666 -4 -0.3866666666666666l1.0933333333333333 6.666666666666666a9.746666666666666 9.746666666666666 0 0 0 1.3333333333333333 3 55.48 55.48 0 0 0 9.133333333333333 -13.479999999999999Z" fill="#fff48c" stroke-width="1"></path>
33
+ <path d="M46.36 19.706666666666663a0.84 0.84 0 0 1 -0.6266666666666666 1.0133333333333332 0.8266666666666667 0.8266666666666667 0 0 1 -1 -0.6266666666666666 0.84 0.84 0 1 1 1.6266666666666665 -0.3866666666666666Z" fill="#ffe500" stroke-width="1"></path>
34
+ <path d="M49.33333333333333 28.93333333333333a0.84 0.84 0 0 1 -1.64 0.37333333333333335 0.8666666666666667 0.8666666666666667 0 0 1 0.6399999999999999 -1.0133333333333332 0.8533333333333333 0.8533333333333333 0 0 1 1 0.6399999999999999Z" fill="#fff48c" stroke-width="1"></path>
35
+ <path d="M43.879999999999995 37.06666666666666a0.84 0.84 0 1 1 -1 -0.6399999999999999 0.84 0.84 0 0 1 1 0.6399999999999999Z" fill="#fff48c" stroke-width="1"></path>
36
+ <path d="M45.33333333333333 32a0.84 0.84 0 0 1 -0.6266666666666666 1.0133333333333332 0.8666666666666667 0.8666666666666667 0 0 1 -1.0133333333333332 -0.6399999999999999 0.8533333333333333 0.8533333333333333 0 0 1 0.6399999999999999 -1 0.8266666666666667 0.8266666666666667 0 0 1 1 0.6266666666666666Z" fill="#fff48c" stroke-width="1"></path>
37
+ <path d="M49.199999999999996 35.839999999999996a0.84 0.84 0 0 1 -0.6266666666666666 1.0133333333333332 0.8666666666666667 0.8666666666666667 0 0 1 -1.0133333333333332 -0.6399999999999999 0.8533333333333333 0.8533333333333333 0 0 1 0.6399999999999999 -1 0.84 0.84 0 0 1 1 0.6266666666666666Z" fill="#fff48c" stroke-width="1"></path>
38
+ <path d="M38.56 23.226666666666667a0.8266666666666667 0.8266666666666667 0 0 1 -0.6266666666666666 1 0.84 0.84 0 0 1 -1.0133333333333332 -0.6266666666666666 0.8666666666666667 0.8666666666666667 0 0 1 0.6399999999999999 -1.0133333333333332 0.8533333333333333 0.8533333333333333 0 0 1 1 0.6399999999999999Z" fill="#ffe500" stroke-width="1"></path>
39
+ <path d="M40.25333333333333 30.57333333333333a0.8666666666666667 0.8666666666666667 0 0 1 -0.6399999999999999 1.0133333333333332 0.84 0.84 0 0 1 -0.37333333333333335 -1.64 0.8533333333333333 0.8533333333333333 0 0 1 1.0133333333333332 0.6266666666666666Z" fill="#fffacf" stroke-width="1"></path>
40
+ <path d="M41.70666666666666 18.2a0.84 0.84 0 1 1 -1 -0.6266666666666666 0.8266666666666667 0.8266666666666667 0 0 1 1 0.6266666666666666Z" fill="#ffe500" stroke-width="1"></path>
41
+ <path d="M37.986666666666665 11.306666666666667A1.68 1.68 0 1 1 36 10.053333333333333a1.6666666666666665 1.6666666666666665 0 0 1 1.9866666666666666 1.2533333333333332Z" fill="#e5f8ff" stroke-width="1"></path>
42
+ <path d="M35.28 14.506666666666668a0.8666666666666667 0.8666666666666667 0 0 1 -0.6399999999999999 1.0133333333333332 0.8533333333333333 0.8533333333333333 0 0 1 -1 -0.6399999999999999 0.8266666666666667 0.8266666666666667 0 0 1 0.6266666666666666 -1 0.84 0.84 0 0 1 1.0133333333333332 0.6266666666666666Z" fill="#e5f8ff" stroke-width="1"></path>
43
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Confounded-Face--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Confounded 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 60a21.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="M15.653333333333332 24 20 26.146666666666665a1.3333333333333333 1.3333333333333333 0 0 1 0 2.373333333333333L15.653333333333332 30.666666666666664" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="M17.333333333333332 21.333333333333332a15.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>
14
+ <path d="m48.346666666666664 24 -4.279999999999999 2.1466666666666665a1.3333333333333333 1.3333333333333333 0 0 0 0 2.373333333333333L48.346666666666664 30.666666666666664" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M46.666666666666664 21.333333333333332a15.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>
16
+ <path d="m43.33333333333333 43.33333333333333 -2.3866666666666667 -2.3866666666666667a1.3333333333333333 1.3333333333333333 0 0 0 -1.893333333333333 0l-2.1066666666666665 2.1066666666666665a1.3333333333333333 1.3333333333333333 0 0 1 -1.893333333333333 0l-2.1066666666666665 -2.1066666666666665a1.3333333333333333 1.3333333333333333 0 0 0 -1.893333333333333 0l-2.1066666666666665 2.1066666666666665a1.3333333333333333 1.3333333333333333 0 0 1 -1.893333333333333 0l-2.1066666666666665 -2.1066666666666665a1.3333333333333333 1.3333333333333333 0 0 0 -1.893333333333333 0L20.666666666666664 43.33333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Confused-Face--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Confused 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="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>
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="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="M39.49333333333333 40.89333333333333c-3.493333333333333 -1.2 -8.879999999999999 0 -13.12 3.1199999999999997" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ </svg>
@@ -0,0 +1,21 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Construction-Worker--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Construction Worker Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M11.2 60.44a20.799999999999997 2.2266666666666666 0 1 0 41.599999999999994 0 20.799999999999997 2.2266666666666666 0 1 0 -41.599999999999994 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
6
+ <path d="M7.88 31.626666666666665a24.119999999999997 24.119999999999997 0 1 0 48.239999999999995 0 24.119999999999997 24.119999999999997 0 1 0 -48.239999999999995 0Z" fill="#ffda8f" stroke-width="1"></path>
7
+ <path d="M32 7.52a24.119999999999997 24.119999999999997 0 1 0 24.119999999999997 24.106666666666662A24.106666666666662 24.106666666666662 0 0 0 32 7.52Zm0 44.61333333333333a22.013333333333335 22.013333333333335 0 1 1 22.013333333333335 -22.013333333333335A22.013333333333335 22.013333333333335 0 0 1 32 52.13333333333333Z" fill="#ffbe3d" stroke-width="1"></path>
8
+ <path d="M7.88 31.626666666666665a24.119999999999997 24.119999999999997 0 1 0 48.239999999999995 0 24.119999999999997 24.119999999999997 0 1 0 -48.239999999999995 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
9
+ <path d="M49.48 43.01333333333333c0 1 -1.3333333333333333 1.8133333333333335 -3.0133333333333328 1.8133333333333335s-3.0133333333333328 -0.8133333333333332 -3.0133333333333328 -1.8133333333333335 1.3333333333333333 -1.8133333333333335 3.0133333333333328 -1.8133333333333335 3.0133333333333328 0.8133333333333332 3.0133333333333328 1.8133333333333335Z" fill="#ffe9bd" stroke-width="1"></path>
10
+ <path d="M14.52 43.01333333333333a3.0133333333333328 1.8133333333333335 0 1 0 6.0266666666666655 0 3.0133333333333328 1.8133333333333335 0 1 0 -6.0266666666666655 0Z" fill="#ffe9bd" stroke-width="1"></path>
11
+ <path d="M21.560000000000002 35.346666666666664a2.2266666666666666 2.2266666666666666 0 0 1 -4.453333333333333 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="M42.44 35.346666666666664a2.2266666666666666 2.2266666666666666 0 1 0 4.453333333333333 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="m29.4 48.946666666666665 5.199999999999999 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="M7.066666666666666 26.93333333333333a24.93333333333333 24.93333333333333 0 0 1 49.86666666666666 0Z" fill="#ffe500" stroke-width="1"></path>
15
+ <path d="M32 7.6a24.959999999999997 24.959999999999997 0 0 1 24.306666666666665 19.333333333333332h0.6266666666666666a24.93333333333333 24.93333333333333 0 0 0 -49.86666666666666 0h0.6266666666666666A24.959999999999997 24.959999999999997 0 0 1 32 7.6Z" fill="#fff48c" stroke-width="1"></path>
16
+ <path d="M7.066666666666666 26.93333333333333a24.93333333333333 24.93333333333333 0 0 1 49.86666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="M4.333333333333333 25.333333333333332a2.2266666666666666 2.2266666666666666 0 0 1 2.6666666666666665 -2.1866666666666665A124.42666666666665 124.42666666666665 0 0 0 32 25.733333333333334a124.42666666666665 124.42666666666665 0 0 0 24.959999999999997 -2.6666666666666665 2.2266666666666666 2.2266666666666666 0 0 1 2.6666666666666665 2.1866666666666665v1.853333333333333a2.32 2.32 0 0 1 -1.8399999999999999 2.28A133.01333333333332 133.01333333333332 0 0 1 32 32.266666666666666a133.01333333333332 133.01333333333332 0 0 1 -25.826666666666668 -2.8533333333333335 2.32 2.32 0 0 1 -1.8399999999999999 -2.28Z" fill="#ffe500" stroke-width="1"></path>
18
+ <path d="M56.959999999999994 23.093333333333334A124.42666666666665 124.42666666666665 0 0 1 32 25.733333333333334a124.42666666666665 124.42666666666665 0 0 1 -24.959999999999997 -2.6666666666666665 2.2266666666666666 2.2266666666666666 0 0 0 -2.6666666666666665 2.1866666666666665v1.853333333333333a2.173333333333333 2.173333333333333 0 0 0 0.10666666666666666 0.5866666666666667 2.213333333333333 2.213333333333333 0 0 1 2.6666666666666665 -1.5599999999999998 124.42666666666665 124.42666666666665 0 0 0 24.85333333333333 2.6666666666666665 124.42666666666665 124.42666666666665 0 0 0 24.959999999999997 -2.6666666666666665 2.213333333333333 2.213333333333333 0 0 1 2.6666666666666665 1.5599999999999998 2.173333333333333 2.173333333333333 0 0 0 0.10666666666666666 -0.5866666666666667V25.333333333333332a2.2266666666666666 2.2266666666666666 0 0 0 -2.7733333333333334 -2.2399999999999998Z" fill="#fff48c" stroke-width="1"></path>
19
+ <path d="M4.333333333333333 25.333333333333332a2.2266666666666666 2.2266666666666666 0 0 1 2.6666666666666665 -2.1866666666666665A124.42666666666665 124.42666666666665 0 0 0 32 25.733333333333334a124.42666666666665 124.42666666666665 0 0 0 24.959999999999997 -2.6666666666666665 2.2266666666666666 2.2266666666666666 0 0 1 2.6666666666666665 2.1866666666666665v1.853333333333333a2.32 2.32 0 0 1 -1.8399999999999999 2.28A133.01333333333332 133.01333333333332 0 0 1 32 32.266666666666666a133.01333333333332 133.01333333333332 0 0 1 -25.826666666666668 -2.8533333333333335 2.32 2.32 0 0 1 -1.8399999999999999 -2.28Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
20
+ <path d="M37.61333333333333 12.346666666666666h-2.786666666666666v-2.8A1.4933333333333334 1.4933333333333334 0 0 0 33.33333333333333 8.066666666666666h-2.6666666666666665a1.4933333333333334 1.4933333333333334 0 0 0 -1.4933333333333334 1.48v2.8h-2.786666666666666a1.4666666666666668 1.4666666666666668 0 0 0 -1.48 1.48v2.6666666666666665a1.48 1.48 0 0 0 1.48 1.48h2.786666666666666v2.786666666666666A1.4933333333333334 1.4933333333333334 0 0 0 30.666666666666664 22.266666666666666h2.6666666666666665a1.4933333333333334 1.4933333333333334 0 0 0 1.4933333333333334 -1.4933333333333334v-2.786666666666666h2.786666666666666a1.48 1.48 0 0 0 1.48 -1.48v-2.6666666666666665a1.4666666666666668 1.4666666666666668 0 0 0 -1.48 -1.4933333333333334Z" fill="#6dd627" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
21
+ </svg>
@@ -0,0 +1,40 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Couple-With-Heart-Woman-Man-1--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Couple With Heart Woman Man 1 Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M59.33333333333333 41.33333333333333a16.306666666666665 16.306666666666665 0 0 0 -3.453333333333333 -0.37333333333333335A15.84 15.84 0 0 0 40 56.8v2.533333333333333h19.333333333333332Z" fill="#00b8f0" stroke-width="1"></path>
6
+ <path d="M55.879999999999995 40.959999999999994A15.84 15.84 0 0 0 40 56.8v2.533333333333333h0.15999999999999998a15.853333333333333 15.853333333333333 0 0 1 15.719999999999999 -13.546666666666667 15.493333333333332 15.493333333333332 0 0 1 3.453333333333333 0.3866666666666666V41.33333333333333a16.306666666666665 16.306666666666665 0 0 0 -3.453333333333333 -0.37333333333333335Z" fill="#009fd9" stroke-width="1"></path>
7
+ <path d="M59.33333333333333 41.33333333333333a16.306666666666665 16.306666666666665 0 0 0 -3.453333333333333 -0.37333333333333335A15.84 15.84 0 0 0 40 56.8v2.533333333333333h19.333333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
8
+ <path d="m52.54666666666666 35.56 6.786666666666666 0 0 10.586666666666666 -6.786666666666666 0Z" fill="#ffe500" stroke-width="1"></path>
9
+ <path d="M56 35.56a3.3999999999999995 3.3999999999999995 0 0 0 -3.3999999999999995 3.3866666666666667v0.7999999999999999a3.3999999999999995 3.3999999999999995 0 0 0 6.786666666666666 0v-0.7866666666666666A3.3999999999999995 3.3999999999999995 0 0 0 56 35.56Z" fill="#ebcb00" stroke-width="1"></path>
10
+ <path d="m52.54666666666666 35.56 6.786666666666666 0 0 10.586666666666666 -6.786666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="M59.33333333333333 9.013333333333332a12.919999999999998 12.919999999999998 0 0 0 -3.453333333333333 -0.4666666666666666 13.213333333333333 13.213333333333333 0 0 0 -3.2666666666666666 0.41333333333333333c-2.466666666666667 0.5599999999999999 -5.6933333333333325 1.4933333333333334 -8.613333333333333 0.9333333333333332a5.533333333333333 5.533333333333333 0 0 0 1.1199999999999999 4.279999999999999 13 13 0 0 0 -2.3466666666666667 7.466666666666666v6.853333333333333H59.33333333333333Z" fill="#724f3d" stroke-width="1"></path>
12
+ <path d="M55.879999999999995 8.546666666666667a13.213333333333333 13.213333333333333 0 0 0 -3.2666666666666666 0.41333333333333333c-2.466666666666667 0.5599999999999999 -5.6933333333333325 1.4933333333333334 -8.613333333333333 0.9333333333333332a6.066666666666666 6.066666666666666 0 0 0 0.6133333333333333 3.533333333333333 23.746666666666663 23.746666666666663 0 0 0 8 -1.0266666666666666 13.213333333333333 13.213333333333333 0 0 1 3.2666666666666666 -0.39999999999999997 12.919999999999998 12.919999999999998 0 0 1 3.453333333333333 0.4666666666666666V9.013333333333332a12.919999999999998 12.919999999999998 0 0 0 -3.453333333333333 -0.4666666666666666Z" fill="#a86c4d" stroke-width="1"></path>
13
+ <path d="M59.33333333333333 9.013333333333332a12.919999999999998 12.919999999999998 0 0 0 -3.453333333333333 -0.4666666666666666 13.213333333333333 13.213333333333333 0 0 0 -3.2666666666666666 0.41333333333333333c-2.466666666666667 0.5599999999999999 -5.6933333333333325 1.4933333333333334 -8.613333333333333 0.9333333333333332a5.533333333333333 5.533333333333333 0 0 0 1.1199999999999999 4.279999999999999 13 13 0 0 0 -2.3466666666666667 7.466666666666666v6.853333333333333H59.33333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="M59.33333333333333 18.666666666666664a24 24 0 0 1 -3.453333333333333 0.24 20.453333333333333 20.453333333333333 0 0 1 -8 -1.4533333333333334 2.493333333333333 2.493333333333333 0 0 0 -1.853333333333333 2.413333333333333v3.3200000000000003a2.1466666666666665 2.1466666666666665 0 0 1 -2.1333333333333333 2.1333333333333333 2.5066666666666664 2.5066666666666664 0 0 0 -2.5066666666666664 2.013333333333333 2.413333333333333 2.413333333333333 0 0 0 2.3866666666666667 2.813333333333333H44a12.093333333333334 12.093333333333334 0 0 0 12 10.293333333333333 12.293333333333333 12.293333333333333 0 0 0 3.453333333333333 -0.5066666666666666Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M48.626666666666665 27.21333333333333a1.04 1.04 0 1 0 1.0266666666666666 -1.0266666666666666 1.0266666666666666 1.0266666666666666 0 0 0 -1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="m46.626666666666665 59.33333333333333 0 -3.2133333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="M46.626666666666665 31.586666666666666a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffaa54" stroke-width="1"></path>
18
+ <path d="M59.33333333333333 33.46666666666667h-7.239999999999999a0.6133333333333333 0.6133333333333333 0 0 0 -0.5866666666666667 0.6799999999999999 4.4399999999999995 4.4399999999999995 0 0 0 7.826666666666666 2.0533333333333332Z" fill="#ff6242" stroke-width="1"></path>
19
+ <path d="M55.879999999999995 35.38666666666666a4.426666666666666 4.426666666666666 0 0 0 -3.08 1.2266666666666666 4.4799999999999995 4.4799999999999995 0 0 0 6.16 0 4.453333333333333 4.453333333333333 0 0 0 -3.08 -1.2266666666666666Z" fill="#ffa694" stroke-width="1"></path>
20
+ <path d="M59.33333333333333 33.46666666666667h-7.239999999999999a0.6133333333333333 0.6133333333333333 0 0 0 -0.5866666666666667 0.6799999999999999 4.4399999999999995 4.4399999999999995 0 0 0 7.826666666666666 2.0533333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
21
+ <path d="M8 7.76a14.266666666666666 14.266666666666666 0 0 0 -3.3866666666666667 0.39999999999999997v36.986666666666665A36.08 36.08 0 0 0 21.53333333333333 42.666666666666664a1.64 1.64 0 0 0 1.0266666666666666 -1.5199999999999998V22.253333333333334A14.506666666666668 14.506666666666668 0 0 0 8 7.76Z" fill="#724f3d" stroke-width="1"></path>
22
+ <path d="M8 7.76a14.266666666666666 14.266666666666666 0 0 0 -3.3866666666666667 0.39999999999999997v4.266666666666667A14.266666666666666 14.266666666666666 0 0 1 8 12a14.506666666666668 14.506666666666668 0 0 1 14.559999999999999 14.52v-4.266666666666667A14.506666666666668 14.506666666666668 0 0 0 8 7.76Z" fill="#a86c4d" stroke-width="1"></path>
23
+ <path d="M8 7.76h0a14.266666666666666 14.266666666666666 0 0 0 -3.3866666666666667 0.39999999999999997v36.986666666666665A36.08 36.08 0 0 0 21.53333333333333 42.666666666666664a1.64 1.64 0 0 0 1.0266666666666666 -1.5199999999999998V22.253333333333334A14.506666666666668 14.506666666666668 0 0 0 8 7.76Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
24
+ <path d="M8 40.959999999999994a15.786666666666665 15.786666666666665 0 0 0 -3.333333333333333 0.37333333333333335v18h19.226666666666667v-2.533333333333333A15.84 15.84 0 0 0 8 40.959999999999994Z" fill="#ff87af" stroke-width="1"></path>
25
+ <path d="M8 40.959999999999994a15.786666666666665 15.786666666666665 0 0 0 -3.333333333333333 0.37333333333333335v4.346666666666666A15.813333333333333 15.813333333333333 0 0 1 23.8 59.33333333333333h0.09333333333333334v-2.533333333333333A15.84 15.84 0 0 0 8 40.959999999999994Z" fill="#ff6196" stroke-width="1"></path>
26
+ <path d="M8 40.959999999999994a15.786666666666665 15.786666666666665 0 0 0 -3.333333333333333 0.37333333333333335v18h19.226666666666667v-2.533333333333333A15.84 15.84 0 0 0 8 40.959999999999994Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
27
+ <path d="m4.666666666666666 35.56 6.786666666666666 0 0 10.586666666666666 -6.786666666666666 0Z" fill="#ffe500" stroke-width="1"></path>
28
+ <path d="M8 35.56a3.3866666666666667 3.3866666666666667 0 0 0 -3.333333333333333 3.3866666666666667v0.7999999999999999a3.3999999999999995 3.3999999999999995 0 0 0 6.786666666666666 0v-0.7866666666666666A3.3999999999999995 3.3999999999999995 0 0 0 8 35.56Z" fill="#ebcb00" stroke-width="1"></path>
29
+ <path d="m4.666666666666666 35.56 6.786666666666666 0 0 10.586666666666666 -6.786666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
30
+ <path d="M20.146666666666665 25.333333333333332a11.64 11.64 0 0 1 -7.56 -6.666666666666666l-0.84 -1.9866666666666666A21.119999999999997 21.119999999999997 0 0 1 4.666666666666666 22.666666666666664v17.24a11.893333333333333 11.893333333333333 0 0 0 3.333333333333333 0.4933333333333333 12.08 12.08 0 0 0 12 -10.293333333333333h0.14666666666666667a2.413333333333333 2.413333333333333 0 1 0 0 -4.826666666666666Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
31
+ <path d="M15.306666666666667 27.21333333333333a1.0266666666666666 1.0266666666666666 0 1 1 -1.0266666666666666 -1.0266666666666666 1.0266666666666666 1.0266666666666666 0 0 1 1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
32
+ <path d="m17.306666666666665 59.33333333333333 0 -3.2133333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
33
+ <path d="M14.64 31.586666666666666a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffaa54" stroke-width="1"></path>
34
+ <path d="M12.293333333333333 33.68a0.6133333333333333 0.6133333333333333 0 0 0 -0.45333333333333337 -0.21333333333333332H4.666666666666666v2.813333333333333a4.4399999999999995 4.4399999999999995 0 0 0 7.76 -2.1333333333333333 0.6 0.6 0 0 0 -0.13333333333333333 -0.4666666666666666Z" fill="#ff6242" stroke-width="1"></path>
35
+ <path d="M8 35.38666666666666a4.413333333333333 4.413333333333333 0 0 0 -3.0666666666666664 1.2266666666666666 4.466666666666667 4.466666666666667 0 0 0 6.1466666666666665 0A4.426666666666666 4.426666666666666 0 0 0 8 35.38666666666666Z" fill="#ffa694" stroke-width="1"></path>
36
+ <path d="M12.293333333333333 33.68a0.6133333333333333 0.6133333333333333 0 0 0 -0.45333333333333337 -0.21333333333333332H4.666666666666666v2.813333333333333a4.4399999999999995 4.4399999999999995 0 0 0 7.76 -2.1333333333333333 0.6 0.6 0 0 0 -0.13333333333333333 -0.4666666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
37
+ <path d="M44.213333333333324 3.5733333333333333a6.893333333333333 6.893333333333333 0 0 0 -9.466666666666665 1.04L32 7.666666666666666l-2.7466666666666666 -3.0533333333333332a6.893333333333333 6.893333333333333 0 0 0 -9.466666666666665 -1.04A8.706666666666667 8.706666666666667 0 0 0 16.439999999999998 10.666666666666666a11.186666666666667 11.186666666666667 0 0 0 3.466666666666667 8.226666666666667L32 30l12.093333333333334 -11.146666666666665A11.186666666666667 11.186666666666667 0 0 0 47.56 10.666666666666666a8.706666666666667 8.706666666666667 0 0 0 -3.3466666666666662 -7.093333333333334Z" fill="#ff6196" stroke-width="1"></path>
38
+ <path d="M19.786666666666665 11.426666666666666a6.893333333333333 6.893333333333333 0 0 1 9.466666666666665 1.04l1.5999999999999999 1.7733333333333334a1.5466666666666664 1.5466666666666664 0 0 0 2.293333333333333 0l1.5999999999999999 -1.7733333333333334a6.893333333333333 6.893333333333333 0 0 1 9.466666666666665 -1.04 8 8 0 0 1 2.6666666666666665 3.333333333333333A11.893333333333333 11.893333333333333 0 0 0 47.56 10.666666666666666a8.706666666666667 8.706666666666667 0 0 0 -3.3466666666666662 -7.053333333333333 6.893333333333333 6.893333333333333 0 0 0 -9.466666666666665 1.04L32 7.666666666666666l-2.7466666666666666 -3.0533333333333332a6.893333333333333 6.893333333333333 0 0 0 -9.466666666666665 -1.04A8.706666666666667 8.706666666666667 0 0 0 16.439999999999998 10.666666666666666a11.893333333333333 11.893333333333333 0 0 0 0.7466666666666667 4.133333333333333 8 8 0 0 1 2.5999999999999996 -3.373333333333333Z" fill="#ff87af" stroke-width="1"></path>
39
+ <path d="M44.213333333333324 3.5733333333333333a6.893333333333333 6.893333333333333 0 0 0 -9.466666666666665 1.04L32 7.666666666666666l-2.7466666666666666 -3.0533333333333332a6.893333333333333 6.893333333333333 0 0 0 -9.466666666666665 -1.04A8.706666666666667 8.706666666666667 0 0 0 16.439999999999998 10.666666666666666a11.186666666666667 11.186666666666667 0 0 0 3.466666666666667 8.226666666666667L32 30l12.093333333333334 -11.146666666666665A11.186666666666667 11.186666666666667 0 0 0 47.56 10.666666666666666a8.706666666666667 8.706666666666667 0 0 0 -3.3466666666666662 -7.093333333333334Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
40
+ </svg>
@@ -0,0 +1,40 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Couple-With-Heart-Woman-Man-2--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Couple With Heart Woman Man 2 Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M59.33333333333333 41.33333333333333a16.306666666666665 16.306666666666665 0 0 0 -3.453333333333333 -0.37333333333333335A15.84 15.84 0 0 0 40 56.8v2.533333333333333h19.333333333333332Z" fill="#00b8f0" stroke-width="1"></path>
6
+ <path d="M55.879999999999995 40.959999999999994A15.84 15.84 0 0 0 40 56.8v2.533333333333333h0.15999999999999998a15.853333333333333 15.853333333333333 0 0 1 15.719999999999999 -13.546666666666667 15.493333333333332 15.493333333333332 0 0 1 3.453333333333333 0.3866666666666666V41.33333333333333a16.306666666666665 16.306666666666665 0 0 0 -3.453333333333333 -0.37333333333333335Z" fill="#009fd9" stroke-width="1"></path>
7
+ <path d="M59.33333333333333 41.33333333333333a16.306666666666665 16.306666666666665 0 0 0 -3.453333333333333 -0.37333333333333335A15.84 15.84 0 0 0 40 56.8v2.533333333333333h19.333333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
8
+ <path d="m52.54666666666666 35.56 6.786666666666666 0 0 10.586666666666666 -6.786666666666666 0Z" fill="#ffcebf" stroke-width="1"></path>
9
+ <path d="M56 35.56a3.3999999999999995 3.3999999999999995 0 0 0 -3.3999999999999995 3.3866666666666667v0.7999999999999999a3.3999999999999995 3.3999999999999995 0 0 0 6.786666666666666 0v-0.7866666666666666A3.3999999999999995 3.3999999999999995 0 0 0 56 35.56Z" fill="#ffb59e" stroke-width="1"></path>
10
+ <path d="m52.54666666666666 35.56 6.786666666666666 0 0 10.586666666666666 -6.786666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="M59.33333333333333 9.013333333333332a12.919999999999998 12.919999999999998 0 0 0 -3.453333333333333 -0.4666666666666666 13.213333333333333 13.213333333333333 0 0 0 -3.2666666666666666 0.41333333333333333c-2.466666666666667 0.5599999999999999 -5.6933333333333325 1.4933333333333334 -8.613333333333333 0.9333333333333332a5.533333333333333 5.533333333333333 0 0 0 1.1199999999999999 4.279999999999999 13 13 0 0 0 -2.3466666666666667 7.466666666666666v6.853333333333333H59.33333333333333Z" fill="#a86c4d" stroke-width="1"></path>
12
+ <path d="M55.879999999999995 8.546666666666667a13.213333333333333 13.213333333333333 0 0 0 -3.2666666666666666 0.41333333333333333c-2.466666666666667 0.5599999999999999 -5.6933333333333325 1.4933333333333334 -8.613333333333333 0.9333333333333332a6.066666666666666 6.066666666666666 0 0 0 0.6133333333333333 3.533333333333333 23.746666666666663 23.746666666666663 0 0 0 8 -1.0266666666666666 13.213333333333333 13.213333333333333 0 0 1 3.2666666666666666 -0.39999999999999997 12.919999999999998 12.919999999999998 0 0 1 3.453333333333333 0.4666666666666666V9.013333333333332a12.919999999999998 12.919999999999998 0 0 0 -3.453333333333333 -0.4666666666666666Z" fill="#de926a" stroke-width="1"></path>
13
+ <path d="M59.33333333333333 9.013333333333332a12.919999999999998 12.919999999999998 0 0 0 -3.453333333333333 -0.4666666666666666 13.213333333333333 13.213333333333333 0 0 0 -3.2666666666666666 0.41333333333333333c-2.466666666666667 0.5599999999999999 -5.6933333333333325 1.4933333333333334 -8.613333333333333 0.9333333333333332a5.533333333333333 5.533333333333333 0 0 0 1.1199999999999999 4.279999999999999 13 13 0 0 0 -2.3466666666666667 7.466666666666666v6.853333333333333H59.33333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="M59.33333333333333 18.666666666666664a24 24 0 0 1 -3.453333333333333 0.24 20.453333333333333 20.453333333333333 0 0 1 -8 -1.4533333333333334 2.493333333333333 2.493333333333333 0 0 0 -1.853333333333333 2.413333333333333v3.3200000000000003a2.1466666666666665 2.1466666666666665 0 0 1 -2.1333333333333333 2.1333333333333333 2.5066666666666664 2.5066666666666664 0 0 0 -2.5066666666666664 2.013333333333333 2.413333333333333 2.413333333333333 0 0 0 2.3866666666666667 2.813333333333333H44a12.093333333333334 12.093333333333334 0 0 0 12 10.293333333333333 12.293333333333333 12.293333333333333 0 0 0 3.453333333333333 -0.5066666666666666Z" fill="#ffcebf" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M48.626666666666665 27.21333333333333a1.04 1.04 0 1 0 1.0266666666666666 -1.0266666666666666 1.0266666666666666 1.0266666666666666 0 0 0 -1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="m46.626666666666665 59.33333333333333 0 -3.2133333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="M46.626666666666665 31.586666666666666a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffb59e" stroke-width="1"></path>
18
+ <path d="M59.33333333333333 33.46666666666667h-7.239999999999999a0.6133333333333333 0.6133333333333333 0 0 0 -0.5866666666666667 0.6799999999999999 4.4399999999999995 4.4399999999999995 0 0 0 7.826666666666666 2.0533333333333332Z" fill="#ff6242" stroke-width="1"></path>
19
+ <path d="M55.879999999999995 35.38666666666666a4.426666666666666 4.426666666666666 0 0 0 -3.08 1.2266666666666666 4.4799999999999995 4.4799999999999995 0 0 0 6.16 0 4.453333333333333 4.453333333333333 0 0 0 -3.08 -1.2266666666666666Z" fill="#ffa694" stroke-width="1"></path>
20
+ <path d="M59.33333333333333 33.46666666666667h-7.239999999999999a0.6133333333333333 0.6133333333333333 0 0 0 -0.5866666666666667 0.6799999999999999 4.4399999999999995 4.4399999999999995 0 0 0 7.826666666666666 2.0533333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
21
+ <path d="M8 7.76a14.266666666666666 14.266666666666666 0 0 0 -3.3866666666666667 0.39999999999999997v36.986666666666665A36.08 36.08 0 0 0 21.53333333333333 42.666666666666664a1.64 1.64 0 0 0 1.0266666666666666 -1.5199999999999998V22.253333333333334A14.506666666666668 14.506666666666668 0 0 0 8 7.76Z" fill="#a86c4d" stroke-width="1"></path>
22
+ <path d="M8 7.76a14.266666666666666 14.266666666666666 0 0 0 -3.3866666666666667 0.39999999999999997v4.266666666666667A14.266666666666666 14.266666666666666 0 0 1 8 12a14.506666666666668 14.506666666666668 0 0 1 14.559999999999999 14.52v-4.266666666666667A14.506666666666668 14.506666666666668 0 0 0 8 7.76Z" fill="#de926a" stroke-width="1"></path>
23
+ <path d="M8 7.76h0a14.266666666666666 14.266666666666666 0 0 0 -3.3866666666666667 0.39999999999999997v36.986666666666665A36.08 36.08 0 0 0 21.53333333333333 42.666666666666664a1.64 1.64 0 0 0 1.0266666666666666 -1.5199999999999998V22.253333333333334A14.506666666666668 14.506666666666668 0 0 0 8 7.76Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
24
+ <path d="M8 40.959999999999994a15.786666666666665 15.786666666666665 0 0 0 -3.333333333333333 0.37333333333333335v18h19.226666666666667v-2.533333333333333A15.84 15.84 0 0 0 8 40.959999999999994Z" fill="#ff87af" stroke-width="1"></path>
25
+ <path d="M8 40.959999999999994a15.786666666666665 15.786666666666665 0 0 0 -3.333333333333333 0.37333333333333335v4.346666666666666A15.813333333333333 15.813333333333333 0 0 1 23.8 59.33333333333333h0.09333333333333334v-2.533333333333333A15.84 15.84 0 0 0 8 40.959999999999994Z" fill="#ff6196" stroke-width="1"></path>
26
+ <path d="M8 40.959999999999994a15.786666666666665 15.786666666666665 0 0 0 -3.333333333333333 0.37333333333333335v18h19.226666666666667v-2.533333333333333A15.84 15.84 0 0 0 8 40.959999999999994Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
27
+ <path d="m4.666666666666666 35.56 6.786666666666666 0 0 10.586666666666666 -6.786666666666666 0Z" fill="#ffcebf" stroke-width="1"></path>
28
+ <path d="M8 35.56a3.3866666666666667 3.3866666666666667 0 0 0 -3.333333333333333 3.3866666666666667v0.7999999999999999a3.3999999999999995 3.3999999999999995 0 0 0 6.786666666666666 0v-0.7866666666666666A3.3999999999999995 3.3999999999999995 0 0 0 8 35.56Z" fill="#ffb59e" stroke-width="1"></path>
29
+ <path d="m4.666666666666666 35.56 6.786666666666666 0 0 10.586666666666666 -6.786666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
30
+ <path d="M20.146666666666665 25.333333333333332a11.64 11.64 0 0 1 -7.56 -6.666666666666666l-0.84 -1.9866666666666666A21.119999999999997 21.119999999999997 0 0 1 4.666666666666666 22.666666666666664v17.24a11.893333333333333 11.893333333333333 0 0 0 3.333333333333333 0.4933333333333333 12.08 12.08 0 0 0 12 -10.293333333333333h0.14666666666666667a2.413333333333333 2.413333333333333 0 1 0 0 -4.826666666666666Z" fill="#ffcebf" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
31
+ <path d="M15.306666666666667 27.21333333333333a1.0266666666666666 1.0266666666666666 0 1 1 -1.0266666666666666 -1.0266666666666666 1.0266666666666666 1.0266666666666666 0 0 1 1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
32
+ <path d="m17.306666666666665 59.33333333333333 0 -3.2133333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
33
+ <path d="M14.64 31.586666666666666a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffb59e" stroke-width="1"></path>
34
+ <path d="M12.293333333333333 33.68a0.6133333333333333 0.6133333333333333 0 0 0 -0.45333333333333337 -0.21333333333333332H4.666666666666666v2.813333333333333a4.4399999999999995 4.4399999999999995 0 0 0 7.76 -2.1333333333333333 0.6 0.6 0 0 0 -0.13333333333333333 -0.4666666666666666Z" fill="#ff6242" stroke-width="1"></path>
35
+ <path d="M8 35.38666666666666a4.413333333333333 4.413333333333333 0 0 0 -3.0666666666666664 1.2266666666666666 4.466666666666667 4.466666666666667 0 0 0 6.1466666666666665 0A4.426666666666666 4.426666666666666 0 0 0 8 35.38666666666666Z" fill="#ffa694" stroke-width="1"></path>
36
+ <path d="M12.293333333333333 33.68a0.6133333333333333 0.6133333333333333 0 0 0 -0.45333333333333337 -0.21333333333333332H4.666666666666666v2.813333333333333a4.4399999999999995 4.4399999999999995 0 0 0 7.76 -2.1333333333333333 0.6 0.6 0 0 0 -0.13333333333333333 -0.4666666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
37
+ <path d="M44.213333333333324 3.5733333333333333a6.893333333333333 6.893333333333333 0 0 0 -9.466666666666665 1.04L32 7.666666666666666l-2.7466666666666666 -3.0533333333333332a6.893333333333333 6.893333333333333 0 0 0 -9.466666666666665 -1.04A8.706666666666667 8.706666666666667 0 0 0 16.439999999999998 10.666666666666666a11.186666666666667 11.186666666666667 0 0 0 3.466666666666667 8.226666666666667L32 30l12.093333333333334 -11.146666666666665A11.186666666666667 11.186666666666667 0 0 0 47.56 10.666666666666666a8.706666666666667 8.706666666666667 0 0 0 -3.3466666666666662 -7.093333333333334Z" fill="#ff6196" stroke-width="1"></path>
38
+ <path d="M19.786666666666665 11.426666666666666a6.893333333333333 6.893333333333333 0 0 1 9.466666666666665 1.04l1.5999999999999999 1.7733333333333334a1.5466666666666664 1.5466666666666664 0 0 0 2.293333333333333 0l1.5999999999999999 -1.7733333333333334a6.893333333333333 6.893333333333333 0 0 1 9.466666666666665 -1.04 8 8 0 0 1 2.6666666666666665 3.333333333333333A11.893333333333333 11.893333333333333 0 0 0 47.56 10.666666666666666a8.706666666666667 8.706666666666667 0 0 0 -3.3466666666666662 -7.053333333333333 6.893333333333333 6.893333333333333 0 0 0 -9.466666666666665 1.04L32 7.666666666666666l-2.7466666666666666 -3.0533333333333332a6.893333333333333 6.893333333333333 0 0 0 -9.466666666666665 -1.04A8.706666666666667 8.706666666666667 0 0 0 16.439999999999998 10.666666666666666a11.893333333333333 11.893333333333333 0 0 0 0.7466666666666667 4.133333333333333 8 8 0 0 1 2.5999999999999996 -3.373333333333333Z" fill="#ff87af" stroke-width="1"></path>
39
+ <path d="M44.213333333333324 3.5733333333333333a6.893333333333333 6.893333333333333 0 0 0 -9.466666666666665 1.04L32 7.666666666666666l-2.7466666666666666 -3.0533333333333332a6.893333333333333 6.893333333333333 0 0 0 -9.466666666666665 -1.04A8.706666666666667 8.706666666666667 0 0 0 16.439999999999998 10.666666666666666a11.186666666666667 11.186666666666667 0 0 0 3.466666666666667 8.226666666666667L32 30l12.093333333333334 -11.146666666666665A11.186666666666667 11.186666666666667 0 0 0 47.56 10.666666666666666a8.706666666666667 8.706666666666667 0 0 0 -3.3466666666666662 -7.093333333333334Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
40
+ </svg>
@@ -0,0 +1,22 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Cowboy-Hat-Face--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Cowboy Hat Face Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M16 60.666666666666664a16 2 0 1 0 32 0 16 2 0 1 0 -32 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
6
+ <path d="M32 38.16C7.493333333333333 38.16 -2.6666666666666665 26.666666666666664 2.986666666666667 18.813333333333333 7.906666666666666 12 17.813333333333333 22.666666666666664 32 22.666666666666664s24.093333333333334 -10.666666666666666 29.013333333333335 -3.8666666666666663C66.66666666666666 26.666666666666664 56.50666666666667 38.16 32 38.16Z" fill="#f0d5a8" stroke-width="1"></path>
7
+ <path d="M58.97333333333333 17.04C53.6 14.44 44.44 22.666666666666664 32 22.666666666666664S10.399999999999999 14.44 5.026666666666666 17.04C0.8266666666666667 24.21333333333333 10.226666666666667 34.10666666666666 32 34.10666666666666s31.173333333333332 -9.893333333333333 26.973333333333333 -17.066666666666666Z" fill="#debb7e" stroke-width="1"></path>
8
+ <path d="M32 38.16C7.493333333333333 38.16 -2.6666666666666665 26.666666666666664 2.986666666666667 18.813333333333333 7.906666666666666 12 17.813333333333333 22.666666666666664 32 22.666666666666664s24.093333333333334 -10.666666666666666 29.013333333333335 -3.8666666666666663C66.66666666666666 26.666666666666664 56.50666666666667 38.16 32 38.16Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
9
+ <path d="M12.653333333333332 33.31999999999999a19.346666666666664 19.346666666666664 0 1 0 38.69333333333333 0 19.346666666666664 19.346666666666664 0 1 0 -38.69333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
10
+ <path d="M15.733333333333334 22.85333333333333A42.05333333333333 42.05333333333333 0 0 0 32 26.666666666666664a42.05333333333333 42.05333333333333 0 0 0 16.266666666666666 -3.813333333333333 19.36 19.36 0 0 0 -32.53333333333333 0Z" fill="#ebcb00" stroke-width="1"></path>
11
+ <path d="M32 13.986666666666666A19.346666666666664 19.346666666666664 0 1 0 51.346666666666664 33.33333333333333 19.346666666666664 19.346666666666664 0 0 0 32 13.986666666666666Zm0 35.773333333333326a17.653333333333332 17.653333333333332 0 1 1 17.653333333333332 -17.64A17.64 17.64 0 0 1 32 49.76Z" fill="#ebcb00" stroke-width="1"></path>
12
+ <path d="M12.653333333333332 33.31999999999999a19.346666666666664 19.346666666666664 0 1 0 38.69333333333333 0 19.346666666666664 19.346666666666664 0 1 0 -38.69333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="M46.02666666666667 38.16c0 0.7999999999999999 -1.08 1.4533333333333334 -2.4266666666666667 1.4533333333333334s-2.413333333333333 -0.6533333333333333 -2.413333333333333 -1.4533333333333334 1.08 -1.4533333333333334 2.413333333333333 -1.4533333333333334 2.4266666666666667 0.6266666666666666 2.4266666666666667 1.4533333333333334Z" fill="#ffaa54" stroke-width="1"></path>
14
+ <path d="M17.973333333333333 38.16c0 0.7999999999999999 1.08 1.4533333333333334 2.4266666666666667 1.4533333333333334s2.413333333333333 -0.6533333333333333 2.413333333333333 -1.4533333333333334 -1.08 -1.4533333333333334 -2.413333333333333 -1.4533333333333334 -2.4266666666666667 0.6266666666666666 -2.4266666666666667 1.4533333333333334Z" fill="#ffaa54" stroke-width="1"></path>
15
+ <path d="M22.813333333333333 32.36a0.9733333333333333 0.9733333333333333 0 0 1 -0.9733333333333333 0.96 0.96 0.96 0 0 1 -0.96 -0.96 0.9733333333333333 0.9733333333333333 0 0 1 0.96 -0.9733333333333333 0.9733333333333333 0.9733333333333333 0 0 1 0.9733333333333333 0.9733333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="M41.18666666666667 32.36a0.9733333333333333 0.9733333333333333 0 0 0 0.9733333333333333 0.96 0.96 0.96 0 0 0 0.96 -0.96 0.9733333333333333 0.9733333333333333 0 0 0 -0.96 -0.9733333333333333 0.9733333333333333 0.9733333333333333 0 0 0 -0.9733333333333333 0.9733333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="M32 49.76a10.533333333333333 10.533333333333333 0 0 0 10.666666666666666 -8.853333333333332 0.9333333333333332 0.9333333333333332 0 0 0 -0.30666666666666664 -0.8266666666666667 1.0133333333333332 1.0133333333333332 0 0 0 -0.8666666666666667 -0.2533333333333333 60 60 0 0 1 -18.906666666666666 0 1.0133333333333332 1.0133333333333332 0 0 0 -0.8666666666666667 0.2533333333333333 0.9333333333333332 0.9333333333333332 0 0 0 -0.30666666666666664 0.8266666666666667A10.533333333333333 10.533333333333333 0 0 0 32 49.76Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
18
+ <path d="M32 44.93333333333334a17.173333333333332 17.173333333333332 0 0 0 -7.799999999999999 1.6266666666666665 11.106666666666666 11.106666666666666 0 0 0 15.599999999999998 0A17.173333333333332 17.173333333333332 0 0 0 32 44.93333333333334Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
19
+ <path d="M32 22.666666666666664a40.839999999999996 40.839999999999996 0 0 0 14.666666666666666 -3.2266666666666666l-2.6666666666666665 -8.693333333333332A5.1866666666666665 5.1866666666666665 0 0 0 42.22666666666667 8l-3.413333333333333 -2.813333333333333a2.5466666666666664 2.5466666666666664 0 0 0 -2.9466666666666663 -0.15999999999999998A6.666666666666666 6.666666666666666 0 0 1 32 6.466666666666666a6.666666666666666 6.666666666666666 0 0 1 -3.8666666666666663 -1.44 2.5466666666666664 2.5466666666666664 0 0 0 -2.9466666666666663 0.15999999999999998L21.77333333333333 8A5.1866666666666665 5.1866666666666665 0 0 0 20 10.746666666666666l-2.6666666666666665 8.706666666666667A40.839999999999996 40.839999999999996 0 0 0 32 22.666666666666664Z" fill="#b89558" stroke-width="1"></path>
20
+ <path d="m20.586666666666666 11.413333333333334 3.813333333333333 -2.786666666666666a3.093333333333333 3.093333333333333 0 0 1 3.28 -0.15999999999999998A8 8 0 0 0 32 9.92a8 8 0 0 0 4.32 -1.4533333333333334 3.093333333333333 3.093333333333333 0 0 1 3.28 0.15999999999999998l3.813333333333333 2.786666666666666a5.453333333333333 5.453333333333333 0 0 1 1.16 1.1199999999999999L44 10.746666666666666A5.1866666666666665 5.1866666666666665 0 0 0 42.22666666666667 8l-3.413333333333333 -2.813333333333333a2.5466666666666664 2.5466666666666664 0 0 0 -2.9466666666666663 -0.15999999999999998A6.666666666666666 6.666666666666666 0 0 1 32 6.466666666666666a6.666666666666666 6.666666666666666 0 0 1 -3.8666666666666663 -1.44 2.5466666666666664 2.5466666666666664 0 0 0 -2.9466666666666663 0.15999999999999998L21.77333333333333 8A5.1866666666666665 5.1866666666666665 0 0 0 20 10.746666666666666l-0.5733333333333333 1.7866666666666666a5.453333333333333 5.453333333333333 0 0 1 1.16 -1.1199999999999999Z" fill="#debb7e" stroke-width="1"></path>
21
+ <path d="M32 22.666666666666664a40.839999999999996 40.839999999999996 0 0 0 14.666666666666666 -3.2266666666666666l-2.6666666666666665 -8.693333333333332A5.1866666666666665 5.1866666666666665 0 0 0 42.22666666666667 8l-3.413333333333333 -2.813333333333333a2.5466666666666664 2.5466666666666664 0 0 0 -2.9466666666666663 -0.15999999999999998A6.666666666666666 6.666666666666666 0 0 1 32 6.466666666666666a6.666666666666666 6.666666666666666 0 0 1 -3.8666666666666663 -1.44 2.5466666666666664 2.5466666666666664 0 0 0 -2.9466666666666663 0.15999999999999998L21.77333333333333 8A5.1866666666666665 5.1866666666666665 0 0 0 20 10.746666666666666l-2.6666666666666665 8.706666666666667A40.839999999999996 40.839999999999996 0 0 0 32 22.666666666666664Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
22
+ </svg>
@@ -0,0 +1,25 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Crazy-Face--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Crazy Face Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
6
+ <path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
7
+ <path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
8
+ <path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
9
+ <path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
11
+ <path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
12
+ <path d="M32 51.33333333333333a14.533333333333333 14.533333333333333 0 0 0 14.666666666666666 -12.226666666666667 1.3333333333333333 1.3333333333333333 0 0 0 -0.41333333333333333 -1.1199999999999999 1.4933333333333334 1.4933333333333334 0 0 0 -1.2133333333333334 -0.36 82.10666666666665 82.10666666666665 0 0 1 -26.05333333333333 0 1.4933333333333334 1.4933333333333334 0 0 0 -1.2133333333333334 0.36 1.3333333333333333 1.3333333333333333 0 0 0 -0.41333333333333333 1.1199999999999999A14.533333333333333 14.533333333333333 0 0 0 32 51.33333333333333Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="M45.33333333333333 43.33333333333333A40.306666666666665 40.306666666666665 0 0 1 32 45.33333333333333a40.306666666666665 40.306666666666665 0 0 1 -13.333333333333332 -2" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="m32 38.666666666666664 0 12.666666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M23.333333333333332 38.21333333333333c0 0.7999999999999999 -0.06666666666666667 7.666666666666666 1.4133333333333333 11.32" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="M40.666666666666664 38.21333333333333c0 0.7999999999999999 0.06666666666666667 7.666666666666666 -1.4133333333333333 11.32" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="M38 19.333333333333332a10.666666666666666 10.666666666666666 0 1 0 21.333333333333332 0 10.666666666666666 10.666666666666666 0 1 0 -21.333333333333332 0Z" fill="#ffffff" stroke-width="1"></path>
18
+ <path d="M10 23.333333333333332a6.666666666666666 6.666666666666666 0 1 0 13.333333333333332 0 6.666666666666666 6.666666666666666 0 1 0 -13.333333333333332 0Z" fill="#ffffff" stroke-width="1"></path>
19
+ <path d="M48.666666666666664 26a10.666666666666666 10.666666666666666 0 0 1 -10.466666666666665 -8.666666666666666 9.973333333333333 9.973333333333333 0 0 0 -0.19999999999999998 2 10.666666666666666 10.666666666666666 0 0 0 21.333333333333332 0 9.973333333333333 9.973333333333333 0 0 0 -0.19999999999999998 -2 10.666666666666666 10.666666666666666 0 0 1 -10.466666666666665 8.666666666666666Z" fill="#f0f0f0" stroke-width="1"></path>
20
+ <path d="M16.666666666666664 27.493333333333332a6.666666666666666 6.666666666666666 0 0 1 -6.546666666666667 -5.413333333333332 7.826666666666666 7.826666666666666 0 0 0 -0.12 1.2533333333333332 6.666666666666666 6.666666666666666 0 0 0 13.333333333333332 0 7.826666666666666 7.826666666666666 0 0 0 -0.12 -1.2533333333333332 6.666666666666666 6.666666666666666 0 0 1 -6.546666666666667 5.413333333333332Z" fill="#f0f0f0" stroke-width="1"></path>
21
+ <path d="M38 19.333333333333332a10.666666666666666 10.666666666666666 0 1 0 21.333333333333332 0 10.666666666666666 10.666666666666666 0 1 0 -21.333333333333332 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
22
+ <path d="M10 23.333333333333332a6.666666666666666 6.666666666666666 0 1 0 13.333333333333332 0 6.666666666666666 6.666666666666666 0 1 0 -13.333333333333332 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
23
+ <path d="M18 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>
24
+ <path d="M47.33333333333333 19.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>
25
+ </svg>