spectrum-ts 0.8.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-H5XYVRHM.js → chunk-HU2EOF3K.js} +41 -11
- package/dist/{chunk-ZNUORCLB.js → chunk-OIXH5S65.js} +17 -0
- package/dist/{chunk-4O6MQC5Z.js → chunk-U6WCQVVX.js} +198 -38
- package/dist/index.d.ts +1979 -3
- package/dist/index.js +1963 -30
- package/dist/providers/imessage/index.d.ts +17 -17
- package/dist/providers/imessage/index.js +399 -62
- package/dist/providers/terminal/index.d.ts +1 -1
- package/dist/providers/terminal/index.js +1 -1
- package/dist/providers/whatsapp-business/index.d.ts +1 -1
- package/dist/providers/whatsapp-business/index.js +15 -6
- package/dist/{types-DLrsDzV-.d.ts → types-D5KhSXLy.d.ts} +30 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { C as ContentBuilder, U as User, a as ContentInput, b as Content, P as ProviderMessage, c as PlatformDef, d as Platform, e as PlatformProviderConfig, S as SpectrumLike, f as CustomEventStreams, g as Space, I as InboundMessage, O as OutboundMessage } from './types-
|
|
2
|
-
export { A as AnyPlatformDef, E as EventProducer,
|
|
1
|
+
import { C as ContentBuilder, U as User, M as Message, a as ContentInput, b as Content, P as ProviderMessage, c as PlatformDef, d as Platform, e as PlatformProviderConfig, S as SpectrumLike, f as CustomEventStreams, g as Space, I as InboundMessage, O as OutboundMessage } from './types-D5KhSXLy.js';
|
|
2
|
+
export { A as AnyPlatformDef, E as EventProducer, h as PlatformInstance, i as PlatformMessage, j as PlatformSpace, k as PlatformUser, l as SchemaMessage } from './types-D5KhSXLy.js';
|
|
3
3
|
import vCard from 'vcf';
|
|
4
4
|
import z__default from 'zod';
|
|
5
5
|
export { M as ManagedStream, m as mergeStreams, s as stream } from './stream-B55k7W8-.js';
|
|
@@ -122,6 +122,40 @@ declare function contact(input: string | ContactInput | vCard): ContentBuilder;
|
|
|
122
122
|
|
|
123
123
|
declare function custom(raw: unknown): ContentBuilder;
|
|
124
124
|
|
|
125
|
+
/**
|
|
126
|
+
* A `group` bundles multiple messages into one logical unit (e.g. an album
|
|
127
|
+
* of images sent together). Each item is a full `Message` — addressable by
|
|
128
|
+
* id, reactable via `.react()`, replyable via `.reply()`.
|
|
129
|
+
*
|
|
130
|
+
* Groups do not nest, and reactions cannot be group members. Enforced by the
|
|
131
|
+
* `group()` builder; platforms may additionally reject unsupported item
|
|
132
|
+
* content types at send time.
|
|
133
|
+
*/
|
|
134
|
+
declare const groupSchema: z__default.ZodObject<{
|
|
135
|
+
type: z__default.ZodLiteral<"group">;
|
|
136
|
+
items: z__default.ZodArray<z__default.ZodCustom<Message, Message>>;
|
|
137
|
+
}, z__default.core.$strip>;
|
|
138
|
+
type Group = z__default.infer<typeof groupSchema>;
|
|
139
|
+
declare function group(...items: [ContentInput, ContentInput, ...ContentInput[]]): ContentBuilder;
|
|
140
|
+
|
|
141
|
+
declare const reactionSchema: z__default.ZodObject<{
|
|
142
|
+
type: z__default.ZodLiteral<"reaction">;
|
|
143
|
+
emoji: z__default.ZodString;
|
|
144
|
+
target: z__default.ZodCustom<Message, Message>;
|
|
145
|
+
}, z__default.core.$strip>;
|
|
146
|
+
type Reaction = z__default.infer<typeof reactionSchema>;
|
|
147
|
+
/**
|
|
148
|
+
* Construct a `reaction` content value targeting the given message.
|
|
149
|
+
*
|
|
150
|
+
* `space.send(reaction(emoji, message))` is sugar for `message.react(emoji)`.
|
|
151
|
+
* Reactions are fire-and-forget — the returned `OutboundMessage` will be
|
|
152
|
+
* `undefined` because platforms do not surface a message id for reactions.
|
|
153
|
+
*
|
|
154
|
+
* To react to a message known only by id, resolve it first via
|
|
155
|
+
* `space.getMessage(id)`.
|
|
156
|
+
*/
|
|
157
|
+
declare function reaction(emoji: string, target: Message): ContentBuilder;
|
|
158
|
+
|
|
125
159
|
declare const resolveContents: (items: readonly ContentInput[]) => Promise<Content[]>;
|
|
126
160
|
|
|
127
161
|
declare const richlinkSchema: z__default.ZodObject<{
|
|
@@ -156,6 +190,1930 @@ declare function voice(input: string | Buffer, options?: {
|
|
|
156
190
|
duration?: number;
|
|
157
191
|
}): ContentBuilder;
|
|
158
192
|
|
|
193
|
+
declare const Emoji: {
|
|
194
|
+
readonly love: "❤️";
|
|
195
|
+
readonly like: "👍";
|
|
196
|
+
readonly dislike: "👎";
|
|
197
|
+
readonly laugh: "😂";
|
|
198
|
+
readonly emphasize: "‼️";
|
|
199
|
+
readonly question: "❓";
|
|
200
|
+
readonly _1stPlaceMedal: "🥇";
|
|
201
|
+
readonly _2ndPlaceMedal: "🥈";
|
|
202
|
+
readonly _3rdPlaceMedal: "🥉";
|
|
203
|
+
readonly abacus: "🧮";
|
|
204
|
+
readonly abButton: "🆎";
|
|
205
|
+
readonly aButton: "🅰️";
|
|
206
|
+
readonly accordion: "🪗";
|
|
207
|
+
readonly adhesiveBandage: "🩹";
|
|
208
|
+
readonly admissionTickets: "🎟️";
|
|
209
|
+
readonly aerialTramway: "🚡";
|
|
210
|
+
readonly airplane: "✈️";
|
|
211
|
+
readonly airplaneArrival: "🛬";
|
|
212
|
+
readonly airplaneDeparture: "🛫";
|
|
213
|
+
readonly alarmClock: "⏰";
|
|
214
|
+
readonly alembic: "⚗️";
|
|
215
|
+
readonly alien: "👽";
|
|
216
|
+
readonly alienMonster: "👾";
|
|
217
|
+
readonly ambulance: "🚑";
|
|
218
|
+
readonly americanFootball: "🏈";
|
|
219
|
+
readonly amphora: "🏺";
|
|
220
|
+
readonly anatomicalHeart: "🫀";
|
|
221
|
+
readonly anchor: "⚓";
|
|
222
|
+
readonly angerSymbol: "💢";
|
|
223
|
+
readonly angryFace: "😠";
|
|
224
|
+
readonly angryFaceWithHorns: "👿";
|
|
225
|
+
readonly anguishedFace: "😧";
|
|
226
|
+
readonly ant: "🐜";
|
|
227
|
+
readonly antennaBars: "📶";
|
|
228
|
+
readonly anxiousFaceWithSweat: "😰";
|
|
229
|
+
readonly aquarius: "♒";
|
|
230
|
+
readonly aries: "♈";
|
|
231
|
+
readonly articulatedLorry: "🚛";
|
|
232
|
+
readonly artist: "🧑🎨";
|
|
233
|
+
readonly artistPalette: "🎨";
|
|
234
|
+
readonly astonishedFace: "😲";
|
|
235
|
+
readonly astronaut: "🧑🚀";
|
|
236
|
+
readonly atmSign: "🏧";
|
|
237
|
+
readonly atomSymbol: "⚛️";
|
|
238
|
+
readonly automobile: "🚗";
|
|
239
|
+
readonly autoRickshaw: "🛺";
|
|
240
|
+
readonly avocado: "🥑";
|
|
241
|
+
readonly axe: "🪓";
|
|
242
|
+
readonly baby: "👶";
|
|
243
|
+
readonly babyAngel: "👼";
|
|
244
|
+
readonly babyBottle: "🍼";
|
|
245
|
+
readonly babyChick: "🐤";
|
|
246
|
+
readonly babySymbol: "🚼";
|
|
247
|
+
readonly backArrow: "🔙";
|
|
248
|
+
readonly backhandIndexPointingDown: "👇";
|
|
249
|
+
readonly backhandIndexPointingLeft: "👈";
|
|
250
|
+
readonly backhandIndexPointingRight: "👉";
|
|
251
|
+
readonly backhandIndexPointingUp: "👆";
|
|
252
|
+
readonly backpack: "🎒";
|
|
253
|
+
readonly bacon: "🥓";
|
|
254
|
+
readonly badger: "🦡";
|
|
255
|
+
readonly badminton: "🏸";
|
|
256
|
+
readonly bagel: "🥯";
|
|
257
|
+
readonly baggageClaim: "🛄";
|
|
258
|
+
readonly baguetteBread: "🥖";
|
|
259
|
+
readonly balanceScale: "⚖️";
|
|
260
|
+
readonly balletDancer: "🧑🩰";
|
|
261
|
+
readonly balletShoes: "🩰";
|
|
262
|
+
readonly balloon: "🎈";
|
|
263
|
+
readonly ballotBoxWithBallot: "🗳️";
|
|
264
|
+
readonly banana: "🍌";
|
|
265
|
+
readonly banjo: "🪕";
|
|
266
|
+
readonly bank: "🏦";
|
|
267
|
+
readonly barberPole: "💈";
|
|
268
|
+
readonly barChart: "📊";
|
|
269
|
+
readonly baseball: "⚾";
|
|
270
|
+
readonly basket: "🧺";
|
|
271
|
+
readonly basketball: "🏀";
|
|
272
|
+
readonly bat: "🦇";
|
|
273
|
+
readonly bathtub: "🛁";
|
|
274
|
+
readonly battery: "🔋";
|
|
275
|
+
readonly bButton: "🅱️";
|
|
276
|
+
readonly beachWithUmbrella: "🏖️";
|
|
277
|
+
readonly beamingFaceWithSmilingEyes: "😁";
|
|
278
|
+
readonly beans: "🫘";
|
|
279
|
+
readonly bear: "🐻";
|
|
280
|
+
readonly beatingHeart: "💓";
|
|
281
|
+
readonly beaver: "🦫";
|
|
282
|
+
readonly bed: "🛏️";
|
|
283
|
+
readonly beerMug: "🍺";
|
|
284
|
+
readonly beetle: "🪲";
|
|
285
|
+
readonly bell: "🔔";
|
|
286
|
+
readonly bellhopBell: "🛎️";
|
|
287
|
+
readonly bellPepper: "🫑";
|
|
288
|
+
readonly bellWithSlash: "🔕";
|
|
289
|
+
readonly bentoBox: "🍱";
|
|
290
|
+
readonly beverageBox: "🧃";
|
|
291
|
+
readonly bicycle: "🚲";
|
|
292
|
+
readonly bikini: "👙";
|
|
293
|
+
readonly billedCap: "🧢";
|
|
294
|
+
readonly biohazard: "☣️";
|
|
295
|
+
readonly bird: "🐦";
|
|
296
|
+
readonly birthdayCake: "🎂";
|
|
297
|
+
readonly bison: "🦬";
|
|
298
|
+
readonly bitingLip: "🫦";
|
|
299
|
+
readonly blackBird: "🐦⬛";
|
|
300
|
+
readonly blackCat: "🐈⬛";
|
|
301
|
+
readonly blackCircle: "⚫";
|
|
302
|
+
readonly blackFlag: "🏴";
|
|
303
|
+
readonly blackHeart: "🖤";
|
|
304
|
+
readonly blackLargeSquare: "⬛";
|
|
305
|
+
readonly blackMediumSmallSquare: "◾";
|
|
306
|
+
readonly blackMediumSquare: "◼️";
|
|
307
|
+
readonly blackNib: "✒️";
|
|
308
|
+
readonly blackSmallSquare: "▪️";
|
|
309
|
+
readonly blackSquareButton: "🔲";
|
|
310
|
+
readonly blossom: "🌼";
|
|
311
|
+
readonly blowfish: "🐡";
|
|
312
|
+
readonly blueberries: "🫐";
|
|
313
|
+
readonly blueBook: "📘";
|
|
314
|
+
readonly blueCircle: "🔵";
|
|
315
|
+
readonly blueHeart: "💙";
|
|
316
|
+
readonly blueSquare: "🟦";
|
|
317
|
+
readonly boar: "🐗";
|
|
318
|
+
readonly bomb: "💣";
|
|
319
|
+
readonly bone: "🦴";
|
|
320
|
+
readonly bookmark: "🔖";
|
|
321
|
+
readonly bookmarkTabs: "📑";
|
|
322
|
+
readonly books: "📚";
|
|
323
|
+
readonly boomerang: "🪃";
|
|
324
|
+
readonly bottleWithPoppingCork: "🍾";
|
|
325
|
+
readonly bouquet: "💐";
|
|
326
|
+
readonly bowAndArrow: "🏹";
|
|
327
|
+
readonly bowling: "🎳";
|
|
328
|
+
readonly bowlWithSpoon: "🥣";
|
|
329
|
+
readonly boxingGlove: "🥊";
|
|
330
|
+
readonly boy: "👦";
|
|
331
|
+
readonly brain: "🧠";
|
|
332
|
+
readonly bread: "🍞";
|
|
333
|
+
readonly breastFeeding: "🤱";
|
|
334
|
+
readonly brick: "🧱";
|
|
335
|
+
readonly bridgeAtNight: "🌉";
|
|
336
|
+
readonly briefcase: "💼";
|
|
337
|
+
readonly briefs: "🩲";
|
|
338
|
+
readonly brightButton: "🔆";
|
|
339
|
+
readonly broccoli: "🥦";
|
|
340
|
+
readonly brokenChain: "⛓️💥";
|
|
341
|
+
readonly brokenHeart: "💔";
|
|
342
|
+
readonly broom: "🧹";
|
|
343
|
+
readonly brownCircle: "🟤";
|
|
344
|
+
readonly brownHeart: "🤎";
|
|
345
|
+
readonly brownMushroom: "🍄🟫";
|
|
346
|
+
readonly brownSquare: "🟫";
|
|
347
|
+
readonly bubbles: "🫧";
|
|
348
|
+
readonly bubbleTea: "🧋";
|
|
349
|
+
readonly bucket: "🪣";
|
|
350
|
+
readonly bug: "🐛";
|
|
351
|
+
readonly buildingConstruction: "🏗️";
|
|
352
|
+
readonly bulletTrain: "🚅";
|
|
353
|
+
readonly bullseye: "🎯";
|
|
354
|
+
readonly burrito: "🌯";
|
|
355
|
+
readonly bus: "🚌";
|
|
356
|
+
readonly busStop: "🚏";
|
|
357
|
+
readonly bustInSilhouette: "👤";
|
|
358
|
+
readonly bustsInSilhouette: "👥";
|
|
359
|
+
readonly butter: "🧈";
|
|
360
|
+
readonly butterfly: "🦋";
|
|
361
|
+
readonly cactus: "🌵";
|
|
362
|
+
readonly calendar: "📅";
|
|
363
|
+
readonly callMeHand: "🤙";
|
|
364
|
+
readonly camel: "🐪";
|
|
365
|
+
readonly camera: "📷";
|
|
366
|
+
readonly cameraWithFlash: "📸";
|
|
367
|
+
readonly camping: "🏕️";
|
|
368
|
+
readonly cancer: "♋";
|
|
369
|
+
readonly candle: "🕯️";
|
|
370
|
+
readonly candy: "🍬";
|
|
371
|
+
readonly cannedFood: "🥫";
|
|
372
|
+
readonly canoe: "🛶";
|
|
373
|
+
readonly capricorn: "♑";
|
|
374
|
+
readonly cardFileBox: "🗃️";
|
|
375
|
+
readonly cardIndex: "📇";
|
|
376
|
+
readonly cardIndexDividers: "🗂️";
|
|
377
|
+
readonly carouselHorse: "🎠";
|
|
378
|
+
readonly carpentrySaw: "🪚";
|
|
379
|
+
readonly carpStreamer: "🎏";
|
|
380
|
+
readonly carrot: "🥕";
|
|
381
|
+
readonly castle: "🏰";
|
|
382
|
+
readonly cat: "🐈";
|
|
383
|
+
readonly catFace: "🐱";
|
|
384
|
+
readonly catWithTearsOfJoy: "😹";
|
|
385
|
+
readonly catWithWrySmile: "😼";
|
|
386
|
+
readonly chains: "⛓️";
|
|
387
|
+
readonly chair: "🪑";
|
|
388
|
+
readonly chartDecreasing: "📉";
|
|
389
|
+
readonly chartIncreasing: "📈";
|
|
390
|
+
readonly chartIncreasingWithYen: "💹";
|
|
391
|
+
readonly checkBoxWithCheck: "☑️";
|
|
392
|
+
readonly checkMark: "✔️";
|
|
393
|
+
readonly checkMarkButton: "✅";
|
|
394
|
+
readonly cheeseWedge: "🧀";
|
|
395
|
+
readonly chequeredFlag: "🏁";
|
|
396
|
+
readonly cherries: "🍒";
|
|
397
|
+
readonly cherryBlossom: "🌸";
|
|
398
|
+
readonly chessPawn: "♟️";
|
|
399
|
+
readonly chestnut: "🌰";
|
|
400
|
+
readonly chicken: "🐔";
|
|
401
|
+
readonly child: "🧒";
|
|
402
|
+
readonly childrenCrossing: "🚸";
|
|
403
|
+
readonly chipmunk: "🐿️";
|
|
404
|
+
readonly chocolateBar: "🍫";
|
|
405
|
+
readonly chopsticks: "🥢";
|
|
406
|
+
readonly christmasTree: "🎄";
|
|
407
|
+
readonly church: "⛪";
|
|
408
|
+
readonly cigarette: "🚬";
|
|
409
|
+
readonly cinema: "🎦";
|
|
410
|
+
readonly circledM: "Ⓜ️";
|
|
411
|
+
readonly circusTent: "🎪";
|
|
412
|
+
readonly cityscape: "🏙️";
|
|
413
|
+
readonly cityscapeAtDusk: "🌆";
|
|
414
|
+
readonly clamp: "🗜️";
|
|
415
|
+
readonly clapperBoard: "🎬";
|
|
416
|
+
readonly clappingHands: "👏";
|
|
417
|
+
readonly classicalBuilding: "🏛️";
|
|
418
|
+
readonly clButton: "🆑";
|
|
419
|
+
readonly clinkingBeerMugs: "🍻";
|
|
420
|
+
readonly clinkingGlasses: "🥂";
|
|
421
|
+
readonly clipboard: "📋";
|
|
422
|
+
readonly clockwiseVerticalArrows: "🔃";
|
|
423
|
+
readonly closedBook: "📕";
|
|
424
|
+
readonly closedMailboxWithLoweredFlag: "📪";
|
|
425
|
+
readonly closedMailboxWithRaisedFlag: "📫";
|
|
426
|
+
readonly closedUmbrella: "🌂";
|
|
427
|
+
readonly cloud: "☁️";
|
|
428
|
+
readonly cloudWithLightning: "🌩️";
|
|
429
|
+
readonly cloudWithLightningAndRain: "⛈️";
|
|
430
|
+
readonly cloudWithRain: "🌧️";
|
|
431
|
+
readonly cloudWithSnow: "🌨️";
|
|
432
|
+
readonly clownFace: "🤡";
|
|
433
|
+
readonly clubSuit: "♣️";
|
|
434
|
+
readonly clutchBag: "👝";
|
|
435
|
+
readonly coat: "🧥";
|
|
436
|
+
readonly cockroach: "🪳";
|
|
437
|
+
readonly cocktailGlass: "🍸";
|
|
438
|
+
readonly coconut: "🥥";
|
|
439
|
+
readonly coffin: "⚰️";
|
|
440
|
+
readonly coin: "🪙";
|
|
441
|
+
readonly coldFace: "🥶";
|
|
442
|
+
readonly collision: "💥";
|
|
443
|
+
readonly comet: "☄️";
|
|
444
|
+
readonly compass: "🧭";
|
|
445
|
+
readonly computerDisk: "💽";
|
|
446
|
+
readonly computerMouse: "🖱️";
|
|
447
|
+
readonly confettiBall: "🎊";
|
|
448
|
+
readonly confoundedFace: "😖";
|
|
449
|
+
readonly confusedFace: "😕";
|
|
450
|
+
readonly construction: "🚧";
|
|
451
|
+
readonly constructionWorker: "👷";
|
|
452
|
+
readonly controlKnobs: "🎛️";
|
|
453
|
+
readonly convenienceStore: "🏪";
|
|
454
|
+
readonly cook: "🧑🍳";
|
|
455
|
+
readonly cookedRice: "🍚";
|
|
456
|
+
readonly cookie: "🍪";
|
|
457
|
+
readonly cooking: "🍳";
|
|
458
|
+
readonly coolButton: "🆒";
|
|
459
|
+
readonly copyright: "©️";
|
|
460
|
+
readonly coral: "🪸";
|
|
461
|
+
readonly couchAndLamp: "🛋️";
|
|
462
|
+
readonly counterclockwiseArrowsButton: "🔄";
|
|
463
|
+
readonly coupleWithHeart: "💑";
|
|
464
|
+
readonly coupleWithHeartManMan: "👨❤️👨";
|
|
465
|
+
readonly coupleWithHeartWomanMan: "👩❤️👨";
|
|
466
|
+
readonly coupleWithHeartWomanWoman: "👩❤️👩";
|
|
467
|
+
readonly cow: "🐄";
|
|
468
|
+
readonly cowboyHatFace: "🤠";
|
|
469
|
+
readonly cowFace: "🐮";
|
|
470
|
+
readonly crab: "🦀";
|
|
471
|
+
readonly crayon: "🖍️";
|
|
472
|
+
readonly creditCard: "💳";
|
|
473
|
+
readonly crescentMoon: "🌙";
|
|
474
|
+
readonly cricket: "🦗";
|
|
475
|
+
readonly cricketGame: "🏏";
|
|
476
|
+
readonly crocodile: "🐊";
|
|
477
|
+
readonly croissant: "🥐";
|
|
478
|
+
readonly crossedFingers: "🤞";
|
|
479
|
+
readonly crossedFlags: "🎌";
|
|
480
|
+
readonly crossedSwords: "⚔️";
|
|
481
|
+
readonly crossMark: "❌";
|
|
482
|
+
readonly crossMarkButton: "❎";
|
|
483
|
+
readonly crown: "👑";
|
|
484
|
+
readonly crutch: "🩼";
|
|
485
|
+
readonly cryingCat: "😿";
|
|
486
|
+
readonly cryingFace: "😢";
|
|
487
|
+
readonly crystalBall: "🔮";
|
|
488
|
+
readonly cucumber: "🥒";
|
|
489
|
+
readonly cupcake: "🧁";
|
|
490
|
+
readonly cupWithStraw: "🥤";
|
|
491
|
+
readonly curlingStone: "🥌";
|
|
492
|
+
readonly curlyLoop: "➰";
|
|
493
|
+
readonly currencyExchange: "💱";
|
|
494
|
+
readonly curryRice: "🍛";
|
|
495
|
+
readonly custard: "🍮";
|
|
496
|
+
readonly customs: "🛃";
|
|
497
|
+
readonly cutOfMeat: "🥩";
|
|
498
|
+
readonly cyclone: "🌀";
|
|
499
|
+
readonly dagger: "🗡️";
|
|
500
|
+
readonly dango: "🍡";
|
|
501
|
+
readonly dashingAway: "💨";
|
|
502
|
+
readonly deafMan: "🧏♂️";
|
|
503
|
+
readonly deafPerson: "🧏";
|
|
504
|
+
readonly deafWoman: "🧏♀️";
|
|
505
|
+
readonly deciduousTree: "🌳";
|
|
506
|
+
readonly deer: "🦌";
|
|
507
|
+
readonly deliveryTruck: "🚚";
|
|
508
|
+
readonly departmentStore: "🏬";
|
|
509
|
+
readonly derelictHouse: "🏚️";
|
|
510
|
+
readonly desert: "🏜️";
|
|
511
|
+
readonly desertIsland: "🏝️";
|
|
512
|
+
readonly desktopComputer: "🖥️";
|
|
513
|
+
readonly detective: "🕵️";
|
|
514
|
+
readonly diamondSuit: "♦️";
|
|
515
|
+
readonly diamondWithADot: "💠";
|
|
516
|
+
readonly dimButton: "🔅";
|
|
517
|
+
readonly disappointedFace: "😞";
|
|
518
|
+
readonly disguisedFace: "🥸";
|
|
519
|
+
readonly distortedFace: "";
|
|
520
|
+
readonly divide: "➗";
|
|
521
|
+
readonly divingMask: "🤿";
|
|
522
|
+
readonly diyaLamp: "🪔";
|
|
523
|
+
readonly dizzy: "💫";
|
|
524
|
+
readonly dna: "🧬";
|
|
525
|
+
readonly dodo: "🦤";
|
|
526
|
+
readonly dog: "🐕";
|
|
527
|
+
readonly dogFace: "🐶";
|
|
528
|
+
readonly dollarBanknote: "💵";
|
|
529
|
+
readonly dolphin: "🐬";
|
|
530
|
+
readonly donkey: "🫏";
|
|
531
|
+
readonly door: "🚪";
|
|
532
|
+
readonly dottedLineFace: "🫥";
|
|
533
|
+
readonly dottedSixPointedStar: "🔯";
|
|
534
|
+
readonly doubleCurlyLoop: "➿";
|
|
535
|
+
readonly doubleExclamationMark: "‼️";
|
|
536
|
+
readonly doughnut: "🍩";
|
|
537
|
+
readonly dove: "🕊️";
|
|
538
|
+
readonly downArrow: "⬇️";
|
|
539
|
+
readonly downcastFaceWithSweat: "😓";
|
|
540
|
+
readonly downLeftArrow: "↙️";
|
|
541
|
+
readonly downRightArrow: "↘️";
|
|
542
|
+
readonly downwardsButton: "🔽";
|
|
543
|
+
readonly dragon: "🐉";
|
|
544
|
+
readonly dragonFace: "🐲";
|
|
545
|
+
readonly dress: "👗";
|
|
546
|
+
readonly droolingFace: "🤤";
|
|
547
|
+
readonly droplet: "💧";
|
|
548
|
+
readonly dropOfBlood: "🩸";
|
|
549
|
+
readonly drum: "🥁";
|
|
550
|
+
readonly duck: "🦆";
|
|
551
|
+
readonly dumpling: "🥟";
|
|
552
|
+
readonly dvd: "📀";
|
|
553
|
+
readonly eagle: "🦅";
|
|
554
|
+
readonly ear: "👂";
|
|
555
|
+
readonly earOfCorn: "🌽";
|
|
556
|
+
readonly earWithHearingAid: "🦻";
|
|
557
|
+
readonly egg: "🥚";
|
|
558
|
+
readonly eggplant: "🍆";
|
|
559
|
+
readonly eightOClock: "🕗";
|
|
560
|
+
readonly eightPointedStar: "✴️";
|
|
561
|
+
readonly eightSpokedAsterisk: "✳️";
|
|
562
|
+
readonly eightThirty: "🕣";
|
|
563
|
+
readonly ejectButton: "⏏️";
|
|
564
|
+
readonly electricPlug: "🔌";
|
|
565
|
+
readonly elephant: "🐘";
|
|
566
|
+
readonly elevator: "🛗";
|
|
567
|
+
readonly elevenOClock: "🕚";
|
|
568
|
+
readonly elevenThirty: "🕦";
|
|
569
|
+
readonly elf: "🧝";
|
|
570
|
+
readonly eMail: "📧";
|
|
571
|
+
readonly emptyNest: "🪹";
|
|
572
|
+
readonly endArrow: "🔚";
|
|
573
|
+
readonly enragedFace: "😡";
|
|
574
|
+
readonly envelope: "✉️";
|
|
575
|
+
readonly envelopeWithArrow: "📩";
|
|
576
|
+
readonly euroBanknote: "💶";
|
|
577
|
+
readonly evergreenTree: "🌲";
|
|
578
|
+
readonly ewe: "🐑";
|
|
579
|
+
readonly exclamationQuestionMark: "⁉️";
|
|
580
|
+
readonly explodingHead: "🤯";
|
|
581
|
+
readonly expressionlessFace: "😑";
|
|
582
|
+
readonly eye: "👁️";
|
|
583
|
+
readonly eyeInSpeechBubble: "👁️🗨️";
|
|
584
|
+
readonly eyes: "👀";
|
|
585
|
+
readonly faceBlowingAKiss: "😘";
|
|
586
|
+
readonly faceExhaling: "😮💨";
|
|
587
|
+
readonly faceHoldingBackTears: "🥹";
|
|
588
|
+
readonly faceInClouds: "😶🌫️";
|
|
589
|
+
readonly faceSavoringFood: "😋";
|
|
590
|
+
readonly faceScreamingInFear: "😱";
|
|
591
|
+
readonly faceVomiting: "🤮";
|
|
592
|
+
readonly faceWithBagsUnderEyes: "";
|
|
593
|
+
readonly faceWithCrossedOutEyes: "😵";
|
|
594
|
+
readonly faceWithDiagonalMouth: "🫤";
|
|
595
|
+
readonly faceWithHandOverMouth: "🤭";
|
|
596
|
+
readonly faceWithHeadBandage: "🤕";
|
|
597
|
+
readonly faceWithMedicalMask: "😷";
|
|
598
|
+
readonly faceWithMonocle: "🧐";
|
|
599
|
+
readonly faceWithOpenEyesAndHandOverMouth: "🫢";
|
|
600
|
+
readonly faceWithOpenMouth: "😮";
|
|
601
|
+
readonly faceWithoutMouth: "😶";
|
|
602
|
+
readonly faceWithPeekingEye: "🫣";
|
|
603
|
+
readonly faceWithRaisedEyebrow: "🤨";
|
|
604
|
+
readonly faceWithRollingEyes: "🙄";
|
|
605
|
+
readonly faceWithSpiralEyes: "😵💫";
|
|
606
|
+
readonly faceWithSteamFromNose: "😤";
|
|
607
|
+
readonly faceWithSymbolsOnMouth: "🤬";
|
|
608
|
+
readonly faceWithTearsOfJoy: "😂";
|
|
609
|
+
readonly faceWithThermometer: "🤒";
|
|
610
|
+
readonly faceWithTongue: "😛";
|
|
611
|
+
readonly factory: "🏭";
|
|
612
|
+
readonly factoryWorker: "🧑🏭";
|
|
613
|
+
readonly fairy: "🧚";
|
|
614
|
+
readonly falafel: "🧆";
|
|
615
|
+
readonly fallenLeaf: "🍂";
|
|
616
|
+
readonly family: "👪";
|
|
617
|
+
readonly familyAdultAdultChild: "🧑🧑🧒";
|
|
618
|
+
readonly familyAdultAdultChildChild: "🧑🧑🧒🧒";
|
|
619
|
+
readonly familyAdultChild: "🧑🧒";
|
|
620
|
+
readonly familyAdultChildChild: "🧑🧒🧒";
|
|
621
|
+
readonly familyManBoy: "👨👦";
|
|
622
|
+
readonly familyManBoyBoy: "👨👦👦";
|
|
623
|
+
readonly familyManGirl: "👨👧";
|
|
624
|
+
readonly familyManGirlBoy: "👨👧👦";
|
|
625
|
+
readonly familyManGirlGirl: "👨👧👧";
|
|
626
|
+
readonly familyManManBoy: "👨👨👦";
|
|
627
|
+
readonly familyManManBoyBoy: "👨👨👦👦";
|
|
628
|
+
readonly familyManManGirl: "👨👨👧";
|
|
629
|
+
readonly familyManManGirlBoy: "👨👨👧👦";
|
|
630
|
+
readonly familyManManGirlGirl: "👨👨👧👧";
|
|
631
|
+
readonly familyManWomanBoy: "👨👩👦";
|
|
632
|
+
readonly familyManWomanBoyBoy: "👨👩👦👦";
|
|
633
|
+
readonly familyManWomanGirl: "👨👩👧";
|
|
634
|
+
readonly familyManWomanGirlBoy: "👨👩👧👦";
|
|
635
|
+
readonly familyManWomanGirlGirl: "👨👩👧👧";
|
|
636
|
+
readonly familyWomanBoy: "👩👦";
|
|
637
|
+
readonly familyWomanBoyBoy: "👩👦👦";
|
|
638
|
+
readonly familyWomanGirl: "👩👧";
|
|
639
|
+
readonly familyWomanGirlBoy: "👩👧👦";
|
|
640
|
+
readonly familyWomanGirlGirl: "👩👧👧";
|
|
641
|
+
readonly familyWomanWomanBoy: "👩👩👦";
|
|
642
|
+
readonly familyWomanWomanBoyBoy: "👩👩👦👦";
|
|
643
|
+
readonly familyWomanWomanGirl: "👩👩👧";
|
|
644
|
+
readonly familyWomanWomanGirlBoy: "👩👩👧👦";
|
|
645
|
+
readonly familyWomanWomanGirlGirl: "👩👩👧👧";
|
|
646
|
+
readonly farmer: "🧑🌾";
|
|
647
|
+
readonly fastDownButton: "⏬";
|
|
648
|
+
readonly fastForwardButton: "⏩";
|
|
649
|
+
readonly fastReverseButton: "⏪";
|
|
650
|
+
readonly fastUpButton: "⏫";
|
|
651
|
+
readonly faxMachine: "📠";
|
|
652
|
+
readonly fearfulFace: "😨";
|
|
653
|
+
readonly feather: "🪶";
|
|
654
|
+
readonly femaleSign: "♀️";
|
|
655
|
+
readonly ferrisWheel: "🎡";
|
|
656
|
+
readonly ferry: "⛴️";
|
|
657
|
+
readonly fieldHockey: "🏑";
|
|
658
|
+
readonly fightCloud: "";
|
|
659
|
+
readonly fileCabinet: "🗄️";
|
|
660
|
+
readonly fileFolder: "📁";
|
|
661
|
+
readonly filmFrames: "🎞️";
|
|
662
|
+
readonly filmProjector: "📽️";
|
|
663
|
+
readonly fingerprint: "";
|
|
664
|
+
readonly fire: "🔥";
|
|
665
|
+
readonly firecracker: "🧨";
|
|
666
|
+
readonly fireEngine: "🚒";
|
|
667
|
+
readonly fireExtinguisher: "🧯";
|
|
668
|
+
readonly firefighter: "🧑🚒";
|
|
669
|
+
readonly fireworks: "🎆";
|
|
670
|
+
readonly firstQuarterMoon: "🌓";
|
|
671
|
+
readonly firstQuarterMoonFace: "🌛";
|
|
672
|
+
readonly fish: "🐟";
|
|
673
|
+
readonly fishCakeWithSwirl: "🍥";
|
|
674
|
+
readonly fishingPole: "🎣";
|
|
675
|
+
readonly fiveOClock: "🕔";
|
|
676
|
+
readonly fiveThirty: "🕠";
|
|
677
|
+
readonly flagAfghanistan: "🇦🇫";
|
|
678
|
+
readonly flagAlandIslands: "🇦🇽";
|
|
679
|
+
readonly flagAlbania: "🇦🇱";
|
|
680
|
+
readonly flagAlgeria: "🇩🇿";
|
|
681
|
+
readonly flagAmericanSamoa: "🇦🇸";
|
|
682
|
+
readonly flagAndorra: "🇦🇩";
|
|
683
|
+
readonly flagAngola: "🇦🇴";
|
|
684
|
+
readonly flagAnguilla: "🇦🇮";
|
|
685
|
+
readonly flagAntarctica: "🇦🇶";
|
|
686
|
+
readonly flagAntiguaBarbuda: "🇦🇬";
|
|
687
|
+
readonly flagArgentina: "🇦🇷";
|
|
688
|
+
readonly flagArmenia: "🇦🇲";
|
|
689
|
+
readonly flagAruba: "🇦🇼";
|
|
690
|
+
readonly flagAscensionIsland: "🇦🇨";
|
|
691
|
+
readonly flagAustralia: "🇦🇺";
|
|
692
|
+
readonly flagAustria: "🇦🇹";
|
|
693
|
+
readonly flagAzerbaijan: "🇦🇿";
|
|
694
|
+
readonly flagBahamas: "🇧🇸";
|
|
695
|
+
readonly flagBahrain: "🇧🇭";
|
|
696
|
+
readonly flagBangladesh: "🇧🇩";
|
|
697
|
+
readonly flagBarbados: "🇧🇧";
|
|
698
|
+
readonly flagBelarus: "🇧🇾";
|
|
699
|
+
readonly flagBelgium: "🇧🇪";
|
|
700
|
+
readonly flagBelize: "🇧🇿";
|
|
701
|
+
readonly flagBenin: "🇧🇯";
|
|
702
|
+
readonly flagBermuda: "🇧🇲";
|
|
703
|
+
readonly flagBhutan: "🇧🇹";
|
|
704
|
+
readonly flagBolivia: "🇧🇴";
|
|
705
|
+
readonly flagBosniaHerzegovina: "🇧🇦";
|
|
706
|
+
readonly flagBotswana: "🇧🇼";
|
|
707
|
+
readonly flagBouvetIsland: "🇧🇻";
|
|
708
|
+
readonly flagBrazil: "🇧🇷";
|
|
709
|
+
readonly flagBritishIndianOceanTerritory: "🇮🇴";
|
|
710
|
+
readonly flagBritishVirginIslands: "🇻🇬";
|
|
711
|
+
readonly flagBrunei: "🇧🇳";
|
|
712
|
+
readonly flagBulgaria: "🇧🇬";
|
|
713
|
+
readonly flagBurkinaFaso: "🇧🇫";
|
|
714
|
+
readonly flagBurundi: "🇧🇮";
|
|
715
|
+
readonly flagCambodia: "🇰🇭";
|
|
716
|
+
readonly flagCameroon: "🇨🇲";
|
|
717
|
+
readonly flagCanada: "🇨🇦";
|
|
718
|
+
readonly flagCanaryIslands: "🇮🇨";
|
|
719
|
+
readonly flagCapeVerde: "🇨🇻";
|
|
720
|
+
readonly flagCaribbeanNetherlands: "🇧🇶";
|
|
721
|
+
readonly flagCaymanIslands: "🇰🇾";
|
|
722
|
+
readonly flagCentralAfricanRepublic: "🇨🇫";
|
|
723
|
+
readonly flagCeutaMelilla: "🇪🇦";
|
|
724
|
+
readonly flagChad: "🇹🇩";
|
|
725
|
+
readonly flagChile: "🇨🇱";
|
|
726
|
+
readonly flagChina: "🇨🇳";
|
|
727
|
+
readonly flagChristmasIsland: "🇨🇽";
|
|
728
|
+
readonly flagClippertonIsland: "🇨🇵";
|
|
729
|
+
readonly flagCocosIslands: "🇨🇨";
|
|
730
|
+
readonly flagColombia: "🇨🇴";
|
|
731
|
+
readonly flagComoros: "🇰🇲";
|
|
732
|
+
readonly flagCongoBrazzaville: "🇨🇬";
|
|
733
|
+
readonly flagCongoKinshasa: "🇨🇩";
|
|
734
|
+
readonly flagCookIslands: "🇨🇰";
|
|
735
|
+
readonly flagCostaRica: "🇨🇷";
|
|
736
|
+
readonly flagCoteDIvoire: "🇨🇮";
|
|
737
|
+
readonly flagCroatia: "🇭🇷";
|
|
738
|
+
readonly flagCuba: "🇨🇺";
|
|
739
|
+
readonly flagCuracao: "🇨🇼";
|
|
740
|
+
readonly flagCyprus: "🇨🇾";
|
|
741
|
+
readonly flagCzechia: "🇨🇿";
|
|
742
|
+
readonly flagDenmark: "🇩🇰";
|
|
743
|
+
readonly flagDiegoGarcia: "🇩🇬";
|
|
744
|
+
readonly flagDjibouti: "🇩🇯";
|
|
745
|
+
readonly flagDominica: "🇩🇲";
|
|
746
|
+
readonly flagDominicanRepublic: "🇩🇴";
|
|
747
|
+
readonly flagEcuador: "🇪🇨";
|
|
748
|
+
readonly flagEgypt: "🇪🇬";
|
|
749
|
+
readonly flagElSalvador: "🇸🇻";
|
|
750
|
+
readonly flagEngland: "🏴";
|
|
751
|
+
readonly flagEquatorialGuinea: "🇬🇶";
|
|
752
|
+
readonly flagEritrea: "🇪🇷";
|
|
753
|
+
readonly flagEstonia: "🇪🇪";
|
|
754
|
+
readonly flagEswatini: "🇸🇿";
|
|
755
|
+
readonly flagEthiopia: "🇪🇹";
|
|
756
|
+
readonly flagEuropeanUnion: "🇪🇺";
|
|
757
|
+
readonly flagFalklandIslands: "🇫🇰";
|
|
758
|
+
readonly flagFaroeIslands: "🇫🇴";
|
|
759
|
+
readonly flagFiji: "🇫🇯";
|
|
760
|
+
readonly flagFinland: "🇫🇮";
|
|
761
|
+
readonly flagFrance: "🇫🇷";
|
|
762
|
+
readonly flagFrenchGuiana: "🇬🇫";
|
|
763
|
+
readonly flagFrenchPolynesia: "🇵🇫";
|
|
764
|
+
readonly flagFrenchSouthernTerritories: "🇹🇫";
|
|
765
|
+
readonly flagGabon: "🇬🇦";
|
|
766
|
+
readonly flagGambia: "🇬🇲";
|
|
767
|
+
readonly flagGeorgia: "🇬🇪";
|
|
768
|
+
readonly flagGermany: "🇩🇪";
|
|
769
|
+
readonly flagGhana: "🇬🇭";
|
|
770
|
+
readonly flagGibraltar: "🇬🇮";
|
|
771
|
+
readonly flagGreece: "🇬🇷";
|
|
772
|
+
readonly flagGreenland: "🇬🇱";
|
|
773
|
+
readonly flagGrenada: "🇬🇩";
|
|
774
|
+
readonly flagGuadeloupe: "🇬🇵";
|
|
775
|
+
readonly flagGuam: "🇬🇺";
|
|
776
|
+
readonly flagGuatemala: "🇬🇹";
|
|
777
|
+
readonly flagGuernsey: "🇬🇬";
|
|
778
|
+
readonly flagGuinea: "🇬🇳";
|
|
779
|
+
readonly flagGuineaBissau: "🇬🇼";
|
|
780
|
+
readonly flagGuyana: "🇬🇾";
|
|
781
|
+
readonly flagHaiti: "🇭🇹";
|
|
782
|
+
readonly flagHeardMcdonaldIslands: "🇭🇲";
|
|
783
|
+
readonly flagHonduras: "🇭🇳";
|
|
784
|
+
readonly flagHongKongSarChina: "🇭🇰";
|
|
785
|
+
readonly flagHungary: "🇭🇺";
|
|
786
|
+
readonly flagIceland: "🇮🇸";
|
|
787
|
+
readonly flagIndia: "🇮🇳";
|
|
788
|
+
readonly flagIndonesia: "🇮🇩";
|
|
789
|
+
readonly flagInHole: "⛳";
|
|
790
|
+
readonly flagIran: "🇮🇷";
|
|
791
|
+
readonly flagIraq: "🇮🇶";
|
|
792
|
+
readonly flagIreland: "🇮🇪";
|
|
793
|
+
readonly flagIsleOfMan: "🇮🇲";
|
|
794
|
+
readonly flagIsrael: "🇮🇱";
|
|
795
|
+
readonly flagItaly: "🇮🇹";
|
|
796
|
+
readonly flagJamaica: "🇯🇲";
|
|
797
|
+
readonly flagJapan: "🇯🇵";
|
|
798
|
+
readonly flagJersey: "🇯🇪";
|
|
799
|
+
readonly flagJordan: "🇯🇴";
|
|
800
|
+
readonly flagKazakhstan: "🇰🇿";
|
|
801
|
+
readonly flagKenya: "🇰🇪";
|
|
802
|
+
readonly flagKiribati: "🇰🇮";
|
|
803
|
+
readonly flagKosovo: "🇽🇰";
|
|
804
|
+
readonly flagKuwait: "🇰🇼";
|
|
805
|
+
readonly flagKyrgyzstan: "🇰🇬";
|
|
806
|
+
readonly flagLaos: "🇱🇦";
|
|
807
|
+
readonly flagLatvia: "🇱🇻";
|
|
808
|
+
readonly flagLebanon: "🇱🇧";
|
|
809
|
+
readonly flagLesotho: "🇱🇸";
|
|
810
|
+
readonly flagLiberia: "🇱🇷";
|
|
811
|
+
readonly flagLibya: "🇱🇾";
|
|
812
|
+
readonly flagLiechtenstein: "🇱🇮";
|
|
813
|
+
readonly flagLithuania: "🇱🇹";
|
|
814
|
+
readonly flagLuxembourg: "🇱🇺";
|
|
815
|
+
readonly flagMacaoSarChina: "🇲🇴";
|
|
816
|
+
readonly flagMadagascar: "🇲🇬";
|
|
817
|
+
readonly flagMalawi: "🇲🇼";
|
|
818
|
+
readonly flagMalaysia: "🇲🇾";
|
|
819
|
+
readonly flagMaldives: "🇲🇻";
|
|
820
|
+
readonly flagMali: "🇲🇱";
|
|
821
|
+
readonly flagMalta: "🇲🇹";
|
|
822
|
+
readonly flagMarshallIslands: "🇲🇭";
|
|
823
|
+
readonly flagMartinique: "🇲🇶";
|
|
824
|
+
readonly flagMauritania: "🇲🇷";
|
|
825
|
+
readonly flagMauritius: "🇲🇺";
|
|
826
|
+
readonly flagMayotte: "🇾🇹";
|
|
827
|
+
readonly flagMexico: "🇲🇽";
|
|
828
|
+
readonly flagMicronesia: "🇫🇲";
|
|
829
|
+
readonly flagMoldova: "🇲🇩";
|
|
830
|
+
readonly flagMonaco: "🇲🇨";
|
|
831
|
+
readonly flagMongolia: "🇲🇳";
|
|
832
|
+
readonly flagMontenegro: "🇲🇪";
|
|
833
|
+
readonly flagMontserrat: "🇲🇸";
|
|
834
|
+
readonly flagMorocco: "🇲🇦";
|
|
835
|
+
readonly flagMozambique: "🇲🇿";
|
|
836
|
+
readonly flagMyanmar: "🇲🇲";
|
|
837
|
+
readonly flagNamibia: "🇳🇦";
|
|
838
|
+
readonly flagNauru: "🇳🇷";
|
|
839
|
+
readonly flagNepal: "🇳🇵";
|
|
840
|
+
readonly flagNetherlands: "🇳🇱";
|
|
841
|
+
readonly flagNewCaledonia: "🇳🇨";
|
|
842
|
+
readonly flagNewZealand: "🇳🇿";
|
|
843
|
+
readonly flagNicaragua: "🇳🇮";
|
|
844
|
+
readonly flagNiger: "🇳🇪";
|
|
845
|
+
readonly flagNigeria: "🇳🇬";
|
|
846
|
+
readonly flagNiue: "🇳🇺";
|
|
847
|
+
readonly flagNorfolkIsland: "🇳🇫";
|
|
848
|
+
readonly flagNorthernMarianaIslands: "🇲🇵";
|
|
849
|
+
readonly flagNorthKorea: "🇰🇵";
|
|
850
|
+
readonly flagNorthMacedonia: "🇲🇰";
|
|
851
|
+
readonly flagNorway: "🇳🇴";
|
|
852
|
+
readonly flagOman: "🇴🇲";
|
|
853
|
+
readonly flagPakistan: "🇵🇰";
|
|
854
|
+
readonly flagPalau: "🇵🇼";
|
|
855
|
+
readonly flagPalestinianTerritories: "🇵🇸";
|
|
856
|
+
readonly flagPanama: "🇵🇦";
|
|
857
|
+
readonly flagPapuaNewGuinea: "🇵🇬";
|
|
858
|
+
readonly flagParaguay: "🇵🇾";
|
|
859
|
+
readonly flagPeru: "🇵🇪";
|
|
860
|
+
readonly flagPhilippines: "🇵🇭";
|
|
861
|
+
readonly flagPitcairnIslands: "🇵🇳";
|
|
862
|
+
readonly flagPoland: "🇵🇱";
|
|
863
|
+
readonly flagPortugal: "🇵🇹";
|
|
864
|
+
readonly flagPuertoRico: "🇵🇷";
|
|
865
|
+
readonly flagQatar: "🇶🇦";
|
|
866
|
+
readonly flagReunion: "🇷🇪";
|
|
867
|
+
readonly flagRomania: "🇷🇴";
|
|
868
|
+
readonly flagRussia: "🇷🇺";
|
|
869
|
+
readonly flagRwanda: "🇷🇼";
|
|
870
|
+
readonly flagSamoa: "🇼🇸";
|
|
871
|
+
readonly flagSanMarino: "🇸🇲";
|
|
872
|
+
readonly flagSaoTomePrincipe: "🇸🇹";
|
|
873
|
+
readonly flagSark: "🇨🇶";
|
|
874
|
+
readonly flagSaudiArabia: "🇸🇦";
|
|
875
|
+
readonly flagScotland: "🏴";
|
|
876
|
+
readonly flagSenegal: "🇸🇳";
|
|
877
|
+
readonly flagSerbia: "🇷🇸";
|
|
878
|
+
readonly flagSeychelles: "🇸🇨";
|
|
879
|
+
readonly flagSierraLeone: "🇸🇱";
|
|
880
|
+
readonly flagSingapore: "🇸🇬";
|
|
881
|
+
readonly flagSintMaarten: "🇸🇽";
|
|
882
|
+
readonly flagSlovakia: "🇸🇰";
|
|
883
|
+
readonly flagSlovenia: "🇸🇮";
|
|
884
|
+
readonly flagSolomonIslands: "🇸🇧";
|
|
885
|
+
readonly flagSomalia: "🇸🇴";
|
|
886
|
+
readonly flagSouthAfrica: "🇿🇦";
|
|
887
|
+
readonly flagSouthGeorgiaSouthSandwichIslands: "🇬🇸";
|
|
888
|
+
readonly flagSouthKorea: "🇰🇷";
|
|
889
|
+
readonly flagSouthSudan: "🇸🇸";
|
|
890
|
+
readonly flagSpain: "🇪🇸";
|
|
891
|
+
readonly flagSriLanka: "🇱🇰";
|
|
892
|
+
readonly flagStBarthelemy: "🇧🇱";
|
|
893
|
+
readonly flagStHelena: "🇸🇭";
|
|
894
|
+
readonly flagStKittsNevis: "🇰🇳";
|
|
895
|
+
readonly flagStLucia: "🇱🇨";
|
|
896
|
+
readonly flagStMartin: "🇲🇫";
|
|
897
|
+
readonly flagStPierreMiquelon: "🇵🇲";
|
|
898
|
+
readonly flagStVincentGrenadines: "🇻🇨";
|
|
899
|
+
readonly flagSudan: "🇸🇩";
|
|
900
|
+
readonly flagSuriname: "🇸🇷";
|
|
901
|
+
readonly flagSvalbardJanMayen: "🇸🇯";
|
|
902
|
+
readonly flagSweden: "🇸🇪";
|
|
903
|
+
readonly flagSwitzerland: "🇨🇭";
|
|
904
|
+
readonly flagSyria: "🇸🇾";
|
|
905
|
+
readonly flagTaiwan: "🇹🇼";
|
|
906
|
+
readonly flagTajikistan: "🇹🇯";
|
|
907
|
+
readonly flagTanzania: "🇹🇿";
|
|
908
|
+
readonly flagThailand: "🇹🇭";
|
|
909
|
+
readonly flagTimorLeste: "🇹🇱";
|
|
910
|
+
readonly flagTogo: "🇹🇬";
|
|
911
|
+
readonly flagTokelau: "🇹🇰";
|
|
912
|
+
readonly flagTonga: "🇹🇴";
|
|
913
|
+
readonly flagTrinidadTobago: "🇹🇹";
|
|
914
|
+
readonly flagTristanDaCunha: "🇹🇦";
|
|
915
|
+
readonly flagTunisia: "🇹🇳";
|
|
916
|
+
readonly flagTurkiye: "🇹🇷";
|
|
917
|
+
readonly flagTurkmenistan: "🇹🇲";
|
|
918
|
+
readonly flagTurksCaicosIslands: "🇹🇨";
|
|
919
|
+
readonly flagTuvalu: "🇹🇻";
|
|
920
|
+
readonly flagUganda: "🇺🇬";
|
|
921
|
+
readonly flagUkraine: "🇺🇦";
|
|
922
|
+
readonly flagUnitedArabEmirates: "🇦🇪";
|
|
923
|
+
readonly flagUnitedKingdom: "🇬🇧";
|
|
924
|
+
readonly flagUnitedNations: "🇺🇳";
|
|
925
|
+
readonly flagUnitedStates: "🇺🇸";
|
|
926
|
+
readonly flagUruguay: "🇺🇾";
|
|
927
|
+
readonly flagUSOutlyingIslands: "🇺🇲";
|
|
928
|
+
readonly flagUSVirginIslands: "🇻🇮";
|
|
929
|
+
readonly flagUzbekistan: "🇺🇿";
|
|
930
|
+
readonly flagVanuatu: "🇻🇺";
|
|
931
|
+
readonly flagVaticanCity: "🇻🇦";
|
|
932
|
+
readonly flagVenezuela: "🇻🇪";
|
|
933
|
+
readonly flagVietnam: "🇻🇳";
|
|
934
|
+
readonly flagWales: "🏴";
|
|
935
|
+
readonly flagWallisFutuna: "🇼🇫";
|
|
936
|
+
readonly flagWesternSahara: "🇪🇭";
|
|
937
|
+
readonly flagYemen: "🇾🇪";
|
|
938
|
+
readonly flagZambia: "🇿🇲";
|
|
939
|
+
readonly flagZimbabwe: "🇿🇼";
|
|
940
|
+
readonly flamingo: "🦩";
|
|
941
|
+
readonly flashlight: "🔦";
|
|
942
|
+
readonly flatbread: "🫓";
|
|
943
|
+
readonly flatShoe: "🥿";
|
|
944
|
+
readonly fleurDeLis: "⚜️";
|
|
945
|
+
readonly flexedBiceps: "💪";
|
|
946
|
+
readonly floppyDisk: "💾";
|
|
947
|
+
readonly flowerPlayingCards: "🎴";
|
|
948
|
+
readonly flushedFace: "😳";
|
|
949
|
+
readonly flute: "🪈";
|
|
950
|
+
readonly fly: "🪰";
|
|
951
|
+
readonly flyingDisc: "🥏";
|
|
952
|
+
readonly flyingSaucer: "🛸";
|
|
953
|
+
readonly fog: "🌫️";
|
|
954
|
+
readonly foggy: "🌁";
|
|
955
|
+
readonly foldedHands: "🙏";
|
|
956
|
+
readonly foldingHandFan: "🪭";
|
|
957
|
+
readonly fondue: "🫕";
|
|
958
|
+
readonly foot: "🦶";
|
|
959
|
+
readonly footprints: "👣";
|
|
960
|
+
readonly forkAndKnife: "🍴";
|
|
961
|
+
readonly forkAndKnifeWithPlate: "🍽️";
|
|
962
|
+
readonly fortuneCookie: "🥠";
|
|
963
|
+
readonly fountain: "⛲";
|
|
964
|
+
readonly fountainPen: "🖋️";
|
|
965
|
+
readonly fourLeafClover: "🍀";
|
|
966
|
+
readonly fourOClock: "🕓";
|
|
967
|
+
readonly fourThirty: "🕟";
|
|
968
|
+
readonly fox: "🦊";
|
|
969
|
+
readonly framedPicture: "🖼️";
|
|
970
|
+
readonly freeButton: "🆓";
|
|
971
|
+
readonly frenchFries: "🍟";
|
|
972
|
+
readonly friedShrimp: "🍤";
|
|
973
|
+
readonly frog: "🐸";
|
|
974
|
+
readonly frontFacingBabyChick: "🐥";
|
|
975
|
+
readonly frowningFace: "☹️";
|
|
976
|
+
readonly frowningFaceWithOpenMouth: "😦";
|
|
977
|
+
readonly fuelPump: "⛽";
|
|
978
|
+
readonly fullMoon: "🌕";
|
|
979
|
+
readonly fullMoonFace: "🌝";
|
|
980
|
+
readonly funeralUrn: "⚱️";
|
|
981
|
+
readonly gameDie: "🎲";
|
|
982
|
+
readonly garlic: "🧄";
|
|
983
|
+
readonly gear: "⚙️";
|
|
984
|
+
readonly gemini: "♊";
|
|
985
|
+
readonly gemStone: "💎";
|
|
986
|
+
readonly genie: "🧞";
|
|
987
|
+
readonly ghost: "👻";
|
|
988
|
+
readonly gingerRoot: "🫚";
|
|
989
|
+
readonly giraffe: "🦒";
|
|
990
|
+
readonly girl: "👧";
|
|
991
|
+
readonly glasses: "👓";
|
|
992
|
+
readonly glassOfMilk: "🥛";
|
|
993
|
+
readonly globeShowingAmericas: "🌎";
|
|
994
|
+
readonly globeShowingAsiaAustralia: "🌏";
|
|
995
|
+
readonly globeShowingEuropeAfrica: "🌍";
|
|
996
|
+
readonly globeWithMeridians: "🌐";
|
|
997
|
+
readonly gloves: "🧤";
|
|
998
|
+
readonly glowingStar: "🌟";
|
|
999
|
+
readonly goalNet: "🥅";
|
|
1000
|
+
readonly goat: "🐐";
|
|
1001
|
+
readonly goblin: "👺";
|
|
1002
|
+
readonly goggles: "🥽";
|
|
1003
|
+
readonly goose: "🪿";
|
|
1004
|
+
readonly gorilla: "🦍";
|
|
1005
|
+
readonly graduationCap: "🎓";
|
|
1006
|
+
readonly grapes: "🍇";
|
|
1007
|
+
readonly greenApple: "🍏";
|
|
1008
|
+
readonly greenBook: "📗";
|
|
1009
|
+
readonly greenCircle: "🟢";
|
|
1010
|
+
readonly greenHeart: "💚";
|
|
1011
|
+
readonly greenSalad: "🥗";
|
|
1012
|
+
readonly greenSquare: "🟩";
|
|
1013
|
+
readonly greyHeart: "🩶";
|
|
1014
|
+
readonly grimacingFace: "😬";
|
|
1015
|
+
readonly grinningCat: "😺";
|
|
1016
|
+
readonly grinningCatWithSmilingEyes: "😸";
|
|
1017
|
+
readonly grinningFace: "😀";
|
|
1018
|
+
readonly grinningFaceWithBigEyes: "😃";
|
|
1019
|
+
readonly grinningFaceWithSmilingEyes: "😄";
|
|
1020
|
+
readonly grinningFaceWithSweat: "😅";
|
|
1021
|
+
readonly grinningSquintingFace: "😆";
|
|
1022
|
+
readonly growingHeart: "💗";
|
|
1023
|
+
readonly guard: "💂";
|
|
1024
|
+
readonly guideDog: "🦮";
|
|
1025
|
+
readonly guitar: "🎸";
|
|
1026
|
+
readonly hairPick: "🪮";
|
|
1027
|
+
readonly hairyCreature: "";
|
|
1028
|
+
readonly hamburger: "🍔";
|
|
1029
|
+
readonly hammer: "🔨";
|
|
1030
|
+
readonly hammerAndPick: "⚒️";
|
|
1031
|
+
readonly hammerAndWrench: "🛠️";
|
|
1032
|
+
readonly hamsa: "🪬";
|
|
1033
|
+
readonly hamster: "🐹";
|
|
1034
|
+
readonly handbag: "👜";
|
|
1035
|
+
readonly handshake: "🤝";
|
|
1036
|
+
readonly handWithFingersSplayed: "🖐️";
|
|
1037
|
+
readonly handWithIndexFingerAndThumbCrossed: "🫰";
|
|
1038
|
+
readonly harp: "";
|
|
1039
|
+
readonly hatchingChick: "🐣";
|
|
1040
|
+
readonly headphone: "🎧";
|
|
1041
|
+
readonly headShakingHorizontally: "🙂↔️";
|
|
1042
|
+
readonly headShakingVertically: "🙂↕️";
|
|
1043
|
+
readonly headstone: "🪦";
|
|
1044
|
+
readonly healthWorker: "🧑⚕️";
|
|
1045
|
+
readonly hearNoEvilMonkey: "🙉";
|
|
1046
|
+
readonly heartDecoration: "💟";
|
|
1047
|
+
readonly heartExclamation: "❣️";
|
|
1048
|
+
readonly heartHands: "🫶";
|
|
1049
|
+
readonly heartOnFire: "❤️🔥";
|
|
1050
|
+
readonly heartSuit: "♥️";
|
|
1051
|
+
readonly heartWithArrow: "💘";
|
|
1052
|
+
readonly heartWithRibbon: "💝";
|
|
1053
|
+
readonly heavyDollarSign: "💲";
|
|
1054
|
+
readonly heavyEqualsSign: "🟰";
|
|
1055
|
+
readonly hedgehog: "🦔";
|
|
1056
|
+
readonly helicopter: "🚁";
|
|
1057
|
+
readonly herb: "🌿";
|
|
1058
|
+
readonly hibiscus: "🌺";
|
|
1059
|
+
readonly highHeeledShoe: "👠";
|
|
1060
|
+
readonly highSpeedTrain: "🚄";
|
|
1061
|
+
readonly highVoltage: "⚡";
|
|
1062
|
+
readonly hikingBoot: "🥾";
|
|
1063
|
+
readonly hinduTemple: "🛕";
|
|
1064
|
+
readonly hippopotamus: "🦛";
|
|
1065
|
+
readonly hole: "🕳️";
|
|
1066
|
+
readonly hollowRedCircle: "⭕";
|
|
1067
|
+
readonly honeybee: "🐝";
|
|
1068
|
+
readonly honeyPot: "🍯";
|
|
1069
|
+
readonly hook: "🪝";
|
|
1070
|
+
readonly horizontalTrafficLight: "🚥";
|
|
1071
|
+
readonly horse: "🐎";
|
|
1072
|
+
readonly horseFace: "🐴";
|
|
1073
|
+
readonly horseRacing: "🏇";
|
|
1074
|
+
readonly hospital: "🏥";
|
|
1075
|
+
readonly hotBeverage: "☕";
|
|
1076
|
+
readonly hotDog: "🌭";
|
|
1077
|
+
readonly hotel: "🏨";
|
|
1078
|
+
readonly hotFace: "🥵";
|
|
1079
|
+
readonly hotPepper: "🌶️";
|
|
1080
|
+
readonly hotSprings: "♨️";
|
|
1081
|
+
readonly hourglassDone: "⌛";
|
|
1082
|
+
readonly hourglassNotDone: "⏳";
|
|
1083
|
+
readonly house: "🏠";
|
|
1084
|
+
readonly houses: "🏘️";
|
|
1085
|
+
readonly houseWithGarden: "🏡";
|
|
1086
|
+
readonly hundredPoints: "💯";
|
|
1087
|
+
readonly hushedFace: "😯";
|
|
1088
|
+
readonly hut: "🛖";
|
|
1089
|
+
readonly hyacinth: "🪻";
|
|
1090
|
+
readonly ice: "🧊";
|
|
1091
|
+
readonly iceCream: "🍨";
|
|
1092
|
+
readonly iceHockey: "🏒";
|
|
1093
|
+
readonly iceSkate: "⛸️";
|
|
1094
|
+
readonly idButton: "🆔";
|
|
1095
|
+
readonly identificationCard: "🪪";
|
|
1096
|
+
readonly inboxTray: "📥";
|
|
1097
|
+
readonly incomingEnvelope: "📨";
|
|
1098
|
+
readonly indexPointingAtTheViewer: "🫵";
|
|
1099
|
+
readonly indexPointingUp: "☝️";
|
|
1100
|
+
readonly infinity: "♾️";
|
|
1101
|
+
readonly information: "ℹ️";
|
|
1102
|
+
readonly inputLatinLetters: "🔤";
|
|
1103
|
+
readonly inputLatinLowercase: "🔡";
|
|
1104
|
+
readonly inputLatinUppercase: "🔠";
|
|
1105
|
+
readonly inputNumbers: "🔢";
|
|
1106
|
+
readonly inputSymbols: "🔣";
|
|
1107
|
+
readonly jackOLantern: "🎃";
|
|
1108
|
+
readonly japaneseAcceptableButton: "🉑";
|
|
1109
|
+
readonly japaneseApplicationButton: "🈸";
|
|
1110
|
+
readonly japaneseBargainButton: "🉐";
|
|
1111
|
+
readonly japaneseCastle: "🏯";
|
|
1112
|
+
readonly japaneseCongratulationsButton: "㊗️";
|
|
1113
|
+
readonly japaneseDiscountButton: "🈹";
|
|
1114
|
+
readonly japaneseDolls: "🎎";
|
|
1115
|
+
readonly japaneseFreeOfChargeButton: "🈚";
|
|
1116
|
+
readonly japaneseHereButton: "🈁";
|
|
1117
|
+
readonly japaneseMonthlyAmountButton: "🈷️";
|
|
1118
|
+
readonly japaneseNotFreeOfChargeButton: "🈶";
|
|
1119
|
+
readonly japaneseNoVacancyButton: "🈵";
|
|
1120
|
+
readonly japaneseOpenForBusinessButton: "🈺";
|
|
1121
|
+
readonly japanesePassingGradeButton: "🈴";
|
|
1122
|
+
readonly japanesePostOffice: "🏣";
|
|
1123
|
+
readonly japaneseProhibitedButton: "🈲";
|
|
1124
|
+
readonly japaneseReservedButton: "🈯";
|
|
1125
|
+
readonly japaneseSecretButton: "㊙️";
|
|
1126
|
+
readonly japaneseServiceChargeButton: "🈂️";
|
|
1127
|
+
readonly japaneseSymbolForBeginner: "🔰";
|
|
1128
|
+
readonly japaneseVacancyButton: "🈳";
|
|
1129
|
+
readonly jar: "🫙";
|
|
1130
|
+
readonly jeans: "👖";
|
|
1131
|
+
readonly jellyfish: "🪼";
|
|
1132
|
+
readonly joker: "🃏";
|
|
1133
|
+
readonly joystick: "🕹️";
|
|
1134
|
+
readonly judge: "🧑⚖️";
|
|
1135
|
+
readonly kaaba: "🕋";
|
|
1136
|
+
readonly kangaroo: "🦘";
|
|
1137
|
+
readonly key: "🔑";
|
|
1138
|
+
readonly keyboard: "⌨️";
|
|
1139
|
+
readonly keycap0: "0️⃣";
|
|
1140
|
+
readonly keycap1: "1️⃣";
|
|
1141
|
+
readonly keycap10: "🔟";
|
|
1142
|
+
readonly keycap2: "2️⃣";
|
|
1143
|
+
readonly keycap3: "3️⃣";
|
|
1144
|
+
readonly keycap4: "4️⃣";
|
|
1145
|
+
readonly keycap5: "5️⃣";
|
|
1146
|
+
readonly keycap6: "6️⃣";
|
|
1147
|
+
readonly keycap7: "7️⃣";
|
|
1148
|
+
readonly keycap8: "8️⃣";
|
|
1149
|
+
readonly keycap9: "9️⃣";
|
|
1150
|
+
readonly keycapAsterisk: "*️⃣";
|
|
1151
|
+
readonly keycapNumberSign: "#️⃣";
|
|
1152
|
+
readonly khanda: "🪯";
|
|
1153
|
+
readonly kickScooter: "🛴";
|
|
1154
|
+
readonly kimono: "👘";
|
|
1155
|
+
readonly kiss: "💏";
|
|
1156
|
+
readonly kissingCat: "😽";
|
|
1157
|
+
readonly kissingFace: "😗";
|
|
1158
|
+
readonly kissingFaceWithClosedEyes: "😚";
|
|
1159
|
+
readonly kissingFaceWithSmilingEyes: "😙";
|
|
1160
|
+
readonly kissManMan: "👨❤️💋👨";
|
|
1161
|
+
readonly kissMark: "💋";
|
|
1162
|
+
readonly kissWomanMan: "👩❤️💋👨";
|
|
1163
|
+
readonly kissWomanWoman: "👩❤️💋👩";
|
|
1164
|
+
readonly kitchenKnife: "🔪";
|
|
1165
|
+
readonly kite: "🪁";
|
|
1166
|
+
readonly kiwiFruit: "🥝";
|
|
1167
|
+
readonly knot: "🪢";
|
|
1168
|
+
readonly koala: "🐨";
|
|
1169
|
+
readonly labCoat: "🥼";
|
|
1170
|
+
readonly label: "🏷️";
|
|
1171
|
+
readonly lacrosse: "🥍";
|
|
1172
|
+
readonly ladder: "🪜";
|
|
1173
|
+
readonly ladyBeetle: "🐞";
|
|
1174
|
+
readonly landslide: "";
|
|
1175
|
+
readonly laptop: "💻";
|
|
1176
|
+
readonly largeBlueDiamond: "🔷";
|
|
1177
|
+
readonly largeOrangeDiamond: "🔶";
|
|
1178
|
+
readonly lastQuarterMoon: "🌗";
|
|
1179
|
+
readonly lastQuarterMoonFace: "🌜";
|
|
1180
|
+
readonly lastTrackButton: "⏮️";
|
|
1181
|
+
readonly latinCross: "✝️";
|
|
1182
|
+
readonly leafFlutteringInWind: "🍃";
|
|
1183
|
+
readonly leaflessTree: "";
|
|
1184
|
+
readonly leafyGreen: "🥬";
|
|
1185
|
+
readonly ledger: "📒";
|
|
1186
|
+
readonly leftArrow: "⬅️";
|
|
1187
|
+
readonly leftArrowCurvingRight: "↪️";
|
|
1188
|
+
readonly leftFacingFist: "🤛";
|
|
1189
|
+
readonly leftLuggage: "🛅";
|
|
1190
|
+
readonly leftRightArrow: "↔️";
|
|
1191
|
+
readonly leftSpeechBubble: "🗨️";
|
|
1192
|
+
readonly leftwardsHand: "🫲";
|
|
1193
|
+
readonly leftwardsPushingHand: "🫷";
|
|
1194
|
+
readonly leg: "🦵";
|
|
1195
|
+
readonly lemon: "🍋";
|
|
1196
|
+
readonly leo: "♌";
|
|
1197
|
+
readonly leopard: "🐆";
|
|
1198
|
+
readonly levelSlider: "🎚️";
|
|
1199
|
+
readonly libra: "♎";
|
|
1200
|
+
readonly lightBlueHeart: "🩵";
|
|
1201
|
+
readonly lightBulb: "💡";
|
|
1202
|
+
readonly lightRail: "🚈";
|
|
1203
|
+
readonly lime: "🍋🟩";
|
|
1204
|
+
readonly link: "🔗";
|
|
1205
|
+
readonly linkedPaperclips: "🖇️";
|
|
1206
|
+
readonly lion: "🦁";
|
|
1207
|
+
readonly lipstick: "💄";
|
|
1208
|
+
readonly litterInBinSign: "🚮";
|
|
1209
|
+
readonly lizard: "🦎";
|
|
1210
|
+
readonly llama: "🦙";
|
|
1211
|
+
readonly lobster: "🦞";
|
|
1212
|
+
readonly locked: "🔒";
|
|
1213
|
+
readonly lockedWithKey: "🔐";
|
|
1214
|
+
readonly lockedWithPen: "🔏";
|
|
1215
|
+
readonly locomotive: "🚂";
|
|
1216
|
+
readonly lollipop: "🍭";
|
|
1217
|
+
readonly longDrum: "🪘";
|
|
1218
|
+
readonly lotionBottle: "🧴";
|
|
1219
|
+
readonly lotus: "🪷";
|
|
1220
|
+
readonly loudlyCryingFace: "😭";
|
|
1221
|
+
readonly loudspeaker: "📢";
|
|
1222
|
+
readonly loveHotel: "🏩";
|
|
1223
|
+
readonly loveLetter: "💌";
|
|
1224
|
+
readonly loveYouGesture: "🤟";
|
|
1225
|
+
readonly lowBattery: "🪫";
|
|
1226
|
+
readonly luggage: "🧳";
|
|
1227
|
+
readonly lungs: "🫁";
|
|
1228
|
+
readonly lyingFace: "🤥";
|
|
1229
|
+
readonly mage: "🧙";
|
|
1230
|
+
readonly magicWand: "🪄";
|
|
1231
|
+
readonly magnet: "🧲";
|
|
1232
|
+
readonly magnifyingGlassTiltedLeft: "🔍";
|
|
1233
|
+
readonly magnifyingGlassTiltedRight: "🔎";
|
|
1234
|
+
readonly mahjongRedDragon: "🀄";
|
|
1235
|
+
readonly maleSign: "♂️";
|
|
1236
|
+
readonly mammoth: "🦣";
|
|
1237
|
+
readonly man: "👨";
|
|
1238
|
+
readonly manArtist: "👨🎨";
|
|
1239
|
+
readonly manAstronaut: "👨🚀";
|
|
1240
|
+
readonly manBald: "👨🦲";
|
|
1241
|
+
readonly manBeard: "🧔♂️";
|
|
1242
|
+
readonly manBiking: "🚴♂️";
|
|
1243
|
+
readonly manBlondHair: "👱♂️";
|
|
1244
|
+
readonly manBouncingBall: "⛹️♂️";
|
|
1245
|
+
readonly manBowing: "🙇♂️";
|
|
1246
|
+
readonly manCartwheeling: "🤸♂️";
|
|
1247
|
+
readonly manClimbing: "🧗♂️";
|
|
1248
|
+
readonly manConstructionWorker: "👷♂️";
|
|
1249
|
+
readonly manCook: "👨🍳";
|
|
1250
|
+
readonly manCurlyHair: "👨🦱";
|
|
1251
|
+
readonly manDancing: "🕺";
|
|
1252
|
+
readonly manDetective: "🕵️♂️";
|
|
1253
|
+
readonly manElf: "🧝♂️";
|
|
1254
|
+
readonly manFacepalming: "🤦♂️";
|
|
1255
|
+
readonly manFactoryWorker: "👨🏭";
|
|
1256
|
+
readonly manFairy: "🧚♂️";
|
|
1257
|
+
readonly manFarmer: "👨🌾";
|
|
1258
|
+
readonly manFeedingBaby: "👨🍼";
|
|
1259
|
+
readonly manFirefighter: "👨🚒";
|
|
1260
|
+
readonly manFrowning: "🙍♂️";
|
|
1261
|
+
readonly manGenie: "🧞♂️";
|
|
1262
|
+
readonly manGesturingNo: "🙅♂️";
|
|
1263
|
+
readonly manGesturingOk: "🙆♂️";
|
|
1264
|
+
readonly manGettingHaircut: "💇♂️";
|
|
1265
|
+
readonly manGettingMassage: "💆♂️";
|
|
1266
|
+
readonly mango: "🥭";
|
|
1267
|
+
readonly manGolfing: "🏌️♂️";
|
|
1268
|
+
readonly manGuard: "💂♂️";
|
|
1269
|
+
readonly manHealthWorker: "👨⚕️";
|
|
1270
|
+
readonly manInLotusPosition: "🧘♂️";
|
|
1271
|
+
readonly manInManualWheelchair: "👨🦽";
|
|
1272
|
+
readonly manInManualWheelchairFacingRight: "👨🦽➡️";
|
|
1273
|
+
readonly manInMotorizedWheelchair: "👨🦼";
|
|
1274
|
+
readonly manInMotorizedWheelchairFacingRight: "👨🦼➡️";
|
|
1275
|
+
readonly manInSteamyRoom: "🧖♂️";
|
|
1276
|
+
readonly manInTuxedo: "🤵♂️";
|
|
1277
|
+
readonly manJudge: "👨⚖️";
|
|
1278
|
+
readonly manJuggling: "🤹♂️";
|
|
1279
|
+
readonly manKneeling: "🧎♂️";
|
|
1280
|
+
readonly manKneelingFacingRight: "🧎♂️➡️";
|
|
1281
|
+
readonly manLiftingWeights: "🏋️♂️";
|
|
1282
|
+
readonly manMage: "🧙♂️";
|
|
1283
|
+
readonly manMechanic: "👨🔧";
|
|
1284
|
+
readonly manMountainBiking: "🚵♂️";
|
|
1285
|
+
readonly manOfficeWorker: "👨💼";
|
|
1286
|
+
readonly manPilot: "👨✈️";
|
|
1287
|
+
readonly manPlayingHandball: "🤾♂️";
|
|
1288
|
+
readonly manPlayingWaterPolo: "🤽♂️";
|
|
1289
|
+
readonly manPoliceOfficer: "👮♂️";
|
|
1290
|
+
readonly manPouting: "🙎♂️";
|
|
1291
|
+
readonly manRaisingHand: "🙋♂️";
|
|
1292
|
+
readonly manRedHair: "👨🦰";
|
|
1293
|
+
readonly manRowingBoat: "🚣♂️";
|
|
1294
|
+
readonly manRunning: "🏃♂️";
|
|
1295
|
+
readonly manRunningFacingRight: "🏃♂️➡️";
|
|
1296
|
+
readonly manScientist: "👨🔬";
|
|
1297
|
+
readonly manShrugging: "🤷♂️";
|
|
1298
|
+
readonly manSinger: "👨🎤";
|
|
1299
|
+
readonly manSShoe: "👞";
|
|
1300
|
+
readonly manStanding: "🧍♂️";
|
|
1301
|
+
readonly manStudent: "👨🎓";
|
|
1302
|
+
readonly manSuperhero: "🦸♂️";
|
|
1303
|
+
readonly manSupervillain: "🦹♂️";
|
|
1304
|
+
readonly manSurfing: "🏄♂️";
|
|
1305
|
+
readonly manSwimming: "🏊♂️";
|
|
1306
|
+
readonly manTeacher: "👨🏫";
|
|
1307
|
+
readonly manTechnologist: "👨💻";
|
|
1308
|
+
readonly mantelpieceClock: "🕰️";
|
|
1309
|
+
readonly manTippingHand: "💁♂️";
|
|
1310
|
+
readonly manualWheelchair: "🦽";
|
|
1311
|
+
readonly manVampire: "🧛♂️";
|
|
1312
|
+
readonly manWalking: "🚶♂️";
|
|
1313
|
+
readonly manWalkingFacingRight: "🚶♂️➡️";
|
|
1314
|
+
readonly manWearingTurban: "👳♂️";
|
|
1315
|
+
readonly manWhiteHair: "👨🦳";
|
|
1316
|
+
readonly manWithVeil: "👰♂️";
|
|
1317
|
+
readonly manWithWhiteCane: "👨🦯";
|
|
1318
|
+
readonly manWithWhiteCaneFacingRight: "👨🦯➡️";
|
|
1319
|
+
readonly manZombie: "🧟♂️";
|
|
1320
|
+
readonly mapleLeaf: "🍁";
|
|
1321
|
+
readonly mapOfJapan: "🗾";
|
|
1322
|
+
readonly maracas: "🪇";
|
|
1323
|
+
readonly martialArtsUniform: "🥋";
|
|
1324
|
+
readonly mate: "🧉";
|
|
1325
|
+
readonly meatOnBone: "🍖";
|
|
1326
|
+
readonly mechanic: "🧑🔧";
|
|
1327
|
+
readonly mechanicalArm: "🦾";
|
|
1328
|
+
readonly mechanicalLeg: "🦿";
|
|
1329
|
+
readonly medicalSymbol: "⚕️";
|
|
1330
|
+
readonly megaphone: "📣";
|
|
1331
|
+
readonly melon: "🍈";
|
|
1332
|
+
readonly meltingFace: "🫠";
|
|
1333
|
+
readonly memo: "📝";
|
|
1334
|
+
readonly mendingHeart: "❤️🩹";
|
|
1335
|
+
readonly menHoldingHands: "👬";
|
|
1336
|
+
readonly menorah: "🕎";
|
|
1337
|
+
readonly menSRoom: "🚹";
|
|
1338
|
+
readonly menWithBunnyEars: "👯♂️";
|
|
1339
|
+
readonly menWrestling: "🤼♂️";
|
|
1340
|
+
readonly mermaid: "🧜♀️";
|
|
1341
|
+
readonly merman: "🧜♂️";
|
|
1342
|
+
readonly merperson: "🧜";
|
|
1343
|
+
readonly metro: "🚇";
|
|
1344
|
+
readonly microbe: "🦠";
|
|
1345
|
+
readonly microphone: "🎤";
|
|
1346
|
+
readonly microscope: "🔬";
|
|
1347
|
+
readonly middleFinger: "🖕";
|
|
1348
|
+
readonly militaryHelmet: "🪖";
|
|
1349
|
+
readonly militaryMedal: "🎖️";
|
|
1350
|
+
readonly milkyWay: "🌌";
|
|
1351
|
+
readonly minibus: "🚐";
|
|
1352
|
+
readonly minus: "➖";
|
|
1353
|
+
readonly mirror: "🪞";
|
|
1354
|
+
readonly mirrorBall: "🪩";
|
|
1355
|
+
readonly moai: "🗿";
|
|
1356
|
+
readonly mobilePhone: "📱";
|
|
1357
|
+
readonly mobilePhoneOff: "📴";
|
|
1358
|
+
readonly mobilePhoneWithArrow: "📲";
|
|
1359
|
+
readonly moneyBag: "💰";
|
|
1360
|
+
readonly moneyMouthFace: "🤑";
|
|
1361
|
+
readonly moneyWithWings: "💸";
|
|
1362
|
+
readonly monkey: "🐒";
|
|
1363
|
+
readonly monkeyFace: "🐵";
|
|
1364
|
+
readonly monorail: "🚝";
|
|
1365
|
+
readonly moonCake: "🥮";
|
|
1366
|
+
readonly moonViewingCeremony: "🎑";
|
|
1367
|
+
readonly moose: "🫎";
|
|
1368
|
+
readonly mosque: "🕌";
|
|
1369
|
+
readonly mosquito: "🦟";
|
|
1370
|
+
readonly motorBoat: "🛥️";
|
|
1371
|
+
readonly motorcycle: "🏍️";
|
|
1372
|
+
readonly motorizedWheelchair: "🦼";
|
|
1373
|
+
readonly motorScooter: "🛵";
|
|
1374
|
+
readonly motorway: "🛣️";
|
|
1375
|
+
readonly mountain: "⛰️";
|
|
1376
|
+
readonly mountainCableway: "🚠";
|
|
1377
|
+
readonly mountainRailway: "🚞";
|
|
1378
|
+
readonly mountFuji: "🗻";
|
|
1379
|
+
readonly mouse: "🐁";
|
|
1380
|
+
readonly mouseFace: "🐭";
|
|
1381
|
+
readonly mouseTrap: "🪤";
|
|
1382
|
+
readonly mouth: "👄";
|
|
1383
|
+
readonly movieCamera: "🎥";
|
|
1384
|
+
readonly mrsClaus: "🤶";
|
|
1385
|
+
readonly multiply: "✖️";
|
|
1386
|
+
readonly mushroom: "🍄";
|
|
1387
|
+
readonly musicalKeyboard: "🎹";
|
|
1388
|
+
readonly musicalNote: "🎵";
|
|
1389
|
+
readonly musicalNotes: "🎶";
|
|
1390
|
+
readonly musicalScore: "🎼";
|
|
1391
|
+
readonly mutedSpeaker: "🔇";
|
|
1392
|
+
readonly mxClaus: "🧑🎄";
|
|
1393
|
+
readonly nailPolish: "💅";
|
|
1394
|
+
readonly nameBadge: "📛";
|
|
1395
|
+
readonly nationalPark: "🏞️";
|
|
1396
|
+
readonly nauseatedFace: "🤢";
|
|
1397
|
+
readonly nazarAmulet: "🧿";
|
|
1398
|
+
readonly necktie: "👔";
|
|
1399
|
+
readonly nerdFace: "🤓";
|
|
1400
|
+
readonly nestingDolls: "🪆";
|
|
1401
|
+
readonly nestWithEggs: "🪺";
|
|
1402
|
+
readonly neutralFace: "😐";
|
|
1403
|
+
readonly newButton: "🆕";
|
|
1404
|
+
readonly newMoon: "🌑";
|
|
1405
|
+
readonly newMoonFace: "🌚";
|
|
1406
|
+
readonly newspaper: "📰";
|
|
1407
|
+
readonly nextTrackButton: "⏭️";
|
|
1408
|
+
readonly ngButton: "🆖";
|
|
1409
|
+
readonly nightWithStars: "🌃";
|
|
1410
|
+
readonly nineOClock: "🕘";
|
|
1411
|
+
readonly nineThirty: "🕤";
|
|
1412
|
+
readonly ninja: "🥷";
|
|
1413
|
+
readonly noBicycles: "🚳";
|
|
1414
|
+
readonly noEntry: "⛔";
|
|
1415
|
+
readonly noLittering: "🚯";
|
|
1416
|
+
readonly noMobilePhones: "📵";
|
|
1417
|
+
readonly nonPotableWater: "🚱";
|
|
1418
|
+
readonly noOneUnderEighteen: "🔞";
|
|
1419
|
+
readonly noPedestrians: "🚷";
|
|
1420
|
+
readonly nose: "👃";
|
|
1421
|
+
readonly noSmoking: "🚭";
|
|
1422
|
+
readonly notebook: "📓";
|
|
1423
|
+
readonly notebookWithDecorativeCover: "📔";
|
|
1424
|
+
readonly nutAndBolt: "🔩";
|
|
1425
|
+
readonly oButton: "🅾️";
|
|
1426
|
+
readonly octopus: "🐙";
|
|
1427
|
+
readonly oden: "🍢";
|
|
1428
|
+
readonly officeBuilding: "🏢";
|
|
1429
|
+
readonly officeWorker: "🧑💼";
|
|
1430
|
+
readonly ogre: "👹";
|
|
1431
|
+
readonly oilDrum: "🛢️";
|
|
1432
|
+
readonly okButton: "🆗";
|
|
1433
|
+
readonly okHand: "👌";
|
|
1434
|
+
readonly olderPerson: "🧓";
|
|
1435
|
+
readonly oldKey: "🗝️";
|
|
1436
|
+
readonly oldMan: "👴";
|
|
1437
|
+
readonly oldWoman: "👵";
|
|
1438
|
+
readonly olive: "🫒";
|
|
1439
|
+
readonly om: "🕉️";
|
|
1440
|
+
readonly onArrow: "🔛";
|
|
1441
|
+
readonly oncomingAutomobile: "🚘";
|
|
1442
|
+
readonly oncomingBus: "🚍";
|
|
1443
|
+
readonly oncomingFist: "👊";
|
|
1444
|
+
readonly oncomingPoliceCar: "🚔";
|
|
1445
|
+
readonly oncomingTaxi: "🚖";
|
|
1446
|
+
readonly oneOClock: "🕐";
|
|
1447
|
+
readonly onePieceSwimsuit: "🩱";
|
|
1448
|
+
readonly oneThirty: "🕜";
|
|
1449
|
+
readonly onion: "🧅";
|
|
1450
|
+
readonly openBook: "📖";
|
|
1451
|
+
readonly openFileFolder: "📂";
|
|
1452
|
+
readonly openHands: "👐";
|
|
1453
|
+
readonly openMailboxWithLoweredFlag: "📭";
|
|
1454
|
+
readonly openMailboxWithRaisedFlag: "📬";
|
|
1455
|
+
readonly ophiuchus: "⛎";
|
|
1456
|
+
readonly opticalDisk: "💿";
|
|
1457
|
+
readonly orangeBook: "📙";
|
|
1458
|
+
readonly orangeCircle: "🟠";
|
|
1459
|
+
readonly orangeHeart: "🧡";
|
|
1460
|
+
readonly orangeSquare: "🟧";
|
|
1461
|
+
readonly orangutan: "🦧";
|
|
1462
|
+
readonly orca: "";
|
|
1463
|
+
readonly orthodoxCross: "☦️";
|
|
1464
|
+
readonly otter: "🦦";
|
|
1465
|
+
readonly outboxTray: "📤";
|
|
1466
|
+
readonly owl: "🦉";
|
|
1467
|
+
readonly ox: "🐂";
|
|
1468
|
+
readonly oyster: "🦪";
|
|
1469
|
+
readonly package_: "📦";
|
|
1470
|
+
readonly pageFacingUp: "📄";
|
|
1471
|
+
readonly pager: "📟";
|
|
1472
|
+
readonly pageWithCurl: "📃";
|
|
1473
|
+
readonly paintbrush: "🖌️";
|
|
1474
|
+
readonly palmDownHand: "🫳";
|
|
1475
|
+
readonly palmsUpTogether: "🤲";
|
|
1476
|
+
readonly palmTree: "🌴";
|
|
1477
|
+
readonly palmUpHand: "🫴";
|
|
1478
|
+
readonly pancakes: "🥞";
|
|
1479
|
+
readonly panda: "🐼";
|
|
1480
|
+
readonly paperclip: "📎";
|
|
1481
|
+
readonly parachute: "🪂";
|
|
1482
|
+
readonly parrot: "🦜";
|
|
1483
|
+
readonly partAlternationMark: "〽️";
|
|
1484
|
+
readonly partyingFace: "🥳";
|
|
1485
|
+
readonly partyPopper: "🎉";
|
|
1486
|
+
readonly passengerShip: "🛳️";
|
|
1487
|
+
readonly passportControl: "🛂";
|
|
1488
|
+
readonly pauseButton: "⏸️";
|
|
1489
|
+
readonly pawPrints: "🐾";
|
|
1490
|
+
readonly pButton: "🅿️";
|
|
1491
|
+
readonly peaceSymbol: "☮️";
|
|
1492
|
+
readonly peach: "🍑";
|
|
1493
|
+
readonly peacock: "🦚";
|
|
1494
|
+
readonly peanuts: "🥜";
|
|
1495
|
+
readonly peaPod: "🫛";
|
|
1496
|
+
readonly pear: "🍐";
|
|
1497
|
+
readonly pen: "🖊️";
|
|
1498
|
+
readonly pencil: "✏️";
|
|
1499
|
+
readonly penguin: "🐧";
|
|
1500
|
+
readonly pensiveFace: "😔";
|
|
1501
|
+
readonly peopleHoldingHands: "🧑🤝🧑";
|
|
1502
|
+
readonly peopleHugging: "🫂";
|
|
1503
|
+
readonly peopleWithBunnyEars: "👯";
|
|
1504
|
+
readonly peopleWrestling: "🤼";
|
|
1505
|
+
readonly performingArts: "🎭";
|
|
1506
|
+
readonly perseveringFace: "😣";
|
|
1507
|
+
readonly person: "🧑";
|
|
1508
|
+
readonly personBald: "🧑🦲";
|
|
1509
|
+
readonly personBeard: "🧔";
|
|
1510
|
+
readonly personBiking: "🚴";
|
|
1511
|
+
readonly personBlondHair: "👱";
|
|
1512
|
+
readonly personBouncingBall: "⛹️";
|
|
1513
|
+
readonly personBowing: "🙇";
|
|
1514
|
+
readonly personCartwheeling: "🤸";
|
|
1515
|
+
readonly personClimbing: "🧗";
|
|
1516
|
+
readonly personCurlyHair: "🧑🦱";
|
|
1517
|
+
readonly personFacepalming: "🤦";
|
|
1518
|
+
readonly personFeedingBaby: "🧑🍼";
|
|
1519
|
+
readonly personFencing: "🤺";
|
|
1520
|
+
readonly personFrowning: "🙍";
|
|
1521
|
+
readonly personGesturingNo: "🙅";
|
|
1522
|
+
readonly personGesturingOk: "🙆";
|
|
1523
|
+
readonly personGettingHaircut: "💇";
|
|
1524
|
+
readonly personGettingMassage: "💆";
|
|
1525
|
+
readonly personGolfing: "🏌️";
|
|
1526
|
+
readonly personInBed: "🛌";
|
|
1527
|
+
readonly personInLotusPosition: "🧘";
|
|
1528
|
+
readonly personInManualWheelchair: "🧑🦽";
|
|
1529
|
+
readonly personInManualWheelchairFacingRight: "🧑🦽➡️";
|
|
1530
|
+
readonly personInMotorizedWheelchair: "🧑🦼";
|
|
1531
|
+
readonly personInMotorizedWheelchairFacingRight: "🧑🦼➡️";
|
|
1532
|
+
readonly personInSteamyRoom: "🧖";
|
|
1533
|
+
readonly personInSuitLevitating: "🕴️";
|
|
1534
|
+
readonly personInTuxedo: "🤵";
|
|
1535
|
+
readonly personJuggling: "🤹";
|
|
1536
|
+
readonly personKneeling: "🧎";
|
|
1537
|
+
readonly personKneelingFacingRight: "🧎➡️";
|
|
1538
|
+
readonly personLiftingWeights: "🏋️";
|
|
1539
|
+
readonly personMountainBiking: "🚵";
|
|
1540
|
+
readonly personPlayingHandball: "🤾";
|
|
1541
|
+
readonly personPlayingWaterPolo: "🤽";
|
|
1542
|
+
readonly personPouting: "🙎";
|
|
1543
|
+
readonly personRaisingHand: "🙋";
|
|
1544
|
+
readonly personRedHair: "🧑🦰";
|
|
1545
|
+
readonly personRowingBoat: "🚣";
|
|
1546
|
+
readonly personRunning: "🏃";
|
|
1547
|
+
readonly personRunningFacingRight: "🏃➡️";
|
|
1548
|
+
readonly personShrugging: "🤷";
|
|
1549
|
+
readonly personStanding: "🧍";
|
|
1550
|
+
readonly personSurfing: "🏄";
|
|
1551
|
+
readonly personSwimming: "🏊";
|
|
1552
|
+
readonly personTakingBath: "🛀";
|
|
1553
|
+
readonly personTippingHand: "💁";
|
|
1554
|
+
readonly personWalking: "🚶";
|
|
1555
|
+
readonly personWalkingFacingRight: "🚶➡️";
|
|
1556
|
+
readonly personWearingTurban: "👳";
|
|
1557
|
+
readonly personWhiteHair: "🧑🦳";
|
|
1558
|
+
readonly personWithCrown: "🫅";
|
|
1559
|
+
readonly personWithSkullcap: "👲";
|
|
1560
|
+
readonly personWithVeil: "👰";
|
|
1561
|
+
readonly personWithWhiteCane: "🧑🦯";
|
|
1562
|
+
readonly personWithWhiteCaneFacingRight: "🧑🦯➡️";
|
|
1563
|
+
readonly petriDish: "🧫";
|
|
1564
|
+
readonly phoenix: "🐦🔥";
|
|
1565
|
+
readonly pick: "⛏️";
|
|
1566
|
+
readonly pickupTruck: "🛻";
|
|
1567
|
+
readonly pie: "🥧";
|
|
1568
|
+
readonly pig: "🐖";
|
|
1569
|
+
readonly pigFace: "🐷";
|
|
1570
|
+
readonly pigNose: "🐽";
|
|
1571
|
+
readonly pileOfPoo: "💩";
|
|
1572
|
+
readonly pill: "💊";
|
|
1573
|
+
readonly pilot: "🧑✈️";
|
|
1574
|
+
readonly pinata: "🪅";
|
|
1575
|
+
readonly pinchedFingers: "🤌";
|
|
1576
|
+
readonly pinchingHand: "🤏";
|
|
1577
|
+
readonly pineapple: "🍍";
|
|
1578
|
+
readonly pineDecoration: "🎍";
|
|
1579
|
+
readonly pingPong: "🏓";
|
|
1580
|
+
readonly pinkHeart: "🩷";
|
|
1581
|
+
readonly pirateFlag: "🏴☠️";
|
|
1582
|
+
readonly pisces: "♓";
|
|
1583
|
+
readonly pizza: "🍕";
|
|
1584
|
+
readonly placard: "🪧";
|
|
1585
|
+
readonly placeOfWorship: "🛐";
|
|
1586
|
+
readonly playButton: "▶️";
|
|
1587
|
+
readonly playgroundSlide: "🛝";
|
|
1588
|
+
readonly playOrPauseButton: "⏯️";
|
|
1589
|
+
readonly pleadingFace: "🥺";
|
|
1590
|
+
readonly plunger: "🪠";
|
|
1591
|
+
readonly plus: "➕";
|
|
1592
|
+
readonly polarBear: "🐻❄️";
|
|
1593
|
+
readonly policeCar: "🚓";
|
|
1594
|
+
readonly policeCarLight: "🚨";
|
|
1595
|
+
readonly policeOfficer: "👮";
|
|
1596
|
+
readonly poodle: "🐩";
|
|
1597
|
+
readonly pool8Ball: "🎱";
|
|
1598
|
+
readonly popcorn: "🍿";
|
|
1599
|
+
readonly postalHorn: "📯";
|
|
1600
|
+
readonly postbox: "📮";
|
|
1601
|
+
readonly postOffice: "🏤";
|
|
1602
|
+
readonly potableWater: "🚰";
|
|
1603
|
+
readonly potato: "🥔";
|
|
1604
|
+
readonly potOfFood: "🍲";
|
|
1605
|
+
readonly pottedPlant: "🪴";
|
|
1606
|
+
readonly poultryLeg: "🍗";
|
|
1607
|
+
readonly poundBanknote: "💷";
|
|
1608
|
+
readonly pouringLiquid: "🫗";
|
|
1609
|
+
readonly poutingCat: "😾";
|
|
1610
|
+
readonly prayerBeads: "📿";
|
|
1611
|
+
readonly pregnantMan: "🫃";
|
|
1612
|
+
readonly pregnantPerson: "🫄";
|
|
1613
|
+
readonly pregnantWoman: "🤰";
|
|
1614
|
+
readonly pretzel: "🥨";
|
|
1615
|
+
readonly prince: "🤴";
|
|
1616
|
+
readonly princess: "👸";
|
|
1617
|
+
readonly printer: "🖨️";
|
|
1618
|
+
readonly prohibited: "🚫";
|
|
1619
|
+
readonly purpleCircle: "🟣";
|
|
1620
|
+
readonly purpleHeart: "💜";
|
|
1621
|
+
readonly purpleSquare: "🟪";
|
|
1622
|
+
readonly purse: "👛";
|
|
1623
|
+
readonly pushpin: "📌";
|
|
1624
|
+
readonly puzzlePiece: "🧩";
|
|
1625
|
+
readonly rabbit: "🐇";
|
|
1626
|
+
readonly rabbitFace: "🐰";
|
|
1627
|
+
readonly raccoon: "🦝";
|
|
1628
|
+
readonly racingCar: "🏎️";
|
|
1629
|
+
readonly radio: "📻";
|
|
1630
|
+
readonly radioactive: "☢️";
|
|
1631
|
+
readonly radioButton: "🔘";
|
|
1632
|
+
readonly railwayCar: "🚃";
|
|
1633
|
+
readonly railwayTrack: "🛤️";
|
|
1634
|
+
readonly rainbow: "🌈";
|
|
1635
|
+
readonly rainbowFlag: "🏳️🌈";
|
|
1636
|
+
readonly raisedBackOfHand: "🤚";
|
|
1637
|
+
readonly raisedFist: "✊";
|
|
1638
|
+
readonly raisedHand: "✋";
|
|
1639
|
+
readonly raisingHands: "🙌";
|
|
1640
|
+
readonly ram: "🐏";
|
|
1641
|
+
readonly rat: "🐀";
|
|
1642
|
+
readonly razor: "🪒";
|
|
1643
|
+
readonly receipt: "🧾";
|
|
1644
|
+
readonly recordButton: "⏺️";
|
|
1645
|
+
readonly recyclingSymbol: "♻️";
|
|
1646
|
+
readonly redApple: "🍎";
|
|
1647
|
+
readonly redCircle: "🔴";
|
|
1648
|
+
readonly redEnvelope: "🧧";
|
|
1649
|
+
readonly redExclamationMark: "❗";
|
|
1650
|
+
readonly redHeart: "❤️";
|
|
1651
|
+
readonly redPaperLantern: "🏮";
|
|
1652
|
+
readonly redQuestionMark: "❓";
|
|
1653
|
+
readonly redSquare: "🟥";
|
|
1654
|
+
readonly redTrianglePointedDown: "🔻";
|
|
1655
|
+
readonly redTrianglePointedUp: "🔺";
|
|
1656
|
+
readonly registered: "®️";
|
|
1657
|
+
readonly relievedFace: "😌";
|
|
1658
|
+
readonly reminderRibbon: "🎗️";
|
|
1659
|
+
readonly repeatButton: "🔁";
|
|
1660
|
+
readonly repeatSingleButton: "🔂";
|
|
1661
|
+
readonly rescueWorkerSHelmet: "⛑️";
|
|
1662
|
+
readonly restroom: "🚻";
|
|
1663
|
+
readonly reverseButton: "◀️";
|
|
1664
|
+
readonly revolvingHearts: "💞";
|
|
1665
|
+
readonly rhinoceros: "🦏";
|
|
1666
|
+
readonly ribbon: "🎀";
|
|
1667
|
+
readonly riceBall: "🍙";
|
|
1668
|
+
readonly riceCracker: "🍘";
|
|
1669
|
+
readonly rightAngerBubble: "🗯️";
|
|
1670
|
+
readonly rightArrow: "➡️";
|
|
1671
|
+
readonly rightArrowCurvingDown: "⤵️";
|
|
1672
|
+
readonly rightArrowCurvingLeft: "↩️";
|
|
1673
|
+
readonly rightArrowCurvingUp: "⤴️";
|
|
1674
|
+
readonly rightFacingFist: "🤜";
|
|
1675
|
+
readonly rightwardsHand: "🫱";
|
|
1676
|
+
readonly rightwardsPushingHand: "🫸";
|
|
1677
|
+
readonly ring: "💍";
|
|
1678
|
+
readonly ringBuoy: "🛟";
|
|
1679
|
+
readonly ringedPlanet: "🪐";
|
|
1680
|
+
readonly roastedSweetPotato: "🍠";
|
|
1681
|
+
readonly robot: "🤖";
|
|
1682
|
+
readonly rock: "🪨";
|
|
1683
|
+
readonly rocket: "🚀";
|
|
1684
|
+
readonly rolledUpNewspaper: "🗞️";
|
|
1685
|
+
readonly rollerCoaster: "🎢";
|
|
1686
|
+
readonly rollerSkate: "🛼";
|
|
1687
|
+
readonly rollingOnTheFloorLaughing: "🤣";
|
|
1688
|
+
readonly rollOfPaper: "🧻";
|
|
1689
|
+
readonly rooster: "🐓";
|
|
1690
|
+
readonly rootVegetable: "";
|
|
1691
|
+
readonly rose: "🌹";
|
|
1692
|
+
readonly rosette: "🏵️";
|
|
1693
|
+
readonly roundPushpin: "📍";
|
|
1694
|
+
readonly rugbyFootball: "🏉";
|
|
1695
|
+
readonly runningShirt: "🎽";
|
|
1696
|
+
readonly runningShoe: "👟";
|
|
1697
|
+
readonly sadButRelievedFace: "😥";
|
|
1698
|
+
readonly safetyPin: "🧷";
|
|
1699
|
+
readonly safetyVest: "🦺";
|
|
1700
|
+
readonly sagittarius: "♐";
|
|
1701
|
+
readonly sailboat: "⛵";
|
|
1702
|
+
readonly sake: "🍶";
|
|
1703
|
+
readonly salt: "🧂";
|
|
1704
|
+
readonly salutingFace: "🫡";
|
|
1705
|
+
readonly sandwich: "🥪";
|
|
1706
|
+
readonly santaClaus: "🎅";
|
|
1707
|
+
readonly sari: "🥻";
|
|
1708
|
+
readonly satellite: "🛰️";
|
|
1709
|
+
readonly satelliteAntenna: "📡";
|
|
1710
|
+
readonly sauropod: "🦕";
|
|
1711
|
+
readonly saxophone: "🎷";
|
|
1712
|
+
readonly scarf: "🧣";
|
|
1713
|
+
readonly school: "🏫";
|
|
1714
|
+
readonly scientist: "🧑🔬";
|
|
1715
|
+
readonly scissors: "✂️";
|
|
1716
|
+
readonly scorpio: "♏";
|
|
1717
|
+
readonly scorpion: "🦂";
|
|
1718
|
+
readonly screwdriver: "🪛";
|
|
1719
|
+
readonly scroll: "📜";
|
|
1720
|
+
readonly seal: "🦭";
|
|
1721
|
+
readonly seat: "💺";
|
|
1722
|
+
readonly seedling: "🌱";
|
|
1723
|
+
readonly seeNoEvilMonkey: "🙈";
|
|
1724
|
+
readonly selfie: "🤳";
|
|
1725
|
+
readonly serviceDog: "🐕🦺";
|
|
1726
|
+
readonly sevenOClock: "🕖";
|
|
1727
|
+
readonly sevenThirty: "🕢";
|
|
1728
|
+
readonly sewingNeedle: "🪡";
|
|
1729
|
+
readonly shakingFace: "🫨";
|
|
1730
|
+
readonly shallowPanOfFood: "🥘";
|
|
1731
|
+
readonly shamrock: "☘️";
|
|
1732
|
+
readonly shark: "🦈";
|
|
1733
|
+
readonly shavedIce: "🍧";
|
|
1734
|
+
readonly sheafOfRice: "🌾";
|
|
1735
|
+
readonly shield: "🛡️";
|
|
1736
|
+
readonly shintoShrine: "⛩️";
|
|
1737
|
+
readonly ship: "🚢";
|
|
1738
|
+
readonly shootingStar: "🌠";
|
|
1739
|
+
readonly shoppingBags: "🛍️";
|
|
1740
|
+
readonly shoppingCart: "🛒";
|
|
1741
|
+
readonly shortcake: "🍰";
|
|
1742
|
+
readonly shorts: "🩳";
|
|
1743
|
+
readonly shovel: "";
|
|
1744
|
+
readonly shower: "🚿";
|
|
1745
|
+
readonly shrimp: "🦐";
|
|
1746
|
+
readonly shuffleTracksButton: "🔀";
|
|
1747
|
+
readonly shushingFace: "🤫";
|
|
1748
|
+
readonly signOfTheHorns: "🤘";
|
|
1749
|
+
readonly singer: "🧑🎤";
|
|
1750
|
+
readonly sixOClock: "🕕";
|
|
1751
|
+
readonly sixThirty: "🕡";
|
|
1752
|
+
readonly skateboard: "🛹";
|
|
1753
|
+
readonly skier: "⛷️";
|
|
1754
|
+
readonly skis: "🎿";
|
|
1755
|
+
readonly skull: "💀";
|
|
1756
|
+
readonly skullAndCrossbones: "☠️";
|
|
1757
|
+
readonly skunk: "🦨";
|
|
1758
|
+
readonly sled: "🛷";
|
|
1759
|
+
readonly sleepingFace: "😴";
|
|
1760
|
+
readonly sleepyFace: "😪";
|
|
1761
|
+
readonly slightlyFrowningFace: "🙁";
|
|
1762
|
+
readonly slightlySmilingFace: "🙂";
|
|
1763
|
+
readonly sloth: "🦥";
|
|
1764
|
+
readonly slotMachine: "🎰";
|
|
1765
|
+
readonly smallAirplane: "🛩️";
|
|
1766
|
+
readonly smallBlueDiamond: "🔹";
|
|
1767
|
+
readonly smallOrangeDiamond: "🔸";
|
|
1768
|
+
readonly smilingCatWithHeartEyes: "😻";
|
|
1769
|
+
readonly smilingFace: "☺️";
|
|
1770
|
+
readonly smilingFaceWithHalo: "😇";
|
|
1771
|
+
readonly smilingFaceWithHeartEyes: "😍";
|
|
1772
|
+
readonly smilingFaceWithHearts: "🥰";
|
|
1773
|
+
readonly smilingFaceWithHorns: "😈";
|
|
1774
|
+
readonly smilingFaceWithOpenHands: "🤗";
|
|
1775
|
+
readonly smilingFaceWithSmilingEyes: "😊";
|
|
1776
|
+
readonly smilingFaceWithSunglasses: "😎";
|
|
1777
|
+
readonly smilingFaceWithTear: "🥲";
|
|
1778
|
+
readonly smirkingFace: "😏";
|
|
1779
|
+
readonly snail: "🐌";
|
|
1780
|
+
readonly snake: "🐍";
|
|
1781
|
+
readonly sneezingFace: "🤧";
|
|
1782
|
+
readonly snowboarder: "🏂";
|
|
1783
|
+
readonly snowCappedMountain: "🏔️";
|
|
1784
|
+
readonly snowflake: "❄️";
|
|
1785
|
+
readonly snowman: "☃️";
|
|
1786
|
+
readonly snowmanWithoutSnow: "⛄";
|
|
1787
|
+
readonly soap: "🧼";
|
|
1788
|
+
readonly soccerBall: "⚽";
|
|
1789
|
+
readonly socks: "🧦";
|
|
1790
|
+
readonly softball: "🥎";
|
|
1791
|
+
readonly softIceCream: "🍦";
|
|
1792
|
+
readonly soonArrow: "🔜";
|
|
1793
|
+
readonly sosButton: "🆘";
|
|
1794
|
+
readonly spadeSuit: "♠️";
|
|
1795
|
+
readonly spaghetti: "🍝";
|
|
1796
|
+
readonly sparkle: "❇️";
|
|
1797
|
+
readonly sparkler: "🎇";
|
|
1798
|
+
readonly sparkles: "✨";
|
|
1799
|
+
readonly sparklingHeart: "💖";
|
|
1800
|
+
readonly speakerHighVolume: "🔊";
|
|
1801
|
+
readonly speakerLowVolume: "🔈";
|
|
1802
|
+
readonly speakerMediumVolume: "🔉";
|
|
1803
|
+
readonly speakingHead: "🗣️";
|
|
1804
|
+
readonly speakNoEvilMonkey: "🙊";
|
|
1805
|
+
readonly speechBalloon: "💬";
|
|
1806
|
+
readonly speedboat: "🚤";
|
|
1807
|
+
readonly spider: "🕷️";
|
|
1808
|
+
readonly spiderWeb: "🕸️";
|
|
1809
|
+
readonly spiralCalendar: "🗓️";
|
|
1810
|
+
readonly spiralNotepad: "🗒️";
|
|
1811
|
+
readonly spiralShell: "🐚";
|
|
1812
|
+
readonly splatter: "";
|
|
1813
|
+
readonly sponge: "🧽";
|
|
1814
|
+
readonly spoon: "🥄";
|
|
1815
|
+
readonly sportsMedal: "🏅";
|
|
1816
|
+
readonly sportUtilityVehicle: "🚙";
|
|
1817
|
+
readonly spoutingWhale: "🐳";
|
|
1818
|
+
readonly squid: "🦑";
|
|
1819
|
+
readonly squintingFaceWithTongue: "😝";
|
|
1820
|
+
readonly stadium: "🏟️";
|
|
1821
|
+
readonly star: "⭐";
|
|
1822
|
+
readonly starAndCrescent: "☪️";
|
|
1823
|
+
readonly starOfDavid: "✡️";
|
|
1824
|
+
readonly starStruck: "🤩";
|
|
1825
|
+
readonly station: "🚉";
|
|
1826
|
+
readonly statueOfLiberty: "🗽";
|
|
1827
|
+
readonly steamingBowl: "🍜";
|
|
1828
|
+
readonly stethoscope: "🩺";
|
|
1829
|
+
readonly stopButton: "⏹️";
|
|
1830
|
+
readonly stopSign: "🛑";
|
|
1831
|
+
readonly stopwatch: "⏱️";
|
|
1832
|
+
readonly straightRuler: "📏";
|
|
1833
|
+
readonly strawberry: "🍓";
|
|
1834
|
+
readonly student: "🧑🎓";
|
|
1835
|
+
readonly studioMicrophone: "🎙️";
|
|
1836
|
+
readonly stuffedFlatbread: "🥙";
|
|
1837
|
+
readonly sun: "☀️";
|
|
1838
|
+
readonly sunBehindCloud: "⛅";
|
|
1839
|
+
readonly sunBehindLargeCloud: "🌥️";
|
|
1840
|
+
readonly sunBehindRainCloud: "🌦️";
|
|
1841
|
+
readonly sunBehindSmallCloud: "🌤️";
|
|
1842
|
+
readonly sunflower: "🌻";
|
|
1843
|
+
readonly sunglasses: "🕶️";
|
|
1844
|
+
readonly sunrise: "🌅";
|
|
1845
|
+
readonly sunriseOverMountains: "🌄";
|
|
1846
|
+
readonly sunset: "🌇";
|
|
1847
|
+
readonly sunWithFace: "🌞";
|
|
1848
|
+
readonly superhero: "🦸";
|
|
1849
|
+
readonly supervillain: "🦹";
|
|
1850
|
+
readonly sushi: "🍣";
|
|
1851
|
+
readonly suspensionRailway: "🚟";
|
|
1852
|
+
readonly swan: "🦢";
|
|
1853
|
+
readonly sweatDroplets: "💦";
|
|
1854
|
+
readonly synagogue: "🕍";
|
|
1855
|
+
readonly syringe: "💉";
|
|
1856
|
+
readonly taco: "🌮";
|
|
1857
|
+
readonly takeoutBox: "🥡";
|
|
1858
|
+
readonly tamale: "🫔";
|
|
1859
|
+
readonly tanabataTree: "🎋";
|
|
1860
|
+
readonly tangerine: "🍊";
|
|
1861
|
+
readonly taurus: "♉";
|
|
1862
|
+
readonly taxi: "🚕";
|
|
1863
|
+
readonly teacher: "🧑🏫";
|
|
1864
|
+
readonly teacupWithoutHandle: "🍵";
|
|
1865
|
+
readonly teapot: "🫖";
|
|
1866
|
+
readonly tearOffCalendar: "📆";
|
|
1867
|
+
readonly technologist: "🧑💻";
|
|
1868
|
+
readonly teddyBear: "🧸";
|
|
1869
|
+
readonly telephone: "☎️";
|
|
1870
|
+
readonly telephoneReceiver: "📞";
|
|
1871
|
+
readonly telescope: "🔭";
|
|
1872
|
+
readonly television: "📺";
|
|
1873
|
+
readonly tennis: "🎾";
|
|
1874
|
+
readonly tenOClock: "🕙";
|
|
1875
|
+
readonly tent: "⛺";
|
|
1876
|
+
readonly tenThirty: "🕥";
|
|
1877
|
+
readonly testTube: "🧪";
|
|
1878
|
+
readonly thermometer: "🌡️";
|
|
1879
|
+
readonly thinkingFace: "🤔";
|
|
1880
|
+
readonly thongSandal: "🩴";
|
|
1881
|
+
readonly thoughtBalloon: "💭";
|
|
1882
|
+
readonly thread: "🧵";
|
|
1883
|
+
readonly threeOClock: "🕒";
|
|
1884
|
+
readonly threeThirty: "🕞";
|
|
1885
|
+
readonly thumbsDown: "👎";
|
|
1886
|
+
readonly thumbsUp: "👍";
|
|
1887
|
+
readonly ticket: "🎫";
|
|
1888
|
+
readonly tiger: "🐅";
|
|
1889
|
+
readonly tigerFace: "🐯";
|
|
1890
|
+
readonly timerClock: "⏲️";
|
|
1891
|
+
readonly tiredFace: "😫";
|
|
1892
|
+
readonly toilet: "🚽";
|
|
1893
|
+
readonly tokyoTower: "🗼";
|
|
1894
|
+
readonly tomato: "🍅";
|
|
1895
|
+
readonly tongue: "👅";
|
|
1896
|
+
readonly toolbox: "🧰";
|
|
1897
|
+
readonly tooth: "🦷";
|
|
1898
|
+
readonly toothbrush: "🪥";
|
|
1899
|
+
readonly topArrow: "🔝";
|
|
1900
|
+
readonly topHat: "🎩";
|
|
1901
|
+
readonly tornado: "🌪️";
|
|
1902
|
+
readonly trackball: "🖲️";
|
|
1903
|
+
readonly tractor: "🚜";
|
|
1904
|
+
readonly tradeMark: "™️";
|
|
1905
|
+
readonly train: "🚆";
|
|
1906
|
+
readonly tram: "🚊";
|
|
1907
|
+
readonly tramCar: "🚋";
|
|
1908
|
+
readonly transgenderFlag: "🏳️⚧️";
|
|
1909
|
+
readonly transgenderSymbol: "⚧️";
|
|
1910
|
+
readonly treasureChest: "";
|
|
1911
|
+
readonly tRex: "🦖";
|
|
1912
|
+
readonly triangularFlag: "🚩";
|
|
1913
|
+
readonly triangularRuler: "📐";
|
|
1914
|
+
readonly tridentEmblem: "🔱";
|
|
1915
|
+
readonly troll: "🧌";
|
|
1916
|
+
readonly trolleybus: "🚎";
|
|
1917
|
+
readonly trombone: "";
|
|
1918
|
+
readonly trophy: "🏆";
|
|
1919
|
+
readonly tropicalDrink: "🍹";
|
|
1920
|
+
readonly tropicalFish: "🐠";
|
|
1921
|
+
readonly trumpet: "🎺";
|
|
1922
|
+
readonly tShirt: "👕";
|
|
1923
|
+
readonly tulip: "🌷";
|
|
1924
|
+
readonly tumblerGlass: "🥃";
|
|
1925
|
+
readonly turkey: "🦃";
|
|
1926
|
+
readonly turtle: "🐢";
|
|
1927
|
+
readonly twelveOClock: "🕛";
|
|
1928
|
+
readonly twelveThirty: "🕧";
|
|
1929
|
+
readonly twoHearts: "💕";
|
|
1930
|
+
readonly twoHumpCamel: "🐫";
|
|
1931
|
+
readonly twoOClock: "🕑";
|
|
1932
|
+
readonly twoThirty: "🕝";
|
|
1933
|
+
readonly umbrella: "☂️";
|
|
1934
|
+
readonly umbrellaOnGround: "⛱️";
|
|
1935
|
+
readonly umbrellaWithRainDrops: "☔";
|
|
1936
|
+
readonly unamusedFace: "😒";
|
|
1937
|
+
readonly unicorn: "🦄";
|
|
1938
|
+
readonly unlocked: "🔓";
|
|
1939
|
+
readonly upArrow: "⬆️";
|
|
1940
|
+
readonly upButton: "🆙";
|
|
1941
|
+
readonly upDownArrow: "↕️";
|
|
1942
|
+
readonly upLeftArrow: "↖️";
|
|
1943
|
+
readonly upRightArrow: "↗️";
|
|
1944
|
+
readonly upsideDownFace: "🙃";
|
|
1945
|
+
readonly upwardsButton: "🔼";
|
|
1946
|
+
readonly vampire: "🧛";
|
|
1947
|
+
readonly verticalTrafficLight: "🚦";
|
|
1948
|
+
readonly vibrationMode: "📳";
|
|
1949
|
+
readonly victoryHand: "✌️";
|
|
1950
|
+
readonly videoCamera: "📹";
|
|
1951
|
+
readonly videocassette: "📼";
|
|
1952
|
+
readonly videoGame: "🎮";
|
|
1953
|
+
readonly violin: "🎻";
|
|
1954
|
+
readonly virgo: "♍";
|
|
1955
|
+
readonly volcano: "🌋";
|
|
1956
|
+
readonly volleyball: "🏐";
|
|
1957
|
+
readonly vsButton: "🆚";
|
|
1958
|
+
readonly vulcanSalute: "🖖";
|
|
1959
|
+
readonly waffle: "🧇";
|
|
1960
|
+
readonly waningCrescentMoon: "🌘";
|
|
1961
|
+
readonly waningGibbousMoon: "🌖";
|
|
1962
|
+
readonly warning: "⚠️";
|
|
1963
|
+
readonly wastebasket: "🗑️";
|
|
1964
|
+
readonly watch: "⌚";
|
|
1965
|
+
readonly waterBuffalo: "🐃";
|
|
1966
|
+
readonly waterCloset: "🚾";
|
|
1967
|
+
readonly watermelon: "🍉";
|
|
1968
|
+
readonly waterPistol: "🔫";
|
|
1969
|
+
readonly waterWave: "🌊";
|
|
1970
|
+
readonly wavingHand: "👋";
|
|
1971
|
+
readonly wavyDash: "〰️";
|
|
1972
|
+
readonly waxingCrescentMoon: "🌒";
|
|
1973
|
+
readonly waxingGibbousMoon: "🌔";
|
|
1974
|
+
readonly wearyCat: "🙀";
|
|
1975
|
+
readonly wearyFace: "😩";
|
|
1976
|
+
readonly wedding: "💒";
|
|
1977
|
+
readonly whale: "🐋";
|
|
1978
|
+
readonly wheel: "🛞";
|
|
1979
|
+
readonly wheelchairSymbol: "♿";
|
|
1980
|
+
readonly wheelOfDharma: "☸️";
|
|
1981
|
+
readonly whiteCane: "🦯";
|
|
1982
|
+
readonly whiteCircle: "⚪";
|
|
1983
|
+
readonly whiteExclamationMark: "❕";
|
|
1984
|
+
readonly whiteFlag: "🏳️";
|
|
1985
|
+
readonly whiteFlower: "💮";
|
|
1986
|
+
readonly whiteHeart: "🤍";
|
|
1987
|
+
readonly whiteLargeSquare: "⬜";
|
|
1988
|
+
readonly whiteMediumSmallSquare: "◽";
|
|
1989
|
+
readonly whiteMediumSquare: "◻️";
|
|
1990
|
+
readonly whiteQuestionMark: "❔";
|
|
1991
|
+
readonly whiteSmallSquare: "▫️";
|
|
1992
|
+
readonly whiteSquareButton: "🔳";
|
|
1993
|
+
readonly wiltedFlower: "🥀";
|
|
1994
|
+
readonly windChime: "🎐";
|
|
1995
|
+
readonly windFace: "🌬️";
|
|
1996
|
+
readonly window: "🪟";
|
|
1997
|
+
readonly wineGlass: "🍷";
|
|
1998
|
+
readonly wing: "🪽";
|
|
1999
|
+
readonly winkingFace: "😉";
|
|
2000
|
+
readonly winkingFaceWithTongue: "😜";
|
|
2001
|
+
readonly wireless: "🛜";
|
|
2002
|
+
readonly wolf: "🐺";
|
|
2003
|
+
readonly woman: "👩";
|
|
2004
|
+
readonly womanAndManHoldingHands: "👫";
|
|
2005
|
+
readonly womanArtist: "👩🎨";
|
|
2006
|
+
readonly womanAstronaut: "👩🚀";
|
|
2007
|
+
readonly womanBald: "👩🦲";
|
|
2008
|
+
readonly womanBeard: "🧔♀️";
|
|
2009
|
+
readonly womanBiking: "🚴♀️";
|
|
2010
|
+
readonly womanBlondHair: "👱♀️";
|
|
2011
|
+
readonly womanBouncingBall: "⛹️♀️";
|
|
2012
|
+
readonly womanBowing: "🙇♀️";
|
|
2013
|
+
readonly womanCartwheeling: "🤸♀️";
|
|
2014
|
+
readonly womanClimbing: "🧗♀️";
|
|
2015
|
+
readonly womanConstructionWorker: "👷♀️";
|
|
2016
|
+
readonly womanCook: "👩🍳";
|
|
2017
|
+
readonly womanCurlyHair: "👩🦱";
|
|
2018
|
+
readonly womanDancing: "💃";
|
|
2019
|
+
readonly womanDetective: "🕵️♀️";
|
|
2020
|
+
readonly womanElf: "🧝♀️";
|
|
2021
|
+
readonly womanFacepalming: "🤦♀️";
|
|
2022
|
+
readonly womanFactoryWorker: "👩🏭";
|
|
2023
|
+
readonly womanFairy: "🧚♀️";
|
|
2024
|
+
readonly womanFarmer: "👩🌾";
|
|
2025
|
+
readonly womanFeedingBaby: "👩🍼";
|
|
2026
|
+
readonly womanFirefighter: "👩🚒";
|
|
2027
|
+
readonly womanFrowning: "🙍♀️";
|
|
2028
|
+
readonly womanGenie: "🧞♀️";
|
|
2029
|
+
readonly womanGesturingNo: "🙅♀️";
|
|
2030
|
+
readonly womanGesturingOk: "🙆♀️";
|
|
2031
|
+
readonly womanGettingHaircut: "💇♀️";
|
|
2032
|
+
readonly womanGettingMassage: "💆♀️";
|
|
2033
|
+
readonly womanGolfing: "🏌️♀️";
|
|
2034
|
+
readonly womanGuard: "💂♀️";
|
|
2035
|
+
readonly womanHealthWorker: "👩⚕️";
|
|
2036
|
+
readonly womanInLotusPosition: "🧘♀️";
|
|
2037
|
+
readonly womanInManualWheelchair: "👩🦽";
|
|
2038
|
+
readonly womanInManualWheelchairFacingRight: "👩🦽➡️";
|
|
2039
|
+
readonly womanInMotorizedWheelchair: "👩🦼";
|
|
2040
|
+
readonly womanInMotorizedWheelchairFacingRight: "👩🦼➡️";
|
|
2041
|
+
readonly womanInSteamyRoom: "🧖♀️";
|
|
2042
|
+
readonly womanInTuxedo: "🤵♀️";
|
|
2043
|
+
readonly womanJudge: "👩⚖️";
|
|
2044
|
+
readonly womanJuggling: "🤹♀️";
|
|
2045
|
+
readonly womanKneeling: "🧎♀️";
|
|
2046
|
+
readonly womanKneelingFacingRight: "🧎♀️➡️";
|
|
2047
|
+
readonly womanLiftingWeights: "🏋️♀️";
|
|
2048
|
+
readonly womanMage: "🧙♀️";
|
|
2049
|
+
readonly womanMechanic: "👩🔧";
|
|
2050
|
+
readonly womanMountainBiking: "🚵♀️";
|
|
2051
|
+
readonly womanOfficeWorker: "👩💼";
|
|
2052
|
+
readonly womanPilot: "👩✈️";
|
|
2053
|
+
readonly womanPlayingHandball: "🤾♀️";
|
|
2054
|
+
readonly womanPlayingWaterPolo: "🤽♀️";
|
|
2055
|
+
readonly womanPoliceOfficer: "👮♀️";
|
|
2056
|
+
readonly womanPouting: "🙎♀️";
|
|
2057
|
+
readonly womanRaisingHand: "🙋♀️";
|
|
2058
|
+
readonly womanRedHair: "👩🦰";
|
|
2059
|
+
readonly womanRowingBoat: "🚣♀️";
|
|
2060
|
+
readonly womanRunning: "🏃♀️";
|
|
2061
|
+
readonly womanRunningFacingRight: "🏃♀️➡️";
|
|
2062
|
+
readonly womanSBoot: "👢";
|
|
2063
|
+
readonly womanScientist: "👩🔬";
|
|
2064
|
+
readonly womanSClothes: "👚";
|
|
2065
|
+
readonly womanSHat: "👒";
|
|
2066
|
+
readonly womanShrugging: "🤷♀️";
|
|
2067
|
+
readonly womanSinger: "👩🎤";
|
|
2068
|
+
readonly womanSSandal: "👡";
|
|
2069
|
+
readonly womanStanding: "🧍♀️";
|
|
2070
|
+
readonly womanStudent: "👩🎓";
|
|
2071
|
+
readonly womanSuperhero: "🦸♀️";
|
|
2072
|
+
readonly womanSupervillain: "🦹♀️";
|
|
2073
|
+
readonly womanSurfing: "🏄♀️";
|
|
2074
|
+
readonly womanSwimming: "🏊♀️";
|
|
2075
|
+
readonly womanTeacher: "👩🏫";
|
|
2076
|
+
readonly womanTechnologist: "👩💻";
|
|
2077
|
+
readonly womanTippingHand: "💁♀️";
|
|
2078
|
+
readonly womanVampire: "🧛♀️";
|
|
2079
|
+
readonly womanWalking: "🚶♀️";
|
|
2080
|
+
readonly womanWalkingFacingRight: "🚶♀️➡️";
|
|
2081
|
+
readonly womanWearingTurban: "👳♀️";
|
|
2082
|
+
readonly womanWhiteHair: "👩🦳";
|
|
2083
|
+
readonly womanWithHeadscarf: "🧕";
|
|
2084
|
+
readonly womanWithVeil: "👰♀️";
|
|
2085
|
+
readonly womanWithWhiteCane: "👩🦯";
|
|
2086
|
+
readonly womanWithWhiteCaneFacingRight: "👩🦯➡️";
|
|
2087
|
+
readonly womanZombie: "🧟♀️";
|
|
2088
|
+
readonly womenHoldingHands: "👭";
|
|
2089
|
+
readonly womenSRoom: "🚺";
|
|
2090
|
+
readonly womenWithBunnyEars: "👯♀️";
|
|
2091
|
+
readonly womenWrestling: "🤼♀️";
|
|
2092
|
+
readonly wood: "🪵";
|
|
2093
|
+
readonly woozyFace: "🥴";
|
|
2094
|
+
readonly worldMap: "🗺️";
|
|
2095
|
+
readonly worm: "🪱";
|
|
2096
|
+
readonly worriedFace: "😟";
|
|
2097
|
+
readonly wrappedGift: "🎁";
|
|
2098
|
+
readonly wrench: "🔧";
|
|
2099
|
+
readonly writingHand: "✍️";
|
|
2100
|
+
readonly xRay: "🩻";
|
|
2101
|
+
readonly yarn: "🧶";
|
|
2102
|
+
readonly yawningFace: "🥱";
|
|
2103
|
+
readonly yellowCircle: "🟡";
|
|
2104
|
+
readonly yellowHeart: "💛";
|
|
2105
|
+
readonly yellowSquare: "🟨";
|
|
2106
|
+
readonly yenBanknote: "💴";
|
|
2107
|
+
readonly yinYang: "☯️";
|
|
2108
|
+
readonly yoYo: "🪀";
|
|
2109
|
+
readonly zanyFace: "🤪";
|
|
2110
|
+
readonly zebra: "🦓";
|
|
2111
|
+
readonly zipperMouthFace: "🤐";
|
|
2112
|
+
readonly zombie: "🧟";
|
|
2113
|
+
readonly zzz: "💤";
|
|
2114
|
+
};
|
|
2115
|
+
type EmojiKey = keyof typeof Emoji;
|
|
2116
|
+
|
|
159
2117
|
declare function definePlatform<_Name extends string, _ConfigSchema extends z__default.ZodType<object>, _UserSchema extends z__default.ZodType<object> | undefined, _SpaceSchema extends z__default.ZodType<object> | undefined, _SpaceParamsSchema extends z__default.ZodType<object> | undefined, _Client, _ResolvedUser extends {
|
|
160
2118
|
id: string;
|
|
161
2119
|
}, _ResolvedSpace extends {
|
|
@@ -182,14 +2140,32 @@ type SpectrumInstance<Providers extends PlatformProviderConfig[] = PlatformProvi
|
|
|
182
2140
|
edit(message: OutboundMessage, newContent: ContentInput): Promise<void>;
|
|
183
2141
|
responding<T>(space: Space, fn: () => T | Promise<T>): Promise<T>;
|
|
184
2142
|
};
|
|
2143
|
+
/**
|
|
2144
|
+
* Runtime behavior tweaks for a Spectrum instance.
|
|
2145
|
+
*/
|
|
2146
|
+
interface SpectrumOptions {
|
|
2147
|
+
/**
|
|
2148
|
+
* When `true`, inbound `group` messages are never delivered whole. Instead,
|
|
2149
|
+
* each group item is yielded from `spectrum.messages` as its own
|
|
2150
|
+
* `[space, message]` tuple, in order. Items retain their individual
|
|
2151
|
+
* `id`, `sender`, `timestamp`, and `.react()` / `.reply()` methods.
|
|
2152
|
+
*
|
|
2153
|
+
* Does not affect outbound `group(...)` sends or `space.getMessage(id)`.
|
|
2154
|
+
*
|
|
2155
|
+
* @default false
|
|
2156
|
+
*/
|
|
2157
|
+
flattenGroups?: boolean;
|
|
2158
|
+
}
|
|
185
2159
|
declare function Spectrum<const Providers extends PlatformProviderConfig[]>(options: {
|
|
186
2160
|
projectId: string;
|
|
187
2161
|
projectSecret: string;
|
|
188
2162
|
providers: [...Providers];
|
|
2163
|
+
options?: SpectrumOptions;
|
|
189
2164
|
} | {
|
|
190
2165
|
projectId?: never;
|
|
191
2166
|
projectSecret?: never;
|
|
192
2167
|
providers: [...Providers];
|
|
2168
|
+
options?: SpectrumOptions;
|
|
193
2169
|
}): Promise<SpectrumInstance<Providers>>;
|
|
194
2170
|
|
|
195
2171
|
type SubscriptionStatus = "active" | "canceled" | "past_due";
|
|
@@ -258,4 +2234,4 @@ declare class UnsupportedError extends Error {
|
|
|
258
2234
|
declare const fromVCard: (vcf: string) => ContactInput;
|
|
259
2235
|
declare const toVCard: (contact: Contact) => Promise<string>;
|
|
260
2236
|
|
|
261
|
-
export { type CloudPlatform, type Contact, type ContactAddress, type ContactDetails, type ContactEmail, type ContactInput, type ContactName, type ContactOrg, type ContactPhone, Content, ContentBuilder, ContentInput, type DedicatedTokenData, type ImessageInfoData, Platform, PlatformDef, PlatformProviderConfig, type PlatformStatus, type PlatformsData, type Richlink, type SharedTokenData, Space, Spectrum, SpectrumCloudError, type SpectrumInstance, type SubscriptionData, type SubscriptionStatus, type TokenData, UnsupportedError, type UnsupportedKind, User, type Voice, attachment, cloud, contact, custom, definePlatform, fromVCard, resolveContents, richlink, text, toVCard, voice };
|
|
2237
|
+
export { type CloudPlatform, type Contact, type ContactAddress, type ContactDetails, type ContactEmail, type ContactInput, type ContactName, type ContactOrg, type ContactPhone, Content, ContentBuilder, ContentInput, type DedicatedTokenData, Emoji, type EmojiKey, type Group, type ImessageInfoData, Message, Platform, PlatformDef, PlatformProviderConfig, type PlatformStatus, type PlatformsData, type Reaction, type Richlink, type SharedTokenData, Space, Spectrum, SpectrumCloudError, type SpectrumInstance, type SubscriptionData, type SubscriptionStatus, type TokenData, UnsupportedError, type UnsupportedKind, User, type Voice, attachment, cloud, contact, custom, definePlatform, fromVCard, group, reaction, resolveContents, richlink, text, toVCard, voice };
|