forked from signalapp/Signal-iOS
-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathEmoji.swift
1885 lines (1882 loc) · 55.9 KB
/
Emoji.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// This file is generated by EmojiGenerator.swift, do not manually edit it.
// swiftlint:disable all
// stringlint:disable
/// A sorted representation of all available emoji
enum Emoji: String, CaseIterable, Equatable {
case grinning = "😀"
case smiley = "😃"
case smile = "😄"
case grin = "😁"
case laughing = "😆"
case sweatSmile = "😅"
case rollingOnTheFloorLaughing = "🤣"
case joy = "😂"
case slightlySmilingFace = "🙂"
case upsideDownFace = "🙃"
case meltingFace = "🫠"
case wink = "😉"
case blush = "😊"
case innocent = "😇"
case smilingFaceWith3Hearts = "🥰"
case heartEyes = "😍"
case starStruck = "🤩"
case kissingHeart = "😘"
case kissing = "😗"
case relaxed = "☺️"
case kissingClosedEyes = "😚"
case kissingSmilingEyes = "😙"
case smilingFaceWithTear = "🥲"
case yum = "😋"
case stuckOutTongue = "😛"
case stuckOutTongueWinkingEye = "😜"
case zanyFace = "🤪"
case stuckOutTongueClosedEyes = "😝"
case moneyMouthFace = "🤑"
case huggingFace = "🤗"
case faceWithHandOverMouth = "🤭"
case faceWithOpenEyesAndHandOverMouth = "🫢"
case faceWithPeekingEye = "🫣"
case shushingFace = "🤫"
case thinkingFace = "🤔"
case salutingFace = "🫡"
case zipperMouthFace = "🤐"
case faceWithRaisedEyebrow = "🤨"
case neutralFace = "😐"
case expressionless = "😑"
case noMouth = "😶"
case dottedLineFace = "🫥"
case faceInClouds = "😶🌫️"
case smirk = "😏"
case unamused = "😒"
case faceWithRollingEyes = "🙄"
case grimacing = "😬"
case faceExhaling = "😮💨"
case lyingFace = "🤥"
case shakingFace = "🫨"
case relieved = "😌"
case pensive = "😔"
case sleepy = "😪"
case droolingFace = "🤤"
case sleeping = "😴"
case mask = "😷"
case faceWithThermometer = "🤒"
case faceWithHeadBandage = "🤕"
case nauseatedFace = "🤢"
case faceVomiting = "🤮"
case sneezingFace = "🤧"
case hotFace = "🥵"
case coldFace = "🥶"
case woozyFace = "🥴"
case dizzyFace = "😵"
case faceWithSpiralEyes = "😵💫"
case explodingHead = "🤯"
case faceWithCowboyHat = "🤠"
case partyingFace = "🥳"
case disguisedFace = "🥸"
case sunglasses = "😎"
case nerdFace = "🤓"
case faceWithMonocle = "🧐"
case confused = "😕"
case faceWithDiagonalMouth = "🫤"
case worried = "😟"
case slightlyFrowningFace = "🙁"
case whiteFrowningFace = "☹️"
case openMouth = "😮"
case hushed = "😯"
case astonished = "😲"
case flushed = "😳"
case pleadingFace = "🥺"
case faceHoldingBackTears = "🥹"
case frowning = "😦"
case anguished = "😧"
case fearful = "😨"
case coldSweat = "😰"
case disappointedRelieved = "😥"
case cry = "😢"
case sob = "😭"
case scream = "😱"
case confounded = "😖"
case persevere = "😣"
case disappointed = "😞"
case sweat = "😓"
case weary = "😩"
case tiredFace = "😫"
case yawningFace = "🥱"
case triumph = "😤"
case rage = "😡"
case angry = "😠"
case faceWithSymbolsOnMouth = "🤬"
case smilingImp = "😈"
case imp = "👿"
case skull = "💀"
case skullAndCrossbones = "☠️"
case hankey = "💩"
case clownFace = "🤡"
case japaneseOgre = "👹"
case japaneseGoblin = "👺"
case ghost = "👻"
case alien = "👽"
case spaceInvader = "👾"
case robotFace = "🤖"
case smileyCat = "😺"
case smileCat = "😸"
case joyCat = "😹"
case heartEyesCat = "😻"
case smirkCat = "😼"
case kissingCat = "😽"
case screamCat = "🙀"
case cryingCatFace = "😿"
case poutingCat = "😾"
case seeNoEvil = "🙈"
case hearNoEvil = "🙉"
case speakNoEvil = "🙊"
case loveLetter = "💌"
case cupid = "💘"
case giftHeart = "💝"
case sparklingHeart = "💖"
case heartpulse = "💗"
case heartbeat = "💓"
case revolvingHearts = "💞"
case twoHearts = "💕"
case heartDecoration = "💟"
case heavyHeartExclamationMarkOrnament = "❣️"
case brokenHeart = "💔"
case heartOnFire = "❤️🔥"
case mendingHeart = "❤️🩹"
case heart = "❤️"
case pinkHeart = "🩷"
case orangeHeart = "🧡"
case yellowHeart = "💛"
case greenHeart = "💚"
case blueHeart = "💙"
case lightBlueHeart = "🩵"
case purpleHeart = "💜"
case brownHeart = "🤎"
case blackHeart = "🖤"
case greyHeart = "🩶"
case whiteHeart = "🤍"
case kiss = "💋"
case oneHundred = "💯"
case anger = "💢"
case boom = "💥"
case dizzy = "💫"
case sweatDrops = "💦"
case dash = "💨"
case hole = "🕳️"
case speechBalloon = "💬"
case eyeInSpeechBubble = "👁️🗨️"
case leftSpeechBubble = "🗨️"
case rightAngerBubble = "🗯️"
case thoughtBalloon = "💭"
case zzz = "💤"
case wave = "👋"
case raisedBackOfHand = "🤚"
case raisedHandWithFingersSplayed = "🖐️"
case hand = "✋"
case spockHand = "🖖"
case rightwardsHand = "🫱"
case leftwardsHand = "🫲"
case palmDownHand = "🫳"
case palmUpHand = "🫴"
case leftwardsPushingHand = "🫷"
case rightwardsPushingHand = "🫸"
case okHand = "👌"
case pinchedFingers = "🤌"
case pinchingHand = "🤏"
case v = "✌️"
case crossedFingers = "🤞"
case handWithIndexFingerAndThumbCrossed = "🫰"
case iLoveYouHandSign = "🤟"
case theHorns = "🤘"
case callMeHand = "🤙"
case pointLeft = "👈"
case pointRight = "👉"
case pointUp2 = "👆"
case middleFinger = "🖕"
case pointDown = "👇"
case pointUp = "☝️"
case indexPointingAtTheViewer = "🫵"
case plusOne = "👍"
case negativeOne = "👎"
case fist = "✊"
case facepunch = "👊"
case leftFacingFist = "🤛"
case rightFacingFist = "🤜"
case clap = "👏"
case raisedHands = "🙌"
case heartHands = "🫶"
case openHands = "👐"
case palmsUpTogether = "🤲"
case handshake = "🤝"
case pray = "🙏"
case writingHand = "✍️"
case nailCare = "💅"
case selfie = "🤳"
case muscle = "💪"
case mechanicalArm = "🦾"
case mechanicalLeg = "🦿"
case leg = "🦵"
case foot = "🦶"
case ear = "👂"
case earWithHearingAid = "🦻"
case nose = "👃"
case brain = "🧠"
case anatomicalHeart = "🫀"
case lungs = "🫁"
case tooth = "🦷"
case bone = "🦴"
case eyes = "👀"
case eye = "👁️"
case tongue = "👅"
case lips = "👄"
case bitingLip = "🫦"
case baby = "👶"
case child = "🧒"
case boy = "👦"
case girl = "👧"
case adult = "🧑"
case personWithBlondHair = "👱"
case man = "👨"
case beardedPerson = "🧔"
case manWithBeard = "🧔♂️"
case womanWithBeard = "🧔♀️"
case redHairedMan = "👨🦰"
case curlyHairedMan = "👨🦱"
case whiteHairedMan = "👨🦳"
case baldMan = "👨🦲"
case woman = "👩"
case redHairedWoman = "👩🦰"
case redHairedPerson = "🧑🦰"
case curlyHairedWoman = "👩🦱"
case curlyHairedPerson = "🧑🦱"
case whiteHairedWoman = "👩🦳"
case whiteHairedPerson = "🧑🦳"
case baldWoman = "👩🦲"
case baldPerson = "🧑🦲"
case blondHairedWoman = "👱♀️"
case blondHairedMan = "👱♂️"
case olderAdult = "🧓"
case olderMan = "👴"
case olderWoman = "👵"
case personFrowning = "🙍"
case manFrowning = "🙍♂️"
case womanFrowning = "🙍♀️"
case personWithPoutingFace = "🙎"
case manPouting = "🙎♂️"
case womanPouting = "🙎♀️"
case noGood = "🙅"
case manGesturingNo = "🙅♂️"
case womanGesturingNo = "🙅♀️"
case okWoman = "🙆"
case manGesturingOk = "🙆♂️"
case womanGesturingOk = "🙆♀️"
case informationDeskPerson = "💁"
case manTippingHand = "💁♂️"
case womanTippingHand = "💁♀️"
case raisingHand = "🙋"
case manRaisingHand = "🙋♂️"
case womanRaisingHand = "🙋♀️"
case deafPerson = "🧏"
case deafMan = "🧏♂️"
case deafWoman = "🧏♀️"
case bow = "🙇"
case manBowing = "🙇♂️"
case womanBowing = "🙇♀️"
case facePalm = "🤦"
case manFacepalming = "🤦♂️"
case womanFacepalming = "🤦♀️"
case shrug = "🤷"
case manShrugging = "🤷♂️"
case womanShrugging = "🤷♀️"
case healthWorker = "🧑⚕️"
case maleDoctor = "👨⚕️"
case femaleDoctor = "👩⚕️"
case student = "🧑🎓"
case maleStudent = "👨🎓"
case femaleStudent = "👩🎓"
case teacher = "🧑🏫"
case maleTeacher = "👨🏫"
case femaleTeacher = "👩🏫"
case judge = "🧑⚖️"
case maleJudge = "👨⚖️"
case femaleJudge = "👩⚖️"
case farmer = "🧑🌾"
case maleFarmer = "👨🌾"
case femaleFarmer = "👩🌾"
case cook = "🧑🍳"
case maleCook = "👨🍳"
case femaleCook = "👩🍳"
case mechanic = "🧑🔧"
case maleMechanic = "👨🔧"
case femaleMechanic = "👩🔧"
case factoryWorker = "🧑🏭"
case maleFactoryWorker = "👨🏭"
case femaleFactoryWorker = "👩🏭"
case officeWorker = "🧑💼"
case maleOfficeWorker = "👨💼"
case femaleOfficeWorker = "👩💼"
case scientist = "🧑🔬"
case maleScientist = "👨🔬"
case femaleScientist = "👩🔬"
case technologist = "🧑💻"
case maleTechnologist = "👨💻"
case femaleTechnologist = "👩💻"
case singer = "🧑🎤"
case maleSinger = "👨🎤"
case femaleSinger = "👩🎤"
case artist = "🧑🎨"
case maleArtist = "👨🎨"
case femaleArtist = "👩🎨"
case pilot = "🧑✈️"
case malePilot = "👨✈️"
case femalePilot = "👩✈️"
case astronaut = "🧑🚀"
case maleAstronaut = "👨🚀"
case femaleAstronaut = "👩🚀"
case firefighter = "🧑🚒"
case maleFirefighter = "👨🚒"
case femaleFirefighter = "👩🚒"
case cop = "👮"
case malePoliceOfficer = "👮♂️"
case femalePoliceOfficer = "👮♀️"
case sleuthOrSpy = "🕵️"
case maleDetective = "🕵️♂️"
case femaleDetective = "🕵️♀️"
case guardsman = "💂"
case maleGuard = "💂♂️"
case femaleGuard = "💂♀️"
case ninja = "🥷"
case constructionWorker = "👷"
case maleConstructionWorker = "👷♂️"
case femaleConstructionWorker = "👷♀️"
case personWithCrown = "🫅"
case prince = "🤴"
case princess = "👸"
case manWithTurban = "👳"
case manWearingTurban = "👳♂️"
case womanWearingTurban = "👳♀️"
case manWithGuaPiMao = "👲"
case personWithHeadscarf = "🧕"
case personInTuxedo = "🤵"
case manInTuxedo = "🤵♂️"
case womanInTuxedo = "🤵♀️"
case brideWithVeil = "👰"
case manWithVeil = "👰♂️"
case womanWithVeil = "👰♀️"
case pregnantWoman = "🤰"
case pregnantMan = "🫃"
case pregnantPerson = "🫄"
case breastFeeding = "🤱"
case womanFeedingBaby = "👩🍼"
case manFeedingBaby = "👨🍼"
case personFeedingBaby = "🧑🍼"
case angel = "👼"
case santa = "🎅"
case mrsClaus = "🤶"
case mxClaus = "🧑🎄"
case superhero = "🦸"
case maleSuperhero = "🦸♂️"
case femaleSuperhero = "🦸♀️"
case supervillain = "🦹"
case maleSupervillain = "🦹♂️"
case femaleSupervillain = "🦹♀️"
case mage = "🧙"
case maleMage = "🧙♂️"
case femaleMage = "🧙♀️"
case fairy = "🧚"
case maleFairy = "🧚♂️"
case femaleFairy = "🧚♀️"
case vampire = "🧛"
case maleVampire = "🧛♂️"
case femaleVampire = "🧛♀️"
case merperson = "🧜"
case merman = "🧜♂️"
case mermaid = "🧜♀️"
case elf = "🧝"
case maleElf = "🧝♂️"
case femaleElf = "🧝♀️"
case genie = "🧞"
case maleGenie = "🧞♂️"
case femaleGenie = "🧞♀️"
case zombie = "🧟"
case maleZombie = "🧟♂️"
case femaleZombie = "🧟♀️"
case troll = "🧌"
case massage = "💆"
case manGettingMassage = "💆♂️"
case womanGettingMassage = "💆♀️"
case haircut = "💇"
case manGettingHaircut = "💇♂️"
case womanGettingHaircut = "💇♀️"
case walking = "🚶"
case manWalking = "🚶♂️"
case womanWalking = "🚶♀️"
case standingPerson = "🧍"
case manStanding = "🧍♂️"
case womanStanding = "🧍♀️"
case kneelingPerson = "🧎"
case manKneeling = "🧎♂️"
case womanKneeling = "🧎♀️"
case personWithProbingCane = "🧑🦯"
case manWithProbingCane = "👨🦯"
case womanWithProbingCane = "👩🦯"
case personInMotorizedWheelchair = "🧑🦼"
case manInMotorizedWheelchair = "👨🦼"
case womanInMotorizedWheelchair = "👩🦼"
case personInManualWheelchair = "🧑🦽"
case manInManualWheelchair = "👨🦽"
case womanInManualWheelchair = "👩🦽"
case runner = "🏃"
case manRunning = "🏃♂️"
case womanRunning = "🏃♀️"
case dancer = "💃"
case manDancing = "🕺"
case manInBusinessSuitLevitating = "🕴️"
case dancers = "👯"
case menWithBunnyEarsPartying = "👯♂️"
case womenWithBunnyEarsPartying = "👯♀️"
case personInSteamyRoom = "🧖"
case manInSteamyRoom = "🧖♂️"
case womanInSteamyRoom = "🧖♀️"
case personClimbing = "🧗"
case manClimbing = "🧗♂️"
case womanClimbing = "🧗♀️"
case fencer = "🤺"
case horseRacing = "🏇"
case skier = "⛷️"
case snowboarder = "🏂"
case golfer = "🏌️"
case manGolfing = "🏌️♂️"
case womanGolfing = "🏌️♀️"
case surfer = "🏄"
case manSurfing = "🏄♂️"
case womanSurfing = "🏄♀️"
case rowboat = "🚣"
case manRowingBoat = "🚣♂️"
case womanRowingBoat = "🚣♀️"
case swimmer = "🏊"
case manSwimming = "🏊♂️"
case womanSwimming = "🏊♀️"
case personWithBall = "⛹️"
case manBouncingBall = "⛹️♂️"
case womanBouncingBall = "⛹️♀️"
case weightLifter = "🏋️"
case manLiftingWeights = "🏋️♂️"
case womanLiftingWeights = "🏋️♀️"
case bicyclist = "🚴"
case manBiking = "🚴♂️"
case womanBiking = "🚴♀️"
case mountainBicyclist = "🚵"
case manMountainBiking = "🚵♂️"
case womanMountainBiking = "🚵♀️"
case personDoingCartwheel = "🤸"
case manCartwheeling = "🤸♂️"
case womanCartwheeling = "🤸♀️"
case wrestlers = "🤼"
case manWrestling = "🤼♂️"
case womanWrestling = "🤼♀️"
case waterPolo = "🤽"
case manPlayingWaterPolo = "🤽♂️"
case womanPlayingWaterPolo = "🤽♀️"
case handball = "🤾"
case manPlayingHandball = "🤾♂️"
case womanPlayingHandball = "🤾♀️"
case juggling = "🤹"
case manJuggling = "🤹♂️"
case womanJuggling = "🤹♀️"
case personInLotusPosition = "🧘"
case manInLotusPosition = "🧘♂️"
case womanInLotusPosition = "🧘♀️"
case bath = "🛀"
case sleepingAccommodation = "🛌"
case peopleHoldingHands = "🧑🤝🧑"
case twoWomenHoldingHands = "👭"
case manAndWomanHoldingHands = "👫"
case twoMenHoldingHands = "👬"
case personKissPerson = "💏"
case womanKissMan = "👩❤️💋👨"
case manKissMan = "👨❤️💋👨"
case womanKissWoman = "👩❤️💋👩"
case personHeartPerson = "💑"
case womanHeartMan = "👩❤️👨"
case manHeartMan = "👨❤️👨"
case womanHeartWoman = "👩❤️👩"
case family = "👪"
case manWomanBoy = "👨👩👦"
case manWomanGirl = "👨👩👧"
case manWomanGirlBoy = "👨👩👧👦"
case manWomanBoyBoy = "👨👩👦👦"
case manWomanGirlGirl = "👨👩👧👧"
case manManBoy = "👨👨👦"
case manManGirl = "👨👨👧"
case manManGirlBoy = "👨👨👧👦"
case manManBoyBoy = "👨👨👦👦"
case manManGirlGirl = "👨👨👧👧"
case womanWomanBoy = "👩👩👦"
case womanWomanGirl = "👩👩👧"
case womanWomanGirlBoy = "👩👩👧👦"
case womanWomanBoyBoy = "👩👩👦👦"
case womanWomanGirlGirl = "👩👩👧👧"
case manBoy = "👨👦"
case manBoyBoy = "👨👦👦"
case manGirl = "👨👧"
case manGirlBoy = "👨👧👦"
case manGirlGirl = "👨👧👧"
case womanBoy = "👩👦"
case womanBoyBoy = "👩👦👦"
case womanGirl = "👩👧"
case womanGirlBoy = "👩👧👦"
case womanGirlGirl = "👩👧👧"
case speakingHeadInSilhouette = "🗣️"
case bustInSilhouette = "👤"
case bustsInSilhouette = "👥"
case peopleHugging = "🫂"
case footprints = "👣"
case skinTone2 = "🏻"
case skinTone3 = "🏼"
case skinTone4 = "🏽"
case skinTone5 = "🏾"
case skinTone6 = "🏿"
case monkeyFace = "🐵"
case monkey = "🐒"
case gorilla = "🦍"
case orangutan = "🦧"
case dog = "🐶"
case dog2 = "🐕"
case guideDog = "🦮"
case serviceDog = "🐕🦺"
case poodle = "🐩"
case wolf = "🐺"
case foxFace = "🦊"
case raccoon = "🦝"
case cat = "🐱"
case cat2 = "🐈"
case blackCat = "🐈⬛"
case lionFace = "🦁"
case tiger = "🐯"
case tiger2 = "🐅"
case leopard = "🐆"
case horse = "🐴"
case moose = "🫎"
case donkey = "🫏"
case racehorse = "🐎"
case unicornFace = "🦄"
case zebraFace = "🦓"
case deer = "🦌"
case bison = "🦬"
case cow = "🐮"
case ox = "🐂"
case waterBuffalo = "🐃"
case cow2 = "🐄"
case pig = "🐷"
case pig2 = "🐖"
case boar = "🐗"
case pigNose = "🐽"
case ram = "🐏"
case sheep = "🐑"
case goat = "🐐"
case dromedaryCamel = "🐪"
case camel = "🐫"
case llama = "🦙"
case giraffeFace = "🦒"
case elephant = "🐘"
case mammoth = "🦣"
case rhinoceros = "🦏"
case hippopotamus = "🦛"
case mouse = "🐭"
case mouse2 = "🐁"
case rat = "🐀"
case hamster = "🐹"
case rabbit = "🐰"
case rabbit2 = "🐇"
case chipmunk = "🐿️"
case beaver = "🦫"
case hedgehog = "🦔"
case bat = "🦇"
case bear = "🐻"
case polarBear = "🐻❄️"
case koala = "🐨"
case pandaFace = "🐼"
case sloth = "🦥"
case otter = "🦦"
case skunk = "🦨"
case kangaroo = "🦘"
case badger = "🦡"
case feet = "🐾"
case turkey = "🦃"
case chicken = "🐔"
case rooster = "🐓"
case hatchingChick = "🐣"
case babyChick = "🐤"
case hatchedChick = "🐥"
case bird = "🐦"
case penguin = "🐧"
case doveOfPeace = "🕊️"
case eagle = "🦅"
case duck = "🦆"
case swan = "🦢"
case owl = "🦉"
case dodo = "🦤"
case feather = "🪶"
case flamingo = "🦩"
case peacock = "🦚"
case parrot = "🦜"
case wing = "🪽"
case blackBird = "🐦⬛"
case goose = "🪿"
case frog = "🐸"
case crocodile = "🐊"
case turtle = "🐢"
case lizard = "🦎"
case snake = "🐍"
case dragonFace = "🐲"
case dragon = "🐉"
case sauropod = "🦕"
case tRex = "🦖"
case whale = "🐳"
case whale2 = "🐋"
case dolphin = "🐬"
case seal = "🦭"
case fish = "🐟"
case tropicalFish = "🐠"
case blowfish = "🐡"
case shark = "🦈"
case octopus = "🐙"
case shell = "🐚"
case coral = "🪸"
case jellyfish = "🪼"
case snail = "🐌"
case butterfly = "🦋"
case bug = "🐛"
case ant = "🐜"
case bee = "🐝"
case beetle = "🪲"
case ladybug = "🐞"
case cricket = "🦗"
case cockroach = "🪳"
case spider = "🕷️"
case spiderWeb = "🕸️"
case scorpion = "🦂"
case mosquito = "🦟"
case fly = "🪰"
case worm = "🪱"
case microbe = "🦠"
case bouquet = "💐"
case cherryBlossom = "🌸"
case whiteFlower = "💮"
case lotus = "🪷"
case rosette = "🏵️"
case rose = "🌹"
case wiltedFlower = "🥀"
case hibiscus = "🌺"
case sunflower = "🌻"
case blossom = "🌼"
case tulip = "🌷"
case hyacinth = "🪻"
case seedling = "🌱"
case pottedPlant = "🪴"
case evergreenTree = "🌲"
case deciduousTree = "🌳"
case palmTree = "🌴"
case cactus = "🌵"
case earOfRice = "🌾"
case herb = "🌿"
case shamrock = "☘️"
case fourLeafClover = "🍀"
case mapleLeaf = "🍁"
case fallenLeaf = "🍂"
case leaves = "🍃"
case emptyNest = "🪹"
case nestWithEggs = "🪺"
case mushroom = "🍄"
case grapes = "🍇"
case melon = "🍈"
case watermelon = "🍉"
case tangerine = "🍊"
case lemon = "🍋"
case banana = "🍌"
case pineapple = "🍍"
case mango = "🥭"
case apple = "🍎"
case greenApple = "🍏"
case pear = "🍐"
case peach = "🍑"
case cherries = "🍒"
case strawberry = "🍓"
case blueberries = "🫐"
case kiwifruit = "🥝"
case tomato = "🍅"
case olive = "🫒"
case coconut = "🥥"
case avocado = "🥑"
case eggplant = "🍆"
case potato = "🥔"
case carrot = "🥕"
case corn = "🌽"
case hotPepper = "🌶️"
case bellPepper = "🫑"
case cucumber = "🥒"
case leafyGreen = "🥬"
case broccoli = "🥦"
case garlic = "🧄"
case onion = "🧅"
case peanuts = "🥜"
case beans = "🫘"
case chestnut = "🌰"
case gingerRoot = "🫚"
case peaPod = "🫛"
case bread = "🍞"
case croissant = "🥐"
case baguetteBread = "🥖"
case flatbread = "🫓"
case pretzel = "🥨"
case bagel = "🥯"
case pancakes = "🥞"
case waffle = "🧇"
case cheeseWedge = "🧀"
case meatOnBone = "🍖"
case poultryLeg = "🍗"
case cutOfMeat = "🥩"
case bacon = "🥓"
case hamburger = "🍔"
case fries = "🍟"
case pizza = "🍕"
case hotdog = "🌭"
case sandwich = "🥪"
case taco = "🌮"
case burrito = "🌯"
case tamale = "🫔"
case stuffedFlatbread = "🥙"
case falafel = "🧆"
case egg = "🥚"
case friedEgg = "🍳"
case shallowPanOfFood = "🥘"
case stew = "🍲"
case fondue = "🫕"
case bowlWithSpoon = "🥣"
case greenSalad = "🥗"
case popcorn = "🍿"
case butter = "🧈"
case salt = "🧂"
case cannedFood = "🥫"
case bento = "🍱"
case riceCracker = "🍘"
case riceBall = "🍙"
case rice = "🍚"
case curry = "🍛"
case ramen = "🍜"
case spaghetti = "🍝"
case sweetPotato = "🍠"
case oden = "🍢"
case sushi = "🍣"
case friedShrimp = "🍤"
case fishCake = "🍥"
case moonCake = "🥮"
case dango = "🍡"
case dumpling = "🥟"
case fortuneCookie = "🥠"
case takeoutBox = "🥡"
case crab = "🦀"
case lobster = "🦞"
case shrimp = "🦐"
case squid = "🦑"
case oyster = "🦪"
case icecream = "🍦"
case shavedIce = "🍧"
case iceCream = "🍨"
case doughnut = "🍩"
case cookie = "🍪"
case birthday = "🎂"
case cake = "🍰"
case cupcake = "🧁"
case pie = "🥧"
case chocolateBar = "🍫"
case candy = "🍬"
case lollipop = "🍭"
case custard = "🍮"
case honeyPot = "🍯"
case babyBottle = "🍼"
case glassOfMilk = "🥛"
case coffee = "☕"
case teapot = "🫖"
case tea = "🍵"
case sake = "🍶"
case champagne = "🍾"
case wineGlass = "🍷"
case cocktail = "🍸"
case tropicalDrink = "🍹"
case beer = "🍺"
case beers = "🍻"
case clinkingGlasses = "🥂"
case tumblerGlass = "🥃"
case pouringLiquid = "🫗"
case cupWithStraw = "🥤"
case bubbleTea = "🧋"
case beverageBox = "🧃"
case mateDrink = "🧉"
case iceCube = "🧊"
case chopsticks = "🥢"
case knifeForkPlate = "🍽️"
case forkAndKnife = "🍴"
case spoon = "🥄"
case hocho = "🔪"
case jar = "🫙"
case amphora = "🏺"
case earthAfrica = "🌍"
case earthAmericas = "🌎"
case earthAsia = "🌏"
case globeWithMeridians = "🌐"
case worldMap = "🗺️"
case japan = "🗾"
case compass = "🧭"
case snowCappedMountain = "🏔️"
case mountain = "⛰️"
case volcano = "🌋"
case mountFuji = "🗻"
case camping = "🏕️"
case beachWithUmbrella = "🏖️"
case desert = "🏜️"
case desertIsland = "🏝️"
case nationalPark = "🏞️"
case stadium = "🏟️"
case classicalBuilding = "🏛️"
case buildingConstruction = "🏗️"
case bricks = "🧱"
case rock = "🪨"
case wood = "🪵"
case hut = "🛖"
case houseBuildings = "🏘️"
case derelictHouseBuilding = "🏚️"
case house = "🏠"
case houseWithGarden = "🏡"
case office = "🏢"
case postOffice = "🏣"
case europeanPostOffice = "🏤"
case hospital = "🏥"
case bank = "🏦"
case hotel = "🏨"
case loveHotel = "🏩"
case convenienceStore = "🏪"
case school = "🏫"
case departmentStore = "🏬"
case factory = "🏭"
case japaneseCastle = "🏯"
case europeanCastle = "🏰"
case wedding = "💒"
case tokyoTower = "🗼"
case statueOfLiberty = "🗽"
case church = "⛪"
case mosque = "🕌"
case hinduTemple = "🛕"
case synagogue = "🕍"
case shintoShrine = "⛩️"
case kaaba = "🕋"
case fountain = "⛲"
case tent = "⛺"
case foggy = "🌁"
case nightWithStars = "🌃"
case cityscape = "🏙️"
case sunriseOverMountains = "🌄"
case sunrise = "🌅"
case citySunset = "🌆"
case citySunrise = "🌇"
case bridgeAtNight = "🌉"
case hotsprings = "♨️"
case carouselHorse = "🎠"
case playgroundSlide = "🛝"
case ferrisWheel = "🎡"
case rollerCoaster = "🎢"
case barber = "💈"
case circusTent = "🎪"
case steamLocomotive = "🚂"
case railwayCar = "🚃"
case bullettrainSide = "🚄"
case bullettrainFront = "🚅"
case train2 = "🚆"
case metro = "🚇"
case lightRail = "🚈"
case station = "🚉"
case tram = "🚊"
case monorail = "🚝"
case mountainRailway = "🚞"
case train = "🚋"
case bus = "🚌"
case oncomingBus = "🚍"
case trolleybus = "🚎"
case minibus = "🚐"
case ambulance = "🚑"
case fireEngine = "🚒"
case policeCar = "🚓"
case oncomingPoliceCar = "🚔"
case taxi = "🚕"
case oncomingTaxi = "🚖"
case car = "🚗"
case oncomingAutomobile = "🚘"
case blueCar = "🚙"
case pickupTruck = "🛻"
case truck = "🚚"
case articulatedLorry = "🚛"
case tractor = "🚜"
case racingCar = "🏎️"
case racingMotorcycle = "🏍️"
case motorScooter = "🛵"
case manualWheelchair = "🦽"
case motorizedWheelchair = "🦼"
case autoRickshaw = "🛺"
case bike = "🚲"
case scooter = "🛴"
case skateboard = "🛹"
case rollerSkate = "🛼"
case busstop = "🚏"
case motorway = "🛣️"
case railwayTrack = "🛤️"
case oilDrum = "🛢️"
case fuelpump = "⛽"
case wheel = "🛞"
case rotatingLight = "🚨"
case trafficLight = "🚥"
case verticalTrafficLight = "🚦"
case octagonalSign = "🛑"
case construction = "🚧"
case anchor = "⚓"
case ringBuoy = "🛟"
case boat = "⛵"
case canoe = "🛶"
case speedboat = "🚤"
case passengerShip = "🛳️"
case ferry = "⛴️"
case motorBoat = "🛥️"
case ship = "🚢"
case airplane = "✈️"
case smallAirplane = "🛩️"
case airplaneDeparture = "🛫"
case airplaneArriving = "🛬"
case parachute = "🪂"
case seat = "💺"
case helicopter = "🚁"
case suspensionRailway = "🚟"
case mountainCableway = "🚠"
case aerialTramway = "🚡"
case satellite = "🛰️"
case rocket = "🚀"
case flyingSaucer = "🛸"
case bellhopBell = "🛎️"
case luggage = "🧳"
case hourglass = "⌛"
case hourglassFlowingSand = "⏳"
case watch = "⌚"
case alarmClock = "⏰"
case stopwatch = "⏱️"
case timerClock = "⏲️"
case mantelpieceClock = "🕰️"
case clock12 = "🕛"
case clock1230 = "🕧"
case clock1 = "🕐"
case clock130 = "🕜"
case clock2 = "🕑"
case clock230 = "🕝"
case clock3 = "🕒"
case clock330 = "🕞"
case clock4 = "🕓"
case clock430 = "🕟"
case clock5 = "🕔"
case clock530 = "🕠"
case clock6 = "🕕"
case clock630 = "🕡"
case clock7 = "🕖"
case clock730 = "🕢"
case clock8 = "🕗"
case clock830 = "🕣"
case clock9 = "🕘"
case clock930 = "🕤"
case clock10 = "🕙"
case clock1030 = "🕥"
case clock11 = "🕚"
case clock1130 = "🕦"
case newMoon = "🌑"
case waxingCrescentMoon = "🌒"