shitceptions 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,94 @@
1
+ # @author Seth Vargo <sethvargo@gmail.com>
2
+ module Shitceptions
3
+ require 'shitceptions/emojis'
4
+ require 'shitceptions/error'
5
+ require 'shitceptions/version'
6
+
7
+ class << self
8
+ # Configure the behavior of Shitceptions
9
+ #
10
+ # @example
11
+ # Shitceptions.configure do |c|
12
+ # c.enabled = false
13
+ # end
14
+ #
15
+ # @example
16
+ # Shitceptions.configure do |c|
17
+ # c.include_original_error = true
18
+ # end
19
+ #
20
+ # @example
21
+ # Shitceptions.enabled = false
22
+ # Shitceptions.include_original_error = true
23
+ def configure(&block)
24
+ yield(self)
25
+ end
26
+
27
+ # Set a config option for the module. This will define a getter
28
+ # and setter method dynamically.
29
+ #
30
+ # @param [#to_s] name
31
+ # the name of the config option
32
+ # @param default_value
33
+ # the default value to return if it's not set
34
+ def config_option(name, default_value)
35
+ normalized_name = name.to_s.downcase.gsub(/[[:space:]]/, '_').to_sym
36
+
37
+ instance_eval <<-RUBY
38
+ def #{normalized_name}=(value)
39
+ @#{normalized_name} = value
40
+ end
41
+
42
+ def #{normalized_name}?
43
+ @#{normalized_name}.nil? ? #{default_value} : @#{normalized_name}
44
+ end
45
+ RUBY
46
+ end
47
+
48
+ # Add Shitceptions to the given class, with the given emoji.
49
+ #
50
+ # @param [Class] klass
51
+ # the klass (most likely an error class) to apply Shitceptions to
52
+ # @param [#to_s]
53
+ # the name of the emoji to use
54
+ # @raise [Shitceptions::ShittyArgumentError]
55
+ # if the given parameter is not a Class
56
+ # @raise [Shitceptions::ShittyEmojiError]
57
+ # if the given emoji name does not exist
58
+ def shittify(klass, emoji_name)
59
+ raise ShittyArgumentError.new(klass) unless klass.kind_of?(Class)
60
+
61
+ emoji = EMOJIS[emoji_name.to_s.downcase.gsub(/[[:space:]]/, '_').to_sym]
62
+ raise ShittyEmojiError(emoji_name) unless emoji
63
+
64
+ if include_original_error?
65
+ klass.class_eval <<-RUBY
66
+ alias_method :unshitty_to_s, :to_s
67
+
68
+ def to_s
69
+ "#{emoji} \#{unshitty_to_s}"
70
+ end
71
+ RUBY
72
+ else
73
+ klass.class_eval <<-RUBY
74
+ alias_method :unshitty_to_s, :to_s
75
+
76
+ def to_s
77
+ "#{emoji} "
78
+ end
79
+ RUBY
80
+ end
81
+ end
82
+ end
83
+
84
+ config_option :enabled, true
85
+ config_option :include_original_error, false
86
+
87
+ # Now actually shittify stuff
88
+ shittify(NoMemoryError, :pedestrian)
89
+ shittify(ScriptError, :hot_beverage)
90
+ shittify(LoadError, :pile_of_poo)
91
+ shittify(SecurityError, :closed_lock_with_key)
92
+ shittify(SignalException, :white_up_pointing_index)
93
+ shittify(StandardError, :pile_of_poo)
94
+ end
@@ -0,0 +1,849 @@
1
+ module Shitceptions
2
+ EMOJIS = {
3
+ :smiling_face_with_open_mouth_and_smiling_eyes => [128516].pack('U*'),
4
+ :smiling_face_with_open_mouth => [128515].pack('U*'),
5
+ :grinning_face => [128512].pack('U*'),
6
+ :smiling_face_with_smiling_eyes => [128522].pack('U*'),
7
+ :white_smiling_face => [ 9786].pack('U*'),
8
+ :winking_face => [128521].pack('U*'),
9
+ :smiling_face_with_heart_shaped_eyes => [128525].pack('U*'),
10
+ :face_throwing_a_kiss => [128536].pack('U*'),
11
+ :kissing_face_with_closed_eyes => [128538].pack('U*'),
12
+ :kissing_face => [128535].pack('U*'),
13
+ :kissing_face_with_smiling_eyes => [128537].pack('U*'),
14
+ :face_with_stuck_out_tongue_and_winking_eye => [128540].pack('U*'),
15
+ :face_with_stuck_out_tongue_and_tightly_closed_eyes => [128541].pack('U*'),
16
+ :face_with_stuck_out_tongue => [128539].pack('U*'),
17
+ :flushed_face => [128563].pack('U*'),
18
+ :grinning_face_with_smiling_eyes => [128513].pack('U*'),
19
+ :pensive_face => [128532].pack('U*'),
20
+ :relieved_face => [128524].pack('U*'),
21
+ :unamused_face => [128530].pack('U*'),
22
+ :disappointed_face => [128542].pack('U*'),
23
+ :persevering_face => [128547].pack('U*'),
24
+ :crying_face => [128546].pack('U*'),
25
+ :face_with_tears_of_joy => [128514].pack('U*'),
26
+ :loudly_crying_face => [128557].pack('U*'),
27
+ :sleepy_face => [128554].pack('U*'),
28
+ :disappointed_but_relieved_face => [128549].pack('U*'),
29
+ :face_with_open_mouth_and_cold_sweat => [128560].pack('U*'),
30
+ :smiling_face_with_open_mouth_and_cold_sweat => [128517].pack('U*'),
31
+ :face_with_cold_sweat => [128531].pack('U*'),
32
+ :weary_face => [128553].pack('U*'),
33
+ :tired_face => [128555].pack('U*'),
34
+ :fearful_face => [128552].pack('U*'),
35
+ :face_screaming_in_fear => [128561].pack('U*'),
36
+ :angry_face => [128544].pack('U*'),
37
+ :pouting_face => [128545].pack('U*'),
38
+ :face_with_look_of_triumph => [128548].pack('U*'),
39
+ :confounded_face => [128534].pack('U*'),
40
+ :smiling_face_with_open_mouth_and_tightly_closed_eyes => [128518].pack('U*'),
41
+ :face_savouring_delicious_food => [128523].pack('U*'),
42
+ :face_with_medical_mask => [128567].pack('U*'),
43
+ :smiling_face_with_sunglasses => [128526].pack('U*'),
44
+ :sleeping_face => [128564].pack('U*'),
45
+ :dizzy_face => [128565].pack('U*'),
46
+ :astonished_face => [128562].pack('U*'),
47
+ :worried_face => [128543].pack('U*'),
48
+ :frowning_face_with_open_mouth => [128550].pack('U*'),
49
+ :anguished_face => [128551].pack('U*'),
50
+ :smiling_face_with_horns => [128520].pack('U*'),
51
+ :imp => [128127].pack('U*'),
52
+ :face_with_open_mouth => [128558].pack('U*'),
53
+ :grimacing_face => [128556].pack('U*'),
54
+ :neutral_face => [128528].pack('U*'),
55
+ :confused_face => [128533].pack('U*'),
56
+ :hushed_face => [128559].pack('U*'),
57
+ :face_without_mouth => [128566].pack('U*'),
58
+ :smiling_face_with_halo => [128519].pack('U*'),
59
+ :smirking_face => [128527].pack('U*'),
60
+ :expressionless_face => [128529].pack('U*'),
61
+ :man_with_gua_pi_mao => [128114].pack('U*'),
62
+ :man_with_turban => [128115].pack('U*'),
63
+ :police_officer => [128110].pack('U*'),
64
+ :construction_worker => [128119].pack('U*'),
65
+ :guardsman => [128130].pack('U*'),
66
+ :baby => [128118].pack('U*'),
67
+ :boy => [128102].pack('U*'),
68
+ :girl => [128103].pack('U*'),
69
+ :man => [128104].pack('U*'),
70
+ :woman => [128105].pack('U*'),
71
+ :older_man => [128116].pack('U*'),
72
+ :older_woman => [128117].pack('U*'),
73
+ :person_with_blond_hair => [128113].pack('U*'),
74
+ :baby_angel => [128124].pack('U*'),
75
+ :princess => [128120].pack('U*'),
76
+ :smiling_cat_face_with_open_mouth => [128570].pack('U*'),
77
+ :grinning_cat_face_with_smiling_eyes => [128568].pack('U*'),
78
+ :smiling_cat_face_with_heart_shaped_eyes => [128571].pack('U*'),
79
+ :kissing_cat_face_with_closed_eyes => [128573].pack('U*'),
80
+ :cat_face_with_wry_smile => [128572].pack('U*'),
81
+ :weary_cat_face => [128576].pack('U*'),
82
+ :crying_cat_face => [128575].pack('U*'),
83
+ :cat_face_with_tears_of_joy => [128569].pack('U*'),
84
+ :pouting_cat_face => [128574].pack('U*'),
85
+ :japanese_ogre => [128121].pack('U*'),
86
+ :japanese_goblin => [128122].pack('U*'),
87
+ :see_no_evil_monkey => [128584].pack('U*'),
88
+ :hear_no_evil_monkey => [128585].pack('U*'),
89
+ :speak_no_evil_monkey => [128586].pack('U*'),
90
+ :skull => [128128].pack('U*'),
91
+ :extraterrestrial_alien => [128125].pack('U*'),
92
+ :pile_of_poo => [128169].pack('U*'),
93
+ :fire => [128293].pack('U*'),
94
+ :sparkles => [ 10024].pack('U*'),
95
+ :glowing_star => [127775].pack('U*'),
96
+ :dizzy_symbol => [128171].pack('U*'),
97
+ :collision_symbol => [128165].pack('U*'),
98
+ :anger_symbol => [128162].pack('U*'),
99
+ :splashing_sweat_symbol => [128166].pack('U*'),
100
+ :droplet => [128167].pack('U*'),
101
+ :sleeping_symbol => [128164].pack('U*'),
102
+ :dash_symbol => [128168].pack('U*'),
103
+ :ear => [128066].pack('U*'),
104
+ :eyes => [128064].pack('U*'),
105
+ :nose => [128067].pack('U*'),
106
+ :tongue => [128069].pack('U*'),
107
+ :mouth => [128068].pack('U*'),
108
+ :thumbs_up_sign => [128077].pack('U*'),
109
+ :thumbs_down_sign => [128078].pack('U*'),
110
+ :ok_hand_sign => [128076].pack('U*'),
111
+ :fisted_hand_sign => [128074].pack('U*'),
112
+ :raised_fist => [ 9994].pack('U*'),
113
+ :victory_hand => [ 9996].pack('U*'),
114
+ :waving_hand_sign => [128075].pack('U*'),
115
+ :raised_hand => [ 9995].pack('U*'),
116
+ :open_hands_sign => [128080].pack('U*'),
117
+ :white_up_pointing_backhand_index => [128070].pack('U*'),
118
+ :white_down_pointing_backhand_index => [128071].pack('U*'),
119
+ :white_right_pointing_backhand_index => [128073].pack('U*'),
120
+ :white_left_pointing_backhand_index => [128072].pack('U*'),
121
+ :person_raising_both_hands_in_celebration => [128588].pack('U*'),
122
+ :person_with_folded_hands => [128591].pack('U*'),
123
+ :white_up_pointing_index => [ 9757].pack('U*'),
124
+ :clapping_hands_sign => [128079].pack('U*'),
125
+ :flexed_biceps => [128170].pack('U*'),
126
+ :pedestrian => [128694].pack('U*'),
127
+ :runner => [127939].pack('U*'),
128
+ :dancer => [128131].pack('U*'),
129
+ :man_and_woman_holding_hands => [128107].pack('U*'),
130
+ :family => [128106].pack('U*'),
131
+ :two_men_holding_hands => [128108].pack('U*'),
132
+ :two_women_holding_hands => [128109].pack('U*'),
133
+ :kiss => [128143].pack('U*'),
134
+ :couple_with_heart => [128145].pack('U*'),
135
+ :woman_with_bunny_ears => [128111].pack('U*'),
136
+ :face_with_ok_gesture => [128582].pack('U*'),
137
+ :face_with_no_good_gesture => [128581].pack('U*'),
138
+ :information_desk_person => [128129].pack('U*'),
139
+ :happy_person_raising_one_hand => [128587].pack('U*'),
140
+ :face_massage => [128134].pack('U*'),
141
+ :haircut => [128135].pack('U*'),
142
+ :nail_polish => [128133].pack('U*'),
143
+ :bride_with_veil => [128112].pack('U*'),
144
+ :person_with_pouting_face => [128590].pack('U*'),
145
+ :person_frowning => [128589].pack('U*'),
146
+ :person_bowing_deeply => [128583].pack('U*'),
147
+ :top_hat => [127913].pack('U*'),
148
+ :crown => [128081].pack('U*'),
149
+ :womans_hat => [128082].pack('U*'),
150
+ :athletic_shoe => [128095].pack('U*'),
151
+ :mans_shoe => [128094].pack('U*'),
152
+ :womans_sandal => [128097].pack('U*'),
153
+ :high_heeled_shoe => [128096].pack('U*'),
154
+ :womans_boots => [128098].pack('U*'),
155
+ :t_shirt => [128085].pack('U*'),
156
+ :necktie => [128084].pack('U*'),
157
+ :womans_clothes => [128090].pack('U*'),
158
+ :dress => [128087].pack('U*'),
159
+ :running_shirt_with_sash => [127933].pack('U*'),
160
+ :jeans => [128086].pack('U*'),
161
+ :kimono => [128088].pack('U*'),
162
+ :bikini => [128089].pack('U*'),
163
+ :briefcase => [128188].pack('U*'),
164
+ :handbag => [128092].pack('U*'),
165
+ :pouch => [128093].pack('U*'),
166
+ :purse => [128091].pack('U*'),
167
+ :eyeglasses => [128083].pack('U*'),
168
+ :ribbon => [127872].pack('U*'),
169
+ :closed_umbrella => [127746].pack('U*'),
170
+ :lipstick => [128132].pack('U*'),
171
+ :yellow_heart => [128155].pack('U*'),
172
+ :blue_heart => [128153].pack('U*'),
173
+ :purple_heart => [128156].pack('U*'),
174
+ :green_heart => [128154].pack('U*'),
175
+ :heavy_black_heart => [ 10084].pack('U*'),
176
+ :broken_heart => [128148].pack('U*'),
177
+ :growing_heart => [128151].pack('U*'),
178
+ :beating_heart => [128147].pack('U*'),
179
+ :two_hearts => [128149].pack('U*'),
180
+ :sparkling_heart => [128150].pack('U*'),
181
+ :revolving_hearts => [128158].pack('U*'),
182
+ :heart_with_arrow => [128152].pack('U*'),
183
+ :love_letter => [128140].pack('U*'),
184
+ :kiss_mark => [128139].pack('U*'),
185
+ :ring => [128141].pack('U*'),
186
+ :gem_stone => [128142].pack('U*'),
187
+ :bust_in_silhouette => [128100].pack('U*'),
188
+ :busts_in_silhouette => [128101].pack('U*'),
189
+ :speech_balloon => [128172].pack('U*'),
190
+ :footprints => [128099].pack('U*'),
191
+ :thought_balloon => [128173].pack('U*'),
192
+ :dog_face => [128054].pack('U*'),
193
+ :wolf_face => [128058].pack('U*'),
194
+ :cat_face => [128049].pack('U*'),
195
+ :mouse_face => [128045].pack('U*'),
196
+ :hamster_face => [128057].pack('U*'),
197
+ :rabbit_face => [128048].pack('U*'),
198
+ :frog_face => [128056].pack('U*'),
199
+ :tiger_face => [128047].pack('U*'),
200
+ :koala => [128040].pack('U*'),
201
+ :bear_face => [128059].pack('U*'),
202
+ :pig_face => [128055].pack('U*'),
203
+ :pig_nose => [128061].pack('U*'),
204
+ :cow_face => [128046].pack('U*'),
205
+ :boar => [128023].pack('U*'),
206
+ :monkey_face => [128053].pack('U*'),
207
+ :monkey => [128018].pack('U*'),
208
+ :horse_face => [128052].pack('U*'),
209
+ :sheep => [128017].pack('U*'),
210
+ :elephant => [128024].pack('U*'),
211
+ :panda_face => [128060].pack('U*'),
212
+ :penguin => [128039].pack('U*'),
213
+ :bird => [128038].pack('U*'),
214
+ :baby_chick => [128036].pack('U*'),
215
+ :front_facing_baby_chick => [128037].pack('U*'),
216
+ :hatching_chick => [128035].pack('U*'),
217
+ :chicken => [128020].pack('U*'),
218
+ :snake => [128013].pack('U*'),
219
+ :turtle => [128034].pack('U*'),
220
+ :bug => [128027].pack('U*'),
221
+ :honeybee => [128029].pack('U*'),
222
+ :ant => [128028].pack('U*'),
223
+ :lady_beetle => [128030].pack('U*'),
224
+ :snail => [128012].pack('U*'),
225
+ :octopus => [128025].pack('U*'),
226
+ :spiral_shell => [128026].pack('U*'),
227
+ :tropical_fish => [128032].pack('U*'),
228
+ :fish => [128031].pack('U*'),
229
+ :dolphin => [128044].pack('U*'),
230
+ :spouting_whale => [128051].pack('U*'),
231
+ :whale => [128011].pack('U*'),
232
+ :cow => [128004].pack('U*'),
233
+ :ram => [128015].pack('U*'),
234
+ :rat => [128000].pack('U*'),
235
+ :water_buffalo => [128003].pack('U*'),
236
+ :tiger => [128005].pack('U*'),
237
+ :rabbit => [128007].pack('U*'),
238
+ :dragon => [128009].pack('U*'),
239
+ :horse => [128014].pack('U*'),
240
+ :goat => [128016].pack('U*'),
241
+ :rooster => [128019].pack('U*'),
242
+ :dog => [128021].pack('U*'),
243
+ :pig => [128022].pack('U*'),
244
+ :mouse => [128001].pack('U*'),
245
+ :ox => [128002].pack('U*'),
246
+ :dragon_face => [128050].pack('U*'),
247
+ :blowfish => [128033].pack('U*'),
248
+ :crocodile => [128010].pack('U*'),
249
+ :bactrian_camel => [128043].pack('U*'),
250
+ :dromedary_camel => [128042].pack('U*'),
251
+ :leopard => [128006].pack('U*'),
252
+ :cat => [128008].pack('U*'),
253
+ :poodle => [128041].pack('U*'),
254
+ :paw_prints => [128062].pack('U*'),
255
+ :bouquet => [128144].pack('U*'),
256
+ :cherry_blossom => [127800].pack('U*'),
257
+ :tulip => [127799].pack('U*'),
258
+ :four_leaf_clover => [127808].pack('U*'),
259
+ :rose => [127801].pack('U*'),
260
+ :sunflower => [127803].pack('U*'),
261
+ :hibiscus => [127802].pack('U*'),
262
+ :maple_leaf => [127809].pack('U*'),
263
+ :leaf_fluttering_in_wind => [127811].pack('U*'),
264
+ :fallen_leaf => [127810].pack('U*'),
265
+ :herb => [127807].pack('U*'),
266
+ :ear_of_rice => [127806].pack('U*'),
267
+ :mushroom => [127812].pack('U*'),
268
+ :cactus => [127797].pack('U*'),
269
+ :palm_tree => [127796].pack('U*'),
270
+ :evergreen_tree => [127794].pack('U*'),
271
+ :deciduous_tree => [127795].pack('U*'),
272
+ :chestnut => [127792].pack('U*'),
273
+ :seedling => [127793].pack('U*'),
274
+ :blossom => [127804].pack('U*'),
275
+ :globe_with_meridians => [127760].pack('U*'),
276
+ :sun_with_face => [127774].pack('U*'),
277
+ :full_moon_with_face => [127773].pack('U*'),
278
+ :new_moon_with_face => [127770].pack('U*'),
279
+ :new_moon_symbol => [127761].pack('U*'),
280
+ :waxing_crescent_moon_symbol => [127762].pack('U*'),
281
+ :first_quarter_moon_symbol => [127763].pack('U*'),
282
+ :waxing_gibbous_moon_symbol => [127764].pack('U*'),
283
+ :full_moon_symbol => [127765].pack('U*'),
284
+ :waning_gibbous_moon_symbol => [127766].pack('U*'),
285
+ :last_quarter_moon_symbol => [127767].pack('U*'),
286
+ :waning_crescent_moon_symbol => [127768].pack('U*'),
287
+ :last_quarter_moon_with_face => [127772].pack('U*'),
288
+ :first_quarter_moon_with_face => [127771].pack('U*'),
289
+ :crescent_moon => [127769].pack('U*'),
290
+ :earth_globe_europe_africa => [127757].pack('U*'),
291
+ :earth_globe_americas => [127758].pack('U*'),
292
+ :earth_globe_asia_australia => [127759].pack('U*'),
293
+ :volcano => [127755].pack('U*'),
294
+ :milky_way => [127756].pack('U*'),
295
+ :shooting_star => [127776].pack('U*'),
296
+ :white_medium_star => [ 11088].pack('U*'),
297
+ :black_sun_with_rays => [ 9728].pack('U*'),
298
+ :sun_behind_cloud => [ 9925].pack('U*'),
299
+ :cloud => [ 9729].pack('U*'),
300
+ :high_voltage_sign => [ 9889].pack('U*'),
301
+ :umbrella_with_rain_drops => [ 9748].pack('U*'),
302
+ :snowflake => [ 10052].pack('U*'),
303
+ :snowman_without_snow => [ 9924].pack('U*'),
304
+ :cyclone => [127744].pack('U*'),
305
+ :foggy => [127745].pack('U*'),
306
+ :rainbow => [127752].pack('U*'),
307
+ :water_wave => [127754].pack('U*'),
308
+ :pine_decoration => [127885].pack('U*'),
309
+ :heart_with_ribbon => [128157].pack('U*'),
310
+ :japanese_dolls => [127886].pack('U*'),
311
+ :school_satchel => [127890].pack('U*'),
312
+ :graduation_cap => [127891].pack('U*'),
313
+ :carp_streamer => [127887].pack('U*'),
314
+ :fireworks => [127878].pack('U*'),
315
+ :firework_sparkler => [127879].pack('U*'),
316
+ :wind_chime => [127888].pack('U*'),
317
+ :moon_viewing_ceremony => [127889].pack('U*'),
318
+ :jack_o_lantern => [127875].pack('U*'),
319
+ :ghost => [128123].pack('U*'),
320
+ :father_christmas => [127877].pack('U*'),
321
+ :christmas_tree => [127876].pack('U*'),
322
+ :wrapped_present => [127873].pack('U*'),
323
+ :tanabata_tree => [127883].pack('U*'),
324
+ :party_popper => [127881].pack('U*'),
325
+ :confetti_ball => [127882].pack('U*'),
326
+ :balloon => [127880].pack('U*'),
327
+ :crossed_flags => [127884].pack('U*'),
328
+ :crystal_ball => [128302].pack('U*'),
329
+ :movie_camera => [127909].pack('U*'),
330
+ :camera => [128247].pack('U*'),
331
+ :video_camera => [128249].pack('U*'),
332
+ :videocassette => [128252].pack('U*'),
333
+ :optical_disc => [128191].pack('U*'),
334
+ :dvd => [128192].pack('U*'),
335
+ :minidisc => [128189].pack('U*'),
336
+ :floppy_disk => [128190].pack('U*'),
337
+ :personal_computer => [128187].pack('U*'),
338
+ :mobile_phone => [128241].pack('U*'),
339
+ :black_telephone => [ 9742].pack('U*'),
340
+ :telephone_receiver => [128222].pack('U*'),
341
+ :pager => [128223].pack('U*'),
342
+ :fax_machine => [128224].pack('U*'),
343
+ :satellite_antenna => [128225].pack('U*'),
344
+ :television => [128250].pack('U*'),
345
+ :radio => [128251].pack('U*'),
346
+ :speaker_with_three_sound_waves => [128266].pack('U*'),
347
+ :speaker_with_one_sound_wave => [128265].pack('U*'),
348
+ :speaker => [128264].pack('U*'),
349
+ :speaker_with_cancellation_stroke => [128263].pack('U*'),
350
+ :bell => [128276].pack('U*'),
351
+ :bell_with_cancellation_stroke => [128277].pack('U*'),
352
+ :public_address_loudspeaker => [128226].pack('U*'),
353
+ :cheering_megaphone => [128227].pack('U*'),
354
+ :hourglass_with_flowing_sand => [ 9203].pack('U*'),
355
+ :hourglass => [ 8987].pack('U*'),
356
+ :alarm_clock => [ 9200].pack('U*'),
357
+ :watch => [ 8986].pack('U*'),
358
+ :open_lock => [128275].pack('U*'),
359
+ :lock => [128274].pack('U*'),
360
+ :lock_with_ink_pen => [128271].pack('U*'),
361
+ :closed_lock_with_key => [128272].pack('U*'),
362
+ :key => [128273].pack('U*'),
363
+ :right_pointing_magnifying_glass => [128270].pack('U*'),
364
+ :electric_light_bulb => [128161].pack('U*'),
365
+ :electric_torch => [128294].pack('U*'),
366
+ :high_brightness_symbol => [128262].pack('U*'),
367
+ :low_brightness_symbol => [128261].pack('U*'),
368
+ :electric_plug => [128268].pack('U*'),
369
+ :battery => [128267].pack('U*'),
370
+ :left_pointing_magnifying_glass => [128269].pack('U*'),
371
+ :bathtub => [128705].pack('U*'),
372
+ :bath => [128704].pack('U*'),
373
+ :shower => [128703].pack('U*'),
374
+ :toilet => [128701].pack('U*'),
375
+ :wrench => [128295].pack('U*'),
376
+ :nut_and_bolt => [128297].pack('U*'),
377
+ :hammer => [128296].pack('U*'),
378
+ :door => [128682].pack('U*'),
379
+ :smoking_symbol => [128684].pack('U*'),
380
+ :bomb => [128163].pack('U*'),
381
+ :pistol => [128299].pack('U*'),
382
+ :hocho => [128298].pack('U*'),
383
+ :pill => [128138].pack('U*'),
384
+ :syringe => [128137].pack('U*'),
385
+ :money_bag => [128176].pack('U*'),
386
+ :banknote_with_yen_sign => [128180].pack('U*'),
387
+ :banknote_with_dollar_sign => [128181].pack('U*'),
388
+ :banknote_with_pound_sign => [128183].pack('U*'),
389
+ :banknote_with_euro_sign => [128182].pack('U*'),
390
+ :credit_card => [128179].pack('U*'),
391
+ :money_with_wings => [128184].pack('U*'),
392
+ :mobile_phone_with_rightwards_arrow_at_left => [128242].pack('U*'),
393
+ :e_mail_symbol => [128231].pack('U*'),
394
+ :inbox_tray => [128229].pack('U*'),
395
+ :outbox_tray => [128228].pack('U*'),
396
+ :envelope => [ 9993].pack('U*'),
397
+ :envelope_with_downwards_arrow_above => [128233].pack('U*'),
398
+ :incoming_envelope => [128232].pack('U*'),
399
+ :postal_horn => [128239].pack('U*'),
400
+ :closed_mailbox_with_raised_flag => [128235].pack('U*'),
401
+ :closed_mailbox_with_lowered_flag => [128234].pack('U*'),
402
+ :open_mailbox_with_raised_flag => [128236].pack('U*'),
403
+ :open_mailbox_with_lowered_flag => [128237].pack('U*'),
404
+ :postbox => [128238].pack('U*'),
405
+ :package => [128230].pack('U*'),
406
+ :memo => [128221].pack('U*'),
407
+ :page_facing_up => [128196].pack('U*'),
408
+ :page_with_curl => [128195].pack('U*'),
409
+ :bookmark_tabs => [128209].pack('U*'),
410
+ :bar_chart => [128202].pack('U*'),
411
+ :chart_with_upwards_trend => [128200].pack('U*'),
412
+ :chart_with_downwards_trend => [128201].pack('U*'),
413
+ :scroll => [128220].pack('U*'),
414
+ :clipboard => [128203].pack('U*'),
415
+ :calendar => [128197].pack('U*'),
416
+ :tear_off_calendar => [128198].pack('U*'),
417
+ :card_index => [128199].pack('U*'),
418
+ :file_folder => [128193].pack('U*'),
419
+ :open_file_folder => [128194].pack('U*'),
420
+ :black_scissors => [ 9986].pack('U*'),
421
+ :pushpin => [128204].pack('U*'),
422
+ :paperclip => [128206].pack('U*'),
423
+ :black_nib => [ 10002].pack('U*'),
424
+ :pencil => [ 9999].pack('U*'),
425
+ :straight_ruler => [128207].pack('U*'),
426
+ :triangular_ruler => [128208].pack('U*'),
427
+ :closed_book => [128213].pack('U*'),
428
+ :green_book => [128215].pack('U*'),
429
+ :blue_book => [128216].pack('U*'),
430
+ :orange_book => [128217].pack('U*'),
431
+ :notebook => [128211].pack('U*'),
432
+ :notebook_with_decorative_cover => [128212].pack('U*'),
433
+ :ledger => [128210].pack('U*'),
434
+ :books => [128218].pack('U*'),
435
+ :open_book => [128214].pack('U*'),
436
+ :bookmark => [128278].pack('U*'),
437
+ :name_badge => [128219].pack('U*'),
438
+ :microscope => [128300].pack('U*'),
439
+ :telescope => [128301].pack('U*'),
440
+ :newspaper => [128240].pack('U*'),
441
+ :artist_palette => [127912].pack('U*'),
442
+ :clapper_board => [127916].pack('U*'),
443
+ :microphone => [127908].pack('U*'),
444
+ :headphone => [127911].pack('U*'),
445
+ :musical_score => [127932].pack('U*'),
446
+ :musical_note => [127925].pack('U*'),
447
+ :multiple_musical_notes => [127926].pack('U*'),
448
+ :musical_keyboard => [127929].pack('U*'),
449
+ :violin => [127931].pack('U*'),
450
+ :trumpet => [127930].pack('U*'),
451
+ :saxophone => [127927].pack('U*'),
452
+ :guitar => [127928].pack('U*'),
453
+ :alien_monster => [128126].pack('U*'),
454
+ :video_game => [127918].pack('U*'),
455
+ :playing_card_black_joker => [127183].pack('U*'),
456
+ :flower_playing_cards => [127924].pack('U*'),
457
+ :mahjong_tile_red_dragon => [126980].pack('U*'),
458
+ :game_die => [127922].pack('U*'),
459
+ :direct_hit => [127919].pack('U*'),
460
+ :american_football => [127944].pack('U*'),
461
+ :basketball_and_hoop => [127936].pack('U*'),
462
+ :soccer_ball => [ 9917].pack('U*'),
463
+ :baseball => [ 9918].pack('U*'),
464
+ :tennis_racquet_and_ball => [127934].pack('U*'),
465
+ :billiards => [127921].pack('U*'),
466
+ :rugby_football => [127945].pack('U*'),
467
+ :bowling => [127923].pack('U*'),
468
+ :flag_in_hole => [ 9971].pack('U*'),
469
+ :mountain_bicyclist => [128693].pack('U*'),
470
+ :bicyclist => [128692].pack('U*'),
471
+ :chequered_flag => [127937].pack('U*'),
472
+ :horse_racing => [127943].pack('U*'),
473
+ :trophy => [127942].pack('U*'),
474
+ :ski_and_ski_boot => [127935].pack('U*'),
475
+ :snowboarder => [127938].pack('U*'),
476
+ :swimmer => [127946].pack('U*'),
477
+ :surfer => [127940].pack('U*'),
478
+ :fishing_pole_and_fish => [127907].pack('U*'),
479
+ :hot_beverage => [ 9749].pack('U*'),
480
+ :teacup_without_handle => [127861].pack('U*'),
481
+ :sake_bottle_and_cup => [127862].pack('U*'),
482
+ :baby_bottle => [127868].pack('U*'),
483
+ :beer_mug => [127866].pack('U*'),
484
+ :clinking_beer_mugs => [127867].pack('U*'),
485
+ :cocktail_glass => [127864].pack('U*'),
486
+ :tropical_drink => [127865].pack('U*'),
487
+ :wine_glass => [127863].pack('U*'),
488
+ :fork_and_knife => [127860].pack('U*'),
489
+ :slice_of_pizza => [127829].pack('U*'),
490
+ :hamburger => [127828].pack('U*'),
491
+ :french_fries => [127839].pack('U*'),
492
+ :poultry_leg => [127831].pack('U*'),
493
+ :meat_on_bone => [127830].pack('U*'),
494
+ :spaghetti => [127837].pack('U*'),
495
+ :curry_and_rice => [127835].pack('U*'),
496
+ :fried_shrimp => [127844].pack('U*'),
497
+ :bento_box => [127857].pack('U*'),
498
+ :sushi => [127843].pack('U*'),
499
+ :fish_cake_with_swirl_design => [127845].pack('U*'),
500
+ :rice_ball => [127833].pack('U*'),
501
+ :rice_cracker => [127832].pack('U*'),
502
+ :cooked_rice => [127834].pack('U*'),
503
+ :steaming_bowl => [127836].pack('U*'),
504
+ :pot_of_food => [127858].pack('U*'),
505
+ :oden => [127842].pack('U*'),
506
+ :dango => [127841].pack('U*'),
507
+ :cooking => [127859].pack('U*'),
508
+ :bread => [127838].pack('U*'),
509
+ :doughnut => [127849].pack('U*'),
510
+ :custard => [127854].pack('U*'),
511
+ :soft_ice_cream => [127846].pack('U*'),
512
+ :ice_cream => [127848].pack('U*'),
513
+ :shaved_ice => [127847].pack('U*'),
514
+ :birthday_cake => [127874].pack('U*'),
515
+ :shortcake => [127856].pack('U*'),
516
+ :cookie => [127850].pack('U*'),
517
+ :chocolate_bar => [127851].pack('U*'),
518
+ :candy => [127852].pack('U*'),
519
+ :lollipop => [127853].pack('U*'),
520
+ :honey_pot => [127855].pack('U*'),
521
+ :red_apple => [127822].pack('U*'),
522
+ :green_apple => [127823].pack('U*'),
523
+ :tangerine => [127818].pack('U*'),
524
+ :lemon => [127819].pack('U*'),
525
+ :cherries => [127826].pack('U*'),
526
+ :grapes => [127815].pack('U*'),
527
+ :watermelon => [127817].pack('U*'),
528
+ :strawberry => [127827].pack('U*'),
529
+ :peach => [127825].pack('U*'),
530
+ :melon => [127816].pack('U*'),
531
+ :banana => [127820].pack('U*'),
532
+ :pear => [127824].pack('U*'),
533
+ :pineapple => [127821].pack('U*'),
534
+ :roasted_sweet_potato => [127840].pack('U*'),
535
+ :aubergine => [127814].pack('U*'),
536
+ :tomato => [127813].pack('U*'),
537
+ :ear_of_maize => [127805].pack('U*'),
538
+ :house_building => [127968].pack('U*'),
539
+ :house_with_garden => [127969].pack('U*'),
540
+ :school => [127979].pack('U*'),
541
+ :office_building => [127970].pack('U*'),
542
+ :japanese_post_office => [127971].pack('U*'),
543
+ :hospital => [127973].pack('U*'),
544
+ :bank => [127974].pack('U*'),
545
+ :convenience_store => [127978].pack('U*'),
546
+ :love_hotel => [127977].pack('U*'),
547
+ :hotel => [127976].pack('U*'),
548
+ :wedding => [128146].pack('U*'),
549
+ :church => [ 9962].pack('U*'),
550
+ :department_store => [127980].pack('U*'),
551
+ :european_post_office => [127972].pack('U*'),
552
+ :sunset_over_buildings => [127751].pack('U*'),
553
+ :cityscape_at_dusk => [127750].pack('U*'),
554
+ :japanese_castle => [127983].pack('U*'),
555
+ :european_castle => [127984].pack('U*'),
556
+ :tent => [ 9978].pack('U*'),
557
+ :factory => [127981].pack('U*'),
558
+ :tokyo_tower => [128508].pack('U*'),
559
+ :silhouette_of_japan => [128510].pack('U*'),
560
+ :mount_fuji => [128507].pack('U*'),
561
+ :sunrise_over_mountains => [127748].pack('U*'),
562
+ :sunrise => [127749].pack('U*'),
563
+ :night_with_stars => [127747].pack('U*'),
564
+ :statue_of_liberty => [128509].pack('U*'),
565
+ :bridge_at_night => [127753].pack('U*'),
566
+ :carousel_horse => [127904].pack('U*'),
567
+ :ferris_wheel => [127905].pack('U*'),
568
+ :fountain => [ 9970].pack('U*'),
569
+ :roller_coaster => [127906].pack('U*'),
570
+ :ship => [128674].pack('U*'),
571
+ :sailboat => [ 9973].pack('U*'),
572
+ :speedboat => [128676].pack('U*'),
573
+ :rowboat => [128675].pack('U*'),
574
+ :anchor => [ 9875].pack('U*'),
575
+ :rocket => [128640].pack('U*'),
576
+ :airplane => [ 9992].pack('U*'),
577
+ :seat => [128186].pack('U*'),
578
+ :helicopter => [128641].pack('U*'),
579
+ :steam_locomotive => [128642].pack('U*'),
580
+ :tram => [128650].pack('U*'),
581
+ :station => [128649].pack('U*'),
582
+ :mountain_railway => [128670].pack('U*'),
583
+ :train => [128646].pack('U*'),
584
+ :high_speed_train => [128644].pack('U*'),
585
+ :high_speed_train_with_bullet_nose => [128645].pack('U*'),
586
+ :light_rail => [128648].pack('U*'),
587
+ :metro => [128647].pack('U*'),
588
+ :monorail => [128669].pack('U*'),
589
+ :tram_car => [128651].pack('U*'),
590
+ :railway_car => [128643].pack('U*'),
591
+ :trolleybus => [128654].pack('U*'),
592
+ :bus => [128652].pack('U*'),
593
+ :oncoming_bus => [128653].pack('U*'),
594
+ :recreational_vehicle => [128665].pack('U*'),
595
+ :oncoming_automobile => [128664].pack('U*'),
596
+ :automobile => [128663].pack('U*'),
597
+ :taxi => [128661].pack('U*'),
598
+ :oncoming_taxi => [128662].pack('U*'),
599
+ :articulated_lorry => [128667].pack('U*'),
600
+ :delivery_truck => [128666].pack('U*'),
601
+ :police_cars_revolving_light => [128680].pack('U*'),
602
+ :police_car => [128659].pack('U*'),
603
+ :oncoming_police_car => [128660].pack('U*'),
604
+ :fire_engine => [128658].pack('U*'),
605
+ :ambulance => [128657].pack('U*'),
606
+ :minibus => [128656].pack('U*'),
607
+ :bicycle => [128690].pack('U*'),
608
+ :aerial_tramway => [128673].pack('U*'),
609
+ :suspension_railway => [128671].pack('U*'),
610
+ :mountain_cableway => [128672].pack('U*'),
611
+ :tractor => [128668].pack('U*'),
612
+ :barber_pole => [128136].pack('U*'),
613
+ :bus_stop => [128655].pack('U*'),
614
+ :ticket => [127915].pack('U*'),
615
+ :vertical_traffic_light => [128678].pack('U*'),
616
+ :horizontal_traffic_light => [128677].pack('U*'),
617
+ :warning_sign => [ 9888].pack('U*'),
618
+ :construction_sign => [128679].pack('U*'),
619
+ :japanese_symbol_for_beginner => [128304].pack('U*'),
620
+ :fuel_pump => [ 9981].pack('U*'),
621
+ :izakaya_lantern => [127982].pack('U*'),
622
+ :slot_machine => [127920].pack('U*'),
623
+ :hot_springs => [ 9832].pack('U*'),
624
+ :moyai => [128511].pack('U*'),
625
+ :circus_tent => [127914].pack('U*'),
626
+ :performing_arts => [127917].pack('U*'),
627
+ :round_pushpin => [128205].pack('U*'),
628
+ :triangular_flag_on_post => [128681].pack('U*'),
629
+ :regional_indicator_symbol_letters_jp => [127477].pack('U*'),
630
+ :regional_indicator_symbol_letters_kr => [127479].pack('U*'),
631
+ :regional_indicator_symbol_letters_de => [127466].pack('U*'),
632
+ :regional_indicator_symbol_letters_cn => [127475].pack('U*'),
633
+ :regional_indicator_symbol_letters_us => [127480].pack('U*'),
634
+ :regional_indicator_symbol_letters_fr => [127479].pack('U*'),
635
+ :regional_indicator_symbol_letters_es => [127480].pack('U*'),
636
+ :regional_indicator_symbol_letters_it => [127481].pack('U*'),
637
+ :regional_indicator_symbol_letters_ru => [127482].pack('U*'),
638
+ :regional_indicator_symbol_letters_gb => [127463].pack('U*'),
639
+ :keycap_1 => [ 8419].pack('U*'),
640
+ :keycap_2 => [ 8419].pack('U*'),
641
+ :keycap_3 => [ 8419].pack('U*'),
642
+ :keycap_4 => [ 8419].pack('U*'),
643
+ :keycap_5 => [ 8419].pack('U*'),
644
+ :keycap_6 => [ 8419].pack('U*'),
645
+ :keycap_7 => [ 8419].pack('U*'),
646
+ :keycap_8 => [ 8419].pack('U*'),
647
+ :keycap_9 => [ 8419].pack('U*'),
648
+ :keycap_0 => [ 8419].pack('U*'),
649
+ :keycap_ten => [128287].pack('U*'),
650
+ :input_symbol_for_numbers => [128290].pack('U*'),
651
+ :hash_key => [ 8419].pack('U*'),
652
+ :input_symbol_for_symbols => [128291].pack('U*'),
653
+ :upwards_black_arrow => [ 11014].pack('U*'),
654
+ :downwards_black_arrow => [ 11015].pack('U*'),
655
+ :leftwards_black_arrow => [ 11013].pack('U*'),
656
+ :black_rightwards_arrow => [ 10145].pack('U*'),
657
+ :input_symbol_for_latin_capital_letters => [128288].pack('U*'),
658
+ :input_symbol_for_latin_small_letters => [128289].pack('U*'),
659
+ :input_symbol_for_latin_letters => [128292].pack('U*'),
660
+ :north_east_arrow => [ 8599].pack('U*'),
661
+ :north_west_arrow => [ 8598].pack('U*'),
662
+ :south_east_arrow => [ 8600].pack('U*'),
663
+ :south_west_arrow => [ 8601].pack('U*'),
664
+ :left_right_arrow => [ 8596].pack('U*'),
665
+ :up_down_arrow => [ 8597].pack('U*'),
666
+ :anticlockwise_downwards_and_upwards_open_circle_arrows => [128260].pack('U*'),
667
+ :black_left_pointing_triangle => [ 9664].pack('U*'),
668
+ :black_right_pointing_triangle => [ 9654].pack('U*'),
669
+ :up_pointing_small_red_triangle => [128316].pack('U*'),
670
+ :down_pointing_small_red_triangle => [128317].pack('U*'),
671
+ :leftwards_arrow_with_hook => [ 8617].pack('U*'),
672
+ :rightwards_arrow_with_hook => [ 8618].pack('U*'),
673
+ :information_source => [ 8505].pack('U*'),
674
+ :black_left_pointing_double_triangle => [ 9194].pack('U*'),
675
+ :black_right_pointing_double_triangle => [ 9193].pack('U*'),
676
+ :black_up_pointing_double_triangle => [ 9195].pack('U*'),
677
+ :black_down_pointing_double_triangle => [ 9196].pack('U*'),
678
+ :arrow_pointing_rightwards_then_curving_downwards => [ 10549].pack('U*'),
679
+ :arrow_pointing_rightwards_then_curving_upwards => [ 10548].pack('U*'),
680
+ :squared_ok => [127383].pack('U*'),
681
+ :twisted_rightwards_arrows => [128256].pack('U*'),
682
+ :clockwise_rightwards_and_leftwards_open_circle_arrows => [128257].pack('U*'),
683
+ :clockwise_rightwards_and_leftwards_open_circle_arrows_with_circled_one_overlay => [128258].pack('U*'),
684
+ :squared_new => [127381].pack('U*'),
685
+ :squared_up_with_exclamation_mark => [127385].pack('U*'),
686
+ :squared_cool => [127378].pack('U*'),
687
+ :squared_free => [127379].pack('U*'),
688
+ :squared_ng => [127382].pack('U*'),
689
+ :antenna_with_bars => [128246].pack('U*'),
690
+ :cinema => [127910].pack('U*'),
691
+ :squared_katakana_koko => [127489].pack('U*'),
692
+ :squared_cjk_unified_ideograph_6307 => [127535].pack('U*'),
693
+ :squared_cjk_unified_ideograph_7a7a => [127539].pack('U*'),
694
+ :squared_cjk_unified_ideograph_6e80 => [127541].pack('U*'),
695
+ :squared_cjk_unified_ideograph_5408 => [127540].pack('U*'),
696
+ :squared_cjk_unified_ideograph_7981 => [127538].pack('U*'),
697
+ :circled_ideograph_advantage => [127568].pack('U*'),
698
+ :squared_cjk_unified_ideograph_5272 => [127545].pack('U*'),
699
+ :squared_cjk_unified_ideograph_55b6 => [127546].pack('U*'),
700
+ :squared_cjk_unified_ideograph_6709 => [127542].pack('U*'),
701
+ :squared_cjk_unified_ideograph_7121 => [127514].pack('U*'),
702
+ :restroom => [128699].pack('U*'),
703
+ :mens_symbol => [128697].pack('U*'),
704
+ :womens_symbol => [128698].pack('U*'),
705
+ :baby_symbol => [128700].pack('U*'),
706
+ :water_closet => [128702].pack('U*'),
707
+ :potable_water_symbol => [128688].pack('U*'),
708
+ :put_litter_in_its_place_symbol => [128686].pack('U*'),
709
+ :negative_squared_latin_capital_letter_p => [127359].pack('U*'),
710
+ :wheelchair_symbol => [ 9855].pack('U*'),
711
+ :no_smoking_symbol => [128685].pack('U*'),
712
+ :squared_cjk_unified_ideograph_6708 => [127543].pack('U*'),
713
+ :squared_cjk_unified_ideograph_7533 => [127544].pack('U*'),
714
+ :squared_katakana_sa => [127490].pack('U*'),
715
+ :circled_latin_capital_letter_m => [ 9410].pack('U*'),
716
+ :passport_control => [128706].pack('U*'),
717
+ :baggage_claim => [128708].pack('U*'),
718
+ :left_luggage => [128709].pack('U*'),
719
+ :customs => [128707].pack('U*'),
720
+ :circled_ideograph_accept => [127569].pack('U*'),
721
+ :circled_ideograph_secret => [ 12953].pack('U*'),
722
+ :circled_ideograph_congratulation => [ 12951].pack('U*'),
723
+ :squared_cl => [127377].pack('U*'),
724
+ :squared_sos => [127384].pack('U*'),
725
+ :squared_id => [127380].pack('U*'),
726
+ :no_entry_sign => [128683].pack('U*'),
727
+ :no_one_under_eighteen_symbol => [128286].pack('U*'),
728
+ :no_mobile_phones => [128245].pack('U*'),
729
+ :do_not_litter_symbol => [128687].pack('U*'),
730
+ :non_potable_water_symbol => [128689].pack('U*'),
731
+ :no_bicycles => [128691].pack('U*'),
732
+ :no_pedestrians => [128695].pack('U*'),
733
+ :children_crossing => [128696].pack('U*'),
734
+ :no_entry => [ 9940].pack('U*'),
735
+ :eight_spoked_asterisk => [ 10035].pack('U*'),
736
+ :sparkle => [ 10055].pack('U*'),
737
+ :negative_squared_cross_mark => [ 10062].pack('U*'),
738
+ :white_heavy_check_mark => [ 9989].pack('U*'),
739
+ :eight_pointed_black_star => [ 10036].pack('U*'),
740
+ :heart_decoration => [128159].pack('U*'),
741
+ :squared_vs => [127386].pack('U*'),
742
+ :vibration_mode => [128243].pack('U*'),
743
+ :mobile_phone_off => [128244].pack('U*'),
744
+ :negative_squared_latin_capital_letter_a => [127344].pack('U*'),
745
+ :negative_squared_latin_capital_letter_b => [127345].pack('U*'),
746
+ :negative_squared_ab => [127374].pack('U*'),
747
+ :negative_squared_latin_capital_letter_o => [127358].pack('U*'),
748
+ :diamond_shape_with_a_dot_inside => [128160].pack('U*'),
749
+ :double_curly_loop => [ 10175].pack('U*'),
750
+ :black_universal_recycling_symbol => [ 9851].pack('U*'),
751
+ :aries => [ 9800].pack('U*'),
752
+ :taurus => [ 9801].pack('U*'),
753
+ :gemini => [ 9802].pack('U*'),
754
+ :cancer => [ 9803].pack('U*'),
755
+ :leo => [ 9804].pack('U*'),
756
+ :virgo => [ 9805].pack('U*'),
757
+ :libra => [ 9806].pack('U*'),
758
+ :scorpius => [ 9807].pack('U*'),
759
+ :sagittarius => [ 9808].pack('U*'),
760
+ :capricorn => [ 9809].pack('U*'),
761
+ :aquarius => [ 9810].pack('U*'),
762
+ :pisces => [ 9811].pack('U*'),
763
+ :ophiuchus => [ 9934].pack('U*'),
764
+ :six_pointed_star_with_middle_dot => [128303].pack('U*'),
765
+ :automated_teller_machine => [127975].pack('U*'),
766
+ :chart_with_upwards_trend_and_yen_sign => [128185].pack('U*'),
767
+ :heavy_dollar_sign => [128178].pack('U*'),
768
+ :currency_exchange => [128177].pack('U*'),
769
+ :copyright_sign => [ 169].pack('U*'),
770
+ :registered_sign => [ 174].pack('U*'),
771
+ :trade_mark_sign => [ 8482].pack('U*'),
772
+ :cross_mark => [ 10060].pack('U*'),
773
+ :double_exclamation_mark => [ 8252].pack('U*'),
774
+ :exclamation_question_mark => [ 8265].pack('U*'),
775
+ :heavy_exclamation_mark_symbol => [ 10071].pack('U*'),
776
+ :black_question_mark_ornament => [ 10067].pack('U*'),
777
+ :white_exclamation_mark_ornament => [ 10069].pack('U*'),
778
+ :white_question_mark_ornament => [ 10068].pack('U*'),
779
+ :heavy_large_circle => [ 11093].pack('U*'),
780
+ :top_with_upwards_arrow_above => [128285].pack('U*'),
781
+ :end_with_leftwards_arrow_above => [128282].pack('U*'),
782
+ :back_with_leftwards_arrow_above => [128281].pack('U*'),
783
+ :on_with_exclamation_mark_with_left_right_arrow_above => [128283].pack('U*'),
784
+ :soon_with_rightwards_arrow_above => [128284].pack('U*'),
785
+ :clockwise_downwards_and_upwards_open_circle_arrows => [128259].pack('U*'),
786
+ :clock_face_twelve_oclock => [128347].pack('U*'),
787
+ :clock_face_twelve_thirty => [128359].pack('U*'),
788
+ :clock_face_one_oclock => [128336].pack('U*'),
789
+ :clock_face_one_thirty => [128348].pack('U*'),
790
+ :clock_face_two_oclock => [128337].pack('U*'),
791
+ :clock_face_two_thirty => [128349].pack('U*'),
792
+ :clock_face_three_oclock => [128338].pack('U*'),
793
+ :clock_face_three_thirty => [128350].pack('U*'),
794
+ :clock_face_four_oclock => [128339].pack('U*'),
795
+ :clock_face_four_thirty => [128351].pack('U*'),
796
+ :clock_face_five_oclock => [128340].pack('U*'),
797
+ :clock_face_five_thirty => [128352].pack('U*'),
798
+ :clock_face_six_oclock => [128341].pack('U*'),
799
+ :clock_face_seven_oclock => [128342].pack('U*'),
800
+ :clock_face_eight_oclock => [128343].pack('U*'),
801
+ :clock_face_nine_oclock => [128344].pack('U*'),
802
+ :clock_face_ten_oclock => [128345].pack('U*'),
803
+ :clock_face_eleven_oclock => [128346].pack('U*'),
804
+ :clock_face_six_thirty => [128353].pack('U*'),
805
+ :clock_face_seven_thirty => [128354].pack('U*'),
806
+ :clock_face_eight_thirty => [128355].pack('U*'),
807
+ :clock_face_nine_thirty => [128356].pack('U*'),
808
+ :clock_face_ten_thirty => [128357].pack('U*'),
809
+ :clock_face_eleven_thirty => [128358].pack('U*'),
810
+ :heavy_multiplication_x => [ 10006].pack('U*'),
811
+ :heavy_plus_sign => [ 10133].pack('U*'),
812
+ :heavy_minus_sign => [ 10134].pack('U*'),
813
+ :heavy_division_sign => [ 10135].pack('U*'),
814
+ :black_spade_suit => [ 9824].pack('U*'),
815
+ :black_heart_suit => [ 9829].pack('U*'),
816
+ :black_club_suit => [ 9827].pack('U*'),
817
+ :black_diamond_suit => [ 9830].pack('U*'),
818
+ :white_flower => [128174].pack('U*'),
819
+ :hundred_points_symbol => [128175].pack('U*'),
820
+ :heavy_check_mark => [ 10004].pack('U*'),
821
+ :ballot_box_with_check => [ 9745].pack('U*'),
822
+ :radio_button => [128280].pack('U*'),
823
+ :link_symbol => [128279].pack('U*'),
824
+ :curly_loop => [ 10160].pack('U*'),
825
+ :wavy_dash => [ 12336].pack('U*'),
826
+ :part_alternation_mark => [ 12349].pack('U*'),
827
+ :trident_emblem => [128305].pack('U*'),
828
+ :black_medium_square => [ 9724].pack('U*'),
829
+ :white_medium_square => [ 9723].pack('U*'),
830
+ :black_medium_small_square => [ 9726].pack('U*'),
831
+ :white_medium_small_square => [ 9725].pack('U*'),
832
+ :black_small_square => [ 9642].pack('U*'),
833
+ :white_small_square => [ 9643].pack('U*'),
834
+ :up_pointing_red_triangle => [128314].pack('U*'),
835
+ :black_square_button => [128306].pack('U*'),
836
+ :white_square_button => [128307].pack('U*'),
837
+ :medium_black_circle => [ 9899].pack('U*'),
838
+ :medium_white_circle => [ 9898].pack('U*'),
839
+ :large_red_circle => [128308].pack('U*'),
840
+ :large_blue_circle => [128309].pack('U*'),
841
+ :down_pointing_red_triangle => [128315].pack('U*'),
842
+ :white_large_square => [ 11036].pack('U*'),
843
+ :black_large_square => [ 11035].pack('U*'),
844
+ :large_orange_diamond => [128310].pack('U*'),
845
+ :large_blue_diamond => [128311].pack('U*'),
846
+ :small_orange_diamond => [128312].pack('U*'),
847
+ :small_blue_diamond => [128313].pack('U*'),
848
+ }
849
+ end.freeze