motion-markdown-it-plugins 8.4.1 → 8.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 90ee7c9cfe812b3c3a61238f5b26e77ca7675968
4
- data.tar.gz: d34cc85f6c5b9c11cd7d00d252cfaacca693b071
3
+ metadata.gz: 45efcbe1a5b605cbd5e8f41e368509f7991077ff
4
+ data.tar.gz: 9e8656fed6ce63a469aae3cedfa52ef40c488209
5
5
  SHA512:
6
- metadata.gz: 702e8cf07a3a85b8a01ae2ca222041c4ba84165755017c21cb290137e38ca4bab00e9c6c9e9c88dfcc836c855d2d78486bfaae7bdb40da707263355b23dd83a6
7
- data.tar.gz: 5eaa10dbde3ec0b172d3c357ecd2e1db17f87f2af1deb9e0b08c63393e2a73ab3b943d0de5e8d9b151c62c2da48113252b3676057df58958197853e611401c0f
6
+ metadata.gz: 3868eedaf7cd780f9c7aee6aebde2a26f5d2a3267b382b751c2ece238a8c2dcb8d35c7567f715d277c1a82e5b0cf599a2e9b1c480a2ba19c7cc51bf6113cd3c7
7
+ data.tar.gz: 4d3112e70862cc0634e9cbb05ef79681ef329dc98fa40b4c9a88edde7a631670bc0470eca94b47d3463fe648097186d6b0b3be11cbc17fa3bce94b94995ac1d3
data/README.md CHANGED
@@ -13,8 +13,9 @@ Each one has a README with details
13
13
  * [Checkbox/Tasklists](https://github.com/digitalmoksha/motion-markdown-it-plugins/tree/master/lib/motion-markdown-it-plugins/checkbox_replace)
14
14
  * [Containers](https://github.com/digitalmoksha/motion-markdown-it-plugins/tree/master/lib/motion-markdown-it-plugins/container)
15
15
  * [Definition Lists](https://github.com/digitalmoksha/motion-markdown-it-plugins/tree/master/lib/motion-markdown-it-plugins/deflist)
16
+ * [Emoji](https://github.com/digitalmoksha/motion-markdown-it-plugins/tree/master/lib/motion-markdown-it-plugins/emoji)
16
17
  * [Header Sections](https://github.com/digitalmoksha/motion-markdown-it-plugins/tree/master/lib/motion-markdown-it-plugins/header_sections)
17
18
  * [Insert](https://github.com/digitalmoksha/motion-markdown-it-plugins/tree/master/lib/motion-markdown-it-plugins/ins)
18
19
  * [Mark](https://github.com/digitalmoksha/motion-markdown-it-plugins/tree/master/lib/motion-markdown-it-plugins/mark)
19
20
  * [Subscript](https://github.com/digitalmoksha/motion-markdown-it-plugins/tree/master/lib/motion-markdown-it-plugins/sub)
20
- * [Superscript](https://github.com/digitalmoksha/motion-markdown-it-plugins/tree/master/lib/motion-markdown-it-plugins/sup)
21
+ * [Superscript](https://github.com/digitalmoksha/motion-markdown-it-plugins/tree/master/lib/motion-markdown-it-plugins/sup)
@@ -1,16 +1,16 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  if defined?(Motion::Project::Config)
4
-
4
+
5
5
  lib_dir_path = File.dirname(File.expand_path(__FILE__))
6
6
  Motion::Project::App.setup do |app|
7
7
  app.files.unshift(Dir.glob(File.join(lib_dir_path, "motion-markdown-it-plugins/**/*.rb")))
8
8
  end
9
9
 
10
10
  require 'motion-markdown-it'
11
-
11
+
12
12
  else
13
-
13
+
14
14
  require 'motion-markdown-it'
15
15
  require 'motion-markdown-it-plugins/checkbox_replace/checkbox_replace'
16
16
  require 'motion-markdown-it-plugins/deflist/deflist'
@@ -21,5 +21,13 @@ else
21
21
  require 'motion-markdown-it-plugins/sup/sup'
22
22
  require 'motion-markdown-it-plugins/container/container'
23
23
  require 'motion-markdown-it-plugins/header_sections/header_sections'
24
-
24
+ require 'motion-markdown-it-plugins/emoji/plugin/data/full'
25
+ require 'motion-markdown-it-plugins/emoji/plugin/data/light'
26
+ require 'motion-markdown-it-plugins/emoji/plugin/data/shortcuts'
27
+ require 'motion-markdown-it-plugins/emoji/plugin/render'
28
+ require 'motion-markdown-it-plugins/emoji/plugin/replace'
29
+ require 'motion-markdown-it-plugins/emoji/plugin/normalize_opts'
30
+ require 'motion-markdown-it-plugins/emoji/emoji'
31
+ require 'motion-markdown-it-plugins/emoji/emoji_light'
32
+
25
33
  end
@@ -0,0 +1,34 @@
1
+ # Based on Javascript version: https://github.com/markdown-it/markdown-it-emoji
2
+ #------------------------------------------------------------------------------
3
+ module MotionMarkdownItPlugins
4
+ class Emoji
5
+ extend MarkdownIt::Common::Utils
6
+ include MotionMarkdownItPlugins::EmojiPlugin::Render
7
+ include MotionMarkdownItPlugins::EmojiPlugin::Replace
8
+ include MotionMarkdownItPlugins::EmojiPlugin::NormalizeOpts
9
+ include MotionMarkdownItPlugins::EmojiPlugin::Data::Full
10
+ include MotionMarkdownItPlugins::EmojiPlugin::Data::Shortcuts
11
+
12
+ attr_accessor :render
13
+
14
+ #------------------------------------------------------------------------------
15
+ def self.init_plugin(md, options = {})
16
+ emoji_obj = Emoji.new(md, options)
17
+ md.renderer.rules['emoji'] = emoji_obj.render
18
+ end
19
+
20
+ #------------------------------------------------------------------------------
21
+ def initialize(md, options)
22
+ defaults = {defs: emojies_defs, enabled: [], shortcuts: EMOJIES_DEF_SHORTCUTS}
23
+ @render = lambda {|tokens, idx, _options, env, renderer| emoji_html(tokens, idx) }
24
+ @options = normalize_opts(assign({}, defaults, options || {}))
25
+
26
+ md.core.ruler.push('emoji', create_rule(md, @options[:defs], @options[:shortcuts], @options[:scanRE], @options[:replaceRE]))
27
+ end
28
+
29
+ #------------------------------------------------------------------------------
30
+ def emojies_defs
31
+ EMOJIES_DEF_FULL
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,18 @@
1
+ # Based on Javascript version: https://github.com/markdown-it/markdown-it-emoji
2
+ #------------------------------------------------------------------------------
3
+ module MotionMarkdownItPlugins
4
+ class EmojiLight < Emoji
5
+ include MotionMarkdownItPlugins::EmojiPlugin::Data::Light
6
+
7
+ #------------------------------------------------------------------------------
8
+ def self.init_plugin(md, options = {})
9
+ emoji_obj = EmojiLight.new(md, options)
10
+ md.renderer.rules['emoji'] = emoji_obj.render
11
+ end
12
+
13
+ #------------------------------------------------------------------------------
14
+ def emojies_defs
15
+ EMOJIES_DEF_LIGHT
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,1490 @@
1
+ module MotionMarkdownItPlugins
2
+ module EmojiPlugin
3
+ module Data
4
+ module Full
5
+ EMOJIES_DEF_FULL = {
6
+ "100" => "💯",
7
+ "1234" => "🔢",
8
+ "grinning" => "😀",
9
+ "smiley" => "😃",
10
+ "smile" => "😄",
11
+ "grin" => "😁",
12
+ "laughing" => "😆",
13
+ "satisfied" => "😆",
14
+ "sweat_smile" => "😅",
15
+ "joy" => "😂",
16
+ "rofl" => "🤣",
17
+ "relaxed" => "☺️",
18
+ "blush" => "😊",
19
+ "innocent" => "😇",
20
+ "slightly_smiling_face" => "🙂",
21
+ "upside_down_face" => "🙃",
22
+ "wink" => "😉",
23
+ "relieved" => "😌",
24
+ "heart_eyes" => "😍",
25
+ "kissing_heart" => "😘",
26
+ "kissing" => "😗",
27
+ "kissing_smiling_eyes" => "😙",
28
+ "kissing_closed_eyes" => "😚",
29
+ "yum" => "😋",
30
+ "stuck_out_tongue_winking_eye" => "😜",
31
+ "stuck_out_tongue_closed_eyes" => "😝",
32
+ "stuck_out_tongue" => "😛",
33
+ "money_mouth_face" => "🤑",
34
+ "hugs" => "🤗",
35
+ "nerd_face" => "🤓",
36
+ "sunglasses" => "😎",
37
+ "clown_face" => "🤡",
38
+ "cowboy_hat_face" => "🤠",
39
+ "smirk" => "😏",
40
+ "unamused" => "😒",
41
+ "disappointed" => "😞",
42
+ "pensive" => "😔",
43
+ "worried" => "😟",
44
+ "confused" => "😕",
45
+ "slightly_frowning_face" => "🙁",
46
+ "frowning_face" => "☹️",
47
+ "persevere" => "😣",
48
+ "confounded" => "😖",
49
+ "tired_face" => "😫",
50
+ "weary" => "😩",
51
+ "triumph" => "😤",
52
+ "angry" => "😠",
53
+ "rage" => "😡",
54
+ "pout" => "😡",
55
+ "no_mouth" => "😶",
56
+ "neutral_face" => "😐",
57
+ "expressionless" => "😑",
58
+ "hushed" => "😯",
59
+ "frowning" => "😦",
60
+ "anguished" => "😧",
61
+ "open_mouth" => "😮",
62
+ "astonished" => "😲",
63
+ "dizzy_face" => "😵",
64
+ "flushed" => "😳",
65
+ "scream" => "😱",
66
+ "fearful" => "😨",
67
+ "cold_sweat" => "😰",
68
+ "cry" => "😢",
69
+ "disappointed_relieved" => "😥",
70
+ "drooling_face" => "🤤",
71
+ "sob" => "😭",
72
+ "sweat" => "😓",
73
+ "sleepy" => "😪",
74
+ "sleeping" => "😴",
75
+ "roll_eyes" => "🙄",
76
+ "thinking" => "🤔",
77
+ "lying_face" => "🤥",
78
+ "grimacing" => "😬",
79
+ "zipper_mouth_face" => "🤐",
80
+ "nauseated_face" => "🤢",
81
+ "sneezing_face" => "🤧",
82
+ "mask" => "😷",
83
+ "face_with_thermometer" => "🤒",
84
+ "face_with_head_bandage" => "🤕",
85
+ "smiling_imp" => "😈",
86
+ "imp" => "👿",
87
+ "japanese_ogre" => "👹",
88
+ "japanese_goblin" => "👺",
89
+ "hankey" => "💩",
90
+ "poop" => "💩",
91
+ "shit" => "💩",
92
+ "ghost" => "👻",
93
+ "skull" => "💀",
94
+ "skull_and_crossbones" => "☠️",
95
+ "alien" => "👽",
96
+ "space_invader" => "👾",
97
+ "robot" => "🤖",
98
+ "jack_o_lantern" => "🎃",
99
+ "smiley_cat" => "😺",
100
+ "smile_cat" => "😸",
101
+ "joy_cat" => "😹",
102
+ "heart_eyes_cat" => "😻",
103
+ "smirk_cat" => "😼",
104
+ "kissing_cat" => "😽",
105
+ "scream_cat" => "🙀",
106
+ "crying_cat_face" => "😿",
107
+ "pouting_cat" => "😾",
108
+ "open_hands" => "👐",
109
+ "raised_hands" => "🙌",
110
+ "clap" => "👏",
111
+ "pray" => "🙏",
112
+ "handshake" => "🤝",
113
+ "+1" => "👍",
114
+ "thumbsup" => "👍",
115
+ "-1" => "👎",
116
+ "thumbsdown" => "👎",
117
+ "fist_oncoming" => "👊",
118
+ "facepunch" => "👊",
119
+ "punch" => "👊",
120
+ "fist_raised" => "✊",
121
+ "fist" => "✊",
122
+ "fist_left" => "🤛",
123
+ "fist_right" => "🤜",
124
+ "crossed_fingers" => "🤞",
125
+ "v" => "✌️",
126
+ "metal" => "🤘",
127
+ "ok_hand" => "👌",
128
+ "point_left" => "👈",
129
+ "point_right" => "👉",
130
+ "point_up_2" => "👆",
131
+ "point_down" => "👇",
132
+ "point_up" => "☝️",
133
+ "hand" => "✋",
134
+ "raised_hand" => "✋",
135
+ "raised_back_of_hand" => "🤚",
136
+ "raised_hand_with_fingers_splayed" => "🖐",
137
+ "vulcan_salute" => "🖖",
138
+ "wave" => "👋",
139
+ "call_me_hand" => "🤙",
140
+ "muscle" => "💪",
141
+ "middle_finger" => "🖕",
142
+ "fu" => "🖕",
143
+ "writing_hand" => "✍️",
144
+ "selfie" => "🤳",
145
+ "nail_care" => "💅",
146
+ "ring" => "💍",
147
+ "lipstick" => "💄",
148
+ "kiss" => "💋",
149
+ "lips" => "👄",
150
+ "tongue" => "👅",
151
+ "ear" => "👂",
152
+ "nose" => "👃",
153
+ "footprints" => "👣",
154
+ "eye" => "👁",
155
+ "eyes" => "👀",
156
+ "speaking_head" => "🗣",
157
+ "bust_in_silhouette" => "👤",
158
+ "busts_in_silhouette" => "👥",
159
+ "baby" => "👶",
160
+ "boy" => "👦",
161
+ "girl" => "👧",
162
+ "man" => "👨",
163
+ "woman" => "👩",
164
+ "blonde_woman" => "👱‍♀",
165
+ "blonde_man" => "👱",
166
+ "person_with_blond_hair" => "👱",
167
+ "older_man" => "👴",
168
+ "older_woman" => "👵",
169
+ "man_with_gua_pi_mao" => "👲",
170
+ "woman_with_turban" => "👳‍♀",
171
+ "man_with_turban" => "👳",
172
+ "policewoman" => "👮‍♀",
173
+ "policeman" => "👮",
174
+ "cop" => "👮",
175
+ "construction_worker_woman" => "👷‍♀",
176
+ "construction_worker_man" => "👷",
177
+ "construction_worker" => "👷",
178
+ "guardswoman" => "💂‍♀",
179
+ "guardsman" => "💂",
180
+ "female_detective" => "🕵️‍♀️",
181
+ "male_detective" => "🕵",
182
+ "detective" => "🕵",
183
+ "woman_health_worker" => "👩‍⚕",
184
+ "man_health_worker" => "👨‍⚕",
185
+ "woman_farmer" => "👩‍🌾",
186
+ "man_farmer" => "👨‍🌾",
187
+ "woman_cook" => "👩‍🍳",
188
+ "man_cook" => "👨‍🍳",
189
+ "woman_student" => "👩‍🎓",
190
+ "man_student" => "👨‍🎓",
191
+ "woman_singer" => "👩‍🎤",
192
+ "man_singer" => "👨‍🎤",
193
+ "woman_teacher" => "👩‍🏫",
194
+ "man_teacher" => "👨‍🏫",
195
+ "woman_factory_worker" => "👩‍🏭",
196
+ "man_factory_worker" => "👨‍🏭",
197
+ "woman_technologist" => "👩‍💻",
198
+ "man_technologist" => "👨‍💻",
199
+ "woman_office_worker" => "👩‍💼",
200
+ "man_office_worker" => "👨‍💼",
201
+ "woman_mechanic" => "👩‍🔧",
202
+ "man_mechanic" => "👨‍🔧",
203
+ "woman_scientist" => "👩‍🔬",
204
+ "man_scientist" => "👨‍🔬",
205
+ "woman_artist" => "👩‍🎨",
206
+ "man_artist" => "👨‍🎨",
207
+ "woman_firefighter" => "👩‍🚒",
208
+ "man_firefighter" => "👨‍🚒",
209
+ "woman_pilot" => "👩‍✈",
210
+ "man_pilot" => "👨‍✈",
211
+ "woman_astronaut" => "👩‍🚀",
212
+ "man_astronaut" => "👨‍🚀",
213
+ "woman_judge" => "👩‍⚖",
214
+ "man_judge" => "👨‍⚖",
215
+ "mrs_claus" => "🤶",
216
+ "santa" => "🎅",
217
+ "princess" => "👸",
218
+ "prince" => "🤴",
219
+ "bride_with_veil" => "👰",
220
+ "man_in_tuxedo" => "🤵",
221
+ "angel" => "👼",
222
+ "pregnant_woman" => "🤰",
223
+ "bowing_woman" => "🙇‍♀",
224
+ "bowing_man" => "🙇",
225
+ "bow" => "🙇",
226
+ "tipping_hand_woman" => "💁",
227
+ "information_desk_person" => "💁",
228
+ "sassy_woman" => "💁",
229
+ "tipping_hand_man" => "💁‍♂",
230
+ "sassy_man" => "💁‍♂",
231
+ "no_good_woman" => "🙅",
232
+ "no_good" => "🙅",
233
+ "ng_woman" => "🙅",
234
+ "no_good_man" => "🙅‍♂",
235
+ "ng_man" => "🙅‍♂",
236
+ "ok_woman" => "🙆",
237
+ "ok_man" => "🙆‍♂",
238
+ "raising_hand_woman" => "🙋",
239
+ "raising_hand" => "🙋",
240
+ "raising_hand_man" => "🙋‍♂",
241
+ "woman_facepalming" => "🤦‍♀",
242
+ "man_facepalming" => "🤦‍♂",
243
+ "woman_shrugging" => "🤷‍♀",
244
+ "man_shrugging" => "🤷‍♂",
245
+ "pouting_woman" => "🙎",
246
+ "person_with_pouting_face" => "🙎",
247
+ "pouting_man" => "🙎‍♂",
248
+ "frowning_woman" => "🙍",
249
+ "person_frowning" => "🙍",
250
+ "frowning_man" => "🙍‍♂",
251
+ "haircut_woman" => "💇",
252
+ "haircut" => "💇",
253
+ "haircut_man" => "💇‍♂",
254
+ "massage_woman" => "💆",
255
+ "massage" => "💆",
256
+ "massage_man" => "💆‍♂",
257
+ "business_suit_levitating" => "🕴",
258
+ "dancer" => "💃",
259
+ "man_dancing" => "🕺",
260
+ "dancing_women" => "👯",
261
+ "dancers" => "👯",
262
+ "dancing_men" => "👯‍♂",
263
+ "walking_woman" => "🚶‍♀",
264
+ "walking_man" => "🚶",
265
+ "walking" => "🚶",
266
+ "running_woman" => "🏃‍♀",
267
+ "running_man" => "🏃",
268
+ "runner" => "🏃",
269
+ "running" => "🏃",
270
+ "couple" => "👫",
271
+ "two_women_holding_hands" => "👭",
272
+ "two_men_holding_hands" => "👬",
273
+ "couple_with_heart_woman_man" => "💑",
274
+ "couple_with_heart" => "💑",
275
+ "couple_with_heart_woman_woman" => "👩‍❤️‍👩",
276
+ "couple_with_heart_man_man" => "👨‍❤️‍👨",
277
+ "couplekiss_man_woman" => "💏",
278
+ "couplekiss_woman_woman" => "👩‍❤️‍💋‍👩",
279
+ "couplekiss_man_man" => "👨‍❤️‍💋‍👨",
280
+ "family_man_woman_boy" => "👪",
281
+ "family" => "👪",
282
+ "family_man_woman_girl" => "👨‍👩‍👧",
283
+ "family_man_woman_girl_boy" => "👨‍👩‍👧‍👦",
284
+ "family_man_woman_boy_boy" => "👨‍👩‍👦‍👦",
285
+ "family_man_woman_girl_girl" => "👨‍👩‍👧‍👧",
286
+ "family_woman_woman_boy" => "👩‍👩‍👦",
287
+ "family_woman_woman_girl" => "👩‍👩‍👧",
288
+ "family_woman_woman_girl_boy" => "👩‍👩‍👧‍👦",
289
+ "family_woman_woman_boy_boy" => "👩‍👩‍👦‍👦",
290
+ "family_woman_woman_girl_girl" => "👩‍👩‍👧‍👧",
291
+ "family_man_man_boy" => "👨‍👨‍👦",
292
+ "family_man_man_girl" => "👨‍👨‍👧",
293
+ "family_man_man_girl_boy" => "👨‍👨‍👧‍👦",
294
+ "family_man_man_boy_boy" => "👨‍👨‍👦‍👦",
295
+ "family_man_man_girl_girl" => "👨‍👨‍👧‍👧",
296
+ "family_woman_boy" => "👩‍👦",
297
+ "family_woman_girl" => "👩‍👧",
298
+ "family_woman_girl_boy" => "👩‍👧‍👦",
299
+ "family_woman_boy_boy" => "👩‍👦‍👦",
300
+ "family_woman_girl_girl" => "👩‍👧‍👧",
301
+ "family_man_boy" => "👨‍👦",
302
+ "family_man_girl" => "👨‍👧",
303
+ "family_man_girl_boy" => "👨‍👧‍👦",
304
+ "family_man_boy_boy" => "👨‍👦‍👦",
305
+ "family_man_girl_girl" => "👨‍👧‍👧",
306
+ "womans_clothes" => "👚",
307
+ "shirt" => "👕",
308
+ "tshirt" => "👕",
309
+ "jeans" => "👖",
310
+ "necktie" => "👔",
311
+ "dress" => "👗",
312
+ "bikini" => "👙",
313
+ "kimono" => "👘",
314
+ "high_heel" => "👠",
315
+ "sandal" => "👡",
316
+ "boot" => "👢",
317
+ "mans_shoe" => "👞",
318
+ "shoe" => "👞",
319
+ "athletic_shoe" => "👟",
320
+ "womans_hat" => "👒",
321
+ "tophat" => "🎩",
322
+ "mortar_board" => "🎓",
323
+ "crown" => "👑",
324
+ "rescue_worker_helmet" => "⛑",
325
+ "school_satchel" => "🎒",
326
+ "pouch" => "👝",
327
+ "purse" => "👛",
328
+ "handbag" => "👜",
329
+ "briefcase" => "💼",
330
+ "eyeglasses" => "👓",
331
+ "dark_sunglasses" => "🕶",
332
+ "closed_umbrella" => "🌂",
333
+ "open_umbrella" => "☂️",
334
+ "dog" => "🐶",
335
+ "cat" => "🐱",
336
+ "mouse" => "🐭",
337
+ "hamster" => "🐹",
338
+ "rabbit" => "🐰",
339
+ "fox_face" => "🦊",
340
+ "bear" => "🐻",
341
+ "panda_face" => "🐼",
342
+ "koala" => "🐨",
343
+ "tiger" => "🐯",
344
+ "lion" => "🦁",
345
+ "cow" => "🐮",
346
+ "pig" => "🐷",
347
+ "pig_nose" => "🐽",
348
+ "frog" => "🐸",
349
+ "monkey_face" => "🐵",
350
+ "see_no_evil" => "🙈",
351
+ "hear_no_evil" => "🙉",
352
+ "speak_no_evil" => "🙊",
353
+ "monkey" => "🐒",
354
+ "chicken" => "🐔",
355
+ "penguin" => "🐧",
356
+ "bird" => "🐦",
357
+ "baby_chick" => "🐤",
358
+ "hatching_chick" => "🐣",
359
+ "hatched_chick" => "🐥",
360
+ "duck" => "🦆",
361
+ "eagle" => "🦅",
362
+ "owl" => "🦉",
363
+ "bat" => "🦇",
364
+ "wolf" => "🐺",
365
+ "boar" => "🐗",
366
+ "horse" => "🐴",
367
+ "unicorn" => "🦄",
368
+ "bee" => "🐝",
369
+ "honeybee" => "🐝",
370
+ "bug" => "🐛",
371
+ "butterfly" => "🦋",
372
+ "snail" => "🐌",
373
+ "shell" => "🐚",
374
+ "beetle" => "🐞",
375
+ "ant" => "🐜",
376
+ "spider" => "🕷",
377
+ "spider_web" => "🕸",
378
+ "turtle" => "🐢",
379
+ "snake" => "🐍",
380
+ "lizard" => "🦎",
381
+ "scorpion" => "🦂",
382
+ "crab" => "🦀",
383
+ "squid" => "🦑",
384
+ "octopus" => "🐙",
385
+ "shrimp" => "🦐",
386
+ "tropical_fish" => "🐠",
387
+ "fish" => "🐟",
388
+ "blowfish" => "🐡",
389
+ "dolphin" => "🐬",
390
+ "flipper" => "🐬",
391
+ "shark" => "🦈",
392
+ "whale" => "🐳",
393
+ "whale2" => "🐋",
394
+ "crocodile" => "🐊",
395
+ "leopard" => "🐆",
396
+ "tiger2" => "🐅",
397
+ "water_buffalo" => "🐃",
398
+ "ox" => "🐂",
399
+ "cow2" => "🐄",
400
+ "deer" => "🦌",
401
+ "dromedary_camel" => "🐪",
402
+ "camel" => "🐫",
403
+ "elephant" => "🐘",
404
+ "rhinoceros" => "🦏",
405
+ "gorilla" => "🦍",
406
+ "racehorse" => "🐎",
407
+ "pig2" => "🐖",
408
+ "goat" => "🐐",
409
+ "ram" => "🐏",
410
+ "sheep" => "🐑",
411
+ "dog2" => "🐕",
412
+ "poodle" => "🐩",
413
+ "cat2" => "🐈",
414
+ "rooster" => "🐓",
415
+ "turkey" => "🦃",
416
+ "dove" => "🕊",
417
+ "rabbit2" => "🐇",
418
+ "mouse2" => "🐁",
419
+ "rat" => "🐀",
420
+ "chipmunk" => "🐿",
421
+ "feet" => "🐾",
422
+ "paw_prints" => "🐾",
423
+ "dragon" => "🐉",
424
+ "dragon_face" => "🐲",
425
+ "cactus" => "🌵",
426
+ "christmas_tree" => "🎄",
427
+ "evergreen_tree" => "🌲",
428
+ "deciduous_tree" => "🌳",
429
+ "palm_tree" => "🌴",
430
+ "seedling" => "🌱",
431
+ "herb" => "🌿",
432
+ "shamrock" => "☘️",
433
+ "four_leaf_clover" => "🍀",
434
+ "bamboo" => "🎍",
435
+ "tanabata_tree" => "🎋",
436
+ "leaves" => "🍃",
437
+ "fallen_leaf" => "🍂",
438
+ "maple_leaf" => "🍁",
439
+ "mushroom" => "🍄",
440
+ "ear_of_rice" => "🌾",
441
+ "bouquet" => "💐",
442
+ "tulip" => "🌷",
443
+ "rose" => "🌹",
444
+ "wilted_flower" => "🥀",
445
+ "sunflower" => "🌻",
446
+ "blossom" => "🌼",
447
+ "cherry_blossom" => "🌸",
448
+ "hibiscus" => "🌺",
449
+ "earth_americas" => "🌎",
450
+ "earth_africa" => "🌍",
451
+ "earth_asia" => "🌏",
452
+ "full_moon" => "🌕",
453
+ "waning_gibbous_moon" => "🌖",
454
+ "last_quarter_moon" => "🌗",
455
+ "waning_crescent_moon" => "🌘",
456
+ "new_moon" => "🌑",
457
+ "waxing_crescent_moon" => "🌒",
458
+ "first_quarter_moon" => "🌓",
459
+ "moon" => "🌔",
460
+ "waxing_gibbous_moon" => "🌔",
461
+ "new_moon_with_face" => "🌚",
462
+ "full_moon_with_face" => "🌝",
463
+ "sun_with_face" => "🌞",
464
+ "first_quarter_moon_with_face" => "🌛",
465
+ "last_quarter_moon_with_face" => "🌜",
466
+ "crescent_moon" => "🌙",
467
+ "dizzy" => "💫",
468
+ "star" => "⭐️",
469
+ "star2" => "🌟",
470
+ "sparkles" => "✨",
471
+ "zap" => "⚡️",
472
+ "fire" => "🔥",
473
+ "boom" => "💥",
474
+ "collision" => "💥",
475
+ "comet" => "☄",
476
+ "sunny" => "☀️",
477
+ "sun_behind_small_cloud" => "🌤",
478
+ "partly_sunny" => "⛅️",
479
+ "sun_behind_large_cloud" => "🌥",
480
+ "sun_behind_rain_cloud" => "🌦",
481
+ "rainbow" => "🌈",
482
+ "cloud" => "☁️",
483
+ "cloud_with_rain" => "🌧",
484
+ "cloud_with_lightning_and_rain" => "⛈",
485
+ "cloud_with_lightning" => "🌩",
486
+ "cloud_with_snow" => "🌨",
487
+ "snowman_with_snow" => "☃️",
488
+ "snowman" => "⛄️",
489
+ "snowflake" => "❄️",
490
+ "wind_face" => "🌬",
491
+ "dash" => "💨",
492
+ "tornado" => "🌪",
493
+ "fog" => "🌫",
494
+ "ocean" => "🌊",
495
+ "droplet" => "💧",
496
+ "sweat_drops" => "💦",
497
+ "umbrella" => "☔️",
498
+ "green_apple" => "🍏",
499
+ "apple" => "🍎",
500
+ "pear" => "🍐",
501
+ "tangerine" => "🍊",
502
+ "orange" => "🍊",
503
+ "mandarin" => "🍊",
504
+ "lemon" => "🍋",
505
+ "banana" => "🍌",
506
+ "watermelon" => "🍉",
507
+ "grapes" => "🍇",
508
+ "strawberry" => "🍓",
509
+ "melon" => "🍈",
510
+ "cherries" => "🍒",
511
+ "peach" => "🍑",
512
+ "pineapple" => "🍍",
513
+ "kiwi_fruit" => "🥝",
514
+ "avocado" => "🥑",
515
+ "tomato" => "🍅",
516
+ "eggplant" => "🍆",
517
+ "cucumber" => "🥒",
518
+ "carrot" => "🥕",
519
+ "corn" => "🌽",
520
+ "hot_pepper" => "🌶",
521
+ "potato" => "🥔",
522
+ "sweet_potato" => "🍠",
523
+ "chestnut" => "🌰",
524
+ "peanuts" => "🥜",
525
+ "honey_pot" => "🍯",
526
+ "croissant" => "🥐",
527
+ "bread" => "🍞",
528
+ "baguette_bread" => "🥖",
529
+ "cheese" => "🧀",
530
+ "egg" => "🥚",
531
+ "fried_egg" => "🍳",
532
+ "bacon" => "🥓",
533
+ "pancakes" => "🥞",
534
+ "fried_shrimp" => "🍤",
535
+ "poultry_leg" => "🍗",
536
+ "meat_on_bone" => "🍖",
537
+ "pizza" => "🍕",
538
+ "hotdog" => "🌭",
539
+ "hamburger" => "🍔",
540
+ "fries" => "🍟",
541
+ "stuffed_flatbread" => "🥙",
542
+ "taco" => "🌮",
543
+ "burrito" => "🌯",
544
+ "green_salad" => "🥗",
545
+ "shallow_pan_of_food" => "🥘",
546
+ "spaghetti" => "🍝",
547
+ "ramen" => "🍜",
548
+ "stew" => "🍲",
549
+ "fish_cake" => "🍥",
550
+ "sushi" => "🍣",
551
+ "bento" => "🍱",
552
+ "curry" => "🍛",
553
+ "rice" => "🍚",
554
+ "rice_ball" => "🍙",
555
+ "rice_cracker" => "🍘",
556
+ "oden" => "🍢",
557
+ "dango" => "🍡",
558
+ "shaved_ice" => "🍧",
559
+ "ice_cream" => "🍨",
560
+ "icecream" => "🍦",
561
+ "cake" => "🍰",
562
+ "birthday" => "🎂",
563
+ "custard" => "🍮",
564
+ "lollipop" => "🍭",
565
+ "candy" => "🍬",
566
+ "chocolate_bar" => "🍫",
567
+ "popcorn" => "🍿",
568
+ "doughnut" => "🍩",
569
+ "cookie" => "🍪",
570
+ "milk_glass" => "🥛",
571
+ "baby_bottle" => "🍼",
572
+ "coffee" => "☕️",
573
+ "tea" => "🍵",
574
+ "sake" => "🍶",
575
+ "beer" => "🍺",
576
+ "beers" => "🍻",
577
+ "clinking_glasses" => "🥂",
578
+ "wine_glass" => "🍷",
579
+ "tumbler_glass" => "🥃",
580
+ "cocktail" => "🍸",
581
+ "tropical_drink" => "🍹",
582
+ "champagne" => "🍾",
583
+ "spoon" => "🥄",
584
+ "fork_and_knife" => "🍴",
585
+ "plate_with_cutlery" => "🍽",
586
+ "soccer" => "⚽️",
587
+ "basketball" => "🏀",
588
+ "football" => "🏈",
589
+ "baseball" => "⚾️",
590
+ "tennis" => "🎾",
591
+ "volleyball" => "🏐",
592
+ "rugby_football" => "🏉",
593
+ "8ball" => "🎱",
594
+ "ping_pong" => "🏓",
595
+ "badminton" => "🏸",
596
+ "goal_net" => "🥅",
597
+ "ice_hockey" => "🏒",
598
+ "field_hockey" => "🏑",
599
+ "cricket" => "🏏",
600
+ "golf" => "⛳️",
601
+ "bow_and_arrow" => "🏹",
602
+ "fishing_pole_and_fish" => "🎣",
603
+ "boxing_glove" => "🥊",
604
+ "martial_arts_uniform" => "🥋",
605
+ "ice_skate" => "⛸",
606
+ "ski" => "🎿",
607
+ "skier" => "⛷",
608
+ "snowboarder" => "🏂",
609
+ "weight_lifting_woman" => "🏋️‍♀️",
610
+ "weight_lifting_man" => "🏋",
611
+ "person_fencing" => "🤺",
612
+ "women_wrestling" => "🤼‍♀",
613
+ "men_wrestling" => "🤼‍♂",
614
+ "woman_cartwheeling" => "🤸‍♀",
615
+ "man_cartwheeling" => "🤸‍♂",
616
+ "basketball_woman" => "⛹️‍♀️",
617
+ "basketball_man" => "⛹",
618
+ "woman_playing_handball" => "🤾‍♀",
619
+ "man_playing_handball" => "🤾‍♂",
620
+ "golfing_woman" => "🏌️‍♀️",
621
+ "golfing_man" => "🏌",
622
+ "surfing_woman" => "🏄‍♀",
623
+ "surfing_man" => "🏄",
624
+ "surfer" => "🏄",
625
+ "swimming_woman" => "🏊‍♀",
626
+ "swimming_man" => "🏊",
627
+ "swimmer" => "🏊",
628
+ "woman_playing_water_polo" => "🤽‍♀",
629
+ "man_playing_water_polo" => "🤽‍♂",
630
+ "rowing_woman" => "🚣‍♀",
631
+ "rowing_man" => "🚣",
632
+ "rowboat" => "🚣",
633
+ "horse_racing" => "🏇",
634
+ "biking_woman" => "🚴‍♀",
635
+ "biking_man" => "🚴",
636
+ "bicyclist" => "🚴",
637
+ "mountain_biking_woman" => "🚵‍♀",
638
+ "mountain_biking_man" => "🚵",
639
+ "mountain_bicyclist" => "🚵",
640
+ "running_shirt_with_sash" => "🎽",
641
+ "medal_sports" => "🏅",
642
+ "medal_military" => "🎖",
643
+ "1st_place_medal" => "🥇",
644
+ "2nd_place_medal" => "🥈",
645
+ "3rd_place_medal" => "🥉",
646
+ "trophy" => "🏆",
647
+ "rosette" => "🏵",
648
+ "reminder_ribbon" => "🎗",
649
+ "ticket" => "🎫",
650
+ "tickets" => "🎟",
651
+ "circus_tent" => "🎪",
652
+ "woman_juggling" => "🤹‍♀",
653
+ "man_juggling" => "🤹‍♂",
654
+ "performing_arts" => "🎭",
655
+ "art" => "🎨",
656
+ "clapper" => "🎬",
657
+ "microphone" => "🎤",
658
+ "headphones" => "🎧",
659
+ "musical_score" => "🎼",
660
+ "musical_keyboard" => "🎹",
661
+ "drum" => "🥁",
662
+ "saxophone" => "🎷",
663
+ "trumpet" => "🎺",
664
+ "guitar" => "🎸",
665
+ "violin" => "🎻",
666
+ "game_die" => "🎲",
667
+ "dart" => "🎯",
668
+ "bowling" => "🎳",
669
+ "video_game" => "🎮",
670
+ "slot_machine" => "🎰",
671
+ "car" => "🚗",
672
+ "red_car" => "🚗",
673
+ "taxi" => "🚕",
674
+ "blue_car" => "🚙",
675
+ "bus" => "🚌",
676
+ "trolleybus" => "🚎",
677
+ "racing_car" => "🏎",
678
+ "police_car" => "🚓",
679
+ "ambulance" => "🚑",
680
+ "fire_engine" => "🚒",
681
+ "minibus" => "🚐",
682
+ "truck" => "🚚",
683
+ "articulated_lorry" => "🚛",
684
+ "tractor" => "🚜",
685
+ "kick_scooter" => "🛴",
686
+ "bike" => "🚲",
687
+ "motor_scooter" => "🛵",
688
+ "motorcycle" => "🏍",
689
+ "rotating_light" => "🚨",
690
+ "oncoming_police_car" => "🚔",
691
+ "oncoming_bus" => "🚍",
692
+ "oncoming_automobile" => "🚘",
693
+ "oncoming_taxi" => "🚖",
694
+ "aerial_tramway" => "🚡",
695
+ "mountain_cableway" => "🚠",
696
+ "suspension_railway" => "🚟",
697
+ "railway_car" => "🚃",
698
+ "train" => "🚋",
699
+ "mountain_railway" => "🚞",
700
+ "monorail" => "🚝",
701
+ "bullettrain_side" => "🚄",
702
+ "bullettrain_front" => "🚅",
703
+ "light_rail" => "🚈",
704
+ "steam_locomotive" => "🚂",
705
+ "train2" => "🚆",
706
+ "metro" => "🚇",
707
+ "tram" => "🚊",
708
+ "station" => "🚉",
709
+ "helicopter" => "🚁",
710
+ "small_airplane" => "🛩",
711
+ "airplane" => "✈️",
712
+ "flight_departure" => "🛫",
713
+ "flight_arrival" => "🛬",
714
+ "rocket" => "🚀",
715
+ "artificial_satellite" => "🛰",
716
+ "seat" => "💺",
717
+ "canoe" => "🛶",
718
+ "boat" => "⛵️",
719
+ "sailboat" => "⛵️",
720
+ "motor_boat" => "🛥",
721
+ "speedboat" => "🚤",
722
+ "passenger_ship" => "🛳",
723
+ "ferry" => "⛴",
724
+ "ship" => "🚢",
725
+ "anchor" => "⚓️",
726
+ "construction" => "🚧",
727
+ "fuelpump" => "⛽️",
728
+ "busstop" => "🚏",
729
+ "vertical_traffic_light" => "🚦",
730
+ "traffic_light" => "🚥",
731
+ "world_map" => "🗺",
732
+ "moyai" => "🗿",
733
+ "statue_of_liberty" => "🗽",
734
+ "fountain" => "⛲️",
735
+ "tokyo_tower" => "🗼",
736
+ "european_castle" => "🏰",
737
+ "japanese_castle" => "🏯",
738
+ "stadium" => "🏟",
739
+ "ferris_wheel" => "🎡",
740
+ "roller_coaster" => "🎢",
741
+ "carousel_horse" => "🎠",
742
+ "parasol_on_ground" => "⛱",
743
+ "beach_umbrella" => "🏖",
744
+ "desert_island" => "🏝",
745
+ "mountain" => "⛰",
746
+ "mountain_snow" => "🏔",
747
+ "mount_fuji" => "🗻",
748
+ "volcano" => "🌋",
749
+ "desert" => "🏜",
750
+ "camping" => "🏕",
751
+ "tent" => "⛺️",
752
+ "railway_track" => "🛤",
753
+ "motorway" => "🛣",
754
+ "building_construction" => "🏗",
755
+ "factory" => "🏭",
756
+ "house" => "🏠",
757
+ "house_with_garden" => "🏡",
758
+ "houses" => "🏘",
759
+ "derelict_house" => "🏚",
760
+ "office" => "🏢",
761
+ "department_store" => "🏬",
762
+ "post_office" => "🏣",
763
+ "european_post_office" => "🏤",
764
+ "hospital" => "🏥",
765
+ "bank" => "🏦",
766
+ "hotel" => "🏨",
767
+ "convenience_store" => "🏪",
768
+ "school" => "🏫",
769
+ "love_hotel" => "🏩",
770
+ "wedding" => "💒",
771
+ "classical_building" => "🏛",
772
+ "church" => "⛪️",
773
+ "mosque" => "🕌",
774
+ "synagogue" => "🕍",
775
+ "kaaba" => "🕋",
776
+ "shinto_shrine" => "⛩",
777
+ "japan" => "🗾",
778
+ "rice_scene" => "🎑",
779
+ "national_park" => "🏞",
780
+ "sunrise" => "🌅",
781
+ "sunrise_over_mountains" => "🌄",
782
+ "stars" => "🌠",
783
+ "sparkler" => "🎇",
784
+ "fireworks" => "🎆",
785
+ "city_sunrise" => "🌇",
786
+ "city_sunset" => "🌆",
787
+ "cityscape" => "🏙",
788
+ "night_with_stars" => "🌃",
789
+ "milky_way" => "🌌",
790
+ "bridge_at_night" => "🌉",
791
+ "foggy" => "🌁",
792
+ "watch" => "⌚️",
793
+ "iphone" => "📱",
794
+ "calling" => "📲",
795
+ "computer" => "💻",
796
+ "keyboard" => "⌨️",
797
+ "desktop_computer" => "🖥",
798
+ "printer" => "🖨",
799
+ "computer_mouse" => "🖱",
800
+ "trackball" => "🖲",
801
+ "joystick" => "🕹",
802
+ "clamp" => "🗜",
803
+ "minidisc" => "💽",
804
+ "floppy_disk" => "💾",
805
+ "cd" => "💿",
806
+ "dvd" => "📀",
807
+ "vhs" => "📼",
808
+ "camera" => "📷",
809
+ "camera_flash" => "📸",
810
+ "video_camera" => "📹",
811
+ "movie_camera" => "🎥",
812
+ "film_projector" => "📽",
813
+ "film_strip" => "🎞",
814
+ "telephone_receiver" => "📞",
815
+ "phone" => "☎️",
816
+ "telephone" => "☎️",
817
+ "pager" => "📟",
818
+ "fax" => "📠",
819
+ "tv" => "📺",
820
+ "radio" => "📻",
821
+ "studio_microphone" => "🎙",
822
+ "level_slider" => "🎚",
823
+ "control_knobs" => "🎛",
824
+ "stopwatch" => "⏱",
825
+ "timer_clock" => "⏲",
826
+ "alarm_clock" => "⏰",
827
+ "mantelpiece_clock" => "🕰",
828
+ "hourglass" => "⌛️",
829
+ "hourglass_flowing_sand" => "⏳",
830
+ "satellite" => "📡",
831
+ "battery" => "🔋",
832
+ "electric_plug" => "🔌",
833
+ "bulb" => "💡",
834
+ "flashlight" => "🔦",
835
+ "candle" => "🕯",
836
+ "wastebasket" => "🗑",
837
+ "oil_drum" => "🛢",
838
+ "money_with_wings" => "💸",
839
+ "dollar" => "💵",
840
+ "yen" => "💴",
841
+ "euro" => "💶",
842
+ "pound" => "💷",
843
+ "moneybag" => "💰",
844
+ "credit_card" => "💳",
845
+ "gem" => "💎",
846
+ "balance_scale" => "⚖️",
847
+ "wrench" => "🔧",
848
+ "hammer" => "🔨",
849
+ "hammer_and_pick" => "⚒",
850
+ "hammer_and_wrench" => "🛠",
851
+ "pick" => "⛏",
852
+ "nut_and_bolt" => "🔩",
853
+ "gear" => "⚙️",
854
+ "chains" => "⛓",
855
+ "gun" => "🔫",
856
+ "bomb" => "💣",
857
+ "hocho" => "🔪",
858
+ "knife" => "🔪",
859
+ "dagger" => "🗡",
860
+ "crossed_swords" => "⚔️",
861
+ "shield" => "🛡",
862
+ "smoking" => "🚬",
863
+ "coffin" => "⚰️",
864
+ "funeral_urn" => "⚱️",
865
+ "amphora" => "🏺",
866
+ "crystal_ball" => "🔮",
867
+ "prayer_beads" => "📿",
868
+ "barber" => "💈",
869
+ "alembic" => "⚗️",
870
+ "telescope" => "🔭",
871
+ "microscope" => "🔬",
872
+ "hole" => "🕳",
873
+ "pill" => "💊",
874
+ "syringe" => "💉",
875
+ "thermometer" => "🌡",
876
+ "toilet" => "🚽",
877
+ "potable_water" => "🚰",
878
+ "shower" => "🚿",
879
+ "bathtub" => "🛁",
880
+ "bath" => "🛀",
881
+ "bellhop_bell" => "🛎",
882
+ "key" => "🔑",
883
+ "old_key" => "🗝",
884
+ "door" => "🚪",
885
+ "couch_and_lamp" => "🛋",
886
+ "bed" => "🛏",
887
+ "sleeping_bed" => "🛌",
888
+ "framed_picture" => "🖼",
889
+ "shopping" => "🛍",
890
+ "shopping_cart" => "🛒",
891
+ "gift" => "🎁",
892
+ "balloon" => "🎈",
893
+ "flags" => "🎏",
894
+ "ribbon" => "🎀",
895
+ "confetti_ball" => "🎊",
896
+ "tada" => "🎉",
897
+ "dolls" => "🎎",
898
+ "izakaya_lantern" => "🏮",
899
+ "lantern" => "🏮",
900
+ "wind_chime" => "🎐",
901
+ "email" => "✉️",
902
+ "envelope" => "✉️",
903
+ "envelope_with_arrow" => "📩",
904
+ "incoming_envelope" => "📨",
905
+ "e-mail" => "📧",
906
+ "love_letter" => "💌",
907
+ "inbox_tray" => "📥",
908
+ "outbox_tray" => "📤",
909
+ "package" => "📦",
910
+ "label" => "🏷",
911
+ "mailbox_closed" => "📪",
912
+ "mailbox" => "📫",
913
+ "mailbox_with_mail" => "📬",
914
+ "mailbox_with_no_mail" => "📭",
915
+ "postbox" => "📮",
916
+ "postal_horn" => "📯",
917
+ "scroll" => "📜",
918
+ "page_with_curl" => "📃",
919
+ "page_facing_up" => "📄",
920
+ "bookmark_tabs" => "📑",
921
+ "bar_chart" => "📊",
922
+ "chart_with_upwards_trend" => "📈",
923
+ "chart_with_downwards_trend" => "📉",
924
+ "spiral_notepad" => "🗒",
925
+ "spiral_calendar" => "🗓",
926
+ "calendar" => "📆",
927
+ "date" => "📅",
928
+ "card_index" => "📇",
929
+ "card_file_box" => "🗃",
930
+ "ballot_box" => "🗳",
931
+ "file_cabinet" => "🗄",
932
+ "clipboard" => "📋",
933
+ "file_folder" => "📁",
934
+ "open_file_folder" => "📂",
935
+ "card_index_dividers" => "🗂",
936
+ "newspaper_roll" => "🗞",
937
+ "newspaper" => "📰",
938
+ "notebook" => "📓",
939
+ "notebook_with_decorative_cover" => "📔",
940
+ "ledger" => "📒",
941
+ "closed_book" => "📕",
942
+ "green_book" => "📗",
943
+ "blue_book" => "📘",
944
+ "orange_book" => "📙",
945
+ "books" => "📚",
946
+ "book" => "📖",
947
+ "open_book" => "📖",
948
+ "bookmark" => "🔖",
949
+ "link" => "🔗",
950
+ "paperclip" => "📎",
951
+ "paperclips" => "🖇",
952
+ "triangular_ruler" => "📐",
953
+ "straight_ruler" => "📏",
954
+ "pushpin" => "📌",
955
+ "round_pushpin" => "📍",
956
+ "scissors" => "✂️",
957
+ "pen" => "🖊",
958
+ "fountain_pen" => "🖋",
959
+ "black_nib" => "✒️",
960
+ "paintbrush" => "🖌",
961
+ "crayon" => "🖍",
962
+ "memo" => "📝",
963
+ "pencil" => "📝",
964
+ "pencil2" => "✏️",
965
+ "mag" => "🔍",
966
+ "mag_right" => "🔎",
967
+ "lock_with_ink_pen" => "🔏",
968
+ "closed_lock_with_key" => "🔐",
969
+ "lock" => "🔒",
970
+ "unlock" => "🔓",
971
+ "heart" => "❤️",
972
+ "yellow_heart" => "💛",
973
+ "green_heart" => "💚",
974
+ "blue_heart" => "💙",
975
+ "purple_heart" => "💜",
976
+ "black_heart" => "🖤",
977
+ "broken_heart" => "💔",
978
+ "heavy_heart_exclamation" => "❣️",
979
+ "two_hearts" => "💕",
980
+ "revolving_hearts" => "💞",
981
+ "heartbeat" => "💓",
982
+ "heartpulse" => "💗",
983
+ "sparkling_heart" => "💖",
984
+ "cupid" => "💘",
985
+ "gift_heart" => "💝",
986
+ "heart_decoration" => "💟",
987
+ "peace_symbol" => "☮️",
988
+ "latin_cross" => "✝️",
989
+ "star_and_crescent" => "☪️",
990
+ "om" => "🕉",
991
+ "wheel_of_dharma" => "☸️",
992
+ "star_of_david" => "✡️",
993
+ "six_pointed_star" => "🔯",
994
+ "menorah" => "🕎",
995
+ "yin_yang" => "☯️",
996
+ "orthodox_cross" => "☦️",
997
+ "place_of_worship" => "🛐",
998
+ "ophiuchus" => "⛎",
999
+ "aries" => "♈️",
1000
+ "taurus" => "♉️",
1001
+ "gemini" => "♊️",
1002
+ "cancer" => "♋️",
1003
+ "leo" => "♌️",
1004
+ "virgo" => "♍️",
1005
+ "libra" => "♎️",
1006
+ "scorpius" => "♏️",
1007
+ "sagittarius" => "♐️",
1008
+ "capricorn" => "♑️",
1009
+ "aquarius" => "♒️",
1010
+ "pisces" => "♓️",
1011
+ "id" => "🆔",
1012
+ "atom_symbol" => "⚛️",
1013
+ "accept" => "🉑",
1014
+ "radioactive" => "☢️",
1015
+ "biohazard" => "☣️",
1016
+ "mobile_phone_off" => "📴",
1017
+ "vibration_mode" => "📳",
1018
+ "eight_pointed_black_star" => "✴️",
1019
+ "vs" => "🆚",
1020
+ "white_flower" => "💮",
1021
+ "ideograph_advantage" => "🉐",
1022
+ "secret" => "㊙️",
1023
+ "congratulations" => "㊗️",
1024
+ "u6e80" => "🈵",
1025
+ "a" => "🅰️",
1026
+ "b" => "🅱️",
1027
+ "ab" => "🆎",
1028
+ "cl" => "🆑",
1029
+ "o2" => "🅾️",
1030
+ "sos" => "🆘",
1031
+ "x" => "❌",
1032
+ "o" => "⭕️",
1033
+ "stop_sign" => "🛑",
1034
+ "no_entry" => "⛔️",
1035
+ "name_badge" => "📛",
1036
+ "no_entry_sign" => "🚫",
1037
+ "anger" => "💢",
1038
+ "hotsprings" => "♨️",
1039
+ "no_pedestrians" => "🚷",
1040
+ "do_not_litter" => "🚯",
1041
+ "no_bicycles" => "🚳",
1042
+ "non-potable_water" => "🚱",
1043
+ "underage" => "🔞",
1044
+ "no_mobile_phones" => "📵",
1045
+ "no_smoking" => "🚭",
1046
+ "exclamation" => "❗️",
1047
+ "heavy_exclamation_mark" => "❗️",
1048
+ "grey_exclamation" => "❕",
1049
+ "question" => "❓",
1050
+ "grey_question" => "❔",
1051
+ "bangbang" => "‼️",
1052
+ "interrobang" => "⁉️",
1053
+ "low_brightness" => "🔅",
1054
+ "high_brightness" => "🔆",
1055
+ "part_alternation_mark" => "〽️",
1056
+ "warning" => "⚠️",
1057
+ "children_crossing" => "🚸",
1058
+ "trident" => "🔱",
1059
+ "fleur_de_lis" => "⚜️",
1060
+ "beginner" => "🔰",
1061
+ "recycle" => "♻️",
1062
+ "white_check_mark" => "✅",
1063
+ "chart" => "💹",
1064
+ "sparkle" => "❇️",
1065
+ "eight_spoked_asterisk" => "✳️",
1066
+ "negative_squared_cross_mark" => "❎",
1067
+ "globe_with_meridians" => "🌐",
1068
+ "diamond_shape_with_a_dot_inside" => "💠",
1069
+ "m" => "Ⓜ️",
1070
+ "cyclone" => "🌀",
1071
+ "zzz" => "💤",
1072
+ "atm" => "🏧",
1073
+ "wc" => "🚾",
1074
+ "wheelchair" => "♿️",
1075
+ "parking" => "🅿️",
1076
+ "sa" => "🈂️",
1077
+ "passport_control" => "🛂",
1078
+ "customs" => "🛃",
1079
+ "baggage_claim" => "🛄",
1080
+ "left_luggage" => "🛅",
1081
+ "mens" => "🚹",
1082
+ "womens" => "🚺",
1083
+ "baby_symbol" => "🚼",
1084
+ "restroom" => "🚻",
1085
+ "put_litter_in_its_place" => "🚮",
1086
+ "cinema" => "🎦",
1087
+ "signal_strength" => "📶",
1088
+ "koko" => "🈁",
1089
+ "symbols" => "🔣",
1090
+ "information_source" => "ℹ️",
1091
+ "abc" => "🔤",
1092
+ "abcd" => "🔡",
1093
+ "capital_abcd" => "🔠",
1094
+ "ng" => "🆖",
1095
+ "ok" => "🆗",
1096
+ "up" => "🆙",
1097
+ "cool" => "🆒",
1098
+ "new" => "🆕",
1099
+ "free" => "🆓",
1100
+ "zero" => "0️⃣",
1101
+ "one" => "1️⃣",
1102
+ "two" => "2️⃣",
1103
+ "three" => "3️⃣",
1104
+ "four" => "4️⃣",
1105
+ "five" => "5️⃣",
1106
+ "six" => "6️⃣",
1107
+ "seven" => "7️⃣",
1108
+ "eight" => "8️⃣",
1109
+ "nine" => "9️⃣",
1110
+ "keycap_ten" => "🔟",
1111
+ "hash" => "#️⃣",
1112
+ "asterisk" => "*️⃣",
1113
+ "arrow_forward" => "▶️",
1114
+ "pause_button" => "⏸",
1115
+ "play_or_pause_button" => "⏯",
1116
+ "stop_button" => "⏹",
1117
+ "record_button" => "⏺",
1118
+ "next_track_button" => "⏭",
1119
+ "previous_track_button" => "⏮",
1120
+ "fast_forward" => "⏩",
1121
+ "rewind" => "⏪",
1122
+ "arrow_double_up" => "⏫",
1123
+ "arrow_double_down" => "⏬",
1124
+ "arrow_backward" => "◀️",
1125
+ "arrow_up_small" => "🔼",
1126
+ "arrow_down_small" => "🔽",
1127
+ "arrow_right" => "➡️",
1128
+ "arrow_left" => "⬅️",
1129
+ "arrow_up" => "⬆️",
1130
+ "arrow_down" => "⬇️",
1131
+ "arrow_upper_right" => "↗️",
1132
+ "arrow_lower_right" => "↘️",
1133
+ "arrow_lower_left" => "↙️",
1134
+ "arrow_upper_left" => "↖️",
1135
+ "arrow_up_down" => "↕️",
1136
+ "left_right_arrow" => "↔️",
1137
+ "arrow_right_hook" => "↪️",
1138
+ "leftwards_arrow_with_hook" => "↩️",
1139
+ "arrow_heading_up" => "⤴️",
1140
+ "arrow_heading_down" => "⤵️",
1141
+ "twisted_rightwards_arrows" => "🔀",
1142
+ "repeat" => "🔁",
1143
+ "repeat_one" => "🔂",
1144
+ "arrows_counterclockwise" => "🔄",
1145
+ "arrows_clockwise" => "🔃",
1146
+ "musical_note" => "🎵",
1147
+ "notes" => "🎶",
1148
+ "heavy_plus_sign" => "➕",
1149
+ "heavy_minus_sign" => "➖",
1150
+ "heavy_division_sign" => "➗",
1151
+ "heavy_multiplication_x" => "✖️",
1152
+ "heavy_dollar_sign" => "💲",
1153
+ "currency_exchange" => "💱",
1154
+ "tm" => "™️",
1155
+ "copyright" => "©️",
1156
+ "registered" => "®️",
1157
+ "wavy_dash" => "〰️",
1158
+ "curly_loop" => "➰",
1159
+ "loop" => "➿",
1160
+ "end" => "🔚",
1161
+ "back" => "🔙",
1162
+ "on" => "🔛",
1163
+ "top" => "🔝",
1164
+ "soon" => "🔜",
1165
+ "heavy_check_mark" => "✔️",
1166
+ "ballot_box_with_check" => "☑️",
1167
+ "radio_button" => "🔘",
1168
+ "white_circle" => "⚪️",
1169
+ "black_circle" => "⚫️",
1170
+ "red_circle" => "🔴",
1171
+ "large_blue_circle" => "🔵",
1172
+ "small_red_triangle" => "🔺",
1173
+ "small_red_triangle_down" => "🔻",
1174
+ "small_orange_diamond" => "🔸",
1175
+ "small_blue_diamond" => "🔹",
1176
+ "large_orange_diamond" => "🔶",
1177
+ "large_blue_diamond" => "🔷",
1178
+ "white_square_button" => "🔳",
1179
+ "black_square_button" => "🔲",
1180
+ "black_small_square" => "▪️",
1181
+ "white_small_square" => "▫️",
1182
+ "black_medium_small_square" => "◾️",
1183
+ "white_medium_small_square" => "◽️",
1184
+ "black_medium_square" => "◼️",
1185
+ "white_medium_square" => "◻️",
1186
+ "black_large_square" => "⬛️",
1187
+ "white_large_square" => "⬜️",
1188
+ "speaker" => "🔈",
1189
+ "mute" => "🔇",
1190
+ "sound" => "🔉",
1191
+ "loud_sound" => "🔊",
1192
+ "bell" => "🔔",
1193
+ "no_bell" => "🔕",
1194
+ "mega" => "📣",
1195
+ "loudspeaker" => "📢",
1196
+ "eye_speech_bubble" => "👁‍🗨",
1197
+ "speech_balloon" => "💬",
1198
+ "thought_balloon" => "💭",
1199
+ "right_anger_bubble" => "🗯",
1200
+ "spades" => "♠️",
1201
+ "clubs" => "♣️",
1202
+ "hearts" => "♥️",
1203
+ "diamonds" => "♦️",
1204
+ "black_joker" => "🃏",
1205
+ "flower_playing_cards" => "🎴",
1206
+ "mahjong" => "🀄️",
1207
+ "clock1" => "🕐",
1208
+ "clock2" => "🕑",
1209
+ "clock3" => "🕒",
1210
+ "clock4" => "🕓",
1211
+ "clock5" => "🕔",
1212
+ "clock6" => "🕕",
1213
+ "clock7" => "🕖",
1214
+ "clock8" => "🕗",
1215
+ "clock9" => "🕘",
1216
+ "clock10" => "🕙",
1217
+ "clock11" => "🕚",
1218
+ "clock12" => "🕛",
1219
+ "clock130" => "🕜",
1220
+ "clock230" => "🕝",
1221
+ "clock330" => "🕞",
1222
+ "clock430" => "🕟",
1223
+ "clock530" => "🕠",
1224
+ "clock630" => "🕡",
1225
+ "clock730" => "🕢",
1226
+ "clock830" => "🕣",
1227
+ "clock930" => "🕤",
1228
+ "clock1030" => "🕥",
1229
+ "clock1130" => "🕦",
1230
+ "clock1230" => "🕧",
1231
+ "white_flag" => "🏳️",
1232
+ "black_flag" => "🏴",
1233
+ "checkered_flag" => "🏁",
1234
+ "triangular_flag_on_post" => "🚩",
1235
+ "rainbow_flag" => "🏳️‍🌈",
1236
+ "afghanistan" => "🇦🇫",
1237
+ "aland_islands" => "🇦🇽",
1238
+ "albania" => "🇦🇱",
1239
+ "algeria" => "🇩🇿",
1240
+ "american_samoa" => "🇦🇸",
1241
+ "andorra" => "🇦🇩",
1242
+ "angola" => "🇦🇴",
1243
+ "anguilla" => "🇦🇮",
1244
+ "antarctica" => "🇦🇶",
1245
+ "antigua_barbuda" => "🇦🇬",
1246
+ "argentina" => "🇦🇷",
1247
+ "armenia" => "🇦🇲",
1248
+ "aruba" => "🇦🇼",
1249
+ "australia" => "🇦🇺",
1250
+ "austria" => "🇦🇹",
1251
+ "azerbaijan" => "🇦🇿",
1252
+ "bahamas" => "🇧🇸",
1253
+ "bahrain" => "🇧🇭",
1254
+ "bangladesh" => "🇧🇩",
1255
+ "barbados" => "🇧🇧",
1256
+ "belarus" => "🇧🇾",
1257
+ "belgium" => "🇧🇪",
1258
+ "belize" => "🇧🇿",
1259
+ "benin" => "🇧🇯",
1260
+ "bermuda" => "🇧🇲",
1261
+ "bhutan" => "🇧🇹",
1262
+ "bolivia" => "🇧🇴",
1263
+ "caribbean_netherlands" => "🇧🇶",
1264
+ "bosnia_herzegovina" => "🇧🇦",
1265
+ "botswana" => "🇧🇼",
1266
+ "brazil" => "🇧🇷",
1267
+ "british_indian_ocean_territory" => "🇮🇴",
1268
+ "british_virgin_islands" => "🇻🇬",
1269
+ "brunei" => "🇧🇳",
1270
+ "bulgaria" => "🇧🇬",
1271
+ "burkina_faso" => "🇧🇫",
1272
+ "burundi" => "🇧🇮",
1273
+ "cape_verde" => "🇨🇻",
1274
+ "cambodia" => "🇰🇭",
1275
+ "cameroon" => "🇨🇲",
1276
+ "canada" => "🇨🇦",
1277
+ "canary_islands" => "🇮🇨",
1278
+ "cayman_islands" => "🇰🇾",
1279
+ "central_african_republic" => "🇨🇫",
1280
+ "chad" => "🇹🇩",
1281
+ "chile" => "🇨🇱",
1282
+ "cn" => "🇨🇳",
1283
+ "christmas_island" => "🇨🇽",
1284
+ "cocos_islands" => "🇨🇨",
1285
+ "colombia" => "🇨🇴",
1286
+ "comoros" => "🇰🇲",
1287
+ "congo_brazzaville" => "🇨🇬",
1288
+ "congo_kinshasa" => "🇨🇩",
1289
+ "cook_islands" => "🇨🇰",
1290
+ "costa_rica" => "🇨🇷",
1291
+ "cote_divoire" => "🇨🇮",
1292
+ "croatia" => "🇭🇷",
1293
+ "cuba" => "🇨🇺",
1294
+ "curacao" => "🇨🇼",
1295
+ "cyprus" => "🇨🇾",
1296
+ "czech_republic" => "🇨🇿",
1297
+ "denmark" => "🇩🇰",
1298
+ "djibouti" => "🇩🇯",
1299
+ "dominica" => "🇩🇲",
1300
+ "dominican_republic" => "🇩🇴",
1301
+ "ecuador" => "🇪🇨",
1302
+ "egypt" => "🇪🇬",
1303
+ "el_salvador" => "🇸🇻",
1304
+ "equatorial_guinea" => "🇬🇶",
1305
+ "eritrea" => "🇪🇷",
1306
+ "estonia" => "🇪🇪",
1307
+ "ethiopia" => "🇪🇹",
1308
+ "eu" => "🇪🇺",
1309
+ "european_union" => "🇪🇺",
1310
+ "falkland_islands" => "🇫🇰",
1311
+ "faroe_islands" => "🇫🇴",
1312
+ "fiji" => "🇫🇯",
1313
+ "finland" => "🇫🇮",
1314
+ "fr" => "🇫🇷",
1315
+ "french_guiana" => "🇬🇫",
1316
+ "french_polynesia" => "🇵🇫",
1317
+ "french_southern_territories" => "🇹🇫",
1318
+ "gabon" => "🇬🇦",
1319
+ "gambia" => "🇬🇲",
1320
+ "georgia" => "🇬🇪",
1321
+ "de" => "🇩🇪",
1322
+ "ghana" => "🇬🇭",
1323
+ "gibraltar" => "🇬🇮",
1324
+ "greece" => "🇬🇷",
1325
+ "greenland" => "🇬🇱",
1326
+ "grenada" => "🇬🇩",
1327
+ "guadeloupe" => "🇬🇵",
1328
+ "guam" => "🇬🇺",
1329
+ "guatemala" => "🇬🇹",
1330
+ "guernsey" => "🇬🇬",
1331
+ "guinea" => "🇬🇳",
1332
+ "guinea_bissau" => "🇬🇼",
1333
+ "guyana" => "🇬🇾",
1334
+ "haiti" => "🇭🇹",
1335
+ "honduras" => "🇭🇳",
1336
+ "hong_kong" => "🇭🇰",
1337
+ "hungary" => "🇭🇺",
1338
+ "iceland" => "🇮🇸",
1339
+ "india" => "🇮🇳",
1340
+ "indonesia" => "🇮🇩",
1341
+ "iran" => "🇮🇷",
1342
+ "iraq" => "🇮🇶",
1343
+ "ireland" => "🇮🇪",
1344
+ "isle_of_man" => "🇮🇲",
1345
+ "israel" => "🇮🇱",
1346
+ "it" => "🇮🇹",
1347
+ "jamaica" => "🇯🇲",
1348
+ "jp" => "🇯🇵",
1349
+ "crossed_flags" => "🎌",
1350
+ "jersey" => "🇯🇪",
1351
+ "jordan" => "🇯🇴",
1352
+ "kazakhstan" => "🇰🇿",
1353
+ "kenya" => "🇰🇪",
1354
+ "kiribati" => "🇰🇮",
1355
+ "kosovo" => "🇽🇰",
1356
+ "kuwait" => "🇰🇼",
1357
+ "kyrgyzstan" => "🇰🇬",
1358
+ "laos" => "🇱🇦",
1359
+ "latvia" => "🇱🇻",
1360
+ "lebanon" => "🇱🇧",
1361
+ "lesotho" => "🇱🇸",
1362
+ "liberia" => "🇱🇷",
1363
+ "libya" => "🇱🇾",
1364
+ "liechtenstein" => "🇱🇮",
1365
+ "lithuania" => "🇱🇹",
1366
+ "luxembourg" => "🇱🇺",
1367
+ "macau" => "🇲🇴",
1368
+ "macedonia" => "🇲🇰",
1369
+ "madagascar" => "🇲🇬",
1370
+ "malawi" => "🇲🇼",
1371
+ "malaysia" => "🇲🇾",
1372
+ "maldives" => "🇲🇻",
1373
+ "mali" => "🇲🇱",
1374
+ "malta" => "🇲🇹",
1375
+ "marshall_islands" => "🇲🇭",
1376
+ "martinique" => "🇲🇶",
1377
+ "mauritania" => "🇲🇷",
1378
+ "mauritius" => "🇲🇺",
1379
+ "mayotte" => "🇾🇹",
1380
+ "mexico" => "🇲🇽",
1381
+ "micronesia" => "🇫🇲",
1382
+ "moldova" => "🇲🇩",
1383
+ "monaco" => "🇲🇨",
1384
+ "mongolia" => "🇲🇳",
1385
+ "montenegro" => "🇲🇪",
1386
+ "montserrat" => "🇲🇸",
1387
+ "morocco" => "🇲🇦",
1388
+ "mozambique" => "🇲🇿",
1389
+ "myanmar" => "🇲🇲",
1390
+ "namibia" => "🇳🇦",
1391
+ "nauru" => "🇳🇷",
1392
+ "nepal" => "🇳🇵",
1393
+ "netherlands" => "🇳🇱",
1394
+ "new_caledonia" => "🇳🇨",
1395
+ "new_zealand" => "🇳🇿",
1396
+ "nicaragua" => "🇳🇮",
1397
+ "niger" => "🇳🇪",
1398
+ "nigeria" => "🇳🇬",
1399
+ "niue" => "🇳🇺",
1400
+ "norfolk_island" => "🇳🇫",
1401
+ "northern_mariana_islands" => "🇲🇵",
1402
+ "north_korea" => "🇰🇵",
1403
+ "norway" => "🇳🇴",
1404
+ "oman" => "🇴🇲",
1405
+ "pakistan" => "🇵🇰",
1406
+ "palau" => "🇵🇼",
1407
+ "palestinian_territories" => "🇵🇸",
1408
+ "panama" => "🇵🇦",
1409
+ "papua_new_guinea" => "🇵🇬",
1410
+ "paraguay" => "🇵🇾",
1411
+ "peru" => "🇵🇪",
1412
+ "philippines" => "🇵🇭",
1413
+ "pitcairn_islands" => "🇵🇳",
1414
+ "poland" => "🇵🇱",
1415
+ "portugal" => "🇵🇹",
1416
+ "puerto_rico" => "🇵🇷",
1417
+ "qatar" => "🇶🇦",
1418
+ "reunion" => "🇷🇪",
1419
+ "romania" => "🇷🇴",
1420
+ "ru" => "🇷🇺",
1421
+ "rwanda" => "🇷🇼",
1422
+ "st_barthelemy" => "🇧🇱",
1423
+ "st_helena" => "🇸🇭",
1424
+ "st_kitts_nevis" => "🇰🇳",
1425
+ "st_lucia" => "🇱🇨",
1426
+ "st_pierre_miquelon" => "🇵🇲",
1427
+ "st_vincent_grenadines" => "🇻🇨",
1428
+ "samoa" => "🇼🇸",
1429
+ "san_marino" => "🇸🇲",
1430
+ "sao_tome_principe" => "🇸🇹",
1431
+ "saudi_arabia" => "🇸🇦",
1432
+ "senegal" => "🇸🇳",
1433
+ "serbia" => "🇷🇸",
1434
+ "seychelles" => "🇸🇨",
1435
+ "sierra_leone" => "🇸🇱",
1436
+ "singapore" => "🇸🇬",
1437
+ "sint_maarten" => "🇸🇽",
1438
+ "slovakia" => "🇸🇰",
1439
+ "slovenia" => "🇸🇮",
1440
+ "solomon_islands" => "🇸🇧",
1441
+ "somalia" => "🇸🇴",
1442
+ "south_africa" => "🇿🇦",
1443
+ "south_georgia_south_sandwich_islands" => "🇬🇸",
1444
+ "kr" => "🇰🇷",
1445
+ "south_sudan" => "🇸🇸",
1446
+ "es" => "🇪🇸",
1447
+ "sri_lanka" => "🇱🇰",
1448
+ "sudan" => "🇸🇩",
1449
+ "suriname" => "🇸🇷",
1450
+ "swaziland" => "🇸🇿",
1451
+ "sweden" => "🇸🇪",
1452
+ "switzerland" => "🇨🇭",
1453
+ "syria" => "🇸🇾",
1454
+ "taiwan" => "🇹🇼",
1455
+ "tajikistan" => "🇹🇯",
1456
+ "tanzania" => "🇹🇿",
1457
+ "thailand" => "🇹🇭",
1458
+ "timor_leste" => "🇹🇱",
1459
+ "togo" => "🇹🇬",
1460
+ "tokelau" => "🇹🇰",
1461
+ "tonga" => "🇹🇴",
1462
+ "trinidad_tobago" => "🇹🇹",
1463
+ "tunisia" => "🇹🇳",
1464
+ "tr" => "🇹🇷",
1465
+ "turkmenistan" => "🇹🇲",
1466
+ "turks_caicos_islands" => "🇹🇨",
1467
+ "tuvalu" => "🇹🇻",
1468
+ "uganda" => "🇺🇬",
1469
+ "ukraine" => "🇺🇦",
1470
+ "united_arab_emirates" => "🇦🇪",
1471
+ "gb" => "🇬🇧",
1472
+ "uk" => "🇬🇧",
1473
+ "us" => "🇺🇸",
1474
+ "us_virgin_islands" => "🇻🇮",
1475
+ "uruguay" => "🇺🇾",
1476
+ "uzbekistan" => "🇺🇿",
1477
+ "vanuatu" => "🇻🇺",
1478
+ "vatican_city" => "🇻🇦",
1479
+ "venezuela" => "🇻🇪",
1480
+ "vietnam" => "🇻🇳",
1481
+ "wallis_futuna" => "🇼🇫",
1482
+ "western_sahara" => "🇪🇭",
1483
+ "yemen" => "🇾🇪",
1484
+ "zambia" => "🇿🇲",
1485
+ "zimbabwe" => "🇿🇼"
1486
+ }.freeze
1487
+ end
1488
+ end
1489
+ end
1490
+ end