Toggle Light / Dark / Auto color theme
               
               
               
               
             
           
          
            Toggle table of contents sidebar
             
           
         
        
          Source code for ntfy_api.enums 
   1 """Helper enums that can be used in place of some values. 
   2 
   3 :copyright: (c) 2024 Tanner Corcoran 
   4 :license: Apache 2.0, see LICENSE for more details. 
   5 
   6 """ 
   7 
   8 import   enum 
   9 import   sys 
  10 
  11 if  sys . version_info  >=  ( 3 ,  11 ):   # pragma: no cover 
  12     StrEnum  =  enum . StrEnum 
  13     IntEnum  =  enum . IntEnum 
  14 else :   # pragma: no cover 
  15 
  16     class   StrEnum ( str ,  enum . Enum ): 
  17         pass 
  18 
  19     class   IntEnum ( enum . IntEnum ): 
  20         def   __str__ ( self )  ->  str : 
  21             return  str ( self . value ) 
  22 
  23 
  24 from   .__version__   import  *   # noqa: F401,F403 
  25 
  26 __all__  =  ( 
  27     "Event" , 
  28     "HTTPMethod" , 
  29     "Priority" , 
  30     "Tag" , 
  31 ) 
  32 
  33 
[docs] 
  34 class   Event ( StrEnum ): 
  35      """Represents an event in :class:`.ReceivedMessage` 
  36     instances. 
  37 
  38     """ 
  39 
  40     open  =  "open" 
  41     message  =  "message" 
  42     keepalive  =  "keepalive" 
  43     poll_request  =  "poll_request"  
  44 
  45 
[docs] 
  46 class   HTTPMethod ( StrEnum ): 
  47      """Represents an HTTP method (e.g. GET, POST, and so on).""" 
  48 
  49     get  =  "GET" 
  50     post  =  "POST" 
  51     put  =  "PUT" 
  52     head  =  "HEAD" 
  53     patch  =  "PATCH"  
  54 
  55 
[docs] 
  56 class   Priority ( IntEnum ): 
  57      """Represents message priority in :class:`.Message` and 
  58     :class:`.ReceivedMessage`. 
  59 
  60     """ 
  61 
  62     min  =  1 
  63     low  =  2 
  64     default  =  3 
  65     high  =  4 
  66     urgent  =  5  
  67 
  68 
[docs] 
  69 class   Tag ( StrEnum ): 
  70      """Represents message tags in :class:`.Message` and 
  71     :class:`.ReceivedMessage`. 
  72 
  73     """ 
  74 
  75     grinning  =  "grinning" 
  76     smiley  =  "smiley" 
  77     smile  =  "smile" 
  78     grin  =  "grin" 
  79     laughing  =  "laughing" 
  80     sweat_smile  =  "sweat_smile" 
  81     rofl  =  "rofl" 
  82     joy  =  "joy" 
  83     slightly_smiling_face  =  "slightly_smiling_face" 
  84     upside_down_face  =  "upside_down_face" 
  85     wink  =  "wink" 
  86     blush  =  "blush" 
  87     innocent  =  "innocent" 
  88     smiling_face_with_three_hearts  =  "smiling_face_with_three_hearts" 
  89     heart_eyes  =  "heart_eyes" 
  90     star_struck  =  "star_struck" 
  91     kissing_heart  =  "kissing_heart" 
  92     kissing  =  "kissing" 
  93     relaxed  =  "relaxed" 
  94     kissing_closed_eyes  =  "kissing_closed_eyes" 
  95     kissing_smiling_eyes  =  "kissing_smiling_eyes" 
  96     smiling_face_with_tear  =  "smiling_face_with_tear" 
  97     yum  =  "yum" 
  98     stuck_out_tongue  =  "stuck_out_tongue" 
  99     stuck_out_tongue_winking_eye  =  "stuck_out_tongue_winking_eye" 
 100     zany_face  =  "zany_face" 
 101     stuck_out_tongue_closed_eyes  =  "stuck_out_tongue_closed_eyes" 
 102     money_mouth_face  =  "money_mouth_face" 
 103     hugs  =  "hugs" 
 104     hand_over_mouth  =  "hand_over_mouth" 
 105     shushing_face  =  "shushing_face" 
 106     thinking  =  "thinking" 
 107     zipper_mouth_face  =  "zipper_mouth_face" 
 108     raised_eyebrow  =  "raised_eyebrow" 
 109     neutral_face  =  "neutral_face" 
 110     expressionless  =  "expressionless" 
 111     no_mouth  =  "no_mouth" 
 112     face_in_clouds  =  "face_in_clouds" 
 113     smirk  =  "smirk" 
 114     unamused  =  "unamused" 
 115     roll_eyes  =  "roll_eyes" 
 116     grimacing  =  "grimacing" 
 117     face_exhaling  =  "face_exhaling" 
 118     lying_face  =  "lying_face" 
 119     relieved  =  "relieved" 
 120     pensive  =  "pensive" 
 121     sleepy  =  "sleepy" 
 122     drooling_face  =  "drooling_face" 
 123     sleeping  =  "sleeping" 
 124     mask  =  "mask" 
 125     face_with_thermometer  =  "face_with_thermometer" 
 126     face_with_head_bandage  =  "face_with_head_bandage" 
 127     nauseated_face  =  "nauseated_face" 
 128     vomiting_face  =  "vomiting_face" 
 129     sneezing_face  =  "sneezing_face" 
 130     hot_face  =  "hot_face" 
 131     cold_face  =  "cold_face" 
 132     woozy_face  =  "woozy_face" 
 133     dizzy_face  =  "dizzy_face" 
 134     face_with_spiral_eyes  =  "face_with_spiral_eyes" 
 135     exploding_head  =  "exploding_head" 
 136     cowboy_hat_face  =  "cowboy_hat_face" 
 137     partying_face  =  "partying_face" 
 138     disguised_face  =  "disguised_face" 
 139     sunglasses  =  "sunglasses" 
 140     nerd_face  =  "nerd_face" 
 141     monocle_face  =  "monocle_face" 
 142     confused  =  "confused" 
 143     worried  =  "worried" 
 144     slightly_frowning_face  =  "slightly_frowning_face" 
 145     frowning_face  =  "frowning_face" 
 146     open_mouth  =  "open_mouth" 
 147     hushed  =  "hushed" 
 148     astonished  =  "astonished" 
 149     flushed  =  "flushed" 
 150     pleading_face  =  "pleading_face" 
 151     frowning  =  "frowning" 
 152     anguished  =  "anguished" 
 153     fearful  =  "fearful" 
 154     cold_sweat  =  "cold_sweat" 
 155     disappointed_relieved  =  "disappointed_relieved" 
 156     cry  =  "cry" 
 157     sob  =  "sob" 
 158     scream  =  "scream" 
 159     confounded  =  "confounded" 
 160     persevere  =  "persevere" 
 161     disappointed  =  "disappointed" 
 162     sweat  =  "sweat" 
 163     weary  =  "weary" 
 164     tired_face  =  "tired_face" 
 165     yawning_face  =  "yawning_face" 
 166     triumph  =  "triumph" 
 167     rage  =  "rage" 
 168     angry  =  "angry" 
 169     cursing_face  =  "cursing_face" 
 170     smiling_imp  =  "smiling_imp" 
 171     imp  =  "imp" 
 172     skull  =  "skull" 
 173     skull_and_crossbones  =  "skull_and_crossbones" 
 174     hankey  =  "hankey" 
 175     clown_face  =  "clown_face" 
 176     japanese_ogre  =  "japanese_ogre" 
 177     japanese_goblin  =  "japanese_goblin" 
 178     ghost  =  "ghost" 
 179     alien  =  "alien" 
 180     space_invader  =  "space_invader" 
 181     robot  =  "robot" 
 182     smiley_cat  =  "smiley_cat" 
 183     smile_cat  =  "smile_cat" 
 184     joy_cat  =  "joy_cat" 
 185     heart_eyes_cat  =  "heart_eyes_cat" 
 186     smirk_cat  =  "smirk_cat" 
 187     kissing_cat  =  "kissing_cat" 
 188     scream_cat  =  "scream_cat" 
 189     crying_cat_face  =  "crying_cat_face" 
 190     pouting_cat  =  "pouting_cat" 
 191     see_no_evil  =  "see_no_evil" 
 192     hear_no_evil  =  "hear_no_evil" 
 193     speak_no_evil  =  "speak_no_evil" 
 194     kiss  =  "kiss" 
 195     love_letter  =  "love_letter" 
 196     cupid  =  "cupid" 
 197     gift_heart  =  "gift_heart" 
 198     sparkling_heart  =  "sparkling_heart" 
 199     heartpulse  =  "heartpulse" 
 200     heartbeat  =  "heartbeat" 
 201     revolving_hearts  =  "revolving_hearts" 
 202     two_hearts  =  "two_hearts" 
 203     heart_decoration  =  "heart_decoration" 
 204     heavy_heart_exclamation  =  "heavy_heart_exclamation" 
 205     broken_heart  =  "broken_heart" 
 206     heart_on_fire  =  "heart_on_fire" 
 207     mending_heart  =  "mending_heart" 
 208     heart  =  "heart" 
 209     orange_heart  =  "orange_heart" 
 210     yellow_heart  =  "yellow_heart" 
 211     green_heart  =  "green_heart" 
 212     blue_heart  =  "blue_heart" 
 213     purple_heart  =  "purple_heart" 
 214     brown_heart  =  "brown_heart" 
 215     black_heart  =  "black_heart" 
 216     white_heart  =  "white_heart" 
 217     _100  =  "100" 
 218     anger  =  "anger" 
 219     boom  =  "boom" 
 220     dizzy  =  "dizzy" 
 221     sweat_drops  =  "sweat_drops" 
 222     dash  =  "dash" 
 223     hole  =  "hole" 
 224     bomb  =  "bomb" 
 225     speech_balloon  =  "speech_balloon" 
 226     eye_speech_bubble  =  "eye_speech_bubble" 
 227     left_speech_bubble  =  "left_speech_bubble" 
 228     right_anger_bubble  =  "right_anger_bubble" 
 229     thought_balloon  =  "thought_balloon" 
 230     zzz  =  "zzz" 
 231     wave  =  "wave" 
 232     raised_back_of_hand  =  "raised_back_of_hand" 
 233     raised_hand_with_fingers_splayed  =  "raised_hand_with_fingers_splayed" 
 234     hand  =  "hand" 
 235     vulcan_salute  =  "vulcan_salute" 
 236     ok_hand  =  "ok_hand" 
 237     pinched_fingers  =  "pinched_fingers" 
 238     pinching_hand  =  "pinching_hand" 
 239     v  =  "v" 
 240     crossed_fingers  =  "crossed_fingers" 
 241     love_you_gesture  =  "love_you_gesture" 
 242     metal  =  "metal" 
 243     call_me_hand  =  "call_me_hand" 
 244     point_left  =  "point_left" 
 245     point_right  =  "point_right" 
 246     point_up_2  =  "point_up_2" 
 247     middle_finger  =  "middle_finger" 
 248     point_down  =  "point_down" 
 249     point_up  =  "point_up" 
 250     plus_1  =  "+1" 
 251     minus_1  =  "-1" 
 252     fist_raised  =  "fist_raised" 
 253     fist_oncoming  =  "fist_oncoming" 
 254     fist_left  =  "fist_left" 
 255     fist_right  =  "fist_right" 
 256     clap  =  "clap" 
 257     raised_hands  =  "raised_hands" 
 258     open_hands  =  "open_hands" 
 259     palms_up_together  =  "palms_up_together" 
 260     handshake  =  "handshake" 
 261     pray  =  "pray" 
 262     writing_hand  =  "writing_hand" 
 263     nail_care  =  "nail_care" 
 264     selfie  =  "selfie" 
 265     muscle  =  "muscle" 
 266     mechanical_arm  =  "mechanical_arm" 
 267     mechanical_leg  =  "mechanical_leg" 
 268     leg  =  "leg" 
 269     foot  =  "foot" 
 270     ear  =  "ear" 
 271     ear_with_hearing_aid  =  "ear_with_hearing_aid" 
 272     nose  =  "nose" 
 273     brain  =  "brain" 
 274     anatomical_heart  =  "anatomical_heart" 
 275     lungs  =  "lungs" 
 276     tooth  =  "tooth" 
 277     bone  =  "bone" 
 278     eyes  =  "eyes" 
 279     eye  =  "eye" 
 280     tongue  =  "tongue" 
 281     lips  =  "lips" 
 282     baby  =  "baby" 
 283     child  =  "child" 
 284     boy  =  "boy" 
 285     girl  =  "girl" 
 286     adult  =  "adult" 
 287     blond_haired_person  =  "blond_haired_person" 
 288     man  =  "man" 
 289     bearded_person  =  "bearded_person" 
 290     man_beard  =  "man_beard" 
 291     woman_beard  =  "woman_beard" 
 292     red_haired_man  =  "red_haired_man" 
 293     curly_haired_man  =  "curly_haired_man" 
 294     white_haired_man  =  "white_haired_man" 
 295     bald_man  =  "bald_man" 
 296     woman  =  "woman" 
 297     red_haired_woman  =  "red_haired_woman" 
 298     person_red_hair  =  "person_red_hair" 
 299     curly_haired_woman  =  "curly_haired_woman" 
 300     person_curly_hair  =  "person_curly_hair" 
 301     white_haired_woman  =  "white_haired_woman" 
 302     person_white_hair  =  "person_white_hair" 
 303     bald_woman  =  "bald_woman" 
 304     person_bald  =  "person_bald" 
 305     blond_haired_woman  =  "blond_haired_woman" 
 306     blond_haired_man  =  "blond_haired_man" 
 307     older_adult  =  "older_adult" 
 308     older_man  =  "older_man" 
 309     older_woman  =  "older_woman" 
 310     frowning_person  =  "frowning_person" 
 311     frowning_man  =  "frowning_man" 
 312     frowning_woman  =  "frowning_woman" 
 313     pouting_face  =  "pouting_face" 
 314     pouting_man  =  "pouting_man" 
 315     pouting_woman  =  "pouting_woman" 
 316     no_good  =  "no_good" 
 317     no_good_man  =  "no_good_man" 
 318     no_good_woman  =  "no_good_woman" 
 319     ok_person  =  "ok_person" 
 320     ok_man  =  "ok_man" 
 321     ok_woman  =  "ok_woman" 
 322     tipping_hand_person  =  "tipping_hand_person" 
 323     tipping_hand_man  =  "tipping_hand_man" 
 324     tipping_hand_woman  =  "tipping_hand_woman" 
 325     raising_hand  =  "raising_hand" 
 326     raising_hand_man  =  "raising_hand_man" 
 327     raising_hand_woman  =  "raising_hand_woman" 
 328     deaf_person  =  "deaf_person" 
 329     deaf_man  =  "deaf_man" 
 330     deaf_woman  =  "deaf_woman" 
 331     bow  =  "bow" 
 332     bowing_man  =  "bowing_man" 
 333     bowing_woman  =  "bowing_woman" 
 334     facepalm  =  "facepalm" 
 335     man_facepalming  =  "man_facepalming" 
 336     woman_facepalming  =  "woman_facepalming" 
 337     shrug  =  "shrug" 
 338     man_shrugging  =  "man_shrugging" 
 339     woman_shrugging  =  "woman_shrugging" 
 340     health_worker  =  "health_worker" 
 341     man_health_worker  =  "man_health_worker" 
 342     woman_health_worker  =  "woman_health_worker" 
 343     student  =  "student" 
 344     man_student  =  "man_student" 
 345     woman_student  =  "woman_student" 
 346     teacher  =  "teacher" 
 347     man_teacher  =  "man_teacher" 
 348     woman_teacher  =  "woman_teacher" 
 349     judge  =  "judge" 
 350     man_judge  =  "man_judge" 
 351     woman_judge  =  "woman_judge" 
 352     farmer  =  "farmer" 
 353     man_farmer  =  "man_farmer" 
 354     woman_farmer  =  "woman_farmer" 
 355     cook  =  "cook" 
 356     man_cook  =  "man_cook" 
 357     woman_cook  =  "woman_cook" 
 358     mechanic  =  "mechanic" 
 359     man_mechanic  =  "man_mechanic" 
 360     woman_mechanic  =  "woman_mechanic" 
 361     factory_worker  =  "factory_worker" 
 362     man_factory_worker  =  "man_factory_worker" 
 363     woman_factory_worker  =  "woman_factory_worker" 
 364     office_worker  =  "office_worker" 
 365     man_office_worker  =  "man_office_worker" 
 366     woman_office_worker  =  "woman_office_worker" 
 367     scientist  =  "scientist" 
 368     man_scientist  =  "man_scientist" 
 369     woman_scientist  =  "woman_scientist" 
 370     technologist  =  "technologist" 
 371     man_technologist  =  "man_technologist" 
 372     woman_technologist  =  "woman_technologist" 
 373     singer  =  "singer" 
 374     man_singer  =  "man_singer" 
 375     woman_singer  =  "woman_singer" 
 376     artist  =  "artist" 
 377     man_artist  =  "man_artist" 
 378     woman_artist  =  "woman_artist" 
 379     pilot  =  "pilot" 
 380     man_pilot  =  "man_pilot" 
 381     woman_pilot  =  "woman_pilot" 
 382     astronaut  =  "astronaut" 
 383     man_astronaut  =  "man_astronaut" 
 384     woman_astronaut  =  "woman_astronaut" 
 385     firefighter  =  "firefighter" 
 386     man_firefighter  =  "man_firefighter" 
 387     woman_firefighter  =  "woman_firefighter" 
 388     police_officer  =  "police_officer" 
 389     policeman  =  "policeman" 
 390     policewoman  =  "policewoman" 
 391     detective  =  "detective" 
 392     male_detective  =  "male_detective" 
 393     female_detective  =  "female_detective" 
 394     guard  =  "guard" 
 395     guardsman  =  "guardsman" 
 396     guardswoman  =  "guardswoman" 
 397     ninja  =  "ninja" 
 398     construction_worker  =  "construction_worker" 
 399     construction_worker_man  =  "construction_worker_man" 
 400     construction_worker_woman  =  "construction_worker_woman" 
 401     prince  =  "prince" 
 402     princess  =  "princess" 
 403     person_with_turban  =  "person_with_turban" 
 404     man_with_turban  =  "man_with_turban" 
 405     woman_with_turban  =  "woman_with_turban" 
 406     man_with_gua_pi_mao  =  "man_with_gua_pi_mao" 
 407     woman_with_headscarf  =  "woman_with_headscarf" 
 408     person_in_tuxedo  =  "person_in_tuxedo" 
 409     man_in_tuxedo  =  "man_in_tuxedo" 
 410     woman_in_tuxedo  =  "woman_in_tuxedo" 
 411     person_with_veil  =  "person_with_veil" 
 412     man_with_veil  =  "man_with_veil" 
 413     woman_with_veil  =  "woman_with_veil" 
 414     pregnant_woman  =  "pregnant_woman" 
 415     breast_feeding  =  "breast_feeding" 
 416     woman_feeding_baby  =  "woman_feeding_baby" 
 417     man_feeding_baby  =  "man_feeding_baby" 
 418     person_feeding_baby  =  "person_feeding_baby" 
 419     angel  =  "angel" 
 420     santa  =  "santa" 
 421     mrs_claus  =  "mrs_claus" 
 422     mx_claus  =  "mx_claus" 
 423     superhero  =  "superhero" 
 424     superhero_man  =  "superhero_man" 
 425     superhero_woman  =  "superhero_woman" 
 426     supervillain  =  "supervillain" 
 427     supervillain_man  =  "supervillain_man" 
 428     supervillain_woman  =  "supervillain_woman" 
 429     mage  =  "mage" 
 430     mage_man  =  "mage_man" 
 431     mage_woman  =  "mage_woman" 
 432     fairy  =  "fairy" 
 433     fairy_man  =  "fairy_man" 
 434     fairy_woman  =  "fairy_woman" 
 435     vampire  =  "vampire" 
 436     vampire_man  =  "vampire_man" 
 437     vampire_woman  =  "vampire_woman" 
 438     merperson  =  "merperson" 
 439     merman  =  "merman" 
 440     mermaid  =  "mermaid" 
 441     elf  =  "elf" 
 442     elf_man  =  "elf_man" 
 443     elf_woman  =  "elf_woman" 
 444     genie  =  "genie" 
 445     genie_man  =  "genie_man" 
 446     genie_woman  =  "genie_woman" 
 447     zombie  =  "zombie" 
 448     zombie_man  =  "zombie_man" 
 449     zombie_woman  =  "zombie_woman" 
 450     massage  =  "massage" 
 451     massage_man  =  "massage_man" 
 452     massage_woman  =  "massage_woman" 
 453     haircut  =  "haircut" 
 454     haircut_man  =  "haircut_man" 
 455     haircut_woman  =  "haircut_woman" 
 456     walking  =  "walking" 
 457     walking_man  =  "walking_man" 
 458     walking_woman  =  "walking_woman" 
 459     standing_person  =  "standing_person" 
 460     standing_man  =  "standing_man" 
 461     standing_woman  =  "standing_woman" 
 462     kneeling_person  =  "kneeling_person" 
 463     kneeling_man  =  "kneeling_man" 
 464     kneeling_woman  =  "kneeling_woman" 
 465     person_with_probing_cane  =  "person_with_probing_cane" 
 466     man_with_probing_cane  =  "man_with_probing_cane" 
 467     woman_with_probing_cane  =  "woman_with_probing_cane" 
 468     person_in_motorized_wheelchair  =  "person_in_motorized_wheelchair" 
 469     man_in_motorized_wheelchair  =  "man_in_motorized_wheelchair" 
 470     woman_in_motorized_wheelchair  =  "woman_in_motorized_wheelchair" 
 471     person_in_manual_wheelchair  =  "person_in_manual_wheelchair" 
 472     man_in_manual_wheelchair  =  "man_in_manual_wheelchair" 
 473     woman_in_manual_wheelchair  =  "woman_in_manual_wheelchair" 
 474     runner  =  "runner" 
 475     running_man  =  "running_man" 
 476     running_woman  =  "running_woman" 
 477     woman_dancing  =  "woman_dancing" 
 478     man_dancing  =  "man_dancing" 
 479     business_suit_levitating  =  "business_suit_levitating" 
 480     dancers  =  "dancers" 
 481     dancing_men  =  "dancing_men" 
 482     dancing_women  =  "dancing_women" 
 483     sauna_person  =  "sauna_person" 
 484     sauna_man  =  "sauna_man" 
 485     sauna_woman  =  "sauna_woman" 
 486     climbing  =  "climbing" 
 487     climbing_man  =  "climbing_man" 
 488     climbing_woman  =  "climbing_woman" 
 489     person_fencing  =  "person_fencing" 
 490     horse_racing  =  "horse_racing" 
 491     skier  =  "skier" 
 492     snowboarder  =  "snowboarder" 
 493     golfing  =  "golfing" 
 494     golfing_man  =  "golfing_man" 
 495     golfing_woman  =  "golfing_woman" 
 496     surfer  =  "surfer" 
 497     surfing_man  =  "surfing_man" 
 498     surfing_woman  =  "surfing_woman" 
 499     rowboat  =  "rowboat" 
 500     rowing_man  =  "rowing_man" 
 501     rowing_woman  =  "rowing_woman" 
 502     swimmer  =  "swimmer" 
 503     swimming_man  =  "swimming_man" 
 504     swimming_woman  =  "swimming_woman" 
 505     bouncing_ball_person  =  "bouncing_ball_person" 
 506     bouncing_ball_man  =  "bouncing_ball_man" 
 507     bouncing_ball_woman  =  "bouncing_ball_woman" 
 508     weight_lifting  =  "weight_lifting" 
 509     weight_lifting_man  =  "weight_lifting_man" 
 510     weight_lifting_woman  =  "weight_lifting_woman" 
 511     bicyclist  =  "bicyclist" 
 512     biking_man  =  "biking_man" 
 513     biking_woman  =  "biking_woman" 
 514     mountain_bicyclist  =  "mountain_bicyclist" 
 515     mountain_biking_man  =  "mountain_biking_man" 
 516     mountain_biking_woman  =  "mountain_biking_woman" 
 517     cartwheeling  =  "cartwheeling" 
 518     man_cartwheeling  =  "man_cartwheeling" 
 519     woman_cartwheeling  =  "woman_cartwheeling" 
 520     wrestling  =  "wrestling" 
 521     men_wrestling  =  "men_wrestling" 
 522     women_wrestling  =  "women_wrestling" 
 523     water_polo  =  "water_polo" 
 524     man_playing_water_polo  =  "man_playing_water_polo" 
 525     woman_playing_water_polo  =  "woman_playing_water_polo" 
 526     handball_person  =  "handball_person" 
 527     man_playing_handball  =  "man_playing_handball" 
 528     woman_playing_handball  =  "woman_playing_handball" 
 529     juggling_person  =  "juggling_person" 
 530     man_juggling  =  "man_juggling" 
 531     woman_juggling  =  "woman_juggling" 
 532     lotus_position  =  "lotus_position" 
 533     lotus_position_man  =  "lotus_position_man" 
 534     lotus_position_woman  =  "lotus_position_woman" 
 535     bath  =  "bath" 
 536     sleeping_bed  =  "sleeping_bed" 
 537     people_holding_hands  =  "people_holding_hands" 
 538     two_women_holding_hands  =  "two_women_holding_hands" 
 539     couple  =  "couple" 
 540     two_men_holding_hands  =  "two_men_holding_hands" 
 541     couplekiss  =  "couplekiss" 
 542     couplekiss_man_woman  =  "couplekiss_man_woman" 
 543     couplekiss_man_man  =  "couplekiss_man_man" 
 544     couplekiss_woman_woman  =  "couplekiss_woman_woman" 
 545     couple_with_heart  =  "couple_with_heart" 
 546     couple_with_heart_woman_man  =  "couple_with_heart_woman_man" 
 547     couple_with_heart_man_man  =  "couple_with_heart_man_man" 
 548     couple_with_heart_woman_woman  =  "couple_with_heart_woman_woman" 
 549     family  =  "family" 
 550     family_man_woman_boy  =  "family_man_woman_boy" 
 551     family_man_woman_girl  =  "family_man_woman_girl" 
 552     family_man_woman_girl_boy  =  "family_man_woman_girl_boy" 
 553     family_man_woman_boy_boy  =  "family_man_woman_boy_boy" 
 554     family_man_woman_girl_girl  =  "family_man_woman_girl_girl" 
 555     family_man_man_boy  =  "family_man_man_boy" 
 556     family_man_man_girl  =  "family_man_man_girl" 
 557     family_man_man_girl_boy  =  "family_man_man_girl_boy" 
 558     family_man_man_boy_boy  =  "family_man_man_boy_boy" 
 559     family_man_man_girl_girl  =  "family_man_man_girl_girl" 
 560     family_woman_woman_boy  =  "family_woman_woman_boy" 
 561     family_woman_woman_girl  =  "family_woman_woman_girl" 
 562     family_woman_woman_girl_boy  =  "family_woman_woman_girl_boy" 
 563     family_woman_woman_boy_boy  =  "family_woman_woman_boy_boy" 
 564     family_woman_woman_girl_girl  =  "family_woman_woman_girl_girl" 
 565     family_man_boy  =  "family_man_boy" 
 566     family_man_boy_boy  =  "family_man_boy_boy" 
 567     family_man_girl  =  "family_man_girl" 
 568     family_man_girl_boy  =  "family_man_girl_boy" 
 569     family_man_girl_girl  =  "family_man_girl_girl" 
 570     family_woman_boy  =  "family_woman_boy" 
 571     family_woman_boy_boy  =  "family_woman_boy_boy" 
 572     family_woman_girl  =  "family_woman_girl" 
 573     family_woman_girl_boy  =  "family_woman_girl_boy" 
 574     family_woman_girl_girl  =  "family_woman_girl_girl" 
 575     speaking_head  =  "speaking_head" 
 576     bust_in_silhouette  =  "bust_in_silhouette" 
 577     busts_in_silhouette  =  "busts_in_silhouette" 
 578     people_hugging  =  "people_hugging" 
 579     footprints  =  "footprints" 
 580     monkey_face  =  "monkey_face" 
 581     monkey  =  "monkey" 
 582     gorilla  =  "gorilla" 
 583     orangutan  =  "orangutan" 
 584     dog  =  "dog" 
 585     dog2  =  "dog2" 
 586     guide_dog  =  "guide_dog" 
 587     service_dog  =  "service_dog" 
 588     poodle  =  "poodle" 
 589     wolf  =  "wolf" 
 590     fox_face  =  "fox_face" 
 591     raccoon  =  "raccoon" 
 592     cat  =  "cat" 
 593     cat2  =  "cat2" 
 594     black_cat  =  "black_cat" 
 595     lion  =  "lion" 
 596     tiger  =  "tiger" 
 597     tiger2  =  "tiger2" 
 598     leopard  =  "leopard" 
 599     horse  =  "horse" 
 600     racehorse  =  "racehorse" 
 601     unicorn  =  "unicorn" 
 602     zebra  =  "zebra" 
 603     deer  =  "deer" 
 604     bison  =  "bison" 
 605     cow  =  "cow" 
 606     ox  =  "ox" 
 607     water_buffalo  =  "water_buffalo" 
 608     cow2  =  "cow2" 
 609     pig  =  "pig" 
 610     pig2  =  "pig2" 
 611     boar  =  "boar" 
 612     pig_nose  =  "pig_nose" 
 613     ram  =  "ram" 
 614     sheep  =  "sheep" 
 615     goat  =  "goat" 
 616     dromedary_camel  =  "dromedary_camel" 
 617     camel  =  "camel" 
 618     llama  =  "llama" 
 619     giraffe  =  "giraffe" 
 620     elephant  =  "elephant" 
 621     mammoth  =  "mammoth" 
 622     rhinoceros  =  "rhinoceros" 
 623     hippopotamus  =  "hippopotamus" 
 624     mouse  =  "mouse" 
 625     mouse2  =  "mouse2" 
 626     rat  =  "rat" 
 627     hamster  =  "hamster" 
 628     rabbit  =  "rabbit" 
 629     rabbit2  =  "rabbit2" 
 630     chipmunk  =  "chipmunk" 
 631     beaver  =  "beaver" 
 632     hedgehog  =  "hedgehog" 
 633     bat  =  "bat" 
 634     bear  =  "bear" 
 635     polar_bear  =  "polar_bear" 
 636     koala  =  "koala" 
 637     panda_face  =  "panda_face" 
 638     sloth  =  "sloth" 
 639     otter  =  "otter" 
 640     skunk  =  "skunk" 
 641     kangaroo  =  "kangaroo" 
 642     badger  =  "badger" 
 643     feet  =  "feet" 
 644     turkey  =  "turkey" 
 645     chicken  =  "chicken" 
 646     rooster  =  "rooster" 
 647     hatching_chick  =  "hatching_chick" 
 648     baby_chick  =  "baby_chick" 
 649     hatched_chick  =  "hatched_chick" 
 650     bird  =  "bird" 
 651     penguin  =  "penguin" 
 652     dove  =  "dove" 
 653     eagle  =  "eagle" 
 654     duck  =  "duck" 
 655     swan  =  "swan" 
 656     owl  =  "owl" 
 657     dodo  =  "dodo" 
 658     feather  =  "feather" 
 659     flamingo  =  "flamingo" 
 660     peacock  =  "peacock" 
 661     parrot  =  "parrot" 
 662     frog  =  "frog" 
 663     crocodile  =  "crocodile" 
 664     turtle  =  "turtle" 
 665     lizard  =  "lizard" 
 666     snake  =  "snake" 
 667     dragon_face  =  "dragon_face" 
 668     dragon  =  "dragon" 
 669     sauropod  =  "sauropod" 
 670     t  =  "t" 
 671     whale  =  "whale" 
 672     whale2  =  "whale2" 
 673     dolphin  =  "dolphin" 
 674     seal  =  "seal" 
 675     fish  =  "fish" 
 676     tropical_fish  =  "tropical_fish" 
 677     blowfish  =  "blowfish" 
 678     shark  =  "shark" 
 679     octopus  =  "octopus" 
 680     shell  =  "shell" 
 681     snail  =  "snail" 
 682     butterfly  =  "butterfly" 
 683     bug  =  "bug" 
 684     ant  =  "ant" 
 685     bee  =  "bee" 
 686     beetle  =  "beetle" 
 687     lady_beetle  =  "lady_beetle" 
 688     cricket  =  "cricket" 
 689     cockroach  =  "cockroach" 
 690     spider  =  "spider" 
 691     spider_web  =  "spider_web" 
 692     scorpion  =  "scorpion" 
 693     mosquito  =  "mosquito" 
 694     fly  =  "fly" 
 695     worm  =  "worm" 
 696     microbe  =  "microbe" 
 697     bouquet  =  "bouquet" 
 698     cherry_blossom  =  "cherry_blossom" 
 699     white_flower  =  "white_flower" 
 700     rosette  =  "rosette" 
 701     rose  =  "rose" 
 702     wilted_flower  =  "wilted_flower" 
 703     hibiscus  =  "hibiscus" 
 704     sunflower  =  "sunflower" 
 705     blossom  =  "blossom" 
 706     tulip  =  "tulip" 
 707     seedling  =  "seedling" 
 708     potted_plant  =  "potted_plant" 
 709     evergreen_tree  =  "evergreen_tree" 
 710     deciduous_tree  =  "deciduous_tree" 
 711     palm_tree  =  "palm_tree" 
 712     cactus  =  "cactus" 
 713     ear_of_rice  =  "ear_of_rice" 
 714     herb  =  "herb" 
 715     shamrock  =  "shamrock" 
 716     four_leaf_clover  =  "four_leaf_clover" 
 717     maple_leaf  =  "maple_leaf" 
 718     fallen_leaf  =  "fallen_leaf" 
 719     leaves  =  "leaves" 
 720     grapes  =  "grapes" 
 721     melon  =  "melon" 
 722     watermelon  =  "watermelon" 
 723     tangerine  =  "tangerine" 
 724     lemon  =  "lemon" 
 725     banana  =  "banana" 
 726     pineapple  =  "pineapple" 
 727     mango  =  "mango" 
 728     apple  =  "apple" 
 729     green_apple  =  "green_apple" 
 730     pear  =  "pear" 
 731     peach  =  "peach" 
 732     cherries  =  "cherries" 
 733     strawberry  =  "strawberry" 
 734     blueberries  =  "blueberries" 
 735     kiwi_fruit  =  "kiwi_fruit" 
 736     tomato  =  "tomato" 
 737     olive  =  "olive" 
 738     coconut  =  "coconut" 
 739     avocado  =  "avocado" 
 740     eggplant  =  "eggplant" 
 741     potato  =  "potato" 
 742     carrot  =  "carrot" 
 743     corn  =  "corn" 
 744     hot_pepper  =  "hot_pepper" 
 745     bell_pepper  =  "bell_pepper" 
 746     cucumber  =  "cucumber" 
 747     leafy_green  =  "leafy_green" 
 748     broccoli  =  "broccoli" 
 749     garlic  =  "garlic" 
 750     onion  =  "onion" 
 751     mushroom  =  "mushroom" 
 752     peanuts  =  "peanuts" 
 753     chestnut  =  "chestnut" 
 754     bread  =  "bread" 
 755     croissant  =  "croissant" 
 756     baguette_bread  =  "baguette_bread" 
 757     flatbread  =  "flatbread" 
 758     pretzel  =  "pretzel" 
 759     bagel  =  "bagel" 
 760     pancakes  =  "pancakes" 
 761     waffle  =  "waffle" 
 762     cheese  =  "cheese" 
 763     meat_on_bone  =  "meat_on_bone" 
 764     poultry_leg  =  "poultry_leg" 
 765     cut_of_meat  =  "cut_of_meat" 
 766     bacon  =  "bacon" 
 767     hamburger  =  "hamburger" 
 768     fries  =  "fries" 
 769     pizza  =  "pizza" 
 770     hotdog  =  "hotdog" 
 771     sandwich  =  "sandwich" 
 772     taco  =  "taco" 
 773     burrito  =  "burrito" 
 774     tamale  =  "tamale" 
 775     stuffed_flatbread  =  "stuffed_flatbread" 
 776     falafel  =  "falafel" 
 777     egg  =  "egg" 
 778     fried_egg  =  "fried_egg" 
 779     shallow_pan_of_food  =  "shallow_pan_of_food" 
 780     stew  =  "stew" 
 781     fondue  =  "fondue" 
 782     bowl_with_spoon  =  "bowl_with_spoon" 
 783     green_salad  =  "green_salad" 
 784     popcorn  =  "popcorn" 
 785     butter  =  "butter" 
 786     salt  =  "salt" 
 787     canned_food  =  "canned_food" 
 788     bento  =  "bento" 
 789     rice_cracker  =  "rice_cracker" 
 790     rice_ball  =  "rice_ball" 
 791     rice  =  "rice" 
 792     curry  =  "curry" 
 793     ramen  =  "ramen" 
 794     spaghetti  =  "spaghetti" 
 795     sweet_potato  =  "sweet_potato" 
 796     oden  =  "oden" 
 797     sushi  =  "sushi" 
 798     fried_shrimp  =  "fried_shrimp" 
 799     fish_cake  =  "fish_cake" 
 800     moon_cake  =  "moon_cake" 
 801     dango  =  "dango" 
 802     dumpling  =  "dumpling" 
 803     fortune_cookie  =  "fortune_cookie" 
 804     takeout_box  =  "takeout_box" 
 805     crab  =  "crab" 
 806     lobster  =  "lobster" 
 807     shrimp  =  "shrimp" 
 808     squid  =  "squid" 
 809     oyster  =  "oyster" 
 810     icecream  =  "icecream" 
 811     shaved_ice  =  "shaved_ice" 
 812     ice_cream  =  "ice_cream" 
 813     doughnut  =  "doughnut" 
 814     cookie  =  "cookie" 
 815     birthday  =  "birthday" 
 816     cake  =  "cake" 
 817     cupcake  =  "cupcake" 
 818     pie  =  "pie" 
 819     chocolate_bar  =  "chocolate_bar" 
 820     candy  =  "candy" 
 821     lollipop  =  "lollipop" 
 822     custard  =  "custard" 
 823     honey_pot  =  "honey_pot" 
 824     baby_bottle  =  "baby_bottle" 
 825     milk_glass  =  "milk_glass" 
 826     coffee  =  "coffee" 
 827     teapot  =  "teapot" 
 828     tea  =  "tea" 
 829     sake  =  "sake" 
 830     champagne  =  "champagne" 
 831     wine_glass  =  "wine_glass" 
 832     cocktail  =  "cocktail" 
 833     tropical_drink  =  "tropical_drink" 
 834     beer  =  "beer" 
 835     beers  =  "beers" 
 836     clinking_glasses  =  "clinking_glasses" 
 837     tumbler_glass  =  "tumbler_glass" 
 838     cup_with_straw  =  "cup_with_straw" 
 839     bubble_tea  =  "bubble_tea" 
 840     beverage_box  =  "beverage_box" 
 841     mate  =  "mate" 
 842     ice_cube  =  "ice_cube" 
 843     chopsticks  =  "chopsticks" 
 844     plate_with_cutlery  =  "plate_with_cutlery" 
 845     fork_and_knife  =  "fork_and_knife" 
 846     spoon  =  "spoon" 
 847     hocho  =  "hocho" 
 848     amphora  =  "amphora" 
 849     earth_africa  =  "earth_africa" 
 850     earth_americas  =  "earth_americas" 
 851     earth_asia  =  "earth_asia" 
 852     globe_with_meridians  =  "globe_with_meridians" 
 853     world_map  =  "world_map" 
 854     japan  =  "japan" 
 855     compass  =  "compass" 
 856     mountain_snow  =  "mountain_snow" 
 857     mountain  =  "mountain" 
 858     volcano  =  "volcano" 
 859     mount_fuji  =  "mount_fuji" 
 860     camping  =  "camping" 
 861     beach_umbrella  =  "beach_umbrella" 
 862     desert  =  "desert" 
 863     desert_island  =  "desert_island" 
 864     national_park  =  "national_park" 
 865     stadium  =  "stadium" 
 866     classical_building  =  "classical_building" 
 867     building_construction  =  "building_construction" 
 868     bricks  =  "bricks" 
 869     rock  =  "rock" 
 870     wood  =  "wood" 
 871     hut  =  "hut" 
 872     houses  =  "houses" 
 873     derelict_house  =  "derelict_house" 
 874     house  =  "house" 
 875     house_with_garden  =  "house_with_garden" 
 876     office  =  "office" 
 877     post_office  =  "post_office" 
 878     european_post_office  =  "european_post_office" 
 879     hospital  =  "hospital" 
 880     bank  =  "bank" 
 881     hotel  =  "hotel" 
 882     love_hotel  =  "love_hotel" 
 883     convenience_store  =  "convenience_store" 
 884     school  =  "school" 
 885     department_store  =  "department_store" 
 886     factory  =  "factory" 
 887     japanese_castle  =  "japanese_castle" 
 888     european_castle  =  "european_castle" 
 889     wedding  =  "wedding" 
 890     tokyo_tower  =  "tokyo_tower" 
 891     statue_of_liberty  =  "statue_of_liberty" 
 892     church  =  "church" 
 893     mosque  =  "mosque" 
 894     hindu_temple  =  "hindu_temple" 
 895     synagogue  =  "synagogue" 
 896     shinto_shrine  =  "shinto_shrine" 
 897     kaaba  =  "kaaba" 
 898     fountain  =  "fountain" 
 899     tent  =  "tent" 
 900     foggy  =  "foggy" 
 901     night_with_stars  =  "night_with_stars" 
 902     cityscape  =  "cityscape" 
 903     sunrise_over_mountains  =  "sunrise_over_mountains" 
 904     sunrise  =  "sunrise" 
 905     city_sunset  =  "city_sunset" 
 906     city_sunrise  =  "city_sunrise" 
 907     bridge_at_night  =  "bridge_at_night" 
 908     hotsprings  =  "hotsprings" 
 909     carousel_horse  =  "carousel_horse" 
 910     ferris_wheel  =  "ferris_wheel" 
 911     roller_coaster  =  "roller_coaster" 
 912     barber  =  "barber" 
 913     circus_tent  =  "circus_tent" 
 914     steam_locomotive  =  "steam_locomotive" 
 915     railway_car  =  "railway_car" 
 916     bullettrain_side  =  "bullettrain_side" 
 917     bullettrain_front  =  "bullettrain_front" 
 918     train2  =  "train2" 
 919     metro  =  "metro" 
 920     light_rail  =  "light_rail" 
 921     station  =  "station" 
 922     tram  =  "tram" 
 923     monorail  =  "monorail" 
 924     mountain_railway  =  "mountain_railway" 
 925     train  =  "train" 
 926     bus  =  "bus" 
 927     oncoming_bus  =  "oncoming_bus" 
 928     trolleybus  =  "trolleybus" 
 929     minibus  =  "minibus" 
 930     ambulance  =  "ambulance" 
 931     fire_engine  =  "fire_engine" 
 932     police_car  =  "police_car" 
 933     oncoming_police_car  =  "oncoming_police_car" 
 934     taxi  =  "taxi" 
 935     oncoming_taxi  =  "oncoming_taxi" 
 936     car  =  "car" 
 937     oncoming_automobile  =  "oncoming_automobile" 
 938     blue_car  =  "blue_car" 
 939     pickup_truck  =  "pickup_truck" 
 940     truck  =  "truck" 
 941     articulated_lorry  =  "articulated_lorry" 
 942     tractor  =  "tractor" 
 943     racing_car  =  "racing_car" 
 944     motorcycle  =  "motorcycle" 
 945     motor_scooter  =  "motor_scooter" 
 946     manual_wheelchair  =  "manual_wheelchair" 
 947     motorized_wheelchair  =  "motorized_wheelchair" 
 948     auto_rickshaw  =  "auto_rickshaw" 
 949     bike  =  "bike" 
 950     kick_scooter  =  "kick_scooter" 
 951     skateboard  =  "skateboard" 
 952     roller_skate  =  "roller_skate" 
 953     busstop  =  "busstop" 
 954     motorway  =  "motorway" 
 955     railway_track  =  "railway_track" 
 956     oil_drum  =  "oil_drum" 
 957     fuelpump  =  "fuelpump" 
 958     rotating_light  =  "rotating_light" 
 959     traffic_light  =  "traffic_light" 
 960     vertical_traffic_light  =  "vertical_traffic_light" 
 961     stop_sign  =  "stop_sign" 
 962     construction  =  "construction" 
 963     anchor  =  "anchor" 
 964     boat  =  "boat" 
 965     canoe  =  "canoe" 
 966     speedboat  =  "speedboat" 
 967     passenger_ship  =  "passenger_ship" 
 968     ferry  =  "ferry" 
 969     motor_boat  =  "motor_boat" 
 970     ship  =  "ship" 
 971     airplane  =  "airplane" 
 972     small_airplane  =  "small_airplane" 
 973     flight_departure  =  "flight_departure" 
 974     flight_arrival  =  "flight_arrival" 
 975     parachute  =  "parachute" 
 976     seat  =  "seat" 
 977     helicopter  =  "helicopter" 
 978     suspension_railway  =  "suspension_railway" 
 979     mountain_cableway  =  "mountain_cableway" 
 980     aerial_tramway  =  "aerial_tramway" 
 981     artificial_satellite  =  "artificial_satellite" 
 982     rocket  =  "rocket" 
 983     flying_saucer  =  "flying_saucer" 
 984     bellhop_bell  =  "bellhop_bell" 
 985     luggage  =  "luggage" 
 986     hourglass  =  "hourglass" 
 987     hourglass_flowing_sand  =  "hourglass_flowing_sand" 
 988     watch  =  "watch" 
 989     alarm_clock  =  "alarm_clock" 
 990     stopwatch  =  "stopwatch" 
 991     timer_clock  =  "timer_clock" 
 992     mantelpiece_clock  =  "mantelpiece_clock" 
 993     clock12  =  "clock12" 
 994     clock1230  =  "clock1230" 
 995     clock1  =  "clock1" 
 996     clock130  =  "clock130" 
 997     clock2  =  "clock2" 
 998     clock230  =  "clock230" 
 999     clock3  =  "clock3" 
1000     clock330  =  "clock330" 
1001     clock4  =  "clock4" 
1002     clock430  =  "clock430" 
1003     clock5  =  "clock5" 
1004     clock530  =  "clock530" 
1005     clock6  =  "clock6" 
1006     clock630  =  "clock630" 
1007     clock7  =  "clock7" 
1008     clock730  =  "clock730" 
1009     clock8  =  "clock8" 
1010     clock830  =  "clock830" 
1011     clock9  =  "clock9" 
1012     clock930  =  "clock930" 
1013     clock10  =  "clock10" 
1014     clock1030  =  "clock1030" 
1015     clock11  =  "clock11" 
1016     clock1130  =  "clock1130" 
1017     new_moon  =  "new_moon" 
1018     waxing_crescent_moon  =  "waxing_crescent_moon" 
1019     first_quarter_moon  =  "first_quarter_moon" 
1020     moon  =  "moon" 
1021     full_moon  =  "full_moon" 
1022     waning_gibbous_moon  =  "waning_gibbous_moon" 
1023     last_quarter_moon  =  "last_quarter_moon" 
1024     waning_crescent_moon  =  "waning_crescent_moon" 
1025     crescent_moon  =  "crescent_moon" 
1026     new_moon_with_face  =  "new_moon_with_face" 
1027     first_quarter_moon_with_face  =  "first_quarter_moon_with_face" 
1028     last_quarter_moon_with_face  =  "last_quarter_moon_with_face" 
1029     thermometer  =  "thermometer" 
1030     sunny  =  "sunny" 
1031     full_moon_with_face  =  "full_moon_with_face" 
1032     sun_with_face  =  "sun_with_face" 
1033     ringed_planet  =  "ringed_planet" 
1034     star  =  "star" 
1035     star2  =  "star2" 
1036     stars  =  "stars" 
1037     milky_way  =  "milky_way" 
1038     cloud  =  "cloud" 
1039     partly_sunny  =  "partly_sunny" 
1040     cloud_with_lightning_and_rain  =  "cloud_with_lightning_and_rain" 
1041     sun_behind_small_cloud  =  "sun_behind_small_cloud" 
1042     sun_behind_large_cloud  =  "sun_behind_large_cloud" 
1043     sun_behind_rain_cloud  =  "sun_behind_rain_cloud" 
1044     cloud_with_rain  =  "cloud_with_rain" 
1045     cloud_with_snow  =  "cloud_with_snow" 
1046     cloud_with_lightning  =  "cloud_with_lightning" 
1047     tornado  =  "tornado" 
1048     fog  =  "fog" 
1049     wind_face  =  "wind_face" 
1050     cyclone  =  "cyclone" 
1051     rainbow  =  "rainbow" 
1052     closed_umbrella  =  "closed_umbrella" 
1053     open_umbrella  =  "open_umbrella" 
1054     umbrella  =  "umbrella" 
1055     parasol_on_ground  =  "parasol_on_ground" 
1056     zap  =  "zap" 
1057     snowflake  =  "snowflake" 
1058     snowman_with_snow  =  "snowman_with_snow" 
1059     snowman  =  "snowman" 
1060     comet  =  "comet" 
1061     fire  =  "fire" 
1062     droplet  =  "droplet" 
1063     ocean  =  "ocean" 
1064     jack_o_lantern  =  "jack_o_lantern" 
1065     christmas_tree  =  "christmas_tree" 
1066     fireworks  =  "fireworks" 
1067     sparkler  =  "sparkler" 
1068     firecracker  =  "firecracker" 
1069     sparkles  =  "sparkles" 
1070     balloon  =  "balloon" 
1071     tada  =  "tada" 
1072     confetti_ball  =  "confetti_ball" 
1073     tanabata_tree  =  "tanabata_tree" 
1074     bamboo  =  "bamboo" 
1075     dolls  =  "dolls" 
1076     flags  =  "flags" 
1077     wind_chime  =  "wind_chime" 
1078     rice_scene  =  "rice_scene" 
1079     red_envelope  =  "red_envelope" 
1080     ribbon  =  "ribbon" 
1081     gift  =  "gift" 
1082     reminder_ribbon  =  "reminder_ribbon" 
1083     tickets  =  "tickets" 
1084     ticket  =  "ticket" 
1085     medal_military  =  "medal_military" 
1086     trophy  =  "trophy" 
1087     medal_sports  =  "medal_sports" 
1088     _1st_place_medal  =  "1st_place_medal" 
1089     _2nd_place_medal  =  "2nd_place_medal" 
1090     _3rd_place_medal  =  "3rd_place_medal" 
1091     soccer  =  "soccer" 
1092     baseball  =  "baseball" 
1093     softball  =  "softball" 
1094     basketball  =  "basketball" 
1095     volleyball  =  "volleyball" 
1096     football  =  "football" 
1097     rugby_football  =  "rugby_football" 
1098     tennis  =  "tennis" 
1099     flying_disc  =  "flying_disc" 
1100     bowling  =  "bowling" 
1101     cricket_game  =  "cricket_game" 
1102     field_hockey  =  "field_hockey" 
1103     ice_hockey  =  "ice_hockey" 
1104     lacrosse  =  "lacrosse" 
1105     ping_pong  =  "ping_pong" 
1106     badminton  =  "badminton" 
1107     boxing_glove  =  "boxing_glove" 
1108     martial_arts_uniform  =  "martial_arts_uniform" 
1109     goal_net  =  "goal_net" 
1110     golf  =  "golf" 
1111     ice_skate  =  "ice_skate" 
1112     fishing_pole_and_fish  =  "fishing_pole_and_fish" 
1113     diving_mask  =  "diving_mask" 
1114     running_shirt_with_sash  =  "running_shirt_with_sash" 
1115     ski  =  "ski" 
1116     sled  =  "sled" 
1117     curling_stone  =  "curling_stone" 
1118     dart  =  "dart" 
1119     yo_yo  =  "yo_yo" 
1120     kite  =  "kite" 
1121     _8ball  =  "8ball" 
1122     crystal_ball  =  "crystal_ball" 
1123     magic_wand  =  "magic_wand" 
1124     nazar_amulet  =  "nazar_amulet" 
1125     video_game  =  "video_game" 
1126     joystick  =  "joystick" 
1127     slot_machine  =  "slot_machine" 
1128     game_die  =  "game_die" 
1129     jigsaw  =  "jigsaw" 
1130     teddy_bear  =  "teddy_bear" 
1131     pinata  =  "pinata" 
1132     nesting_dolls  =  "nesting_dolls" 
1133     spades  =  "spades" 
1134     hearts  =  "hearts" 
1135     diamonds  =  "diamonds" 
1136     clubs  =  "clubs" 
1137     chess_pawn  =  "chess_pawn" 
1138     black_joker  =  "black_joker" 
1139     mahjong  =  "mahjong" 
1140     flower_playing_cards  =  "flower_playing_cards" 
1141     performing_arts  =  "performing_arts" 
1142     framed_picture  =  "framed_picture" 
1143     art  =  "art" 
1144     thread  =  "thread" 
1145     sewing_needle  =  "sewing_needle" 
1146     yarn  =  "yarn" 
1147     knot  =  "knot" 
1148     eyeglasses  =  "eyeglasses" 
1149     dark_sunglasses  =  "dark_sunglasses" 
1150     goggles  =  "goggles" 
1151     lab_coat  =  "lab_coat" 
1152     safety_vest  =  "safety_vest" 
1153     necktie  =  "necktie" 
1154     shirt  =  "shirt" 
1155     jeans  =  "jeans" 
1156     scarf  =  "scarf" 
1157     gloves  =  "gloves" 
1158     coat  =  "coat" 
1159     socks  =  "socks" 
1160     dress  =  "dress" 
1161     kimono  =  "kimono" 
1162     sari  =  "sari" 
1163     one_piece_swimsuit  =  "one_piece_swimsuit" 
1164     swim_brief  =  "swim_brief" 
1165     shorts  =  "shorts" 
1166     bikini  =  "bikini" 
1167     womans_clothes  =  "womans_clothes" 
1168     purse  =  "purse" 
1169     handbag  =  "handbag" 
1170     pouch  =  "pouch" 
1171     shopping  =  "shopping" 
1172     school_satchel  =  "school_satchel" 
1173     thong_sandal  =  "thong_sandal" 
1174     mans_shoe  =  "mans_shoe" 
1175     athletic_shoe  =  "athletic_shoe" 
1176     hiking_boot  =  "hiking_boot" 
1177     flat_shoe  =  "flat_shoe" 
1178     high_heel  =  "high_heel" 
1179     sandal  =  "sandal" 
1180     ballet_shoes  =  "ballet_shoes" 
1181     boot  =  "boot" 
1182     crown  =  "crown" 
1183     womans_hat  =  "womans_hat" 
1184     tophat  =  "tophat" 
1185     mortar_board  =  "mortar_board" 
1186     billed_cap  =  "billed_cap" 
1187     military_helmet  =  "military_helmet" 
1188     rescue_worker_helmet  =  "rescue_worker_helmet" 
1189     prayer_beads  =  "prayer_beads" 
1190     lipstick  =  "lipstick" 
1191     ring  =  "ring" 
1192     gem  =  "gem" 
1193     mute  =  "mute" 
1194     speaker  =  "speaker" 
1195     sound  =  "sound" 
1196     loud_sound  =  "loud_sound" 
1197     loudspeaker  =  "loudspeaker" 
1198     mega  =  "mega" 
1199     postal_horn  =  "postal_horn" 
1200     bell  =  "bell" 
1201     no_bell  =  "no_bell" 
1202     musical_score  =  "musical_score" 
1203     musical_note  =  "musical_note" 
1204     notes  =  "notes" 
1205     studio_microphone  =  "studio_microphone" 
1206     level_slider  =  "level_slider" 
1207     control_knobs  =  "control_knobs" 
1208     microphone  =  "microphone" 
1209     headphones  =  "headphones" 
1210     radio  =  "radio" 
1211     saxophone  =  "saxophone" 
1212     accordion  =  "accordion" 
1213     guitar  =  "guitar" 
1214     musical_keyboard  =  "musical_keyboard" 
1215     trumpet  =  "trumpet" 
1216     violin  =  "violin" 
1217     banjo  =  "banjo" 
1218     drum  =  "drum" 
1219     long_drum  =  "long_drum" 
1220     iphone  =  "iphone" 
1221     calling  =  "calling" 
1222     phone  =  "phone" 
1223     telephone_receiver  =  "telephone_receiver" 
1224     pager  =  "pager" 
1225     fax  =  "fax" 
1226     battery  =  "battery" 
1227     electric_plug  =  "electric_plug" 
1228     computer  =  "computer" 
1229     desktop_computer  =  "desktop_computer" 
1230     printer  =  "printer" 
1231     keyboard  =  "keyboard" 
1232     computer_mouse  =  "computer_mouse" 
1233     trackball  =  "trackball" 
1234     minidisc  =  "minidisc" 
1235     floppy_disk  =  "floppy_disk" 
1236     cd  =  "cd" 
1237     dvd  =  "dvd" 
1238     abacus  =  "abacus" 
1239     movie_camera  =  "movie_camera" 
1240     film_strip  =  "film_strip" 
1241     film_projector  =  "film_projector" 
1242     clapper  =  "clapper" 
1243     tv  =  "tv" 
1244     camera  =  "camera" 
1245     camera_flash  =  "camera_flash" 
1246     video_camera  =  "video_camera" 
1247     vhs  =  "vhs" 
1248     mag  =  "mag" 
1249     mag_right  =  "mag_right" 
1250     candle  =  "candle" 
1251     bulb  =  "bulb" 
1252     flashlight  =  "flashlight" 
1253     izakaya_lantern  =  "izakaya_lantern" 
1254     diya_lamp  =  "diya_lamp" 
1255     notebook_with_decorative_cover  =  "notebook_with_decorative_cover" 
1256     closed_book  =  "closed_book" 
1257     book  =  "book" 
1258     green_book  =  "green_book" 
1259     blue_book  =  "blue_book" 
1260     orange_book  =  "orange_book" 
1261     books  =  "books" 
1262     notebook  =  "notebook" 
1263     ledger  =  "ledger" 
1264     page_with_curl  =  "page_with_curl" 
1265     scroll  =  "scroll" 
1266     page_facing_up  =  "page_facing_up" 
1267     newspaper  =  "newspaper" 
1268     newspaper_roll  =  "newspaper_roll" 
1269     bookmark_tabs  =  "bookmark_tabs" 
1270     bookmark  =  "bookmark" 
1271     label  =  "label" 
1272     moneybag  =  "moneybag" 
1273     coin  =  "coin" 
1274     yen  =  "yen" 
1275     dollar  =  "dollar" 
1276     euro  =  "euro" 
1277     pound  =  "pound" 
1278     money_with_wings  =  "money_with_wings" 
1279     credit_card  =  "credit_card" 
1280     receipt  =  "receipt" 
1281     chart  =  "chart" 
1282     envelope  =  "envelope" 
1283     email  =  "email" 
1284     incoming_envelope  =  "incoming_envelope" 
1285     envelope_with_arrow  =  "envelope_with_arrow" 
1286     outbox_tray  =  "outbox_tray" 
1287     inbox_tray  =  "inbox_tray" 
1288     package  =  "package" 
1289     mailbox  =  "mailbox" 
1290     mailbox_closed  =  "mailbox_closed" 
1291     mailbox_with_mail  =  "mailbox_with_mail" 
1292     mailbox_with_no_mail  =  "mailbox_with_no_mail" 
1293     postbox  =  "postbox" 
1294     ballot_box  =  "ballot_box" 
1295     pencil2  =  "pencil2" 
1296     black_nib  =  "black_nib" 
1297     fountain_pen  =  "fountain_pen" 
1298     pen  =  "pen" 
1299     paintbrush  =  "paintbrush" 
1300     crayon  =  "crayon" 
1301     memo  =  "memo" 
1302     briefcase  =  "briefcase" 
1303     file_folder  =  "file_folder" 
1304     open_file_folder  =  "open_file_folder" 
1305     card_index_dividers  =  "card_index_dividers" 
1306     date  =  "date" 
1307     calendar  =  "calendar" 
1308     spiral_notepad  =  "spiral_notepad" 
1309     spiral_calendar  =  "spiral_calendar" 
1310     card_index  =  "card_index" 
1311     chart_with_upwards_trend  =  "chart_with_upwards_trend" 
1312     chart_with_downwards_trend  =  "chart_with_downwards_trend" 
1313     bar_chart  =  "bar_chart" 
1314     clipboard  =  "clipboard" 
1315     pushpin  =  "pushpin" 
1316     round_pushpin  =  "round_pushpin" 
1317     paperclip  =  "paperclip" 
1318     paperclips  =  "paperclips" 
1319     straight_ruler  =  "straight_ruler" 
1320     triangular_ruler  =  "triangular_ruler" 
1321     scissors  =  "scissors" 
1322     card_file_box  =  "card_file_box" 
1323     file_cabinet  =  "file_cabinet" 
1324     wastebasket  =  "wastebasket" 
1325     lock  =  "lock" 
1326     unlock  =  "unlock" 
1327     lock_with_ink_pen  =  "lock_with_ink_pen" 
1328     closed_lock_with_key  =  "closed_lock_with_key" 
1329     key  =  "key" 
1330     old_key  =  "old_key" 
1331     hammer  =  "hammer" 
1332     axe  =  "axe" 
1333     pick  =  "pick" 
1334     hammer_and_pick  =  "hammer_and_pick" 
1335     hammer_and_wrench  =  "hammer_and_wrench" 
1336     dagger  =  "dagger" 
1337     crossed_swords  =  "crossed_swords" 
1338     gun  =  "gun" 
1339     boomerang  =  "boomerang" 
1340     bow_and_arrow  =  "bow_and_arrow" 
1341     shield  =  "shield" 
1342     carpentry_saw  =  "carpentry_saw" 
1343     wrench  =  "wrench" 
1344     screwdriver  =  "screwdriver" 
1345     nut_and_bolt  =  "nut_and_bolt" 
1346     gear  =  "gear" 
1347     clamp  =  "clamp" 
1348     balance_scale  =  "balance_scale" 
1349     probing_cane  =  "probing_cane" 
1350     link  =  "link" 
1351     chains  =  "chains" 
1352     hook  =  "hook" 
1353     toolbox  =  "toolbox" 
1354     magnet  =  "magnet" 
1355     ladder  =  "ladder" 
1356     alembic  =  "alembic" 
1357     test_tube  =  "test_tube" 
1358     petri_dish  =  "petri_dish" 
1359     dna  =  "dna" 
1360     microscope  =  "microscope" 
1361     telescope  =  "telescope" 
1362     satellite  =  "satellite" 
1363     syringe  =  "syringe" 
1364     drop_of_blood  =  "drop_of_blood" 
1365     pill  =  "pill" 
1366     adhesive_bandage  =  "adhesive_bandage" 
1367     stethoscope  =  "stethoscope" 
1368     door  =  "door" 
1369     elevator  =  "elevator" 
1370     mirror  =  "mirror" 
1371     window  =  "window" 
1372     bed  =  "bed" 
1373     couch_and_lamp  =  "couch_and_lamp" 
1374     chair  =  "chair" 
1375     toilet  =  "toilet" 
1376     plunger  =  "plunger" 
1377     shower  =  "shower" 
1378     bathtub  =  "bathtub" 
1379     mouse_trap  =  "mouse_trap" 
1380     razor  =  "razor" 
1381     lotion_bottle  =  "lotion_bottle" 
1382     safety_pin  =  "safety_pin" 
1383     broom  =  "broom" 
1384     basket  =  "basket" 
1385     roll_of_paper  =  "roll_of_paper" 
1386     bucket  =  "bucket" 
1387     soap  =  "soap" 
1388     toothbrush  =  "toothbrush" 
1389     sponge  =  "sponge" 
1390     fire_extinguisher  =  "fire_extinguisher" 
1391     shopping_cart  =  "shopping_cart" 
1392     smoking  =  "smoking" 
1393     coffin  =  "coffin" 
1394     headstone  =  "headstone" 
1395     funeral_urn  =  "funeral_urn" 
1396     moyai  =  "moyai" 
1397     placard  =  "placard" 
1398     atm  =  "atm" 
1399     put_litter_in_its_place  =  "put_litter_in_its_place" 
1400     potable_water  =  "potable_water" 
1401     wheelchair  =  "wheelchair" 
1402     mens  =  "mens" 
1403     womens  =  "womens" 
1404     restroom  =  "restroom" 
1405     baby_symbol  =  "baby_symbol" 
1406     wc  =  "wc" 
1407     passport_control  =  "passport_control" 
1408     customs  =  "customs" 
1409     baggage_claim  =  "baggage_claim" 
1410     left_luggage  =  "left_luggage" 
1411     warning  =  "warning" 
1412     children_crossing  =  "children_crossing" 
1413     no_entry  =  "no_entry" 
1414     no_entry_sign  =  "no_entry_sign" 
1415     no_bicycles  =  "no_bicycles" 
1416     no_smoking  =  "no_smoking" 
1417     do_not_litter  =  "do_not_litter" 
1418     non  =  "non" 
1419     no_pedestrians  =  "no_pedestrians" 
1420     no_mobile_phones  =  "no_mobile_phones" 
1421     underage  =  "underage" 
1422     radioactive  =  "radioactive" 
1423     biohazard  =  "biohazard" 
1424     arrow_up  =  "arrow_up" 
1425     arrow_upper_right  =  "arrow_upper_right" 
1426     arrow_right  =  "arrow_right" 
1427     arrow_lower_right  =  "arrow_lower_right" 
1428     arrow_down  =  "arrow_down" 
1429     arrow_lower_left  =  "arrow_lower_left" 
1430     arrow_left  =  "arrow_left" 
1431     arrow_upper_left  =  "arrow_upper_left" 
1432     arrow_up_down  =  "arrow_up_down" 
1433     left_right_arrow  =  "left_right_arrow" 
1434     leftwards_arrow_with_hook  =  "leftwards_arrow_with_hook" 
1435     arrow_right_hook  =  "arrow_right_hook" 
1436     arrow_heading_up  =  "arrow_heading_up" 
1437     arrow_heading_down  =  "arrow_heading_down" 
1438     arrows_clockwise  =  "arrows_clockwise" 
1439     arrows_counterclockwise  =  "arrows_counterclockwise" 
1440     back  =  "back" 
1441     end  =  "end" 
1442     on  =  "on" 
1443     soon  =  "soon" 
1444     top  =  "top" 
1445     place_of_worship  =  "place_of_worship" 
1446     atom_symbol  =  "atom_symbol" 
1447     om  =  "om" 
1448     star_of_david  =  "star_of_david" 
1449     wheel_of_dharma  =  "wheel_of_dharma" 
1450     yin_yang  =  "yin_yang" 
1451     latin_cross  =  "latin_cross" 
1452     orthodox_cross  =  "orthodox_cross" 
1453     star_and_crescent  =  "star_and_crescent" 
1454     peace_symbol  =  "peace_symbol" 
1455     menorah  =  "menorah" 
1456     six_pointed_star  =  "six_pointed_star" 
1457     aries  =  "aries" 
1458     taurus  =  "taurus" 
1459     gemini  =  "gemini" 
1460     cancer  =  "cancer" 
1461     leo  =  "leo" 
1462     virgo  =  "virgo" 
1463     libra  =  "libra" 
1464     scorpius  =  "scorpius" 
1465     sagittarius  =  "sagittarius" 
1466     capricorn  =  "capricorn" 
1467     aquarius  =  "aquarius" 
1468     pisces  =  "pisces" 
1469     ophiuchus  =  "ophiuchus" 
1470     twisted_rightwards_arrows  =  "twisted_rightwards_arrows" 
1471     repeat  =  "repeat" 
1472     repeat_one  =  "repeat_one" 
1473     arrow_forward  =  "arrow_forward" 
1474     fast_forward  =  "fast_forward" 
1475     next_track_button  =  "next_track_button" 
1476     play_or_pause_button  =  "play_or_pause_button" 
1477     arrow_backward  =  "arrow_backward" 
1478     rewind  =  "rewind" 
1479     previous_track_button  =  "previous_track_button" 
1480     arrow_up_small  =  "arrow_up_small" 
1481     arrow_double_up  =  "arrow_double_up" 
1482     arrow_down_small  =  "arrow_down_small" 
1483     arrow_double_down  =  "arrow_double_down" 
1484     pause_button  =  "pause_button" 
1485     stop_button  =  "stop_button" 
1486     record_button  =  "record_button" 
1487     eject_button  =  "eject_button" 
1488     cinema  =  "cinema" 
1489     low_brightness  =  "low_brightness" 
1490     high_brightness  =  "high_brightness" 
1491     signal_strength  =  "signal_strength" 
1492     vibration_mode  =  "vibration_mode" 
1493     mobile_phone_off  =  "mobile_phone_off" 
1494     female_sign  =  "female_sign" 
1495     male_sign  =  "male_sign" 
1496     transgender_symbol  =  "transgender_symbol" 
1497     heavy_multiplication_x  =  "heavy_multiplication_x" 
1498     heavy_plus_sign  =  "heavy_plus_sign" 
1499     heavy_minus_sign  =  "heavy_minus_sign" 
1500     heavy_division_sign  =  "heavy_division_sign" 
1501     infinity  =  "infinity" 
1502     bangbang  =  "bangbang" 
1503     interrobang  =  "interrobang" 
1504     question  =  "question" 
1505     grey_question  =  "grey_question" 
1506     grey_exclamation  =  "grey_exclamation" 
1507     exclamation  =  "exclamation" 
1508     wavy_dash  =  "wavy_dash" 
1509     currency_exchange  =  "currency_exchange" 
1510     heavy_dollar_sign  =  "heavy_dollar_sign" 
1511     medical_symbol  =  "medical_symbol" 
1512     recycle  =  "recycle" 
1513     fleur_de_lis  =  "fleur_de_lis" 
1514     trident  =  "trident" 
1515     name_badge  =  "name_badge" 
1516     beginner  =  "beginner" 
1517     o  =  "o" 
1518     white_check_mark  =  "white_check_mark" 
1519     ballot_box_with_check  =  "ballot_box_with_check" 
1520     heavy_check_mark  =  "heavy_check_mark" 
1521     x  =  "x" 
1522     negative_squared_cross_mark  =  "negative_squared_cross_mark" 
1523     curly_loop  =  "curly_loop" 
1524     loop  =  "loop" 
1525     part_alternation_mark  =  "part_alternation_mark" 
1526     eight_spoked_asterisk  =  "eight_spoked_asterisk" 
1527     eight_pointed_black_star  =  "eight_pointed_black_star" 
1528     sparkle  =  "sparkle" 
1529     copyright  =  "copyright" 
1530     registered  =  "registered" 
1531     tm  =  "tm" 
1532     hash  =  "hash" 
1533     asterisk  =  "asterisk" 
1534     zero  =  "zero" 
1535     one  =  "one" 
1536     two  =  "two" 
1537     three  =  "three" 
1538     four  =  "four" 
1539     five  =  "five" 
1540     six  =  "six" 
1541     seven  =  "seven" 
1542     eight  =  "eight" 
1543     nine  =  "nine" 
1544     keycap_ten  =  "keycap_ten" 
1545     capital_abcd  =  "capital_abcd" 
1546     abcd  =  "abcd" 
1547     _1234  =  "1234" 
1548     symbols  =  "symbols" 
1549     abc  =  "abc" 
1550     a  =  "a" 
1551     ab  =  "ab" 
1552     b  =  "b" 
1553     cl  =  "cl" 
1554     cool  =  "cool" 
1555     free  =  "free" 
1556     information_source  =  "information_source" 
1557     id  =  "id" 
1558     m  =  "m" 
1559     new  =  "new" 
1560     ng  =  "ng" 
1561     o2  =  "o2" 
1562     ok  =  "ok" 
1563     parking  =  "parking" 
1564     sos  =  "sos" 
1565     up  =  "up" 
1566     vs  =  "vs" 
1567     koko  =  "koko" 
1568     sa  =  "sa" 
1569     u6708  =  "u6708" 
1570     u6709  =  "u6709" 
1571     u6307  =  "u6307" 
1572     ideograph_advantage  =  "ideograph_advantage" 
1573     u5272  =  "u5272" 
1574     u7121  =  "u7121" 
1575     u7981  =  "u7981" 
1576     accept  =  "accept" 
1577     u7533  =  "u7533" 
1578     u5408  =  "u5408" 
1579     u7a7a  =  "u7a7a" 
1580     congratulations  =  "congratulations" 
1581     secret  =  "secret" 
1582     u55b6  =  "u55b6" 
1583     u6e80  =  "u6e80" 
1584     red_circle  =  "red_circle" 
1585     orange_circle  =  "orange_circle" 
1586     yellow_circle  =  "yellow_circle" 
1587     green_circle  =  "green_circle" 
1588     large_blue_circle  =  "large_blue_circle" 
1589     purple_circle  =  "purple_circle" 
1590     brown_circle  =  "brown_circle" 
1591     black_circle  =  "black_circle" 
1592     white_circle  =  "white_circle" 
1593     red_square  =  "red_square" 
1594     orange_square  =  "orange_square" 
1595     yellow_square  =  "yellow_square" 
1596     green_square  =  "green_square" 
1597     blue_square  =  "blue_square" 
1598     purple_square  =  "purple_square" 
1599     brown_square  =  "brown_square" 
1600     black_large_square  =  "black_large_square" 
1601     white_large_square  =  "white_large_square" 
1602     black_medium_square  =  "black_medium_square" 
1603     white_medium_square  =  "white_medium_square" 
1604     black_medium_small_square  =  "black_medium_small_square" 
1605     white_medium_small_square  =  "white_medium_small_square" 
1606     black_small_square  =  "black_small_square" 
1607     white_small_square  =  "white_small_square" 
1608     large_orange_diamond  =  "large_orange_diamond" 
1609     large_blue_diamond  =  "large_blue_diamond" 
1610     small_orange_diamond  =  "small_orange_diamond" 
1611     small_blue_diamond  =  "small_blue_diamond" 
1612     small_red_triangle  =  "small_red_triangle" 
1613     small_red_triangle_down  =  "small_red_triangle_down" 
1614     diamond_shape_with_a_dot_inside  =  "diamond_shape_with_a_dot_inside" 
1615     radio_button  =  "radio_button" 
1616     white_square_button  =  "white_square_button" 
1617     black_square_button  =  "black_square_button" 
1618     checkered_flag  =  "checkered_flag" 
1619     triangular_flag_on_post  =  "triangular_flag_on_post" 
1620     crossed_flags  =  "crossed_flags" 
1621     black_flag  =  "black_flag" 
1622     white_flag  =  "white_flag" 
1623     rainbow_flag  =  "rainbow_flag" 
1624     transgender_flag  =  "transgender_flag" 
1625     pirate_flag  =  "pirate_flag" 
1626     ascension_island  =  "ascension_island" 
1627     andorra  =  "andorra" 
1628     united_arab_emirates  =  "united_arab_emirates" 
1629     afghanistan  =  "afghanistan" 
1630     antigua_barbuda  =  "antigua_barbuda" 
1631     anguilla  =  "anguilla" 
1632     albania  =  "albania" 
1633     armenia  =  "armenia" 
1634     angola  =  "angola" 
1635     antarctica  =  "antarctica" 
1636     argentina  =  "argentina" 
1637     american_samoa  =  "american_samoa" 
1638     austria  =  "austria" 
1639     australia  =  "australia" 
1640     aruba  =  "aruba" 
1641     aland_islands  =  "aland_islands" 
1642     azerbaijan  =  "azerbaijan" 
1643     bosnia_herzegovina  =  "bosnia_herzegovina" 
1644     barbados  =  "barbados" 
1645     bangladesh  =  "bangladesh" 
1646     belgium  =  "belgium" 
1647     burkina_faso  =  "burkina_faso" 
1648     bulgaria  =  "bulgaria" 
1649     bahrain  =  "bahrain" 
1650     burundi  =  "burundi" 
1651     benin  =  "benin" 
1652     st_barthelemy  =  "st_barthelemy" 
1653     bermuda  =  "bermuda" 
1654     brunei  =  "brunei" 
1655     bolivia  =  "bolivia" 
1656     caribbean_netherlands  =  "caribbean_netherlands" 
1657     brazil  =  "brazil" 
1658     bahamas  =  "bahamas" 
1659     bhutan  =  "bhutan" 
1660     bouvet_island  =  "bouvet_island" 
1661     botswana  =  "botswana" 
1662     belarus  =  "belarus" 
1663     belize  =  "belize" 
1664     canada  =  "canada" 
1665     cocos_islands  =  "cocos_islands" 
1666     congo_kinshasa  =  "congo_kinshasa" 
1667     central_african_republic  =  "central_african_republic" 
1668     congo_brazzaville  =  "congo_brazzaville" 
1669     switzerland  =  "switzerland" 
1670     cote_divoire  =  "cote_divoire" 
1671     cook_islands  =  "cook_islands" 
1672     chile  =  "chile" 
1673     cameroon  =  "cameroon" 
1674     cn  =  "cn" 
1675     colombia  =  "colombia" 
1676     clipperton_island  =  "clipperton_island" 
1677     costa_rica  =  "costa_rica" 
1678     cuba  =  "cuba" 
1679     cape_verde  =  "cape_verde" 
1680     curacao  =  "curacao" 
1681     christmas_island  =  "christmas_island" 
1682     cyprus  =  "cyprus" 
1683     czech_republic  =  "czech_republic" 
1684     de  =  "de" 
1685     diego_garcia  =  "diego_garcia" 
1686     djibouti  =  "djibouti" 
1687     denmark  =  "denmark" 
1688     dominica  =  "dominica" 
1689     dominican_republic  =  "dominican_republic" 
1690     algeria  =  "algeria" 
1691     ceuta_melilla  =  "ceuta_melilla" 
1692     ecuador  =  "ecuador" 
1693     estonia  =  "estonia" 
1694     egypt  =  "egypt" 
1695     western_sahara  =  "western_sahara" 
1696     eritrea  =  "eritrea" 
1697     es  =  "es" 
1698     ethiopia  =  "ethiopia" 
1699     eu  =  "eu" 
1700     finland  =  "finland" 
1701     fiji  =  "fiji" 
1702     falkland_islands  =  "falkland_islands" 
1703     micronesia  =  "micronesia" 
1704     faroe_islands  =  "faroe_islands" 
1705     fr  =  "fr" 
1706     gabon  =  "gabon" 
1707     gb  =  "gb" 
1708     grenada  =  "grenada" 
1709     georgia  =  "georgia" 
1710     french_guiana  =  "french_guiana" 
1711     guernsey  =  "guernsey" 
1712     ghana  =  "ghana" 
1713     gibraltar  =  "gibraltar" 
1714     greenland  =  "greenland" 
1715     gambia  =  "gambia" 
1716     guinea  =  "guinea" 
1717     guadeloupe  =  "guadeloupe" 
1718     equatorial_guinea  =  "equatorial_guinea" 
1719     greece  =  "greece" 
1720     south_georgia_south_sandwich_islands  =  ( 
1721         "south_georgia_south_sandwich_islands" 
1722     ) 
1723     guatemala  =  "guatemala" 
1724     guam  =  "guam" 
1725     guinea_bissau  =  "guinea_bissau" 
1726     guyana  =  "guyana" 
1727     hong_kong  =  "hong_kong" 
1728     heard_mcdonald_islands  =  "heard_mcdonald_islands" 
1729     honduras  =  "honduras" 
1730     croatia  =  "croatia" 
1731     haiti  =  "haiti" 
1732     hungary  =  "hungary" 
1733     canary_islands  =  "canary_islands" 
1734     indonesia  =  "indonesia" 
1735     ireland  =  "ireland" 
1736     israel  =  "israel" 
1737     isle_of_man  =  "isle_of_man" 
1738     india  =  "india" 
1739     british_indian_ocean_territory  =  "british_indian_ocean_territory" 
1740     iraq  =  "iraq" 
1741     iran  =  "iran" 
1742     iceland  =  "iceland" 
1743     it  =  "it" 
1744     jersey  =  "jersey" 
1745     jamaica  =  "jamaica" 
1746     jordan  =  "jordan" 
1747     jp  =  "jp" 
1748     kenya  =  "kenya" 
1749     kyrgyzstan  =  "kyrgyzstan" 
1750     cambodia  =  "cambodia" 
1751     kiribati  =  "kiribati" 
1752     comoros  =  "comoros" 
1753     st_kitts_nevis  =  "st_kitts_nevis" 
1754     north_korea  =  "north_korea" 
1755     kr  =  "kr" 
1756     kuwait  =  "kuwait" 
1757     cayman_islands  =  "cayman_islands" 
1758     kazakhstan  =  "kazakhstan" 
1759     laos  =  "laos" 
1760     lebanon  =  "lebanon" 
1761     st_lucia  =  "st_lucia" 
1762     liechtenstein  =  "liechtenstein" 
1763     sri_lanka  =  "sri_lanka" 
1764     liberia  =  "liberia" 
1765     lesotho  =  "lesotho" 
1766     lithuania  =  "lithuania" 
1767     luxembourg  =  "luxembourg" 
1768     latvia  =  "latvia" 
1769     libya  =  "libya" 
1770     morocco  =  "morocco" 
1771     monaco  =  "monaco" 
1772     moldova  =  "moldova" 
1773     montenegro  =  "montenegro" 
1774     st_martin  =  "st_martin" 
1775     madagascar  =  "madagascar" 
1776     marshall_islands  =  "marshall_islands" 
1777     macedonia  =  "macedonia" 
1778     mali  =  "mali" 
1779     myanmar  =  "myanmar" 
1780     mongolia  =  "mongolia" 
1781     macau  =  "macau" 
1782     northern_mariana_islands  =  "northern_mariana_islands" 
1783     martinique  =  "martinique" 
1784     mauritania  =  "mauritania" 
1785     montserrat  =  "montserrat" 
1786     malta  =  "malta" 
1787     mauritius  =  "mauritius" 
1788     maldives  =  "maldives" 
1789     malawi  =  "malawi" 
1790     mexico  =  "mexico" 
1791     malaysia  =  "malaysia" 
1792     mozambique  =  "mozambique" 
1793     namibia  =  "namibia" 
1794     new_caledonia  =  "new_caledonia" 
1795     niger  =  "niger" 
1796     norfolk_island  =  "norfolk_island" 
1797     nigeria  =  "nigeria" 
1798     nicaragua  =  "nicaragua" 
1799     netherlands  =  "netherlands" 
1800     norway  =  "norway" 
1801     nepal  =  "nepal" 
1802     nauru  =  "nauru" 
1803     niue  =  "niue" 
1804     new_zealand  =  "new_zealand" 
1805     oman  =  "oman" 
1806     panama  =  "panama" 
1807     peru  =  "peru" 
1808     french_polynesia  =  "french_polynesia" 
1809     papua_new_guinea  =  "papua_new_guinea" 
1810     philippines  =  "philippines" 
1811     pakistan  =  "pakistan" 
1812     poland  =  "poland" 
1813     st_pierre_miquelon  =  "st_pierre_miquelon" 
1814     pitcairn_islands  =  "pitcairn_islands" 
1815     puerto_rico  =  "puerto_rico" 
1816     palestinian_territories  =  "palestinian_territories" 
1817     portugal  =  "portugal" 
1818     palau  =  "palau" 
1819     paraguay  =  "paraguay" 
1820     qatar  =  "qatar" 
1821     reunion  =  "reunion" 
1822     romania  =  "romania" 
1823     serbia  =  "serbia" 
1824     ru  =  "ru" 
1825     rwanda  =  "rwanda" 
1826     saudi_arabia  =  "saudi_arabia" 
1827     solomon_islands  =  "solomon_islands" 
1828     seychelles  =  "seychelles" 
1829     sudan  =  "sudan" 
1830     sweden  =  "sweden" 
1831     singapore  =  "singapore" 
1832     st_helena  =  "st_helena" 
1833     slovenia  =  "slovenia" 
1834     svalbard_jan_mayen  =  "svalbard_jan_mayen" 
1835     slovakia  =  "slovakia" 
1836     sierra_leone  =  "sierra_leone" 
1837     san_marino  =  "san_marino" 
1838     senegal  =  "senegal" 
1839     somalia  =  "somalia" 
1840     suriname  =  "suriname" 
1841     south_sudan  =  "south_sudan" 
1842     sao_tome_principe  =  "sao_tome_principe" 
1843     el_salvador  =  "el_salvador" 
1844     sint_maarten  =  "sint_maarten" 
1845     syria  =  "syria" 
1846     swaziland  =  "swaziland" 
1847     tristan_da_cunha  =  "tristan_da_cunha" 
1848     turks_caicos_islands  =  "turks_caicos_islands" 
1849     chad  =  "chad" 
1850     french_southern_territories  =  "french_southern_territories" 
1851     togo  =  "togo" 
1852     thailand  =  "thailand" 
1853     tajikistan  =  "tajikistan" 
1854     tokelau  =  "tokelau" 
1855     timor_leste  =  "timor_leste" 
1856     turkmenistan  =  "turkmenistan" 
1857     tunisia  =  "tunisia" 
1858     tonga  =  "tonga" 
1859     tr  =  "tr" 
1860     trinidad_tobago  =  "trinidad_tobago" 
1861     tuvalu  =  "tuvalu" 
1862     taiwan  =  "taiwan" 
1863     tanzania  =  "tanzania" 
1864     ukraine  =  "ukraine" 
1865     uganda  =  "uganda" 
1866     us_outlying_islands  =  "us_outlying_islands" 
1867     united_nations  =  "united_nations" 
1868     us  =  "us" 
1869     uruguay  =  "uruguay" 
1870     uzbekistan  =  "uzbekistan" 
1871     vatican_city  =  "vatican_city" 
1872     st_vincent_grenadines  =  "st_vincent_grenadines" 
1873     venezuela  =  "venezuela" 
1874     british_virgin_islands  =  "british_virgin_islands" 
1875     us_virgin_islands  =  "us_virgin_islands" 
1876     vietnam  =  "vietnam" 
1877     vanuatu  =  "vanuatu" 
1878     wallis_futuna  =  "wallis_futuna" 
1879     samoa  =  "samoa" 
1880     kosovo  =  "kosovo" 
1881     yemen  =  "yemen" 
1882     mayotte  =  "mayotte" 
1883     south_africa  =  "south_africa" 
1884     zambia  =  "zambia" 
1885     zimbabwe  =  "zimbabwe" 
1886     england  =  "england" 
1887     scotland  =  "scotland" 
1888     wales  =  "wales"