tanuki_emoji 0.4.0 → 0.5.0

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
  SHA256:
3
- metadata.gz: f515e18873314d0d4fc8d490645c7c60c13c842016f8efa9a7bc559fc5c00ae9
4
- data.tar.gz: ff2e0ad3a8991e2091c56051ae9a0005cb079ae2a2052915302668119b56a303
3
+ metadata.gz: fe0dc4ae27d764f4f8e197ab0736035eb6cb082f3f3c7e365a7242af4fcc895c
4
+ data.tar.gz: 63306c6bfebf28a9ec7f762132d12370094f8d6121f441e621adec62e76d6563
5
5
  SHA512:
6
- metadata.gz: f45be46c767ccb611da4908fe0f474c1ef2f2a83802dead03256a99fb4f5b5a25eefe812dd51f6602536ed9dca74e5757ee16d0498737b9247c846642e4cbc3c
7
- data.tar.gz: cccefbe3827f60f3e1b764068647e464f0a4ff1ff93d12d83225396017a33fcffd2dc6e7106dfa45708cc576d8596d4f5cf198b0026438a7360f82319a322e40
6
+ metadata.gz: 8da28b3ee32bbadba7c28581c840f2cb80e16a7f978fb8d14117204642324da8341868fc76f56ae47e51f50f179113ae007cec5c33f8965eeb8cd7608ab2abca
7
+ data.tar.gz: 1d4a177f172eeb488bd0016abfa5710a7154132c9a95882e802d6ee796334b485db611dc69233ad5b18befe02c83603902914a5169aab919c9313bb7394b969a
data/CHANGELOG.md CHANGED
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.5.0] - 2021-09-16
10
+ ### Added
11
+ - Add Category information into `Character`
12
+ - Add Character.unicode_version and index in which unicode version an emoji was introduced
13
+
9
14
  ## [0.4.0] - 2021-09-07
10
15
  ### Added
11
16
  - Index can return the `alpha_code_pattern` and `codepoints_pattern` to be used as text extraction sources
@@ -43,3 +48,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
43
48
  [0.2.2]:https://gitlab.com/gitlab-org/tanuki_emoji/-/releases/v0.2.2
44
49
  [0.3.0]:https://gitlab.com/gitlab-org/tanuki_emoji/-/releases/v0.3.0
45
50
  [0.4.0]:https://gitlab.com/gitlab-org/tanuki_emoji/-/releases/v0.4.0
51
+ [0.5.0]:https://gitlab.com/gitlab-org/tanuki_emoji/-/releases/v0.5.0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tanuki_emoji (0.4.0)
4
+ tanuki_emoji (0.5.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/Rakefile CHANGED
@@ -42,12 +42,11 @@ namespace :noto_emoji do
42
42
 
43
43
  task :generate_flags do
44
44
  chdir(File.expand_path(noto_emoji_path)) do
45
- Dir['third_party/region-flags/png/*.png'].each do |file|
46
- filename = File.basename(file)
47
- puts filename
48
-
49
- sh("make build/flags/#{filename}")
45
+ flags = Dir['third_party/region-flags/png/*.png'].map do |file|
46
+ File.join('build/flags', File.basename(file))
50
47
  end
48
+
49
+ sh('make', *flags)
51
50
  end
52
51
  end
53
52
  end
@@ -20,18 +20,23 @@ module TanukiEmoji
20
20
  # Zero Width Joiner is used in sequences to indicate they should all be evaluated and displayed as a single thing
21
21
  ZWJ_TAG = 0x200D
22
22
 
23
- attr_reader :name, :codepoints, :codepoints_alternates, :alpha_code, :aliases, :description
23
+ attr_reader :name, :codepoints, :codepoints_alternates, :alpha_code, :aliases, :description, :category
24
+
25
+ attr_accessor :unicode_version
24
26
 
25
27
  # @param [String] name
26
28
  # @param [String] codepoints
27
29
  # @param [String] alpha_code
28
- def initialize(name, codepoints:, alpha_code:, description:)
30
+ # @param [String] description
31
+ # @param [String] category
32
+ def initialize(name, codepoints:, alpha_code:, description:, category:)
29
33
  @name = self.class.format_name(name)
30
34
  @codepoints = codepoints
31
35
  @codepoints_alternates = []
32
36
  @alpha_code = self.class.format_alpha_code(alpha_code)
33
37
  @aliases = []
34
38
  @description = description
39
+ @category = category
35
40
  end
36
41
 
37
42
  # Add alternative codepoints to this character
@@ -28,7 +28,8 @@ module TanukiEmoji
28
28
  emoji = Character.new(emoji_name.to_s,
29
29
  codepoints: emoji_data[:moji],
30
30
  alpha_code: emoji_data[:shortname],
31
- description: emoji_data[:name])
31
+ description: emoji_data[:name],
32
+ category: emoji_data[:category])
32
33
 
33
34
  emoji_data[:unicode_alternates].each do |unicode_alternates|
34
35
  codepoints = unicode_hex_to_codepoint(unicode_alternates)
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'json'
4
+
5
+ module TanukiEmoji
6
+ module Db
7
+ # Emoji Unicode Version database
8
+ class UnicodeVersion
9
+ DATA_FILE = 'vendor/emoji-unicode-version/emoji-unicode-version-map.json'
10
+
11
+ def self.data_file
12
+ File.expand_path(File.join(__dir__, '../../../', DATA_FILE))
13
+ end
14
+
15
+ attr_reader :data_file
16
+
17
+ def initialize(index:, data_file: self.class.data_file)
18
+ @data_file = data_file
19
+ @index = index
20
+ end
21
+
22
+ def load!
23
+ db = File.open(data_file, 'r:UTF-8') do |file|
24
+ JSON.parse(file.read, symbolize_names: true)
25
+ end
26
+
27
+ db.each do |emoji_name, unicode_version|
28
+ emoji = @index.find_by_alpha_code(emoji_name)
29
+
30
+ next unless emoji
31
+
32
+ emoji.unicode_version = unicode_version
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -3,5 +3,6 @@
3
3
  module TanukiEmoji
4
4
  module Db
5
5
  autoload :Gemojione, 'tanuki_emoji/db/gemojione'
6
+ autoload :UnicodeVersion, 'tanuki_emoji/db/unicode_version'
6
7
  end
7
8
  end
@@ -8,6 +8,7 @@ module TanukiEmoji
8
8
  include Singleton
9
9
  include Enumerable
10
10
 
11
+ # @return [Array<TanukiEmoji::Character>] a collection of TanukiEmoji::Character
11
12
  attr_reader :all
12
13
 
13
14
  # Add a new Emoji to the index
@@ -106,6 +107,7 @@ module TanukiEmoji
106
107
 
107
108
  def load_data_files
108
109
  Db::Gemojione.new(index: self).load!
110
+ Db::UnicodeVersion.new(index: self).load!
109
111
  end
110
112
  end
111
113
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TanukiEmoji
4
- VERSION = "0.4.0"
4
+ VERSION = "0.5.0"
5
5
  end
@@ -0,0 +1,57 @@
1
+ [![npm](https://img.shields.io/npm/v/emoji-unicode-version.svg?style=flat-square)](https://www.npmjs.com/package/emoji-unicode-version)
2
+
3
+ # emoji-unicode-version
4
+
5
+ Get the unicode version for a given emoji name.
6
+
7
+ Useful for testing native unicode emoji support. Test a single emoji and assume any other emoji with that same version is supported.
8
+
9
+ ```
10
+ npm install emoji-unicode-version
11
+ ```
12
+
13
+
14
+ # Usage
15
+
16
+ ```js
17
+ const emojiNameToUnicodeVersion = require('emoji-unicode-version');
18
+
19
+ // 6.1
20
+ console.log(emojiNameToUnicodeVersion('grinning'));
21
+ // 9.0
22
+ console.log(emojiNameToUnicodeVersion('rofl'));
23
+ ```
24
+
25
+ ### Get version from unicode
26
+
27
+ ```js
28
+ const emojiNameToUnicodeVersion = require('emoji-unicode-version');
29
+ const emojione = require('emojione');
30
+
31
+ function unicodeToName(emojiUnicode) {
32
+ const emojiShortName = emojione.toShort(emojiUnicode);
33
+ const emojiName = emojiShortName.slice(1, emojiShortName.length - 1);
34
+ return emojiName;
35
+ }
36
+
37
+ // grinning, 6.1
38
+ console.log(emojiNameToUnicodeVersion(unicodeToName('😀')));
39
+ // rofl, 9.0
40
+ console.log(emojiNameToUnicodeVersion(unicodeToName('🤣')));
41
+ ```
42
+
43
+
44
+ # About
45
+
46
+ Emoji name list is pulled from [EmojiOne](https://github.com/Ranks/emojione)
47
+
48
+ We grab the emoji unicode versions from [Emojipedia](http://emojipedia.org/unicode-6.1/).
49
+
50
+ [ZWJ sequences](http://emojipedia.org/emoji-zwj-sequences/) use the unicode version for the highest individual emoji in the sequence.
51
+
52
+
53
+ Also See
54
+
55
+ - http://unicode.org/emoji/charts-beta/full-emoji-list.html
56
+ - http://www.unicode.org/Public/emoji/5.0/emoji-data.txt
57
+ - http://unicode.org/Public/emoji/5.0/emoji-zwj-sequences.txt
@@ -0,0 +1,4302 @@
1
+ {
2
+ "100": "6.0",
3
+ "1234": "6.0",
4
+ "interrobang": "3.0",
5
+ "tm": "1.1",
6
+ "information_source": "3.0",
7
+ "left_right_arrow": "1.1",
8
+ "arrow_up_down": "1.1",
9
+ "arrow_upper_left": "1.1",
10
+ "arrow_upper_right": "1.1",
11
+ "arrow_lower_right": "1.1",
12
+ "arrow_lower_left": "1.1",
13
+ "keyboard": "1.1",
14
+ "sunny": "1.1",
15
+ "cloud": "1.1",
16
+ "umbrella2": "1.1",
17
+ "snowman2": "1.1",
18
+ "comet": "1.1",
19
+ "ballot_box_with_check": "1.1",
20
+ "umbrella": "4.0",
21
+ "coffee": "4.0",
22
+ "shamrock": "4.1",
23
+ "skull_crossbones": "1.1",
24
+ "skull_and_crossbones": "1.1",
25
+ "radioactive": "1.1",
26
+ "radioactive_sign": "1.1",
27
+ "biohazard": "1.1",
28
+ "biohazard_sign": "1.1",
29
+ "orthodox_cross": "1.1",
30
+ "wheel_of_dharma": "1.1",
31
+ "frowning2": "1.1",
32
+ "white_frowning_face": "1.1",
33
+ "female_sign": "1.1",
34
+ "male_sign": "1.1",
35
+ "aries": "1.1",
36
+ "taurus": "1.1",
37
+ "sagittarius": "1.1",
38
+ "capricorn": "1.1",
39
+ "aquarius": "1.1",
40
+ "pisces": "1.1",
41
+ "spades": "1.1",
42
+ "clubs": "1.1",
43
+ "hearts": "1.1",
44
+ "diamonds": "1.1",
45
+ "hotsprings": "1.1",
46
+ "hammer_pick": "4.1",
47
+ "hammer_and_pick": "4.1",
48
+ "anchor": "4.1",
49
+ "crossed_swords": "4.1",
50
+ "medical_symbol": "4.1",
51
+ "scales": "4.1",
52
+ "alembic": "4.1",
53
+ "gear": "4.1",
54
+ "scissors": "1.1",
55
+ "white_check_mark": "6.0",
56
+ "airplane": "1.1",
57
+ "envelope": "1.1",
58
+ "black_nib": "1.1",
59
+ "heavy_check_mark": "1.1",
60
+ "heavy_multiplication_x": "1.1",
61
+ "star_of_david": "1.1",
62
+ "sparkles": "6.0",
63
+ "eight_spoked_asterisk": "1.1",
64
+ "eight_pointed_black_star": "1.1",
65
+ "snowflake": "1.1",
66
+ "sparkle": "1.1",
67
+ "question": "6.0",
68
+ "grey_question": "6.0",
69
+ "grey_exclamation": "6.0",
70
+ "exclamation": "5.2",
71
+ "heart_exclamation": "1.1",
72
+ "heavy_heart_exclamation_mark_ornament": "1.1",
73
+ "heart": "1.1",
74
+ "heavy_plus_sign": "6.0",
75
+ "heavy_minus_sign": "6.0",
76
+ "heavy_division_sign": "6.0",
77
+ "arrow_heading_up": "3.2",
78
+ "arrow_heading_down": "3.2",
79
+ "wavy_dash": "1.1",
80
+ "congratulations": "1.1",
81
+ "secret": "1.1",
82
+ "orange_heart": "10.0",
83
+ "yellow_heart": "6.0",
84
+ "green_heart": "6.0",
85
+ "blue_heart": "6.0",
86
+ "purple_heart": "6.0",
87
+ "black_heart": "9.0",
88
+ "broken_heart": "6.0",
89
+ "two_hearts": "6.0",
90
+ "revolving_hearts": "6.0",
91
+ "heartbeat": "6.0",
92
+ "heartpulse": "6.0",
93
+ "sparkling_heart": "6.0",
94
+ "cupid": "6.0",
95
+ "gift_heart": "6.0",
96
+ "heart_decoration": "6.0",
97
+ "peace": "1.1",
98
+ "peace_symbol": "1.1",
99
+ "cross": "1.1",
100
+ "latin_cross": "1.1",
101
+ "star_and_crescent": "1.1",
102
+ "om_symbol": "7.0",
103
+ "six_pointed_star": "6.0",
104
+ "menorah": "8.0",
105
+ "yin_yang": "1.1",
106
+ "place_of_worship": "8.0",
107
+ "worship_symbol": "8.0",
108
+ "ophiuchus": "6.0",
109
+ "gemini": "1.1",
110
+ "cancer": "1.1",
111
+ "leo": "1.1",
112
+ "virgo": "1.1",
113
+ "libra": "1.1",
114
+ "scorpius": "1.1",
115
+ "id": "6.0",
116
+ "atom": "4.1",
117
+ "atom_symbol": "4.1",
118
+ "infinity": "11.0",
119
+ "accept": "6.0",
120
+ "mobile_phone_off": "6.0",
121
+ "vibration_mode": "6.0",
122
+ "u6709": "6.0",
123
+ "u7121": "5.2",
124
+ "u7533": "6.0",
125
+ "u55b6": "6.0",
126
+ "u6708": "6.0",
127
+ "vs": "6.0",
128
+ "white_flower": "6.0",
129
+ "ideograph_advantage": "6.0",
130
+ "u5408": "6.0",
131
+ "u6e80": "6.0",
132
+ "u5272": "6.0",
133
+ "u7981": "6.0",
134
+ "a": "6.0",
135
+ "b": "6.0",
136
+ "ab": "6.0",
137
+ "cl": "6.0",
138
+ "o2": "6.0",
139
+ "sos": "6.0",
140
+ "x": "6.0",
141
+ "o": "5.2",
142
+ "octagonal_sign": "9.0",
143
+ "stop_sign": "9.0",
144
+ "no_entry": "5.2",
145
+ "name_badge": "6.0",
146
+ "no_entry_sign": "6.0",
147
+ "anger": "6.0",
148
+ "no_pedestrians": "6.0",
149
+ "do_not_litter": "6.0",
150
+ "no_bicycles": "6.0",
151
+ "non-potable_water": "6.0",
152
+ "underage": "6.0",
153
+ "no_mobile_phones": "6.0",
154
+ "no_smoking": "6.0",
155
+ "bangbang": "1.1",
156
+ "low_brightness": "6.0",
157
+ "high_brightness": "6.0",
158
+ "part_alternation_mark": "3.2",
159
+ "warning": "4.0",
160
+ "children_crossing": "6.0",
161
+ "trident": "6.0",
162
+ "fleur-de-lis": "4.1",
163
+ "beginner": "6.0",
164
+ "recycle": "3.2",
165
+ "u6307": "5.2",
166
+ "chart": "6.0",
167
+ "negative_squared_cross_mark": "6.0",
168
+ "globe_with_meridians": "6.0",
169
+ "diamond_shape_with_a_dot_inside": "6.0",
170
+ "m": "1.1",
171
+ "cyclone": "6.0",
172
+ "zzz": "6.0",
173
+ "atm": "6.0",
174
+ "wc": "6.0",
175
+ "wheelchair": "4.1",
176
+ "parking": "5.2",
177
+ "u7a7a": "6.0",
178
+ "sa": "6.0",
179
+ "passport_control": "6.0",
180
+ "customs": "6.0",
181
+ "baggage_claim": "6.0",
182
+ "left_luggage": "6.0",
183
+ "mens": "6.0",
184
+ "womens": "6.0",
185
+ "baby_symbol": "6.0",
186
+ "restroom": "6.0",
187
+ "put_litter_in_its_place": "6.0",
188
+ "cinema": "6.0",
189
+ "signal_strength": "6.0",
190
+ "koko": "6.0",
191
+ "symbols": "6.0",
192
+ "abc": "6.0",
193
+ "abcd": "6.0",
194
+ "capital_abcd": "6.0",
195
+ "ng": "6.0",
196
+ "ok": "6.0",
197
+ "up": "6.0",
198
+ "cool": "6.0",
199
+ "new": "6.0",
200
+ "free": "6.0",
201
+ "zero": "3.0",
202
+ "one": "3.0",
203
+ "two": "3.0",
204
+ "three": "3.0",
205
+ "four": "3.0",
206
+ "five": "3.0",
207
+ "six": "3.0",
208
+ "seven": "3.0",
209
+ "eight": "3.0",
210
+ "nine": "3.0",
211
+ "keycap_ten": "6.0",
212
+ "hash": "3.0",
213
+ "asterisk": "3.0",
214
+ "keycap_asterisk": "3.0",
215
+ "eject": "4.0",
216
+ "eject_symbol": "4.0",
217
+ "arrow_forward": "1.1",
218
+ "pause_button": "7.0",
219
+ "double_vertical_bar": "7.0",
220
+ "play_pause": "6.0",
221
+ "stop_button": "7.0",
222
+ "record_button": "7.0",
223
+ "track_next": "6.0",
224
+ "next_track": "6.0",
225
+ "track_previous": "6.0",
226
+ "previous_track": "6.0",
227
+ "fast_forward": "6.0",
228
+ "rewind": "6.0",
229
+ "arrow_double_up": "6.0",
230
+ "arrow_double_down": "6.0",
231
+ "arrow_backward": "1.1",
232
+ "arrow_up_small": "6.0",
233
+ "arrow_down_small": "6.0",
234
+ "arrow_right": "1.1",
235
+ "arrow_left": "4.0",
236
+ "arrow_up": "4.0",
237
+ "arrow_down": "4.0",
238
+ "arrow_right_hook": "1.1",
239
+ "leftwards_arrow_with_hook": "1.1",
240
+ "twisted_rightwards_arrows": "6.0",
241
+ "repeat": "6.0",
242
+ "repeat_one": "6.0",
243
+ "arrows_counterclockwise": "6.0",
244
+ "arrows_clockwise": "6.0",
245
+ "musical_note": "6.0",
246
+ "notes": "6.0",
247
+ "heavy_dollar_sign": "6.0",
248
+ "currency_exchange": "6.0",
249
+ "copyright": "1.1",
250
+ "registered": "1.1",
251
+ "curly_loop": "6.0",
252
+ "loop": "6.0",
253
+ "end": "6.0",
254
+ "back": "6.0",
255
+ "on": "6.0",
256
+ "top": "6.0",
257
+ "soon": "6.0",
258
+ "radio_button": "6.0",
259
+ "white_circle": "4.1",
260
+ "black_circle": "4.1",
261
+ "red_circle": "6.0",
262
+ "blue_circle": "6.0",
263
+ "small_red_triangle": "6.0",
264
+ "small_red_triangle_down": "6.0",
265
+ "small_orange_diamond": "6.0",
266
+ "small_blue_diamond": "6.0",
267
+ "large_orange_diamond": "6.0",
268
+ "large_blue_diamond": "6.0",
269
+ "white_square_button": "6.0",
270
+ "black_square_button": "6.0",
271
+ "black_small_square": "1.1",
272
+ "white_small_square": "1.1",
273
+ "black_medium_small_square": "3.2",
274
+ "white_medium_small_square": "3.2",
275
+ "black_medium_square": "3.2",
276
+ "white_medium_square": "3.2",
277
+ "black_large_square": "5.1",
278
+ "white_large_square": "5.1",
279
+ "speaker": "6.0",
280
+ "mute": "6.0",
281
+ "sound": "6.0",
282
+ "loud_sound": "6.0",
283
+ "bell": "6.0",
284
+ "no_bell": "6.0",
285
+ "mega": "6.0",
286
+ "loudspeaker": "6.0",
287
+ "speech_left": "7.0",
288
+ "left_speech_bubble": "7.0",
289
+ "eye_in_speech_bubble": "7.0",
290
+ "speech_balloon": "6.0",
291
+ "thought_balloon": "6.0",
292
+ "anger_right": "7.0",
293
+ "right_anger_bubble": "7.0",
294
+ "black_joker": "6.0",
295
+ "flower_playing_cards": "6.0",
296
+ "mahjong": "5.1",
297
+ "clock1": "6.0",
298
+ "clock2": "6.0",
299
+ "clock3": "6.0",
300
+ "clock4": "6.0",
301
+ "clock5": "6.0",
302
+ "clock6": "6.0",
303
+ "clock7": "6.0",
304
+ "clock8": "6.0",
305
+ "clock9": "6.0",
306
+ "clock10": "6.0",
307
+ "clock11": "6.0",
308
+ "clock12": "6.0",
309
+ "clock130": "6.0",
310
+ "clock230": "6.0",
311
+ "clock330": "6.0",
312
+ "clock430": "6.0",
313
+ "clock530": "6.0",
314
+ "clock630": "6.0",
315
+ "clock730": "6.0",
316
+ "clock830": "6.0",
317
+ "clock930": "6.0",
318
+ "clock1030": "6.0",
319
+ "clock1130": "6.0",
320
+ "clock1230": "6.0",
321
+ "digit_zero": "1.1",
322
+ "digit_one": "1.1",
323
+ "digit_two": "1.1",
324
+ "digit_three": "1.1",
325
+ "digit_four": "1.1",
326
+ "digit_five": "1.1",
327
+ "digit_six": "1.1",
328
+ "digit_seven": "1.1",
329
+ "digit_eight": "1.1",
330
+ "digit_nine": "1.1",
331
+ "pound_symbol": "1.1",
332
+ "asterisk_symbol": "1.1",
333
+ "soccer": "5.2",
334
+ "basketball": "6.0",
335
+ "football": "6.0",
336
+ "baseball": "5.2",
337
+ "softball": "11.0",
338
+ "tennis": "6.0",
339
+ "volleyball": "8.0",
340
+ "rugby_football": "6.0",
341
+ "8ball": "6.0",
342
+ "ping_pong": "8.0",
343
+ "table_tennis": "8.0",
344
+ "badminton": "8.0",
345
+ "goal": "9.0",
346
+ "goal_net": "9.0",
347
+ "hockey": "8.0",
348
+ "field_hockey": "8.0",
349
+ "cricket_game": "8.0",
350
+ "cricket_bat_ball": "8.0",
351
+ "lacrosse": "11.0",
352
+ "golf": "5.2",
353
+ "flying_disc": "11.0",
354
+ "bow_and_arrow": "8.0",
355
+ "archery": "8.0",
356
+ "fishing_pole_and_fish": "6.0",
357
+ "boxing_glove": "9.0",
358
+ "boxing_gloves": "9.0",
359
+ "martial_arts_uniform": "9.0",
360
+ "karate_uniform": "9.0",
361
+ "running_shirt_with_sash": "6.0",
362
+ "skateboard": "11.0",
363
+ "ice_skate": "5.2",
364
+ "curling_stone": "10.0",
365
+ "sled": "10.0",
366
+ "ski": "6.0",
367
+ "skier": "5.2",
368
+ "snowboarder": "6.0",
369
+ "snowboarder_tone1": "8.0",
370
+ "snowboarder_light_skin_tone": "8.0",
371
+ "snowboarder_tone2": "8.0",
372
+ "snowboarder_medium_light_skin_tone": "8.0",
373
+ "snowboarder_tone3": "8.0",
374
+ "snowboarder_medium_skin_tone": "8.0",
375
+ "snowboarder_tone4": "8.0",
376
+ "snowboarder_medium_dark_skin_tone": "8.0",
377
+ "snowboarder_tone5": "8.0",
378
+ "snowboarder_dark_skin_tone": "8.0",
379
+ "person_lifting_weights": "7.0",
380
+ "lifter": "7.0",
381
+ "weight_lifter": "7.0",
382
+ "person_lifting_weights_tone1": "8.0",
383
+ "lifter_tone1": "8.0",
384
+ "weight_lifter_tone1": "8.0",
385
+ "person_lifting_weights_tone2": "8.0",
386
+ "lifter_tone2": "8.0",
387
+ "weight_lifter_tone2": "8.0",
388
+ "person_lifting_weights_tone3": "8.0",
389
+ "lifter_tone3": "8.0",
390
+ "weight_lifter_tone3": "8.0",
391
+ "person_lifting_weights_tone4": "8.0",
392
+ "lifter_tone4": "8.0",
393
+ "weight_lifter_tone4": "8.0",
394
+ "person_lifting_weights_tone5": "8.0",
395
+ "lifter_tone5": "8.0",
396
+ "weight_lifter_tone5": "8.0",
397
+ "woman_lifting_weights": "7.0",
398
+ "woman_lifting_weights_tone1": "8.0",
399
+ "woman_lifting_weights_light_skin_tone": "8.0",
400
+ "woman_lifting_weights_tone2": "8.0",
401
+ "woman_lifting_weights_medium_light_skin_tone": "8.0",
402
+ "woman_lifting_weights_tone3": "8.0",
403
+ "woman_lifting_weights_medium_skin_tone": "8.0",
404
+ "woman_lifting_weights_tone4": "8.0",
405
+ "woman_lifting_weights_medium_dark_skin_tone": "8.0",
406
+ "woman_lifting_weights_tone5": "8.0",
407
+ "woman_lifting_weights_dark_skin_tone": "8.0",
408
+ "man_lifting_weights": "7.0",
409
+ "man_lifting_weights_tone1": "8.0",
410
+ "man_lifting_weights_light_skin_tone": "8.0",
411
+ "man_lifting_weights_tone2": "8.0",
412
+ "man_lifting_weights_medium_light_skin_tone": "8.0",
413
+ "man_lifting_weights_tone3": "8.0",
414
+ "man_lifting_weights_medium_skin_tone": "8.0",
415
+ "man_lifting_weights_tone4": "8.0",
416
+ "man_lifting_weights_medium_dark_skin_tone": "8.0",
417
+ "man_lifting_weights_tone5": "8.0",
418
+ "man_lifting_weights_dark_skin_tone": "8.0",
419
+ "people_wrestling": "9.0",
420
+ "wrestlers": "9.0",
421
+ "wrestling": "9.0",
422
+ "women_wrestling": "9.0",
423
+ "men_wrestling": "9.0",
424
+ "person_doing_cartwheel": "9.0",
425
+ "cartwheel": "9.0",
426
+ "person_doing_cartwheel_tone1": "9.0",
427
+ "cartwheel_tone1": "9.0",
428
+ "person_doing_cartwheel_tone2": "9.0",
429
+ "cartwheel_tone2": "9.0",
430
+ "person_doing_cartwheel_tone3": "9.0",
431
+ "cartwheel_tone3": "9.0",
432
+ "person_doing_cartwheel_tone4": "9.0",
433
+ "cartwheel_tone4": "9.0",
434
+ "person_doing_cartwheel_tone5": "9.0",
435
+ "cartwheel_tone5": "9.0",
436
+ "woman_cartwheeling": "9.0",
437
+ "woman_cartwheeling_tone1": "9.0",
438
+ "woman_cartwheeling_light_skin_tone": "9.0",
439
+ "woman_cartwheeling_tone2": "9.0",
440
+ "woman_cartwheeling_medium_light_skin_tone": "9.0",
441
+ "woman_cartwheeling_tone3": "9.0",
442
+ "woman_cartwheeling_medium_skin_tone": "9.0",
443
+ "woman_cartwheeling_tone4": "9.0",
444
+ "woman_cartwheeling_medium_dark_skin_tone": "9.0",
445
+ "woman_cartwheeling_tone5": "9.0",
446
+ "woman_cartwheeling_dark_skin_tone": "9.0",
447
+ "man_cartwheeling": "9.0",
448
+ "man_cartwheeling_tone1": "9.0",
449
+ "man_cartwheeling_light_skin_tone": "9.0",
450
+ "man_cartwheeling_tone2": "9.0",
451
+ "man_cartwheeling_medium_light_skin_tone": "9.0",
452
+ "man_cartwheeling_tone3": "9.0",
453
+ "man_cartwheeling_medium_skin_tone": "9.0",
454
+ "man_cartwheeling_tone4": "9.0",
455
+ "man_cartwheeling_medium_dark_skin_tone": "9.0",
456
+ "man_cartwheeling_tone5": "9.0",
457
+ "man_cartwheeling_dark_skin_tone": "9.0",
458
+ "person_bouncing_ball": "5.2",
459
+ "basketball_player": "5.2",
460
+ "person_with_ball": "5.2",
461
+ "person_bouncing_ball_tone1": "8.0",
462
+ "basketball_player_tone1": "8.0",
463
+ "person_with_ball_tone1": "8.0",
464
+ "person_bouncing_ball_tone2": "8.0",
465
+ "basketball_player_tone2": "8.0",
466
+ "person_with_ball_tone2": "8.0",
467
+ "person_bouncing_ball_tone3": "8.0",
468
+ "basketball_player_tone3": "8.0",
469
+ "person_with_ball_tone3": "8.0",
470
+ "person_bouncing_ball_tone4": "8.0",
471
+ "basketball_player_tone4": "8.0",
472
+ "person_with_ball_tone4": "8.0",
473
+ "person_bouncing_ball_tone5": "8.0",
474
+ "basketball_player_tone5": "8.0",
475
+ "person_with_ball_tone5": "8.0",
476
+ "woman_bouncing_ball": "5.2",
477
+ "woman_bouncing_ball_tone1": "8.0",
478
+ "woman_bouncing_ball_light_skin_tone": "8.0",
479
+ "woman_bouncing_ball_tone2": "8.0",
480
+ "woman_bouncing_ball_medium_light_skin_tone": "8.0",
481
+ "woman_bouncing_ball_tone3": "8.0",
482
+ "woman_bouncing_ball_medium_skin_tone": "8.0",
483
+ "woman_bouncing_ball_tone4": "8.0",
484
+ "woman_bouncing_ball_medium_dark_skin_tone": "8.0",
485
+ "woman_bouncing_ball_tone5": "8.0",
486
+ "woman_bouncing_ball_dark_skin_tone": "8.0",
487
+ "man_bouncing_ball": "5.2",
488
+ "man_bouncing_ball_tone1": "8.0",
489
+ "man_bouncing_ball_light_skin_tone": "8.0",
490
+ "man_bouncing_ball_tone2": "8.0",
491
+ "man_bouncing_ball_medium_light_skin_tone": "8.0",
492
+ "man_bouncing_ball_tone3": "8.0",
493
+ "man_bouncing_ball_medium_skin_tone": "8.0",
494
+ "man_bouncing_ball_tone4": "8.0",
495
+ "man_bouncing_ball_medium_dark_skin_tone": "8.0",
496
+ "man_bouncing_ball_tone5": "8.0",
497
+ "man_bouncing_ball_dark_skin_tone": "8.0",
498
+ "person_fencing": "9.0",
499
+ "fencer": "9.0",
500
+ "fencing": "9.0",
501
+ "person_playing_handball": "9.0",
502
+ "handball": "9.0",
503
+ "person_playing_handball_tone1": "9.0",
504
+ "handball_tone1": "9.0",
505
+ "person_playing_handball_tone2": "9.0",
506
+ "handball_tone2": "9.0",
507
+ "person_playing_handball_tone3": "9.0",
508
+ "handball_tone3": "9.0",
509
+ "person_playing_handball_tone4": "9.0",
510
+ "handball_tone4": "9.0",
511
+ "person_playing_handball_tone5": "9.0",
512
+ "handball_tone5": "9.0",
513
+ "woman_playing_handball": "9.0",
514
+ "woman_playing_handball_tone1": "9.0",
515
+ "woman_playing_handball_light_skin_tone": "9.0",
516
+ "woman_playing_handball_tone2": "9.0",
517
+ "woman_playing_handball_medium_light_skin_tone": "9.0",
518
+ "woman_playing_handball_tone3": "9.0",
519
+ "woman_playing_handball_medium_skin_tone": "9.0",
520
+ "woman_playing_handball_tone4": "9.0",
521
+ "woman_playing_handball_medium_dark_skin_tone": "9.0",
522
+ "woman_playing_handball_tone5": "9.0",
523
+ "woman_playing_handball_dark_skin_tone": "9.0",
524
+ "man_playing_handball": "9.0",
525
+ "man_playing_handball_tone1": "9.0",
526
+ "man_playing_handball_light_skin_tone": "9.0",
527
+ "man_playing_handball_tone2": "9.0",
528
+ "man_playing_handball_medium_light_skin_tone": "9.0",
529
+ "man_playing_handball_tone3": "9.0",
530
+ "man_playing_handball_medium_skin_tone": "9.0",
531
+ "man_playing_handball_tone4": "9.0",
532
+ "man_playing_handball_medium_dark_skin_tone": "9.0",
533
+ "man_playing_handball_tone5": "9.0",
534
+ "man_playing_handball_dark_skin_tone": "9.0",
535
+ "person_golfing": "7.0",
536
+ "golfer": "7.0",
537
+ "person_golfing_tone1": "8.0",
538
+ "person_golfing_light_skin_tone": "8.0",
539
+ "person_golfing_tone2": "8.0",
540
+ "person_golfing_medium_light_skin_tone": "8.0",
541
+ "person_golfing_tone3": "8.0",
542
+ "person_golfing_medium_skin_tone": "8.0",
543
+ "person_golfing_tone4": "8.0",
544
+ "person_golfing_medium_dark_skin_tone": "8.0",
545
+ "person_golfing_tone5": "8.0",
546
+ "person_golfing_dark_skin_tone": "8.0",
547
+ "woman_golfing": "7.0",
548
+ "woman_golfing_tone1": "8.0",
549
+ "woman_golfing_light_skin_tone": "8.0",
550
+ "woman_golfing_tone2": "8.0",
551
+ "woman_golfing_medium_light_skin_tone": "8.0",
552
+ "woman_golfing_tone3": "8.0",
553
+ "woman_golfing_medium_skin_tone": "8.0",
554
+ "woman_golfing_tone4": "8.0",
555
+ "woman_golfing_medium_dark_skin_tone": "8.0",
556
+ "woman_golfing_tone5": "8.0",
557
+ "woman_golfing_dark_skin_tone": "8.0",
558
+ "man_golfing": "7.0",
559
+ "man_golfing_tone1": "8.0",
560
+ "man_golfing_light_skin_tone": "8.0",
561
+ "man_golfing_tone2": "8.0",
562
+ "man_golfing_medium_light_skin_tone": "8.0",
563
+ "man_golfing_tone3": "8.0",
564
+ "man_golfing_medium_skin_tone": "8.0",
565
+ "man_golfing_tone4": "8.0",
566
+ "man_golfing_medium_dark_skin_tone": "8.0",
567
+ "man_golfing_tone5": "8.0",
568
+ "man_golfing_dark_skin_tone": "8.0",
569
+ "horse_racing": "6.0",
570
+ "horse_racing_tone1": "8.0",
571
+ "horse_racing_tone2": "8.0",
572
+ "horse_racing_tone3": "8.0",
573
+ "horse_racing_tone4": "8.0",
574
+ "horse_racing_tone5": "8.0",
575
+ "person_in_lotus_position": "10.0",
576
+ "person_in_lotus_position_tone1": "10.0",
577
+ "person_in_lotus_position_light_skin_tone": "10.0",
578
+ "person_in_lotus_position_tone2": "10.0",
579
+ "person_in_lotus_position_medium_light_skin_tone": "10.0",
580
+ "person_in_lotus_position_tone3": "10.0",
581
+ "person_in_lotus_position_medium_skin_tone": "10.0",
582
+ "person_in_lotus_position_tone4": "10.0",
583
+ "person_in_lotus_position_medium_dark_skin_tone": "10.0",
584
+ "person_in_lotus_position_tone5": "10.0",
585
+ "person_in_lotus_position_dark_skin_tone": "10.0",
586
+ "woman_in_lotus_position": "10.0",
587
+ "woman_in_lotus_position_tone1": "10.0",
588
+ "woman_in_lotus_position_light_skin_tone": "10.0",
589
+ "woman_in_lotus_position_tone2": "10.0",
590
+ "woman_in_lotus_position_medium_light_skin_tone": "10.0",
591
+ "woman_in_lotus_position_tone3": "10.0",
592
+ "woman_in_lotus_position_medium_skin_tone": "10.0",
593
+ "woman_in_lotus_position_tone4": "10.0",
594
+ "woman_in_lotus_position_medium_dark_skin_tone": "10.0",
595
+ "woman_in_lotus_position_tone5": "10.0",
596
+ "woman_in_lotus_position_dark_skin_tone": "10.0",
597
+ "man_in_lotus_position": "10.0",
598
+ "man_in_lotus_position_tone1": "10.0",
599
+ "man_in_lotus_position_light_skin_tone": "10.0",
600
+ "man_in_lotus_position_tone2": "10.0",
601
+ "man_in_lotus_position_medium_light_skin_tone": "10.0",
602
+ "man_in_lotus_position_tone3": "10.0",
603
+ "man_in_lotus_position_medium_skin_tone": "10.0",
604
+ "man_in_lotus_position_tone4": "10.0",
605
+ "man_in_lotus_position_medium_dark_skin_tone": "10.0",
606
+ "man_in_lotus_position_tone5": "10.0",
607
+ "man_in_lotus_position_dark_skin_tone": "10.0",
608
+ "person_surfing": "6.0",
609
+ "surfer": "6.0",
610
+ "person_surfing_tone1": "8.0",
611
+ "surfer_tone1": "8.0",
612
+ "person_surfing_tone2": "8.0",
613
+ "surfer_tone2": "8.0",
614
+ "person_surfing_tone3": "8.0",
615
+ "surfer_tone3": "8.0",
616
+ "person_surfing_tone4": "8.0",
617
+ "surfer_tone4": "8.0",
618
+ "person_surfing_tone5": "8.0",
619
+ "surfer_tone5": "8.0",
620
+ "woman_surfing": "6.0",
621
+ "woman_surfing_tone1": "8.0",
622
+ "woman_surfing_light_skin_tone": "8.0",
623
+ "woman_surfing_tone2": "8.0",
624
+ "woman_surfing_medium_light_skin_tone": "8.0",
625
+ "woman_surfing_tone3": "8.0",
626
+ "woman_surfing_medium_skin_tone": "8.0",
627
+ "woman_surfing_tone4": "8.0",
628
+ "woman_surfing_medium_dark_skin_tone": "8.0",
629
+ "woman_surfing_tone5": "8.0",
630
+ "woman_surfing_dark_skin_tone": "8.0",
631
+ "man_surfing": "6.0",
632
+ "man_surfing_tone1": "8.0",
633
+ "man_surfing_light_skin_tone": "8.0",
634
+ "man_surfing_tone2": "8.0",
635
+ "man_surfing_medium_light_skin_tone": "8.0",
636
+ "man_surfing_tone3": "8.0",
637
+ "man_surfing_medium_skin_tone": "8.0",
638
+ "man_surfing_tone4": "8.0",
639
+ "man_surfing_medium_dark_skin_tone": "8.0",
640
+ "man_surfing_tone5": "8.0",
641
+ "man_surfing_dark_skin_tone": "8.0",
642
+ "person_swimming": "6.0",
643
+ "swimmer": "6.0",
644
+ "person_swimming_tone1": "8.0",
645
+ "swimmer_tone1": "8.0",
646
+ "person_swimming_tone2": "8.0",
647
+ "swimmer_tone2": "8.0",
648
+ "person_swimming_tone3": "8.0",
649
+ "swimmer_tone3": "8.0",
650
+ "person_swimming_tone4": "8.0",
651
+ "swimmer_tone4": "8.0",
652
+ "person_swimming_tone5": "8.0",
653
+ "swimmer_tone5": "8.0",
654
+ "woman_swimming": "6.0",
655
+ "woman_swimming_tone1": "8.0",
656
+ "woman_swimming_light_skin_tone": "8.0",
657
+ "woman_swimming_tone2": "8.0",
658
+ "woman_swimming_medium_light_skin_tone": "8.0",
659
+ "woman_swimming_tone3": "8.0",
660
+ "woman_swimming_medium_skin_tone": "8.0",
661
+ "woman_swimming_tone4": "8.0",
662
+ "woman_swimming_medium_dark_skin_tone": "8.0",
663
+ "woman_swimming_tone5": "8.0",
664
+ "woman_swimming_dark_skin_tone": "8.0",
665
+ "man_swimming": "6.0",
666
+ "man_swimming_tone1": "8.0",
667
+ "man_swimming_light_skin_tone": "8.0",
668
+ "man_swimming_tone2": "8.0",
669
+ "man_swimming_medium_light_skin_tone": "8.0",
670
+ "man_swimming_tone3": "8.0",
671
+ "man_swimming_medium_skin_tone": "8.0",
672
+ "man_swimming_tone4": "8.0",
673
+ "man_swimming_medium_dark_skin_tone": "8.0",
674
+ "man_swimming_tone5": "8.0",
675
+ "man_swimming_dark_skin_tone": "8.0",
676
+ "person_playing_water_polo": "9.0",
677
+ "water_polo": "9.0",
678
+ "person_playing_water_polo_tone1": "9.0",
679
+ "water_polo_tone1": "9.0",
680
+ "person_playing_water_polo_tone2": "9.0",
681
+ "water_polo_tone2": "9.0",
682
+ "person_playing_water_polo_tone3": "9.0",
683
+ "water_polo_tone3": "9.0",
684
+ "person_playing_water_polo_tone4": "9.0",
685
+ "water_polo_tone4": "9.0",
686
+ "person_playing_water_polo_tone5": "9.0",
687
+ "water_polo_tone5": "9.0",
688
+ "woman_playing_water_polo": "9.0",
689
+ "woman_playing_water_polo_tone1": "9.0",
690
+ "woman_playing_water_polo_light_skin_tone": "9.0",
691
+ "woman_playing_water_polo_tone2": "9.0",
692
+ "woman_playing_water_polo_medium_light_skin_tone": "9.0",
693
+ "woman_playing_water_polo_tone3": "9.0",
694
+ "woman_playing_water_polo_medium_skin_tone": "9.0",
695
+ "woman_playing_water_polo_tone4": "9.0",
696
+ "woman_playing_water_polo_medium_dark_skin_tone": "9.0",
697
+ "woman_playing_water_polo_tone5": "9.0",
698
+ "woman_playing_water_polo_dark_skin_tone": "9.0",
699
+ "man_playing_water_polo": "9.0",
700
+ "man_playing_water_polo_tone1": "9.0",
701
+ "man_playing_water_polo_light_skin_tone": "9.0",
702
+ "man_playing_water_polo_tone2": "9.0",
703
+ "man_playing_water_polo_medium_light_skin_tone": "9.0",
704
+ "man_playing_water_polo_tone3": "9.0",
705
+ "man_playing_water_polo_medium_skin_tone": "9.0",
706
+ "man_playing_water_polo_tone4": "9.0",
707
+ "man_playing_water_polo_medium_dark_skin_tone": "9.0",
708
+ "man_playing_water_polo_tone5": "9.0",
709
+ "man_playing_water_polo_dark_skin_tone": "9.0",
710
+ "person_rowing_boat": "6.0",
711
+ "rowboat": "6.0",
712
+ "person_rowing_boat_tone1": "8.0",
713
+ "rowboat_tone1": "8.0",
714
+ "person_rowing_boat_tone2": "8.0",
715
+ "rowboat_tone2": "8.0",
716
+ "person_rowing_boat_tone3": "8.0",
717
+ "rowboat_tone3": "8.0",
718
+ "person_rowing_boat_tone4": "8.0",
719
+ "rowboat_tone4": "8.0",
720
+ "person_rowing_boat_tone5": "8.0",
721
+ "rowboat_tone5": "8.0",
722
+ "woman_rowing_boat": "6.0",
723
+ "woman_rowing_boat_tone1": "8.0",
724
+ "woman_rowing_boat_light_skin_tone": "8.0",
725
+ "woman_rowing_boat_tone2": "8.0",
726
+ "woman_rowing_boat_medium_light_skin_tone": "8.0",
727
+ "woman_rowing_boat_tone3": "8.0",
728
+ "woman_rowing_boat_medium_skin_tone": "8.0",
729
+ "woman_rowing_boat_tone4": "8.0",
730
+ "woman_rowing_boat_medium_dark_skin_tone": "8.0",
731
+ "woman_rowing_boat_tone5": "8.0",
732
+ "woman_rowing_boat_dark_skin_tone": "8.0",
733
+ "man_rowing_boat": "6.0",
734
+ "man_rowing_boat_tone1": "8.0",
735
+ "man_rowing_boat_light_skin_tone": "8.0",
736
+ "man_rowing_boat_tone2": "8.0",
737
+ "man_rowing_boat_medium_light_skin_tone": "8.0",
738
+ "man_rowing_boat_tone3": "8.0",
739
+ "man_rowing_boat_medium_skin_tone": "8.0",
740
+ "man_rowing_boat_tone4": "8.0",
741
+ "man_rowing_boat_medium_dark_skin_tone": "8.0",
742
+ "man_rowing_boat_tone5": "8.0",
743
+ "man_rowing_boat_dark_skin_tone": "8.0",
744
+ "person_climbing": "10.0",
745
+ "person_climbing_tone1": "10.0",
746
+ "person_climbing_light_skin_tone": "10.0",
747
+ "person_climbing_tone2": "10.0",
748
+ "person_climbing_medium_light_skin_tone": "10.0",
749
+ "person_climbing_tone3": "10.0",
750
+ "person_climbing_medium_skin_tone": "10.0",
751
+ "person_climbing_tone4": "10.0",
752
+ "person_climbing_medium_dark_skin_tone": "10.0",
753
+ "person_climbing_tone5": "10.0",
754
+ "person_climbing_dark_skin_tone": "10.0",
755
+ "woman_climbing": "10.0",
756
+ "woman_climbing_tone1": "10.0",
757
+ "woman_climbing_light_skin_tone": "10.0",
758
+ "woman_climbing_tone2": "10.0",
759
+ "woman_climbing_medium_light_skin_tone": "10.0",
760
+ "woman_climbing_tone3": "10.0",
761
+ "woman_climbing_medium_skin_tone": "10.0",
762
+ "woman_climbing_tone4": "10.0",
763
+ "woman_climbing_medium_dark_skin_tone": "10.0",
764
+ "woman_climbing_tone5": "10.0",
765
+ "woman_climbing_dark_skin_tone": "10.0",
766
+ "man_climbing": "10.0",
767
+ "man_climbing_tone1": "10.0",
768
+ "man_climbing_light_skin_tone": "10.0",
769
+ "man_climbing_tone2": "10.0",
770
+ "man_climbing_medium_light_skin_tone": "10.0",
771
+ "man_climbing_tone3": "10.0",
772
+ "man_climbing_medium_skin_tone": "10.0",
773
+ "man_climbing_tone4": "10.0",
774
+ "man_climbing_medium_dark_skin_tone": "10.0",
775
+ "man_climbing_tone5": "10.0",
776
+ "man_climbing_dark_skin_tone": "10.0",
777
+ "person_mountain_biking": "6.0",
778
+ "mountain_bicyclist": "6.0",
779
+ "person_mountain_biking_tone1": "8.0",
780
+ "mountain_bicyclist_tone1": "8.0",
781
+ "person_mountain_biking_tone2": "8.0",
782
+ "mountain_bicyclist_tone2": "8.0",
783
+ "person_mountain_biking_tone3": "8.0",
784
+ "mountain_bicyclist_tone3": "8.0",
785
+ "person_mountain_biking_tone4": "8.0",
786
+ "mountain_bicyclist_tone4": "8.0",
787
+ "person_mountain_biking_tone5": "8.0",
788
+ "mountain_bicyclist_tone5": "8.0",
789
+ "woman_mountain_biking": "6.0",
790
+ "woman_mountain_biking_tone1": "8.0",
791
+ "woman_mountain_biking_light_skin_tone": "8.0",
792
+ "woman_mountain_biking_tone2": "8.0",
793
+ "woman_mountain_biking_medium_light_skin_tone": "8.0",
794
+ "woman_mountain_biking_tone3": "8.0",
795
+ "woman_mountain_biking_medium_skin_tone": "8.0",
796
+ "woman_mountain_biking_tone4": "8.0",
797
+ "woman_mountain_biking_medium_dark_skin_tone": "8.0",
798
+ "woman_mountain_biking_tone5": "8.0",
799
+ "woman_mountain_biking_dark_skin_tone": "8.0",
800
+ "man_mountain_biking": "6.0",
801
+ "man_mountain_biking_tone1": "8.0",
802
+ "man_mountain_biking_light_skin_tone": "8.0",
803
+ "man_mountain_biking_tone2": "8.0",
804
+ "man_mountain_biking_medium_light_skin_tone": "8.0",
805
+ "man_mountain_biking_tone3": "8.0",
806
+ "man_mountain_biking_medium_skin_tone": "8.0",
807
+ "man_mountain_biking_tone4": "8.0",
808
+ "man_mountain_biking_medium_dark_skin_tone": "8.0",
809
+ "man_mountain_biking_tone5": "8.0",
810
+ "man_mountain_biking_dark_skin_tone": "8.0",
811
+ "person_biking": "6.0",
812
+ "bicyclist": "6.0",
813
+ "person_biking_tone1": "8.0",
814
+ "bicyclist_tone1": "8.0",
815
+ "person_biking_tone2": "8.0",
816
+ "bicyclist_tone2": "8.0",
817
+ "person_biking_tone3": "8.0",
818
+ "bicyclist_tone3": "8.0",
819
+ "person_biking_tone4": "8.0",
820
+ "bicyclist_tone4": "8.0",
821
+ "person_biking_tone5": "8.0",
822
+ "bicyclist_tone5": "8.0",
823
+ "woman_biking": "6.0",
824
+ "woman_biking_tone1": "8.0",
825
+ "woman_biking_light_skin_tone": "8.0",
826
+ "woman_biking_tone2": "8.0",
827
+ "woman_biking_medium_light_skin_tone": "8.0",
828
+ "woman_biking_tone3": "8.0",
829
+ "woman_biking_medium_skin_tone": "8.0",
830
+ "woman_biking_tone4": "8.0",
831
+ "woman_biking_medium_dark_skin_tone": "8.0",
832
+ "woman_biking_tone5": "8.0",
833
+ "woman_biking_dark_skin_tone": "8.0",
834
+ "man_biking": "6.0",
835
+ "man_biking_tone1": "8.0",
836
+ "man_biking_light_skin_tone": "8.0",
837
+ "man_biking_tone2": "8.0",
838
+ "man_biking_medium_light_skin_tone": "8.0",
839
+ "man_biking_tone3": "8.0",
840
+ "man_biking_medium_skin_tone": "8.0",
841
+ "man_biking_tone4": "8.0",
842
+ "man_biking_medium_dark_skin_tone": "8.0",
843
+ "man_biking_tone5": "8.0",
844
+ "man_biking_dark_skin_tone": "8.0",
845
+ "trophy": "6.0",
846
+ "first_place": "9.0",
847
+ "first_place_medal": "9.0",
848
+ "second_place": "9.0",
849
+ "second_place_medal": "9.0",
850
+ "third_place": "9.0",
851
+ "third_place_medal": "9.0",
852
+ "medal": "7.0",
853
+ "sports_medal": "7.0",
854
+ "military_medal": "7.0",
855
+ "rosette": "7.0",
856
+ "reminder_ribbon": "7.0",
857
+ "ticket": "6.0",
858
+ "tickets": "7.0",
859
+ "admission_tickets": "7.0",
860
+ "circus_tent": "6.0",
861
+ "person_juggling": "9.0",
862
+ "juggling": "9.0",
863
+ "juggler": "9.0",
864
+ "person_juggling_tone1": "9.0",
865
+ "juggling_tone1": "9.0",
866
+ "juggler_tone1": "9.0",
867
+ "person_juggling_tone2": "9.0",
868
+ "juggling_tone2": "9.0",
869
+ "juggler_tone2": "9.0",
870
+ "person_juggling_tone3": "9.0",
871
+ "juggling_tone3": "9.0",
872
+ "juggler_tone3": "9.0",
873
+ "person_juggling_tone4": "9.0",
874
+ "juggling_tone4": "9.0",
875
+ "juggler_tone4": "9.0",
876
+ "person_juggling_tone5": "9.0",
877
+ "juggling_tone5": "9.0",
878
+ "juggler_tone5": "9.0",
879
+ "woman_juggling": "9.0",
880
+ "woman_juggling_tone1": "9.0",
881
+ "woman_juggling_light_skin_tone": "9.0",
882
+ "woman_juggling_tone2": "9.0",
883
+ "woman_juggling_medium_light_skin_tone": "9.0",
884
+ "woman_juggling_tone3": "9.0",
885
+ "woman_juggling_medium_skin_tone": "9.0",
886
+ "woman_juggling_tone4": "9.0",
887
+ "woman_juggling_medium_dark_skin_tone": "9.0",
888
+ "woman_juggling_tone5": "9.0",
889
+ "woman_juggling_dark_skin_tone": "9.0",
890
+ "man_juggling": "9.0",
891
+ "man_juggling_tone1": "9.0",
892
+ "man_juggling_light_skin_tone": "9.0",
893
+ "man_juggling_tone2": "9.0",
894
+ "man_juggling_medium_light_skin_tone": "9.0",
895
+ "man_juggling_tone3": "9.0",
896
+ "man_juggling_medium_skin_tone": "9.0",
897
+ "man_juggling_tone4": "9.0",
898
+ "man_juggling_medium_dark_skin_tone": "9.0",
899
+ "man_juggling_tone5": "9.0",
900
+ "man_juggling_dark_skin_tone": "9.0",
901
+ "performing_arts": "6.0",
902
+ "art": "6.0",
903
+ "clapper": "6.0",
904
+ "microphone": "6.0",
905
+ "headphones": "6.0",
906
+ "musical_score": "6.0",
907
+ "musical_keyboard": "6.0",
908
+ "drum": "9.0",
909
+ "drum_with_drumsticks": "9.0",
910
+ "saxophone": "6.0",
911
+ "trumpet": "6.0",
912
+ "guitar": "6.0",
913
+ "violin": "6.0",
914
+ "game_die": "6.0",
915
+ "dart": "6.0",
916
+ "bowling": "6.0",
917
+ "video_game": "6.0",
918
+ "slot_machine": "6.0",
919
+ "watch": "1.1",
920
+ "iphone": "6.0",
921
+ "calling": "6.0",
922
+ "computer": "6.0",
923
+ "desktop": "7.0",
924
+ "desktop_computer": "7.0",
925
+ "printer": "7.0",
926
+ "mouse_three_button": "7.0",
927
+ "three_button_mouse": "7.0",
928
+ "trackball": "7.0",
929
+ "joystick": "7.0",
930
+ "chess_pawn": "1.1",
931
+ "jigsaw": "11.0",
932
+ "compression": "7.0",
933
+ "minidisc": "6.0",
934
+ "floppy_disk": "6.0",
935
+ "cd": "6.0",
936
+ "dvd": "6.0",
937
+ "vhs": "6.0",
938
+ "camera": "6.0",
939
+ "camera_with_flash": "7.0",
940
+ "video_camera": "6.0",
941
+ "movie_camera": "6.0",
942
+ "projector": "7.0",
943
+ "film_projector": "7.0",
944
+ "film_frames": "7.0",
945
+ "telephone_receiver": "6.0",
946
+ "telephone": "1.1",
947
+ "pager": "6.0",
948
+ "fax": "6.0",
949
+ "tv": "6.0",
950
+ "radio": "6.0",
951
+ "microphone2": "7.0",
952
+ "studio_microphone": "7.0",
953
+ "level_slider": "7.0",
954
+ "control_knobs": "7.0",
955
+ "stopwatch": "6.0",
956
+ "timer": "6.0",
957
+ "timer_clock": "6.0",
958
+ "alarm_clock": "6.0",
959
+ "clock": "7.0",
960
+ "mantlepiece_clock": "7.0",
961
+ "hourglass": "1.1",
962
+ "hourglass_flowing_sand": "6.0",
963
+ "satellite": "6.0",
964
+ "compass": "11.0",
965
+ "battery": "6.0",
966
+ "electric_plug": "6.0",
967
+ "magnet": "11.0",
968
+ "bulb": "6.0",
969
+ "flashlight": "6.0",
970
+ "candle": "7.0",
971
+ "fire_extinguisher": "11.0",
972
+ "wastebasket": "7.0",
973
+ "oil": "7.0",
974
+ "oil_drum": "7.0",
975
+ "money_with_wings": "6.0",
976
+ "dollar": "6.0",
977
+ "yen": "6.0",
978
+ "euro": "6.0",
979
+ "pound": "6.0",
980
+ "moneybag": "6.0",
981
+ "credit_card": "6.0",
982
+ "gem": "6.0",
983
+ "nazar_amulet": "11.0",
984
+ "bricks": "11.0",
985
+ "toolbox": "11.0",
986
+ "wrench": "6.0",
987
+ "hammer": "6.0",
988
+ "tools": "7.0",
989
+ "hammer_and_wrench": "7.0",
990
+ "pick": "5.2",
991
+ "nut_and_bolt": "6.0",
992
+ "chains": "5.2",
993
+ "gun": "6.0",
994
+ "bomb": "6.0",
995
+ "knife": "6.0",
996
+ "dagger": "7.0",
997
+ "dagger_knife": "7.0",
998
+ "shield": "7.0",
999
+ "smoking": "6.0",
1000
+ "coffin": "4.1",
1001
+ "urn": "4.1",
1002
+ "funeral_urn": "4.1",
1003
+ "amphora": "8.0",
1004
+ "crystal_ball": "6.0",
1005
+ "prayer_beads": "8.0",
1006
+ "barber": "6.0",
1007
+ "test_tube": "11.0",
1008
+ "petri_dish": "11.0",
1009
+ "dna": "11.0",
1010
+ "abacus": "11.0",
1011
+ "telescope": "6.0",
1012
+ "microscope": "6.0",
1013
+ "hole": "7.0",
1014
+ "pill": "6.0",
1015
+ "syringe": "6.0",
1016
+ "thermometer": "7.0",
1017
+ "toilet": "6.0",
1018
+ "potable_water": "6.0",
1019
+ "shower": "6.0",
1020
+ "bathtub": "6.0",
1021
+ "bath": "6.0",
1022
+ "bath_tone1": "8.0",
1023
+ "bath_tone2": "8.0",
1024
+ "bath_tone3": "8.0",
1025
+ "bath_tone4": "8.0",
1026
+ "bath_tone5": "8.0",
1027
+ "broom": "11.0",
1028
+ "basket": "11.0",
1029
+ "roll_of_paper": "11.0",
1030
+ "soap": "11.0",
1031
+ "sponge": "11.0",
1032
+ "squeeze_bottle": "11.0",
1033
+ "thread": "11.0",
1034
+ "yarn": "11.0",
1035
+ "bellhop": "7.0",
1036
+ "bellhop_bell": "7.0",
1037
+ "key": "6.0",
1038
+ "key2": "7.0",
1039
+ "old_key": "7.0",
1040
+ "door": "6.0",
1041
+ "couch": "7.0",
1042
+ "couch_and_lamp": "7.0",
1043
+ "bed": "7.0",
1044
+ "sleeping_accommodation": "7.0",
1045
+ "person_in_bed_tone1": "8.0",
1046
+ "person_in_bed_light_skin_tone": "8.0",
1047
+ "person_in_bed_tone2": "8.0",
1048
+ "person_in_bed_medium_light_skin_tone": "8.0",
1049
+ "person_in_bed_tone3": "8.0",
1050
+ "person_in_bed_medium_skin_tone": "8.0",
1051
+ "person_in_bed_tone4": "8.0",
1052
+ "person_in_bed_medium_dark_skin_tone": "8.0",
1053
+ "person_in_bed_tone5": "8.0",
1054
+ "person_in_bed_dark_skin_tone": "8.0",
1055
+ "teddy_bear": "11.0",
1056
+ "frame_photo": "7.0",
1057
+ "frame_with_picture": "7.0",
1058
+ "shopping_bags": "7.0",
1059
+ "shopping_cart": "9.0",
1060
+ "shopping_trolley": "9.0",
1061
+ "gift": "6.0",
1062
+ "balloon": "6.0",
1063
+ "flags": "6.0",
1064
+ "ribbon": "6.0",
1065
+ "confetti_ball": "6.0",
1066
+ "tada": "6.0",
1067
+ "dolls": "6.0",
1068
+ "izakaya_lantern": "6.0",
1069
+ "wind_chime": "6.0",
1070
+ "red_envelope": "11.0",
1071
+ "envelope_with_arrow": "6.0",
1072
+ "incoming_envelope": "6.0",
1073
+ "e-mail": "6.0",
1074
+ "email": "6.0",
1075
+ "love_letter": "6.0",
1076
+ "inbox_tray": "6.0",
1077
+ "outbox_tray": "6.0",
1078
+ "package": "6.0",
1079
+ "label": "7.0",
1080
+ "mailbox_closed": "6.0",
1081
+ "mailbox": "6.0",
1082
+ "mailbox_with_mail": "6.0",
1083
+ "mailbox_with_no_mail": "6.0",
1084
+ "postbox": "6.0",
1085
+ "postal_horn": "6.0",
1086
+ "scroll": "6.0",
1087
+ "page_with_curl": "6.0",
1088
+ "page_facing_up": "6.0",
1089
+ "receipt": "11.0",
1090
+ "bookmark_tabs": "6.0",
1091
+ "bar_chart": "6.0",
1092
+ "chart_with_upwards_trend": "6.0",
1093
+ "chart_with_downwards_trend": "6.0",
1094
+ "notepad_spiral": "7.0",
1095
+ "spiral_note_pad": "7.0",
1096
+ "calendar_spiral": "7.0",
1097
+ "spiral_calendar_pad": "7.0",
1098
+ "calendar": "6.0",
1099
+ "date": "6.0",
1100
+ "card_index": "6.0",
1101
+ "card_box": "7.0",
1102
+ "card_file_box": "7.0",
1103
+ "ballot_box": "7.0",
1104
+ "ballot_box_with_ballot": "7.0",
1105
+ "file_cabinet": "7.0",
1106
+ "clipboard": "6.0",
1107
+ "file_folder": "6.0",
1108
+ "open_file_folder": "6.0",
1109
+ "dividers": "7.0",
1110
+ "card_index_dividers": "7.0",
1111
+ "newspaper2": "7.0",
1112
+ "rolled_up_newspaper": "7.0",
1113
+ "newspaper": "6.0",
1114
+ "notebook": "6.0",
1115
+ "notebook_with_decorative_cover": "6.0",
1116
+ "ledger": "6.0",
1117
+ "closed_book": "6.0",
1118
+ "green_book": "6.0",
1119
+ "blue_book": "6.0",
1120
+ "orange_book": "6.0",
1121
+ "books": "6.0",
1122
+ "book": "6.0",
1123
+ "bookmark": "6.0",
1124
+ "link": "6.0",
1125
+ "paperclip": "6.0",
1126
+ "paperclips": "7.0",
1127
+ "linked_paperclips": "7.0",
1128
+ "triangular_ruler": "6.0",
1129
+ "straight_ruler": "6.0",
1130
+ "safety_pin": "11.0",
1131
+ "pushpin": "6.0",
1132
+ "round_pushpin": "6.0",
1133
+ "pen_ballpoint": "7.0",
1134
+ "lower_left_ballpoint_pen": "7.0",
1135
+ "pen_fountain": "7.0",
1136
+ "lower_left_fountain_pen": "7.0",
1137
+ "paintbrush": "7.0",
1138
+ "lower_left_paintbrush": "7.0",
1139
+ "crayon": "7.0",
1140
+ "lower_left_crayon": "7.0",
1141
+ "pencil": "6.0",
1142
+ "memo": "6.0",
1143
+ "pencil2": "1.1",
1144
+ "mag": "6.0",
1145
+ "mag_right": "6.0",
1146
+ "lock_with_ink_pen": "6.0",
1147
+ "closed_lock_with_key": "6.0",
1148
+ "dog": "6.0",
1149
+ "cat": "6.0",
1150
+ "mouse": "6.0",
1151
+ "hamster": "6.0",
1152
+ "rabbit": "6.0",
1153
+ "fox": "9.0",
1154
+ "fox_face": "9.0",
1155
+ "raccoon": "11.0",
1156
+ "bear": "6.0",
1157
+ "panda_face": "6.0",
1158
+ "kangaroo": "11.0",
1159
+ "badger": "11.0",
1160
+ "koala": "6.0",
1161
+ "tiger": "6.0",
1162
+ "lion_face": "8.0",
1163
+ "lion": "8.0",
1164
+ "cow": "6.0",
1165
+ "pig": "6.0",
1166
+ "pig_nose": "6.0",
1167
+ "frog": "6.0",
1168
+ "monkey_face": "6.0",
1169
+ "see_no_evil": "6.0",
1170
+ "hear_no_evil": "6.0",
1171
+ "speak_no_evil": "6.0",
1172
+ "monkey": "6.0",
1173
+ "chicken": "6.0",
1174
+ "penguin": "6.0",
1175
+ "bird": "6.0",
1176
+ "baby_chick": "6.0",
1177
+ "hatching_chick": "6.0",
1178
+ "hatched_chick": "6.0",
1179
+ "duck": "9.0",
1180
+ "swan": "11.0",
1181
+ "eagle": "9.0",
1182
+ "owl": "9.0",
1183
+ "parrot": "11.0",
1184
+ "peacock": "11.0",
1185
+ "bat": "9.0",
1186
+ "wolf": "6.0",
1187
+ "boar": "6.0",
1188
+ "horse": "6.0",
1189
+ "unicorn": "8.0",
1190
+ "unicorn_face": "8.0",
1191
+ "bee": "6.0",
1192
+ "bug": "6.0",
1193
+ "butterfly": "9.0",
1194
+ "snail": "6.0",
1195
+ "shell": "6.0",
1196
+ "beetle": "6.0",
1197
+ "ant": "6.0",
1198
+ "cricket": "10.0",
1199
+ "spider": "7.0",
1200
+ "spider_web": "7.0",
1201
+ "scorpion": "8.0",
1202
+ "mosquito": "11.0",
1203
+ "microbe": "11.0",
1204
+ "turtle": "6.0",
1205
+ "snake": "6.0",
1206
+ "lizard": "9.0",
1207
+ "t_rex": "10.0",
1208
+ "sauropod": "10.0",
1209
+ "octopus": "6.0",
1210
+ "squid": "9.0",
1211
+ "shrimp": "9.0",
1212
+ "crab": "8.0",
1213
+ "lobster": "11.0",
1214
+ "blowfish": "6.0",
1215
+ "tropical_fish": "6.0",
1216
+ "fish": "6.0",
1217
+ "dolphin": "6.0",
1218
+ "whale": "6.0",
1219
+ "whale2": "6.0",
1220
+ "shark": "9.0",
1221
+ "crocodile": "6.0",
1222
+ "tiger2": "6.0",
1223
+ "leopard": "6.0",
1224
+ "zebra": "10.0",
1225
+ "gorilla": "9.0",
1226
+ "elephant": "6.0",
1227
+ "rhino": "9.0",
1228
+ "rhinoceros": "9.0",
1229
+ "hippopotamus": "11.0",
1230
+ "dromedary_camel": "6.0",
1231
+ "camel": "6.0",
1232
+ "giraffe": "10.0",
1233
+ "llama": "11.0",
1234
+ "water_buffalo": "6.0",
1235
+ "ox": "6.0",
1236
+ "cow2": "6.0",
1237
+ "racehorse": "6.0",
1238
+ "pig2": "6.0",
1239
+ "ram": "6.0",
1240
+ "sheep": "6.0",
1241
+ "goat": "6.0",
1242
+ "deer": "9.0",
1243
+ "dog2": "6.0",
1244
+ "poodle": "6.0",
1245
+ "cat2": "6.0",
1246
+ "rooster": "6.0",
1247
+ "turkey": "8.0",
1248
+ "dove": "7.0",
1249
+ "dove_of_peace": "7.0",
1250
+ "rabbit2": "6.0",
1251
+ "mouse2": "6.0",
1252
+ "rat": "6.0",
1253
+ "chipmunk": "7.0",
1254
+ "hedgehog": "10.0",
1255
+ "feet": "6.0",
1256
+ "paw_prints": "6.0",
1257
+ "dragon": "6.0",
1258
+ "dragon_face": "6.0",
1259
+ "cactus": "6.0",
1260
+ "christmas_tree": "6.0",
1261
+ "evergreen_tree": "6.0",
1262
+ "deciduous_tree": "6.0",
1263
+ "palm_tree": "6.0",
1264
+ "seedling": "6.0",
1265
+ "herb": "6.0",
1266
+ "four_leaf_clover": "6.0",
1267
+ "bamboo": "6.0",
1268
+ "tanabata_tree": "6.0",
1269
+ "leaves": "6.0",
1270
+ "fallen_leaf": "6.0",
1271
+ "maple_leaf": "6.0",
1272
+ "mushroom": "6.0",
1273
+ "ear_of_rice": "6.0",
1274
+ "bouquet": "6.0",
1275
+ "tulip": "6.0",
1276
+ "rose": "6.0",
1277
+ "wilted_rose": "9.0",
1278
+ "wilted_flower": "9.0",
1279
+ "hibiscus": "6.0",
1280
+ "cherry_blossom": "6.0",
1281
+ "blossom": "6.0",
1282
+ "sunflower": "6.0",
1283
+ "sun_with_face": "6.0",
1284
+ "full_moon_with_face": "6.0",
1285
+ "first_quarter_moon_with_face": "6.0",
1286
+ "last_quarter_moon_with_face": "6.0",
1287
+ "new_moon_with_face": "6.0",
1288
+ "full_moon": "6.0",
1289
+ "waning_gibbous_moon": "6.0",
1290
+ "last_quarter_moon": "6.0",
1291
+ "waning_crescent_moon": "6.0",
1292
+ "new_moon": "6.0",
1293
+ "waxing_crescent_moon": "6.0",
1294
+ "first_quarter_moon": "6.0",
1295
+ "waxing_gibbous_moon": "6.0",
1296
+ "crescent_moon": "6.0",
1297
+ "earth_americas": "6.0",
1298
+ "earth_africa": "6.0",
1299
+ "earth_asia": "6.0",
1300
+ "dizzy": "6.0",
1301
+ "star": "5.1",
1302
+ "star2": "6.0",
1303
+ "zap": "4.0",
1304
+ "boom": "6.0",
1305
+ "fire": "6.0",
1306
+ "flame": "6.0",
1307
+ "cloud_tornado": "7.0",
1308
+ "cloud_with_tornado": "7.0",
1309
+ "rainbow": "6.0",
1310
+ "white_sun_small_cloud": "7.0",
1311
+ "white_sun_with_small_cloud": "7.0",
1312
+ "partly_sunny": "5.2",
1313
+ "white_sun_cloud": "7.0",
1314
+ "white_sun_behind_cloud": "7.0",
1315
+ "white_sun_rain_cloud": "7.0",
1316
+ "white_sun_behind_cloud_with_rain": "7.0",
1317
+ "cloud_rain": "7.0",
1318
+ "cloud_with_rain": "7.0",
1319
+ "thunder_cloud_rain": "5.2",
1320
+ "thunder_cloud_and_rain": "5.2",
1321
+ "cloud_lightning": "7.0",
1322
+ "cloud_with_lightning": "7.0",
1323
+ "cloud_snow": "7.0",
1324
+ "cloud_with_snow": "7.0",
1325
+ "snowman": "5.2",
1326
+ "wind_blowing_face": "7.0",
1327
+ "dash": "6.0",
1328
+ "droplet": "6.0",
1329
+ "sweat_drops": "6.0",
1330
+ "ocean": "6.0",
1331
+ "fog": "7.0",
1332
+ "green_apple": "6.0",
1333
+ "apple": "6.0",
1334
+ "pear": "6.0",
1335
+ "tangerine": "6.0",
1336
+ "lemon": "6.0",
1337
+ "banana": "6.0",
1338
+ "watermelon": "6.0",
1339
+ "grapes": "6.0",
1340
+ "strawberry": "6.0",
1341
+ "melon": "6.0",
1342
+ "cherries": "6.0",
1343
+ "peach": "6.0",
1344
+ "mango": "11.0",
1345
+ "pineapple": "6.0",
1346
+ "coconut": "10.0",
1347
+ "kiwi": "9.0",
1348
+ "kiwifruit": "9.0",
1349
+ "tomato": "6.0",
1350
+ "eggplant": "6.0",
1351
+ "avocado": "9.0",
1352
+ "broccoli": "10.0",
1353
+ "leafy_green": "11.0",
1354
+ "cucumber": "9.0",
1355
+ "hot_pepper": "7.0",
1356
+ "corn": "6.0",
1357
+ "carrot": "9.0",
1358
+ "potato": "9.0",
1359
+ "sweet_potato": "6.0",
1360
+ "croissant": "9.0",
1361
+ "bread": "6.0",
1362
+ "french_bread": "9.0",
1363
+ "baguette_bread": "9.0",
1364
+ "pretzel": "10.0",
1365
+ "bagel": "11.0",
1366
+ "cheese": "8.0",
1367
+ "cheese_wedge": "8.0",
1368
+ "egg": "9.0",
1369
+ "cooking": "6.0",
1370
+ "pancakes": "9.0",
1371
+ "bacon": "9.0",
1372
+ "cut_of_meat": "10.0",
1373
+ "poultry_leg": "6.0",
1374
+ "meat_on_bone": "6.0",
1375
+ "hotdog": "8.0",
1376
+ "hot_dog": "8.0",
1377
+ "hamburger": "6.0",
1378
+ "fries": "6.0",
1379
+ "pizza": "6.0",
1380
+ "sandwich": "10.0",
1381
+ "stuffed_flatbread": "9.0",
1382
+ "stuffed_pita": "9.0",
1383
+ "taco": "8.0",
1384
+ "burrito": "8.0",
1385
+ "salad": "9.0",
1386
+ "green_salad": "9.0",
1387
+ "shallow_pan_of_food": "9.0",
1388
+ "paella": "9.0",
1389
+ "canned_food": "10.0",
1390
+ "spaghetti": "6.0",
1391
+ "ramen": "6.0",
1392
+ "stew": "6.0",
1393
+ "curry": "6.0",
1394
+ "sushi": "6.0",
1395
+ "bento": "6.0",
1396
+ "fried_shrimp": "6.0",
1397
+ "rice_ball": "6.0",
1398
+ "rice": "6.0",
1399
+ "rice_cracker": "6.0",
1400
+ "fish_cake": "6.0",
1401
+ "fortune_cookie": "10.0",
1402
+ "oden": "6.0",
1403
+ "dango": "6.0",
1404
+ "shaved_ice": "6.0",
1405
+ "ice_cream": "6.0",
1406
+ "icecream": "6.0",
1407
+ "pie": "10.0",
1408
+ "cake": "6.0",
1409
+ "birthday": "6.0",
1410
+ "moon_cake": "11.0",
1411
+ "cupcake": "11.0",
1412
+ "custard": "6.0",
1413
+ "pudding": "6.0",
1414
+ "flan": "6.0",
1415
+ "lollipop": "6.0",
1416
+ "candy": "6.0",
1417
+ "chocolate_bar": "6.0",
1418
+ "popcorn": "8.0",
1419
+ "salt": "11.0",
1420
+ "doughnut": "6.0",
1421
+ "dumpling": "10.0",
1422
+ "cookie": "6.0",
1423
+ "chestnut": "6.0",
1424
+ "peanuts": "9.0",
1425
+ "shelled_peanut": "9.0",
1426
+ "honey_pot": "6.0",
1427
+ "milk": "9.0",
1428
+ "glass_of_milk": "9.0",
1429
+ "baby_bottle": "6.0",
1430
+ "tea": "6.0",
1431
+ "cup_with_straw": "10.0",
1432
+ "sake": "6.0",
1433
+ "beer": "6.0",
1434
+ "beers": "6.0",
1435
+ "champagne_glass": "9.0",
1436
+ "clinking_glass": "9.0",
1437
+ "wine_glass": "6.0",
1438
+ "tumbler_glass": "9.0",
1439
+ "whisky": "9.0",
1440
+ "cocktail": "6.0",
1441
+ "tropical_drink": "6.0",
1442
+ "champagne": "8.0",
1443
+ "bottle_with_popping_cork": "8.0",
1444
+ "spoon": "9.0",
1445
+ "fork_and_knife": "6.0",
1446
+ "fork_knife_plate": "7.0",
1447
+ "fork_and_knife_with_plate": "7.0",
1448
+ "bowl_with_spoon": "10.0",
1449
+ "takeout_box": "10.0",
1450
+ "chopsticks": "10.0",
1451
+ "grinning": "6.1",
1452
+ "smiley": "6.0",
1453
+ "smile": "6.0",
1454
+ "grin": "6.0",
1455
+ "laughing": "6.0",
1456
+ "satisfied": "6.0",
1457
+ "sweat_smile": "6.0",
1458
+ "joy": "6.0",
1459
+ "rofl": "9.0",
1460
+ "rolling_on_the_floor_laughing": "9.0",
1461
+ "relaxed": "1.1",
1462
+ "blush": "6.0",
1463
+ "innocent": "6.0",
1464
+ "slight_smile": "7.0",
1465
+ "slightly_smiling_face": "7.0",
1466
+ "upside_down": "8.0",
1467
+ "upside_down_face": "8.0",
1468
+ "wink": "6.0",
1469
+ "relieved": "6.0",
1470
+ "heart_eyes": "6.0",
1471
+ "kissing_heart": "6.0",
1472
+ "smiling_face_with_3_hearts": "11.0",
1473
+ "kissing": "6.1",
1474
+ "kissing_smiling_eyes": "6.1",
1475
+ "kissing_closed_eyes": "6.0",
1476
+ "yum": "6.0",
1477
+ "stuck_out_tongue": "6.1",
1478
+ "stuck_out_tongue_closed_eyes": "6.0",
1479
+ "stuck_out_tongue_winking_eye": "6.0",
1480
+ "zany_face": "10.0",
1481
+ "face_with_raised_eyebrow": "10.0",
1482
+ "face_with_monocle": "10.0",
1483
+ "nerd": "8.0",
1484
+ "nerd_face": "8.0",
1485
+ "sunglasses": "6.0",
1486
+ "star_struck": "10.0",
1487
+ "partying_face": "11.0",
1488
+ "smirk": "6.0",
1489
+ "unamused": "6.0",
1490
+ "disappointed": "6.0",
1491
+ "pensive": "6.0",
1492
+ "worried": "6.1",
1493
+ "confused": "6.1",
1494
+ "slight_frown": "7.0",
1495
+ "slightly_frowning_face": "7.0",
1496
+ "persevere": "6.0",
1497
+ "confounded": "6.0",
1498
+ "tired_face": "6.0",
1499
+ "weary": "6.0",
1500
+ "cry": "6.0",
1501
+ "sob": "6.0",
1502
+ "triumph": "6.0",
1503
+ "angry": "6.0",
1504
+ "rage": "6.0",
1505
+ "face_with_symbols_over_mouth": "10.0",
1506
+ "exploding_head": "10.0",
1507
+ "flushed": "6.0",
1508
+ "scream": "6.0",
1509
+ "fearful": "6.0",
1510
+ "cold_sweat": "6.0",
1511
+ "hot_face": "11.0",
1512
+ "cold_face": "11.0",
1513
+ "pleading_face": "11.0",
1514
+ "disappointed_relieved": "6.0",
1515
+ "sweat": "6.0",
1516
+ "hugging": "8.0",
1517
+ "hugging_face": "8.0",
1518
+ "thinking": "8.0",
1519
+ "thinking_face": "8.0",
1520
+ "face_with_hand_over_mouth": "10.0",
1521
+ "shushing_face": "10.0",
1522
+ "lying_face": "9.0",
1523
+ "liar": "9.0",
1524
+ "no_mouth": "6.0",
1525
+ "neutral_face": "6.0",
1526
+ "expressionless": "6.1",
1527
+ "grimacing": "6.1",
1528
+ "rolling_eyes": "8.0",
1529
+ "face_with_rolling_eyes": "8.0",
1530
+ "hushed": "6.1",
1531
+ "frowning": "6.1",
1532
+ "anguished": "6.1",
1533
+ "open_mouth": "6.1",
1534
+ "astonished": "6.0",
1535
+ "sleeping": "6.1",
1536
+ "drooling_face": "9.0",
1537
+ "drool": "9.0",
1538
+ "sleepy": "6.0",
1539
+ "dizzy_face": "6.0",
1540
+ "zipper_mouth": "8.0",
1541
+ "zipper_mouth_face": "8.0",
1542
+ "woozy_face": "11.0",
1543
+ "nauseated_face": "9.0",
1544
+ "sick": "9.0",
1545
+ "face_vomiting": "10.0",
1546
+ "sneezing_face": "9.0",
1547
+ "sneeze": "9.0",
1548
+ "mask": "6.0",
1549
+ "thermometer_face": "8.0",
1550
+ "face_with_thermometer": "8.0",
1551
+ "head_bandage": "8.0",
1552
+ "face_with_head_bandage": "8.0",
1553
+ "money_mouth": "8.0",
1554
+ "money_mouth_face": "8.0",
1555
+ "cowboy": "9.0",
1556
+ "face_with_cowboy_hat": "9.0",
1557
+ "smiling_imp": "6.0",
1558
+ "imp": "6.0",
1559
+ "japanese_ogre": "6.0",
1560
+ "japanese_goblin": "6.0",
1561
+ "clown": "9.0",
1562
+ "clown_face": "9.0",
1563
+ "poop": "6.0",
1564
+ "shit": "6.0",
1565
+ "hankey": "6.0",
1566
+ "poo": "6.0",
1567
+ "ghost": "6.0",
1568
+ "skull": "6.0",
1569
+ "skeleton": "6.0",
1570
+ "alien": "6.0",
1571
+ "space_invader": "6.0",
1572
+ "robot": "8.0",
1573
+ "robot_face": "8.0",
1574
+ "jack_o_lantern": "6.0",
1575
+ "smiley_cat": "6.0",
1576
+ "smile_cat": "6.0",
1577
+ "joy_cat": "6.0",
1578
+ "heart_eyes_cat": "6.0",
1579
+ "smirk_cat": "6.0",
1580
+ "kissing_cat": "6.0",
1581
+ "scream_cat": "6.0",
1582
+ "crying_cat_face": "6.0",
1583
+ "pouting_cat": "6.0",
1584
+ "palms_up_together": "10.0",
1585
+ "palms_up_together_tone1": "10.0",
1586
+ "palms_up_together_light_skin_tone": "10.0",
1587
+ "palms_up_together_tone2": "10.0",
1588
+ "palms_up_together_medium_light_skin_tone": "10.0",
1589
+ "palms_up_together_tone3": "10.0",
1590
+ "palms_up_together_medium_skin_tone": "10.0",
1591
+ "palms_up_together_tone4": "10.0",
1592
+ "palms_up_together_medium_dark_skin_tone": "10.0",
1593
+ "palms_up_together_tone5": "10.0",
1594
+ "palms_up_together_dark_skin_tone": "10.0",
1595
+ "open_hands": "6.0",
1596
+ "open_hands_tone1": "8.0",
1597
+ "open_hands_tone2": "8.0",
1598
+ "open_hands_tone3": "8.0",
1599
+ "open_hands_tone4": "8.0",
1600
+ "open_hands_tone5": "8.0",
1601
+ "raised_hands": "6.0",
1602
+ "raised_hands_tone1": "8.0",
1603
+ "raised_hands_tone2": "8.0",
1604
+ "raised_hands_tone3": "8.0",
1605
+ "raised_hands_tone4": "8.0",
1606
+ "raised_hands_tone5": "8.0",
1607
+ "clap": "6.0",
1608
+ "clap_tone1": "8.0",
1609
+ "clap_tone2": "8.0",
1610
+ "clap_tone3": "8.0",
1611
+ "clap_tone4": "8.0",
1612
+ "clap_tone5": "8.0",
1613
+ "handshake": "9.0",
1614
+ "shaking_hands": "9.0",
1615
+ "thumbsup": "6.0",
1616
+ "+1": "6.0",
1617
+ "thumbup": "6.0",
1618
+ "thumbsup_tone1": "8.0",
1619
+ "+1_tone1": "8.0",
1620
+ "thumbup_tone1": "8.0",
1621
+ "thumbsup_tone2": "8.0",
1622
+ "+1_tone2": "8.0",
1623
+ "thumbup_tone2": "8.0",
1624
+ "thumbsup_tone3": "8.0",
1625
+ "+1_tone3": "8.0",
1626
+ "thumbup_tone3": "8.0",
1627
+ "thumbsup_tone4": "8.0",
1628
+ "+1_tone4": "8.0",
1629
+ "thumbup_tone4": "8.0",
1630
+ "thumbsup_tone5": "8.0",
1631
+ "+1_tone5": "8.0",
1632
+ "thumbup_tone5": "8.0",
1633
+ "thumbsdown": "6.0",
1634
+ "-1": "6.0",
1635
+ "thumbdown": "6.0",
1636
+ "thumbsdown_tone1": "8.0",
1637
+ "-1_tone1": "8.0",
1638
+ "thumbdown_tone1": "8.0",
1639
+ "thumbsdown_tone2": "8.0",
1640
+ "-1_tone2": "8.0",
1641
+ "thumbdown_tone2": "8.0",
1642
+ "thumbsdown_tone3": "8.0",
1643
+ "-1_tone3": "8.0",
1644
+ "thumbdown_tone3": "8.0",
1645
+ "thumbsdown_tone4": "8.0",
1646
+ "-1_tone4": "8.0",
1647
+ "thumbdown_tone4": "8.0",
1648
+ "thumbsdown_tone5": "8.0",
1649
+ "-1_tone5": "8.0",
1650
+ "thumbdown_tone5": "8.0",
1651
+ "punch": "6.0",
1652
+ "punch_tone1": "8.0",
1653
+ "punch_tone2": "8.0",
1654
+ "punch_tone3": "8.0",
1655
+ "punch_tone4": "8.0",
1656
+ "punch_tone5": "8.0",
1657
+ "fist": "6.0",
1658
+ "fist_tone1": "8.0",
1659
+ "fist_tone2": "8.0",
1660
+ "fist_tone3": "8.0",
1661
+ "fist_tone4": "8.0",
1662
+ "fist_tone5": "8.0",
1663
+ "left_facing_fist": "9.0",
1664
+ "left_fist": "9.0",
1665
+ "left_facing_fist_tone1": "9.0",
1666
+ "left_fist_tone1": "9.0",
1667
+ "left_facing_fist_tone2": "9.0",
1668
+ "left_fist_tone2": "9.0",
1669
+ "left_facing_fist_tone3": "9.0",
1670
+ "left_fist_tone3": "9.0",
1671
+ "left_facing_fist_tone4": "9.0",
1672
+ "left_fist_tone4": "9.0",
1673
+ "left_facing_fist_tone5": "9.0",
1674
+ "left_fist_tone5": "9.0",
1675
+ "right_facing_fist": "9.0",
1676
+ "right_fist": "9.0",
1677
+ "right_facing_fist_tone1": "9.0",
1678
+ "right_fist_tone1": "9.0",
1679
+ "right_facing_fist_tone2": "9.0",
1680
+ "right_fist_tone2": "9.0",
1681
+ "right_facing_fist_tone3": "9.0",
1682
+ "right_fist_tone3": "9.0",
1683
+ "right_facing_fist_tone4": "9.0",
1684
+ "right_fist_tone4": "9.0",
1685
+ "right_facing_fist_tone5": "9.0",
1686
+ "right_fist_tone5": "9.0",
1687
+ "fingers_crossed": "9.0",
1688
+ "hand_with_index_and_middle_finger_crossed": "9.0",
1689
+ "fingers_crossed_tone1": "9.0",
1690
+ "hand_with_index_and_middle_fingers_crossed_tone1": "9.0",
1691
+ "fingers_crossed_tone2": "9.0",
1692
+ "hand_with_index_and_middle_fingers_crossed_tone2": "9.0",
1693
+ "fingers_crossed_tone3": "9.0",
1694
+ "hand_with_index_and_middle_fingers_crossed_tone3": "9.0",
1695
+ "fingers_crossed_tone4": "9.0",
1696
+ "hand_with_index_and_middle_fingers_crossed_tone4": "9.0",
1697
+ "fingers_crossed_tone5": "9.0",
1698
+ "hand_with_index_and_middle_fingers_crossed_tone5": "9.0",
1699
+ "v": "1.1",
1700
+ "v_tone1": "8.0",
1701
+ "v_tone2": "8.0",
1702
+ "v_tone3": "8.0",
1703
+ "v_tone4": "8.0",
1704
+ "v_tone5": "8.0",
1705
+ "love_you_gesture": "10.0",
1706
+ "love_you_gesture_tone1": "10.0",
1707
+ "love_you_gesture_light_skin_tone": "10.0",
1708
+ "love_you_gesture_tone2": "10.0",
1709
+ "love_you_gesture_medium_light_skin_tone": "10.0",
1710
+ "love_you_gesture_tone3": "10.0",
1711
+ "love_you_gesture_medium_skin_tone": "10.0",
1712
+ "love_you_gesture_tone4": "10.0",
1713
+ "love_you_gesture_medium_dark_skin_tone": "10.0",
1714
+ "love_you_gesture_tone5": "10.0",
1715
+ "love_you_gesture_dark_skin_tone": "10.0",
1716
+ "metal": "8.0",
1717
+ "sign_of_the_horns": "8.0",
1718
+ "metal_tone1": "8.0",
1719
+ "sign_of_the_horns_tone1": "8.0",
1720
+ "metal_tone2": "8.0",
1721
+ "sign_of_the_horns_tone2": "8.0",
1722
+ "metal_tone3": "8.0",
1723
+ "sign_of_the_horns_tone3": "8.0",
1724
+ "metal_tone4": "8.0",
1725
+ "sign_of_the_horns_tone4": "8.0",
1726
+ "metal_tone5": "8.0",
1727
+ "sign_of_the_horns_tone5": "8.0",
1728
+ "ok_hand": "6.0",
1729
+ "ok_hand_tone1": "8.0",
1730
+ "ok_hand_tone2": "8.0",
1731
+ "ok_hand_tone3": "8.0",
1732
+ "ok_hand_tone4": "8.0",
1733
+ "ok_hand_tone5": "8.0",
1734
+ "point_left": "6.0",
1735
+ "point_left_tone1": "8.0",
1736
+ "point_left_tone2": "8.0",
1737
+ "point_left_tone3": "8.0",
1738
+ "point_left_tone4": "8.0",
1739
+ "point_left_tone5": "8.0",
1740
+ "point_right": "6.0",
1741
+ "point_right_tone1": "8.0",
1742
+ "point_right_tone2": "8.0",
1743
+ "point_right_tone3": "8.0",
1744
+ "point_right_tone4": "8.0",
1745
+ "point_right_tone5": "8.0",
1746
+ "point_up_2": "6.0",
1747
+ "point_up_2_tone1": "8.0",
1748
+ "point_up_2_tone2": "8.0",
1749
+ "point_up_2_tone3": "8.0",
1750
+ "point_up_2_tone4": "8.0",
1751
+ "point_up_2_tone5": "8.0",
1752
+ "point_down": "6.0",
1753
+ "point_down_tone1": "8.0",
1754
+ "point_down_tone2": "8.0",
1755
+ "point_down_tone3": "8.0",
1756
+ "point_down_tone4": "8.0",
1757
+ "point_down_tone5": "8.0",
1758
+ "point_up": "1.1",
1759
+ "point_up_tone1": "8.0",
1760
+ "point_up_tone2": "8.0",
1761
+ "point_up_tone3": "8.0",
1762
+ "point_up_tone4": "8.0",
1763
+ "point_up_tone5": "8.0",
1764
+ "raised_hand": "6.0",
1765
+ "raised_hand_tone1": "8.0",
1766
+ "raised_hand_tone2": "8.0",
1767
+ "raised_hand_tone3": "8.0",
1768
+ "raised_hand_tone4": "8.0",
1769
+ "raised_hand_tone5": "8.0",
1770
+ "raised_back_of_hand": "9.0",
1771
+ "back_of_hand": "9.0",
1772
+ "raised_back_of_hand_tone1": "9.0",
1773
+ "back_of_hand_tone1": "9.0",
1774
+ "raised_back_of_hand_tone2": "9.0",
1775
+ "back_of_hand_tone2": "9.0",
1776
+ "raised_back_of_hand_tone3": "9.0",
1777
+ "back_of_hand_tone3": "9.0",
1778
+ "raised_back_of_hand_tone4": "9.0",
1779
+ "back_of_hand_tone4": "9.0",
1780
+ "raised_back_of_hand_tone5": "9.0",
1781
+ "back_of_hand_tone5": "9.0",
1782
+ "hand_splayed": "7.0",
1783
+ "raised_hand_with_fingers_splayed": "7.0",
1784
+ "hand_splayed_tone1": "8.0",
1785
+ "raised_hand_with_fingers_splayed_tone1": "8.0",
1786
+ "hand_splayed_tone2": "8.0",
1787
+ "raised_hand_with_fingers_splayed_tone2": "8.0",
1788
+ "hand_splayed_tone3": "8.0",
1789
+ "raised_hand_with_fingers_splayed_tone3": "8.0",
1790
+ "hand_splayed_tone4": "8.0",
1791
+ "raised_hand_with_fingers_splayed_tone4": "8.0",
1792
+ "hand_splayed_tone5": "8.0",
1793
+ "raised_hand_with_fingers_splayed_tone5": "8.0",
1794
+ "vulcan": "7.0",
1795
+ "raised_hand_with_part_between_middle_and_ring_fingers": "7.0",
1796
+ "vulcan_tone1": "8.0",
1797
+ "raised_hand_with_part_between_middle_and_ring_fingers_tone1": "8.0",
1798
+ "vulcan_tone2": "8.0",
1799
+ "raised_hand_with_part_between_middle_and_ring_fingers_tone2": "8.0",
1800
+ "vulcan_tone3": "8.0",
1801
+ "raised_hand_with_part_between_middle_and_ring_fingers_tone3": "8.0",
1802
+ "vulcan_tone4": "8.0",
1803
+ "raised_hand_with_part_between_middle_and_ring_fingers_tone4": "8.0",
1804
+ "vulcan_tone5": "8.0",
1805
+ "raised_hand_with_part_between_middle_and_ring_fingers_tone5": "8.0",
1806
+ "wave": "6.0",
1807
+ "wave_tone1": "8.0",
1808
+ "wave_tone2": "8.0",
1809
+ "wave_tone3": "8.0",
1810
+ "wave_tone4": "8.0",
1811
+ "wave_tone5": "8.0",
1812
+ "call_me": "9.0",
1813
+ "call_me_hand": "9.0",
1814
+ "call_me_tone1": "9.0",
1815
+ "call_me_hand_tone1": "9.0",
1816
+ "call_me_tone2": "9.0",
1817
+ "call_me_hand_tone2": "9.0",
1818
+ "call_me_tone3": "9.0",
1819
+ "call_me_hand_tone3": "9.0",
1820
+ "call_me_tone4": "9.0",
1821
+ "call_me_hand_tone4": "9.0",
1822
+ "call_me_tone5": "9.0",
1823
+ "call_me_hand_tone5": "9.0",
1824
+ "muscle": "6.0",
1825
+ "muscle_tone1": "8.0",
1826
+ "muscle_tone2": "8.0",
1827
+ "muscle_tone3": "8.0",
1828
+ "muscle_tone4": "8.0",
1829
+ "muscle_tone5": "8.0",
1830
+ "leg": "11.0",
1831
+ "leg_tone1": "11.0",
1832
+ "leg_light_skin_tone": "11.0",
1833
+ "leg_tone2": "11.0",
1834
+ "leg_medium_light_skin_tone": "11.0",
1835
+ "leg_tone3": "11.0",
1836
+ "leg_medium_skin_tone": "11.0",
1837
+ "leg_tone4": "11.0",
1838
+ "leg_medium_dark_skin_tone": "11.0",
1839
+ "leg_tone5": "11.0",
1840
+ "leg_dark_skin_tone": "11.0",
1841
+ "foot": "11.0",
1842
+ "foot_tone1": "11.0",
1843
+ "foot_light_skin_tone": "11.0",
1844
+ "foot_tone2": "11.0",
1845
+ "foot_medium_light_skin_tone": "11.0",
1846
+ "foot_tone3": "11.0",
1847
+ "foot_medium_skin_tone": "11.0",
1848
+ "foot_tone4": "11.0",
1849
+ "foot_medium_dark_skin_tone": "11.0",
1850
+ "foot_tone5": "11.0",
1851
+ "foot_dark_skin_tone": "11.0",
1852
+ "middle_finger": "7.0",
1853
+ "reversed_hand_with_middle_finger_extended": "7.0",
1854
+ "middle_finger_tone1": "8.0",
1855
+ "reversed_hand_with_middle_finger_extended_tone1": "8.0",
1856
+ "middle_finger_tone2": "8.0",
1857
+ "reversed_hand_with_middle_finger_extended_tone2": "8.0",
1858
+ "middle_finger_tone3": "8.0",
1859
+ "reversed_hand_with_middle_finger_extended_tone3": "8.0",
1860
+ "middle_finger_tone4": "8.0",
1861
+ "reversed_hand_with_middle_finger_extended_tone4": "8.0",
1862
+ "middle_finger_tone5": "8.0",
1863
+ "reversed_hand_with_middle_finger_extended_tone5": "8.0",
1864
+ "writing_hand": "1.1",
1865
+ "writing_hand_tone1": "8.0",
1866
+ "writing_hand_tone2": "8.0",
1867
+ "writing_hand_tone3": "8.0",
1868
+ "writing_hand_tone4": "8.0",
1869
+ "writing_hand_tone5": "8.0",
1870
+ "pray": "6.0",
1871
+ "pray_tone1": "8.0",
1872
+ "pray_tone2": "8.0",
1873
+ "pray_tone3": "8.0",
1874
+ "pray_tone4": "8.0",
1875
+ "pray_tone5": "8.0",
1876
+ "ring": "6.0",
1877
+ "lipstick": "6.0",
1878
+ "kiss": "6.0",
1879
+ "lips": "6.0",
1880
+ "tongue": "6.0",
1881
+ "ear": "6.0",
1882
+ "ear_tone1": "8.0",
1883
+ "ear_tone2": "8.0",
1884
+ "ear_tone3": "8.0",
1885
+ "ear_tone4": "8.0",
1886
+ "ear_tone5": "8.0",
1887
+ "nose": "6.0",
1888
+ "nose_tone1": "8.0",
1889
+ "nose_tone2": "8.0",
1890
+ "nose_tone3": "8.0",
1891
+ "nose_tone4": "8.0",
1892
+ "nose_tone5": "8.0",
1893
+ "footprints": "6.0",
1894
+ "eye": "7.0",
1895
+ "eyes": "6.0",
1896
+ "brain": "10.0",
1897
+ "bone": "11.0",
1898
+ "tooth": "11.0",
1899
+ "speaking_head": "7.0",
1900
+ "speaking_head_in_silhouette": "7.0",
1901
+ "bust_in_silhouette": "6.0",
1902
+ "busts_in_silhouette": "6.0",
1903
+ "baby": "6.0",
1904
+ "baby_tone1": "8.0",
1905
+ "baby_tone2": "8.0",
1906
+ "baby_tone3": "8.0",
1907
+ "baby_tone4": "8.0",
1908
+ "baby_tone5": "8.0",
1909
+ "girl": "6.0",
1910
+ "girl_tone1": "8.0",
1911
+ "girl_tone2": "8.0",
1912
+ "girl_tone3": "8.0",
1913
+ "girl_tone4": "8.0",
1914
+ "girl_tone5": "8.0",
1915
+ "child": "10.0",
1916
+ "child_tone1": "10.0",
1917
+ "child_light_skin_tone": "10.0",
1918
+ "child_tone2": "10.0",
1919
+ "child_medium_light_skin_tone": "10.0",
1920
+ "child_tone3": "10.0",
1921
+ "child_medium_skin_tone": "10.0",
1922
+ "child_tone4": "10.0",
1923
+ "child_medium_dark_skin_tone": "10.0",
1924
+ "child_tone5": "10.0",
1925
+ "child_dark_skin_tone": "10.0",
1926
+ "boy": "6.0",
1927
+ "boy_tone1": "8.0",
1928
+ "boy_tone2": "8.0",
1929
+ "boy_tone3": "8.0",
1930
+ "boy_tone4": "8.0",
1931
+ "boy_tone5": "8.0",
1932
+ "woman": "6.0",
1933
+ "woman_tone1": "8.0",
1934
+ "woman_tone2": "8.0",
1935
+ "woman_tone3": "8.0",
1936
+ "woman_tone4": "8.0",
1937
+ "woman_tone5": "8.0",
1938
+ "adult": "10.0",
1939
+ "adult_tone1": "10.0",
1940
+ "adult_light_skin_tone": "10.0",
1941
+ "adult_tone2": "10.0",
1942
+ "adult_medium_light_skin_tone": "10.0",
1943
+ "adult_tone3": "10.0",
1944
+ "adult_medium_skin_tone": "10.0",
1945
+ "adult_tone4": "10.0",
1946
+ "adult_medium_dark_skin_tone": "10.0",
1947
+ "adult_tone5": "10.0",
1948
+ "adult_dark_skin_tone": "10.0",
1949
+ "man": "6.0",
1950
+ "man_tone1": "8.0",
1951
+ "man_tone2": "8.0",
1952
+ "man_tone3": "8.0",
1953
+ "man_tone4": "8.0",
1954
+ "man_tone5": "8.0",
1955
+ "blond_haired_person": "6.0",
1956
+ "person_with_blond_hair": "6.0",
1957
+ "blond_haired_person_tone1": "8.0",
1958
+ "person_with_blond_hair_tone1": "8.0",
1959
+ "blond_haired_person_tone2": "8.0",
1960
+ "person_with_blond_hair_tone2": "8.0",
1961
+ "blond_haired_person_tone3": "8.0",
1962
+ "person_with_blond_hair_tone3": "8.0",
1963
+ "blond_haired_person_tone4": "8.0",
1964
+ "person_with_blond_hair_tone4": "8.0",
1965
+ "blond_haired_person_tone5": "8.0",
1966
+ "person_with_blond_hair_tone5": "8.0",
1967
+ "blond-haired_woman": "6.0",
1968
+ "blond-haired_woman_tone1": "8.0",
1969
+ "blond-haired_woman_light_skin_tone": "8.0",
1970
+ "blond-haired_woman_tone2": "8.0",
1971
+ "blond-haired_woman_medium_light_skin_tone": "8.0",
1972
+ "blond-haired_woman_tone3": "8.0",
1973
+ "blond-haired_woman_medium_skin_tone": "8.0",
1974
+ "blond-haired_woman_tone4": "8.0",
1975
+ "blond-haired_woman_medium_dark_skin_tone": "8.0",
1976
+ "blond-haired_woman_tone5": "8.0",
1977
+ "blond-haired_woman_dark_skin_tone": "8.0",
1978
+ "blond-haired_man": "6.0",
1979
+ "blond-haired_man_tone1": "8.0",
1980
+ "blond-haired_man_light_skin_tone": "8.0",
1981
+ "blond-haired_man_tone2": "8.0",
1982
+ "blond-haired_man_medium_light_skin_tone": "8.0",
1983
+ "blond-haired_man_tone3": "8.0",
1984
+ "blond-haired_man_medium_skin_tone": "8.0",
1985
+ "blond-haired_man_tone4": "8.0",
1986
+ "blond-haired_man_medium_dark_skin_tone": "8.0",
1987
+ "blond-haired_man_tone5": "8.0",
1988
+ "blond-haired_man_dark_skin_tone": "8.0",
1989
+ "woman_red_haired": "11.0",
1990
+ "woman_red_haired_tone1": "11.0",
1991
+ "woman_red_haired_light_skin_tone": "11.0",
1992
+ "woman_red_haired_tone2": "11.0",
1993
+ "woman_red_haired_medium_light_skin_tone": "11.0",
1994
+ "woman_red_haired_tone3": "11.0",
1995
+ "woman_red_haired_medium_skin_tone": "11.0",
1996
+ "woman_red_haired_tone4": "11.0",
1997
+ "woman_red_haired_medium_dark_skin_tone": "11.0",
1998
+ "woman_red_haired_tone5": "11.0",
1999
+ "woman_red_haired_dark_skin_tone": "11.0",
2000
+ "man_red_haired": "11.0",
2001
+ "man_red_haired_tone1": "11.0",
2002
+ "man_red_haired_light_skin_tone": "11.0",
2003
+ "man_red_haired_tone2": "11.0",
2004
+ "man_red_haired_medium_light_skin_tone": "11.0",
2005
+ "man_red_haired_tone3": "11.0",
2006
+ "man_red_haired_medium_skin_tone": "11.0",
2007
+ "man_red_haired_tone4": "11.0",
2008
+ "man_red_haired_medium_dark_skin_tone": "11.0",
2009
+ "man_red_haired_tone5": "11.0",
2010
+ "man_red_haired_dark_skin_tone": "11.0",
2011
+ "woman_curly_haired": "11.0",
2012
+ "woman_curly_haired_tone1": "11.0",
2013
+ "woman_curly_haired_light_skin_tone": "11.0",
2014
+ "woman_curly_haired_tone2": "11.0",
2015
+ "woman_curly_haired_medium_light_skin_tone": "11.0",
2016
+ "woman_curly_haired_tone3": "11.0",
2017
+ "woman_curly_haired_medium_skin_tone": "11.0",
2018
+ "woman_curly_haired_tone4": "11.0",
2019
+ "woman_curly_haired_medium_dark_skin_tone": "11.0",
2020
+ "woman_curly_haired_tone5": "11.0",
2021
+ "woman_curly_haired_dark_skin_tone": "11.0",
2022
+ "man_curly_haired": "11.0",
2023
+ "man_curly_haired_tone1": "11.0",
2024
+ "man_curly_haired_light_skin_tone": "11.0",
2025
+ "man_curly_haired_tone2": "11.0",
2026
+ "man_curly_haired_medium_light_skin_tone": "11.0",
2027
+ "man_curly_haired_tone3": "11.0",
2028
+ "man_curly_haired_medium_skin_tone": "11.0",
2029
+ "man_curly_haired_tone4": "11.0",
2030
+ "man_curly_haired_medium_dark_skin_tone": "11.0",
2031
+ "man_curly_haired_tone5": "11.0",
2032
+ "man_curly_haired_dark_skin_tone": "11.0",
2033
+ "woman_white_haired": "11.0",
2034
+ "woman_white_haired_tone1": "11.0",
2035
+ "woman_white_haired_light_skin_tone": "11.0",
2036
+ "woman_white_haired_tone2": "11.0",
2037
+ "woman_white_haired_medium_light_skin_tone": "11.0",
2038
+ "woman_white_haired_tone3": "11.0",
2039
+ "woman_white_haired_medium_skin_tone": "11.0",
2040
+ "woman_white_haired_tone4": "11.0",
2041
+ "woman_white_haired_medium_dark_skin_tone": "11.0",
2042
+ "woman_white_haired_tone5": "11.0",
2043
+ "woman_white_haired_dark_skin_tone": "11.0",
2044
+ "man_white_haired": "11.0",
2045
+ "man_white_haired_tone1": "11.0",
2046
+ "man_white_haired_light_skin_tone": "11.0",
2047
+ "man_white_haired_tone2": "11.0",
2048
+ "man_white_haired_medium_light_skin_tone": "11.0",
2049
+ "man_white_haired_tone3": "11.0",
2050
+ "man_white_haired_medium_skin_tone": "11.0",
2051
+ "man_white_haired_tone4": "11.0",
2052
+ "man_white_haired_medium_dark_skin_tone": "11.0",
2053
+ "man_white_haired_tone5": "11.0",
2054
+ "man_white_haired_dark_skin_tone": "11.0",
2055
+ "woman_bald": "11.0",
2056
+ "woman_bald_tone1": "11.0",
2057
+ "woman_bald_light_skin_tone": "11.0",
2058
+ "woman_bald_tone2": "11.0",
2059
+ "woman_bald_medium_light_skin_tone": "11.0",
2060
+ "woman_bald_tone3": "11.0",
2061
+ "woman_bald_medium_skin_tone": "11.0",
2062
+ "woman_bald_tone4": "11.0",
2063
+ "woman_bald_medium_dark_skin_tone": "11.0",
2064
+ "woman_bald_tone5": "11.0",
2065
+ "woman_bald_dark_skin_tone": "11.0",
2066
+ "man_bald": "11.0",
2067
+ "man_bald_tone1": "11.0",
2068
+ "man_bald_light_skin_tone": "11.0",
2069
+ "man_bald_tone2": "11.0",
2070
+ "man_bald_medium_light_skin_tone": "11.0",
2071
+ "man_bald_tone3": "11.0",
2072
+ "man_bald_medium_skin_tone": "11.0",
2073
+ "man_bald_tone4": "11.0",
2074
+ "man_bald_medium_dark_skin_tone": "11.0",
2075
+ "man_bald_tone5": "11.0",
2076
+ "man_bald_dark_skin_tone": "11.0",
2077
+ "bearded_person": "10.0",
2078
+ "bearded_person_tone1": "10.0",
2079
+ "bearded_person_light_skin_tone": "10.0",
2080
+ "bearded_person_tone2": "10.0",
2081
+ "bearded_person_medium_light_skin_tone": "10.0",
2082
+ "bearded_person_tone3": "10.0",
2083
+ "bearded_person_medium_skin_tone": "10.0",
2084
+ "bearded_person_tone4": "10.0",
2085
+ "bearded_person_medium_dark_skin_tone": "10.0",
2086
+ "bearded_person_tone5": "10.0",
2087
+ "bearded_person_dark_skin_tone": "10.0",
2088
+ "older_woman": "6.0",
2089
+ "grandma": "6.0",
2090
+ "older_woman_tone1": "8.0",
2091
+ "grandma_tone1": "8.0",
2092
+ "older_woman_tone2": "8.0",
2093
+ "grandma_tone2": "8.0",
2094
+ "older_woman_tone3": "8.0",
2095
+ "grandma_tone3": "8.0",
2096
+ "older_woman_tone4": "8.0",
2097
+ "grandma_tone4": "8.0",
2098
+ "older_woman_tone5": "8.0",
2099
+ "grandma_tone5": "8.0",
2100
+ "older_adult": "10.0",
2101
+ "older_adult_tone1": "10.0",
2102
+ "older_adult_light_skin_tone": "10.0",
2103
+ "older_adult_tone2": "10.0",
2104
+ "older_adult_medium_light_skin_tone": "10.0",
2105
+ "older_adult_tone3": "10.0",
2106
+ "older_adult_medium_skin_tone": "10.0",
2107
+ "older_adult_tone4": "10.0",
2108
+ "older_adult_medium_dark_skin_tone": "10.0",
2109
+ "older_adult_tone5": "10.0",
2110
+ "older_adult_dark_skin_tone": "10.0",
2111
+ "older_man": "6.0",
2112
+ "older_man_tone1": "8.0",
2113
+ "older_man_tone2": "8.0",
2114
+ "older_man_tone3": "8.0",
2115
+ "older_man_tone4": "8.0",
2116
+ "older_man_tone5": "8.0",
2117
+ "man_with_chinese_cap": "6.0",
2118
+ "man_with_gua_pi_mao": "6.0",
2119
+ "man_with_chinese_cap_tone1": "8.0",
2120
+ "man_with_gua_pi_mao_tone1": "8.0",
2121
+ "man_with_chinese_cap_tone2": "8.0",
2122
+ "man_with_gua_pi_mao_tone2": "8.0",
2123
+ "man_with_chinese_cap_tone3": "8.0",
2124
+ "man_with_gua_pi_mao_tone3": "8.0",
2125
+ "man_with_chinese_cap_tone4": "8.0",
2126
+ "man_with_gua_pi_mao_tone4": "8.0",
2127
+ "man_with_chinese_cap_tone5": "8.0",
2128
+ "man_with_gua_pi_mao_tone5": "8.0",
2129
+ "person_wearing_turban": "6.0",
2130
+ "man_with_turban": "6.0",
2131
+ "person_wearing_turban_tone1": "8.0",
2132
+ "man_with_turban_tone1": "8.0",
2133
+ "person_wearing_turban_tone2": "8.0",
2134
+ "man_with_turban_tone2": "8.0",
2135
+ "person_wearing_turban_tone3": "8.0",
2136
+ "man_with_turban_tone3": "8.0",
2137
+ "person_wearing_turban_tone4": "8.0",
2138
+ "man_with_turban_tone4": "8.0",
2139
+ "person_wearing_turban_tone5": "8.0",
2140
+ "man_with_turban_tone5": "8.0",
2141
+ "woman_wearing_turban": "6.0",
2142
+ "woman_wearing_turban_tone1": "8.0",
2143
+ "woman_wearing_turban_light_skin_tone": "8.0",
2144
+ "woman_wearing_turban_tone2": "8.0",
2145
+ "woman_wearing_turban_medium_light_skin_tone": "8.0",
2146
+ "woman_wearing_turban_tone3": "8.0",
2147
+ "woman_wearing_turban_medium_skin_tone": "8.0",
2148
+ "woman_wearing_turban_tone4": "8.0",
2149
+ "woman_wearing_turban_medium_dark_skin_tone": "8.0",
2150
+ "woman_wearing_turban_tone5": "8.0",
2151
+ "woman_wearing_turban_dark_skin_tone": "8.0",
2152
+ "man_wearing_turban": "6.0",
2153
+ "man_wearing_turban_tone1": "8.0",
2154
+ "man_wearing_turban_light_skin_tone": "8.0",
2155
+ "man_wearing_turban_tone2": "8.0",
2156
+ "man_wearing_turban_medium_light_skin_tone": "8.0",
2157
+ "man_wearing_turban_tone3": "8.0",
2158
+ "man_wearing_turban_medium_skin_tone": "8.0",
2159
+ "man_wearing_turban_tone4": "8.0",
2160
+ "man_wearing_turban_medium_dark_skin_tone": "8.0",
2161
+ "man_wearing_turban_tone5": "8.0",
2162
+ "man_wearing_turban_dark_skin_tone": "8.0",
2163
+ "woman_with_headscarf": "10.0",
2164
+ "woman_with_headscarf_tone1": "10.0",
2165
+ "woman_with_headscarf_light_skin_tone": "10.0",
2166
+ "woman_with_headscarf_tone2": "10.0",
2167
+ "woman_with_headscarf_medium_light_skin_tone": "10.0",
2168
+ "woman_with_headscarf_tone3": "10.0",
2169
+ "woman_with_headscarf_medium_skin_tone": "10.0",
2170
+ "woman_with_headscarf_tone4": "10.0",
2171
+ "woman_with_headscarf_medium_dark_skin_tone": "10.0",
2172
+ "woman_with_headscarf_tone5": "10.0",
2173
+ "woman_with_headscarf_dark_skin_tone": "10.0",
2174
+ "police_officer": "6.0",
2175
+ "cop": "6.0",
2176
+ "police_officer_tone1": "8.0",
2177
+ "cop_tone1": "8.0",
2178
+ "police_officer_tone2": "8.0",
2179
+ "cop_tone2": "8.0",
2180
+ "police_officer_tone3": "8.0",
2181
+ "cop_tone3": "8.0",
2182
+ "police_officer_tone4": "8.0",
2183
+ "cop_tone4": "8.0",
2184
+ "police_officer_tone5": "8.0",
2185
+ "cop_tone5": "8.0",
2186
+ "woman_police_officer": "6.0",
2187
+ "woman_police_officer_tone1": "8.0",
2188
+ "woman_police_officer_light_skin_tone": "8.0",
2189
+ "woman_police_officer_tone2": "8.0",
2190
+ "woman_police_officer_medium_light_skin_tone": "8.0",
2191
+ "woman_police_officer_tone3": "8.0",
2192
+ "woman_police_officer_medium_skin_tone": "8.0",
2193
+ "woman_police_officer_tone4": "8.0",
2194
+ "woman_police_officer_medium_dark_skin_tone": "8.0",
2195
+ "woman_police_officer_tone5": "8.0",
2196
+ "woman_police_officer_dark_skin_tone": "8.0",
2197
+ "man_police_officer": "6.0",
2198
+ "man_police_officer_tone1": "8.0",
2199
+ "man_police_officer_light_skin_tone": "8.0",
2200
+ "man_police_officer_tone2": "8.0",
2201
+ "man_police_officer_medium_light_skin_tone": "8.0",
2202
+ "man_police_officer_tone3": "8.0",
2203
+ "man_police_officer_medium_skin_tone": "8.0",
2204
+ "man_police_officer_tone4": "8.0",
2205
+ "man_police_officer_medium_dark_skin_tone": "8.0",
2206
+ "man_police_officer_tone5": "8.0",
2207
+ "man_police_officer_dark_skin_tone": "8.0",
2208
+ "construction_worker": "6.0",
2209
+ "construction_worker_tone1": "8.0",
2210
+ "construction_worker_tone2": "8.0",
2211
+ "construction_worker_tone3": "8.0",
2212
+ "construction_worker_tone4": "8.0",
2213
+ "construction_worker_tone5": "8.0",
2214
+ "woman_construction_worker": "6.0",
2215
+ "woman_construction_worker_tone1": "8.0",
2216
+ "woman_construction_worker_light_skin_tone": "8.0",
2217
+ "woman_construction_worker_tone2": "8.0",
2218
+ "woman_construction_worker_medium_light_skin_tone": "8.0",
2219
+ "woman_construction_worker_tone3": "8.0",
2220
+ "woman_construction_worker_medium_skin_tone": "8.0",
2221
+ "woman_construction_worker_tone4": "8.0",
2222
+ "woman_construction_worker_medium_dark_skin_tone": "8.0",
2223
+ "woman_construction_worker_tone5": "8.0",
2224
+ "woman_construction_worker_dark_skin_tone": "8.0",
2225
+ "man_construction_worker": "6.0",
2226
+ "man_construction_worker_tone1": "8.0",
2227
+ "man_construction_worker_light_skin_tone": "8.0",
2228
+ "man_construction_worker_tone2": "8.0",
2229
+ "man_construction_worker_medium_light_skin_tone": "8.0",
2230
+ "man_construction_worker_tone3": "8.0",
2231
+ "man_construction_worker_medium_skin_tone": "8.0",
2232
+ "man_construction_worker_tone4": "8.0",
2233
+ "man_construction_worker_medium_dark_skin_tone": "8.0",
2234
+ "man_construction_worker_tone5": "8.0",
2235
+ "man_construction_worker_dark_skin_tone": "8.0",
2236
+ "guard": "6.0",
2237
+ "guardsman": "6.0",
2238
+ "guard_tone1": "8.0",
2239
+ "guardsman_tone1": "8.0",
2240
+ "guard_tone2": "8.0",
2241
+ "guardsman_tone2": "8.0",
2242
+ "guard_tone3": "8.0",
2243
+ "guardsman_tone3": "8.0",
2244
+ "guard_tone4": "8.0",
2245
+ "guardsman_tone4": "8.0",
2246
+ "guard_tone5": "8.0",
2247
+ "guardsman_tone5": "8.0",
2248
+ "woman_guard": "6.0",
2249
+ "woman_guard_tone1": "8.0",
2250
+ "woman_guard_light_skin_tone": "8.0",
2251
+ "woman_guard_tone2": "8.0",
2252
+ "woman_guard_medium_light_skin_tone": "8.0",
2253
+ "woman_guard_tone3": "8.0",
2254
+ "woman_guard_medium_skin_tone": "8.0",
2255
+ "woman_guard_tone4": "8.0",
2256
+ "woman_guard_medium_dark_skin_tone": "8.0",
2257
+ "woman_guard_tone5": "8.0",
2258
+ "woman_guard_dark_skin_tone": "8.0",
2259
+ "man_guard": "6.0",
2260
+ "man_guard_tone1": "8.0",
2261
+ "man_guard_light_skin_tone": "8.0",
2262
+ "man_guard_tone2": "8.0",
2263
+ "man_guard_medium_light_skin_tone": "8.0",
2264
+ "man_guard_tone3": "8.0",
2265
+ "man_guard_medium_skin_tone": "8.0",
2266
+ "man_guard_tone4": "8.0",
2267
+ "man_guard_medium_dark_skin_tone": "8.0",
2268
+ "man_guard_tone5": "8.0",
2269
+ "man_guard_dark_skin_tone": "8.0",
2270
+ "detective": "7.0",
2271
+ "spy": "7.0",
2272
+ "sleuth_or_spy": "7.0",
2273
+ "detective_tone1": "8.0",
2274
+ "spy_tone1": "8.0",
2275
+ "sleuth_or_spy_tone1": "8.0",
2276
+ "detective_tone2": "8.0",
2277
+ "spy_tone2": "8.0",
2278
+ "sleuth_or_spy_tone2": "8.0",
2279
+ "detective_tone3": "8.0",
2280
+ "spy_tone3": "8.0",
2281
+ "sleuth_or_spy_tone3": "8.0",
2282
+ "detective_tone4": "8.0",
2283
+ "spy_tone4": "8.0",
2284
+ "sleuth_or_spy_tone4": "8.0",
2285
+ "detective_tone5": "8.0",
2286
+ "spy_tone5": "8.0",
2287
+ "sleuth_or_spy_tone5": "8.0",
2288
+ "woman_detective": "7.0",
2289
+ "woman_detective_tone1": "8.0",
2290
+ "woman_detective_light_skin_tone": "8.0",
2291
+ "woman_detective_tone2": "8.0",
2292
+ "woman_detective_medium_light_skin_tone": "8.0",
2293
+ "woman_detective_tone3": "8.0",
2294
+ "woman_detective_medium_skin_tone": "8.0",
2295
+ "woman_detective_tone4": "8.0",
2296
+ "woman_detective_medium_dark_skin_tone": "8.0",
2297
+ "woman_detective_tone5": "8.0",
2298
+ "woman_detective_dark_skin_tone": "8.0",
2299
+ "man_detective": "7.0",
2300
+ "man_detective_tone1": "8.0",
2301
+ "man_detective_light_skin_tone": "8.0",
2302
+ "man_detective_tone2": "8.0",
2303
+ "man_detective_medium_light_skin_tone": "8.0",
2304
+ "man_detective_tone3": "8.0",
2305
+ "man_detective_medium_skin_tone": "8.0",
2306
+ "man_detective_tone4": "8.0",
2307
+ "man_detective_medium_dark_skin_tone": "8.0",
2308
+ "man_detective_tone5": "8.0",
2309
+ "man_detective_dark_skin_tone": "8.0",
2310
+ "woman_health_worker": "6.0",
2311
+ "woman_health_worker_tone1": "8.0",
2312
+ "woman_health_worker_light_skin_tone": "8.0",
2313
+ "woman_health_worker_tone2": "8.0",
2314
+ "woman_health_worker_medium_light_skin_tone": "8.0",
2315
+ "woman_health_worker_tone3": "8.0",
2316
+ "woman_health_worker_medium_skin_tone": "8.0",
2317
+ "woman_health_worker_tone4": "8.0",
2318
+ "woman_health_worker_medium_dark_skin_tone": "8.0",
2319
+ "woman_health_worker_tone5": "8.0",
2320
+ "woman_health_worker_dark_skin_tone": "8.0",
2321
+ "man_health_worker": "6.0",
2322
+ "man_health_worker_tone1": "8.0",
2323
+ "man_health_worker_light_skin_tone": "8.0",
2324
+ "man_health_worker_tone2": "8.0",
2325
+ "man_health_worker_medium_light_skin_tone": "8.0",
2326
+ "man_health_worker_tone3": "8.0",
2327
+ "man_health_worker_medium_skin_tone": "8.0",
2328
+ "man_health_worker_tone4": "8.0",
2329
+ "man_health_worker_medium_dark_skin_tone": "8.0",
2330
+ "man_health_worker_tone5": "8.0",
2331
+ "man_health_worker_dark_skin_tone": "8.0",
2332
+ "woman_farmer": "6.0",
2333
+ "woman_farmer_tone1": "8.0",
2334
+ "woman_farmer_light_skin_tone": "8.0",
2335
+ "woman_farmer_tone2": "8.0",
2336
+ "woman_farmer_medium_light_skin_tone": "8.0",
2337
+ "woman_farmer_tone3": "8.0",
2338
+ "woman_farmer_medium_skin_tone": "8.0",
2339
+ "woman_farmer_tone4": "8.0",
2340
+ "woman_farmer_medium_dark_skin_tone": "8.0",
2341
+ "woman_farmer_tone5": "8.0",
2342
+ "woman_farmer_dark_skin_tone": "8.0",
2343
+ "man_farmer": "6.0",
2344
+ "man_farmer_tone1": "8.0",
2345
+ "man_farmer_light_skin_tone": "8.0",
2346
+ "man_farmer_tone2": "8.0",
2347
+ "man_farmer_medium_light_skin_tone": "8.0",
2348
+ "man_farmer_tone3": "8.0",
2349
+ "man_farmer_medium_skin_tone": "8.0",
2350
+ "man_farmer_tone4": "8.0",
2351
+ "man_farmer_medium_dark_skin_tone": "8.0",
2352
+ "man_farmer_tone5": "8.0",
2353
+ "man_farmer_dark_skin_tone": "8.0",
2354
+ "woman_cook": "6.0",
2355
+ "woman_cook_tone1": "8.0",
2356
+ "woman_cook_light_skin_tone": "8.0",
2357
+ "woman_cook_tone2": "8.0",
2358
+ "woman_cook_medium_light_skin_tone": "8.0",
2359
+ "woman_cook_tone3": "8.0",
2360
+ "woman_cook_medium_skin_tone": "8.0",
2361
+ "woman_cook_tone4": "8.0",
2362
+ "woman_cook_medium_dark_skin_tone": "8.0",
2363
+ "woman_cook_tone5": "8.0",
2364
+ "woman_cook_dark_skin_tone": "8.0",
2365
+ "man_cook": "6.0",
2366
+ "man_cook_tone1": "8.0",
2367
+ "man_cook_light_skin_tone": "8.0",
2368
+ "man_cook_tone2": "8.0",
2369
+ "man_cook_medium_light_skin_tone": "8.0",
2370
+ "man_cook_tone3": "8.0",
2371
+ "man_cook_medium_skin_tone": "8.0",
2372
+ "man_cook_tone4": "8.0",
2373
+ "man_cook_medium_dark_skin_tone": "8.0",
2374
+ "man_cook_tone5": "8.0",
2375
+ "man_cook_dark_skin_tone": "8.0",
2376
+ "woman_student": "6.0",
2377
+ "woman_student_tone1": "8.0",
2378
+ "woman_student_light_skin_tone": "8.0",
2379
+ "woman_student_tone2": "8.0",
2380
+ "woman_student_medium_light_skin_tone": "8.0",
2381
+ "woman_student_tone3": "8.0",
2382
+ "woman_student_medium_skin_tone": "8.0",
2383
+ "woman_student_tone4": "8.0",
2384
+ "woman_student_medium_dark_skin_tone": "8.0",
2385
+ "woman_student_tone5": "8.0",
2386
+ "woman_student_dark_skin_tone": "8.0",
2387
+ "man_student": "6.0",
2388
+ "man_student_tone1": "8.0",
2389
+ "man_student_light_skin_tone": "8.0",
2390
+ "man_student_tone2": "8.0",
2391
+ "man_student_medium_light_skin_tone": "8.0",
2392
+ "man_student_tone3": "8.0",
2393
+ "man_student_medium_skin_tone": "8.0",
2394
+ "man_student_tone4": "8.0",
2395
+ "man_student_medium_dark_skin_tone": "8.0",
2396
+ "man_student_tone5": "8.0",
2397
+ "man_student_dark_skin_tone": "8.0",
2398
+ "woman_singer": "6.0",
2399
+ "woman_singer_tone1": "8.0",
2400
+ "woman_singer_light_skin_tone": "8.0",
2401
+ "woman_singer_tone2": "8.0",
2402
+ "woman_singer_medium_light_skin_tone": "8.0",
2403
+ "woman_singer_tone3": "8.0",
2404
+ "woman_singer_medium_skin_tone": "8.0",
2405
+ "woman_singer_tone4": "8.0",
2406
+ "woman_singer_medium_dark_skin_tone": "8.0",
2407
+ "woman_singer_tone5": "8.0",
2408
+ "woman_singer_dark_skin_tone": "8.0",
2409
+ "man_singer": "6.0",
2410
+ "man_singer_tone1": "8.0",
2411
+ "man_singer_light_skin_tone": "8.0",
2412
+ "man_singer_tone2": "8.0",
2413
+ "man_singer_medium_light_skin_tone": "8.0",
2414
+ "man_singer_tone3": "8.0",
2415
+ "man_singer_medium_skin_tone": "8.0",
2416
+ "man_singer_tone4": "8.0",
2417
+ "man_singer_medium_dark_skin_tone": "8.0",
2418
+ "man_singer_tone5": "8.0",
2419
+ "man_singer_dark_skin_tone": "8.0",
2420
+ "woman_teacher": "6.0",
2421
+ "woman_teacher_tone1": "8.0",
2422
+ "woman_teacher_light_skin_tone": "8.0",
2423
+ "woman_teacher_tone2": "8.0",
2424
+ "woman_teacher_medium_light_skin_tone": "8.0",
2425
+ "woman_teacher_tone3": "8.0",
2426
+ "woman_teacher_medium_skin_tone": "8.0",
2427
+ "woman_teacher_tone4": "8.0",
2428
+ "woman_teacher_medium_dark_skin_tone": "8.0",
2429
+ "woman_teacher_tone5": "8.0",
2430
+ "woman_teacher_dark_skin_tone": "8.0",
2431
+ "man_teacher": "6.0",
2432
+ "man_teacher_tone1": "8.0",
2433
+ "man_teacher_light_skin_tone": "8.0",
2434
+ "man_teacher_tone2": "8.0",
2435
+ "man_teacher_medium_light_skin_tone": "8.0",
2436
+ "man_teacher_tone3": "8.0",
2437
+ "man_teacher_medium_skin_tone": "8.0",
2438
+ "man_teacher_tone4": "8.0",
2439
+ "man_teacher_medium_dark_skin_tone": "8.0",
2440
+ "man_teacher_tone5": "8.0",
2441
+ "man_teacher_dark_skin_tone": "8.0",
2442
+ "woman_factory_worker": "6.0",
2443
+ "woman_factory_worker_tone1": "8.0",
2444
+ "woman_factory_worker_light_skin_tone": "8.0",
2445
+ "woman_factory_worker_tone2": "8.0",
2446
+ "woman_factory_worker_medium_light_skin_tone": "8.0",
2447
+ "woman_factory_worker_tone3": "8.0",
2448
+ "woman_factory_worker_medium_skin_tone": "8.0",
2449
+ "woman_factory_worker_tone4": "8.0",
2450
+ "woman_factory_worker_medium_dark_skin_tone": "8.0",
2451
+ "woman_factory_worker_tone5": "8.0",
2452
+ "woman_factory_worker_dark_skin_tone": "8.0",
2453
+ "man_factory_worker": "6.0",
2454
+ "man_factory_worker_tone1": "8.0",
2455
+ "man_factory_worker_light_skin_tone": "8.0",
2456
+ "man_factory_worker_tone2": "8.0",
2457
+ "man_factory_worker_medium_light_skin_tone": "8.0",
2458
+ "man_factory_worker_tone3": "8.0",
2459
+ "man_factory_worker_medium_skin_tone": "8.0",
2460
+ "man_factory_worker_tone4": "8.0",
2461
+ "man_factory_worker_medium_dark_skin_tone": "8.0",
2462
+ "man_factory_worker_tone5": "8.0",
2463
+ "man_factory_worker_dark_skin_tone": "8.0",
2464
+ "woman_technologist": "6.0",
2465
+ "woman_technologist_tone1": "8.0",
2466
+ "woman_technologist_light_skin_tone": "8.0",
2467
+ "woman_technologist_tone2": "8.0",
2468
+ "woman_technologist_medium_light_skin_tone": "8.0",
2469
+ "woman_technologist_tone3": "8.0",
2470
+ "woman_technologist_medium_skin_tone": "8.0",
2471
+ "woman_technologist_tone4": "8.0",
2472
+ "woman_technologist_medium_dark_skin_tone": "8.0",
2473
+ "woman_technologist_tone5": "8.0",
2474
+ "woman_technologist_dark_skin_tone": "8.0",
2475
+ "man_technologist": "6.0",
2476
+ "man_technologist_tone1": "8.0",
2477
+ "man_technologist_light_skin_tone": "8.0",
2478
+ "man_technologist_tone2": "8.0",
2479
+ "man_technologist_medium_light_skin_tone": "8.0",
2480
+ "man_technologist_tone3": "8.0",
2481
+ "man_technologist_medium_skin_tone": "8.0",
2482
+ "man_technologist_tone4": "8.0",
2483
+ "man_technologist_medium_dark_skin_tone": "8.0",
2484
+ "man_technologist_tone5": "8.0",
2485
+ "man_technologist_dark_skin_tone": "8.0",
2486
+ "woman_office_worker": "6.0",
2487
+ "woman_office_worker_tone1": "8.0",
2488
+ "woman_office_worker_light_skin_tone": "8.0",
2489
+ "woman_office_worker_tone2": "8.0",
2490
+ "woman_office_worker_medium_light_skin_tone": "8.0",
2491
+ "woman_office_worker_tone3": "8.0",
2492
+ "woman_office_worker_medium_skin_tone": "8.0",
2493
+ "woman_office_worker_tone4": "8.0",
2494
+ "woman_office_worker_medium_dark_skin_tone": "8.0",
2495
+ "woman_office_worker_tone5": "8.0",
2496
+ "woman_office_worker_dark_skin_tone": "8.0",
2497
+ "man_office_worker": "6.0",
2498
+ "man_office_worker_tone1": "8.0",
2499
+ "man_office_worker_light_skin_tone": "8.0",
2500
+ "man_office_worker_tone2": "8.0",
2501
+ "man_office_worker_medium_light_skin_tone": "8.0",
2502
+ "man_office_worker_tone3": "8.0",
2503
+ "man_office_worker_medium_skin_tone": "8.0",
2504
+ "man_office_worker_tone4": "8.0",
2505
+ "man_office_worker_medium_dark_skin_tone": "8.0",
2506
+ "man_office_worker_tone5": "8.0",
2507
+ "man_office_worker_dark_skin_tone": "8.0",
2508
+ "woman_mechanic": "6.0",
2509
+ "woman_mechanic_tone1": "8.0",
2510
+ "woman_mechanic_light_skin_tone": "8.0",
2511
+ "woman_mechanic_tone2": "8.0",
2512
+ "woman_mechanic_medium_light_skin_tone": "8.0",
2513
+ "woman_mechanic_tone3": "8.0",
2514
+ "woman_mechanic_medium_skin_tone": "8.0",
2515
+ "woman_mechanic_tone4": "8.0",
2516
+ "woman_mechanic_medium_dark_skin_tone": "8.0",
2517
+ "woman_mechanic_tone5": "8.0",
2518
+ "woman_mechanic_dark_skin_tone": "8.0",
2519
+ "man_mechanic": "6.0",
2520
+ "man_mechanic_tone1": "8.0",
2521
+ "man_mechanic_light_skin_tone": "8.0",
2522
+ "man_mechanic_tone2": "8.0",
2523
+ "man_mechanic_medium_light_skin_tone": "8.0",
2524
+ "man_mechanic_tone3": "8.0",
2525
+ "man_mechanic_medium_skin_tone": "8.0",
2526
+ "man_mechanic_tone4": "8.0",
2527
+ "man_mechanic_medium_dark_skin_tone": "8.0",
2528
+ "man_mechanic_tone5": "8.0",
2529
+ "man_mechanic_dark_skin_tone": "8.0",
2530
+ "woman_scientist": "6.0",
2531
+ "woman_scientist_tone1": "8.0",
2532
+ "woman_scientist_light_skin_tone": "8.0",
2533
+ "woman_scientist_tone2": "8.0",
2534
+ "woman_scientist_medium_light_skin_tone": "8.0",
2535
+ "woman_scientist_tone3": "8.0",
2536
+ "woman_scientist_medium_skin_tone": "8.0",
2537
+ "woman_scientist_tone4": "8.0",
2538
+ "woman_scientist_medium_dark_skin_tone": "8.0",
2539
+ "woman_scientist_tone5": "8.0",
2540
+ "woman_scientist_dark_skin_tone": "8.0",
2541
+ "man_scientist": "6.0",
2542
+ "man_scientist_tone1": "8.0",
2543
+ "man_scientist_light_skin_tone": "8.0",
2544
+ "man_scientist_tone2": "8.0",
2545
+ "man_scientist_medium_light_skin_tone": "8.0",
2546
+ "man_scientist_tone3": "8.0",
2547
+ "man_scientist_medium_skin_tone": "8.0",
2548
+ "man_scientist_tone4": "8.0",
2549
+ "man_scientist_medium_dark_skin_tone": "8.0",
2550
+ "man_scientist_tone5": "8.0",
2551
+ "man_scientist_dark_skin_tone": "8.0",
2552
+ "woman_artist": "6.0",
2553
+ "woman_artist_tone1": "8.0",
2554
+ "woman_artist_light_skin_tone": "8.0",
2555
+ "woman_artist_tone2": "8.0",
2556
+ "woman_artist_medium_light_skin_tone": "8.0",
2557
+ "woman_artist_tone3": "8.0",
2558
+ "woman_artist_medium_skin_tone": "8.0",
2559
+ "woman_artist_tone4": "8.0",
2560
+ "woman_artist_medium_dark_skin_tone": "8.0",
2561
+ "woman_artist_tone5": "8.0",
2562
+ "woman_artist_dark_skin_tone": "8.0",
2563
+ "man_artist": "6.0",
2564
+ "man_artist_tone1": "8.0",
2565
+ "man_artist_light_skin_tone": "8.0",
2566
+ "man_artist_tone2": "8.0",
2567
+ "man_artist_medium_light_skin_tone": "8.0",
2568
+ "man_artist_tone3": "8.0",
2569
+ "man_artist_medium_skin_tone": "8.0",
2570
+ "man_artist_tone4": "8.0",
2571
+ "man_artist_medium_dark_skin_tone": "8.0",
2572
+ "man_artist_tone5": "8.0",
2573
+ "man_artist_dark_skin_tone": "8.0",
2574
+ "woman_firefighter": "6.0",
2575
+ "woman_firefighter_tone1": "8.0",
2576
+ "woman_firefighter_light_skin_tone": "8.0",
2577
+ "woman_firefighter_tone2": "8.0",
2578
+ "woman_firefighter_medium_light_skin_tone": "8.0",
2579
+ "woman_firefighter_tone3": "8.0",
2580
+ "woman_firefighter_medium_skin_tone": "8.0",
2581
+ "woman_firefighter_tone4": "8.0",
2582
+ "woman_firefighter_medium_dark_skin_tone": "8.0",
2583
+ "woman_firefighter_tone5": "8.0",
2584
+ "woman_firefighter_dark_skin_tone": "8.0",
2585
+ "man_firefighter": "6.0",
2586
+ "man_firefighter_tone1": "8.0",
2587
+ "man_firefighter_light_skin_tone": "8.0",
2588
+ "man_firefighter_tone2": "8.0",
2589
+ "man_firefighter_medium_light_skin_tone": "8.0",
2590
+ "man_firefighter_tone3": "8.0",
2591
+ "man_firefighter_medium_skin_tone": "8.0",
2592
+ "man_firefighter_tone4": "8.0",
2593
+ "man_firefighter_medium_dark_skin_tone": "8.0",
2594
+ "man_firefighter_tone5": "8.0",
2595
+ "man_firefighter_dark_skin_tone": "8.0",
2596
+ "woman_pilot": "6.0",
2597
+ "woman_pilot_tone1": "8.0",
2598
+ "woman_pilot_light_skin_tone": "8.0",
2599
+ "woman_pilot_tone2": "8.0",
2600
+ "woman_pilot_medium_light_skin_tone": "8.0",
2601
+ "woman_pilot_tone3": "8.0",
2602
+ "woman_pilot_medium_skin_tone": "8.0",
2603
+ "woman_pilot_tone4": "8.0",
2604
+ "woman_pilot_medium_dark_skin_tone": "8.0",
2605
+ "woman_pilot_tone5": "8.0",
2606
+ "woman_pilot_dark_skin_tone": "8.0",
2607
+ "man_pilot": "6.0",
2608
+ "man_pilot_tone1": "8.0",
2609
+ "man_pilot_light_skin_tone": "8.0",
2610
+ "man_pilot_tone2": "8.0",
2611
+ "man_pilot_medium_light_skin_tone": "8.0",
2612
+ "man_pilot_tone3": "8.0",
2613
+ "man_pilot_medium_skin_tone": "8.0",
2614
+ "man_pilot_tone4": "8.0",
2615
+ "man_pilot_medium_dark_skin_tone": "8.0",
2616
+ "man_pilot_tone5": "8.0",
2617
+ "man_pilot_dark_skin_tone": "8.0",
2618
+ "woman_astronaut": "6.0",
2619
+ "woman_astronaut_tone1": "8.0",
2620
+ "woman_astronaut_light_skin_tone": "8.0",
2621
+ "woman_astronaut_tone2": "8.0",
2622
+ "woman_astronaut_medium_light_skin_tone": "8.0",
2623
+ "woman_astronaut_tone3": "8.0",
2624
+ "woman_astronaut_medium_skin_tone": "8.0",
2625
+ "woman_astronaut_tone4": "8.0",
2626
+ "woman_astronaut_medium_dark_skin_tone": "8.0",
2627
+ "woman_astronaut_tone5": "8.0",
2628
+ "woman_astronaut_dark_skin_tone": "8.0",
2629
+ "man_astronaut": "6.0",
2630
+ "man_astronaut_tone1": "8.0",
2631
+ "man_astronaut_light_skin_tone": "8.0",
2632
+ "man_astronaut_tone2": "8.0",
2633
+ "man_astronaut_medium_light_skin_tone": "8.0",
2634
+ "man_astronaut_tone3": "8.0",
2635
+ "man_astronaut_medium_skin_tone": "8.0",
2636
+ "man_astronaut_tone4": "8.0",
2637
+ "man_astronaut_medium_dark_skin_tone": "8.0",
2638
+ "man_astronaut_tone5": "8.0",
2639
+ "man_astronaut_dark_skin_tone": "8.0",
2640
+ "woman_judge": "6.0",
2641
+ "woman_judge_tone1": "8.0",
2642
+ "woman_judge_light_skin_tone": "8.0",
2643
+ "woman_judge_tone2": "8.0",
2644
+ "woman_judge_medium_light_skin_tone": "8.0",
2645
+ "woman_judge_tone3": "8.0",
2646
+ "woman_judge_medium_skin_tone": "8.0",
2647
+ "woman_judge_tone4": "8.0",
2648
+ "woman_judge_medium_dark_skin_tone": "8.0",
2649
+ "woman_judge_tone5": "8.0",
2650
+ "woman_judge_dark_skin_tone": "8.0",
2651
+ "man_judge": "6.0",
2652
+ "man_judge_tone1": "8.0",
2653
+ "man_judge_light_skin_tone": "8.0",
2654
+ "man_judge_tone2": "8.0",
2655
+ "man_judge_medium_light_skin_tone": "8.0",
2656
+ "man_judge_tone3": "8.0",
2657
+ "man_judge_medium_skin_tone": "8.0",
2658
+ "man_judge_tone4": "8.0",
2659
+ "man_judge_medium_dark_skin_tone": "8.0",
2660
+ "man_judge_tone5": "8.0",
2661
+ "man_judge_dark_skin_tone": "8.0",
2662
+ "bride_with_veil": "6.0",
2663
+ "bride_with_veil_tone1": "8.0",
2664
+ "bride_with_veil_tone2": "8.0",
2665
+ "bride_with_veil_tone3": "8.0",
2666
+ "bride_with_veil_tone4": "8.0",
2667
+ "bride_with_veil_tone5": "8.0",
2668
+ "man_in_tuxedo": "9.0",
2669
+ "man_in_tuxedo_tone1": "9.0",
2670
+ "tuxedo_tone1": "9.0",
2671
+ "man_in_tuxedo_tone2": "9.0",
2672
+ "tuxedo_tone2": "9.0",
2673
+ "man_in_tuxedo_tone3": "9.0",
2674
+ "tuxedo_tone3": "9.0",
2675
+ "man_in_tuxedo_tone4": "9.0",
2676
+ "tuxedo_tone4": "9.0",
2677
+ "man_in_tuxedo_tone5": "9.0",
2678
+ "tuxedo_tone5": "9.0",
2679
+ "princess": "6.0",
2680
+ "princess_tone1": "8.0",
2681
+ "princess_tone2": "8.0",
2682
+ "princess_tone3": "8.0",
2683
+ "princess_tone4": "8.0",
2684
+ "princess_tone5": "8.0",
2685
+ "prince": "9.0",
2686
+ "prince_tone1": "9.0",
2687
+ "prince_tone2": "9.0",
2688
+ "prince_tone3": "9.0",
2689
+ "prince_tone4": "9.0",
2690
+ "prince_tone5": "9.0",
2691
+ "mrs_claus": "9.0",
2692
+ "mother_christmas": "9.0",
2693
+ "mrs_claus_tone1": "9.0",
2694
+ "mother_christmas_tone1": "9.0",
2695
+ "mrs_claus_tone3": "9.0",
2696
+ "mother_christmas_tone3": "9.0",
2697
+ "mrs_claus_tone2": "9.0",
2698
+ "mother_christmas_tone2": "9.0",
2699
+ "mrs_claus_tone4": "9.0",
2700
+ "mother_christmas_tone4": "9.0",
2701
+ "mrs_claus_tone5": "9.0",
2702
+ "mother_christmas_tone5": "9.0",
2703
+ "santa": "6.0",
2704
+ "santa_tone1": "8.0",
2705
+ "santa_tone2": "8.0",
2706
+ "santa_tone3": "8.0",
2707
+ "santa_tone4": "8.0",
2708
+ "santa_tone5": "8.0",
2709
+ "superhero": "11.0",
2710
+ "superhero_tone1": "11.0",
2711
+ "superhero_light_skin_tone": "11.0",
2712
+ "superhero_tone2": "11.0",
2713
+ "superhero_medium_light_skin_tone": "11.0",
2714
+ "superhero_tone3": "11.0",
2715
+ "superhero_medium_skin_tone": "11.0",
2716
+ "superhero_tone4": "11.0",
2717
+ "superhero_medium_dark_skin_tone": "11.0",
2718
+ "superhero_tone5": "11.0",
2719
+ "superhero_dark_skin_tone": "11.0",
2720
+ "woman_superhero": "11.0",
2721
+ "woman_superhero_tone1": "11.0",
2722
+ "woman_superhero_light_skin_tone": "11.0",
2723
+ "woman_superhero_tone2": "11.0",
2724
+ "woman_superhero_medium_light_skin_tone": "11.0",
2725
+ "woman_superhero_tone3": "11.0",
2726
+ "woman_superhero_medium_skin_tone": "11.0",
2727
+ "woman_superhero_tone4": "11.0",
2728
+ "woman_superhero_medium_dark_skin_tone": "11.0",
2729
+ "woman_superhero_tone5": "11.0",
2730
+ "woman_superhero_dark_skin_tone": "11.0",
2731
+ "man_superhero": "11.0",
2732
+ "man_superhero_tone1": "11.0",
2733
+ "man_superhero_light_skin_tone": "11.0",
2734
+ "man_superhero_tone2": "11.0",
2735
+ "man_superhero_medium_light_skin_tone": "11.0",
2736
+ "man_superhero_tone3": "11.0",
2737
+ "man_superhero_medium_skin_tone": "11.0",
2738
+ "man_superhero_tone4": "11.0",
2739
+ "man_superhero_medium_dark_skin_tone": "11.0",
2740
+ "man_superhero_tone5": "11.0",
2741
+ "man_superhero_dark_skin_tone": "11.0",
2742
+ "supervillain": "11.0",
2743
+ "supervillain_tone1": "11.0",
2744
+ "supervillain_light_skin_tone": "11.0",
2745
+ "supervillain_tone2": "11.0",
2746
+ "supervillain_medium_light_skin_tone": "11.0",
2747
+ "supervillain_tone3": "11.0",
2748
+ "supervillain_medium_skin_tone": "11.0",
2749
+ "supervillain_tone4": "11.0",
2750
+ "supervillain_medium_dark_skin_tone": "11.0",
2751
+ "supervillain_tone5": "11.0",
2752
+ "supervillain_dark_skin_tone": "11.0",
2753
+ "woman_supervillain_tone1": "11.0",
2754
+ "woman_supervillain_light_skin_tone": "11.0",
2755
+ "woman_supervillain": "11.0",
2756
+ "woman_supervillain_tone2": "11.0",
2757
+ "woman_supervillain_medium_light_skin_tone": "11.0",
2758
+ "woman_supervillain_tone3": "11.0",
2759
+ "woman_supervillain_medium_skin_tone": "11.0",
2760
+ "woman_supervillain_tone4": "11.0",
2761
+ "woman_supervillain_medium_dark_skin_tone": "11.0",
2762
+ "woman_supervillain_tone5": "11.0",
2763
+ "woman_supervillain_dark_skin_tone": "11.0",
2764
+ "man_supervillain": "11.0",
2765
+ "man_supervillain_tone1": "11.0",
2766
+ "man_supervillain_light_skin_tone": "11.0",
2767
+ "man_supervillain_tone2": "11.0",
2768
+ "man_supervillain_medium_light_skin_tone": "11.0",
2769
+ "man_supervillain_tone3": "11.0",
2770
+ "man_supervillain_medium_skin_tone": "11.0",
2771
+ "man_supervillain_tone4": "11.0",
2772
+ "man_supervillain_medium_dark_skin_tone": "11.0",
2773
+ "man_supervillain_tone5": "11.0",
2774
+ "man_supervillain_dark_skin_tone": "11.0",
2775
+ "mage": "10.0",
2776
+ "mage_tone1": "10.0",
2777
+ "mage_light_skin_tone": "10.0",
2778
+ "mage_tone2": "10.0",
2779
+ "mage_medium_light_skin_tone": "10.0",
2780
+ "mage_tone3": "10.0",
2781
+ "mage_medium_skin_tone": "10.0",
2782
+ "mage_tone4": "10.0",
2783
+ "mage_medium_dark_skin_tone": "10.0",
2784
+ "mage_tone5": "10.0",
2785
+ "mage_dark_skin_tone": "10.0",
2786
+ "woman_mage": "10.0",
2787
+ "woman_mage_tone1": "10.0",
2788
+ "woman_mage_light_skin_tone": "10.0",
2789
+ "woman_mage_tone2": "10.0",
2790
+ "woman_mage_medium_light_skin_tone": "10.0",
2791
+ "woman_mage_tone3": "10.0",
2792
+ "woman_mage_medium_skin_tone": "10.0",
2793
+ "woman_mage_tone4": "10.0",
2794
+ "woman_mage_medium_dark_skin_tone": "10.0",
2795
+ "woman_mage_tone5": "10.0",
2796
+ "woman_mage_dark_skin_tone": "10.0",
2797
+ "man_mage": "10.0",
2798
+ "man_mage_tone1": "10.0",
2799
+ "man_mage_light_skin_tone": "10.0",
2800
+ "man_mage_tone2": "10.0",
2801
+ "man_mage_medium_light_skin_tone": "10.0",
2802
+ "man_mage_tone3": "10.0",
2803
+ "man_mage_medium_skin_tone": "10.0",
2804
+ "man_mage_tone4": "10.0",
2805
+ "man_mage_medium_dark_skin_tone": "10.0",
2806
+ "man_mage_tone5": "10.0",
2807
+ "man_mage_dark_skin_tone": "10.0",
2808
+ "elf": "10.0",
2809
+ "elf_tone1": "10.0",
2810
+ "elf_light_skin_tone": "10.0",
2811
+ "elf_tone2": "10.0",
2812
+ "elf_medium_light_skin_tone": "10.0",
2813
+ "elf_tone3": "10.0",
2814
+ "elf_medium_skin_tone": "10.0",
2815
+ "elf_tone4": "10.0",
2816
+ "elf_medium_dark_skin_tone": "10.0",
2817
+ "elf_tone5": "10.0",
2818
+ "elf_dark_skin_tone": "10.0",
2819
+ "woman_elf": "10.0",
2820
+ "woman_elf_tone1": "10.0",
2821
+ "woman_elf_light_skin_tone": "10.0",
2822
+ "woman_elf_tone2": "10.0",
2823
+ "woman_elf_medium_light_skin_tone": "10.0",
2824
+ "woman_elf_tone3": "10.0",
2825
+ "woman_elf_medium_skin_tone": "10.0",
2826
+ "woman_elf_tone4": "10.0",
2827
+ "woman_elf_medium_dark_skin_tone": "10.0",
2828
+ "woman_elf_tone5": "10.0",
2829
+ "woman_elf_dark_skin_tone": "10.0",
2830
+ "man_elf": "10.0",
2831
+ "man_elf_tone1": "10.0",
2832
+ "man_elf_light_skin_tone": "10.0",
2833
+ "man_elf_tone2": "10.0",
2834
+ "man_elf_medium_light_skin_tone": "10.0",
2835
+ "man_elf_tone3": "10.0",
2836
+ "man_elf_medium_skin_tone": "10.0",
2837
+ "man_elf_tone4": "10.0",
2838
+ "man_elf_medium_dark_skin_tone": "10.0",
2839
+ "man_elf_tone5": "10.0",
2840
+ "man_elf_dark_skin_tone": "10.0",
2841
+ "vampire": "10.0",
2842
+ "vampire_tone1": "10.0",
2843
+ "vampire_light_skin_tone": "10.0",
2844
+ "vampire_tone2": "10.0",
2845
+ "vampire_medium_light_skin_tone": "10.0",
2846
+ "vampire_tone3": "10.0",
2847
+ "vampire_medium_skin_tone": "10.0",
2848
+ "vampire_tone4": "10.0",
2849
+ "vampire_medium_dark_skin_tone": "10.0",
2850
+ "vampire_tone5": "10.0",
2851
+ "vampire_dark_skin_tone": "10.0",
2852
+ "woman_vampire": "10.0",
2853
+ "woman_vampire_tone1": "10.0",
2854
+ "woman_vampire_light_skin_tone": "10.0",
2855
+ "woman_vampire_tone2": "10.0",
2856
+ "woman_vampire_medium_light_skin_tone": "10.0",
2857
+ "woman_vampire_tone3": "10.0",
2858
+ "woman_vampire_medium_skin_tone": "10.0",
2859
+ "woman_vampire_tone4": "10.0",
2860
+ "woman_vampire_medium_dark_skin_tone": "10.0",
2861
+ "woman_vampire_tone5": "10.0",
2862
+ "woman_vampire_dark_skin_tone": "10.0",
2863
+ "man_vampire": "10.0",
2864
+ "man_vampire_tone1": "10.0",
2865
+ "man_vampire_light_skin_tone": "10.0",
2866
+ "man_vampire_tone2": "10.0",
2867
+ "man_vampire_medium_light_skin_tone": "10.0",
2868
+ "man_vampire_tone3": "10.0",
2869
+ "man_vampire_medium_skin_tone": "10.0",
2870
+ "man_vampire_tone4": "10.0",
2871
+ "man_vampire_medium_dark_skin_tone": "10.0",
2872
+ "man_vampire_tone5": "10.0",
2873
+ "man_vampire_dark_skin_tone": "10.0",
2874
+ "zombie": "10.0",
2875
+ "woman_zombie": "10.0",
2876
+ "man_zombie": "10.0",
2877
+ "genie": "10.0",
2878
+ "woman_genie": "10.0",
2879
+ "man_genie": "10.0",
2880
+ "merperson": "10.0",
2881
+ "merperson_tone1": "10.0",
2882
+ "merperson_light_skin_tone": "10.0",
2883
+ "merperson_tone2": "10.0",
2884
+ "merperson_medium_light_skin_tone": "10.0",
2885
+ "merperson_tone3": "10.0",
2886
+ "merperson_medium_skin_tone": "10.0",
2887
+ "merperson_tone4": "10.0",
2888
+ "merperson_medium_dark_skin_tone": "10.0",
2889
+ "merperson_tone5": "10.0",
2890
+ "merperson_dark_skin_tone": "10.0",
2891
+ "mermaid": "10.0",
2892
+ "mermaid_tone1": "10.0",
2893
+ "mermaid_light_skin_tone": "10.0",
2894
+ "mermaid_tone2": "10.0",
2895
+ "mermaid_medium_light_skin_tone": "10.0",
2896
+ "mermaid_tone3": "10.0",
2897
+ "mermaid_medium_skin_tone": "10.0",
2898
+ "mermaid_tone4": "10.0",
2899
+ "mermaid_medium_dark_skin_tone": "10.0",
2900
+ "mermaid_tone5": "10.0",
2901
+ "mermaid_dark_skin_tone": "10.0",
2902
+ "merman": "10.0",
2903
+ "merman_tone1": "10.0",
2904
+ "merman_light_skin_tone": "10.0",
2905
+ "merman_tone2": "10.0",
2906
+ "merman_medium_light_skin_tone": "10.0",
2907
+ "merman_tone3": "10.0",
2908
+ "merman_medium_skin_tone": "10.0",
2909
+ "merman_tone4": "10.0",
2910
+ "merman_medium_dark_skin_tone": "10.0",
2911
+ "merman_tone5": "10.0",
2912
+ "merman_dark_skin_tone": "10.0",
2913
+ "fairy": "10.0",
2914
+ "fairy_tone1": "10.0",
2915
+ "fairy_light_skin_tone": "10.0",
2916
+ "fairy_tone2": "10.0",
2917
+ "fairy_medium_light_skin_tone": "10.0",
2918
+ "fairy_tone3": "10.0",
2919
+ "fairy_medium_skin_tone": "10.0",
2920
+ "fairy_tone4": "10.0",
2921
+ "fairy_medium_dark_skin_tone": "10.0",
2922
+ "fairy_tone5": "10.0",
2923
+ "fairy_dark_skin_tone": "10.0",
2924
+ "woman_fairy": "10.0",
2925
+ "woman_fairy_tone1": "10.0",
2926
+ "woman_fairy_light_skin_tone": "10.0",
2927
+ "woman_fairy_tone2": "10.0",
2928
+ "woman_fairy_medium_light_skin_tone": "10.0",
2929
+ "woman_fairy_tone3": "10.0",
2930
+ "woman_fairy_medium_skin_tone": "10.0",
2931
+ "woman_fairy_tone4": "10.0",
2932
+ "woman_fairy_medium_dark_skin_tone": "10.0",
2933
+ "woman_fairy_tone5": "10.0",
2934
+ "woman_fairy_dark_skin_tone": "10.0",
2935
+ "man_fairy": "10.0",
2936
+ "man_fairy_tone1": "10.0",
2937
+ "man_fairy_light_skin_tone": "10.0",
2938
+ "man_fairy_tone2": "10.0",
2939
+ "man_fairy_medium_light_skin_tone": "10.0",
2940
+ "man_fairy_tone3": "10.0",
2941
+ "man_fairy_medium_skin_tone": "10.0",
2942
+ "man_fairy_tone4": "10.0",
2943
+ "man_fairy_medium_dark_skin_tone": "10.0",
2944
+ "man_fairy_tone5": "10.0",
2945
+ "man_fairy_dark_skin_tone": "10.0",
2946
+ "angel": "6.0",
2947
+ "angel_tone1": "8.0",
2948
+ "angel_tone2": "8.0",
2949
+ "angel_tone3": "8.0",
2950
+ "angel_tone4": "8.0",
2951
+ "angel_tone5": "8.0",
2952
+ "pregnant_woman": "9.0",
2953
+ "expecting_woman": "9.0",
2954
+ "pregnant_woman_tone1": "9.0",
2955
+ "expecting_woman_tone1": "9.0",
2956
+ "pregnant_woman_tone2": "9.0",
2957
+ "expecting_woman_tone2": "9.0",
2958
+ "pregnant_woman_tone3": "9.0",
2959
+ "expecting_woman_tone3": "9.0",
2960
+ "pregnant_woman_tone4": "9.0",
2961
+ "expecting_woman_tone4": "9.0",
2962
+ "pregnant_woman_tone5": "9.0",
2963
+ "expecting_woman_tone5": "9.0",
2964
+ "breast_feeding": "10.0",
2965
+ "breast_feeding_tone1": "10.0",
2966
+ "breast_feeding_light_skin_tone": "10.0",
2967
+ "breast_feeding_tone2": "10.0",
2968
+ "breast_feeding_medium_light_skin_tone": "10.0",
2969
+ "breast_feeding_tone3": "10.0",
2970
+ "breast_feeding_medium_skin_tone": "10.0",
2971
+ "breast_feeding_tone4": "10.0",
2972
+ "breast_feeding_medium_dark_skin_tone": "10.0",
2973
+ "breast_feeding_tone5": "10.0",
2974
+ "breast_feeding_dark_skin_tone": "10.0",
2975
+ "person_bowing": "6.0",
2976
+ "bow": "6.0",
2977
+ "person_bowing_tone1": "8.0",
2978
+ "bow_tone1": "8.0",
2979
+ "person_bowing_tone2": "8.0",
2980
+ "bow_tone2": "8.0",
2981
+ "person_bowing_tone3": "8.0",
2982
+ "bow_tone3": "8.0",
2983
+ "person_bowing_tone4": "8.0",
2984
+ "bow_tone4": "8.0",
2985
+ "person_bowing_tone5": "8.0",
2986
+ "bow_tone5": "8.0",
2987
+ "woman_bowing": "6.0",
2988
+ "woman_bowing_tone1": "8.0",
2989
+ "woman_bowing_light_skin_tone": "8.0",
2990
+ "woman_bowing_tone2": "8.0",
2991
+ "woman_bowing_medium_light_skin_tone": "8.0",
2992
+ "woman_bowing_tone3": "8.0",
2993
+ "woman_bowing_medium_skin_tone": "8.0",
2994
+ "woman_bowing_tone4": "8.0",
2995
+ "woman_bowing_medium_dark_skin_tone": "8.0",
2996
+ "woman_bowing_tone5": "8.0",
2997
+ "woman_bowing_dark_skin_tone": "8.0",
2998
+ "man_bowing": "6.0",
2999
+ "man_bowing_tone1": "8.0",
3000
+ "man_bowing_light_skin_tone": "8.0",
3001
+ "man_bowing_tone2": "8.0",
3002
+ "man_bowing_medium_light_skin_tone": "8.0",
3003
+ "man_bowing_tone3": "8.0",
3004
+ "man_bowing_medium_skin_tone": "8.0",
3005
+ "man_bowing_tone4": "8.0",
3006
+ "man_bowing_medium_dark_skin_tone": "8.0",
3007
+ "man_bowing_tone5": "8.0",
3008
+ "man_bowing_dark_skin_tone": "8.0",
3009
+ "person_tipping_hand": "6.0",
3010
+ "information_desk_person": "6.0",
3011
+ "person_tipping_hand_tone1": "8.0",
3012
+ "information_desk_person_tone1": "8.0",
3013
+ "person_tipping_hand_tone2": "8.0",
3014
+ "information_desk_person_tone2": "8.0",
3015
+ "person_tipping_hand_tone3": "8.0",
3016
+ "information_desk_person_tone3": "8.0",
3017
+ "person_tipping_hand_tone4": "8.0",
3018
+ "information_desk_person_tone4": "8.0",
3019
+ "person_tipping_hand_tone5": "8.0",
3020
+ "information_desk_person_tone5": "8.0",
3021
+ "woman_tipping_hand": "6.0",
3022
+ "woman_tipping_hand_tone1": "8.0",
3023
+ "woman_tipping_hand_light_skin_tone": "8.0",
3024
+ "woman_tipping_hand_tone2": "8.0",
3025
+ "woman_tipping_hand_medium_light_skin_tone": "8.0",
3026
+ "woman_tipping_hand_tone3": "8.0",
3027
+ "woman_tipping_hand_medium_skin_tone": "8.0",
3028
+ "woman_tipping_hand_tone4": "8.0",
3029
+ "woman_tipping_hand_medium_dark_skin_tone": "8.0",
3030
+ "woman_tipping_hand_tone5": "8.0",
3031
+ "woman_tipping_hand_dark_skin_tone": "8.0",
3032
+ "man_tipping_hand": "6.0",
3033
+ "man_tipping_hand_tone1": "8.0",
3034
+ "man_tipping_hand_light_skin_tone": "8.0",
3035
+ "man_tipping_hand_tone2": "8.0",
3036
+ "man_tipping_hand_medium_light_skin_tone": "8.0",
3037
+ "man_tipping_hand_tone3": "8.0",
3038
+ "man_tipping_hand_medium_skin_tone": "8.0",
3039
+ "man_tipping_hand_tone4": "8.0",
3040
+ "man_tipping_hand_medium_dark_skin_tone": "8.0",
3041
+ "man_tipping_hand_tone5": "8.0",
3042
+ "man_tipping_hand_dark_skin_tone": "8.0",
3043
+ "person_gesturing_no": "6.0",
3044
+ "no_good": "6.0",
3045
+ "person_gesturing_no_tone1": "8.0",
3046
+ "no_good_tone1": "8.0",
3047
+ "person_gesturing_no_tone2": "8.0",
3048
+ "no_good_tone2": "8.0",
3049
+ "person_gesturing_no_tone3": "8.0",
3050
+ "no_good_tone3": "8.0",
3051
+ "person_gesturing_no_tone4": "8.0",
3052
+ "no_good_tone4": "8.0",
3053
+ "person_gesturing_no_tone5": "8.0",
3054
+ "no_good_tone5": "8.0",
3055
+ "woman_gesturing_no": "6.0",
3056
+ "woman_gesturing_no_tone1": "8.0",
3057
+ "woman_gesturing_no_light_skin_tone": "8.0",
3058
+ "woman_gesturing_no_tone2": "8.0",
3059
+ "woman_gesturing_no_medium_light_skin_tone": "8.0",
3060
+ "woman_gesturing_no_tone3": "8.0",
3061
+ "woman_gesturing_no_medium_skin_tone": "8.0",
3062
+ "woman_gesturing_no_tone4": "8.0",
3063
+ "woman_gesturing_no_medium_dark_skin_tone": "8.0",
3064
+ "woman_gesturing_no_tone5": "8.0",
3065
+ "woman_gesturing_no_dark_skin_tone": "8.0",
3066
+ "man_gesturing_no": "6.0",
3067
+ "man_gesturing_no_tone1": "8.0",
3068
+ "man_gesturing_no_light_skin_tone": "8.0",
3069
+ "man_gesturing_no_tone2": "8.0",
3070
+ "man_gesturing_no_medium_light_skin_tone": "8.0",
3071
+ "man_gesturing_no_tone3": "8.0",
3072
+ "man_gesturing_no_medium_skin_tone": "8.0",
3073
+ "man_gesturing_no_tone4": "8.0",
3074
+ "man_gesturing_no_medium_dark_skin_tone": "8.0",
3075
+ "man_gesturing_no_tone5": "8.0",
3076
+ "man_gesturing_no_dark_skin_tone": "8.0",
3077
+ "person_gesturing_ok": "6.0",
3078
+ "ok_woman": "6.0",
3079
+ "person_gesturing_ok_tone1": "8.0",
3080
+ "ok_woman_tone1": "8.0",
3081
+ "person_gesturing_ok_tone2": "8.0",
3082
+ "ok_woman_tone2": "8.0",
3083
+ "person_gesturing_ok_tone3": "8.0",
3084
+ "ok_woman_tone3": "8.0",
3085
+ "person_gesturing_ok_tone4": "8.0",
3086
+ "ok_woman_tone4": "8.0",
3087
+ "person_gesturing_ok_tone5": "8.0",
3088
+ "ok_woman_tone5": "8.0",
3089
+ "woman_gesturing_ok": "6.0",
3090
+ "woman_gesturing_ok_tone1": "8.0",
3091
+ "woman_gesturing_ok_light_skin_tone": "8.0",
3092
+ "woman_gesturing_ok_tone2": "8.0",
3093
+ "woman_gesturing_ok_medium_light_skin_tone": "8.0",
3094
+ "woman_gesturing_ok_tone3": "8.0",
3095
+ "woman_gesturing_ok_medium_skin_tone": "8.0",
3096
+ "woman_gesturing_ok_tone4": "8.0",
3097
+ "woman_gesturing_ok_medium_dark_skin_tone": "8.0",
3098
+ "woman_gesturing_ok_tone5": "8.0",
3099
+ "woman_gesturing_ok_dark_skin_tone": "8.0",
3100
+ "man_gesturing_ok": "6.0",
3101
+ "man_gesturing_ok_tone1": "8.0",
3102
+ "man_gesturing_ok_light_skin_tone": "8.0",
3103
+ "man_gesturing_ok_tone2": "8.0",
3104
+ "man_gesturing_ok_medium_light_skin_tone": "8.0",
3105
+ "man_gesturing_ok_tone3": "8.0",
3106
+ "man_gesturing_ok_medium_skin_tone": "8.0",
3107
+ "man_gesturing_ok_tone4": "8.0",
3108
+ "man_gesturing_ok_medium_dark_skin_tone": "8.0",
3109
+ "man_gesturing_ok_tone5": "8.0",
3110
+ "man_gesturing_ok_dark_skin_tone": "8.0",
3111
+ "person_raising_hand": "6.0",
3112
+ "raising_hand": "6.0",
3113
+ "person_raising_hand_tone1": "8.0",
3114
+ "raising_hand_tone1": "8.0",
3115
+ "person_raising_hand_tone2": "8.0",
3116
+ "raising_hand_tone2": "8.0",
3117
+ "person_raising_hand_tone3": "8.0",
3118
+ "raising_hand_tone3": "8.0",
3119
+ "person_raising_hand_tone4": "8.0",
3120
+ "raising_hand_tone4": "8.0",
3121
+ "person_raising_hand_tone5": "8.0",
3122
+ "raising_hand_tone5": "8.0",
3123
+ "woman_raising_hand": "6.0",
3124
+ "woman_raising_hand_tone1": "8.0",
3125
+ "woman_raising_hand_light_skin_tone": "8.0",
3126
+ "woman_raising_hand_tone2": "8.0",
3127
+ "woman_raising_hand_medium_light_skin_tone": "8.0",
3128
+ "woman_raising_hand_tone3": "8.0",
3129
+ "woman_raising_hand_medium_skin_tone": "8.0",
3130
+ "woman_raising_hand_tone4": "8.0",
3131
+ "woman_raising_hand_medium_dark_skin_tone": "8.0",
3132
+ "woman_raising_hand_tone5": "8.0",
3133
+ "woman_raising_hand_dark_skin_tone": "8.0",
3134
+ "man_raising_hand": "6.0",
3135
+ "man_raising_hand_tone1": "8.0",
3136
+ "man_raising_hand_light_skin_tone": "8.0",
3137
+ "man_raising_hand_tone2": "8.0",
3138
+ "man_raising_hand_medium_light_skin_tone": "8.0",
3139
+ "man_raising_hand_tone3": "8.0",
3140
+ "man_raising_hand_medium_skin_tone": "8.0",
3141
+ "man_raising_hand_tone4": "8.0",
3142
+ "man_raising_hand_medium_dark_skin_tone": "8.0",
3143
+ "man_raising_hand_tone5": "8.0",
3144
+ "man_raising_hand_dark_skin_tone": "8.0",
3145
+ "person_facepalming": "9.0",
3146
+ "face_palm": "9.0",
3147
+ "facepalm": "9.0",
3148
+ "person_facepalming_tone1": "9.0",
3149
+ "face_palm_tone1": "9.0",
3150
+ "facepalm_tone1": "9.0",
3151
+ "person_facepalming_tone2": "9.0",
3152
+ "face_palm_tone2": "9.0",
3153
+ "facepalm_tone2": "9.0",
3154
+ "person_facepalming_tone3": "9.0",
3155
+ "face_palm_tone3": "9.0",
3156
+ "facepalm_tone3": "9.0",
3157
+ "person_facepalming_tone4": "9.0",
3158
+ "face_palm_tone4": "9.0",
3159
+ "facepalm_tone4": "9.0",
3160
+ "person_facepalming_tone5": "9.0",
3161
+ "face_palm_tone5": "9.0",
3162
+ "facepalm_tone5": "9.0",
3163
+ "woman_facepalming": "9.0",
3164
+ "woman_facepalming_tone1": "9.0",
3165
+ "woman_facepalming_light_skin_tone": "9.0",
3166
+ "woman_facepalming_tone2": "9.0",
3167
+ "woman_facepalming_medium_light_skin_tone": "9.0",
3168
+ "woman_facepalming_tone3": "9.0",
3169
+ "woman_facepalming_medium_skin_tone": "9.0",
3170
+ "woman_facepalming_tone4": "9.0",
3171
+ "woman_facepalming_medium_dark_skin_tone": "9.0",
3172
+ "woman_facepalming_tone5": "9.0",
3173
+ "woman_facepalming_dark_skin_tone": "9.0",
3174
+ "man_facepalming": "9.0",
3175
+ "man_facepalming_tone1": "9.0",
3176
+ "man_facepalming_light_skin_tone": "9.0",
3177
+ "man_facepalming_tone2": "9.0",
3178
+ "man_facepalming_medium_light_skin_tone": "9.0",
3179
+ "man_facepalming_tone3": "9.0",
3180
+ "man_facepalming_medium_skin_tone": "9.0",
3181
+ "man_facepalming_tone4": "9.0",
3182
+ "man_facepalming_medium_dark_skin_tone": "9.0",
3183
+ "man_facepalming_tone5": "9.0",
3184
+ "man_facepalming_dark_skin_tone": "9.0",
3185
+ "person_shrugging": "9.0",
3186
+ "shrug": "9.0",
3187
+ "person_shrugging_tone1": "9.0",
3188
+ "shrug_tone1": "9.0",
3189
+ "person_shrugging_tone2": "9.0",
3190
+ "shrug_tone2": "9.0",
3191
+ "person_shrugging_tone3": "9.0",
3192
+ "shrug_tone3": "9.0",
3193
+ "person_shrugging_tone4": "9.0",
3194
+ "shrug_tone4": "9.0",
3195
+ "person_shrugging_tone5": "9.0",
3196
+ "shrug_tone5": "9.0",
3197
+ "woman_shrugging": "9.0",
3198
+ "woman_shrugging_tone1": "9.0",
3199
+ "woman_shrugging_light_skin_tone": "9.0",
3200
+ "woman_shrugging_tone2": "9.0",
3201
+ "woman_shrugging_medium_light_skin_tone": "9.0",
3202
+ "woman_shrugging_tone3": "9.0",
3203
+ "woman_shrugging_medium_skin_tone": "9.0",
3204
+ "woman_shrugging_tone4": "9.0",
3205
+ "woman_shrugging_medium_dark_skin_tone": "9.0",
3206
+ "woman_shrugging_tone5": "9.0",
3207
+ "woman_shrugging_dark_skin_tone": "9.0",
3208
+ "man_shrugging": "9.0",
3209
+ "man_shrugging_tone1": "9.0",
3210
+ "man_shrugging_light_skin_tone": "9.0",
3211
+ "man_shrugging_tone2": "9.0",
3212
+ "man_shrugging_medium_light_skin_tone": "9.0",
3213
+ "man_shrugging_tone3": "9.0",
3214
+ "man_shrugging_medium_skin_tone": "9.0",
3215
+ "man_shrugging_tone4": "9.0",
3216
+ "man_shrugging_medium_dark_skin_tone": "9.0",
3217
+ "man_shrugging_tone5": "9.0",
3218
+ "man_shrugging_dark_skin_tone": "9.0",
3219
+ "person_pouting": "6.0",
3220
+ "person_with_pouting_face": "6.0",
3221
+ "person_pouting_tone1": "8.0",
3222
+ "person_with_pouting_face_tone1": "8.0",
3223
+ "person_pouting_tone2": "8.0",
3224
+ "person_with_pouting_face_tone2": "8.0",
3225
+ "person_pouting_tone3": "8.0",
3226
+ "person_with_pouting_face_tone3": "8.0",
3227
+ "person_pouting_tone4": "8.0",
3228
+ "person_with_pouting_face_tone4": "8.0",
3229
+ "person_pouting_tone5": "8.0",
3230
+ "person_with_pouting_face_tone5": "8.0",
3231
+ "woman_pouting": "6.0",
3232
+ "woman_pouting_tone1": "8.0",
3233
+ "woman_pouting_light_skin_tone": "8.0",
3234
+ "woman_pouting_tone2": "8.0",
3235
+ "woman_pouting_medium_light_skin_tone": "8.0",
3236
+ "woman_pouting_tone3": "8.0",
3237
+ "woman_pouting_medium_skin_tone": "8.0",
3238
+ "woman_pouting_tone4": "8.0",
3239
+ "woman_pouting_medium_dark_skin_tone": "8.0",
3240
+ "woman_pouting_tone5": "8.0",
3241
+ "woman_pouting_dark_skin_tone": "8.0",
3242
+ "man_pouting": "6.0",
3243
+ "man_pouting_tone1": "8.0",
3244
+ "man_pouting_light_skin_tone": "8.0",
3245
+ "man_pouting_tone2": "8.0",
3246
+ "man_pouting_medium_light_skin_tone": "8.0",
3247
+ "man_pouting_tone3": "8.0",
3248
+ "man_pouting_medium_skin_tone": "8.0",
3249
+ "man_pouting_tone4": "8.0",
3250
+ "man_pouting_medium_dark_skin_tone": "8.0",
3251
+ "man_pouting_tone5": "8.0",
3252
+ "man_pouting_dark_skin_tone": "8.0",
3253
+ "person_frowning": "6.0",
3254
+ "person_frowning_tone1": "8.0",
3255
+ "person_frowning_tone2": "8.0",
3256
+ "person_frowning_tone3": "8.0",
3257
+ "person_frowning_tone4": "8.0",
3258
+ "person_frowning_tone5": "8.0",
3259
+ "woman_frowning": "6.0",
3260
+ "woman_frowning_tone1": "8.0",
3261
+ "woman_frowning_light_skin_tone": "8.0",
3262
+ "woman_frowning_tone2": "8.0",
3263
+ "woman_frowning_medium_light_skin_tone": "8.0",
3264
+ "woman_frowning_tone3": "8.0",
3265
+ "woman_frowning_medium_skin_tone": "8.0",
3266
+ "woman_frowning_tone4": "8.0",
3267
+ "woman_frowning_medium_dark_skin_tone": "8.0",
3268
+ "woman_frowning_tone5": "8.0",
3269
+ "woman_frowning_dark_skin_tone": "8.0",
3270
+ "man_frowning": "6.0",
3271
+ "man_frowning_tone1": "8.0",
3272
+ "man_frowning_light_skin_tone": "8.0",
3273
+ "man_frowning_tone2": "8.0",
3274
+ "man_frowning_medium_light_skin_tone": "8.0",
3275
+ "man_frowning_tone3": "8.0",
3276
+ "man_frowning_medium_skin_tone": "8.0",
3277
+ "man_frowning_tone4": "8.0",
3278
+ "man_frowning_medium_dark_skin_tone": "8.0",
3279
+ "man_frowning_tone5": "8.0",
3280
+ "man_frowning_dark_skin_tone": "8.0",
3281
+ "person_getting_haircut": "6.0",
3282
+ "haircut": "6.0",
3283
+ "person_getting_haircut_tone1": "8.0",
3284
+ "haircut_tone1": "8.0",
3285
+ "person_getting_haircut_tone2": "8.0",
3286
+ "haircut_tone2": "8.0",
3287
+ "person_getting_haircut_tone3": "8.0",
3288
+ "haircut_tone3": "8.0",
3289
+ "person_getting_haircut_tone4": "8.0",
3290
+ "haircut_tone4": "8.0",
3291
+ "person_getting_haircut_tone5": "8.0",
3292
+ "haircut_tone5": "8.0",
3293
+ "woman_getting_haircut": "6.0",
3294
+ "woman_getting_haircut_tone1": "8.0",
3295
+ "woman_getting_haircut_light_skin_tone": "8.0",
3296
+ "woman_getting_haircut_tone2": "8.0",
3297
+ "woman_getting_haircut_medium_light_skin_tone": "8.0",
3298
+ "woman_getting_haircut_tone3": "8.0",
3299
+ "woman_getting_haircut_medium_skin_tone": "8.0",
3300
+ "woman_getting_haircut_tone4": "8.0",
3301
+ "woman_getting_haircut_medium_dark_skin_tone": "8.0",
3302
+ "woman_getting_haircut_tone5": "8.0",
3303
+ "woman_getting_haircut_dark_skin_tone": "8.0",
3304
+ "man_getting_haircut": "6.0",
3305
+ "man_getting_haircut_tone1": "8.0",
3306
+ "man_getting_haircut_light_skin_tone": "8.0",
3307
+ "man_getting_haircut_tone2": "8.0",
3308
+ "man_getting_haircut_medium_light_skin_tone": "8.0",
3309
+ "man_getting_haircut_tone3": "8.0",
3310
+ "man_getting_haircut_medium_skin_tone": "8.0",
3311
+ "man_getting_haircut_tone4": "8.0",
3312
+ "man_getting_haircut_medium_dark_skin_tone": "8.0",
3313
+ "man_getting_haircut_tone5": "8.0",
3314
+ "man_getting_haircut_dark_skin_tone": "8.0",
3315
+ "person_getting_massage": "6.0",
3316
+ "massage": "6.0",
3317
+ "person_getting_massage_tone1": "8.0",
3318
+ "massage_tone1": "8.0",
3319
+ "person_getting_massage_tone2": "8.0",
3320
+ "massage_tone2": "8.0",
3321
+ "person_getting_massage_tone3": "8.0",
3322
+ "massage_tone3": "8.0",
3323
+ "person_getting_massage_tone4": "8.0",
3324
+ "massage_tone4": "8.0",
3325
+ "person_getting_massage_tone5": "8.0",
3326
+ "massage_tone5": "8.0",
3327
+ "woman_getting_face_massage": "6.0",
3328
+ "woman_getting_face_massage_tone1": "8.0",
3329
+ "woman_getting_face_massage_light_skin_tone": "8.0",
3330
+ "woman_getting_face_massage_tone2": "8.0",
3331
+ "woman_getting_face_massage_medium_light_skin_tone": "8.0",
3332
+ "woman_getting_face_massage_tone3": "8.0",
3333
+ "woman_getting_face_massage_medium_skin_tone": "8.0",
3334
+ "woman_getting_face_massage_tone4": "8.0",
3335
+ "woman_getting_face_massage_medium_dark_skin_tone": "8.0",
3336
+ "woman_getting_face_massage_tone5": "8.0",
3337
+ "woman_getting_face_massage_dark_skin_tone": "8.0",
3338
+ "man_getting_face_massage": "6.0",
3339
+ "man_getting_face_massage_tone1": "8.0",
3340
+ "man_getting_face_massage_light_skin_tone": "8.0",
3341
+ "man_getting_face_massage_tone2": "8.0",
3342
+ "man_getting_face_massage_medium_light_skin_tone": "8.0",
3343
+ "man_getting_face_massage_tone3": "8.0",
3344
+ "man_getting_face_massage_medium_skin_tone": "8.0",
3345
+ "man_getting_face_massage_tone4": "8.0",
3346
+ "man_getting_face_massage_medium_dark_skin_tone": "8.0",
3347
+ "man_getting_face_massage_tone5": "8.0",
3348
+ "man_getting_face_massage_dark_skin_tone": "8.0",
3349
+ "person_in_steamy_room": "10.0",
3350
+ "person_in_steamy_room_tone1": "10.0",
3351
+ "person_in_steamy_room_light_skin_tone": "10.0",
3352
+ "person_in_steamy_room_tone2": "10.0",
3353
+ "person_in_steamy_room_medium_light_skin_tone": "10.0",
3354
+ "person_in_steamy_room_tone3": "10.0",
3355
+ "person_in_steamy_room_medium_skin_tone": "10.0",
3356
+ "person_in_steamy_room_tone4": "10.0",
3357
+ "person_in_steamy_room_medium_dark_skin_tone": "10.0",
3358
+ "person_in_steamy_room_tone5": "10.0",
3359
+ "person_in_steamy_room_dark_skin_tone": "10.0",
3360
+ "woman_in_steamy_room": "10.0",
3361
+ "woman_in_steamy_room_tone1": "10.0",
3362
+ "woman_in_steamy_room_light_skin_tone": "10.0",
3363
+ "woman_in_steamy_room_tone2": "10.0",
3364
+ "woman_in_steamy_room_medium_light_skin_tone": "10.0",
3365
+ "woman_in_steamy_room_tone3": "10.0",
3366
+ "woman_in_steamy_room_medium_skin_tone": "10.0",
3367
+ "woman_in_steamy_room_tone4": "10.0",
3368
+ "woman_in_steamy_room_medium_dark_skin_tone": "10.0",
3369
+ "woman_in_steamy_room_tone5": "10.0",
3370
+ "woman_in_steamy_room_dark_skin_tone": "10.0",
3371
+ "man_in_steamy_room": "10.0",
3372
+ "man_in_steamy_room_tone1": "10.0",
3373
+ "man_in_steamy_room_light_skin_tone": "10.0",
3374
+ "man_in_steamy_room_tone2": "10.0",
3375
+ "man_in_steamy_room_medium_light_skin_tone": "10.0",
3376
+ "man_in_steamy_room_tone3": "10.0",
3377
+ "man_in_steamy_room_medium_skin_tone": "10.0",
3378
+ "man_in_steamy_room_tone4": "10.0",
3379
+ "man_in_steamy_room_medium_dark_skin_tone": "10.0",
3380
+ "man_in_steamy_room_tone5": "10.0",
3381
+ "man_in_steamy_room_dark_skin_tone": "10.0",
3382
+ "nail_care": "6.0",
3383
+ "nail_care_tone1": "8.0",
3384
+ "nail_care_tone2": "8.0",
3385
+ "nail_care_tone3": "8.0",
3386
+ "nail_care_tone4": "8.0",
3387
+ "nail_care_tone5": "8.0",
3388
+ "selfie": "9.0",
3389
+ "selfie_tone1": "9.0",
3390
+ "selfie_tone2": "9.0",
3391
+ "selfie_tone3": "9.0",
3392
+ "selfie_tone4": "9.0",
3393
+ "selfie_tone5": "9.0",
3394
+ "dancer": "6.0",
3395
+ "dancer_tone1": "8.0",
3396
+ "dancer_tone2": "8.0",
3397
+ "dancer_tone3": "8.0",
3398
+ "dancer_tone4": "8.0",
3399
+ "dancer_tone5": "8.0",
3400
+ "man_dancing": "9.0",
3401
+ "male_dancer": "9.0",
3402
+ "man_dancing_tone1": "9.0",
3403
+ "male_dancer_tone1": "9.0",
3404
+ "man_dancing_tone2": "9.0",
3405
+ "male_dancer_tone2": "9.0",
3406
+ "man_dancing_tone3": "9.0",
3407
+ "male_dancer_tone3": "9.0",
3408
+ "man_dancing_tone5": "9.0",
3409
+ "male_dancer_tone5": "9.0",
3410
+ "man_dancing_tone4": "9.0",
3411
+ "male_dancer_tone4": "9.0",
3412
+ "people_with_bunny_ears_partying": "6.0",
3413
+ "dancers": "6.0",
3414
+ "women_with_bunny_ears_partying": "6.0",
3415
+ "men_with_bunny_ears_partying": "6.0",
3416
+ "levitate": "7.0",
3417
+ "man_in_business_suit_levitating": "7.0",
3418
+ "levitate_tone1": "8.0",
3419
+ "man_in_business_suit_levitating_tone1": "8.0",
3420
+ "man_in_business_suit_levitating_light_skin_tone": "8.0",
3421
+ "levitate_tone2": "8.0",
3422
+ "man_in_business_suit_levitating_tone2": "8.0",
3423
+ "man_in_business_suit_levitating_medium_light_skin_tone": "8.0",
3424
+ "levitate_tone3": "8.0",
3425
+ "man_in_business_suit_levitating_tone3": "8.0",
3426
+ "man_in_business_suit_levitating_medium_skin_tone": "8.0",
3427
+ "levitate_tone4": "8.0",
3428
+ "man_in_business_suit_levitating_tone4": "8.0",
3429
+ "man_in_business_suit_levitating_medium_dark_skin_tone": "8.0",
3430
+ "levitate_tone5": "8.0",
3431
+ "man_in_business_suit_levitating_tone5": "8.0",
3432
+ "man_in_business_suit_levitating_dark_skin_tone": "8.0",
3433
+ "person_walking": "6.0",
3434
+ "walking": "6.0",
3435
+ "person_walking_tone1": "8.0",
3436
+ "walking_tone1": "8.0",
3437
+ "person_walking_tone2": "8.0",
3438
+ "walking_tone2": "8.0",
3439
+ "person_walking_tone3": "8.0",
3440
+ "walking_tone3": "8.0",
3441
+ "person_walking_tone4": "8.0",
3442
+ "walking_tone4": "8.0",
3443
+ "person_walking_tone5": "8.0",
3444
+ "walking_tone5": "8.0",
3445
+ "woman_walking": "6.0",
3446
+ "woman_walking_tone1": "8.0",
3447
+ "woman_walking_light_skin_tone": "8.0",
3448
+ "woman_walking_tone2": "8.0",
3449
+ "woman_walking_medium_light_skin_tone": "8.0",
3450
+ "woman_walking_tone3": "8.0",
3451
+ "woman_walking_medium_skin_tone": "8.0",
3452
+ "woman_walking_tone4": "8.0",
3453
+ "woman_walking_medium_dark_skin_tone": "8.0",
3454
+ "woman_walking_tone5": "8.0",
3455
+ "woman_walking_dark_skin_tone": "8.0",
3456
+ "man_walking": "6.0",
3457
+ "man_walking_tone1": "8.0",
3458
+ "man_walking_light_skin_tone": "8.0",
3459
+ "man_walking_tone2": "8.0",
3460
+ "man_walking_medium_light_skin_tone": "8.0",
3461
+ "man_walking_tone3": "8.0",
3462
+ "man_walking_medium_skin_tone": "8.0",
3463
+ "man_walking_tone4": "8.0",
3464
+ "man_walking_medium_dark_skin_tone": "8.0",
3465
+ "man_walking_tone5": "8.0",
3466
+ "man_walking_dark_skin_tone": "8.0",
3467
+ "person_running": "6.0",
3468
+ "runner": "6.0",
3469
+ "person_running_tone1": "8.0",
3470
+ "runner_tone1": "8.0",
3471
+ "person_running_tone2": "8.0",
3472
+ "runner_tone2": "8.0",
3473
+ "person_running_tone3": "8.0",
3474
+ "runner_tone3": "8.0",
3475
+ "person_running_tone4": "8.0",
3476
+ "runner_tone4": "8.0",
3477
+ "person_running_tone5": "8.0",
3478
+ "runner_tone5": "8.0",
3479
+ "woman_running": "6.0",
3480
+ "woman_running_tone1": "8.0",
3481
+ "woman_running_light_skin_tone": "8.0",
3482
+ "woman_running_tone2": "8.0",
3483
+ "woman_running_medium_light_skin_tone": "8.0",
3484
+ "woman_running_tone3": "8.0",
3485
+ "woman_running_medium_skin_tone": "8.0",
3486
+ "woman_running_tone4": "8.0",
3487
+ "woman_running_medium_dark_skin_tone": "8.0",
3488
+ "woman_running_tone5": "8.0",
3489
+ "woman_running_dark_skin_tone": "8.0",
3490
+ "man_running": "6.0",
3491
+ "man_running_tone1": "8.0",
3492
+ "man_running_light_skin_tone": "8.0",
3493
+ "man_running_tone2": "8.0",
3494
+ "man_running_medium_light_skin_tone": "8.0",
3495
+ "man_running_tone3": "8.0",
3496
+ "man_running_medium_skin_tone": "8.0",
3497
+ "man_running_tone4": "8.0",
3498
+ "man_running_medium_dark_skin_tone": "8.0",
3499
+ "man_running_tone5": "8.0",
3500
+ "man_running_dark_skin_tone": "8.0",
3501
+ "couple": "6.0",
3502
+ "two_women_holding_hands": "6.0",
3503
+ "two_men_holding_hands": "6.0",
3504
+ "couple_with_heart": "6.0",
3505
+ "couple_with_heart_woman_man": "6.0",
3506
+ "couple_ww": "6.0",
3507
+ "couple_with_heart_ww": "6.0",
3508
+ "couple_mm": "6.0",
3509
+ "couple_with_heart_mm": "6.0",
3510
+ "couplekiss": "6.0",
3511
+ "kiss_woman_man": "6.0",
3512
+ "kiss_ww": "6.0",
3513
+ "couplekiss_ww": "6.0",
3514
+ "kiss_mm": "6.0",
3515
+ "couplekiss_mm": "6.0",
3516
+ "family": "6.0",
3517
+ "family_man_woman_boy": "6.0",
3518
+ "family_mwg": "6.0",
3519
+ "family_mwgb": "6.0",
3520
+ "family_mwbb": "6.0",
3521
+ "family_mwgg": "6.0",
3522
+ "family_wwb": "6.0",
3523
+ "family_wwg": "6.0",
3524
+ "family_wwgb": "6.0",
3525
+ "family_wwbb": "6.0",
3526
+ "family_wwgg": "6.0",
3527
+ "family_mmb": "6.0",
3528
+ "family_mmg": "6.0",
3529
+ "family_mmgb": "6.0",
3530
+ "family_mmbb": "6.0",
3531
+ "family_mmgg": "6.0",
3532
+ "family_woman_boy": "6.0",
3533
+ "family_woman_girl": "6.0",
3534
+ "family_woman_girl_boy": "6.0",
3535
+ "family_woman_boy_boy": "6.0",
3536
+ "family_woman_girl_girl": "6.0",
3537
+ "family_man_boy": "6.0",
3538
+ "family_man_girl": "6.0",
3539
+ "family_man_girl_boy": "6.0",
3540
+ "family_man_boy_boy": "6.0",
3541
+ "family_man_girl_girl": "6.0",
3542
+ "coat": "10.0",
3543
+ "womans_clothes": "6.0",
3544
+ "shirt": "6.0",
3545
+ "jeans": "6.0",
3546
+ "necktie": "6.0",
3547
+ "dress": "6.0",
3548
+ "bikini": "6.0",
3549
+ "kimono": "6.0",
3550
+ "lab_coat": "11.0",
3551
+ "high_heel": "6.0",
3552
+ "sandal": "6.0",
3553
+ "boot": "6.0",
3554
+ "mans_shoe": "6.0",
3555
+ "athletic_shoe": "6.0",
3556
+ "hiking_boot": "11.0",
3557
+ "womans_flat_shoe": "11.0",
3558
+ "socks": "10.0",
3559
+ "gloves": "10.0",
3560
+ "scarf": "10.0",
3561
+ "tophat": "6.0",
3562
+ "billed_cap": "10.0",
3563
+ "womans_hat": "6.0",
3564
+ "mortar_board": "6.0",
3565
+ "helmet_with_cross": "5.2",
3566
+ "helmet_with_white_cross": "5.2",
3567
+ "crown": "6.0",
3568
+ "pouch": "6.0",
3569
+ "purse": "6.0",
3570
+ "handbag": "6.0",
3571
+ "briefcase": "6.0",
3572
+ "school_satchel": "6.0",
3573
+ "eyeglasses": "6.0",
3574
+ "dark_sunglasses": "7.0",
3575
+ "goggles": "11.0",
3576
+ "closed_umbrella": "6.0",
3577
+ "red_haired": "11.0",
3578
+ "curly_haired": "11.0",
3579
+ "white_haired": "11.0",
3580
+ "bald": "11.0",
3581
+ "regional_indicator_z": "6.0",
3582
+ "regional_indicator_y": "6.0",
3583
+ "regional_indicator_x": "6.0",
3584
+ "regional_indicator_w": "6.0",
3585
+ "regional_indicator_v": "6.0",
3586
+ "regional_indicator_u": "6.0",
3587
+ "regional_indicator_t": "6.0",
3588
+ "regional_indicator_s": "6.0",
3589
+ "regional_indicator_r": "6.0",
3590
+ "regional_indicator_q": "6.0",
3591
+ "regional_indicator_p": "6.0",
3592
+ "regional_indicator_o": "6.0",
3593
+ "regional_indicator_n": "6.0",
3594
+ "regional_indicator_m": "6.0",
3595
+ "regional_indicator_l": "6.0",
3596
+ "regional_indicator_k": "6.0",
3597
+ "regional_indicator_j": "6.0",
3598
+ "regional_indicator_i": "6.0",
3599
+ "regional_indicator_h": "6.0",
3600
+ "regional_indicator_g": "6.0",
3601
+ "regional_indicator_f": "6.0",
3602
+ "regional_indicator_e": "6.0",
3603
+ "regional_indicator_d": "6.0",
3604
+ "regional_indicator_c": "6.0",
3605
+ "regional_indicator_b": "6.0",
3606
+ "regional_indicator_a": "6.0",
3607
+ "red_car": "6.0",
3608
+ "taxi": "6.0",
3609
+ "blue_car": "6.0",
3610
+ "bus": "6.0",
3611
+ "trolleybus": "6.0",
3612
+ "race_car": "7.0",
3613
+ "racing_car": "7.0",
3614
+ "police_car": "6.0",
3615
+ "ambulance": "6.0",
3616
+ "fire_engine": "6.0",
3617
+ "minibus": "6.0",
3618
+ "truck": "6.0",
3619
+ "articulated_lorry": "6.0",
3620
+ "tractor": "6.0",
3621
+ "scooter": "9.0",
3622
+ "bike": "6.0",
3623
+ "motor_scooter": "9.0",
3624
+ "motorbike": "9.0",
3625
+ "motorcycle": "7.0",
3626
+ "racing_motorcycle": "7.0",
3627
+ "rotating_light": "6.0",
3628
+ "oncoming_police_car": "6.0",
3629
+ "oncoming_bus": "6.0",
3630
+ "oncoming_automobile": "6.0",
3631
+ "oncoming_taxi": "6.0",
3632
+ "aerial_tramway": "6.0",
3633
+ "mountain_cableway": "6.0",
3634
+ "suspension_railway": "6.0",
3635
+ "railway_car": "6.0",
3636
+ "train": "6.0",
3637
+ "mountain_railway": "6.0",
3638
+ "monorail": "6.0",
3639
+ "bullettrain_side": "6.0",
3640
+ "bullettrain_front": "6.0",
3641
+ "light_rail": "6.0",
3642
+ "steam_locomotive": "6.0",
3643
+ "train2": "6.0",
3644
+ "metro": "6.0",
3645
+ "tram": "6.0",
3646
+ "station": "6.0",
3647
+ "airplane_departure": "7.0",
3648
+ "airplane_arriving": "7.0",
3649
+ "airplane_small": "7.0",
3650
+ "small_airplane": "7.0",
3651
+ "seat": "6.0",
3652
+ "luggage": "11.0",
3653
+ "satellite_orbital": "7.0",
3654
+ "rocket": "6.0",
3655
+ "flying_saucer": "10.0",
3656
+ "helicopter": "6.0",
3657
+ "canoe": "9.0",
3658
+ "kayak": "9.0",
3659
+ "sailboat": "5.2",
3660
+ "speedboat": "6.0",
3661
+ "motorboat": "7.0",
3662
+ "cruise_ship": "7.0",
3663
+ "passenger_ship": "7.0",
3664
+ "ferry": "5.2",
3665
+ "ship": "6.0",
3666
+ "fuelpump": "5.2",
3667
+ "construction": "6.0",
3668
+ "vertical_traffic_light": "6.0",
3669
+ "traffic_light": "6.0",
3670
+ "busstop": "6.0",
3671
+ "map": "7.0",
3672
+ "world_map": "7.0",
3673
+ "moyai": "6.0",
3674
+ "statue_of_liberty": "6.0",
3675
+ "tokyo_tower": "6.0",
3676
+ "european_castle": "6.0",
3677
+ "japanese_castle": "6.0",
3678
+ "stadium": "7.0",
3679
+ "ferris_wheel": "6.0",
3680
+ "roller_coaster": "6.0",
3681
+ "carousel_horse": "6.0",
3682
+ "fountain": "5.2",
3683
+ "beach_umbrella": "5.2",
3684
+ "umbrella_on_ground": "5.2",
3685
+ "beach": "7.0",
3686
+ "beach_with_umbrella": "7.0",
3687
+ "island": "7.0",
3688
+ "desert_island": "7.0",
3689
+ "desert": "7.0",
3690
+ "volcano": "6.0",
3691
+ "mountain": "5.2",
3692
+ "mountain_snow": "7.0",
3693
+ "snow_capped_mountain": "7.0",
3694
+ "mount_fuji": "6.0",
3695
+ "camping": "7.0",
3696
+ "tent": "5.2",
3697
+ "house": "6.0",
3698
+ "house_with_garden": "6.0",
3699
+ "homes": "7.0",
3700
+ "house_buildings": "7.0",
3701
+ "house_abandoned": "7.0",
3702
+ "derelict_house_building": "7.0",
3703
+ "construction_site": "7.0",
3704
+ "building_construction": "7.0",
3705
+ "factory": "6.0",
3706
+ "office": "6.0",
3707
+ "department_store": "6.0",
3708
+ "post_office": "6.0",
3709
+ "european_post_office": "6.0",
3710
+ "hospital": "6.0",
3711
+ "bank": "6.0",
3712
+ "hotel": "6.0",
3713
+ "convenience_store": "6.0",
3714
+ "school": "6.0",
3715
+ "love_hotel": "6.0",
3716
+ "wedding": "6.0",
3717
+ "classical_building": "7.0",
3718
+ "church": "5.2",
3719
+ "mosque": "8.0",
3720
+ "synagogue": "8.0",
3721
+ "kaaba": "8.0",
3722
+ "shinto_shrine": "5.2",
3723
+ "railway_track": "7.0",
3724
+ "railroad_track": "7.0",
3725
+ "motorway": "7.0",
3726
+ "japan": "6.0",
3727
+ "rice_scene": "6.0",
3728
+ "park": "7.0",
3729
+ "national_park": "7.0",
3730
+ "sunrise": "6.0",
3731
+ "sunrise_over_mountains": "6.0",
3732
+ "stars": "6.0",
3733
+ "sparkler": "6.0",
3734
+ "fireworks": "6.0",
3735
+ "firecracker": "11.0",
3736
+ "city_sunset": "6.0",
3737
+ "city_sunrise": "6.0",
3738
+ "city_dusk": "6.0",
3739
+ "cityscape": "7.0",
3740
+ "night_with_stars": "6.0",
3741
+ "milky_way": "6.0",
3742
+ "bridge_at_night": "6.0",
3743
+ "lock": "6.0",
3744
+ "unlock": "6.0",
3745
+ "foggy": "6.0",
3746
+ "flag_white": "7.0",
3747
+ "waving_white_flag": "7.0",
3748
+ "flag_black": "7.0",
3749
+ "waving_black_flag": "7.0",
3750
+ "checkered_flag": "6.0",
3751
+ "triangular_flag_on_post": "6.0",
3752
+ "rainbow_flag": "7.0",
3753
+ "gay_pride_flag": "7.0",
3754
+ "pirate_flag": "11.0",
3755
+ "flag_af": "6.0",
3756
+ "af": "6.0",
3757
+ "flag_ax": "6.0",
3758
+ "ax": "6.0",
3759
+ "flag_al": "6.0",
3760
+ "al": "6.0",
3761
+ "flag_dz": "6.0",
3762
+ "dz": "6.0",
3763
+ "flag_as": "6.0",
3764
+ "as": "6.0",
3765
+ "flag_ad": "6.0",
3766
+ "ad": "6.0",
3767
+ "flag_ao": "6.0",
3768
+ "ao": "6.0",
3769
+ "flag_ai": "6.0",
3770
+ "ai": "6.0",
3771
+ "flag_aq": "6.0",
3772
+ "aq": "6.0",
3773
+ "flag_ag": "6.0",
3774
+ "ag": "6.0",
3775
+ "flag_ar": "6.0",
3776
+ "ar": "6.0",
3777
+ "flag_am": "6.0",
3778
+ "am": "6.0",
3779
+ "flag_aw": "6.0",
3780
+ "aw": "6.0",
3781
+ "flag_au": "6.0",
3782
+ "au": "6.0",
3783
+ "flag_at": "6.0",
3784
+ "at": "6.0",
3785
+ "flag_az": "6.0",
3786
+ "az": "6.0",
3787
+ "flag_bs": "6.0",
3788
+ "bs": "6.0",
3789
+ "flag_bh": "6.0",
3790
+ "bh": "6.0",
3791
+ "flag_bd": "6.0",
3792
+ "bd": "6.0",
3793
+ "flag_bb": "6.0",
3794
+ "bb": "6.0",
3795
+ "flag_by": "6.0",
3796
+ "by": "6.0",
3797
+ "flag_be": "6.0",
3798
+ "be": "6.0",
3799
+ "flag_bz": "6.0",
3800
+ "bz": "6.0",
3801
+ "flag_bj": "6.0",
3802
+ "bj": "6.0",
3803
+ "flag_bm": "6.0",
3804
+ "bm": "6.0",
3805
+ "flag_bt": "6.0",
3806
+ "bt": "6.0",
3807
+ "flag_bo": "6.0",
3808
+ "bo": "6.0",
3809
+ "flag_ba": "6.0",
3810
+ "ba": "6.0",
3811
+ "flag_bw": "6.0",
3812
+ "bw": "6.0",
3813
+ "flag_br": "6.0",
3814
+ "br": "6.0",
3815
+ "flag_io": "6.0",
3816
+ "io": "6.0",
3817
+ "flag_vg": "6.0",
3818
+ "vg": "6.0",
3819
+ "flag_bn": "6.0",
3820
+ "bn": "6.0",
3821
+ "flag_bg": "6.0",
3822
+ "bg": "6.0",
3823
+ "flag_bf": "6.0",
3824
+ "bf": "6.0",
3825
+ "flag_bi": "6.0",
3826
+ "bi": "6.0",
3827
+ "flag_kh": "6.0",
3828
+ "kh": "6.0",
3829
+ "flag_cm": "6.0",
3830
+ "cm": "6.0",
3831
+ "flag_ca": "6.0",
3832
+ "ca": "6.0",
3833
+ "flag_ic": "6.0",
3834
+ "ic": "6.0",
3835
+ "flag_cv": "6.0",
3836
+ "cv": "6.0",
3837
+ "flag_bq": "6.0",
3838
+ "bq": "6.0",
3839
+ "flag_ky": "6.0",
3840
+ "ky": "6.0",
3841
+ "flag_cf": "6.0",
3842
+ "cf": "6.0",
3843
+ "flag_td": "6.0",
3844
+ "td": "6.0",
3845
+ "flag_cl": "6.0",
3846
+ "chile": "6.0",
3847
+ "flag_cn": "6.0",
3848
+ "cn": "6.0",
3849
+ "flag_cx": "6.0",
3850
+ "cx": "6.0",
3851
+ "flag_cc": "6.0",
3852
+ "cc": "6.0",
3853
+ "flag_co": "6.0",
3854
+ "co": "6.0",
3855
+ "flag_km": "6.0",
3856
+ "km": "6.0",
3857
+ "flag_cg": "6.0",
3858
+ "cg": "6.0",
3859
+ "flag_cd": "6.0",
3860
+ "congo": "6.0",
3861
+ "flag_ck": "6.0",
3862
+ "ck": "6.0",
3863
+ "flag_cr": "6.0",
3864
+ "cr": "6.0",
3865
+ "flag_ci": "6.0",
3866
+ "ci": "6.0",
3867
+ "flag_hr": "6.0",
3868
+ "hr": "6.0",
3869
+ "flag_cu": "6.0",
3870
+ "cu": "6.0",
3871
+ "flag_cw": "6.0",
3872
+ "cw": "6.0",
3873
+ "flag_cy": "6.0",
3874
+ "cy": "6.0",
3875
+ "flag_cz": "6.0",
3876
+ "cz": "6.0",
3877
+ "flag_dk": "6.0",
3878
+ "dk": "6.0",
3879
+ "flag_dj": "6.0",
3880
+ "dj": "6.0",
3881
+ "flag_dm": "6.0",
3882
+ "dm": "6.0",
3883
+ "flag_do": "6.0",
3884
+ "do": "6.0",
3885
+ "flag_ec": "6.0",
3886
+ "ec": "6.0",
3887
+ "flag_eg": "6.0",
3888
+ "eg": "6.0",
3889
+ "flag_sv": "6.0",
3890
+ "sv": "6.0",
3891
+ "flag_gq": "6.0",
3892
+ "gq": "6.0",
3893
+ "flag_er": "6.0",
3894
+ "er": "6.0",
3895
+ "flag_ee": "6.0",
3896
+ "ee": "6.0",
3897
+ "flag_et": "6.0",
3898
+ "et": "6.0",
3899
+ "flag_eu": "6.0",
3900
+ "eu": "6.0",
3901
+ "flag_fk": "6.0",
3902
+ "fk": "6.0",
3903
+ "flag_fo": "6.0",
3904
+ "fo": "6.0",
3905
+ "flag_fj": "6.0",
3906
+ "fj": "6.0",
3907
+ "flag_fi": "6.0",
3908
+ "fi": "6.0",
3909
+ "flag_fr": "6.0",
3910
+ "fr": "6.0",
3911
+ "flag_gf": "6.0",
3912
+ "gf": "6.0",
3913
+ "flag_pf": "6.0",
3914
+ "pf": "6.0",
3915
+ "flag_tf": "6.0",
3916
+ "tf": "6.0",
3917
+ "flag_ga": "6.0",
3918
+ "ga": "6.0",
3919
+ "flag_gm": "6.0",
3920
+ "gm": "6.0",
3921
+ "flag_ge": "6.0",
3922
+ "ge": "6.0",
3923
+ "flag_de": "6.0",
3924
+ "de": "6.0",
3925
+ "flag_gh": "6.0",
3926
+ "gh": "6.0",
3927
+ "flag_gi": "6.0",
3928
+ "gi": "6.0",
3929
+ "flag_gr": "6.0",
3930
+ "gr": "6.0",
3931
+ "flag_gl": "6.0",
3932
+ "gl": "6.0",
3933
+ "flag_gd": "6.0",
3934
+ "gd": "6.0",
3935
+ "flag_gp": "6.0",
3936
+ "gp": "6.0",
3937
+ "flag_gu": "6.0",
3938
+ "gu": "6.0",
3939
+ "flag_gt": "6.0",
3940
+ "gt": "6.0",
3941
+ "flag_gg": "6.0",
3942
+ "gg": "6.0",
3943
+ "flag_gn": "6.0",
3944
+ "gn": "6.0",
3945
+ "flag_gw": "6.0",
3946
+ "gw": "6.0",
3947
+ "flag_gy": "6.0",
3948
+ "gy": "6.0",
3949
+ "flag_ht": "6.0",
3950
+ "ht": "6.0",
3951
+ "flag_hn": "6.0",
3952
+ "hn": "6.0",
3953
+ "flag_hk": "6.0",
3954
+ "hk": "6.0",
3955
+ "flag_hu": "6.0",
3956
+ "hu": "6.0",
3957
+ "flag_is": "6.0",
3958
+ "is": "6.0",
3959
+ "flag_in": "6.0",
3960
+ "in": "6.0",
3961
+ "flag_id": "6.0",
3962
+ "indonesia": "6.0",
3963
+ "flag_ir": "6.0",
3964
+ "ir": "6.0",
3965
+ "flag_iq": "6.0",
3966
+ "iq": "6.0",
3967
+ "flag_ie": "6.0",
3968
+ "ie": "6.0",
3969
+ "flag_im": "6.0",
3970
+ "im": "6.0",
3971
+ "flag_il": "6.0",
3972
+ "il": "6.0",
3973
+ "flag_it": "6.0",
3974
+ "it": "6.0",
3975
+ "flag_jm": "6.0",
3976
+ "jm": "6.0",
3977
+ "flag_jp": "6.0",
3978
+ "jp": "6.0",
3979
+ "crossed_flags": "6.0",
3980
+ "flag_je": "6.0",
3981
+ "je": "6.0",
3982
+ "flag_jo": "6.0",
3983
+ "jo": "6.0",
3984
+ "flag_kz": "6.0",
3985
+ "kz": "6.0",
3986
+ "flag_ke": "6.0",
3987
+ "ke": "6.0",
3988
+ "flag_ki": "6.0",
3989
+ "ki": "6.0",
3990
+ "flag_xk": "6.0",
3991
+ "xk": "6.0",
3992
+ "flag_kw": "6.0",
3993
+ "kw": "6.0",
3994
+ "flag_kg": "6.0",
3995
+ "kg": "6.0",
3996
+ "flag_la": "6.0",
3997
+ "la": "6.0",
3998
+ "flag_lv": "6.0",
3999
+ "lv": "6.0",
4000
+ "flag_lb": "6.0",
4001
+ "lb": "6.0",
4002
+ "flag_ls": "6.0",
4003
+ "ls": "6.0",
4004
+ "flag_lr": "6.0",
4005
+ "lr": "6.0",
4006
+ "flag_ly": "6.0",
4007
+ "ly": "6.0",
4008
+ "flag_li": "6.0",
4009
+ "li": "6.0",
4010
+ "flag_lt": "6.0",
4011
+ "lt": "6.0",
4012
+ "flag_lu": "6.0",
4013
+ "lu": "6.0",
4014
+ "flag_mo": "6.0",
4015
+ "mo": "6.0",
4016
+ "flag_mk": "6.0",
4017
+ "mk": "6.0",
4018
+ "flag_mg": "6.0",
4019
+ "mg": "6.0",
4020
+ "flag_mw": "6.0",
4021
+ "mw": "6.0",
4022
+ "flag_my": "6.0",
4023
+ "my": "6.0",
4024
+ "flag_mv": "6.0",
4025
+ "mv": "6.0",
4026
+ "flag_ml": "6.0",
4027
+ "ml": "6.0",
4028
+ "flag_mt": "6.0",
4029
+ "mt": "6.0",
4030
+ "flag_mh": "6.0",
4031
+ "mh": "6.0",
4032
+ "flag_mq": "6.0",
4033
+ "mq": "6.0",
4034
+ "flag_mr": "6.0",
4035
+ "mr": "6.0",
4036
+ "flag_mu": "6.0",
4037
+ "mu": "6.0",
4038
+ "flag_yt": "6.0",
4039
+ "yt": "6.0",
4040
+ "flag_mx": "6.0",
4041
+ "mx": "6.0",
4042
+ "flag_fm": "6.0",
4043
+ "fm": "6.0",
4044
+ "flag_md": "6.0",
4045
+ "md": "6.0",
4046
+ "flag_mc": "6.0",
4047
+ "mc": "6.0",
4048
+ "flag_mn": "6.0",
4049
+ "mn": "6.0",
4050
+ "flag_me": "6.0",
4051
+ "me": "6.0",
4052
+ "flag_ms": "6.0",
4053
+ "ms": "6.0",
4054
+ "flag_ma": "6.0",
4055
+ "ma": "6.0",
4056
+ "flag_mz": "6.0",
4057
+ "mz": "6.0",
4058
+ "flag_mm": "6.0",
4059
+ "mm": "6.0",
4060
+ "flag_na": "6.0",
4061
+ "na": "6.0",
4062
+ "flag_nr": "6.0",
4063
+ "nr": "6.0",
4064
+ "flag_np": "6.0",
4065
+ "np": "6.0",
4066
+ "flag_nl": "6.0",
4067
+ "nl": "6.0",
4068
+ "flag_nc": "6.0",
4069
+ "nc": "6.0",
4070
+ "flag_nz": "6.0",
4071
+ "nz": "6.0",
4072
+ "flag_ni": "6.0",
4073
+ "ni": "6.0",
4074
+ "flag_ne": "6.0",
4075
+ "ne": "6.0",
4076
+ "flag_ng": "6.0",
4077
+ "nigeria": "6.0",
4078
+ "flag_nu": "6.0",
4079
+ "nu": "6.0",
4080
+ "flag_nf": "6.0",
4081
+ "nf": "6.0",
4082
+ "flag_kp": "6.0",
4083
+ "kp": "6.0",
4084
+ "flag_mp": "6.0",
4085
+ "mp": "6.0",
4086
+ "flag_no": "6.0",
4087
+ "no": "6.0",
4088
+ "flag_om": "6.0",
4089
+ "om": "6.0",
4090
+ "flag_pk": "6.0",
4091
+ "pk": "6.0",
4092
+ "flag_pw": "6.0",
4093
+ "pw": "6.0",
4094
+ "flag_ps": "6.0",
4095
+ "ps": "6.0",
4096
+ "flag_pa": "6.0",
4097
+ "pa": "6.0",
4098
+ "flag_pg": "6.0",
4099
+ "pg": "6.0",
4100
+ "flag_py": "6.0",
4101
+ "py": "6.0",
4102
+ "flag_pe": "6.0",
4103
+ "pe": "6.0",
4104
+ "flag_ph": "6.0",
4105
+ "ph": "6.0",
4106
+ "flag_pn": "6.0",
4107
+ "pn": "6.0",
4108
+ "flag_pl": "6.0",
4109
+ "pl": "6.0",
4110
+ "flag_pt": "6.0",
4111
+ "pt": "6.0",
4112
+ "flag_pr": "6.0",
4113
+ "pr": "6.0",
4114
+ "flag_qa": "6.0",
4115
+ "qa": "6.0",
4116
+ "flag_re": "6.0",
4117
+ "re": "6.0",
4118
+ "flag_ro": "6.0",
4119
+ "ro": "6.0",
4120
+ "flag_ru": "6.0",
4121
+ "ru": "6.0",
4122
+ "flag_rw": "6.0",
4123
+ "rw": "6.0",
4124
+ "flag_ws": "6.0",
4125
+ "ws": "6.0",
4126
+ "flag_sm": "6.0",
4127
+ "sm": "6.0",
4128
+ "flag_st": "6.0",
4129
+ "st": "6.0",
4130
+ "flag_sa": "6.0",
4131
+ "saudiarabia": "6.0",
4132
+ "saudi": "6.0",
4133
+ "flag_sn": "6.0",
4134
+ "sn": "6.0",
4135
+ "flag_rs": "6.0",
4136
+ "rs": "6.0",
4137
+ "flag_sc": "6.0",
4138
+ "sc": "6.0",
4139
+ "flag_sl": "6.0",
4140
+ "sl": "6.0",
4141
+ "flag_sg": "6.0",
4142
+ "sg": "6.0",
4143
+ "flag_sx": "6.0",
4144
+ "sx": "6.0",
4145
+ "flag_sk": "6.0",
4146
+ "sk": "6.0",
4147
+ "flag_si": "6.0",
4148
+ "si": "6.0",
4149
+ "flag_gs": "6.0",
4150
+ "gs": "6.0",
4151
+ "flag_sb": "6.0",
4152
+ "sb": "6.0",
4153
+ "flag_so": "6.0",
4154
+ "so": "6.0",
4155
+ "flag_za": "6.0",
4156
+ "za": "6.0",
4157
+ "flag_kr": "6.0",
4158
+ "kr": "6.0",
4159
+ "flag_ss": "6.0",
4160
+ "ss": "6.0",
4161
+ "flag_es": "6.0",
4162
+ "es": "6.0",
4163
+ "flag_lk": "6.0",
4164
+ "lk": "6.0",
4165
+ "flag_bl": "6.0",
4166
+ "bl": "6.0",
4167
+ "flag_sh": "6.0",
4168
+ "sh": "6.0",
4169
+ "flag_kn": "6.0",
4170
+ "kn": "6.0",
4171
+ "flag_lc": "6.0",
4172
+ "lc": "6.0",
4173
+ "flag_pm": "6.0",
4174
+ "pm": "6.0",
4175
+ "flag_vc": "6.0",
4176
+ "vc": "6.0",
4177
+ "flag_sd": "6.0",
4178
+ "sd": "6.0",
4179
+ "flag_sr": "6.0",
4180
+ "sr": "6.0",
4181
+ "flag_sz": "6.0",
4182
+ "sz": "6.0",
4183
+ "flag_se": "6.0",
4184
+ "se": "6.0",
4185
+ "flag_ch": "6.0",
4186
+ "ch": "6.0",
4187
+ "flag_sy": "6.0",
4188
+ "sy": "6.0",
4189
+ "flag_tw": "6.0",
4190
+ "tw": "6.0",
4191
+ "flag_tj": "6.0",
4192
+ "tj": "6.0",
4193
+ "flag_tz": "6.0",
4194
+ "tz": "6.0",
4195
+ "flag_th": "6.0",
4196
+ "th": "6.0",
4197
+ "flag_tl": "6.0",
4198
+ "tl": "6.0",
4199
+ "flag_tg": "6.0",
4200
+ "tg": "6.0",
4201
+ "flag_tk": "6.0",
4202
+ "tk": "6.0",
4203
+ "flag_to": "6.0",
4204
+ "to": "6.0",
4205
+ "flag_tt": "6.0",
4206
+ "tt": "6.0",
4207
+ "flag_tn": "6.0",
4208
+ "tn": "6.0",
4209
+ "flag_tr": "6.0",
4210
+ "tr": "6.0",
4211
+ "flag_tm": "6.0",
4212
+ "turkmenistan": "6.0",
4213
+ "flag_tc": "6.0",
4214
+ "tc": "6.0",
4215
+ "flag_vi": "6.0",
4216
+ "vi": "6.0",
4217
+ "flag_tv": "6.0",
4218
+ "tuvalu": "6.0",
4219
+ "flag_ug": "6.0",
4220
+ "ug": "6.0",
4221
+ "flag_ua": "6.0",
4222
+ "ua": "6.0",
4223
+ "flag_ae": "6.0",
4224
+ "ae": "6.0",
4225
+ "flag_gb": "6.0",
4226
+ "gb": "6.0",
4227
+ "england": "7.0",
4228
+ "scotland": "7.0",
4229
+ "wales": "7.0",
4230
+ "flag_us": "6.0",
4231
+ "us": "6.0",
4232
+ "flag_uy": "6.0",
4233
+ "uy": "6.0",
4234
+ "flag_uz": "6.0",
4235
+ "uz": "6.0",
4236
+ "flag_vu": "6.0",
4237
+ "vu": "6.0",
4238
+ "flag_va": "6.0",
4239
+ "va": "6.0",
4240
+ "flag_ve": "6.0",
4241
+ "ve": "6.0",
4242
+ "flag_vn": "6.0",
4243
+ "vn": "6.0",
4244
+ "flag_wf": "6.0",
4245
+ "wf": "6.0",
4246
+ "flag_eh": "6.0",
4247
+ "eh": "6.0",
4248
+ "flag_ye": "6.0",
4249
+ "ye": "6.0",
4250
+ "flag_zm": "6.0",
4251
+ "zm": "6.0",
4252
+ "flag_zw": "6.0",
4253
+ "zw": "6.0",
4254
+ "flag_ac": "6.0",
4255
+ "ac": "6.0",
4256
+ "flag_bv": "6.0",
4257
+ "bv": "6.0",
4258
+ "flag_cp": "6.0",
4259
+ "cp": "6.0",
4260
+ "flag_ea": "6.0",
4261
+ "ea": "6.0",
4262
+ "flag_dg": "6.0",
4263
+ "dg": "6.0",
4264
+ "flag_hm": "6.0",
4265
+ "hm": "6.0",
4266
+ "flag_mf": "6.0",
4267
+ "mf": "6.0",
4268
+ "flag_sj": "6.0",
4269
+ "sj": "6.0",
4270
+ "flag_ta": "6.0",
4271
+ "ta": "6.0",
4272
+ "flag_um": "6.0",
4273
+ "um": "6.0",
4274
+ "united_nations": "6.0",
4275
+ "tone1": "8.0",
4276
+ "tone2": "8.0",
4277
+ "tone3": "8.0",
4278
+ "tone4": "8.0",
4279
+ "tone5": "8.0",
4280
+ "large_blue_circle": "6.0",
4281
+ "ten": "6.0",
4282
+ "wrestlers_tone1": "9.0",
4283
+ "wrestling_tone1": "9.0",
4284
+ "wrestlers_tone2": "9.0",
4285
+ "wrestling_tone2": "9.0",
4286
+ "wrestlers_tone3": "9.0",
4287
+ "wrestling_tone3": "9.0",
4288
+ "wrestlers_tone4": "9.0",
4289
+ "wrestling_tone4": "9.0",
4290
+ "wrestlers_tone5": "9.0",
4291
+ "wrestling_tone5": "9.0",
4292
+ "handshake_tone1": "9.0",
4293
+ "shaking_hands_tone1": "9.0",
4294
+ "handshake_tone2": "9.0",
4295
+ "shaking_hands_tone2": "9.0",
4296
+ "handshake_tone3": "9.0",
4297
+ "shaking_hands_tone3": "9.0",
4298
+ "handshake_tone4": "9.0",
4299
+ "shaking_hands_tone4": "9.0",
4300
+ "handshake_tone5": "9.0",
4301
+ "shaking_hands_tone5": "9.0"
4302
+ }