From 99744e7e8d004e1e7ebaa0e38af184ae1b6c8296 Mon Sep 17 00:00:00 2001 From: Terry Yiu <963907+tyiu@users.noreply.github.com> Date: Sat, 8 Jun 2024 16:03:05 -0400 Subject: [PATCH] Add support for localizable Apple emoji category names --- Sources/EmojiKit/AppleEmojiCategory.swift | 36 +- .../ar.lproj/EmojiKitLocalizable.strings | 32 + .../ca.lproj/EmojiKitLocalizable.strings | 31 + .../cs.lproj/EmojiKitLocalizable.strings | 31 + .../da.lproj/EmojiKitLocalizable.strings | 31 + .../de.lproj/EmojiKitLocalizable.strings | 31 + .../el.lproj/EmojiKitLocalizable.strings | 31 + .../en-AU.lproj/EmojiKitLocalizable.strings | 31 + .../en-GB.lproj/EmojiKitLocalizable.strings | 31 + .../en-IN.lproj/EmojiKitLocalizable.strings | 31 + .../en.lproj/EmojiKitLocalizable.strings | 31 + .../es-419.lproj/EmojiKitLocalizable.strings | 31 + .../es.lproj/EmojiKitLocalizable.strings | 31 + .../fi.lproj/EmojiKitLocalizable.strings | 31 + .../fr-CA.lproj/EmojiKitLocalizable.strings | 31 + .../fr.lproj/EmojiKitLocalizable.strings | 31 + .../he.lproj/EmojiKitLocalizable.strings | 31 + .../hi.lproj/EmojiKitLocalizable.strings | 31 + .../hr.lproj/EmojiKitLocalizable.strings | 31 + .../hu.lproj/EmojiKitLocalizable.strings | 31 + .../id.lproj/EmojiKitLocalizable.strings | 31 + .../it.lproj/EmojiKitLocalizable.strings | 31 + .../ja.lproj/EmojiKitLocalizable.strings | 31 + .../ko.lproj/EmojiKitLocalizable.strings | 31 + .../ms.lproj/EmojiKitLocalizable.strings | 31 + .../nb.lproj/EmojiKitLocalizable.strings | 31 + .../nl.lproj/EmojiKitLocalizable.strings | 31 + .../pl.lproj/EmojiKitLocalizable.strings | 31 + .../pt-BR.lproj/EmojiKitLocalizable.strings | 31 + .../pt-PT.lproj/EmojiKitLocalizable.strings | 31 + .../ro.lproj/EmojiKitLocalizable.strings | 31 + .../ru.lproj/EmojiKitLocalizable.strings | 31 + .../sk.lproj/EmojiKitLocalizable.strings | 31 + .../sv.lproj/EmojiKitLocalizable.strings | 31 + .../th.lproj/EmojiKitLocalizable.strings | 31 + .../tr.lproj/EmojiKitLocalizable.strings | 31 + .../uk.lproj/EmojiKitLocalizable.strings | 31 + .../vi.lproj/EmojiKitLocalizable.strings | 31 + .../zh-HK.lproj/EmojiKitLocalizable.strings | 31 + .../zh-Hans.lproj/EmojiKitLocalizable.strings | 31 + .../zh-Hant.lproj/EmojiKitLocalizable.strings | 31 + Sources/EmojiKit/Resources/emojis_v13.1.json | 6808 +-- Sources/EmojiKit/Resources/emojis_v14.0.json | 7340 +-- Sources/EmojiKit/Resources/emojis_v15.0.json | 39602 +++++++++++++++- Sources/EmojiKit/Resources/emojis_v15.1.json | 7596 +-- 45 files changed, 51712 insertions(+), 10911 deletions(-) create mode 100644 Sources/EmojiKit/Resources/Localization/ar.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/ca.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/cs.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/da.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/de.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/el.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/en-AU.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/en-GB.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/en-IN.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/en.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/es-419.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/es.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/fi.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/fr-CA.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/fr.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/he.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/hi.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/hr.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/hu.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/id.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/it.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/ja.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/ko.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/ms.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/nb.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/nl.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/pl.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/pt-BR.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/pt-PT.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/ro.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/ru.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/sk.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/sv.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/th.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/tr.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/uk.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/vi.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/zh-HK.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/zh-Hans.lproj/EmojiKitLocalizable.strings create mode 100644 Sources/EmojiKit/Resources/Localization/zh-Hant.lproj/EmojiKitLocalizable.strings diff --git a/Sources/EmojiKit/AppleEmojiCategory.swift b/Sources/EmojiKit/AppleEmojiCategory.swift index c11dfdd..b396fca 100644 --- a/Sources/EmojiKit/AppleEmojiCategory.swift +++ b/Sources/EmojiKit/AppleEmojiCategory.swift @@ -8,17 +8,26 @@ import Foundation import OrderedCollections -public class AppleEmojiCategory: Codable { +public class AppleEmojiCategory: Codable, Hashable { + public static func == (lhs: AppleEmojiCategory, rhs: AppleEmojiCategory) -> Bool { + lhs.name == rhs.name && lhs.emojis == rhs.emojis + } + + public func hash(into hasher: inout Hasher) { + hasher.combine(name) + hasher.combine(emojis) + } + public enum Name: String, CaseIterable, Codable { - case flags = "Flags" - case activity = "Activity" - case objects = "Objects" - case travelAndPlaces = "Travel & Places" - case symbols = "Symbols" - case animalsAndNature = "Animals & Nature" - case foodAndDrink = "Food & Drink" - case smileysAndPeople = "Smileys & People" + case flags = "flags" + case activity = "activity" + case objects = "objects" + case travelAndPlaces = "travelAndPlaces" + case symbols = "symbols" + case animalsAndNature = "animalsAndNature" + case foodAndDrink = "foodAndDrink" + case smileysAndPeople = "smileysAndPeople" public static var orderedCases: [Name] { return allCases.sorted(by: { $0.order < $1.order }) @@ -44,6 +53,15 @@ public class AppleEmojiCategory: Codable { return 1 } } + + public var localizedName: String { + NSLocalizedString( + self.rawValue, + tableName: "EmojiKitLocalizable", + bundle: .module, + comment: "" + ) + } } public let name: Name diff --git a/Sources/EmojiKit/Resources/Localization/ar.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/ar.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..c07674f --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/ar.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,32 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "الأكثر استخداما"; +"smileysAndPeople" = "ابتسامات وأشخاص"; +"animalsAndNature" = "حيوانات وطبيعة"; +"foodAndDrink" = "طعام وشراب"; +"activity" = "نشاط"; +"travelAndPlaces" = "سفر وأماكن"; +"objects" = "عناصر"; +"symbols" = "رموز"; +"flags" = "أعلام"; + diff --git a/Sources/EmojiKit/Resources/Localization/ca.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/ca.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..a16e1bb --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/ca.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "ÜS FREQUENT"; +"smileysAndPeople" = "EMOTICONES I PERSONES"; +"animalsAndNature" = "ANIMALS I NATURA"; +"foodAndDrink" = "MENJAR I BEGUDA"; +"activity" = "ACTIVITATS"; +"travelAndPlaces" = "VIATGES I LLOCS"; +"objects" = "OBJECTES"; +"symbols" = "SÍMBOLS"; +"flags" = "BANDERES"; diff --git a/Sources/EmojiKit/Resources/Localization/cs.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/cs.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..2273185 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/cs.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "ČASTO POUŽÍVANÉ"; +"smileysAndPeople" = "SMAJLÍCI A LIDÉ"; +"animalsAndNature" = "ZVÍŘATA A PŘRODA"; +"foodAndDrink" = "JÍDLO A PITÍ"; +"activity" = "AKTIVITA"; +"travelAndPlaces" = "CESTOVÁNÍ A MÍSTA"; +"objects" = "OBJEKTY"; +"symbols" = "SYMBOLY"; +"flags" = "VLAJKY"; diff --git a/Sources/EmojiKit/Resources/Localization/da.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/da.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..d36777c --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/da.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "HYPPIGT BRUGTE"; +"smileysAndPeople" = "SMILEYS OG PERSONER"; +"animalsAndNature" = "DYR OG NATUR"; +"foodAndDrink" = "MAD OG DRIKKEVARER"; +"activity" = "AKTIVITET"; +"travelAndPlaces" = "REJSER OG STEDER"; +"objects" = "OBJEKTER"; +"symbols" = "SYMBOLER"; +"flags" = "FLAG"; diff --git a/Sources/EmojiKit/Resources/Localization/de.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/de.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..5b6b855 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/de.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "OFT BENUTZT"; +"smileysAndPeople" = "SMILEYS & PERSONEN"; +"animalsAndNature" = "TIERE & NATUR"; +"foodAndDrink" = "ESSEN & TRINKEN"; +"activity" = "AKTIVITÄT"; +"travelAndPlaces" = "REISEN & ORTE"; +"objects" = "OBJEKTE"; +"symbols" = "SYMBOLE"; +"flags" = "FLAGGEN"; diff --git a/Sources/EmojiKit/Resources/Localization/el.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/el.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..26359ba --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/el.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "ΣΥΧΝΗ ΧΡΗΣΗ"; +"smileysAndPeople" = "ΦΑΤΣΟΥΛΕΣ ΚΑΙ ΑΤΟΜΑ"; +"animalsAndNature" = "ΖΩΑ ΚΑΙ ΦΥΣΗ"; +"foodAndDrink" = "ΦΑΓΗΤΟ ΚΑΙ ΠΟΤΟ"; +"activity" = "ΔΡΑΣΤΗΡΙΟΤΗΤΑ"; +"travelAndPlaces" = "ΤΑΞΙΔΙΑ ΚΑΙ ΜΕΡΗ"; +"objects" = "ANTIKEIMENA"; +"symbols" = "ΣΥΜΒΟΛΑ"; +"flags" = "ΣΗΜΑΙΕΣ"; diff --git a/Sources/EmojiKit/Resources/Localization/en-AU.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/en-AU.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..766f3b9 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/en-AU.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "FREQUENTLY USED"; +"smileysAndPeople" = "SMILEYS & PEOPLE"; +"animalsAndNature" = "ANIMALS & NATURE"; +"foodAndDrink" = "FOOD & DRINK"; +"activity" = "ACTIVITY"; +"travelAndPlaces" = "TRAVEL & PLACES"; +"objects" = "OBJECTS"; +"symbols" = "SYMBOLS"; +"flags" = "FLAGS"; diff --git a/Sources/EmojiKit/Resources/Localization/en-GB.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/en-GB.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..766f3b9 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/en-GB.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "FREQUENTLY USED"; +"smileysAndPeople" = "SMILEYS & PEOPLE"; +"animalsAndNature" = "ANIMALS & NATURE"; +"foodAndDrink" = "FOOD & DRINK"; +"activity" = "ACTIVITY"; +"travelAndPlaces" = "TRAVEL & PLACES"; +"objects" = "OBJECTS"; +"symbols" = "SYMBOLS"; +"flags" = "FLAGS"; diff --git a/Sources/EmojiKit/Resources/Localization/en-IN.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/en-IN.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..766f3b9 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/en-IN.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "FREQUENTLY USED"; +"smileysAndPeople" = "SMILEYS & PEOPLE"; +"animalsAndNature" = "ANIMALS & NATURE"; +"foodAndDrink" = "FOOD & DRINK"; +"activity" = "ACTIVITY"; +"travelAndPlaces" = "TRAVEL & PLACES"; +"objects" = "OBJECTS"; +"symbols" = "SYMBOLS"; +"flags" = "FLAGS"; diff --git a/Sources/EmojiKit/Resources/Localization/en.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/en.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..766f3b9 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/en.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "FREQUENTLY USED"; +"smileysAndPeople" = "SMILEYS & PEOPLE"; +"animalsAndNature" = "ANIMALS & NATURE"; +"foodAndDrink" = "FOOD & DRINK"; +"activity" = "ACTIVITY"; +"travelAndPlaces" = "TRAVEL & PLACES"; +"objects" = "OBJECTS"; +"symbols" = "SYMBOLS"; +"flags" = "FLAGS"; diff --git a/Sources/EmojiKit/Resources/Localization/es-419.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/es-419.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..4730852 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/es-419.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "MÁS FRECUENTES"; +"smileysAndPeople" = "CARAS Y PERSONAS"; +"animalsAndNature" = "ANIMALES Y NATURALEZA"; +"foodAndDrink" = "ALIMENTOS Y BEBIDAS"; +"activity" = "ACTIVIDAD"; +"travelAndPlaces" = "VIAJES Y LUGARES"; +"objects" = "OBJETOS"; +"symbols" = "SÍMBOLOS"; +"flags" = "BANDERAS"; diff --git a/Sources/EmojiKit/Resources/Localization/es.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/es.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..7f529b2 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/es.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "USADOS CON FRECUENCIA"; +"smileysAndPeople" = "EMOTICONOS Y PERSONAS"; +"animalsAndNature" = "ANIMALES Y NATURALEZA"; +"foodAndDrink" = "COMIDA Y BEBIDA"; +"activity" = "ACTIVIDADES"; +"travelAndPlaces" = "VIAJES Y DESTINOS"; +"objects" = "OBJETOS"; +"symbols" = "SÍMBOLOS"; +"flags" = "BANDERAS"; diff --git a/Sources/EmojiKit/Resources/Localization/fi.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/fi.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..9162fe5 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/fi.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "USEIN KÄYTETYT"; +"smileysAndPeople" = "HYMIÖT JA IHMISET"; +"animalsAndNature" = "ELÄIMET JA LUONTO"; +"foodAndDrink" = "RUOKA JA JUOMA"; +"activity" = "TOIMINTA"; +"travelAndPlaces" = "MATKAILU JA PAIKAT"; +"objects" = "ESINEET"; +"symbols" = "SYMBOLIT"; +"flags" = "LIPUT"; diff --git a/Sources/EmojiKit/Resources/Localization/fr-CA.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/fr-CA.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..7bd1451 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/fr-CA.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "UTILISÉS FRÉQUEMMENT"; +"smileysAndPeople" = "ÉMOTICÔNES ET PERSONNES"; +"animalsAndNature" = "ANIMAUX ET NATURE"; +"foodAndDrink" = "ALIMENT ET BOISSON"; +"activity" = "ACTIVITÉ"; +"travelAndPlaces" = "VOYAGES ET LIEUX"; +"objects" = "OBJETS"; +"symbols" = "SYMBOLES"; +"flags" = "DRAPEAUX"; diff --git a/Sources/EmojiKit/Resources/Localization/fr.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/fr.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..19a15ef --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/fr.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "SOUVENT UTILISÉS"; +"smileysAndPeople" = "ÉMOTICÔNES ET PERSONNAGES"; +"animalsAndNature" = "ANIMAUX ET NATURE"; +"foodAndDrink" = "NOURRITURE ET BOISSONS"; +"activity" = "ACTIVITÉS"; +"travelAndPlaces" = "VOYAGES ET LIEUX"; +"objects" = "OBJETS"; +"symbols" = "SYMBOLES"; +"flags" = "DRAPEAUX"; diff --git a/Sources/EmojiKit/Resources/Localization/he.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/he.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..35ce350 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/he.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "בשימוש תדיר"; +"smileysAndPeople" = "סמיילי ואנשים"; +"animalsAndNature" = "בעלי חיים וטבע"; +"foodAndDrink" = "מזון ומשקאות"; +"activity" = "פעילות"; +"travelAndPlaces" = "נסיעות ומקומות"; +"objects" = "חפצים"; +"symbols" = "סימנים"; +"flags" = "דגלים"; diff --git a/Sources/EmojiKit/Resources/Localization/hi.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/hi.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..0ab1a2a --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/hi.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "अक्सर उपयोग होने वाले"; +"smileysAndPeople" = "स्माइली और लोग"; +"animalsAndNature" = "पशु और प्रकृति"; +"foodAndDrink" = "खाद्य और पेय"; +"activity" = "ऐक्टिविटी"; +"travelAndPlaces" = "यात्रा और स्थान"; +"objects" = "चीजें"; +"symbols" = "चिह्न"; +"flags" = "फ़्लैग"; diff --git a/Sources/EmojiKit/Resources/Localization/hr.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/hr.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..ce63176 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/hr.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "ČESTO KORIŠTENO"; +"smileysAndPeople" = "SMAJLIĆI I OSOBE"; +"animalsAndNature" = "ŽIVOTINJE I NATURE"; +"foodAndDrink" = "HRANA I PIĆE"; +"activity" = "AKTIVNOST"; +"travelAndPlaces" = "PUTOVANJA I MJESTA"; +"objects" = "PREDMETI"; +"symbols" = "SIMBOLI"; +"flags" = "ZASTAVE"; diff --git a/Sources/EmojiKit/Resources/Localization/hu.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/hu.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..09f6604 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/hu.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "GYAKRAN HASZNÁLTAK"; +"smileysAndPeople" = "HANGULATJELEK ÉS EMBEREK"; +"animalsAndNature" = "ÁLLATOK ÉS TERMÉSZET"; +"foodAndDrink" = "ÉTELEK ÉS ITALOK"; +"activity" = "TEVÉKENYSÉG"; +"travelAndPlaces" = "UTAZÁS ÉS HELYEK"; +"objects" = "TÁRGYAK"; +"symbols" = "SZIMBÓLUMOK"; +"flags" = "ZÁSZLÓK"; diff --git a/Sources/EmojiKit/Resources/Localization/id.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/id.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..805cb7f --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/id.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "SERING DIGUNAKAN"; +"smileysAndPeople" = "SMILEY & ORANG"; +"animalsAndNature" = "HEWAN & ALAM"; +"foodAndDrink" = "MAKANAN & MINUMAN"; +"activity" = "AKTIVITAS"; +"travelAndPlaces" = "PERJALANAN & TEMPAT"; +"objects" = "OBJEK"; +"symbols" = "SIMBOL"; +"flags" = "BENDERA"; diff --git a/Sources/EmojiKit/Resources/Localization/it.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/it.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..2ed5ff5 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/it.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "USATE DI FREQUENTE"; +"smileysAndPeople" = "EMOTICON E PERSONE"; +"animalsAndNature" = "ANIMALI E NATURA"; +"foodAndDrink" = "CIBO E BEVANDE"; +"activity" = "ATTIVITÀ"; +"travelAndPlaces" = "VIAGGI E LUOGHI"; +"objects" = "OGGETTI"; +"symbols" = "SIMBOLI"; +"flags" = "BANDIERE"; diff --git a/Sources/EmojiKit/Resources/Localization/ja.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/ja.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..bd8c214 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/ja.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "よく使う項目"; +"smileysAndPeople" = "スマイリーと人々"; +"animalsAndNature" = "動物と自然"; +"foodAndDrink" = "食べ物と飲み物"; +"activity" = "活動"; +"travelAndPlaces" = "旅行と場所"; +"objects" = "物"; +"symbols" = "記号"; +"flags" = "旗"; diff --git a/Sources/EmojiKit/Resources/Localization/ko.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/ko.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..a64ae8d --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/ko.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "자주 사용하는 항목"; +"smileysAndPeople" = "스마일리 및 사람"; +"animalsAndNature" = "동물 및 자연"; +"foodAndDrink" = "음식 및 음료"; +"activity" = "활동"; +"travelAndPlaces" = "여행 및 장소"; +"objects" = "사물"; +"symbols" = "기호"; +"flags" = "깃발"; diff --git a/Sources/EmojiKit/Resources/Localization/ms.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/ms.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..69aaae7 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/ms.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "KERAP DIGUNAKAN"; +"smileysAndPeople" = "MUKA SENYUM & ORANG"; +"animalsAndNature" = "HAIWAN & ALAM"; +"foodAndDrink" = "MAKANAN & MINUMAN"; +"activity" = "AKTIVITI"; +"travelAndPlaces" = "PERJALANAN & TEMPAT"; +"objects" = "OBJEK"; +"symbols" = "SIMBOL"; +"flags" = "BENDERA"; diff --git a/Sources/EmojiKit/Resources/Localization/nb.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/nb.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..afc824e --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/nb.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "OFTE BRUKT"; +"smileysAndPeople" = "SMILEFJES OG PERSONER"; +"animalsAndNature" = "DYR OG NATUR"; +"foodAndDrink" = "MAT OG DRIKKE"; +"activity" = "AKTIVITET"; +"travelAndPlaces" = "REISE OG STEDER"; +"objects" = "OBJEKTER"; +"symbols" = "SYMBOLER"; +"flags" = "FLAGG"; diff --git a/Sources/EmojiKit/Resources/Localization/nl.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/nl.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..d738fc7 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/nl.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "VAAK GEBRUIKT"; +"smileysAndPeople" = "SMILEYS EN MENSEN"; +"animalsAndNature" = "DIEREN EN NATUUR"; +"foodAndDrink" = "ETEN EN DRINKEN"; +"activity" = "ACTIVITEIT"; +"travelAndPlaces" = "REIZEN EN PLAATSEN"; +"objects" = "OBJECTEN"; +"symbols" = "SYMBOLEN"; +"flags" = "VLAGGEN"; diff --git a/Sources/EmojiKit/Resources/Localization/pl.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/pl.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..0dd5406 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/pl.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "CZĘSTO UŻYWANE"; +"smileysAndPeople" = "BUŻKI I OSOBY"; +"animalsAndNature" = "ZWIERZĘTA I NATURA"; +"foodAndDrink" = "ŻYWNOŚĆ I NAPOJE"; +"activity" = "AKTYWNOŚĆ"; +"travelAndPlaces" = "PODRÓŻE I MIEJSCA"; +"objects" = "OBIEKTY"; +"symbols" = "SYMBOLE"; +"flags" = "FLAGI"; diff --git a/Sources/EmojiKit/Resources/Localization/pt-BR.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/pt-BR.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..1ce6289 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/pt-BR.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "MAIS USADOS"; +"smileysAndPeople" = "SORRISOS E PESSOAS"; +"animalsAndNature" = "ANIMAIS E NATUREZA"; +"foodAndDrink" = "COMIDA E BEBIDA"; +"activity" = "ATIVIDADES"; +"travelAndPlaces" = "VIAGEM E LUGARES"; +"objects" = "OBJETOS"; +"symbols" = "SÍMBOLOS"; +"flags" = "BANDEIRAS"; diff --git a/Sources/EmojiKit/Resources/Localization/pt-PT.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/pt-PT.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..ca2d1a4 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/pt-PT.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "USADOS COM FREQUÊNCIA"; +"smileysAndPeople" = "SMILEYS E PESSOAS"; +"animalsAndNature" = "ANIMAIS E NATUREZA"; +"foodAndDrink" = "ALIMENTAÇÃO E BEBIDAS"; +"activity" = "ATIVIDADE"; +"travelAndPlaces" = "VIAGENS E LUGARES"; +"objects" = "OBJETOS"; +"symbols" = "SÍMBOLOS"; +"flags" = "BANDEIRAS"; diff --git a/Sources/EmojiKit/Resources/Localization/ro.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/ro.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..4d29343 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/ro.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "UTILIZATE FRECVENT"; +"smileysAndPeople" = "EMOTICOANE ȘI PERSOANE"; +"animalsAndNature" = "ANIMALE ȘI NATURĂ"; +"foodAndDrink" = "MÂNCĂRURI ȘI BĂUTURI"; +"activity" = "ACTIVITĂȚI"; +"travelAndPlaces" = "CĂLĂTORII ȘI LOCURI"; +"objects" = "OBIECTE"; +"symbols" = "SIMBOLURI"; +"flags" = "STEAGURI"; diff --git a/Sources/EmojiKit/Resources/Localization/ru.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/ru.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..fd01ed5 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/ru.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "ЧАСТО ИСПОЛЬЗУЕМЫЕ"; +"smileysAndPeople" = "СМАЙЛИКИ И ЛЮДИ"; +"animalsAndNature" = "ЖИВОТНЫЕ И ПРИРОДА"; +"foodAndDrink" = "ЕДА И НАПИТКИ"; +"activity" = "АКТИВНОСТЬ"; +"travelAndPlaces" = "ПУТЕШЕСТВИЯ И МЕСТНОСТИ"; +"objects" = "ПРЕДМЕТЫ"; +"symbols" = "СИМВОЛЫ"; +"flags" = "ФЛАГИ"; diff --git a/Sources/EmojiKit/Resources/Localization/sk.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/sk.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..a60228a --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/sk.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "ČASTO POUŽÍVANÉ"; +"smileysAndPeople" = "SMAJLÍKY A ĽUDIA"; +"animalsAndNature" = "ZVIERATÁ A PRÍRODA"; +"foodAndDrink" = "JEDLO A NÁPOJE"; +"activity" = "AKTIVITA"; +"travelAndPlaces" = "CESTOVANIE A MIESTA"; +"objects" = "OBJEKTY"; +"symbols" = "SYMBOLY"; +"flags" = "VLAJKY"; diff --git a/Sources/EmojiKit/Resources/Localization/sv.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/sv.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..45cf348 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/sv.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "OFTA ANVÄNDA"; +"smileysAndPeople" = "SMILEYS OCH MÄNNISKOR"; +"animalsAndNature" = "DJUR OCH NATUR"; +"foodAndDrink" = "MAT OCH DRYCK"; +"activity" = "AKTIVITET"; +"travelAndPlaces" = "RESOR OCH PLATSER"; +"objects" = "OBJEKT"; +"symbols" = "SYMBOLER"; +"flags" = "FLAGGOR"; diff --git a/Sources/EmojiKit/Resources/Localization/th.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/th.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..d016cba --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/th.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "ที่ใช้ประจำ"; +"smileysAndPeople" = "ใบหน้ายิ้มและผู้คน"; +"animalsAndNature" = "สัตว์และธรรมชาติ"; +"foodAndDrink" = "อาหารและเครื่องดื่ม"; +"activity" = "กิจกรรม"; +"travelAndPlaces" = "การท่องเที่ยวและสถานที่"; +"objects" = "วัตถุ"; +"symbols" = "สัญลักษณ์"; +"flags" = "ธง"; diff --git a/Sources/EmojiKit/Resources/Localization/tr.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/tr.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..9866bc9 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/tr.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "SIK KULLANILANLAR"; +"smileysAndPeople" = "YÜZ İFADELERİ VE İNSANLAR"; +"animalsAndNature" = "HAYVANLAR VE DOĞA"; +"foodAndDrink" = "YİYECEK VE İÇECEK"; +"activity" = "ETKİNLİK"; +"travelAndPlaces" = "SEYAHAT VE YERLER"; +"objects" = "NESNELER"; +"symbols" = "SEMBOLLER"; +"flags" = "BAYRAKLAR"; diff --git a/Sources/EmojiKit/Resources/Localization/uk.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/uk.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..d10eb7f --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/uk.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "ЧАСТО ВЖИВАНІ"; +"smileysAndPeople" = "СМАЙЛИКИ Й ЛЮДИ"; +"animalsAndNature" = "ФЛОРА І ФАУНА"; +"foodAndDrink" = "ЇЖА І НАПОЇ"; +"activity" = "АКТИВНІСТЬ"; +"travelAndPlaces" = "ПОДОРОЖІ Й МІСЦЯ"; +"objects" = "ОБʼЄКТИ"; +"symbols" = "СИМВОЛИ"; +"flags" = "ПРАПОРИ"; diff --git a/Sources/EmojiKit/Resources/Localization/vi.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/vi.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..f687eec --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/vi.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "THƯỜNG DÙNG"; +"smileysAndPeople" = "MẶT CƯỜI & NGƯỜI"; +"animalsAndNature" = "ĐỘNG VẬT & TỰ NHIÊN"; +"foodAndDrink" = "ĐỒ ĂN & ĐỒ UỐNG"; +"activity" = "HOẠT ĐỘNG"; +"travelAndPlaces" = "DU LỊCH & ĐỊA ĐIỂM"; +"objects" = "ĐỒ VẬT"; +"symbols" = "KÝ HIỆU"; +"flags" = "CỜ"; diff --git a/Sources/EmojiKit/Resources/Localization/zh-HK.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/zh-HK.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..10338ee --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/zh-HK.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "常用"; +"smileysAndPeople" = "表情與人物"; +"animalsAndNature" = "動物與自然"; +"foodAndDrink" = "飲食"; +"activity" = "活動"; +"travelAndPlaces" = "旅行與地點"; +"objects" = "物件"; +"symbols" = "符號"; +"flags" = "旗幟"; diff --git a/Sources/EmojiKit/Resources/Localization/zh-Hans.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/zh-Hans.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..c9f41b6 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/zh-Hans.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "常用"; +"smileysAndPeople" = "表情符号与人物"; +"animalsAndNature" = "动物与自然"; +"foodAndDrink" = "食物与饮料"; +"activity" = "活动"; +"travelAndPlaces" = "旅行与地点"; +"objects" = "物体"; +"symbols" = "符号"; +"flags" = "旗帜"; diff --git a/Sources/EmojiKit/Resources/Localization/zh-Hant.lproj/EmojiKitLocalizable.strings b/Sources/EmojiKit/Resources/Localization/zh-Hant.lproj/EmojiKitLocalizable.strings new file mode 100644 index 0000000..784fe18 --- /dev/null +++ b/Sources/EmojiKit/Resources/Localization/zh-Hant.lproj/EmojiKitLocalizable.strings @@ -0,0 +1,31 @@ +// The MIT License (MIT) +// +// Copyright © 2022 Ivan Izyumkin +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + +"frequentlyUsed" = "常用項目"; +"smileysAndPeople" = "表情符號與人物"; +"animalsAndNature" = "動物與自然"; +"foodAndDrink" = "美食佳飲"; +"activity" = "活動"; +"travelAndPlaces" = "旅遊與地點"; +"objects" = "物品"; +"symbols" = "符號"; +"flags" = "旗幟"; diff --git a/Sources/EmojiKit/Resources/emojis_v13.1.json b/Sources/EmojiKit/Resources/emojis_v13.1.json index 3c7980c..de83cff 100644 --- a/Sources/EmojiKit/Resources/emojis_v13.1.json +++ b/Sources/EmojiKit/Resources/emojis_v13.1.json @@ -1,11 +1,8 @@ [ { - "appleCategory" : "Flags", - "name" : "Flags", "emojis" : [ "🏁", { - "value" : "🏁", "keywords" : [ "checkered", "chequered", @@ -17,7 +14,8 @@ "racing", "sport", "win" - ] + ], + "value" : "🏁" }, "🚩", { @@ -43,21 +41,21 @@ }, "🏴", { - "value" : "🏴", "keywords" : [ "black", "flag", "waving" - ] + ], + "value" : "🏴" }, "🏳️", { - "value" : "🏳️", "keywords" : [ "flag", "waving", "white" - ] + ], + "value" : "🏳️" }, "🏳️‍🌈", { @@ -94,7 +92,6 @@ }, "🏴‍☠️", { - "value" : "🏴‍☠️", "keywords" : [ "flag", "Jolly", @@ -102,7 +99,8 @@ "plunder", "Roger", "treasure" - ] + ], + "value" : "🏴‍☠️" }, "🇦🇨", { @@ -122,35 +120,35 @@ }, "🇦🇪", { - "value" : "🇦🇪", "keywords" : [ "flag", "flag: United Arab Emirates" - ] + ], + "value" : "🇦🇪" }, "🇦🇫", { + "value" : "🇦🇫", "keywords" : [ "flag", "flag: Afghanistan" - ], - "value" : "🇦🇫" + ] }, "🇦🇬", { + "value" : "🇦🇬", "keywords" : [ "flag", "flag: Antigua&Barbuda" - ], - "value" : "🇦🇬" + ] }, "🇦🇮", { + "value" : "🇦🇮", "keywords" : [ "flag", "flag: Anguilla" - ], - "value" : "🇦🇮" + ] }, "🇦🇱", { @@ -162,11 +160,11 @@ }, "🇦🇲", { + "value" : "🇦🇲", "keywords" : [ "flag", "flag: Armenia" - ], - "value" : "🇦🇲" + ] }, "🇦🇴", { @@ -178,35 +176,35 @@ }, "🇦🇶", { - "value" : "🇦🇶", "keywords" : [ "flag", "flag: Antarctica" - ] + ], + "value" : "🇦🇶" }, "🇦🇷", { + "value" : "🇦🇷", "keywords" : [ "flag", "flag: Argentina" - ], - "value" : "🇦🇷" + ] }, "🇦🇸", { + "value" : "🇦🇸", "keywords" : [ "flag", "flag: American Samoa" - ], - "value" : "🇦🇸" + ] }, "🇦🇹", { - "value" : "🇦🇹", "keywords" : [ "flag", "flag: Austria" - ] + ], + "value" : "🇦🇹" }, "🇦🇺", { @@ -250,11 +248,11 @@ }, "🇧🇧", { - "value" : "🇧🇧", "keywords" : [ "flag", "flag: Barbados" - ] + ], + "value" : "🇧🇧" }, "🇧🇩", { @@ -266,27 +264,27 @@ }, "🇧🇪", { - "value" : "🇧🇪", "keywords" : [ "flag", "flag: Belgium" - ] + ], + "value" : "🇧🇪" }, "🇧🇫", { + "value" : "🇧🇫", "keywords" : [ "flag", "flag: Burkina Faso" - ], - "value" : "🇧🇫" + ] }, "🇧🇬", { + "value" : "🇧🇬", "keywords" : [ "flag", "flag: Bulgaria" - ], - "value" : "🇧🇬" + ] }, "🇧🇭", { @@ -330,11 +328,11 @@ }, "🇧🇳", { - "value" : "🇧🇳", "keywords" : [ "flag", "flag: Brunei" - ] + ], + "value" : "🇧🇳" }, "🇧🇴", { @@ -346,27 +344,27 @@ }, "🇧🇶", { - "value" : "🇧🇶", "keywords" : [ "flag", "flag: Caribbean Netherlands" - ] + ], + "value" : "🇧🇶" }, "🇧🇷", { - "value" : "🇧🇷", "keywords" : [ "flag", "flag: Brazil" - ] + ], + "value" : "🇧🇷" }, "🇧🇸", { - "value" : "🇧🇸", "keywords" : [ "flag", "flag: Bahamas" - ] + ], + "value" : "🇧🇸" }, "🇧🇹", { @@ -386,19 +384,19 @@ }, "🇧🇼", { + "value" : "🇧🇼", "keywords" : [ "flag", "flag: Botswana" - ], - "value" : "🇧🇼" + ] }, "🇧🇾", { + "value" : "🇧🇾", "keywords" : [ "flag", "flag: Belarus" - ], - "value" : "🇧🇾" + ] }, "🇧🇿", { @@ -418,11 +416,11 @@ }, "🇨🇨", { + "value" : "🇨🇨", "keywords" : [ "flag", "flag: Cocos (Keeling) Islands" - ], - "value" : "🇨🇨" + ] }, "🇨🇩", { @@ -442,35 +440,35 @@ }, "🇨🇬", { + "value" : "🇨🇬", "keywords" : [ "flag", "flag: Congo - Brazzaville" - ], - "value" : "🇨🇬" + ] }, "🇨🇭", { + "value" : "🇨🇭", "keywords" : [ "flag", "flag: Switzerland" - ], - "value" : "🇨🇭" + ] }, "🇨🇮", { - "value" : "🇨🇮", "keywords" : [ "flag", "flag: Côte d’Ivoire" - ] + ], + "value" : "🇨🇮" }, "🇨🇰", { + "value" : "🇨🇰", "keywords" : [ "flag", "flag: Cook Islands" - ], - "value" : "🇨🇰" + ] }, "🇨🇱", { @@ -482,11 +480,11 @@ }, "🇨🇲", { + "value" : "🇨🇲", "keywords" : [ "flag", "flag: Cameroon" - ], - "value" : "🇨🇲" + ] }, "🇨🇳", { @@ -498,11 +496,11 @@ }, "🇨🇴", { + "value" : "🇨🇴", "keywords" : [ "flag", "flag: Colombia" - ], - "value" : "🇨🇴" + ] }, "🇨🇵", { @@ -530,19 +528,19 @@ }, "🇨🇻", { + "value" : "🇨🇻", "keywords" : [ "flag", "flag: Cape Verde" - ], - "value" : "🇨🇻" + ] }, "🇨🇼", { + "value" : "🇨🇼", "keywords" : [ "flag", "flag: Curaçao" - ], - "value" : "🇨🇼" + ] }, "🇨🇽", { @@ -578,11 +576,11 @@ }, "🇩🇬", { + "value" : "🇩🇬", "keywords" : [ "flag", "flag: Diego Garcia" - ], - "value" : "🇩🇬" + ] }, "🇩🇯", { @@ -594,11 +592,11 @@ }, "🇩🇰", { + "value" : "🇩🇰", "keywords" : [ "flag", "flag: Denmark" - ], - "value" : "🇩🇰" + ] }, "🇩🇲", { @@ -610,11 +608,11 @@ }, "🇩🇴", { + "value" : "🇩🇴", "keywords" : [ "flag", "flag: Dominican Republic" - ], - "value" : "🇩🇴" + ] }, "🇩🇿", { @@ -626,11 +624,11 @@ }, "🇪🇦", { - "value" : "🇪🇦", "keywords" : [ "flag", "flag: Ceuta&Melilla" - ] + ], + "value" : "🇪🇦" }, "🇪🇨", { @@ -650,11 +648,11 @@ }, "🇪🇬", { + "value" : "🇪🇬", "keywords" : [ "flag", "flag: Egypt" - ], - "value" : "🇪🇬" + ] }, "🇪🇭", { @@ -666,11 +664,11 @@ }, "🇪🇷", { + "value" : "🇪🇷", "keywords" : [ "flag", "flag: Eritrea" - ], - "value" : "🇪🇷" + ] }, "🇪🇸", { @@ -690,11 +688,11 @@ }, "🇪🇺", { + "value" : "🇪🇺", "keywords" : [ "flag", "flag: European Union" - ], - "value" : "🇪🇺" + ] }, "🇫🇮", { @@ -738,11 +736,11 @@ }, "🇫🇷", { - "value" : "🇫🇷", "keywords" : [ "flag", "flag: France" - ] + ], + "value" : "🇫🇷" }, "🇬🇦", { @@ -754,11 +752,11 @@ }, "🇬🇧", { - "value" : "🇬🇧", "keywords" : [ "flag", "flag: United Kingdom" - ] + ], + "value" : "🇬🇧" }, "🇬🇩", { @@ -770,11 +768,11 @@ }, "🇬🇪", { - "value" : "🇬🇪", "keywords" : [ "flag", "flag: Georgia" - ] + ], + "value" : "🇬🇪" }, "🇬🇫", { @@ -786,27 +784,27 @@ }, "🇬🇬", { - "value" : "🇬🇬", "keywords" : [ "flag", "flag: Guernsey" - ] + ], + "value" : "🇬🇬" }, "🇬🇭", { + "value" : "🇬🇭", "keywords" : [ "flag", "flag: Ghana" - ], - "value" : "🇬🇭" + ] }, "🇬🇮", { - "value" : "🇬🇮", "keywords" : [ "flag", "flag: Gibraltar" - ] + ], + "value" : "🇬🇮" }, "🇬🇱", { @@ -818,19 +816,19 @@ }, "🇬🇲", { - "value" : "🇬🇲", "keywords" : [ "flag", "flag: Gambia" - ] + ], + "value" : "🇬🇲" }, "🇬🇳", { - "value" : "🇬🇳", "keywords" : [ "flag", "flag: Guinea" - ] + ], + "value" : "🇬🇳" }, "🇬🇵", { @@ -850,35 +848,35 @@ }, "🇬🇷", { + "value" : "🇬🇷", "keywords" : [ "flag", "flag: Greece" - ], - "value" : "🇬🇷" + ] }, "🇬🇸", { - "value" : "🇬🇸", "keywords" : [ "flag", "flag: South Georgia&South Sandwich Islands" - ] + ], + "value" : "🇬🇸" }, "🇬🇹", { + "value" : "🇬🇹", "keywords" : [ "flag", "flag: Guatemala" - ], - "value" : "🇬🇹" + ] }, "🇬🇺", { + "value" : "🇬🇺", "keywords" : [ "flag", "flag: Guam" - ], - "value" : "🇬🇺" + ] }, "🇬🇼", { @@ -898,11 +896,11 @@ }, "🇭🇰", { + "value" : "🇭🇰", "keywords" : [ "flag", "flag: Hong Kong SAR China" - ], - "value" : "🇭🇰" + ] }, "🇭🇲", { @@ -970,11 +968,11 @@ }, "🇮🇱", { - "value" : "🇮🇱", "keywords" : [ "flag", "flag: Israel" - ] + ], + "value" : "🇮🇱" }, "🇮🇲", { @@ -1002,11 +1000,11 @@ }, "🇮🇶", { - "value" : "🇮🇶", "keywords" : [ "flag", "flag: Iraq" - ] + ], + "value" : "🇮🇶" }, "🇮🇷", { @@ -1026,19 +1024,19 @@ }, "🇮🇹", { + "value" : "🇮🇹", "keywords" : [ "flag", "flag: Italy" - ], - "value" : "🇮🇹" + ] }, "🇯🇪", { - "value" : "🇯🇪", "keywords" : [ "flag", "flag: Jersey" - ] + ], + "value" : "🇯🇪" }, "🇯🇲", { @@ -1090,35 +1088,35 @@ }, "🇰🇮", { - "value" : "🇰🇮", "keywords" : [ "flag", "flag: Kiribati" - ] + ], + "value" : "🇰🇮" }, "🇰🇲", { - "value" : "🇰🇲", "keywords" : [ "flag", "flag: Comoros" - ] + ], + "value" : "🇰🇲" }, "🇰🇳", { + "value" : "🇰🇳", "keywords" : [ "flag", "flag: St. Kitts&Nevis" - ], - "value" : "🇰🇳" + ] }, "🇰🇵", { + "value" : "🇰🇵", "keywords" : [ "flag", "flag: North Korea" - ], - "value" : "🇰🇵" + ] }, "🇰🇷", { @@ -1130,11 +1128,11 @@ }, "🇰🇼", { + "value" : "🇰🇼", "keywords" : [ "flag", "flag: Kuwait" - ], - "value" : "🇰🇼" + ] }, "🇰🇾", { @@ -1146,11 +1144,11 @@ }, "🇰🇿", { + "value" : "🇰🇿", "keywords" : [ "flag", "flag: Kazakhstan" - ], - "value" : "🇰🇿" + ] }, "🇱🇦", { @@ -1178,11 +1176,11 @@ }, "🇱🇮", { + "value" : "🇱🇮", "keywords" : [ "flag", "flag: Liechtenstein" - ], - "value" : "🇱🇮" + ] }, "🇱🇰", { @@ -1194,35 +1192,35 @@ }, "🇱🇷", { + "value" : "🇱🇷", "keywords" : [ "flag", "flag: Liberia" - ], - "value" : "🇱🇷" + ] }, "🇱🇸", { - "value" : "🇱🇸", "keywords" : [ "flag", "flag: Lesotho" - ] + ], + "value" : "🇱🇸" }, "🇱🇹", { - "value" : "🇱🇹", "keywords" : [ "flag", "flag: Lithuania" - ] + ], + "value" : "🇱🇹" }, "🇱🇺", { + "value" : "🇱🇺", "keywords" : [ "flag", "flag: Luxembourg" - ], - "value" : "🇱🇺" + ] }, "🇱🇻", { @@ -1250,11 +1248,11 @@ }, "🇲🇨", { - "value" : "🇲🇨", "keywords" : [ "flag", "flag: Monaco" - ] + ], + "value" : "🇲🇨" }, "🇲🇩", { @@ -1298,19 +1296,19 @@ }, "🇲🇰", { - "value" : "🇲🇰", "keywords" : [ "flag", "flag: North Macedonia" - ] + ], + "value" : "🇲🇰" }, "🇲🇱", { + "value" : "🇲🇱", "keywords" : [ "flag", "flag: Mali" - ], - "value" : "🇲🇱" + ] }, "🇲🇲", { @@ -1322,27 +1320,27 @@ }, "🇲🇳", { + "value" : "🇲🇳", "keywords" : [ "flag", "flag: Mongolia" - ], - "value" : "🇲🇳" + ] }, "🇲🇴", { + "value" : "🇲🇴", "keywords" : [ "flag", "flag: Macao SAR China" - ], - "value" : "🇲🇴" + ] }, "🇲🇵", { + "value" : "🇲🇵", "keywords" : [ "flag", "flag: Northern Mariana Islands" - ], - "value" : "🇲🇵" + ] }, "🇲🇶", { @@ -1354,35 +1352,35 @@ }, "🇲🇷", { - "value" : "🇲🇷", "keywords" : [ "flag", "flag: Mauritania" - ] + ], + "value" : "🇲🇷" }, "🇲🇸", { - "value" : "🇲🇸", "keywords" : [ "flag", "flag: Montserrat" - ] + ], + "value" : "🇲🇸" }, "🇲🇹", { + "value" : "🇲🇹", "keywords" : [ "flag", "flag: Malta" - ], - "value" : "🇲🇹" + ] }, "🇲🇺", { - "value" : "🇲🇺", "keywords" : [ "flag", "flag: Mauritius" - ] + ], + "value" : "🇲🇺" }, "🇲🇻", { @@ -1514,11 +1512,11 @@ }, "🇳🇿", { + "value" : "🇳🇿", "keywords" : [ "flag", "flag: New Zealand" - ], - "value" : "🇳🇿" + ] }, "🇴🇲", { @@ -1546,11 +1544,11 @@ }, "🇵🇫", { - "value" : "🇵🇫", "keywords" : [ "flag", "flag: French Polynesia" - ] + ], + "value" : "🇵🇫" }, "🇵🇬", { @@ -1562,19 +1560,19 @@ }, "🇵🇭", { - "value" : "🇵🇭", "keywords" : [ "flag", "flag: Philippines" - ] + ], + "value" : "🇵🇭" }, "🇵🇰", { - "value" : "🇵🇰", "keywords" : [ "flag", "flag: Pakistan" - ] + ], + "value" : "🇵🇰" }, "🇵🇱", { @@ -1594,11 +1592,11 @@ }, "🇵🇳", { - "value" : "🇵🇳", "keywords" : [ "flag", "flag: Pitcairn Islands" - ] + ], + "value" : "🇵🇳" }, "🇵🇷", { @@ -1626,19 +1624,19 @@ }, "🇵🇼", { + "value" : "🇵🇼", "keywords" : [ "flag", "flag: Palau" - ], - "value" : "🇵🇼" + ] }, "🇵🇾", { - "value" : "🇵🇾", "keywords" : [ "flag", "flag: Paraguay" - ] + ], + "value" : "🇵🇾" }, "🇶🇦", { @@ -1650,11 +1648,11 @@ }, "🇷🇪", { - "value" : "🇷🇪", "keywords" : [ "flag", "flag: Réunion" - ] + ], + "value" : "🇷🇪" }, "🇷🇴", { @@ -1666,11 +1664,11 @@ }, "🇷🇸", { - "value" : "🇷🇸", "keywords" : [ "flag", "flag: Serbia" - ] + ], + "value" : "🇷🇸" }, "🇷🇺", { @@ -1682,43 +1680,43 @@ }, "🇷🇼", { - "value" : "🇷🇼", "keywords" : [ "flag", "flag: Rwanda" - ] + ], + "value" : "🇷🇼" }, "🇸🇦", { + "value" : "🇸🇦", "keywords" : [ "flag", "flag: Saudi Arabia" - ], - "value" : "🇸🇦" + ] }, "🇸🇧", { + "value" : "🇸🇧", "keywords" : [ "flag", "flag: Solomon Islands" - ], - "value" : "🇸🇧" + ] }, "🇸🇨", { + "value" : "🇸🇨", "keywords" : [ "flag", "flag: Seychelles" - ], - "value" : "🇸🇨" + ] }, "🇸🇩", { + "value" : "🇸🇩", "keywords" : [ "flag", "flag: Sudan" - ], - "value" : "🇸🇩" + ] }, "🇸🇪", { @@ -1738,11 +1736,11 @@ }, "🇸🇭", { + "value" : "🇸🇭", "keywords" : [ "flag", "flag: St. Helena" - ], - "value" : "🇸🇭" + ] }, "🇸🇮", { @@ -1762,19 +1760,19 @@ }, "🇸🇰", { - "value" : "🇸🇰", "keywords" : [ "flag", "flag: Slovakia" - ] + ], + "value" : "🇸🇰" }, "🇸🇱", { + "value" : "🇸🇱", "keywords" : [ "flag", "flag: Sierra Leone" - ], - "value" : "🇸🇱" + ] }, "🇸🇲", { @@ -1794,11 +1792,11 @@ }, "🇸🇴", { - "value" : "🇸🇴", "keywords" : [ "flag", "flag: Somalia" - ] + ], + "value" : "🇸🇴" }, "🇸🇷", { @@ -1850,51 +1848,51 @@ }, "🇸🇿", { - "value" : "🇸🇿", "keywords" : [ "flag", "flag: Eswatini" - ] + ], + "value" : "🇸🇿" }, "🇹🇦", { + "value" : "🇹🇦", "keywords" : [ "flag", "flag: Tristan da Cunha" - ], - "value" : "🇹🇦" + ] }, "🇹🇨", { + "value" : "🇹🇨", "keywords" : [ "flag", "flag: Turks&Caicos Islands" - ], - "value" : "🇹🇨" + ] }, "🇹🇩", { - "value" : "🇹🇩", "keywords" : [ "flag", "flag: Chad" - ] + ], + "value" : "🇹🇩" }, "🇹🇫", { + "value" : "🇹🇫", "keywords" : [ "flag", "flag: French Southern Territories" - ], - "value" : "🇹🇫" + ] }, "🇹🇬", { + "value" : "🇹🇬", "keywords" : [ "flag", "flag: Togo" - ], - "value" : "🇹🇬" + ] }, "🇹🇭", { @@ -1930,11 +1928,11 @@ }, "🇹🇲", { + "value" : "🇹🇲", "keywords" : [ "flag", "flag: Turkmenistan" - ], - "value" : "🇹🇲" + ] }, "🇹🇳", { @@ -1954,19 +1952,19 @@ }, "🇹🇷", { - "value" : "🇹🇷", "keywords" : [ "flag", "flag: Türkiye" - ] + ], + "value" : "🇹🇷" }, "🇹🇹", { + "value" : "🇹🇹", "keywords" : [ "flag", "flag: Trinidad&Tobago" - ], - "value" : "🇹🇹" + ] }, "🇹🇻", { @@ -1986,11 +1984,11 @@ }, "🇹🇿", { - "value" : "🇹🇿", "keywords" : [ "flag", "flag: Tanzania" - ] + ], + "value" : "🇹🇿" }, "🇺🇦", { @@ -2018,19 +2016,19 @@ }, "🇺🇳", { - "value" : "🇺🇳", "keywords" : [ "flag", "flag: United Nations" - ] + ], + "value" : "🇺🇳" }, "🇺🇸", { + "value" : "🇺🇸", "keywords" : [ "flag", "flag: United States" - ], - "value" : "🇺🇸" + ] }, "🇺🇾", { @@ -2042,27 +2040,27 @@ }, "🇺🇿", { - "value" : "🇺🇿", "keywords" : [ "flag", "flag: Uzbekistan" - ] + ], + "value" : "🇺🇿" }, "🇻🇦", { + "value" : "🇻🇦", "keywords" : [ "flag", "flag: Vatican City" - ], - "value" : "🇻🇦" + ] }, "🇻🇨", { - "value" : "🇻🇨", "keywords" : [ "flag", "flag: St. Vincent&Grenadines" - ] + ], + "value" : "🇻🇨" }, "🇻🇪", { @@ -2074,11 +2072,11 @@ }, "🇻🇬", { + "value" : "🇻🇬", "keywords" : [ "flag", "flag: British Virgin Islands" - ], - "value" : "🇻🇬" + ] }, "🇻🇮", { @@ -2098,19 +2096,19 @@ }, "🇻🇺", { - "value" : "🇻🇺", "keywords" : [ "flag", "flag: Vanuatu" - ] + ], + "value" : "🇻🇺" }, "🇼🇫", { - "value" : "🇼🇫", "keywords" : [ "flag", "flag: Wallis&Futuna" - ] + ], + "value" : "🇼🇫" }, "🇼🇸", { @@ -2122,11 +2120,11 @@ }, "🇽🇰", { - "value" : "🇽🇰", "keywords" : [ "flag", "flag: Kosovo" - ] + ], + "value" : "🇽🇰" }, "🇾🇪", { @@ -2138,19 +2136,19 @@ }, "🇾🇹", { - "value" : "🇾🇹", "keywords" : [ "flag", "flag: Mayotte" - ] + ], + "value" : "🇾🇹" }, "🇿🇦", { + "value" : "🇿🇦", "keywords" : [ "flag", "flag: South Africa" - ], - "value" : "🇿🇦" + ] }, "🇿🇲", { @@ -2162,39 +2160,42 @@ }, "🇿🇼", { - "value" : "🇿🇼", "keywords" : [ "flag", "flag: Zimbabwe" - ] + ], + "value" : "🇿🇼" }, "🏴󠁧󠁢󠁥󠁮󠁧󠁿", { - "value" : "🏴󠁧󠁢󠁥󠁮󠁧󠁿", "keywords" : [ "flag", "flag: England" - ] + ], + "value" : "🏴󠁧󠁢󠁥󠁮󠁧󠁿" }, "🏴󠁧󠁢󠁳󠁣󠁴󠁿", { + "value" : "🏴󠁧󠁢󠁳󠁣󠁴󠁿", "keywords" : [ "flag", "flag: Scotland" - ], - "value" : "🏴󠁧󠁢󠁳󠁣󠁴󠁿" + ] }, "🏴󠁧󠁢󠁷󠁬󠁳󠁿", { - "value" : "🏴󠁧󠁢󠁷󠁬󠁳󠁿", "keywords" : [ "flag", "flag: Wales" - ] + ], + "value" : "🏴󠁧󠁢󠁷󠁬󠁳󠁿" } - ] + ], + "name" : "Flags", + "appleCategory" : "flags" }, { + "name" : "Activities", "emojis" : [ "🎃", { @@ -2219,14 +2220,14 @@ }, "🎆", { - "value" : "🎆", "keywords" : [ "boom", "celebration", "entertainment", "fireworks", "yolo" - ] + ], + "value" : "🎆" }, "🎇", { @@ -2241,6 +2242,7 @@ }, "🧨", { + "value" : "🧨", "keywords" : [ "dynamite", "explosive", @@ -2251,8 +2253,7 @@ "pop", "popping", "spark" - ], - "value" : "🧨" + ] }, "✨", { @@ -2305,14 +2306,14 @@ }, "🎋", { - "value" : "🎋", "keywords" : [ "banner", "celebration", "Japanese", "tanabata", "tree" - ] + ], + "value" : "🎋" }, "🎍", { @@ -2328,23 +2329,23 @@ }, "🎎", { + "value" : "🎎", "keywords" : [ "celebration", "doll", "dolls", "festival", "Japanese" - ], - "value" : "🎎" + ] }, "🎏", { + "value" : "🎏", "keywords" : [ "carp", "celebration", "streamer" - ], - "value" : "🎏" + ] }, "🎐", { @@ -2368,6 +2369,7 @@ }, "🧧", { + "value" : "🧧", "keywords" : [ "envelope", "gift", @@ -2378,19 +2380,19 @@ "money", "red", "see" - ], - "value" : "🧧" + ] }, "🎀", { - "value" : "🎀", "keywords" : [ "celebration", "ribbon" - ] + ], + "value" : "🎀" }, "🎁", { + "value" : "🎁", "keywords" : [ "birthday", "bow", @@ -2401,8 +2403,7 @@ "present", "surprise", "wrapped" - ], - "value" : "🎁" + ] }, "🎗️", { @@ -2415,12 +2416,12 @@ }, "🎟️", { - "value" : "🎟️", "keywords" : [ "admission", "ticket", "tickets" - ] + ], + "value" : "🎟️" }, "🎫", { @@ -2458,25 +2459,25 @@ }, "🏅", { + "value" : "🏅", "keywords" : [ "award", "gold", "medal", "sports", "winner" - ], - "value" : "🏅" + ] }, "🥇", { + "value" : "🥇", "keywords" : [ "1st", "first", "gold", "medal", "place" - ], - "value" : "🥇" + ] }, "🥈", { @@ -2522,24 +2523,24 @@ }, "🥎", { - "value" : "🥎", "keywords" : [ "ball", "glove", "softball", "sports", "underarm" - ] + ], + "value" : "🥎" }, "🏀", { + "value" : "🏀", "keywords" : [ "ball", "basketball", "hoop", "sport" - ], - "value" : "🏀" + ] }, "🏐", { @@ -2574,13 +2575,13 @@ }, "🎾", { + "value" : "🎾", "keywords" : [ "ball", "racquet", "sport", "tennis" - ], - "value" : "🎾" + ] }, "🥏", { @@ -2593,60 +2594,61 @@ }, "🎳", { - "value" : "🎳", "keywords" : [ "ball", "bowling", "game", "sport", "strike" - ] + ], + "value" : "🎳" }, "🏏", { - "value" : "🏏", "keywords" : [ "ball", "bat", "cricket", "game" - ] + ], + "value" : "🏏" }, "🏑", { - "value" : "🏑", "keywords" : [ "ball", "field", "game", "hockey", "stick" - ] + ], + "value" : "🏑" }, "🏒", { - "value" : "🏒", "keywords" : [ "game", "hockey", "ice", "puck", "stick" - ] + ], + "value" : "🏒" }, "🥍", { - "value" : "🥍", "keywords" : [ "ball", "goal", "lacrosse", "sports", "stick" - ] + ], + "value" : "🥍" }, "🏓", { + "value" : "🏓", "keywords" : [ "ball", "bat", @@ -2657,27 +2659,26 @@ "pong", "table", "tennis" - ], - "value" : "🏓" + ] }, "🏸", { + "value" : "🏸", "keywords" : [ "badminton", "birdie", "game", "racquet", "shuttlecock" - ], - "value" : "🏸" + ] }, "🥊", { + "value" : "🥊", "keywords" : [ "boxing", "glove" - ], - "value" : "🥊" + ] }, "🥋", { @@ -2711,33 +2712,33 @@ }, "⛸️", { + "value" : "⛸️", "keywords" : [ "ice", "skate", "skating" - ], - "value" : "⛸️" + ] }, "🎣", { - "value" : "🎣", "keywords" : [ "entertainment", "fish", "fishing", "pole", "sport" - ] + ], + "value" : "🎣" }, "🤿", { + "value" : "🤿", "keywords" : [ "diving", "mask", "scuba", "snorkeling" - ], - "value" : "🤿" + ] }, "🎽", { @@ -2761,6 +2762,7 @@ }, "🛷", { + "value" : "🛷", "keywords" : [ "luge", "sled", @@ -2768,22 +2770,20 @@ "sleigh", "snow", "toboggan" - ], - "value" : "🛷" + ] }, "🥌", { + "value" : "🥌", "keywords" : [ "curling", "game", "rock", "stone" - ], - "value" : "🥌" + ] }, "🎯", { - "value" : "🎯", "keywords" : [ "bull", "bullseye", @@ -2793,16 +2793,17 @@ "game", "hit", "target" - ] + ], + "value" : "🎯" }, "🪀", { - "value" : "🪀", "keywords" : [ "fluctuate", "toy", "yo-yo" - ] + ], + "value" : "🪀" }, "🪁", { @@ -2828,6 +2829,7 @@ }, "🔮", { + "value" : "🔮", "keywords" : [ "ball", "crystal", @@ -2839,8 +2841,7 @@ "magic", "tale", "tool" - ], - "value" : "🔮" + ] }, "🪄", { @@ -2888,7 +2889,6 @@ }, "🎰", { - "value" : "🎰", "keywords" : [ "casino", "gamble", @@ -2897,31 +2897,33 @@ "machine", "slot", "slots" - ] + ], + "value" : "🎰" }, "🎲", { + "value" : "🎲", "keywords" : [ "dice", "die", "entertainment", "game" - ], - "value" : "🎲" + ] }, "🧩", { - "value" : "🧩", "keywords" : [ "clue", "interlocking", "jigsaw", "piece", "puzzle" - ] + ], + "value" : "🧩" }, "🧸", { + "value" : "🧸", "keywords" : [ "bear", "plaything", @@ -2929,11 +2931,11 @@ "stuffed", "teddy", "toy" - ], - "value" : "🧸" + ] }, "🪅", { + "value" : "🪅", "keywords" : [ "candy", "celebrate", @@ -2946,12 +2948,10 @@ "pinada", "pinata", "piñata" - ], - "value" : "🪅" + ] }, "🪆", { - "value" : "🪆", "keywords" : [ "babooshka", "baboushka", @@ -2961,7 +2961,8 @@ "matryoshka", "nesting", "russia" - ] + ], + "value" : "🪆" }, "♠️", { @@ -2975,7 +2976,6 @@ }, "♥️", { - "value" : "♥️", "keywords" : [ "card", "emotion", @@ -2983,17 +2983,18 @@ "heart", "hearts", "suit" - ] + ], + "value" : "♥️" }, "♦️", { + "value" : "♦️", "keywords" : [ "card", "diamond", "game", "suit" - ], - "value" : "♦️" + ] }, "♣️", { @@ -3050,7 +3051,6 @@ }, "🎭", { - "value" : "🎭", "keywords" : [ "actor", "actress", @@ -3062,7 +3062,8 @@ "theater", "theatre", "thespian" - ] + ], + "value" : "🎭" }, "🖼️", { @@ -3078,6 +3079,7 @@ }, "🎨", { + "value" : "🎨", "keywords" : [ "art", "artist", @@ -3090,23 +3092,21 @@ "painter", "painting", "palette" - ], - "value" : "🎨" + ] }, "🧵", { + "value" : "🧵", "keywords" : [ "needle", "sewing", "spool", "string", "thread" - ], - "value" : "🧵" + ] }, "🪡", { - "value" : "🪡", "keywords" : [ "embroidery", "needle", @@ -3116,17 +3116,18 @@ "sutures", "tailoring", "thread" - ] + ], + "value" : "🪡" }, "🧶", { + "value" : "🧶", "keywords" : [ "ball", "crochet", "knit", "yarn" - ], - "value" : "🧶" + ] }, "🪢", { @@ -3142,8 +3143,7 @@ "value" : "🪢" } ], - "appleCategory" : "Activity", - "name" : "Activities" + "appleCategory" : "activity" }, { "name" : "Component", @@ -3172,25 +3172,25 @@ }, "🏽", { - "value" : "🏽", "keywords" : [ "4", "medium", "skin", "tone", "type" - ] + ], + "value" : "🏽" }, "🏾", { + "value" : "🏾", "keywords" : [ "5", "medium-dark", "skin", "tone", "type" - ], - "value" : "🏾" + ] }, "🏿", { @@ -3235,6 +3235,7 @@ }, "🦲", { + "value" : "🦲", "keywords" : [ "bald", "chemotherapy", @@ -3242,13 +3243,12 @@ "hairless", "no", "shaven" - ], - "value" : "🦲" + ] } ] }, { - "appleCategory" : "Objects", + "appleCategory" : "objects", "name" : "Objects", "emojis" : [ "👓", @@ -3369,11 +3369,11 @@ }, "🧤", { + "value" : "🧤", "keywords" : [ "gloves", "hand" - ], - "value" : "🧤" + ] }, "🧥", { @@ -3389,11 +3389,11 @@ }, "🧦", { - "value" : "🧦", "keywords" : [ "socks", "stocking" - ] + ], + "value" : "🧦" }, "👗", { @@ -3418,22 +3418,22 @@ }, "🥻", { + "value" : "🥻", "keywords" : [ "clothing", "dress", "sari" - ], - "value" : "🥻" + ] }, "🩱", { + "value" : "🩱", "keywords" : [ "bathing", "one-piece", "suit", "swimsuit" - ], - "value" : "🩱" + ] }, "🩲", { @@ -3461,6 +3461,7 @@ }, "👙", { + "value" : "👙", "keywords" : [ "bathing", "beach", @@ -3469,11 +3470,11 @@ "pool", "suit", "swim" - ], - "value" : "👙" + ] }, "👚", { + "value" : "👚", "keywords" : [ "blouse", "clothes", @@ -3486,8 +3487,7 @@ "shopping", "woman", "woman’s" - ], - "value" : "👚" + ] }, "👛", { @@ -3519,7 +3519,6 @@ }, "👝", { - "value" : "👝", "keywords" : [ "bag", "clothes", @@ -3529,7 +3528,8 @@ "handbag", "pouch", "purse" - ] + ], + "value" : "👝" }, "🛍️", { @@ -3557,7 +3557,6 @@ }, "🩴", { - "value" : "🩴", "keywords" : [ "beach", "flip", @@ -3568,11 +3567,11 @@ "thong", "thongs", "zōri" - ] + ], + "value" : "🩴" }, "👞", { - "value" : "👞", "keywords" : [ "brown", "clothes", @@ -3585,10 +3584,12 @@ "shoe", "shoes", "shopping" - ] + ], + "value" : "👞" }, "👟", { + "value" : "👟", "keywords" : [ "athletic", "clothes", @@ -3601,8 +3602,7 @@ "shopping", "sneaker", "tennis" - ], - "value" : "👟" + ] }, "🥾", { @@ -3619,7 +3619,6 @@ }, "🥿", { - "value" : "🥿", "keywords" : [ "ballet", "comfy", @@ -3628,7 +3627,8 @@ "shoe", "slip-on", "slipper" - ] + ], + "value" : "🥿" }, "👠", { @@ -3685,6 +3685,7 @@ }, "👑", { + "value" : "👑", "keywords" : [ "clothing", "crown", @@ -3695,12 +3696,10 @@ "royal", "royalty", "win" - ], - "value" : "👑" + ] }, "👒", { - "value" : "👒", "keywords" : [ "clothes", "clothing", @@ -3710,7 +3709,8 @@ "party", "woman", "woman’s" - ] + ], + "value" : "👒" }, "🎩", { @@ -3728,7 +3728,6 @@ }, "🎓", { - "value" : "🎓", "keywords" : [ "cap", "celebration", @@ -3737,7 +3736,8 @@ "graduation", "hat", "scholar" - ] + ], + "value" : "🎓" }, "🧢", { @@ -3765,7 +3765,6 @@ }, "⛑️", { - "value" : "⛑️", "keywords" : [ "aid", "cross", @@ -3774,31 +3773,33 @@ "helmet", "rescue", "worker’s" - ] + ], + "value" : "⛑️" }, "📿", { - "value" : "📿", "keywords" : [ "beads", "clothing", "necklace", "prayer", "religion" - ] + ], + "value" : "📿" }, "💄", { - "value" : "💄", "keywords" : [ "cosmetics", "date", "lipstick", "makeup" - ] + ], + "value" : "💄" }, "💍", { + "value" : "💍", "keywords" : [ "diamond", "engaged", @@ -3809,8 +3810,7 @@ "shiny", "sparkling", "wedding" - ], - "value" : "💍" + ] }, "💎", { @@ -3894,22 +3894,22 @@ }, "📯", { - "value" : "📯", "keywords" : [ "horn", "post", "postal" - ] + ], + "value" : "📯" }, "🔔", { - "value" : "🔔", "keywords" : [ "bell", "break", "church", "sound" - ] + ], + "value" : "🔔" }, "🔕", { @@ -3929,13 +3929,13 @@ }, "🎼", { - "value" : "🎼", "keywords" : [ "music", "musical", "note", "score" - ] + ], + "value" : "🎼" }, "🎵", { @@ -3960,13 +3960,13 @@ }, "🎙️", { + "value" : "🎙️", "keywords" : [ "mic", "microphone", "music", "studio" - ], - "value" : "🎙️" + ] }, "🎚️", { @@ -4009,13 +4009,13 @@ }, "📻", { - "value" : "📻", "keywords" : [ "entertainment", "radio", "tbt", "video" - ] + ], + "value" : "📻" }, "🎷", { @@ -4052,41 +4052,41 @@ }, "🎹", { + "value" : "🎹", "keywords" : [ "instrument", "keyboard", "music", "musical", "piano" - ], - "value" : "🎹" + ] }, "🎺", { - "value" : "🎺", "keywords" : [ "instrument", "music", "trumpet" - ] + ], + "value" : "🎺" }, "🎻", { + "value" : "🎻", "keywords" : [ "instrument", "music", "violin" - ], - "value" : "🎻" + ] }, "🪕", { + "value" : "🪕", "keywords" : [ "banjo", "music", "stringed" - ], - "value" : "🪕" + ] }, "🥁", { @@ -4111,14 +4111,14 @@ }, "📱", { - "value" : "📱", "keywords" : [ "cell", "communication", "mobile", "phone", "telephone" - ] + ], + "value" : "📱" }, "📲", { @@ -4137,22 +4137,22 @@ }, "☎️", { - "value" : "☎️", "keywords" : [ "phone", "telephone" - ] + ], + "value" : "☎️" }, "📞", { + "value" : "📞", "keywords" : [ "communication", "phone", "receiver", "telephone", "voip" - ], - "value" : "📞" + ] }, "📟", { @@ -4164,12 +4164,12 @@ }, "📠", { + "value" : "📠", "keywords" : [ "communication", "fax", "machine" - ], - "value" : "📠" + ] }, "🔋", { @@ -4200,28 +4200,28 @@ }, "🖥️", { - "value" : "🖥️", "keywords" : [ "computer", "desktop", "monitor" - ] + ], + "value" : "🖥️" }, "🖨️", { - "value" : "🖨️", "keywords" : [ "computer", "printer" - ] + ], + "value" : "🖨️" }, "⌨️", { + "value" : "⌨️", "keywords" : [ "computer", "keyboard" - ], - "value" : "⌨️" + ] }, "🖱️", { @@ -4241,22 +4241,22 @@ }, "💽", { + "value" : "💽", "keywords" : [ "computer", "disk", "minidisk", "optical" - ], - "value" : "💽" + ] }, "💾", { + "value" : "💾", "keywords" : [ "computer", "disk", "floppy" - ], - "value" : "💾" + ] }, "💿", { @@ -4284,15 +4284,16 @@ }, "🧮", { + "value" : "🧮", "keywords" : [ "abacus", "calculation", "calculator" - ], - "value" : "🧮" + ] }, "🎥", { + "value" : "🎥", "keywords" : [ "bollywood", "camera", @@ -4301,8 +4302,7 @@ "hollywood", "movie", "record" - ], - "value" : "🎥" + ] }, "🎞️", { @@ -4316,37 +4316,36 @@ }, "📽️", { + "value" : "📽️", "keywords" : [ "cinema", "film", "movie", "projector", "video" - ], - "value" : "📽️" + ] }, "🎬", { - "value" : "🎬", "keywords" : [ "action", "board", "clapper", "movie" - ] + ], + "value" : "🎬" }, "📺", { + "value" : "📺", "keywords" : [ "television", "tv", "video" - ], - "value" : "📺" + ] }, "📷", { - "value" : "📷", "keywords" : [ "camera", "photo", @@ -4355,16 +4354,17 @@ "tbt", "trip", "video" - ] + ], + "value" : "📷" }, "📸", { + "value" : "📸", "keywords" : [ "camera", "flash", "video" - ], - "value" : "📸" + ] }, "📹", { @@ -4378,7 +4378,6 @@ }, "📼", { - "value" : "📼", "keywords" : [ "old", "school", @@ -4387,7 +4386,8 @@ "vhs", "video", "videocassette" - ] + ], + "value" : "📼" }, "🔍", { @@ -4406,7 +4406,6 @@ }, "🔎", { - "value" : "🔎", "keywords" : [ "contact", "glass", @@ -4418,7 +4417,8 @@ "search", "tilted", "tool" - ] + ], + "value" : "🔎" }, "🕯️", { @@ -4511,6 +4511,7 @@ }, "📗", { + "value" : "📗", "keywords" : [ "book", "education", @@ -4518,8 +4519,7 @@ "green", "library", "reading" - ], - "value" : "📗" + ] }, "📘", { @@ -4547,6 +4547,7 @@ }, "📚", { + "value" : "📚", "keywords" : [ "book", "books", @@ -4558,23 +4559,22 @@ "reading", "school", "study" - ], - "value" : "📚" + ] }, "📓", { + "value" : "📓", "keywords" : [ "notebook" - ], - "value" : "📓" + ] }, "📒", { + "value" : "📒", "keywords" : [ "ledger", "notebook" - ], - "value" : "📒" + ] }, "📃", { @@ -4588,22 +4588,22 @@ }, "📜", { + "value" : "📜", "keywords" : [ "paper", "scroll" - ], - "value" : "📜" + ] }, "📄", { - "value" : "📄", "keywords" : [ "document", "facing", "page", "up", "paper" - ] + ], + "value" : "📄" }, "📰", { @@ -4628,29 +4628,29 @@ }, "📑", { + "value" : "📑", "keywords" : [ "bookmark", "mark", "marker", "tabs" - ], - "value" : "📑" + ] }, "🔖", { - "value" : "🔖", "keywords" : [ "bookmark", "mark" - ] + ], + "value" : "🔖" }, "🏷️", { + "value" : "🏷️", "keywords" : [ "label", "tag" - ], - "value" : "🏷️" + ] }, "💰", { @@ -4704,6 +4704,7 @@ }, "💵", { + "value" : "💵", "keywords" : [ "bank", "banknote", @@ -4712,8 +4713,7 @@ "dollar", "money", "note" - ], - "value" : "💵" + ] }, "💶", { @@ -4732,6 +4732,7 @@ }, "💷", { + "value" : "💷", "keywords" : [ "bank", "banknote", @@ -4743,8 +4744,7 @@ "note", "pound", "pounds" - ], - "value" : "💷" + ] }, "💸", { @@ -4779,6 +4779,7 @@ }, "🧾", { + "value" : "🧾", "keywords" : [ "accounting", "bookkeeping", @@ -4786,12 +4787,10 @@ "invoice", "proof", "receipt" - ], - "value" : "🧾" + ] }, "💹", { - "value" : "💹", "keywords" : [ "bank", "chart", @@ -4805,7 +4804,8 @@ "trend", "upward", "yen" - ] + ], + "value" : "💹" }, "✉️", { @@ -4819,17 +4819,16 @@ }, "📧", { - "value" : "📧", "keywords" : [ "e-mail", "email", "letter", "mail" - ] + ], + "value" : "📧" }, "📨", { - "value" : "📨", "keywords" : [ "delivering", "e-mail", @@ -4840,7 +4839,8 @@ "mail", "receive", "sent" - ] + ], + "value" : "📨" }, "📩", { @@ -4900,7 +4900,6 @@ }, "📫", { - "value" : "📫", "keywords" : [ "closed", "communication", @@ -4909,10 +4908,12 @@ "mailbox", "postbox", "raised" - ] + ], + "value" : "📫" }, "📪", { + "value" : "📪", "keywords" : [ "closed", "flag", @@ -4920,8 +4921,7 @@ "mail", "mailbox", "postbox" - ], - "value" : "📪" + ] }, "📬", { @@ -4973,36 +4973,36 @@ }, "✒️", { - "value" : "✒️", "keywords" : [ "black", "nib", "pen" - ] + ], + "value" : "✒️" }, "🖋️", { - "value" : "🖋️", "keywords" : [ "fountain", "pen" - ] + ], + "value" : "🖋️" }, "🖊️", { + "value" : "🖊️", "keywords" : [ "ballpoint", "pen" - ], - "value" : "🖊️" + ] }, "🖌️", { - "value" : "🖌️", "keywords" : [ "paintbrush", "painting" - ] + ], + "value" : "🖌️" }, "🖍️", { @@ -5013,14 +5013,14 @@ }, "📝", { - "value" : "📝", "keywords" : [ "communication", "media", "memo", "notes", "pencil" - ] + ], + "value" : "📝" }, "💼", { @@ -5032,11 +5032,11 @@ }, "📁", { - "value" : "📁", "keywords" : [ "file", "folder" - ] + ], + "value" : "📁" }, "📂", { @@ -5058,19 +5058,19 @@ }, "📅", { - "value" : "📅", "keywords" : [ "calendar", "date" - ] + ], + "value" : "📅" }, "📆", { - "value" : "📆", "keywords" : [ "calendar", "tear-off" - ] + ], + "value" : "📆" }, "🗒️", { @@ -5093,17 +5093,18 @@ }, "📇", { + "value" : "📇", "keywords" : [ "card", "index", "old", "rolodex", "school" - ], - "value" : "📇" + ] }, "📈", { + "value" : "📈", "keywords" : [ "chart", "data", @@ -5114,12 +5115,10 @@ "trend", "up", "upward" - ], - "value" : "📈" + ] }, "📉", { - "value" : "📉", "keywords" : [ "chart", "data", @@ -5129,17 +5128,18 @@ "graph", "negative", "trend" - ] + ], + "value" : "📉" }, "📊", { - "value" : "📊", "keywords" : [ "bar", "chart", "data", "graph" - ] + ], + "value" : "📊" }, "📋", { @@ -5162,14 +5162,14 @@ }, "📍", { + "value" : "📍", "keywords" : [ "location", "map", "pin", "pushpin", "round" - ], - "value" : "📍" + ] }, "📎", { @@ -5190,7 +5190,6 @@ }, "📏", { - "value" : "📏", "keywords" : [ "angle", "edge", @@ -5198,10 +5197,12 @@ "ruler", "straight", "straightedge" - ] + ], + "value" : "📏" }, "📐", { + "value" : "📐", "keywords" : [ "angle", "math", @@ -5211,28 +5212,27 @@ "slide", "triangle", "triangular" - ], - "value" : "📐" + ] }, "✂️", { - "value" : "✂️", "keywords" : [ "cut", "cutting", "paper", "scissors", "tool" - ] + ], + "value" : "✂️" }, "🗃️", { - "value" : "🗃️", "keywords" : [ "box", "card", "file" - ] + ], + "value" : "🗃️" }, "🗄️", { @@ -5267,17 +5267,18 @@ }, "🔓", { + "value" : "🔓", "keywords" : [ "cracked", "lock", "open", "unlock", "unlocked" - ], - "value" : "🔓" + ] }, "🔏", { + "value" : "🔏", "keywords" : [ "ink", "lock", @@ -5285,12 +5286,10 @@ "nib", "pen", "privacy" - ], - "value" : "🔏" + ] }, "🔐", { - "value" : "🔐", "keywords" : [ "bike", "closed", @@ -5298,11 +5297,11 @@ "lock", "locked", "secure" - ] + ], + "value" : "🔐" }, "🔑", { - "value" : "🔑", "keywords" : [ "key", "keys", @@ -5310,7 +5309,8 @@ "major", "password", "unlock" - ] + ], + "value" : "🔑" }, "🗝️", { @@ -5376,12 +5376,12 @@ }, "🗡️", { + "value" : "🗡️", "keywords" : [ "dagger", "knife", "weapon" - ], - "value" : "🗡️" + ] }, "⚔️", { @@ -5394,7 +5394,6 @@ }, "🔫", { - "value" : "🔫", "keywords" : [ "gun", "handgun", @@ -5403,7 +5402,8 @@ "tool", "water", "weapon" - ] + ], + "value" : "🔫" }, "🪃", { @@ -5417,6 +5417,7 @@ }, "🏹", { + "value" : "🏹", "keywords" : [ "archer", "archery", @@ -5426,8 +5427,7 @@ "tool", "weapon", "zodiac" - ], - "value" : "🏹" + ] }, "🛡️", { @@ -5474,24 +5474,24 @@ }, "🔩", { + "value" : "🔩", "keywords" : [ "bolt", "home", "improvement", "nut", "tool" - ], - "value" : "🔩" + ] }, "⚙️", { + "value" : "⚙️", "keywords" : [ "cog", "cogwheel", "gear", "tool" - ], - "value" : "⚙️" + ] }, "🗜️", { @@ -5546,7 +5546,6 @@ }, "🪝", { - "value" : "🪝", "keywords" : [ "catch", "crook", @@ -5555,7 +5554,8 @@ "hook", "point", "selling" - ] + ], + "value" : "🪝" }, "🧰", { @@ -5653,17 +5653,18 @@ }, "🔭", { - "value" : "🔭", "keywords" : [ "contact", "extraterrestrial", "science", "telescope", "tool" - ] + ], + "value" : "🔭" }, "📡", { + "value" : "📡", "keywords" : [ "aliens", "antenna", @@ -5671,11 +5672,11 @@ "dish", "satellite", "science" - ], - "value" : "📡" + ] }, "💉", { + "value" : "💉", "keywords" : [ "doctor", "flu", @@ -5686,12 +5687,10 @@ "syringe", "tool", "vaccination" - ], - "value" : "💉" + ] }, "🩸", { - "value" : "🩸", "keywords" : [ "bleed", "blood", @@ -5700,7 +5699,8 @@ "injury", "medicine", "menstruation" - ] + ], + "value" : "🩸" }, "💊", { @@ -5746,13 +5746,13 @@ }, "🛗", { - "value" : "🛗", "keywords" : [ "accessibility", "elevator", "hoist", "lift" - ] + ], + "value" : "🛗" }, "🪞", { @@ -5767,6 +5767,7 @@ }, "🪟", { + "value" : "🪟", "keywords" : [ "air", "frame", @@ -5775,17 +5776,16 @@ "transparent", "view", "window" - ], - "value" : "🪟" + ] }, "🛏️", { - "value" : "🛏️", "keywords" : [ "bed", "hotel", "sleep" - ] + ], + "value" : "🛏️" }, "🛋️", { @@ -5798,12 +5798,12 @@ }, "🪑", { + "value" : "🪑", "keywords" : [ "chair", "seat", "sit" - ], - "value" : "🪑" + ] }, "🚽", { @@ -5815,6 +5815,7 @@ }, "🪠", { + "value" : "🪠", "keywords" : [ "cup", "force", @@ -5823,8 +5824,7 @@ "poop", "suction", "toilet" - ], - "value" : "🪠" + ] }, "🚿", { @@ -5844,6 +5844,7 @@ }, "🪤", { + "value" : "🪤", "keywords" : [ "bait", "cheese", @@ -5852,8 +5853,7 @@ "mousetrap", "snare", "trap" - ], - "value" : "🪤" + ] }, "🪒", { @@ -5928,7 +5928,6 @@ }, "🧼", { - "value" : "🧼", "keywords" : [ "bar", "bathing", @@ -5937,10 +5936,12 @@ "lather", "soap", "soapdish" - ] + ], + "value" : "🧼" }, "🪥", { + "value" : "🪥", "keywords" : [ "bathroom", "brush", @@ -5950,8 +5951,7 @@ "teeth", "toiletry", "toothbrush" - ], - "value" : "🪥" + ] }, "🧽", { @@ -5966,13 +5966,13 @@ }, "🧯", { - "value" : "🧯", "keywords" : [ "extinguish", "extinguisher", "fire", "quench" - ] + ], + "value" : "🧯" }, "🛒", { @@ -5985,11 +5985,11 @@ }, "🚬", { - "value" : "🚬", "keywords" : [ "cigarette", "smoking" - ] + ], + "value" : "🚬" }, "⚰️", { @@ -6018,13 +6018,13 @@ }, "⚱️", { - "value" : "⚱️", "keywords" : [ "ashes", "death", "funeral", "urn" - ] + ], + "value" : "⚱️" }, "🗿", { @@ -6040,6 +6040,7 @@ }, "🪧", { + "value" : "🪧", "keywords" : [ "card", "demonstration", @@ -6049,13 +6050,12 @@ "plaque", "protest", "sign" - ], - "value" : "🪧" + ] } ] }, { - "appleCategory" : "Travel & Places", + "appleCategory" : "travelAndPlaces", "emojis" : [ "🌍", { @@ -6072,17 +6072,18 @@ }, "🌎", { - "value" : "🌎", "keywords" : [ "Americas", "earth", "globe", "showing", "world" - ] + ], + "value" : "🌎" }, "🌏", { + "value" : "🌏", "keywords" : [ "Asia", "Asia-Australia", @@ -6091,8 +6092,7 @@ "globe", "showing", "world" - ], - "value" : "🌏" + ] }, "🌐", { @@ -6109,11 +6109,11 @@ }, "🗺️", { + "value" : "🗺️", "keywords" : [ "map", "world" - ], - "value" : "🗺️" + ] }, "🗾", { @@ -6125,14 +6125,14 @@ }, "🧭", { - "value" : "🧭", "keywords" : [ "compass", "direction", "magnetic", "navigation", "orienteering" - ] + ], + "value" : "🧭" }, "🏔️", { @@ -6153,13 +6153,13 @@ }, "🌋", { + "value" : "🌋", "keywords" : [ "eruption", "mountain", "nature", "volcano" - ], - "value" : "🌋" + ] }, "🗻", { @@ -6188,10 +6188,10 @@ }, "🏜️", { + "value" : "🏜️", "keywords" : [ "desert" - ], - "value" : "🏜️" + ] }, "🏝️", { @@ -6203,11 +6203,11 @@ }, "🏞️", { + "value" : "🏞️", "keywords" : [ "national", "park" - ], - "value" : "🏞️" + ] }, "🏟️", { @@ -6235,18 +6235,17 @@ }, "🧱", { + "value" : "🧱", "keywords" : [ "brick", "bricks", "clay", "mortar", "wall" - ], - "value" : "🧱" + ] }, "🪨", { - "value" : "🪨", "keywords" : [ "boulder", "heavy", @@ -6254,17 +6253,18 @@ "solid", "stone", "tough" - ] + ], + "value" : "🪨" }, "🪵", { + "value" : "🪵", "keywords" : [ "log", "lumber", "timber", "wood" - ], - "value" : "🪵" + ] }, "🛖", { @@ -6280,11 +6280,11 @@ }, "🏘️", { + "value" : "🏘️", "keywords" : [ "house", "houses" - ], - "value" : "🏘️" + ] }, "🏚️", { @@ -6314,7 +6314,6 @@ }, "🏡", { - "value" : "🏡", "keywords" : [ "building", "country", @@ -6328,28 +6327,29 @@ "suburban", "suburbia", "where" - ] + ], + "value" : "🏡" }, "🏢", { + "value" : "🏢", "keywords" : [ "building", "city", "cubical", "job", "office" - ], - "value" : "🏢" + ] }, "🏣", { - "value" : "🏣", "keywords" : [ "building", "Japanese", "office", "post" - ] + ], + "value" : "🏣" }, "🏤", { @@ -6363,29 +6363,29 @@ }, "🏥", { - "value" : "🏥", "keywords" : [ "building", "doctor", "hospital", "medicine" - ] + ], + "value" : "🏥" }, "🏦", { - "value" : "🏦", "keywords" : [ "bank", "building" - ] + ], + "value" : "🏦" }, "🏨", { - "value" : "🏨", "keywords" : [ "building", "hotel" - ] + ], + "value" : "🏨" }, "🏩", { @@ -6409,11 +6409,11 @@ }, "🏫", { - "value" : "🏫", "keywords" : [ "building", "school" - ] + ], + "value" : "🏫" }, "🏬", { @@ -6443,23 +6443,23 @@ }, "🏰", { - "value" : "🏰", "keywords" : [ "building", "castle", "European" - ] + ], + "value" : "🏰" }, "💒", { - "value" : "💒", "keywords" : [ "chapel", "hitched", "nuptials", "romance", "wedding" - ] + ], + "value" : "💒" }, "🗼", { @@ -6508,11 +6508,11 @@ }, "🛕", { - "value" : "🛕", "keywords" : [ "hindu", "temple" - ] + ], + "value" : "🛕" }, "🕍", { @@ -6528,15 +6528,16 @@ }, "⛩️", { + "value" : "⛩️", "keywords" : [ "religion", "shinto", "shrine" - ], - "value" : "⛩️" + ] }, "🕋", { + "value" : "🕋", "keywords" : [ "hajj", "islam", @@ -6544,15 +6545,14 @@ "Muslim", "religion", "umrah" - ], - "value" : "🕋" + ] }, "⛲", { + "value" : "⛲", "keywords" : [ "fountain" - ], - "value" : "⛲" + ] }, "⛺", { @@ -6572,12 +6572,12 @@ }, "🌃", { - "value" : "🌃", "keywords" : [ "night", "star", "stars" - ] + ], + "value" : "🌃" }, "🏙️", { @@ -6589,27 +6589,28 @@ }, "🌄", { + "value" : "🌄", "keywords" : [ "morning", "mountains", "over", "sun", "sunrise" - ], - "value" : "🌄" + ] }, "🌅", { - "value" : "🌅", "keywords" : [ "morning", "nature", "sun", "sunrise" - ] + ], + "value" : "🌅" }, "🌆", { + "value" : "🌆", "keywords" : [ "at", "building", @@ -6620,37 +6621,36 @@ "landscape", "sun", "sunset" - ], - "value" : "🌆" + ] }, "🌇", { + "value" : "🌇", "keywords" : [ "building", "dusk", "sun", "sunset" - ], - "value" : "🌇" + ] }, "🌉", { + "value" : "🌉", "keywords" : [ "at", "bridge", "night" - ], - "value" : "🌉" + ] }, "♨️", { - "value" : "♨️", "keywords" : [ "hot", "hotsprings", "springs", "steaming" - ] + ], + "value" : "♨️" }, "🎠", { @@ -6697,14 +6697,15 @@ }, "🎪", { - "value" : "🎪", "keywords" : [ "circus", "tent" - ] + ], + "value" : "🎪" }, "🚂", { + "value" : "🚂", "keywords" : [ "caboose", "engine", @@ -6714,12 +6715,10 @@ "train", "trains", "travel" - ], - "value" : "🚂" + ] }, "🚃", { - "value" : "🚃", "keywords" : [ "car", "electric", @@ -6728,7 +6727,8 @@ "tram", "travel", "trolleybus" - ] + ], + "value" : "🚃" }, "🚄", { @@ -6767,32 +6767,32 @@ }, "🚇", { - "value" : "🚇", "keywords" : [ "metro", "subway", "travel" - ] + ], + "value" : "🚇" }, "🚈", { + "value" : "🚈", "keywords" : [ "arrived", "light", "monorail", "rail", "railway" - ], - "value" : "🚈" + ] }, "🚉", { + "value" : "🚉", "keywords" : [ "railway", "station", "train" - ], - "value" : "🚉" + ] }, "🚊", { @@ -6842,22 +6842,22 @@ }, "🚍", { + "value" : "🚍", "keywords" : [ "bus", "cars", "oncoming" - ], - "value" : "🚍" + ] }, "🚎", { - "value" : "🚎", "keywords" : [ "bus", "tram", "trolley", "trolleybus" - ] + ], + "value" : "🚎" }, "🚐", { @@ -6872,21 +6872,21 @@ }, "🚑", { - "value" : "🚑", "keywords" : [ "ambulance", "emergency", "vehicle" - ] + ], + "value" : "🚑" }, "🚒", { - "value" : "🚒", "keywords" : [ "engine", "fire", "truck" - ] + ], + "value" : "🚒" }, "🚓", { @@ -6901,16 +6901,15 @@ }, "🚔", { + "value" : "🚔", "keywords" : [ "car", "oncoming", "police" - ], - "value" : "🚔" + ] }, "🚕", { - "value" : "🚕", "keywords" : [ "cab", "cabbie", @@ -6919,7 +6918,8 @@ "taxi", "vehicle", "yellow" - ] + ], + "value" : "🚕" }, "🚖", { @@ -6937,13 +6937,13 @@ }, "🚗", { - "value" : "🚗", "keywords" : [ "automobile", "car", "driving", "vehicle" - ] + ], + "value" : "🚗" }, "🚘", { @@ -6959,6 +6959,7 @@ }, "🚙", { + "value" : "🚙", "keywords" : [ "car", "drive", @@ -6967,11 +6968,11 @@ "sportutility", "utility", "vehicle" - ], - "value" : "🚙" + ] }, "🛻", { + "value" : "🛻", "keywords" : [ "automobile", "car", @@ -6980,8 +6981,7 @@ "pickup", "transportation", "truck" - ], - "value" : "🛻" + ] }, "🚚", { @@ -7010,11 +7010,11 @@ }, "🚜", { + "value" : "🚜", "keywords" : [ "tractor", "vehicle" - ], - "value" : "🚜" + ] }, "🏎️", { @@ -7052,21 +7052,21 @@ }, "🦼", { - "value" : "🦼", "keywords" : [ "accessibility", "motorized", "wheelchair" - ] + ], + "value" : "🦼" }, "🛺", { + "value" : "🛺", "keywords" : [ "auto", "rickshaw", "tuk" - ], - "value" : "🛺" + ] }, "🚲", { @@ -7086,22 +7086,22 @@ }, "🛴", { + "value" : "🛴", "keywords" : [ "kick", "scooter" - ], - "value" : "🛴" + ] }, "🛹", { + "value" : "🛹", "keywords" : [ "board", "skate", "skateboard", "skater", "wheels" - ], - "value" : "🛹" + ] }, "🛼", { @@ -7134,23 +7134,24 @@ }, "🛤️", { - "value" : "🛤️", "keywords" : [ "railway", "track", "train" - ] + ], + "value" : "🛤️" }, "🛢️", { + "value" : "🛢️", "keywords" : [ "drum", "oil" - ], - "value" : "🛢️" + ] }, "⛽", { + "value" : "⛽", "keywords" : [ "diesel", "fuel", @@ -7159,12 +7160,10 @@ "gasoline", "pump", "station" - ], - "value" : "⛽" + ] }, "🚨", { - "value" : "🚨", "keywords" : [ "alarm", "alert", @@ -7175,7 +7174,8 @@ "police", "revolving", "siren" - ] + ], + "value" : "🚨" }, "🚥", { @@ -7206,29 +7206,29 @@ }, "🛑", { - "value" : "🛑", "keywords" : [ "octagonal", "sign", "stop" - ] + ], + "value" : "🛑" }, "🚧", { - "value" : "🚧", "keywords" : [ "barrier", "construction" - ] + ], + "value" : "🚧" }, "⚓", { + "value" : "⚓", "keywords" : [ "anchor", "ship", "tool" - ], - "value" : "⚓" + ] }, "⛵", { @@ -7244,11 +7244,11 @@ }, "🛶", { + "value" : "🛶", "keywords" : [ "boat", "canoe" - ], - "value" : "🛶" + ] }, "🚤", { @@ -7274,12 +7274,12 @@ }, "⛴️", { + "value" : "⛴️", "keywords" : [ "boat", "ferry", "passenger" - ], - "value" : "⛴️" + ] }, "🛥️", { @@ -7302,6 +7302,7 @@ }, "✈️", { + "value" : "✈️", "keywords" : [ "aeroplane", "airplane", @@ -7310,8 +7311,7 @@ "jet", "plane", "travel" - ], - "value" : "✈️" + ] }, "🛩️", { @@ -7325,6 +7325,7 @@ }, "🛫", { + "value" : "🛫", "keywords" : [ "aeroplane", "airplane", @@ -7332,11 +7333,11 @@ "departure", "departures", "plane" - ], - "value" : "🛫" + ] }, "🛬", { + "value" : "🛬", "keywords" : [ "aeroplane", "airplane", @@ -7345,8 +7346,7 @@ "arriving", "landing", "plane" - ], - "value" : "🛬" + ] }, "🪂", { @@ -7360,11 +7360,11 @@ }, "💺", { + "value" : "💺", "keywords" : [ "chair", "seat" - ], - "value" : "💺" + ] }, "🚁", { @@ -7411,11 +7411,11 @@ }, "🛰️", { + "value" : "🛰️", "keywords" : [ "satellite", "space" - ], - "value" : "🛰️" + ] }, "🚀", { @@ -7451,7 +7451,6 @@ }, "🧳", { - "value" : "🧳", "keywords" : [ "bag", "luggage", @@ -7459,7 +7458,8 @@ "roller", "suitcase", "travel" - ] + ], + "value" : "🧳" }, "⌛", { @@ -7489,15 +7489,16 @@ }, "⌚", { - "value" : "⌚", "keywords" : [ "clock", "time", "watch" - ] + ], + "value" : "⌚" }, "⏰", { + "value" : "⏰", "keywords" : [ "alarm", "clock", @@ -7506,8 +7507,7 @@ "late", "time", "waiting" - ], - "value" : "⏰" + ] }, "⏱️", { @@ -7537,6 +7537,7 @@ }, "🕛", { + "value" : "🕛", "keywords" : [ "12", "12:00", @@ -7544,12 +7545,10 @@ "o’clock", "time", "twelve" - ], - "value" : "🕛" + ] }, "🕧", { - "value" : "🕧", "keywords" : [ "12", "12:30", @@ -7559,7 +7558,8 @@ "time", "twelve", "twelve-thirty" - ] + ], + "value" : "🕧" }, "🕐", { @@ -7589,7 +7589,6 @@ }, "🕑", { - "value" : "🕑", "keywords" : [ "2", "2:00", @@ -7597,11 +7596,11 @@ "o’clock", "time", "two" - ] + ], + "value" : "🕑" }, "🕝", { - "value" : "🕝", "keywords" : [ "2", "2:30", @@ -7611,11 +7610,11 @@ "time", "two", "two-thirty" - ] + ], + "value" : "🕝" }, "🕒", { - "value" : "🕒", "keywords" : [ "3", "3:00", @@ -7623,11 +7622,11 @@ "o’clock", "three", "time" - ] + ], + "value" : "🕒" }, "🕞", { - "value" : "🕞", "keywords" : [ "3", "3:30", @@ -7637,7 +7636,8 @@ "three", "three-thirty", "time" - ] + ], + "value" : "🕞" }, "🕓", { @@ -7693,7 +7693,6 @@ }, "🕕", { - "value" : "🕕", "keywords" : [ "6", "6:00", @@ -7701,7 +7700,8 @@ "o’clock", "six", "time" - ] + ], + "value" : "🕕" }, "🕡", { @@ -7718,7 +7718,6 @@ }, "🕖", { - "value" : "🕖", "keywords" : [ "0", "7", @@ -7726,11 +7725,11 @@ "clock", "o’clock", "seven" - ] + ], + "value" : "🕖" }, "🕢", { - "value" : "🕢", "keywords" : [ "30", "7", @@ -7739,7 +7738,8 @@ "seven", "seven-thirty", "thirty" - ] + ], + "value" : "🕢" }, "🕗", { @@ -7755,6 +7755,7 @@ }, "🕣", { + "value" : "🕣", "keywords" : [ "30", "8", @@ -7764,8 +7765,7 @@ "eight-thirty", "thirty", "time" - ], - "value" : "🕣" + ] }, "🕘", { @@ -7781,7 +7781,6 @@ }, "🕤", { - "value" : "🕤", "keywords" : [ "30", "9", @@ -7791,7 +7790,8 @@ "nine-thirty", "thirty", "time" - ] + ], + "value" : "🕤" }, "🕙", { @@ -7821,7 +7821,6 @@ }, "🕚", { - "value" : "🕚", "keywords" : [ "11", "11:00", @@ -7829,7 +7828,8 @@ "eleven", "o’clock", "time" - ] + ], + "value" : "🕚" }, "🕦", { @@ -7847,34 +7847,34 @@ }, "🌑", { + "value" : "🌑", "keywords" : [ "dark", "moon", "new", "space" - ], - "value" : "🌑" + ] }, "🌒", { - "value" : "🌒", "keywords" : [ "crescent", "dreams", "moon", "space", "waxing" - ] + ], + "value" : "🌒" }, "🌓", { - "value" : "🌓", "keywords" : [ "first", "moon", "quarter", "space" - ] + ], + "value" : "🌓" }, "🌔", { @@ -7897,43 +7897,43 @@ }, "🌖", { + "value" : "🌖", "keywords" : [ "gibbous", "moon", "space", "waning" - ], - "value" : "🌖" + ] }, "🌗", { + "value" : "🌗", "keywords" : [ "last", "moon", "quarter", "space" - ], - "value" : "🌗" + ] }, "🌘", { - "value" : "🌘", "keywords" : [ "crescent", "moon", "space", "waning" - ] + ], + "value" : "🌘" }, "🌙", { + "value" : "🌙", "keywords" : [ "crescent", "moon", "ramadan", "space" - ], - "value" : "🌙" + ] }, "🌚", { @@ -7969,11 +7969,11 @@ }, "🌡️", { - "value" : "🌡️", "keywords" : [ "thermometer", "weather" - ] + ], + "value" : "🌡️" }, "☀️", { @@ -8025,14 +8025,14 @@ }, "⭐", { - "value" : "⭐", "keywords" : [ "astronomy", "medium", "star", "stars", "white" - ] + ], + "value" : "⭐" }, "🌟", { @@ -8061,42 +8061,42 @@ }, "🌌", { - "value" : "🌌", "keywords" : [ "milky", "space", "way" - ] + ], + "value" : "🌌" }, "☁️", { - "value" : "☁️", "keywords" : [ "cloud", "weather" - ] + ], + "value" : "☁️" }, "⛅", { - "value" : "⛅", "keywords" : [ "behind", "cloud", "cloudy", "sun", "weather" - ] + ], + "value" : "⛅" }, "⛈️", { - "value" : "⛈️", "keywords" : [ "cloud", "lightning", "rain", "thunder", "thunderstorm" - ] + ], + "value" : "⛈️" }, "🌤️", { @@ -8140,13 +8140,13 @@ }, "🌨️", { - "value" : "🌨️", "keywords" : [ "cloud", "cold", "snow", "weather" - ] + ], + "value" : "🌨️" }, "🌩️", { @@ -8159,13 +8159,13 @@ }, "🌪️", { + "value" : "🌪️", "keywords" : [ "cloud", "tornado", "weather", "whirlwind" - ], - "value" : "🌪️" + ] }, "🌫️", { @@ -8178,13 +8178,13 @@ }, "🌬️", { - "value" : "🌬️", "keywords" : [ "blow", "cloud", "face", "wind" - ] + ], + "value" : "🌬️" }, "🌀", { @@ -8200,7 +8200,6 @@ }, "🌈", { - "value" : "🌈", "keywords" : [ "gay", "genderqueer", @@ -8218,7 +8217,8 @@ "trans", "transgender", "weather" - ] + ], + "value" : "🌈" }, "🌂", { @@ -8363,6 +8363,7 @@ }, { "name" : "Symbols", + "appleCategory" : "symbols", "emojis" : [ "🏧", { @@ -8379,13 +8380,13 @@ }, "🚮", { + "value" : "🚮", "keywords" : [ "bin", "litter", "litterbin", "sign" - ], - "value" : "🚮" + ] }, "🚰", { @@ -8436,27 +8437,26 @@ }, "🚻", { - "value" : "🚻", "keywords" : [ "bathroom", "lavatory", "restroom", "toilet", "WC" - ] + ], + "value" : "🚻" }, "🚼", { + "value" : "🚼", "keywords" : [ "baby", "changing", "symbol" - ], - "value" : "🚼" + ] }, "🚾", { - "value" : "🚾", "keywords" : [ "bathroom", "closet", @@ -8465,15 +8465,16 @@ "toilet", "water", "WC" - ] + ], + "value" : "🚾" }, "🛂", { + "value" : "🛂", "keywords" : [ "control", "passport" - ], - "value" : "🛂" + ] }, "🛃", { @@ -8485,7 +8486,6 @@ }, "🛄", { - "value" : "🛄", "keywords" : [ "arrived", "baggage", @@ -8499,18 +8499,19 @@ "ready", "travel", "trip" - ] + ], + "value" : "🛄" }, "🛅", { + "value" : "🛅", "keywords" : [ "baggage", "case", "left", "locker", "luggage" - ], - "value" : "🛅" + ] }, "⚠️", { @@ -8560,7 +8561,6 @@ }, "🚳", { - "value" : "🚳", "keywords" : [ "bicycle", "bicycles", @@ -8569,11 +8569,11 @@ "no", "not", "prohibited" - ] + ], + "value" : "🚳" }, "🚭", { - "value" : "🚭", "keywords" : [ "forbidden", "no", @@ -8581,7 +8581,8 @@ "prohibited", "smoke", "smoking" - ] + ], + "value" : "🚭" }, "🚯", { @@ -8620,7 +8621,6 @@ }, "📵", { - "value" : "📵", "keywords" : [ "cell", "forbidden", @@ -8631,10 +8631,12 @@ "phones", "prohibited", "telephone" - ] + ], + "value" : "📵" }, "🔞", { + "value" : "🔞", "keywords" : [ "18", "age", @@ -8646,16 +8648,15 @@ "prohibited", "restriction", "underage" - ], - "value" : "🔞" + ] }, "☢️", { - "value" : "☢️", "keywords" : [ "radioactive", "sign" - ] + ], + "value" : "☢️" }, "☣️", { @@ -8678,47 +8679,47 @@ }, "↗️", { + "value" : "↗️", "keywords" : [ "arrow", "direction", "intercardinal", "northeast", "up-right" - ], - "value" : "↗️" + ] }, "➡️", { - "value" : "➡️", "keywords" : [ "arrow", "cardinal", "direction", "east", "right" - ] + ], + "value" : "➡️" }, "↘️", { - "value" : "↘️", "keywords" : [ "arrow", "direction", "down-right", "intercardinal", "southeast" - ] + ], + "value" : "↘️" }, "⬇️", { - "value" : "⬇️", "keywords" : [ "arrow", "cardinal", "direction", "down", "south" - ] + ], + "value" : "⬇️" }, "↙️", { @@ -8755,11 +8756,11 @@ }, "↕️", { + "value" : "↕️", "keywords" : [ "arrow", "up-down" - ], - "value" : "↕️" + ] }, "↔️", { @@ -8781,23 +8782,23 @@ }, "↪️", { + "value" : "↪️", "keywords" : [ "arrow", "curving", "left", "right" - ], - "value" : "↪️" + ] }, "⤴️", { + "value" : "⤴️", "keywords" : [ "arrow", "curving", "right", "up" - ], - "value" : "⤴️" + ] }, "⤵️", { @@ -8811,6 +8812,7 @@ }, "🔃", { + "value" : "🔃", "keywords" : [ "arrow", "arrows", @@ -8818,12 +8820,10 @@ "refresh", "reload", "vertical" - ], - "value" : "🔃" + ] }, "🔄", { - "value" : "🔄", "keywords" : [ "again", "anticlockwise", @@ -8835,52 +8835,53 @@ "vu", "refresh", "rewindershins" - ] + ], + "value" : "🔄" }, "🔙", { + "value" : "🔙", "keywords" : [ "arrow", "BACK" - ], - "value" : "🔙" + ] }, "🔚", { + "value" : "🔚", "keywords" : [ "arrow", "END" - ], - "value" : "🔚" + ] }, "🔛", { + "value" : "🔛", "keywords" : [ "arrow", "mark", "ON!" - ], - "value" : "🔛" + ] }, "🔜", { - "value" : "🔜", "keywords" : [ "arrow", "brb", "omw", "SOON" - ] + ], + "value" : "🔜" }, "🔝", { - "value" : "🔝", "keywords" : [ "arrow", "homie", "TOP", "up" - ] + ], + "value" : "🔝" }, "🛐", { @@ -8934,6 +8935,7 @@ }, "☯️", { + "value" : "☯️", "keywords" : [ "difficult", "lives", @@ -8944,8 +8946,7 @@ "yang", "yin", "yinyang" - ], - "value" : "☯️" + ] }, "✝️", { @@ -8970,7 +8971,6 @@ }, "☪️", { - "value" : "☪️", "keywords" : [ "crescent", "islam", @@ -8978,17 +8978,18 @@ "ramadan", "religion", "star" - ] + ], + "value" : "☪️" }, "☮️", { + "value" : "☮️", "keywords" : [ "healing", "peace", "peaceful", "symbol" - ], - "value" : "☮️" + ] }, "🕎", { @@ -9017,24 +9018,24 @@ }, "♈", { - "value" : "♈", "keywords" : [ "Aries", "horoscope", "ram", "zodiac" - ] + ], + "value" : "♈" }, "♉", { + "value" : "♉", "keywords" : [ "bull", "horoscope", "ox", "Taurus", "zodiac" - ], - "value" : "♉" + ] }, "♊", { @@ -9048,23 +9049,23 @@ }, "♋", { + "value" : "♋", "keywords" : [ "Cancer", "crab", "horoscope", "zodiac" - ], - "value" : "♋" + ] }, "♌", { - "value" : "♌", "keywords" : [ "horoscope", "Leo", "lion", "zodiac" - ] + ], + "value" : "♌" }, "♍", { @@ -9120,14 +9121,14 @@ }, "♒", { + "value" : "♒", "keywords" : [ "Aquarius", "bearer", "horoscope", "water", "zodiac" - ], - "value" : "♒" + ] }, "♓", { @@ -9173,6 +9174,7 @@ }, "🔂", { + "value" : "🔂", "keywords" : [ "arrow", "button", @@ -9180,19 +9182,18 @@ "once", "repeat", "single" - ], - "value" : "🔂" + ] }, "▶️", { - "value" : "▶️", "keywords" : [ "arrow", "button", "play", "right", "triangle" - ] + ], + "value" : "▶️" }, "⏩", { @@ -9208,6 +9209,7 @@ }, "⏭️", { + "value" : "⏭️", "keywords" : [ "arrow", "button", @@ -9215,12 +9217,10 @@ "scene", "track", "triangle" - ], - "value" : "⏭️" + ] }, "⏯️", { - "value" : "⏯️", "keywords" : [ "arrow", "button", @@ -9228,7 +9228,8 @@ "play", "right", "triangle" - ] + ], + "value" : "⏯️" }, "◀️", { @@ -9243,6 +9244,7 @@ }, "⏪", { + "value" : "⏪", "keywords" : [ "arrow", "button", @@ -9250,8 +9252,7 @@ "fast", "reverse", "rewind" - ], - "value" : "⏪" + ] }, "⏮️", { @@ -9279,14 +9280,14 @@ }, "⏫", { - "value" : "⏫", "keywords" : [ "arrow", "button", "double", "fast", "up" - ] + ], + "value" : "⏫" }, "🔽", { @@ -9323,49 +9324,49 @@ }, "⏹️", { + "value" : "⏹️", "keywords" : [ "button", "square", "stop" - ], - "value" : "⏹️" + ] }, "⏺️", { - "value" : "⏺️", "keywords" : [ "button", "circle", "record" - ] + ], + "value" : "⏺️" }, "⏏️", { - "value" : "⏏️", "keywords" : [ "button", "eject" - ] + ], + "value" : "⏏️" }, "🎦", { - "value" : "🎦", "keywords" : [ "camera", "cinema", "film", "movie" - ] + ], + "value" : "🎦" }, "🔅", { - "value" : "🔅", "keywords" : [ "brightness", "button", "dim", "low" - ] + ], + "value" : "🔅" }, "🔆", { @@ -9379,7 +9380,6 @@ }, "📶", { - "value" : "📶", "keywords" : [ "antenna", "bar", @@ -9390,7 +9390,8 @@ "phone", "signal", "telephone" - ] + ], + "value" : "📶" }, "📳", { @@ -9418,12 +9419,12 @@ }, "♀️", { - "value" : "♀️", "keywords" : [ "female", "sign", "woman" - ] + ], + "value" : "♀️" }, "♂️", { @@ -9436,11 +9437,11 @@ }, "⚧️", { + "value" : "⚧️", "keywords" : [ "symbol", "transgender" - ], - "value" : "⚧️" + ] }, "✖️", { @@ -9464,6 +9465,7 @@ }, "➖", { + "value" : "➖", "keywords" : [ "-", "−", @@ -9471,8 +9473,7 @@ "math", "minus", "sign" - ], - "value" : "➖" + ] }, "➗", { @@ -9488,17 +9489,16 @@ }, "♾️", { - "value" : "♾️", "keywords" : [ "forever", "infinity", "unbounded", "universal" - ] + ], + "value" : "♾️" }, "‼️", { - "value" : "‼️", "keywords" : [ "!", "!!", @@ -9507,7 +9507,8 @@ "exclamation", "mark", "punctuation" - ] + ], + "value" : "‼️" }, "⁉️", { @@ -9525,14 +9526,14 @@ }, "❓", { + "value" : "❓", "keywords" : [ "?", "mark", "punctuation", "question", "red" - ], - "value" : "❓" + ] }, "❔", { @@ -9560,33 +9561,33 @@ }, "❗", { + "value" : "❗", "keywords" : [ "!", "exclamation", "mark", "punctuation", "red" - ], - "value" : "❗" + ] }, "〰️", { - "value" : "〰️", "keywords" : [ "dash", "punctuation", "wavy" - ] + ], + "value" : "〰️" }, "💱", { - "value" : "💱", "keywords" : [ "bank", "currency", "exchange", "money" - ] + ], + "value" : "💱" }, "💲", { @@ -9626,15 +9627,14 @@ }, "⚜️", { - "value" : "⚜️", "keywords" : [ "fleur-de-lis", "knights" - ] + ], + "value" : "⚜️" }, "🔱", { - "value" : "🔱", "keywords" : [ "anchor", "emblem", @@ -9642,7 +9642,8 @@ "ship", "tool", "trident" - ] + ], + "value" : "🔱" }, "📛", { @@ -9711,6 +9712,7 @@ }, "✔️", { + "value" : "✔️", "keywords" : [ "✓", "check", @@ -9720,8 +9722,7 @@ "heavy", "mark", "tick" - ], - "value" : "✔️" + ] }, "❌", { @@ -9738,7 +9739,6 @@ }, "❎", { - "value" : "❎", "keywords" : [ "×", "button", @@ -9748,16 +9748,17 @@ "multiply", "square", "x" - ] + ], + "value" : "❎" }, "➰", { + "value" : "➰", "keywords" : [ "curl", "curly", "loop" - ], - "value" : "➰" + ] }, "➿", { @@ -9798,19 +9799,19 @@ }, "❇️", { - "value" : "❇️", "keywords" : [ "*", "sparkle" - ] + ], + "value" : "❇️" }, "©️", { - "value" : "©️", "keywords" : [ "C", "copyright" - ] + ], + "value" : "©️" }, "®️", { @@ -9848,11 +9849,11 @@ }, "0️⃣", { - "value" : "0️⃣", "keywords" : [ "keycap", "keycap: 0" - ] + ], + "value" : "0️⃣" }, "1️⃣", { @@ -9864,27 +9865,27 @@ }, "2️⃣", { - "value" : "2️⃣", "keywords" : [ "keycap", "keycap: 2" - ] + ], + "value" : "2️⃣" }, "3️⃣", { - "value" : "3️⃣", "keywords" : [ "keycap", "keycap: 3" - ] + ], + "value" : "3️⃣" }, "4️⃣", { - "value" : "4️⃣", "keywords" : [ "keycap", "keycap: 4" - ] + ], + "value" : "4️⃣" }, "5️⃣", { @@ -9896,27 +9897,27 @@ }, "6️⃣", { - "value" : "6️⃣", "keywords" : [ "keycap", "keycap: 6" - ] + ], + "value" : "6️⃣" }, "7️⃣", { + "value" : "7️⃣", "keywords" : [ "keycap", "keycap: 7" - ], - "value" : "7️⃣" + ] }, "8️⃣", { - "value" : "8️⃣", "keywords" : [ "keycap", "keycap: 8" - ] + ], + "value" : "8️⃣" }, "9️⃣", { @@ -9928,22 +9929,22 @@ }, "🔟", { - "value" : "🔟", "keywords" : [ "keycap", "keycap: 10" - ] + ], + "value" : "🔟" }, "🔠", { - "value" : "🔠", "keywords" : [ "ABCD", "input", "latin", "letters", "uppercase" - ] + ], + "value" : "🔠" }, "🔡", { @@ -9967,7 +9968,6 @@ }, "🔣", { - "value" : "🔣", "keywords" : [ "&", "%", @@ -9975,7 +9975,8 @@ "〒", "input", "symbols" - ] + ], + "value" : "🔣" }, "🔤", { @@ -10009,13 +10010,13 @@ }, "🅱️", { - "value" : "🅱️", "keywords" : [ "B", "blood", "button", "type" - ] + ], + "value" : "🅱️" }, "🆑", { @@ -10027,11 +10028,11 @@ }, "🆒", { + "value" : "🆒", "keywords" : [ "button", "COOL" - ], - "value" : "🆒" + ] }, "🆓", { @@ -10043,29 +10044,29 @@ }, "ℹ️", { + "value" : "ℹ️", "keywords" : [ "I", "information" - ], - "value" : "ℹ️" + ] }, "🆔", { - "value" : "🆔", "keywords" : [ "button", "ID", "identity" - ] + ], + "value" : "🆔" }, "Ⓜ️", { + "value" : "Ⓜ️", "keywords" : [ "circle", "circled", "M" - ], - "value" : "Ⓜ️" + ] }, "🆕", { @@ -10095,21 +10096,21 @@ }, "🆗", { + "value" : "🆗", "keywords" : [ "button", "OK", "okay" - ], - "value" : "🆗" + ] }, "🅿️", { - "value" : "🅿️", "keywords" : [ "button", "P", "parking" - ] + ], + "value" : "🅿️" }, "🆘", { @@ -10122,13 +10123,13 @@ }, "🆙", { - "value" : "🆙", "keywords" : [ "button", "mark", "UP", "UP!" - ] + ], + "value" : "🆙" }, "🆚", { @@ -10141,38 +10142,39 @@ }, "🈁", { - "value" : "🈁", "keywords" : [ "button", "here", "Japanese", "katakana" - ] + ], + "value" : "🈁" }, "🈂️", { + "value" : "🈂️", "keywords" : [ "button", "charge", "Japanese", "katakana", "service" - ], - "value" : "🈂️" + ] }, "🈷️", { + "value" : "🈷️", "keywords" : [ "amount", "button", "ideograph", "Japanese", "monthly" - ], - "value" : "🈷️" + ] }, "🈶", { + "value" : "🈶", "keywords" : [ "button", "charge", @@ -10180,18 +10182,17 @@ "ideograph", "Japanese", "not" - ], - "value" : "🈶" + ] }, "🈯", { + "value" : "🈯", "keywords" : [ "button", "ideograph", "Japanese", "reserved" - ], - "value" : "🈯" + ] }, "🉐", { @@ -10215,44 +10216,44 @@ }, "🈚", { - "value" : "🈚", "keywords" : [ "button", "charge", "free", "ideograph", "Japanese" - ] + ], + "value" : "🈚" }, "🈲", { - "value" : "🈲", "keywords" : [ "button", "ideograph", "Japanese", "prohibited" - ] + ], + "value" : "🈲" }, "🉑", { - "value" : "🉑", "keywords" : [ "acceptable", "button", "ideograph", "Japanese" - ] + ], + "value" : "🉑" }, "🈸", { + "value" : "🈸", "keywords" : [ "application", "button", "ideograph", "Japanese" - ], - "value" : "🈸" + ] }, "🈴", { @@ -10267,23 +10268,23 @@ }, "🈳", { + "value" : "🈳", "keywords" : [ "button", "ideograph", "Japanese", "vacancy" - ], - "value" : "🈳" + ] }, "㊗️", { + "value" : "㊗️", "keywords" : [ "button", "congratulations", "ideograph", "Japanese" - ], - "value" : "㊗️" + ] }, "㊙️", { @@ -10297,14 +10298,14 @@ }, "🈺", { - "value" : "🈺", "keywords" : [ "business", "button", "ideograph", "Japanese", "open" - ] + ], + "value" : "🈺" }, "🈵", { @@ -10328,19 +10329,19 @@ }, "🟠", { - "value" : "🟠", "keywords" : [ "circle", "orange" - ] + ], + "value" : "🟠" }, "🟡", { - "value" : "🟡", "keywords" : [ "circle", "yellow" - ] + ], + "value" : "🟡" }, "🟢", { @@ -10352,12 +10353,12 @@ }, "🔵", { + "value" : "🔵", "keywords" : [ "blue", "circle", "geometric" - ], - "value" : "🔵" + ] }, "🟣", { @@ -10369,20 +10370,20 @@ }, "🟤", { - "value" : "🟤", "keywords" : [ "brown", "circle" - ] + ], + "value" : "🟤" }, "⚫", { + "value" : "⚫", "keywords" : [ "black", "circle", "geometric" - ], - "value" : "⚫" + ] }, "⚪", { @@ -10395,13 +10396,13 @@ }, "🟥", { + "value" : "🟥", "keywords" : [ "card", "penalty", "red", "square" - ], - "value" : "🟥" + ] }, "🟧", { @@ -10413,29 +10414,29 @@ }, "🟨", { - "value" : "🟨", "keywords" : [ "card", "penalty", "square", "yellow" - ] + ], + "value" : "🟨" }, "🟩", { - "value" : "🟩", "keywords" : [ "green", "square" - ] + ], + "value" : "🟩" }, "🟦", { + "value" : "🟦", "keywords" : [ "blue", "square" - ], - "value" : "🟦" + ] }, "🟪", { @@ -10475,13 +10476,13 @@ }, "◼️", { - "value" : "◼️", "keywords" : [ "black", "geometric", "medium", "square" - ] + ], + "value" : "◼️" }, "◻️", { @@ -10495,33 +10496,33 @@ }, "◾", { - "value" : "◾", "keywords" : [ "black", "geometric", "medium-small", "square" - ] + ], + "value" : "◾" }, "◽", { - "value" : "◽", "keywords" : [ "geometric", "medium-small", "square", "white" - ] + ], + "value" : "◽" }, "▪️", { - "value" : "▪️", "keywords" : [ "black", "geometric", "small", "square" - ] + ], + "value" : "▪️" }, "▫️", { @@ -10555,13 +10556,13 @@ }, "🔸", { - "value" : "🔸", "keywords" : [ "diamond", "geometric", "orange", "small" - ] + ], + "value" : "🔸" }, "🔹", { @@ -10607,23 +10608,23 @@ }, "🔘", { - "value" : "🔘", "keywords" : [ "button", "geometric", "radio" - ] + ], + "value" : "🔘" }, "🔳", { + "value" : "🔳", "keywords" : [ "button", "geometric", "outlined", "square", "white" - ], - "value" : "🔳" + ] }, "🔲", { @@ -10635,15 +10636,14 @@ "square" ] } - ], - "appleCategory" : "Symbols" + ] }, { - "appleCategory" : "Smileys & People", "name" : "People & Body", "emojis" : [ "👋", { + "value" : "👋", "keywords" : [ "bye", "cya", @@ -10661,19 +10661,18 @@ "wave", "yo", "you" - ], - "value" : "👋" + ] }, "👋🏻", { - "value" : "👋🏻", "keywords" : [ "hand", "light skin tone", "wave", "waving", "waving hand: light skin tone" - ] + ], + "value" : "👋🏻" }, "👋🏼", { @@ -10710,24 +10709,24 @@ }, "👋🏿", { - "value" : "👋🏿", "keywords" : [ "dark skin tone", "hand", "wave", "waving", "waving hand: dark skin tone" - ] + ], + "value" : "👋🏿" }, "🤚", { + "value" : "🤚", "keywords" : [ "back", "backhand", "hand", "raised" - ], - "value" : "🤚" + ] }, "🤚🏻", { @@ -10753,14 +10752,14 @@ }, "🤚🏽", { + "value" : "🤚🏽", "keywords" : [ "backhand", "medium skin tone", "raised", "raised back of hand", "raised back of hand: medium skin tone" - ], - "value" : "🤚🏽" + ] }, "🤚🏾", { @@ -10775,14 +10774,14 @@ }, "🤚🏿", { - "value" : "🤚🏿", "keywords" : [ "backhand", "dark skin tone", "raised", "raised back of hand", "raised back of hand: dark skin tone" - ] + ], + "value" : "🤚🏿" }, "🖐️", { @@ -10798,6 +10797,7 @@ }, "🖐🏻", { + "value" : "🖐🏻", "keywords" : [ "finger", "hand", @@ -10805,12 +10805,10 @@ "hand with fingers splayed: light skin tone", "light skin tone", "splayed" - ], - "value" : "🖐🏻" + ] }, "🖐🏼", { - "value" : "🖐🏼", "keywords" : [ "finger", "hand", @@ -10818,11 +10816,11 @@ "hand with fingers splayed: medium-light skin tone", "medium-light skin tone", "splayed" - ] + ], + "value" : "🖐🏼" }, "🖐🏽", { - "value" : "🖐🏽", "keywords" : [ "finger", "hand", @@ -10830,10 +10828,12 @@ "hand with fingers splayed: medium skin tone", "medium skin tone", "splayed" - ] + ], + "value" : "🖐🏽" }, "🖐🏾", { + "value" : "🖐🏾", "keywords" : [ "finger", "hand", @@ -10841,8 +10841,7 @@ "hand with fingers splayed: medium-dark skin tone", "medium-dark skin tone", "splayed" - ], - "value" : "🖐🏾" + ] }, "🖐🏿", { @@ -10870,7 +10869,6 @@ }, "✋🏻", { - "value" : "✋🏻", "keywords" : [ "hand", "high 5", @@ -10878,10 +10876,12 @@ "light skin tone", "raised hand", "raised hand: light skin tone" - ] + ], + "value" : "✋🏻" }, "✋🏼", { + "value" : "✋🏼", "keywords" : [ "hand", "high 5", @@ -10889,11 +10889,11 @@ "medium-light skin tone", "raised hand", "raised hand: medium-light skin tone" - ], - "value" : "✋🏼" + ] }, "✋🏽", { + "value" : "✋🏽", "keywords" : [ "hand", "high 5", @@ -10901,12 +10901,10 @@ "medium skin tone", "raised hand", "raised hand: medium skin tone" - ], - "value" : "✋🏽" + ] }, "✋🏾", { - "value" : "✋🏾", "keywords" : [ "hand", "high 5", @@ -10914,7 +10912,8 @@ "medium-dark skin tone", "raised hand", "raised hand: medium-dark skin tone" - ] + ], + "value" : "✋🏾" }, "✋🏿", { @@ -10930,13 +10929,13 @@ }, "🖖", { + "value" : "🖖", "keywords" : [ "finger", "hand", "hands", "salute" - ], - "value" : "🖖" + ] }, "🖖🏻", { @@ -10953,7 +10952,6 @@ }, "🖖🏼", { - "value" : "🖖🏼", "keywords" : [ "finger", "hand", @@ -10962,7 +10960,8 @@ "vulcan", "vulcan salute", "vulcan salute: medium-light skin tone" - ] + ], + "value" : "🖖🏼" }, "🖖🏽", { @@ -11005,7 +11004,6 @@ }, "👌", { - "value" : "👌", "keywords" : [ "awesome", "bet", @@ -11023,27 +11021,28 @@ "sure", "sweet", "three" - ] + ], + "value" : "👌" }, "👌🏻", { - "value" : "👌🏻", "keywords" : [ "hand", "light skin tone", "OK", "OK hand: light skin tone" - ] + ], + "value" : "👌🏻" }, "👌🏼", { - "value" : "👌🏼", "keywords" : [ "hand", "medium-light skin tone", "OK", "OK hand: medium-light skin tone" - ] + ], + "value" : "👌🏼" }, "👌🏽", { @@ -11057,13 +11056,13 @@ }, "👌🏾", { + "value" : "👌🏾", "keywords" : [ "hand", "medium-dark skin tone", "OK", "OK hand: medium-dark skin tone" - ], - "value" : "👌🏾" + ] }, "👌🏿", { @@ -11096,6 +11095,7 @@ }, "🤌🏻", { + "value" : "🤌🏻", "keywords" : [ "fingers", "hand gesture", @@ -11104,8 +11104,7 @@ "pinched", "pinched fingers: light skin tone", "sarcastic" - ], - "value" : "🤌🏻" + ] }, "🤌🏼", { @@ -11161,6 +11160,7 @@ }, "🤏", { + "value" : "🤏", "keywords" : [ "amount", "bit", @@ -11170,18 +11170,17 @@ "pinching", "small", "sort" - ], - "value" : "🤏" + ] }, "🤏🏻", { + "value" : "🤏🏻", "keywords" : [ "light skin tone", "pinching hand", "pinching hand: light skin tone", "small amount" - ], - "value" : "🤏🏻" + ] }, "🤏🏼", { @@ -11195,33 +11194,33 @@ }, "🤏🏽", { - "value" : "🤏🏽", "keywords" : [ "medium skin tone", "pinching hand", "pinching hand: medium skin tone", "small amount" - ] + ], + "value" : "🤏🏽" }, "🤏🏾", { + "value" : "🤏🏾", "keywords" : [ "medium-dark skin tone", "pinching hand", "pinching hand: medium-dark skin tone", "small amount" - ], - "value" : "🤏🏾" + ] }, "🤏🏿", { - "value" : "🤏🏿", "keywords" : [ "dark skin tone", "pinching hand", "pinching hand: dark skin tone", "small amount" - ] + ], + "value" : "🤏🏿" }, "✌️", { @@ -11257,14 +11256,14 @@ }, "✌🏽", { - "value" : "✌🏽", "keywords" : [ "hand", "medium skin tone", "v", "victory", "victory hand: medium skin tone" - ] + ], + "value" : "✌🏽" }, "✌🏾", { @@ -11279,17 +11278,18 @@ }, "✌🏿", { + "value" : "✌🏿", "keywords" : [ "dark skin tone", "hand", "v", "victory", "victory hand: dark skin tone" - ], - "value" : "✌🏿" + ] }, "🤞", { + "value" : "🤞", "keywords" : [ "cross", "crossed", @@ -11297,8 +11297,7 @@ "fingers", "hand", "luck" - ], - "value" : "🤞" + ] }, "🤞🏻", { @@ -11315,6 +11314,7 @@ }, "🤞🏼", { + "value" : "🤞🏼", "keywords" : [ "cross", "crossed fingers", @@ -11323,12 +11323,10 @@ "hand", "luck", "medium-light skin tone" - ], - "value" : "🤞🏼" + ] }, "🤞🏽", { - "value" : "🤞🏽", "keywords" : [ "cross", "crossed fingers", @@ -11337,7 +11335,8 @@ "hand", "luck", "medium skin tone" - ] + ], + "value" : "🤞🏽" }, "🤞🏾", { @@ -11354,7 +11353,6 @@ }, "🤞🏿", { - "value" : "🤞🏿", "keywords" : [ "cross", "crossed fingers", @@ -11363,7 +11361,8 @@ "finger", "hand", "luck" - ] + ], + "value" : "🤞🏿" }, "🤟", { @@ -11381,14 +11380,14 @@ }, "🤟🏻", { + "value" : "🤟🏻", "keywords" : [ "hand", "ILY", "light skin tone", "love-you gesture", "love-you gesture: light skin tone" - ], - "value" : "🤟🏻" + ] }, "🤟🏼", { @@ -11447,6 +11446,7 @@ }, "🤘🏻", { + "value" : "🤘🏻", "keywords" : [ "finger", "hand", @@ -11455,12 +11455,10 @@ "rock-on", "sign of the horns", "sign of the horns: light skin tone" - ], - "value" : "🤘🏻" + ] }, "🤘🏼", { - "value" : "🤘🏼", "keywords" : [ "finger", "hand", @@ -11469,11 +11467,11 @@ "rock-on", "sign of the horns", "sign of the horns: medium-light skin tone" - ] + ], + "value" : "🤘🏼" }, "🤘🏽", { - "value" : "🤘🏽", "keywords" : [ "finger", "hand", @@ -11482,11 +11480,11 @@ "rock-on", "sign of the horns", "sign of the horns: medium skin tone" - ] + ], + "value" : "🤘🏽" }, "🤘🏾", { - "value" : "🤘🏾", "keywords" : [ "finger", "hand", @@ -11495,10 +11493,12 @@ "rock-on", "sign of the horns", "sign of the horns: medium-dark skin tone" - ] + ], + "value" : "🤘🏾" }, "🤘🏿", { + "value" : "🤘🏿", "keywords" : [ "dark skin tone", "finger", @@ -11507,11 +11507,11 @@ "rock-on", "sign of the horns", "sign of the horns: dark skin tone" - ], - "value" : "🤘🏿" + ] }, "🤙", { + "value" : "🤙", "keywords" : [ "call", "hand", @@ -11519,8 +11519,7 @@ "loose", "me", "Shaka" - ], - "value" : "🤙" + ] }, "🤙🏻", { @@ -11537,7 +11536,6 @@ }, "🤙🏼", { - "value" : "🤙🏼", "keywords" : [ "call", "call me hand", @@ -11546,7 +11544,8 @@ "hang loose", "medium-light skin tone", "Shaka" - ] + ], + "value" : "🤙🏼" }, "🤙🏽", { @@ -11576,6 +11575,7 @@ }, "🤙🏿", { + "value" : "🤙🏿", "keywords" : [ "call", "call me hand", @@ -11584,8 +11584,7 @@ "hand", "hang loose", "Shaka" - ], - "value" : "🤙🏿" + ] }, "👈", { @@ -11630,7 +11629,6 @@ }, "👈🏽", { - "value" : "👈🏽", "keywords" : [ "backhand", "backhand index pointing left", @@ -11640,7 +11638,8 @@ "index", "medium skin tone", "point" - ] + ], + "value" : "👈🏽" }, "👈🏾", { @@ -11658,6 +11657,7 @@ }, "👈🏿", { + "value" : "👈🏿", "keywords" : [ "backhand", "backhand index pointing left", @@ -11667,12 +11667,10 @@ "hand", "index", "point" - ], - "value" : "👈🏿" + ] }, "👉", { - "value" : "👉", "keywords" : [ "backhand", "finger", @@ -11681,7 +11679,8 @@ "point", "pointing", "right" - ] + ], + "value" : "👉" }, "👉🏻", { @@ -11699,6 +11698,7 @@ }, "👉🏼", { + "value" : "👉🏼", "keywords" : [ "backhand", "backhand index pointing right", @@ -11708,8 +11708,7 @@ "index", "medium-light skin tone", "point" - ], - "value" : "👉🏼" + ] }, "👉🏽", { @@ -11727,7 +11726,6 @@ }, "👉🏾", { - "value" : "👉🏾", "keywords" : [ "backhand", "backhand index pointing right", @@ -11737,11 +11735,11 @@ "index", "medium-dark skin tone", "point" - ] + ], + "value" : "👉🏾" }, "👉🏿", { - "value" : "👉🏿", "keywords" : [ "backhand", "backhand index pointing right", @@ -11751,10 +11749,12 @@ "hand", "index", "point" - ] + ], + "value" : "👉🏿" }, "👆", { + "value" : "👆", "keywords" : [ "backhand", "finger", @@ -11763,8 +11763,7 @@ "point", "pointing", "up" - ], - "value" : "👆" + ] }, "👆🏻", { @@ -11796,6 +11795,7 @@ }, "👆🏽", { + "value" : "👆🏽", "keywords" : [ "backhand", "backhand index pointing up", @@ -11805,11 +11805,11 @@ "medium skin tone", "point", "up" - ], - "value" : "👆🏽" + ] }, "👆🏾", { + "value" : "👆🏾", "keywords" : [ "backhand", "backhand index pointing up", @@ -11819,11 +11819,11 @@ "medium-dark skin tone", "point", "up" - ], - "value" : "👆🏾" + ] }, "👆🏿", { + "value" : "👆🏿", "keywords" : [ "backhand", "backhand index pointing up", @@ -11833,28 +11833,27 @@ "hand", "point", "up" - ], - "value" : "👆🏿" + ] }, "🖕", { - "value" : "🖕", "keywords" : [ "finger", "hand", "middle" - ] + ], + "value" : "🖕" }, "🖕🏻", { - "value" : "🖕🏻", "keywords" : [ "finger", "hand", "light skin tone", "middle finger", "middle finger: light skin tone" - ] + ], + "value" : "🖕🏻" }, "🖕🏼", { @@ -11869,25 +11868,25 @@ }, "🖕🏽", { + "value" : "🖕🏽", "keywords" : [ "finger", "hand", "medium skin tone", "middle finger", "middle finger: medium skin tone" - ], - "value" : "🖕🏽" + ] }, "🖕🏾", { - "value" : "🖕🏾", "keywords" : [ "finger", "hand", "medium-dark skin tone", "middle finger", "middle finger: medium-dark skin tone" - ] + ], + "value" : "🖕🏾" }, "🖕🏿", { @@ -11929,7 +11928,6 @@ }, "👇🏼", { - "value" : "👇🏼", "keywords" : [ "backhand", "backhand index pointing down", @@ -11939,7 +11937,8 @@ "hand", "medium-light skin tone", "point" - ] + ], + "value" : "👇🏼" }, "👇🏽", { @@ -11957,6 +11956,7 @@ }, "👇🏾", { + "value" : "👇🏾", "keywords" : [ "backhand", "backhand index pointing down", @@ -11966,12 +11966,10 @@ "hand", "medium-dark skin tone", "point" - ], - "value" : "👇🏾" + ] }, "👇🏿", { - "value" : "👇🏿", "keywords" : [ "backhand", "backhand index pointing down", @@ -11981,11 +11979,11 @@ "finger", "hand", "point" - ] + ], + "value" : "👇🏿" }, "☝️", { - "value" : "☝️", "keywords" : [ "finger", "hand", @@ -11994,7 +11992,8 @@ "pointing", "this", "up" - ] + ], + "value" : "☝️" }, "☝🏻", { @@ -12094,6 +12093,7 @@ }, "👍🏼", { + "value" : "👍🏼", "keywords" : [ "+1", "hand", @@ -12102,8 +12102,7 @@ "thumbs up", "thumbs up: medium-light skin tone", "up" - ], - "value" : "👍🏼" + ] }, "👍🏽", { @@ -12133,6 +12132,7 @@ }, "👍🏿", { + "value" : "👍🏿", "keywords" : [ "+1", "dark skin tone", @@ -12141,12 +12141,10 @@ "thumbs up", "thumbs up: dark skin tone", "up" - ], - "value" : "👍🏿" + ] }, "👎", { - "value" : "👎", "keywords" : [ "-1", "bad", @@ -12158,10 +12156,12 @@ "nope", "thumb", "thumbs" - ] + ], + "value" : "👎" }, "👎🏻", { + "value" : "👎🏻", "keywords" : [ "-1", "down", @@ -12170,12 +12170,10 @@ "thumb", "thumbs down", "thumbs down: light skin tone" - ], - "value" : "👎🏻" + ] }, "👎🏼", { - "value" : "👎🏼", "keywords" : [ "-1", "down", @@ -12184,11 +12182,11 @@ "thumb", "thumbs down", "thumbs down: medium-light skin tone" - ] + ], + "value" : "👎🏼" }, "👎🏽", { - "value" : "👎🏽", "keywords" : [ "-1", "down", @@ -12197,11 +12195,11 @@ "thumb", "thumbs down", "thumbs down: medium skin tone" - ] + ], + "value" : "👎🏽" }, "👎🏾", { - "value" : "👎🏾", "keywords" : [ "-1", "down", @@ -12210,10 +12208,12 @@ "thumb", "thumbs down", "thumbs down: medium-dark skin tone" - ] + ], + "value" : "👎🏾" }, "👎🏿", { + "value" : "👎🏿", "keywords" : [ "-1", "dark skin tone", @@ -12222,8 +12222,7 @@ "thumb", "thumbs down", "thumbs down: dark skin tone" - ], - "value" : "👎🏿" + ] }, "✊", { @@ -12265,6 +12264,7 @@ }, "✊🏽", { + "value" : "✊🏽", "keywords" : [ "clenched", "fist", @@ -12273,8 +12273,7 @@ "punch", "raised fist", "raised fist: medium skin tone" - ], - "value" : "✊🏽" + ] }, "✊🏾", { @@ -12291,6 +12290,7 @@ }, "✊🏿", { + "value" : "✊🏿", "keywords" : [ "clenched", "dark skin tone", @@ -12299,8 +12299,7 @@ "punch", "raised fist", "raised fist: dark skin tone" - ], - "value" : "✊🏿" + ] }, "👊", { @@ -12326,7 +12325,6 @@ }, "👊🏻", { - "value" : "👊🏻", "keywords" : [ "clenched", "fist", @@ -12335,7 +12333,8 @@ "oncoming fist", "oncoming fist: light skin tone", "punch" - ] + ], + "value" : "👊🏻" }, "👊🏼", { @@ -12400,14 +12399,14 @@ }, "🤛🏻", { - "value" : "🤛🏻", "keywords" : [ "fist", "left-facing fist", "left-facing fist: light skin tone", "leftwards", "light skin tone" - ] + ], + "value" : "🤛🏻" }, "🤛🏼", { @@ -12433,25 +12432,25 @@ }, "🤛🏾", { + "value" : "🤛🏾", "keywords" : [ "fist", "left-facing fist", "left-facing fist: medium-dark skin tone", "leftwards", "medium-dark skin tone" - ], - "value" : "🤛🏾" + ] }, "🤛🏿", { - "value" : "🤛🏿", "keywords" : [ "dark skin tone", "fist", "left-facing fist", "left-facing fist: dark skin tone", "leftwards" - ] + ], + "value" : "🤛🏿" }, "🤜", { @@ -12464,14 +12463,14 @@ }, "🤜🏻", { + "value" : "🤜🏻", "keywords" : [ "fist", "light skin tone", "right-facing fist", "right-facing fist: light skin tone", "rightwards" - ], - "value" : "🤜🏻" + ] }, "🤜🏼", { @@ -12497,28 +12496,29 @@ }, "🤜🏾", { - "value" : "🤜🏾", "keywords" : [ "fist", "medium-dark skin tone", "right-facing fist", "right-facing fist: medium-dark skin tone", "rightwards" - ] + ], + "value" : "🤜🏾" }, "🤜🏿", { + "value" : "🤜🏿", "keywords" : [ "dark skin tone", "fist", "right-facing fist", "right-facing fist: dark skin tone", "rightwards" - ], - "value" : "🤜🏿" + ] }, "👏", { + "value" : "👏", "keywords" : [ "applause", "approval", @@ -12536,30 +12536,29 @@ "prayed", "well", "yay" - ], - "value" : "👏" + ] }, "👏🏻", { + "value" : "👏🏻", "keywords" : [ "clap", "clapping hands", "clapping hands: light skin tone", "hand", "light skin tone" - ], - "value" : "👏🏻" + ] }, "👏🏼", { + "value" : "👏🏼", "keywords" : [ "clap", "clapping hands", "clapping hands: medium-light skin tone", "hand", "medium-light skin tone" - ], - "value" : "👏🏼" + ] }, "👏🏽", { @@ -12574,14 +12573,14 @@ }, "👏🏾", { - "value" : "👏🏾", "keywords" : [ "clap", "clapping hands", "clapping hands: medium-dark skin tone", "hand", "medium-dark skin tone" - ] + ], + "value" : "👏🏾" }, "👏🏿", { @@ -12596,6 +12595,7 @@ }, "🙌", { + "value" : "🙌", "keywords" : [ "celebration", "gesture", @@ -12605,8 +12605,7 @@ "praise", "raised", "raising" - ], - "value" : "🙌" + ] }, "🙌🏻", { @@ -12624,7 +12623,6 @@ }, "🙌🏼", { - "value" : "🙌🏼", "keywords" : [ "celebration", "gesture", @@ -12634,10 +12632,12 @@ "raised", "raising hands", "raising hands: medium-light skin tone" - ] + ], + "value" : "🙌🏼" }, "🙌🏽", { + "value" : "🙌🏽", "keywords" : [ "celebration", "gesture", @@ -12647,11 +12647,11 @@ "raised", "raising hands", "raising hands: medium skin tone" - ], - "value" : "🙌🏽" + ] }, "🙌🏾", { + "value" : "🙌🏾", "keywords" : [ "celebration", "gesture", @@ -12661,12 +12661,10 @@ "raised", "raising hands", "raising hands: medium-dark skin tone" - ], - "value" : "🙌🏾" + ] }, "🙌🏿", { - "value" : "🙌🏿", "keywords" : [ "celebration", "dark skin tone", @@ -12676,10 +12674,12 @@ "raised", "raising hands", "raising hands: dark skin tone" - ] + ], + "value" : "🙌🏿" }, "👐", { + "value" : "👐", "keywords" : [ "hand", "hands", @@ -12687,8 +12687,7 @@ "jazz", "open", "swerve" - ], - "value" : "👐" + ] }, "👐🏻", { @@ -12703,25 +12702,25 @@ }, "👐🏼", { - "value" : "👐🏼", "keywords" : [ "hand", "medium-light skin tone", "open", "open hands", "open hands: medium-light skin tone" - ] + ], + "value" : "👐🏼" }, "👐🏽", { - "value" : "👐🏽", "keywords" : [ "hand", "medium skin tone", "open", "open hands", "open hands: medium skin tone" - ] + ], + "value" : "👐🏽" }, "👐🏾", { @@ -12762,13 +12761,13 @@ }, "🤲🏻", { + "value" : "🤲🏻", "keywords" : [ "light skin tone", "palms up together", "palms up together: light skin tone", "prayer" - ], - "value" : "🤲🏻" + ] }, "🤲🏼", { @@ -12782,13 +12781,13 @@ }, "🤲🏽", { + "value" : "🤲🏽", "keywords" : [ "medium skin tone", "palms up together", "palms up together: medium skin tone", "prayer" - ], - "value" : "🤲🏽" + ] }, "🤲🏾", { @@ -12802,13 +12801,13 @@ }, "🤲🏿", { + "value" : "🤲🏿", "keywords" : [ "dark skin tone", "palms up together", "palms up together: dark skin tone", "prayer" - ], - "value" : "🤲🏿" + ] }, "🤝", { @@ -12861,6 +12860,7 @@ }, "🙏🏼", { + "value" : "🙏🏼", "keywords" : [ "ask", "folded hands", @@ -12872,12 +12872,10 @@ "please", "pray", "thanks" - ], - "value" : "🙏🏼" + ] }, "🙏🏽", { - "value" : "🙏🏽", "keywords" : [ "ask", "folded hands", @@ -12889,11 +12887,11 @@ "please", "pray", "thanks" - ] + ], + "value" : "🙏🏽" }, "🙏🏾", { - "value" : "🙏🏾", "keywords" : [ "ask", "folded hands", @@ -12905,7 +12903,8 @@ "please", "pray", "thanks" - ] + ], + "value" : "🙏🏾" }, "🙏🏿", { @@ -12934,14 +12933,14 @@ }, "✍🏻", { + "value" : "✍🏻", "keywords" : [ "hand", "light skin tone", "write", "writing hand", "writing hand: light skin tone" - ], - "value" : "✍🏻" + ] }, "✍🏼", { @@ -12956,14 +12955,14 @@ }, "✍🏽", { - "value" : "✍🏽", "keywords" : [ "hand", "medium skin tone", "write", "writing hand", "writing hand: medium skin tone" - ] + ], + "value" : "✍🏽" }, "✍🏾", { @@ -12989,7 +12988,6 @@ }, "💅", { - "value" : "💅", "keywords" : [ "bored", "care", @@ -13000,10 +12998,12 @@ "nail", "polish", "whatever" - ] + ], + "value" : "💅" }, "💅🏻", { + "value" : "💅🏻", "keywords" : [ "care", "cosmetics", @@ -13012,8 +13012,7 @@ "nail", "nail polish: light skin tone", "polish" - ], - "value" : "💅🏻" + ] }, "💅🏼", { @@ -13056,6 +13055,7 @@ }, "💅🏿", { + "value" : "💅🏿", "keywords" : [ "care", "cosmetics", @@ -13064,8 +13064,7 @@ "nail", "nail polish: dark skin tone", "polish" - ], - "value" : "💅🏿" + ] }, "🤳", { @@ -13089,36 +13088,36 @@ }, "🤳🏼", { - "value" : "🤳🏼", "keywords" : [ "camera", "medium-light skin tone", "phone", "selfie", "selfie: medium-light skin tone" - ] + ], + "value" : "🤳🏼" }, "🤳🏽", { - "value" : "🤳🏽", "keywords" : [ "camera", "medium skin tone", "phone", "selfie", "selfie: medium skin tone" - ] + ], + "value" : "🤳🏽" }, "🤳🏾", { + "value" : "🤳🏾", "keywords" : [ "camera", "medium-dark skin tone", "phone", "selfie", "selfie: medium-dark skin tone" - ], - "value" : "🤳🏾" + ] }, "🤳🏿", { @@ -13133,6 +13132,7 @@ }, "💪", { + "value" : "💪", "keywords" : [ "arm", "beast", @@ -13150,8 +13150,7 @@ "ripped", "strong", "weightlift" - ], - "value" : "💪" + ] }, "💪🏻", { @@ -13263,25 +13262,25 @@ }, "🦵🏼", { + "value" : "🦵🏼", "keywords" : [ "kick", "leg", "leg: medium-light skin tone", "limb", "medium-light skin tone" - ], - "value" : "🦵🏼" + ] }, "🦵🏽", { - "value" : "🦵🏽", "keywords" : [ "kick", "leg", "leg: medium skin tone", "limb", "medium skin tone" - ] + ], + "value" : "🦵🏽" }, "🦵🏾", { @@ -13362,14 +13361,14 @@ }, "🦶🏿", { + "value" : "🦶🏿", "keywords" : [ "dark skin tone", "foot", "foot: dark skin tone", "kick", "stomp" - ], - "value" : "🦶🏿" + ] }, "👂", { @@ -13387,13 +13386,13 @@ }, "👂🏻", { + "value" : "👂🏻", "keywords" : [ "body", "ear", "ear: light skin tone", "light skin tone" - ], - "value" : "👂🏻" + ] }, "👂🏼", { @@ -13437,14 +13436,14 @@ }, "🦻", { + "value" : "🦻", "keywords" : [ "accessibility", "aid", "ear", "hard", "hearing" - ], - "value" : "🦻" + ] }, "🦻🏻", { @@ -13459,14 +13458,14 @@ }, "🦻🏼", { - "value" : "🦻🏼", "keywords" : [ "accessibility", "ear with hearing aid", "ear with hearing aid: medium-light skin tone", "hard of hearing", "medium-light skin tone" - ] + ], + "value" : "🦻🏼" }, "🦻🏽", { @@ -13481,14 +13480,14 @@ }, "🦻🏾", { - "value" : "🦻🏾", "keywords" : [ "accessibility", "ear with hearing aid", "ear with hearing aid: medium-dark skin tone", "hard of hearing", "medium-dark skin tone" - ] + ], + "value" : "🦻🏾" }, "🦻🏿", { @@ -13526,23 +13525,23 @@ }, "👃🏼", { + "value" : "👃🏼", "keywords" : [ "body", "medium-light skin tone", "nose", "nose: medium-light skin tone" - ], - "value" : "👃🏼" + ] }, "👃🏽", { + "value" : "👃🏽", "keywords" : [ "body", "medium skin tone", "nose", "nose: medium skin tone" - ], - "value" : "👃🏽" + ] }, "👃🏾", { @@ -13566,12 +13565,12 @@ }, "🧠", { + "value" : "🧠", "keywords" : [ "brain", "intelligent", "smart" - ], - "value" : "🧠" + ] }, "🫀", { @@ -13615,18 +13614,17 @@ }, "🦴", { + "value" : "🦴", "keywords" : [ "bone", "bones", "dog", "skeleton", "wishbone" - ], - "value" : "🦴" + ] }, "👀", { - "value" : "👀", "keywords" : [ "body", "eye", @@ -13639,7 +13637,8 @@ "peep", "see", "seeing" - ] + ], + "value" : "👀" }, "👁️", { @@ -13653,16 +13652,17 @@ }, "👅", { - "value" : "👅", "keywords" : [ "body", "lick", "slurp", "tongue" - ] + ], + "value" : "👅" }, "👄", { + "value" : "👄", "keywords" : [ "beauty", "body", @@ -13671,8 +13671,7 @@ "lips", "lipstick", "mouth" - ], - "value" : "👄" + ] }, "👶", { @@ -13690,43 +13689,43 @@ }, "👶🏻", { + "value" : "👶🏻", "keywords" : [ "baby", "baby: light skin tone", "light skin tone", "young" - ], - "value" : "👶🏻" + ] }, "👶🏼", { - "value" : "👶🏼", "keywords" : [ "baby", "baby: medium-light skin tone", "medium-light skin tone", "young" - ] + ], + "value" : "👶🏼" }, "👶🏽", { + "value" : "👶🏽", "keywords" : [ "baby", "baby: medium skin tone", "medium skin tone", "young" - ], - "value" : "👶🏽" + ] }, "👶🏾", { - "value" : "👶🏾", "keywords" : [ "baby", "baby: medium-dark skin tone", "medium-dark skin tone", "young" - ] + ], + "value" : "👶🏾" }, "👶🏿", { @@ -13776,6 +13775,7 @@ }, "🧒🏽", { + "value" : "🧒🏽", "keywords" : [ "child", "child: medium skin tone", @@ -13783,11 +13783,11 @@ "medium skin tone", "unspecified gender", "young" - ], - "value" : "🧒🏽" + ] }, "🧒🏾", { + "value" : "🧒🏾", "keywords" : [ "child", "child: medium-dark skin tone", @@ -13795,12 +13795,10 @@ "medium-dark skin tone", "unspecified gender", "young" - ], - "value" : "🧒🏾" + ] }, "🧒🏿", { - "value" : "🧒🏿", "keywords" : [ "child", "child: dark skin tone", @@ -13808,10 +13806,12 @@ "gender-neutral", "unspecified gender", "young" - ] + ], + "value" : "🧒🏿" }, "👦", { + "value" : "👦", "keywords" : [ "boy", "bright-eyed", @@ -13821,28 +13821,27 @@ "son", "young", "younger" - ], - "value" : "👦" + ] }, "👦🏻", { - "value" : "👦🏻", "keywords" : [ "boy", "boy: light skin tone", "light skin tone", "young" - ] + ], + "value" : "👦🏻" }, "👦🏼", { + "value" : "👦🏼", "keywords" : [ "boy", "boy: medium-light skin tone", "medium-light skin tone", "young" - ], - "value" : "👦🏼" + ] }, "👦🏽", { @@ -13928,7 +13927,6 @@ }, "👧🏾", { - "value" : "👧🏾", "keywords" : [ "girl", "girl: medium-dark skin tone", @@ -13936,7 +13934,8 @@ "Virgo", "young", "zodiac" - ] + ], + "value" : "👧🏾" }, "👧🏿", { @@ -13960,6 +13959,7 @@ }, "🧑🏻", { + "value" : "🧑🏻", "keywords" : [ "adult", "gender-neutral", @@ -13967,8 +13967,7 @@ "person", "person: light skin tone", "unspecified gender" - ], - "value" : "🧑🏻" + ] }, "🧑🏼", { @@ -13984,6 +13983,7 @@ }, "🧑🏽", { + "value" : "🧑🏽", "keywords" : [ "adult", "gender-neutral", @@ -13991,8 +13991,7 @@ "person", "person: medium skin tone", "unspecified gender" - ], - "value" : "🧑🏽" + ] }, "🧑🏾", { @@ -14020,13 +14019,13 @@ }, "👱", { - "value" : "👱", "keywords" : [ "blond", "blond-haired", "human", "person" - ] + ], + "value" : "👱" }, "👱🏻", { @@ -14054,6 +14053,7 @@ }, "👱🏽", { + "value" : "👱🏽", "keywords" : [ "blond", "blond-haired person", @@ -14061,8 +14061,7 @@ "medium skin tone", "person: blond hair", "person: medium skin tone, blond hair" - ], - "value" : "👱🏽" + ] }, "👱🏾", { @@ -14078,7 +14077,6 @@ }, "👱🏿", { - "value" : "👱🏿", "keywords" : [ "blond", "blond-haired person", @@ -14086,7 +14084,8 @@ "hair", "person: blond hair", "person: dark skin tone, blond hair" - ] + ], + "value" : "👱🏿" }, "👨", { @@ -14109,23 +14108,23 @@ }, "👨🏼", { + "value" : "👨🏼", "keywords" : [ "adult", "man", "man: medium-light skin tone", "medium-light skin tone" - ], - "value" : "👨🏼" + ] }, "👨🏽", { + "value" : "👨🏽", "keywords" : [ "adult", "man", "man: medium skin tone", "medium skin tone" - ], - "value" : "👨🏽" + ] }, "👨🏾", { @@ -14139,45 +14138,45 @@ }, "👨🏿", { + "value" : "👨🏿", "keywords" : [ "adult", "dark skin tone", "man", "man: dark skin tone" - ], - "value" : "👨🏿" + ] }, "🧔", { + "value" : "🧔", "keywords" : [ "beard", "bearded", "person", "whiskers" - ], - "value" : "🧔" + ] }, "🧔🏻", { + "value" : "🧔🏻", "keywords" : [ "beard", "light skin tone", "person", "person: beard", "person: light skin tone, beard" - ], - "value" : "🧔🏻" + ] }, "🧔🏼", { + "value" : "🧔🏼", "keywords" : [ "beard", "medium-light skin tone", "person", "person: beard", "person: medium-light skin tone, beard" - ], - "value" : "🧔🏼" + ] }, "🧔🏽", { @@ -14192,25 +14191,25 @@ }, "🧔🏾", { + "value" : "🧔🏾", "keywords" : [ "beard", "medium-dark skin tone", "person", "person: beard", "person: medium-dark skin tone, beard" - ], - "value" : "🧔🏾" + ] }, "🧔🏿", { + "value" : "🧔🏿", "keywords" : [ "beard", "dark skin tone", "person", "person: beard", "person: dark skin tone, beard" - ], - "value" : "🧔🏿" + ] }, "🧔‍♂️", { @@ -14246,14 +14245,14 @@ }, "🧔🏽‍♂️", { - "value" : "🧔🏽‍♂️", "keywords" : [ "beard", "man", "man: beard", "man: medium skin tone, beard", "medium skin tone" - ] + ], + "value" : "🧔🏽‍♂️" }, "🧔🏾‍♂️", { @@ -14289,47 +14288,47 @@ }, "🧔🏻‍♀️", { + "value" : "🧔🏻‍♀️", "keywords" : [ "beard", "light skin tone", "woman", "woman: beard", "woman: light skin tone, beard" - ], - "value" : "🧔🏻‍♀️" + ] }, "🧔🏼‍♀️", { + "value" : "🧔🏼‍♀️", "keywords" : [ "beard", "medium-light skin tone", "woman", "woman: beard", "woman: medium-light skin tone, beard" - ], - "value" : "🧔🏼‍♀️" + ] }, "🧔🏽‍♀️", { - "value" : "🧔🏽‍♀️", "keywords" : [ "beard", "medium skin tone", "woman", "woman: beard", "woman: medium skin tone, beard" - ] + ], + "value" : "🧔🏽‍♀️" }, "🧔🏾‍♀️", { - "value" : "🧔🏾‍♀️", "keywords" : [ "beard", "medium-dark skin tone", "woman", "woman: beard", "woman: medium-dark skin tone, beard" - ] + ], + "value" : "🧔🏾‍♀️" }, "🧔🏿‍♀️", { @@ -14365,14 +14364,14 @@ }, "👨🏼‍🦰", { + "value" : "👨🏼‍🦰", "keywords" : [ "adult", "man", "man: medium-light skin tone, red hair", "medium-light skin tone", "red hair" - ], - "value" : "👨🏼‍🦰" + ] }, "👨🏽‍🦰", { @@ -14398,57 +14397,57 @@ }, "👨🏿‍🦰", { - "value" : "👨🏿‍🦰", "keywords" : [ "adult", "dark skin tone", "man", "man: dark skin tone, red hair", "red hair" - ] + ], + "value" : "👨🏿‍🦰" }, "👨‍🦱", { + "value" : "👨‍🦱", "keywords" : [ "adult", "curly hair", "man", "man: curly hair" - ], - "value" : "👨‍🦱" + ] }, "👨🏻‍🦱", { + "value" : "👨🏻‍🦱", "keywords" : [ "adult", "curly hair", "light skin tone", "man", "man: light skin tone, curly hair" - ], - "value" : "👨🏻‍🦱" + ] }, "👨🏼‍🦱", { - "value" : "👨🏼‍🦱", "keywords" : [ "adult", "curly hair", "man", "man: medium-light skin tone, curly hair", "medium-light skin tone" - ] + ], + "value" : "👨🏼‍🦱" }, "👨🏽‍🦱", { + "value" : "👨🏽‍🦱", "keywords" : [ "adult", "curly hair", "man", "man: medium skin tone, curly hair", "medium skin tone" - ], - "value" : "👨🏽‍🦱" + ] }, "👨🏾‍🦱", { @@ -14463,14 +14462,14 @@ }, "👨🏿‍🦱", { + "value" : "👨🏿‍🦱", "keywords" : [ "adult", "curly hair", "dark skin tone", "man", "man: dark skin tone, curly hair" - ], - "value" : "👨🏿‍🦱" + ] }, "👨‍🦳", { @@ -14495,36 +14494,36 @@ }, "👨🏼‍🦳", { - "value" : "👨🏼‍🦳", "keywords" : [ "adult", "man", "man: medium-light skin tone, white hair", "medium-light skin tone", "white hair" - ] + ], + "value" : "👨🏼‍🦳" }, "👨🏽‍🦳", { + "value" : "👨🏽‍🦳", "keywords" : [ "adult", "man", "man: medium skin tone, white hair", "medium skin tone", "white hair" - ], - "value" : "👨🏽‍🦳" + ] }, "👨🏾‍🦳", { + "value" : "👨🏾‍🦳", "keywords" : [ "adult", "man", "man: medium-dark skin tone, white hair", "medium-dark skin tone", "white hair" - ], - "value" : "👨🏾‍🦳" + ] }, "👨🏿‍🦳", { @@ -14539,13 +14538,13 @@ }, "👨‍🦲", { + "value" : "👨‍🦲", "keywords" : [ "adult", "bald", "man", "man: bald" - ], - "value" : "👨‍🦲" + ] }, "👨🏻‍🦲", { @@ -14582,25 +14581,25 @@ }, "👨🏾‍🦲", { + "value" : "👨🏾‍🦲", "keywords" : [ "adult", "bald", "man", "man: medium-dark skin tone, bald", "medium-dark skin tone" - ], - "value" : "👨🏾‍🦲" + ] }, "👨🏿‍🦲", { + "value" : "👨🏿‍🦲", "keywords" : [ "adult", "bald", "dark skin tone", "man", "man: dark skin tone, bald" - ], - "value" : "👨🏿‍🦲" + ] }, "👩", { @@ -14613,13 +14612,13 @@ }, "👩🏻", { - "value" : "👩🏻", "keywords" : [ "adult", "light skin tone", "woman", "woman: light skin tone" - ] + ], + "value" : "👩🏻" }, "👩🏼", { @@ -14633,13 +14632,13 @@ }, "👩🏽", { + "value" : "👩🏽", "keywords" : [ "adult", "medium skin tone", "woman", "woman: medium skin tone" - ], - "value" : "👩🏽" + ] }, "👩🏾", { @@ -14673,14 +14672,14 @@ }, "👩🏻‍🦰", { + "value" : "👩🏻‍🦰", "keywords" : [ "adult", "light skin tone", "red hair", "woman", "woman: light skin tone, red hair" - ], - "value" : "👩🏻‍🦰" + ] }, "👩🏼‍🦰", { @@ -14695,25 +14694,25 @@ }, "👩🏽‍🦰", { + "value" : "👩🏽‍🦰", "keywords" : [ "adult", "medium skin tone", "red hair", "woman", "woman: medium skin tone, red hair" - ], - "value" : "👩🏽‍🦰" + ] }, "👩🏾‍🦰", { + "value" : "👩🏾‍🦰", "keywords" : [ "adult", "medium-dark skin tone", "red hair", "woman", "woman: medium-dark skin tone, red hair" - ], - "value" : "👩🏾‍🦰" + ] }, "👩🏿‍🦰", { @@ -14728,6 +14727,7 @@ }, "🧑‍🦰", { + "value" : "🧑‍🦰", "keywords" : [ "adult", "gender-neutral", @@ -14735,8 +14735,7 @@ "person: red hair", "red hair", "unspecified gender" - ], - "value" : "🧑‍🦰" + ] }, "🧑🏻‍🦰", { @@ -14753,7 +14752,6 @@ }, "🧑🏼‍🦰", { - "value" : "🧑🏼‍🦰", "keywords" : [ "adult", "gender-neutral", @@ -14762,7 +14760,8 @@ "person: medium-light skin tone, red hair", "red hair", "unspecified gender" - ] + ], + "value" : "🧑🏼‍🦰" }, "🧑🏽‍🦰", { @@ -14779,7 +14778,6 @@ }, "🧑🏾‍🦰", { - "value" : "🧑🏾‍🦰", "keywords" : [ "adult", "gender-neutral", @@ -14788,7 +14786,8 @@ "person: medium-dark skin tone, red hair", "red hair", "unspecified gender" - ] + ], + "value" : "🧑🏾‍🦰" }, "🧑🏿‍🦰", { @@ -14815,14 +14814,14 @@ }, "👩🏻‍🦱", { + "value" : "👩🏻‍🦱", "keywords" : [ "adult", "curly hair", "light skin tone", "woman", "woman: light skin tone, curly hair" - ], - "value" : "👩🏻‍🦱" + ] }, "👩🏼‍🦱", { @@ -14837,14 +14836,14 @@ }, "👩🏽‍🦱", { - "value" : "👩🏽‍🦱", "keywords" : [ "adult", "curly hair", "medium skin tone", "woman", "woman: medium skin tone, curly hair" - ] + ], + "value" : "👩🏽‍🦱" }, "👩🏾‍🦱", { @@ -14921,7 +14920,6 @@ }, "🧑🏾‍🦱", { - "value" : "🧑🏾‍🦱", "keywords" : [ "adult", "curly hair", @@ -14930,11 +14928,11 @@ "person", "person: medium-dark skin tone, curly hair", "unspecified gender" - ] + ], + "value" : "🧑🏾‍🦱" }, "🧑🏿‍🦱", { - "value" : "🧑🏿‍🦱", "keywords" : [ "adult", "curly hair", @@ -14943,17 +14941,18 @@ "person", "person: dark skin tone, curly hair", "unspecified gender" - ] + ], + "value" : "🧑🏿‍🦱" }, "👩‍🦳", { - "value" : "👩‍🦳", "keywords" : [ "adult", "white hair", "woman", "woman: white hair" - ] + ], + "value" : "👩‍🦳" }, "👩🏻‍🦳", { @@ -14968,14 +14967,14 @@ }, "👩🏼‍🦳", { - "value" : "👩🏼‍🦳", "keywords" : [ "adult", "medium-light skin tone", "white hair", "woman", "woman: medium-light skin tone, white hair" - ] + ], + "value" : "👩🏼‍🦳" }, "👩🏽‍🦳", { @@ -15001,14 +15000,14 @@ }, "👩🏿‍🦳", { - "value" : "👩🏿‍🦳", "keywords" : [ "adult", "dark skin tone", "white hair", "woman", "woman: dark skin tone, white hair" - ] + ], + "value" : "👩🏿‍🦳" }, "🧑‍🦳", { @@ -15024,7 +15023,6 @@ }, "🧑🏻‍🦳", { - "value" : "🧑🏻‍🦳", "keywords" : [ "adult", "gender-neutral", @@ -15033,11 +15031,11 @@ "person: light skin tone, white hair", "unspecified gender", "white hair" - ] + ], + "value" : "🧑🏻‍🦳" }, "🧑🏼‍🦳", { - "value" : "🧑🏼‍🦳", "keywords" : [ "adult", "gender-neutral", @@ -15046,7 +15044,8 @@ "person: medium-light skin tone, white hair", "unspecified gender", "white hair" - ] + ], + "value" : "🧑🏼‍🦳" }, "🧑🏽‍🦳", { @@ -15063,7 +15062,6 @@ }, "🧑🏾‍🦳", { - "value" : "🧑🏾‍🦳", "keywords" : [ "adult", "gender-neutral", @@ -15072,7 +15070,8 @@ "person: medium-dark skin tone, white hair", "unspecified gender", "white hair" - ] + ], + "value" : "🧑🏾‍🦳" }, "🧑🏿‍🦳", { @@ -15110,14 +15109,14 @@ }, "👩🏼‍🦲", { - "value" : "👩🏼‍🦲", "keywords" : [ "adult", "bald", "medium-light skin tone", "woman", "woman: medium-light skin tone, bald" - ] + ], + "value" : "👩🏼‍🦲" }, "👩🏽‍🦲", { @@ -15132,28 +15131,29 @@ }, "👩🏾‍🦲", { + "value" : "👩🏾‍🦲", "keywords" : [ "adult", "bald", "medium-dark skin tone", "woman", "woman: medium-dark skin tone, bald" - ], - "value" : "👩🏾‍🦲" + ] }, "👩🏿‍🦲", { + "value" : "👩🏿‍🦲", "keywords" : [ "adult", "bald", "dark skin tone", "woman", "woman: dark skin tone, bald" - ], - "value" : "👩🏿‍🦲" + ] }, "🧑‍🦲", { + "value" : "🧑‍🦲", "keywords" : [ "adult", "bald", @@ -15161,12 +15161,10 @@ "person", "person: bald", "unspecified gender" - ], - "value" : "🧑‍🦲" + ] }, "🧑🏻‍🦲", { - "value" : "🧑🏻‍🦲", "keywords" : [ "adult", "bald", @@ -15175,11 +15173,11 @@ "person", "person: light skin tone, bald", "unspecified gender" - ] + ], + "value" : "🧑🏻‍🦲" }, "🧑🏼‍🦲", { - "value" : "🧑🏼‍🦲", "keywords" : [ "adult", "bald", @@ -15188,7 +15186,8 @@ "person", "person: medium-light skin tone, bald", "unspecified gender" - ] + ], + "value" : "🧑🏼‍🦲" }, "🧑🏽‍🦲", { @@ -15218,6 +15217,7 @@ }, "🧑🏿‍🦲", { + "value" : "🧑🏿‍🦲", "keywords" : [ "adult", "bald", @@ -15226,22 +15226,22 @@ "person", "person: dark skin tone, bald", "unspecified gender" - ], - "value" : "🧑🏿‍🦲" + ] }, "👱‍♀️", { + "value" : "👱‍♀️", "keywords" : [ "blond", "blond-haired", "blonde", "hair", "woman" - ], - "value" : "👱‍♀️" + ] }, "👱🏻‍♀️", { + "value" : "👱🏻‍♀️", "keywords" : [ "blond hair", "blond-haired woman", @@ -15251,8 +15251,7 @@ "woman", "woman: blond hair", "woman: light skin tone, blond hair" - ], - "value" : "👱🏻‍♀️" + ] }, "👱🏼‍♀️", { @@ -15284,6 +15283,7 @@ }, "👱🏾‍♀️", { + "value" : "👱🏾‍♀️", "keywords" : [ "blond hair", "blond-haired woman", @@ -15293,12 +15293,10 @@ "woman", "woman: blond hair", "woman: medium-dark skin tone, blond hair" - ], - "value" : "👱🏾‍♀️" + ] }, "👱🏿‍♀️", { - "value" : "👱🏿‍♀️", "keywords" : [ "blond hair", "blond-haired woman", @@ -15308,7 +15306,8 @@ "woman", "woman: blond hair", "woman: dark skin tone, blond hair" - ] + ], + "value" : "👱🏿‍♀️" }, "👱‍♂️", { @@ -15322,7 +15321,6 @@ }, "👱🏻‍♂️", { - "value" : "👱🏻‍♂️", "keywords" : [ "blond", "blond-haired man", @@ -15331,11 +15329,11 @@ "man", "man: blond hair", "man: light skin tone, blond hair" - ] + ], + "value" : "👱🏻‍♂️" }, "👱🏼‍♂️", { - "value" : "👱🏼‍♂️", "keywords" : [ "blond", "blond-haired man", @@ -15344,7 +15342,8 @@ "man: blond hair", "man: medium-light skin tone, blond hair", "medium-light skin tone" - ] + ], + "value" : "👱🏼‍♂️" }, "👱🏽‍♂️", { @@ -15361,6 +15360,7 @@ }, "👱🏾‍♂️", { + "value" : "👱🏾‍♂️", "keywords" : [ "blond", "blond-haired man", @@ -15369,11 +15369,11 @@ "man: blond hair", "man: medium-dark skin tone, blond hair", "medium-dark skin tone" - ], - "value" : "👱🏾‍♂️" + ] }, "👱🏿‍♂️", { + "value" : "👱🏿‍♂️", "keywords" : [ "blond", "blond-haired man", @@ -15382,11 +15382,11 @@ "man", "man: blond hair", "man: dark skin tone, blond hair" - ], - "value" : "👱🏿‍♂️" + ] }, "🧓", { + "value" : "🧓", "keywords" : [ "adult", "elderly", @@ -15394,8 +15394,7 @@ "old", "person", "wise" - ], - "value" : "🧓" + ] }, "🧓🏻", { @@ -15412,7 +15411,6 @@ }, "🧓🏼", { - "value" : "🧓🏼", "keywords" : [ "adult", "gender-neutral", @@ -15421,7 +15419,8 @@ "older person", "older person: medium-light skin tone", "unspecified gender" - ] + ], + "value" : "🧓🏼" }, "🧓🏽", { @@ -15451,7 +15450,6 @@ }, "🧓🏿", { - "value" : "🧓🏿", "keywords" : [ "adult", "dark skin tone", @@ -15460,11 +15458,11 @@ "older person", "older person: dark skin tone", "unspecified gender" - ] + ], + "value" : "🧓🏿" }, "👴", { - "value" : "👴", "keywords" : [ "adult", "bald", @@ -15475,7 +15473,8 @@ "man", "old", "wise" - ] + ], + "value" : "👴" }, "👴🏻", { @@ -15490,25 +15489,25 @@ }, "👴🏼", { - "value" : "👴🏼", "keywords" : [ "adult", "man", "medium-light skin tone", "old", "old man: medium-light skin tone" - ] + ], + "value" : "👴🏼" }, "👴🏽", { + "value" : "👴🏽", "keywords" : [ "adult", "man", "medium skin tone", "old", "old man: medium skin tone" - ], - "value" : "👴🏽" + ] }, "👴🏾", { @@ -15549,14 +15548,14 @@ }, "👵🏻", { + "value" : "👵🏻", "keywords" : [ "adult", "light skin tone", "old", "old woman: light skin tone", "woman" - ], - "value" : "👵🏻" + ] }, "👵🏼", { @@ -15604,6 +15603,7 @@ }, "🙍", { + "value" : "🙍", "keywords" : [ "annoyed", "disappointed", @@ -15616,19 +15616,18 @@ "irritated", "person", "upset" - ], - "value" : "🙍" + ] }, "🙍🏻", { - "value" : "🙍🏻", "keywords" : [ "frown", "gesture", "light skin tone", "person frowning", "person frowning: light skin tone" - ] + ], + "value" : "🙍🏻" }, "🙍🏼", { @@ -15643,39 +15642,40 @@ }, "🙍🏽", { + "value" : "🙍🏽", "keywords" : [ "frown", "gesture", "medium skin tone", "person frowning", "person frowning: medium skin tone" - ], - "value" : "🙍🏽" + ] }, "🙍🏾", { + "value" : "🙍🏾", "keywords" : [ "frown", "gesture", "medium-dark skin tone", "person frowning", "person frowning: medium-dark skin tone" - ], - "value" : "🙍🏾" + ] }, "🙍🏿", { - "value" : "🙍🏿", "keywords" : [ "dark skin tone", "frown", "gesture", "person frowning", "person frowning: dark skin tone" - ] + ], + "value" : "🙍🏿" }, "🙍‍♂️", { + "value" : "🙍‍♂️", "keywords" : [ "annoyed", "disappointed", @@ -15688,8 +15688,7 @@ "irritated", "man", "upset" - ], - "value" : "🙍‍♂️" + ] }, "🙍🏻‍♂️", { @@ -15704,36 +15703,36 @@ }, "🙍🏼‍♂️", { + "value" : "🙍🏼‍♂️", "keywords" : [ "frowning", "gesture", "man", "man frowning: medium-light skin tone", "medium-light skin tone" - ], - "value" : "🙍🏼‍♂️" + ] }, "🙍🏽‍♂️", { - "value" : "🙍🏽‍♂️", "keywords" : [ "frowning", "gesture", "man", "man frowning: medium skin tone", "medium skin tone" - ] + ], + "value" : "🙍🏽‍♂️" }, "🙍🏾‍♂️", { + "value" : "🙍🏾‍♂️", "keywords" : [ "frowning", "gesture", "man", "man frowning: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "🙍🏾‍♂️" + ] }, "🙍🏿‍♂️", { @@ -15787,14 +15786,14 @@ }, "🙍🏽‍♀️", { - "value" : "🙍🏽‍♀️", "keywords" : [ "frowning", "gesture", "medium skin tone", "woman", "woman frowning: medium skin tone" - ] + ], + "value" : "🙍🏽‍♀️" }, "🙍🏾‍♀️", { @@ -15809,18 +15808,17 @@ }, "🙍🏿‍♀️", { + "value" : "🙍🏿‍♀️", "keywords" : [ "dark skin tone", "frowning", "gesture", "woman", "woman frowning: dark skin tone" - ], - "value" : "🙍🏿‍♀️" + ] }, "🙎", { - "value" : "🙎", "keywords" : [ "disappointed", "downtrodden", @@ -15832,66 +15830,66 @@ "sulk", "upset", "whine" - ] + ], + "value" : "🙎" }, "🙎🏻", { + "value" : "🙎🏻", "keywords" : [ "gesture", "light skin tone", "person pouting", "person pouting: light skin tone", "pouting" - ], - "value" : "🙎🏻" + ] }, "🙎🏼", { + "value" : "🙎🏼", "keywords" : [ "gesture", "medium-light skin tone", "person pouting", "person pouting: medium-light skin tone", "pouting" - ], - "value" : "🙎🏼" + ] }, "🙎🏽", { - "value" : "🙎🏽", "keywords" : [ "gesture", "medium skin tone", "person pouting", "person pouting: medium skin tone", "pouting" - ] + ], + "value" : "🙎🏽" }, "🙎🏾", { - "value" : "🙎🏾", "keywords" : [ "gesture", "medium-dark skin tone", "person pouting", "person pouting: medium-dark skin tone", "pouting" - ] + ], + "value" : "🙎🏾" }, "🙎🏿", { - "value" : "🙎🏿", "keywords" : [ "dark skin tone", "gesture", "person pouting", "person pouting: dark skin tone", "pouting" - ] + ], + "value" : "🙎🏿" }, "🙎‍♂️", { - "value" : "🙎‍♂️", "keywords" : [ "disappointed", "downtrodden", @@ -15903,7 +15901,8 @@ "sulk", "upset", "whine" - ] + ], + "value" : "🙎‍♂️" }, "🙎🏻‍♂️", { @@ -15929,14 +15928,14 @@ }, "🙎🏽‍♂️", { + "value" : "🙎🏽‍♂️", "keywords" : [ "gesture", "man", "man pouting: medium skin tone", "medium skin tone", "pouting" - ], - "value" : "🙎🏽‍♂️" + ] }, "🙎🏾‍♂️", { @@ -15989,36 +15988,36 @@ }, "🙎🏼‍♀️", { + "value" : "🙎🏼‍♀️", "keywords" : [ "gesture", "medium-light skin tone", "pouting", "woman", "woman pouting: medium-light skin tone" - ], - "value" : "🙎🏼‍♀️" + ] }, "🙎🏽‍♀️", { + "value" : "🙎🏽‍♀️", "keywords" : [ "gesture", "medium skin tone", "pouting", "woman", "woman pouting: medium skin tone" - ], - "value" : "🙎🏽‍♀️" + ] }, "🙎🏾‍♀️", { + "value" : "🙎🏾‍♀️", "keywords" : [ "gesture", "medium-dark skin tone", "pouting", "woman", "woman pouting: medium-dark skin tone" - ], - "value" : "🙎🏾‍♀️" + ] }, "🙎🏿‍♀️", { @@ -16046,6 +16045,7 @@ }, "🙅🏻", { + "value" : "🙅🏻", "keywords" : [ "forbidden", "gesture", @@ -16054,12 +16054,10 @@ "person gesturing NO", "person gesturing NO: light skin tone", "prohibited" - ], - "value" : "🙅🏻" + ] }, "🙅🏼", { - "value" : "🙅🏼", "keywords" : [ "forbidden", "gesture", @@ -16068,11 +16066,11 @@ "person gesturing NO", "person gesturing NO: medium-light skin tone", "prohibited" - ] + ], + "value" : "🙅🏼" }, "🙅🏽", { - "value" : "🙅🏽", "keywords" : [ "forbidden", "gesture", @@ -16081,7 +16079,8 @@ "person gesturing NO", "person gesturing NO: medium skin tone", "prohibited" - ] + ], + "value" : "🙅🏽" }, "🙅🏾", { @@ -16098,7 +16097,6 @@ }, "🙅🏿", { - "value" : "🙅🏿", "keywords" : [ "dark skin tone", "forbidden", @@ -16107,10 +16105,12 @@ "person gesturing NO", "person gesturing NO: dark skin tone", "prohibited" - ] + ], + "value" : "🙅🏿" }, "🙅‍♂️", { + "value" : "🙅‍♂️", "keywords" : [ "forbidden", "gesture", @@ -16119,8 +16119,7 @@ "NO", "not", "prohibit" - ], - "value" : "🙅‍♂️" + ] }, "🙅🏻‍♂️", { @@ -16152,6 +16151,7 @@ }, "🙅🏽‍♂️", { + "value" : "🙅🏽‍♂️", "keywords" : [ "forbidden", "gesture", @@ -16161,8 +16161,7 @@ "man gesturing NO: medium skin tone", "medium skin tone", "prohibited" - ], - "value" : "🙅🏽‍♂️" + ] }, "🙅🏾‍♂️", { @@ -16207,7 +16206,6 @@ }, "🙅🏻‍♀️", { - "value" : "🙅🏻‍♀️", "keywords" : [ "forbidden", "gesture", @@ -16217,11 +16215,11 @@ "woman", "woman gesturing NO", "woman gesturing NO: light skin tone" - ] + ], + "value" : "🙅🏻‍♀️" }, "🙅🏼‍♀️", { - "value" : "🙅🏼‍♀️", "keywords" : [ "forbidden", "gesture", @@ -16231,10 +16229,12 @@ "woman", "woman gesturing NO", "woman gesturing NO: medium-light skin tone" - ] + ], + "value" : "🙅🏼‍♀️" }, "🙅🏽‍♀️", { + "value" : "🙅🏽‍♀️", "keywords" : [ "forbidden", "gesture", @@ -16244,8 +16244,7 @@ "woman", "woman gesturing NO", "woman gesturing NO: medium skin tone" - ], - "value" : "🙅🏽‍♀️" + ] }, "🙅🏾‍♀️", { @@ -16290,6 +16289,7 @@ }, "🙆🏻", { + "value" : "🙆🏻", "keywords" : [ "gesture", "hand", @@ -16297,11 +16297,11 @@ "OK", "person gesturing OK", "person gesturing OK: light skin tone" - ], - "value" : "🙆🏻" + ] }, "🙆🏼", { + "value" : "🙆🏼", "keywords" : [ "gesture", "hand", @@ -16309,8 +16309,7 @@ "OK", "person gesturing OK", "person gesturing OK: medium-light skin tone" - ], - "value" : "🙆🏼" + ] }, "🙆🏽", { @@ -16338,6 +16337,7 @@ }, "🙆🏿", { + "value" : "🙆🏿", "keywords" : [ "dark skin tone", "gesture", @@ -16345,11 +16345,11 @@ "OK", "person gesturing OK", "person gesturing OK: dark skin tone" - ], - "value" : "🙆🏿" + ] }, "🙆‍♂️", { + "value" : "🙆‍♂️", "keywords" : [ "exercise", "gesture", @@ -16358,12 +16358,10 @@ "man", "OK", "omg" - ], - "value" : "🙆‍♂️" + ] }, "🙆🏻‍♂️", { - "value" : "🙆🏻‍♂️", "keywords" : [ "gesture", "hand", @@ -16372,10 +16370,12 @@ "man gesturing OK", "man gesturing OK: light skin tone", "OK" - ] + ], + "value" : "🙆🏻‍♂️" }, "🙆🏼‍♂️", { + "value" : "🙆🏼‍♂️", "keywords" : [ "gesture", "hand", @@ -16384,8 +16384,7 @@ "man gesturing OK: medium-light skin tone", "medium-light skin tone", "OK" - ], - "value" : "🙆🏼‍♂️" + ] }, "🙆🏽‍♂️", { @@ -16402,6 +16401,7 @@ }, "🙆🏾‍♂️", { + "value" : "🙆🏾‍♂️", "keywords" : [ "gesture", "hand", @@ -16410,11 +16410,11 @@ "man gesturing OK: medium-dark skin tone", "medium-dark skin tone", "OK" - ], - "value" : "🙆🏾‍♂️" + ] }, "🙆🏿‍♂️", { + "value" : "🙆🏿‍♂️", "keywords" : [ "dark skin tone", "gesture", @@ -16423,12 +16423,10 @@ "man gesturing OK", "man gesturing OK: dark skin tone", "OK" - ], - "value" : "🙆🏿‍♂️" + ] }, "🙆‍♀️", { - "value" : "🙆‍♀️", "keywords" : [ "exercise", "gesture", @@ -16437,10 +16435,12 @@ "OK", "omg", "woman" - ] + ], + "value" : "🙆‍♀️" }, "🙆🏻‍♀️", { + "value" : "🙆🏻‍♀️", "keywords" : [ "gesture", "hand", @@ -16449,8 +16449,7 @@ "woman", "woman gesturing OK", "woman gesturing OK: light skin tone" - ], - "value" : "🙆🏻‍♀️" + ] }, "🙆🏼‍♀️", { @@ -16467,6 +16466,7 @@ }, "🙆🏽‍♀️", { + "value" : "🙆🏽‍♀️", "keywords" : [ "gesture", "hand", @@ -16475,8 +16475,7 @@ "woman", "woman gesturing OK", "woman gesturing OK: medium skin tone" - ], - "value" : "🙆🏽‍♀️" + ] }, "🙆🏾‍♀️", { @@ -16524,6 +16523,7 @@ }, "💁🏻", { + "value" : "💁🏻", "keywords" : [ "hand", "help", @@ -16533,8 +16533,7 @@ "person tipping hand: light skin tone", "sassy", "tipping" - ], - "value" : "💁🏻" + ] }, "💁🏼", { @@ -16552,6 +16551,7 @@ }, "💁🏽", { + "value" : "💁🏽", "keywords" : [ "hand", "help", @@ -16561,8 +16561,7 @@ "person tipping hand: medium skin tone", "sassy", "tipping" - ], - "value" : "💁🏽" + ] }, "💁🏾", { @@ -16636,6 +16635,7 @@ }, "💁🏽‍♂️", { + "value" : "💁🏽‍♂️", "keywords" : [ "man", "man tipping hand", @@ -16643,11 +16643,11 @@ "medium skin tone", "sassy", "tipping hand" - ], - "value" : "💁🏽‍♂️" + ] }, "💁🏾‍♂️", { + "value" : "💁🏾‍♂️", "keywords" : [ "man", "man tipping hand", @@ -16655,8 +16655,7 @@ "medium-dark skin tone", "sassy", "tipping hand" - ], - "value" : "💁🏾‍♂️" + ] }, "💁🏿‍♂️", { @@ -16702,6 +16701,7 @@ }, "💁🏼‍♀️", { + "value" : "💁🏼‍♀️", "keywords" : [ "medium-light skin tone", "sassy", @@ -16709,11 +16709,11 @@ "woman", "woman tipping hand", "woman tipping hand: medium-light skin tone" - ], - "value" : "💁🏼‍♀️" + ] }, "💁🏽‍♀️", { + "value" : "💁🏽‍♀️", "keywords" : [ "medium skin tone", "sassy", @@ -16721,11 +16721,11 @@ "woman", "woman tipping hand", "woman tipping hand: medium skin tone" - ], - "value" : "💁🏽‍♀️" + ] }, "💁🏾‍♀️", { + "value" : "💁🏾‍♀️", "keywords" : [ "medium-dark skin tone", "sassy", @@ -16733,11 +16733,11 @@ "woman", "woman tipping hand", "woman tipping hand: medium-dark skin tone" - ], - "value" : "💁🏾‍♀️" + ] }, "💁🏿‍♀️", { + "value" : "💁🏿‍♀️", "keywords" : [ "dark skin tone", "sassy", @@ -16745,12 +16745,10 @@ "woman", "woman tipping hand", "woman tipping hand: dark skin tone" - ], - "value" : "💁🏿‍♀️" + ] }, "🙋", { - "value" : "🙋", "keywords" : [ "gesture", "hand", @@ -16762,10 +16760,12 @@ "question", "raise", "raising" - ] + ], + "value" : "🙋" }, "🙋🏻", { + "value" : "🙋🏻", "keywords" : [ "gesture", "hand", @@ -16774,8 +16774,7 @@ "person raising hand", "person raising hand: light skin tone", "raised" - ], - "value" : "🙋🏻" + ] }, "🙋🏼", { @@ -16792,7 +16791,6 @@ }, "🙋🏽", { - "value" : "🙋🏽", "keywords" : [ "gesture", "hand", @@ -16801,11 +16799,11 @@ "person raising hand", "person raising hand: medium skin tone", "raised" - ] + ], + "value" : "🙋🏽" }, "🙋🏾", { - "value" : "🙋🏾", "keywords" : [ "gesture", "hand", @@ -16814,7 +16812,8 @@ "person raising hand", "person raising hand: medium-dark skin tone", "raised" - ] + ], + "value" : "🙋🏾" }, "🙋🏿", { @@ -16859,7 +16858,6 @@ }, "🙋🏼‍♂️", { - "value" : "🙋🏼‍♂️", "keywords" : [ "gesture", "man", @@ -16867,11 +16865,11 @@ "man raising hand: medium-light skin tone", "medium-light skin tone", "raising hand" - ] + ], + "value" : "🙋🏼‍♂️" }, "🙋🏽‍♂️", { - "value" : "🙋🏽‍♂️", "keywords" : [ "gesture", "man", @@ -16879,11 +16877,11 @@ "man raising hand: medium skin tone", "medium skin tone", "raising hand" - ] + ], + "value" : "🙋🏽‍♂️" }, "🙋🏾‍♂️", { - "value" : "🙋🏾‍♂️", "keywords" : [ "gesture", "man", @@ -16891,10 +16889,12 @@ "man raising hand: medium-dark skin tone", "medium-dark skin tone", "raising hand" - ] + ], + "value" : "🙋🏾‍♂️" }, "🙋🏿‍♂️", { + "value" : "🙋🏿‍♂️", "keywords" : [ "dark skin tone", "gesture", @@ -16902,11 +16902,11 @@ "man raising hand", "man raising hand: dark skin tone", "raising hand" - ], - "value" : "🙋🏿‍♂️" + ] }, "🙋‍♀️", { + "value" : "🙋‍♀️", "keywords" : [ "gesture", "hand", @@ -16918,12 +16918,10 @@ "raise", "raising", "woman" - ], - "value" : "🙋‍♀️" + ] }, "🙋🏻‍♀️", { - "value" : "🙋🏻‍♀️", "keywords" : [ "gesture", "light skin tone", @@ -16931,10 +16929,12 @@ "woman", "woman raising hand", "woman raising hand: light skin tone" - ] + ], + "value" : "🙋🏻‍♀️" }, "🙋🏼‍♀️", { + "value" : "🙋🏼‍♀️", "keywords" : [ "gesture", "medium-light skin tone", @@ -16942,12 +16942,10 @@ "woman", "woman raising hand", "woman raising hand: medium-light skin tone" - ], - "value" : "🙋🏼‍♀️" + ] }, "🙋🏽‍♀️", { - "value" : "🙋🏽‍♀️", "keywords" : [ "gesture", "medium skin tone", @@ -16955,7 +16953,8 @@ "woman", "woman raising hand", "woman raising hand: medium skin tone" - ] + ], + "value" : "🙋🏽‍♀️" }, "🙋🏾‍♀️", { @@ -16983,6 +16982,7 @@ }, "🧏", { + "value" : "🧏", "keywords" : [ "accessibility", "deaf", @@ -16990,11 +16990,11 @@ "gesture", "hear", "person" - ], - "value" : "🧏" + ] }, "🧏🏻", { + "value" : "🧏🏻", "keywords" : [ "accessibility", "deaf", @@ -17003,12 +17003,10 @@ "ear", "hear", "light skin tone" - ], - "value" : "🧏🏻" + ] }, "🧏🏼", { - "value" : "🧏🏼", "keywords" : [ "accessibility", "deaf", @@ -17017,11 +17015,11 @@ "ear", "hear", "medium-light skin tone" - ] + ], + "value" : "🧏🏼" }, "🧏🏽", { - "value" : "🧏🏽", "keywords" : [ "accessibility", "deaf", @@ -17030,7 +17028,8 @@ "ear", "hear", "medium skin tone" - ] + ], + "value" : "🧏🏽" }, "🧏🏾", { @@ -17047,6 +17046,7 @@ }, "🧏🏿", { + "value" : "🧏🏿", "keywords" : [ "accessibility", "dark skin tone", @@ -17055,12 +17055,10 @@ "deaf person: dark skin tone", "ear", "hear" - ], - "value" : "🧏🏿" + ] }, "🧏‍♂️", { - "value" : "🧏‍♂️", "keywords" : [ "accessibility", "deaf", @@ -17068,27 +17066,28 @@ "gesture", "hear", "man" - ] + ], + "value" : "🧏‍♂️" }, "🧏🏻‍♂️", { + "value" : "🧏🏻‍♂️", "keywords" : [ "deaf", "deaf man: light skin tone", "light skin tone", "man" - ], - "value" : "🧏🏻‍♂️" + ] }, "🧏🏼‍♂️", { - "value" : "🧏🏼‍♂️", "keywords" : [ "deaf", "deaf man: medium-light skin tone", "man", "medium-light skin tone" - ] + ], + "value" : "🧏🏼‍♂️" }, "🧏🏽‍♂️", { @@ -17102,23 +17101,23 @@ }, "🧏🏾‍♂️", { - "value" : "🧏🏾‍♂️", "keywords" : [ "deaf", "deaf man: medium-dark skin tone", "man", "medium-dark skin tone" - ] + ], + "value" : "🧏🏾‍♂️" }, "🧏🏿‍♂️", { + "value" : "🧏🏿‍♂️", "keywords" : [ "dark skin tone", "deaf", "deaf man: dark skin tone", "man" - ], - "value" : "🧏🏿‍♂️" + ] }, "🧏‍♀️", { @@ -17144,13 +17143,13 @@ }, "🧏🏼‍♀️", { - "value" : "🧏🏼‍♀️", "keywords" : [ "deaf", "deaf woman: medium-light skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "🧏🏼‍♀️" }, "🧏🏽‍♀️", { @@ -17204,7 +17203,6 @@ }, "🙇🏻", { - "value" : "🙇🏻", "keywords" : [ "apology", "bow", @@ -17213,7 +17211,8 @@ "person bowing", "person bowing: light skin tone", "sorry" - ] + ], + "value" : "🙇🏻" }, "🙇🏼", { @@ -17243,6 +17242,7 @@ }, "🙇🏾", { + "value" : "🙇🏾", "keywords" : [ "apology", "bow", @@ -17251,11 +17251,11 @@ "person bowing", "person bowing: medium-dark skin tone", "sorry" - ], - "value" : "🙇🏾" + ] }, "🙇🏿", { + "value" : "🙇🏿", "keywords" : [ "apology", "bow", @@ -17264,8 +17264,7 @@ "person bowing", "person bowing: dark skin tone", "sorry" - ], - "value" : "🙇🏿" + ] }, "🙇‍♂️", { @@ -17303,7 +17302,6 @@ }, "🙇🏼‍♂️", { - "value" : "🙇🏼‍♂️", "keywords" : [ "apology", "bowing", @@ -17313,10 +17311,12 @@ "man bowing: medium-light skin tone", "medium-light skin tone", "sorry" - ] + ], + "value" : "🙇🏼‍♂️" }, "🙇🏽‍♂️", { + "value" : "🙇🏽‍♂️", "keywords" : [ "apology", "bowing", @@ -17326,12 +17326,10 @@ "man bowing: medium skin tone", "medium skin tone", "sorry" - ], - "value" : "🙇🏽‍♂️" + ] }, "🙇🏾‍♂️", { - "value" : "🙇🏾‍♂️", "keywords" : [ "apology", "bowing", @@ -17341,7 +17339,8 @@ "man bowing: medium-dark skin tone", "medium-dark skin tone", "sorry" - ] + ], + "value" : "🙇🏾‍♂️" }, "🙇🏿‍♂️", { @@ -17359,6 +17358,7 @@ }, "🙇‍♀️", { + "value" : "🙇‍♀️", "keywords" : [ "apology", "ask", @@ -17374,8 +17374,7 @@ "regret", "sorry", "woman" - ], - "value" : "🙇‍♀️" + ] }, "🙇🏻‍♀️", { @@ -17480,7 +17479,6 @@ }, "🤦🏼", { - "value" : "🤦🏼", "keywords" : [ "disbelief", "exasperation", @@ -17489,7 +17487,8 @@ "palm", "person facepalming", "person facepalming: medium-light skin tone" - ] + ], + "value" : "🤦🏼" }, "🤦🏽", { @@ -17506,7 +17505,6 @@ }, "🤦🏾", { - "value" : "🤦🏾", "keywords" : [ "disbelief", "exasperation", @@ -17515,7 +17513,8 @@ "palm", "person facepalming", "person facepalming: medium-dark skin tone" - ] + ], + "value" : "🤦🏾" }, "🤦🏿", { @@ -17532,7 +17531,6 @@ }, "🤦‍♂️", { - "value" : "🤦‍♂️", "keywords" : [ "again", "bewilder", @@ -17546,7 +17544,8 @@ "omg", "shock", "smh" - ] + ], + "value" : "🤦‍♂️" }, "🤦🏻‍♂️", { @@ -17563,6 +17562,7 @@ }, "🤦🏼‍♂️", { + "value" : "🤦🏼‍♂️", "keywords" : [ "disbelief", "exasperation", @@ -17571,11 +17571,11 @@ "man facepalming", "man facepalming: medium-light skin tone", "medium-light skin tone" - ], - "value" : "🤦🏼‍♂️" + ] }, "🤦🏽‍♂️", { + "value" : "🤦🏽‍♂️", "keywords" : [ "disbelief", "exasperation", @@ -17584,8 +17584,7 @@ "man facepalming", "man facepalming: medium skin tone", "medium skin tone" - ], - "value" : "🤦🏽‍♂️" + ] }, "🤦🏾‍♂️", { @@ -17602,6 +17601,7 @@ }, "🤦🏿‍♂️", { + "value" : "🤦🏿‍♂️", "keywords" : [ "dark skin tone", "disbelief", @@ -17610,8 +17610,7 @@ "man", "man facepalming", "man facepalming: dark skin tone" - ], - "value" : "🤦🏿‍♂️" + ] }, "🤦‍♀️", { @@ -17633,7 +17632,6 @@ }, "🤦🏻‍♀️", { - "value" : "🤦🏻‍♀️", "keywords" : [ "disbelief", "exasperation", @@ -17642,7 +17640,8 @@ "woman", "woman facepalming", "woman facepalming: light skin tone" - ] + ], + "value" : "🤦🏻‍♀️" }, "🤦🏼‍♀️", { @@ -17659,7 +17658,6 @@ }, "🤦🏽‍♀️", { - "value" : "🤦🏽‍♀️", "keywords" : [ "disbelief", "exasperation", @@ -17668,10 +17666,12 @@ "woman", "woman facepalming", "woman facepalming: medium skin tone" - ] + ], + "value" : "🤦🏽‍♀️" }, "🤦🏾‍♀️", { + "value" : "🤦🏾‍♀️", "keywords" : [ "disbelief", "exasperation", @@ -17680,11 +17680,11 @@ "woman", "woman facepalming", "woman facepalming: medium-dark skin tone" - ], - "value" : "🤦🏾‍♀️" + ] }, "🤦🏿‍♀️", { + "value" : "🤦🏿‍♀️", "keywords" : [ "dark skin tone", "disbelief", @@ -17693,11 +17693,11 @@ "woman", "woman facepalming", "woman facepalming: dark skin tone" - ], - "value" : "🤦🏿‍♀️" + ] }, "🤷", { + "value" : "🤷", "keywords" : [ "doubt", "dunno", @@ -17712,11 +17712,11 @@ "shrugging", "whatever", "who" - ], - "value" : "🤷" + ] }, "🤷🏻", { + "value" : "🤷🏻", "keywords" : [ "doubt", "ignorance", @@ -17725,8 +17725,7 @@ "person shrugging", "person shrugging: light skin tone", "shrug" - ], - "value" : "🤷🏻" + ] }, "🤷🏼", { @@ -17743,7 +17742,6 @@ }, "🤷🏽", { - "value" : "🤷🏽", "keywords" : [ "doubt", "ignorance", @@ -17752,7 +17750,8 @@ "person shrugging", "person shrugging: medium skin tone", "shrug" - ] + ], + "value" : "🤷🏽" }, "🤷🏾", { @@ -17769,7 +17768,6 @@ }, "🤷🏿", { - "value" : "🤷🏿", "keywords" : [ "dark skin tone", "doubt", @@ -17778,11 +17776,11 @@ "person shrugging", "person shrugging: dark skin tone", "shrug" - ] + ], + "value" : "🤷🏿" }, "🤷‍♂️", { - "value" : "🤷‍♂️", "keywords" : [ "doubt", "dunno", @@ -17797,11 +17795,11 @@ "shrugging", "whatever", "who" - ] + ], + "value" : "🤷‍♂️" }, "🤷🏻‍♂️", { - "value" : "🤷🏻‍♂️", "keywords" : [ "doubt", "ignorance", @@ -17811,11 +17809,11 @@ "man shrugging", "man shrugging: light skin tone", "shrug" - ] + ], + "value" : "🤷🏻‍♂️" }, "🤷🏼‍♂️", { - "value" : "🤷🏼‍♂️", "keywords" : [ "doubt", "ignorance", @@ -17825,11 +17823,11 @@ "man shrugging: medium-light skin tone", "medium-light skin tone", "shrug" - ] + ], + "value" : "🤷🏼‍♂️" }, "🤷🏽‍♂️", { - "value" : "🤷🏽‍♂️", "keywords" : [ "doubt", "ignorance", @@ -17839,7 +17837,8 @@ "man shrugging: medium skin tone", "medium skin tone", "shrug" - ] + ], + "value" : "🤷🏽‍♂️" }, "🤷🏾‍♂️", { @@ -17857,7 +17856,6 @@ }, "🤷🏿‍♂️", { - "value" : "🤷🏿‍♂️", "keywords" : [ "dark skin tone", "doubt", @@ -17867,7 +17865,8 @@ "man shrugging", "man shrugging: dark skin tone", "shrug" - ] + ], + "value" : "🤷🏿‍♂️" }, "🤷‍♀️", { @@ -17932,6 +17931,7 @@ }, "🤷🏾‍♀️", { + "value" : "🤷🏾‍♀️", "keywords" : [ "doubt", "ignorance", @@ -17941,12 +17941,10 @@ "woman", "woman shrugging", "woman shrugging: medium-dark skin tone" - ], - "value" : "🤷🏾‍♀️" + ] }, "🤷🏿‍♀️", { - "value" : "🤷🏿‍♀️", "keywords" : [ "dark skin tone", "doubt", @@ -17956,10 +17954,12 @@ "woman", "woman shrugging", "woman shrugging: dark skin tone" - ] + ], + "value" : "🤷🏿‍♀️" }, "🧑‍⚕️", { + "value" : "🧑‍⚕️", "keywords" : [ "doctor", "health", @@ -17967,8 +17967,7 @@ "nurse", "therapist", "worker" - ], - "value" : "🧑‍⚕️" + ] }, "🧑🏻‍⚕️", { @@ -17985,6 +17984,7 @@ }, "🧑🏼‍⚕️", { + "value" : "🧑🏼‍⚕️", "keywords" : [ "doctor", "health worker", @@ -17993,8 +17993,7 @@ "medium-light skin tone", "nurse", "therapist" - ], - "value" : "🧑🏼‍⚕️" + ] }, "🧑🏽‍⚕️", { @@ -18037,6 +18036,7 @@ }, "👨‍⚕️", { + "value" : "👨‍⚕️", "keywords" : [ "doctor", "health", @@ -18045,8 +18045,7 @@ "nurse", "therapist", "worker" - ], - "value" : "👨‍⚕️" + ] }, "👨🏻‍⚕️", { @@ -18120,6 +18119,7 @@ }, "👩‍⚕️", { + "value" : "👩‍⚕️", "keywords" : [ "doctor", "health", @@ -18128,12 +18128,10 @@ "therapist", "woman", "worker" - ], - "value" : "👩‍⚕️" + ] }, "👩🏻‍⚕️", { - "value" : "👩🏻‍⚕️", "keywords" : [ "doctor", "healthcare", @@ -18143,7 +18141,8 @@ "woman", "woman health worker", "woman health worker: light skin tone" - ] + ], + "value" : "👩🏻‍⚕️" }, "👩🏼‍⚕️", { @@ -18161,7 +18160,6 @@ }, "👩🏽‍⚕️", { - "value" : "👩🏽‍⚕️", "keywords" : [ "doctor", "healthcare", @@ -18171,11 +18169,11 @@ "woman", "woman health worker", "woman health worker: medium skin tone" - ] + ], + "value" : "👩🏽‍⚕️" }, "👩🏾‍⚕️", { - "value" : "👩🏾‍⚕️", "keywords" : [ "doctor", "healthcare", @@ -18185,7 +18183,8 @@ "woman", "woman health worker", "woman health worker: medium-dark skin tone" - ] + ], + "value" : "👩🏾‍⚕️" }, "👩🏿‍⚕️", { @@ -18221,23 +18220,23 @@ }, "🧑🏼‍🎓", { + "value" : "🧑🏼‍🎓", "keywords" : [ "graduate", "medium-light skin tone", "student", "student: medium-light skin tone" - ], - "value" : "🧑🏼‍🎓" + ] }, "🧑🏽‍🎓", { - "value" : "🧑🏽‍🎓", "keywords" : [ "graduate", "medium skin tone", "student", "student: medium skin tone" - ] + ], + "value" : "🧑🏽‍🎓" }, "🧑🏾‍🎓", { @@ -18251,13 +18250,13 @@ }, "🧑🏿‍🎓", { - "value" : "🧑🏿‍🎓", "keywords" : [ "dark skin tone", "graduate", "student", "student: dark skin tone" - ] + ], + "value" : "🧑🏿‍🎓" }, "👨‍🎓", { @@ -18292,14 +18291,14 @@ }, "👨🏽‍🎓", { - "value" : "👨🏽‍🎓", "keywords" : [ "graduate", "man", "man student: medium skin tone", "medium skin tone", "student" - ] + ], + "value" : "👨🏽‍🎓" }, "👨🏾‍🎓", { @@ -18356,36 +18355,36 @@ }, "👩🏽‍🎓", { + "value" : "👩🏽‍🎓", "keywords" : [ "graduate", "medium skin tone", "student", "woman", "woman student: medium skin tone" - ], - "value" : "👩🏽‍🎓" + ] }, "👩🏾‍🎓", { - "value" : "👩🏾‍🎓", "keywords" : [ "graduate", "medium-dark skin tone", "student", "woman", "woman student: medium-dark skin tone" - ] + ], + "value" : "👩🏾‍🎓" }, "👩🏿‍🎓", { + "value" : "👩🏿‍🎓", "keywords" : [ "dark skin tone", "graduate", "student", "woman", "woman student: dark skin tone" - ], - "value" : "👩🏿‍🎓" + ] }, "🧑‍🏫", { @@ -18399,6 +18398,7 @@ }, "🧑🏻‍🏫", { + "value" : "🧑🏻‍🏫", "keywords" : [ "instructor", "lecturer", @@ -18406,11 +18406,11 @@ "professor", "teacher", "teacher: light skin tone" - ], - "value" : "🧑🏻‍🏫" + ] }, "🧑🏼‍🏫", { + "value" : "🧑🏼‍🏫", "keywords" : [ "instructor", "lecturer", @@ -18418,8 +18418,7 @@ "professor", "teacher", "teacher: medium-light skin tone" - ], - "value" : "🧑🏼‍🏫" + ] }, "🧑🏽‍🏫", { @@ -18459,14 +18458,14 @@ }, "👨‍🏫", { + "value" : "👨‍🏫", "keywords" : [ "instructor", "lecturer", "man", "professor", "teacher" - ], - "value" : "👨‍🏫" + ] }, "👨🏻‍🏫", { @@ -18522,6 +18521,7 @@ }, "👨🏿‍🏫", { + "value" : "👨🏿‍🏫", "keywords" : [ "dark skin tone", "instructor", @@ -18530,19 +18530,18 @@ "man teacher: dark skin tone", "professor", "teacher" - ], - "value" : "👨🏿‍🏫" + ] }, "👩‍🏫", { - "value" : "👩‍🏫", "keywords" : [ "instructor", "lecturer", "professor", "teacher", "woman" - ] + ], + "value" : "👩‍🏫" }, "👩🏻‍🏫", { @@ -18559,7 +18558,6 @@ }, "👩🏼‍🏫", { - "value" : "👩🏼‍🏫", "keywords" : [ "instructor", "lecturer", @@ -18568,7 +18566,8 @@ "teacher", "woman", "woman teacher: medium-light skin tone" - ] + ], + "value" : "👩🏼‍🏫" }, "👩🏽‍🏫", { @@ -18585,6 +18584,7 @@ }, "👩🏾‍🏫", { + "value" : "👩🏾‍🏫", "keywords" : [ "instructor", "lecturer", @@ -18593,11 +18593,11 @@ "teacher", "woman", "woman teacher: medium-dark skin tone" - ], - "value" : "👩🏾‍🏫" + ] }, "👩🏿‍🏫", { + "value" : "👩🏿‍🏫", "keywords" : [ "dark skin tone", "instructor", @@ -18606,8 +18606,7 @@ "teacher", "woman", "woman teacher: dark skin tone" - ], - "value" : "👩🏿‍🏫" + ] }, "🧑‍⚖️", { @@ -18633,7 +18632,6 @@ }, "🧑🏼‍⚖️", { - "value" : "🧑🏼‍⚖️", "keywords" : [ "judge", "judge: medium-light skin tone", @@ -18641,7 +18639,8 @@ "law", "medium-light skin tone", "scales" - ] + ], + "value" : "🧑🏼‍⚖️" }, "🧑🏽‍⚖️", { @@ -18657,7 +18656,6 @@ }, "🧑🏾‍⚖️", { - "value" : "🧑🏾‍⚖️", "keywords" : [ "judge", "judge: medium-dark skin tone", @@ -18665,7 +18663,8 @@ "law", "medium-dark skin tone", "scales" - ] + ], + "value" : "🧑🏾‍⚖️" }, "🧑🏿‍⚖️", { @@ -18705,6 +18704,7 @@ }, "👨🏼‍⚖️", { + "value" : "👨🏼‍⚖️", "keywords" : [ "judge", "justice", @@ -18713,8 +18713,7 @@ "man judge: medium-light skin tone", "medium-light skin tone", "scales" - ], - "value" : "👨🏼‍⚖️" + ] }, "👨🏽‍⚖️", { @@ -18731,7 +18730,6 @@ }, "👨🏾‍⚖️", { - "value" : "👨🏾‍⚖️", "keywords" : [ "judge", "justice", @@ -18740,10 +18738,12 @@ "man judge: medium-dark skin tone", "medium-dark skin tone", "scales" - ] + ], + "value" : "👨🏾‍⚖️" }, "👨🏿‍⚖️", { + "value" : "👨🏿‍⚖️", "keywords" : [ "dark skin tone", "judge", @@ -18752,19 +18752,18 @@ "man", "man judge: dark skin tone", "scales" - ], - "value" : "👨🏿‍⚖️" + ] }, "👩‍⚖️", { - "value" : "👩‍⚖️", "keywords" : [ "judge", "justice", "law", "scales", "woman" - ] + ], + "value" : "👩‍⚖️" }, "👩🏻‍⚖️", { @@ -18820,6 +18819,7 @@ }, "👩🏿‍⚖️", { + "value" : "👩🏿‍⚖️", "keywords" : [ "dark skin tone", "judge", @@ -18828,8 +18828,7 @@ "scales", "woman", "woman judge: dark skin tone" - ], - "value" : "👩🏿‍⚖️" + ] }, "🧑‍🌾", { @@ -18842,14 +18841,14 @@ }, "🧑🏻‍🌾", { - "value" : "🧑🏻‍🌾", "keywords" : [ "farmer", "farmer: light skin tone", "gardener", "light skin tone", "rancher" - ] + ], + "value" : "🧑🏻‍🌾" }, "🧑🏼‍🌾", { @@ -18864,36 +18863,36 @@ }, "🧑🏽‍🌾", { - "value" : "🧑🏽‍🌾", "keywords" : [ "farmer", "farmer: medium skin tone", "gardener", "medium skin tone", "rancher" - ] + ], + "value" : "🧑🏽‍🌾" }, "🧑🏾‍🌾", { - "value" : "🧑🏾‍🌾", "keywords" : [ "farmer", "farmer: medium-dark skin tone", "gardener", "medium-dark skin tone", "rancher" - ] + ], + "value" : "🧑🏾‍🌾" }, "🧑🏿‍🌾", { - "value" : "🧑🏿‍🌾", "keywords" : [ "dark skin tone", "farmer", "farmer: dark skin tone", "gardener", "rancher" - ] + ], + "value" : "🧑🏿‍🌾" }, "👨‍🌾", { @@ -18907,7 +18906,6 @@ }, "👨🏻‍🌾", { - "value" : "👨🏻‍🌾", "keywords" : [ "farmer", "gardener", @@ -18915,11 +18913,11 @@ "man", "man farmer: light skin tone", "rancher" - ] + ], + "value" : "👨🏻‍🌾" }, "👨🏼‍🌾", { - "value" : "👨🏼‍🌾", "keywords" : [ "farmer", "gardener", @@ -18927,7 +18925,8 @@ "man farmer: medium-light skin tone", "medium-light skin tone", "rancher" - ] + ], + "value" : "👨🏼‍🌾" }, "👨🏽‍🌾", { @@ -18943,7 +18942,6 @@ }, "👨🏾‍🌾", { - "value" : "👨🏾‍🌾", "keywords" : [ "farmer", "gardener", @@ -18951,10 +18949,12 @@ "man farmer: medium-dark skin tone", "medium-dark skin tone", "rancher" - ] + ], + "value" : "👨🏾‍🌾" }, "👨🏿‍🌾", { + "value" : "👨🏿‍🌾", "keywords" : [ "dark skin tone", "farmer", @@ -18962,8 +18962,7 @@ "man", "man farmer: dark skin tone", "rancher" - ], - "value" : "👨🏿‍🌾" + ] }, "👩‍🌾", { @@ -18977,7 +18976,6 @@ }, "👩🏻‍🌾", { - "value" : "👩🏻‍🌾", "keywords" : [ "farmer", "gardener", @@ -18985,10 +18983,12 @@ "rancher", "woman", "woman farmer: light skin tone" - ] + ], + "value" : "👩🏻‍🌾" }, "👩🏼‍🌾", { + "value" : "👩🏼‍🌾", "keywords" : [ "farmer", "gardener", @@ -18996,8 +18996,7 @@ "rancher", "woman", "woman farmer: medium-light skin tone" - ], - "value" : "👩🏼‍🌾" + ] }, "👩🏽‍🌾", { @@ -19013,7 +19012,6 @@ }, "👩🏾‍🌾", { - "value" : "👩🏾‍🌾", "keywords" : [ "farmer", "gardener", @@ -19021,7 +19019,8 @@ "rancher", "woman", "woman farmer: medium-dark skin tone" - ] + ], + "value" : "👩🏾‍🌾" }, "👩🏿‍🌾", { @@ -19037,11 +19036,11 @@ }, "🧑‍🍳", { - "value" : "🧑‍🍳", "keywords" : [ "chef", "cook" - ] + ], + "value" : "🧑‍🍳" }, "🧑🏻‍🍳", { @@ -19055,13 +19054,13 @@ }, "🧑🏼‍🍳", { - "value" : "🧑🏼‍🍳", "keywords" : [ "chef", "cook", "cook: medium-light skin tone", "medium-light skin tone" - ] + ], + "value" : "🧑🏼‍🍳" }, "🧑🏽‍🍳", { @@ -19115,14 +19114,14 @@ }, "👨🏼‍🍳", { - "value" : "👨🏼‍🍳", "keywords" : [ "chef", "cook", "man", "man cook: medium-light skin tone", "medium-light skin tone" - ] + ], + "value" : "👨🏼‍🍳" }, "👨🏽‍🍳", { @@ -19179,36 +19178,36 @@ }, "👩🏼‍🍳", { - "value" : "👩🏼‍🍳", "keywords" : [ "chef", "cook", "medium-light skin tone", "woman", "woman cook: medium-light skin tone" - ] + ], + "value" : "👩🏼‍🍳" }, "👩🏽‍🍳", { - "value" : "👩🏽‍🍳", "keywords" : [ "chef", "cook", "medium skin tone", "woman", "woman cook: medium skin tone" - ] + ], + "value" : "👩🏽‍🍳" }, "👩🏾‍🍳", { + "value" : "👩🏾‍🍳", "keywords" : [ "chef", "cook", "medium-dark skin tone", "woman", "woman cook: medium-dark skin tone" - ], - "value" : "👩🏾‍🍳" + ] }, "👩🏿‍🍳", { @@ -19223,13 +19222,13 @@ }, "🧑‍🔧", { + "value" : "🧑‍🔧", "keywords" : [ "electrician", "mechanic", "plumber", "tradesperson" - ], - "value" : "🧑‍🔧" + ] }, "🧑🏻‍🔧", { @@ -19245,6 +19244,7 @@ }, "🧑🏼‍🔧", { + "value" : "🧑🏼‍🔧", "keywords" : [ "electrician", "mechanic", @@ -19252,8 +19252,7 @@ "medium-light skin tone", "plumber", "tradesperson" - ], - "value" : "🧑🏼‍🔧" + ] }, "🧑🏽‍🔧", { @@ -19281,6 +19280,7 @@ }, "🧑🏿‍🔧", { + "value" : "🧑🏿‍🔧", "keywords" : [ "dark skin tone", "electrician", @@ -19288,8 +19288,7 @@ "mechanic: dark skin tone", "plumber", "tradesperson" - ], - "value" : "🧑🏿‍🔧" + ] }, "👨‍🔧", { @@ -19330,7 +19329,6 @@ }, "👨🏽‍🔧", { - "value" : "👨🏽‍🔧", "keywords" : [ "electrician", "man", @@ -19339,11 +19337,11 @@ "medium skin tone", "plumber", "tradesperson" - ] + ], + "value" : "👨🏽‍🔧" }, "👨🏾‍🔧", { - "value" : "👨🏾‍🔧", "keywords" : [ "electrician", "man", @@ -19352,7 +19350,8 @@ "medium-dark skin tone", "plumber", "tradesperson" - ] + ], + "value" : "👨🏾‍🔧" }, "👨🏿‍🔧", { @@ -19369,14 +19368,14 @@ }, "👩‍🔧", { + "value" : "👩‍🔧", "keywords" : [ "electrician", "mechanic", "plumber", "tradesperson", "woman" - ], - "value" : "👩‍🔧" + ] }, "👩🏻‍🔧", { @@ -19393,6 +19392,7 @@ }, "👩🏼‍🔧", { + "value" : "👩🏼‍🔧", "keywords" : [ "electrician", "mechanic", @@ -19401,12 +19401,10 @@ "tradesperson", "woman", "woman mechanic: medium-light skin tone" - ], - "value" : "👩🏼‍🔧" + ] }, "👩🏽‍🔧", { - "value" : "👩🏽‍🔧", "keywords" : [ "electrician", "mechanic", @@ -19415,7 +19413,8 @@ "tradesperson", "woman", "woman mechanic: medium skin tone" - ] + ], + "value" : "👩🏽‍🔧" }, "👩🏾‍🔧", { @@ -19432,7 +19431,6 @@ }, "👩🏿‍🔧", { - "value" : "👩🏿‍🔧", "keywords" : [ "dark skin tone", "electrician", @@ -19441,20 +19439,22 @@ "tradesperson", "woman", "woman mechanic: dark skin tone" - ] + ], + "value" : "👩🏿‍🔧" }, "🧑‍🏭", { - "value" : "🧑‍🏭", "keywords" : [ "assembly", "factory", "industrial", "worker" - ] + ], + "value" : "🧑‍🏭" }, "🧑🏻‍🏭", { + "value" : "🧑🏻‍🏭", "keywords" : [ "assembly", "factory", @@ -19462,8 +19462,7 @@ "industrial", "light skin tone", "worker" - ], - "value" : "🧑🏻‍🏭" + ] }, "🧑🏼‍🏭", { @@ -19491,6 +19490,7 @@ }, "🧑🏾‍🏭", { + "value" : "🧑🏾‍🏭", "keywords" : [ "assembly", "factory", @@ -19498,11 +19498,11 @@ "industrial", "medium-dark skin tone", "worker" - ], - "value" : "🧑🏾‍🏭" + ] }, "🧑🏿‍🏭", { + "value" : "🧑🏿‍🏭", "keywords" : [ "assembly", "dark skin tone", @@ -19510,23 +19510,21 @@ "factory worker: dark skin tone", "industrial", "worker" - ], - "value" : "🧑🏿‍🏭" + ] }, "👨‍🏭", { + "value" : "👨‍🏭", "keywords" : [ "assembly", "factory", "industrial", "man", "worker" - ], - "value" : "👨‍🏭" + ] }, "👨🏻‍🏭", { - "value" : "👨🏻‍🏭", "keywords" : [ "assembly", "factory", @@ -19535,11 +19533,11 @@ "man", "man factory worker: light skin tone", "worker" - ] + ], + "value" : "👨🏻‍🏭" }, "👨🏼‍🏭", { - "value" : "👨🏼‍🏭", "keywords" : [ "assembly", "factory", @@ -19548,7 +19546,8 @@ "man factory worker: medium-light skin tone", "medium-light skin tone", "worker" - ] + ], + "value" : "👨🏼‍🏭" }, "👨🏽‍🏭", { @@ -19602,7 +19601,6 @@ }, "👩🏻‍🏭", { - "value" : "👩🏻‍🏭", "keywords" : [ "assembly", "factory", @@ -19611,7 +19609,8 @@ "woman", "woman factory worker: light skin tone", "worker" - ] + ], + "value" : "👩🏻‍🏭" }, "👩🏼‍🏭", { @@ -19641,7 +19640,6 @@ }, "👩🏾‍🏭", { - "value" : "👩🏾‍🏭", "keywords" : [ "assembly", "factory", @@ -19650,10 +19648,12 @@ "woman", "woman factory worker: medium-dark skin tone", "worker" - ] + ], + "value" : "👩🏾‍🏭" }, "👩🏿‍🏭", { + "value" : "👩🏿‍🏭", "keywords" : [ "assembly", "dark skin tone", @@ -19662,11 +19662,11 @@ "woman", "woman factory worker: dark skin tone", "worker" - ], - "value" : "👩🏿‍🏭" + ] }, "🧑‍💼", { + "value" : "🧑‍💼", "keywords" : [ "architect", "business", @@ -19674,11 +19674,11 @@ "office", "white-collar", "worker" - ], - "value" : "🧑‍💼" + ] }, "🧑🏻‍💼", { + "value" : "🧑🏻‍💼", "keywords" : [ "architect", "business", @@ -19687,12 +19687,10 @@ "office worker", "office worker: light skin tone", "white-collar" - ], - "value" : "🧑🏻‍💼" + ] }, "🧑🏼‍💼", { - "value" : "🧑🏼‍💼", "keywords" : [ "architect", "business", @@ -19701,7 +19699,8 @@ "office worker", "office worker: medium-light skin tone", "white-collar" - ] + ], + "value" : "🧑🏼‍💼" }, "🧑🏽‍💼", { @@ -19718,6 +19717,7 @@ }, "🧑🏾‍💼", { + "value" : "🧑🏾‍💼", "keywords" : [ "architect", "business", @@ -19726,11 +19726,11 @@ "office worker", "office worker: medium-dark skin tone", "white-collar" - ], - "value" : "🧑🏾‍💼" + ] }, "🧑🏿‍💼", { + "value" : "🧑🏿‍💼", "keywords" : [ "architect", "business", @@ -19739,12 +19739,10 @@ "office worker", "office worker: dark skin tone", "white-collar" - ], - "value" : "🧑🏿‍💼" + ] }, "👨‍💼", { - "value" : "👨‍💼", "keywords" : [ "architect", "business", @@ -19753,10 +19751,12 @@ "office", "white-collar", "worker" - ] + ], + "value" : "👨‍💼" }, "👨🏻‍💼", { + "value" : "👨🏻‍💼", "keywords" : [ "architect", "business", @@ -19766,8 +19766,7 @@ "man office worker: light skin tone", "manager", "white-collar" - ], - "value" : "👨🏻‍💼" + ] }, "👨🏼‍💼", { @@ -19785,7 +19784,6 @@ }, "👨🏽‍💼", { - "value" : "👨🏽‍💼", "keywords" : [ "architect", "business", @@ -19795,7 +19793,8 @@ "manager", "medium skin tone", "white-collar" - ] + ], + "value" : "👨🏽‍💼" }, "👨🏾‍💼", { @@ -19813,7 +19812,6 @@ }, "👨🏿‍💼", { - "value" : "👨🏿‍💼", "keywords" : [ "architect", "business", @@ -19823,10 +19821,12 @@ "man office worker: dark skin tone", "manager", "white-collar" - ] + ], + "value" : "👨🏿‍💼" }, "👩‍💼", { + "value" : "👩‍💼", "keywords" : [ "architect", "business", @@ -19835,12 +19835,10 @@ "white-collar", "woman", "worker" - ], - "value" : "👩‍💼" + ] }, "👩🏻‍💼", { - "value" : "👩🏻‍💼", "keywords" : [ "architect", "business", @@ -19850,7 +19848,8 @@ "woman", "woman office worker", "woman office worker: light skin tone" - ] + ], + "value" : "👩🏻‍💼" }, "👩🏼‍💼", { @@ -19868,7 +19867,6 @@ }, "👩🏽‍💼", { - "value" : "👩🏽‍💼", "keywords" : [ "architect", "business", @@ -19878,11 +19876,11 @@ "woman", "woman office worker", "woman office worker: medium skin tone" - ] + ], + "value" : "👩🏽‍💼" }, "👩🏾‍💼", { - "value" : "👩🏾‍💼", "keywords" : [ "architect", "business", @@ -19892,10 +19890,12 @@ "woman", "woman office worker", "woman office worker: medium-dark skin tone" - ] + ], + "value" : "👩🏾‍💼" }, "👩🏿‍💼", { + "value" : "👩🏿‍💼", "keywords" : [ "architect", "business", @@ -19905,8 +19905,7 @@ "woman", "woman office worker", "woman office worker: dark skin tone" - ], - "value" : "👩🏿‍💼" + ] }, "🧑‍🔬", { @@ -19922,7 +19921,6 @@ }, "🧑🏻‍🔬", { - "value" : "🧑🏻‍🔬", "keywords" : [ "biologist", "chemist", @@ -19931,11 +19929,11 @@ "physicist", "scientist", "scientist: light skin tone" - ] + ], + "value" : "🧑🏻‍🔬" }, "🧑🏼‍🔬", { - "value" : "🧑🏼‍🔬", "keywords" : [ "biologist", "chemist", @@ -19944,7 +19942,8 @@ "physicist", "scientist", "scientist: medium-light skin tone" - ] + ], + "value" : "🧑🏼‍🔬" }, "🧑🏽‍🔬", { @@ -19974,7 +19973,6 @@ }, "🧑🏿‍🔬", { - "value" : "🧑🏿‍🔬", "keywords" : [ "biologist", "chemist", @@ -19983,7 +19981,8 @@ "physicist", "scientist", "scientist: dark skin tone" - ] + ], + "value" : "🧑🏿‍🔬" }, "👨‍🔬", { @@ -20014,7 +20013,6 @@ }, "👨🏼‍🔬", { - "value" : "👨🏼‍🔬", "keywords" : [ "biologist", "chemist", @@ -20024,7 +20022,8 @@ "medium-light skin tone", "physicist", "scientist" - ] + ], + "value" : "👨🏼‍🔬" }, "👨🏽‍🔬", { @@ -20042,6 +20041,7 @@ }, "👨🏾‍🔬", { + "value" : "👨🏾‍🔬", "keywords" : [ "biologist", "chemist", @@ -20051,8 +20051,7 @@ "medium-dark skin tone", "physicist", "scientist" - ], - "value" : "👨🏾‍🔬" + ] }, "👨🏿‍🔬", { @@ -20070,7 +20069,6 @@ }, "👩‍🔬", { - "value" : "👩‍🔬", "keywords" : [ "biologist", "chemist", @@ -20079,7 +20077,8 @@ "physicist", "scientist", "woman" - ] + ], + "value" : "👩‍🔬" }, "👩🏻‍🔬", { @@ -20111,7 +20110,6 @@ }, "👩🏽‍🔬", { - "value" : "👩🏽‍🔬", "keywords" : [ "biologist", "chemist", @@ -20121,7 +20119,8 @@ "scientist", "woman", "woman scientist: medium skin tone" - ] + ], + "value" : "👩🏽‍🔬" }, "👩🏾‍🔬", { @@ -20165,7 +20164,6 @@ }, "🧑🏻‍💻", { - "value" : "🧑🏻‍💻", "keywords" : [ "coder", "developer", @@ -20174,7 +20172,8 @@ "software", "technologist", "technologist: light skin tone" - ] + ], + "value" : "🧑🏻‍💻" }, "🧑🏼‍💻", { @@ -20191,7 +20190,6 @@ }, "🧑🏽‍💻", { - "value" : "🧑🏽‍💻", "keywords" : [ "coder", "developer", @@ -20200,7 +20198,8 @@ "software", "technologist", "technologist: medium skin tone" - ] + ], + "value" : "🧑🏽‍💻" }, "🧑🏾‍💻", { @@ -20217,7 +20216,6 @@ }, "🧑🏿‍💻", { - "value" : "🧑🏿‍💻", "keywords" : [ "coder", "dark skin tone", @@ -20226,11 +20224,11 @@ "software", "technologist", "technologist: dark skin tone" - ] + ], + "value" : "🧑🏿‍💻" }, "👨‍💻", { - "value" : "👨‍💻", "keywords" : [ "coder", "computer", @@ -20239,10 +20237,12 @@ "man", "software", "technologist" - ] + ], + "value" : "👨‍💻" }, "👨🏻‍💻", { + "value" : "👨🏻‍💻", "keywords" : [ "coder", "developer", @@ -20252,8 +20252,7 @@ "man technologist: light skin tone", "software", "technologist" - ], - "value" : "👨🏻‍💻" + ] }, "👨🏼‍💻", { @@ -20271,7 +20270,6 @@ }, "👨🏽‍💻", { - "value" : "👨🏽‍💻", "keywords" : [ "coder", "developer", @@ -20281,7 +20279,8 @@ "medium skin tone", "software", "technologist" - ] + ], + "value" : "👨🏽‍💻" }, "👨🏾‍💻", { @@ -20299,7 +20298,6 @@ }, "👨🏿‍💻", { - "value" : "👨🏿‍💻", "keywords" : [ "coder", "dark skin tone", @@ -20309,7 +20307,8 @@ "man technologist: dark skin tone", "software", "technologist" - ] + ], + "value" : "👨🏿‍💻" }, "👩‍💻", { @@ -20326,7 +20325,6 @@ }, "👩🏻‍💻", { - "value" : "👩🏻‍💻", "keywords" : [ "coder", "developer", @@ -20336,11 +20334,11 @@ "technologist", "woman", "woman technologist: light skin tone" - ] + ], + "value" : "👩🏻‍💻" }, "👩🏼‍💻", { - "value" : "👩🏼‍💻", "keywords" : [ "coder", "developer", @@ -20350,10 +20348,12 @@ "technologist", "woman", "woman technologist: medium-light skin tone" - ] + ], + "value" : "👩🏼‍💻" }, "👩🏽‍💻", { + "value" : "👩🏽‍💻", "keywords" : [ "coder", "developer", @@ -20363,8 +20363,7 @@ "technologist", "woman", "woman technologist: medium skin tone" - ], - "value" : "👩🏽‍💻" + ] }, "👩🏾‍💻", { @@ -20447,6 +20446,7 @@ }, "🧑🏾‍🎤", { + "value" : "🧑🏾‍🎤", "keywords" : [ "actor", "entertainer", @@ -20455,11 +20455,11 @@ "singer", "singer: medium-dark skin tone", "star" - ], - "value" : "🧑🏾‍🎤" + ] }, "🧑🏿‍🎤", { + "value" : "🧑🏿‍🎤", "keywords" : [ "actor", "dark skin tone", @@ -20468,8 +20468,7 @@ "singer", "singer: dark skin tone", "star" - ], - "value" : "🧑🏿‍🎤" + ] }, "👨‍🎤", { @@ -20514,6 +20513,7 @@ }, "👨🏽‍🎤", { + "value" : "👨🏽‍🎤", "keywords" : [ "actor", "entertainer", @@ -20523,8 +20523,7 @@ "rock", "singer", "star" - ], - "value" : "👨🏽‍🎤" + ] }, "👨🏾‍🎤", { @@ -20556,6 +20555,7 @@ }, "👩‍🎤", { + "value" : "👩‍🎤", "keywords" : [ "actor", "entertainer", @@ -20564,11 +20564,11 @@ "singer", "star", "woman" - ], - "value" : "👩‍🎤" + ] }, "👩🏻‍🎤", { + "value" : "👩🏻‍🎤", "keywords" : [ "actor", "entertainer", @@ -20578,11 +20578,11 @@ "star", "woman", "woman singer: light skin tone" - ], - "value" : "👩🏻‍🎤" + ] }, "👩🏼‍🎤", { + "value" : "👩🏼‍🎤", "keywords" : [ "actor", "entertainer", @@ -20592,8 +20592,7 @@ "star", "woman", "woman singer: medium-light skin tone" - ], - "value" : "👩🏼‍🎤" + ] }, "👩🏽‍🎤", { @@ -20657,13 +20656,13 @@ }, "🧑🏼‍🎨", { + "value" : "🧑🏼‍🎨", "keywords" : [ "artist", "artist: medium-light skin tone", "medium-light skin tone", "palette" - ], - "value" : "🧑🏼‍🎨" + ] }, "🧑🏽‍🎨", { @@ -20677,32 +20676,32 @@ }, "🧑🏾‍🎨", { - "value" : "🧑🏾‍🎨", "keywords" : [ "artist", "artist: medium-dark skin tone", "medium-dark skin tone", "palette" - ] + ], + "value" : "🧑🏾‍🎨" }, "🧑🏿‍🎨", { - "value" : "🧑🏿‍🎨", "keywords" : [ "artist", "artist: dark skin tone", "dark skin tone", "palette" - ] + ], + "value" : "🧑🏿‍🎨" }, "👨‍🎨", { - "value" : "👨‍🎨", "keywords" : [ "artist", "man", "palette" - ] + ], + "value" : "👨‍🎨" }, "👨🏻‍🎨", { @@ -20728,14 +20727,14 @@ }, "👨🏽‍🎨", { - "value" : "👨🏽‍🎨", "keywords" : [ "artist", "man", "man artist: medium skin tone", "medium skin tone", "palette" - ] + ], + "value" : "👨🏽‍🎨" }, "👨🏾‍🎨", { @@ -20770,25 +20769,25 @@ }, "👩🏻‍🎨", { + "value" : "👩🏻‍🎨", "keywords" : [ "artist", "light skin tone", "palette", "woman", "woman artist: light skin tone" - ], - "value" : "👩🏻‍🎨" + ] }, "👩🏼‍🎨", { - "value" : "👩🏼‍🎨", "keywords" : [ "artist", "medium-light skin tone", "palette", "woman", "woman artist: medium-light skin tone" - ] + ], + "value" : "👩🏼‍🎨" }, "👩🏽‍🎨", { @@ -20814,52 +20813,52 @@ }, "👩🏿‍🎨", { + "value" : "👩🏿‍🎨", "keywords" : [ "artist", "dark skin tone", "palette", "woman", "woman artist: dark skin tone" - ], - "value" : "👩🏿‍🎨" + ] }, "🧑‍✈️", { + "value" : "🧑‍✈️", "keywords" : [ "pilot", "plane" - ], - "value" : "🧑‍✈️" + ] }, "🧑🏻‍✈️", { + "value" : "🧑🏻‍✈️", "keywords" : [ "light skin tone", "pilot", "pilot: light skin tone", "plane" - ], - "value" : "🧑🏻‍✈️" + ] }, "🧑🏼‍✈️", { + "value" : "🧑🏼‍✈️", "keywords" : [ "medium-light skin tone", "pilot", "pilot: medium-light skin tone", "plane" - ], - "value" : "🧑🏼‍✈️" + ] }, "🧑🏽‍✈️", { + "value" : "🧑🏽‍✈️", "keywords" : [ "medium skin tone", "pilot", "pilot: medium skin tone", "plane" - ], - "value" : "🧑🏽‍✈️" + ] }, "🧑🏾‍✈️", { @@ -20873,13 +20872,13 @@ }, "🧑🏿‍✈️", { + "value" : "🧑🏿‍✈️", "keywords" : [ "dark skin tone", "pilot", "pilot: dark skin tone", "plane" - ], - "value" : "🧑🏿‍✈️" + ] }, "👨‍✈️", { @@ -20914,25 +20913,25 @@ }, "👨🏽‍✈️", { - "value" : "👨🏽‍✈️", "keywords" : [ "man", "man pilot: medium skin tone", "medium skin tone", "pilot", "plane" - ] + ], + "value" : "👨🏽‍✈️" }, "👨🏾‍✈️", { + "value" : "👨🏾‍✈️", "keywords" : [ "man", "man pilot: medium-dark skin tone", "medium-dark skin tone", "pilot", "plane" - ], - "value" : "👨🏾‍✈️" + ] }, "👨🏿‍✈️", { @@ -20989,14 +20988,14 @@ }, "👩🏾‍✈️", { - "value" : "👩🏾‍✈️", "keywords" : [ "medium-dark skin tone", "pilot", "plane", "woman", "woman pilot: medium-dark skin tone" - ] + ], + "value" : "👩🏾‍✈️" }, "👩🏿‍✈️", { @@ -21011,12 +21010,12 @@ }, "🧑‍🚀", { + "value" : "🧑‍🚀", "keywords" : [ "astronaut", "rocket", "space" - ], - "value" : "🧑‍🚀" + ] }, "🧑🏻‍🚀", { @@ -21040,13 +21039,13 @@ }, "🧑🏽‍🚀", { - "value" : "🧑🏽‍🚀", "keywords" : [ "astronaut", "astronaut: medium skin tone", "medium skin tone", "rocket" - ] + ], + "value" : "🧑🏽‍🚀" }, "🧑🏾‍🚀", { @@ -21070,46 +21069,46 @@ }, "👨‍🚀", { + "value" : "👨‍🚀", "keywords" : [ "astronaut", "man", "rocket", "space" - ], - "value" : "👨‍🚀" + ] }, "👨🏻‍🚀", { - "value" : "👨🏻‍🚀", "keywords" : [ "astronaut", "light skin tone", "man", "man astronaut: light skin tone", "rocket" - ] + ], + "value" : "👨🏻‍🚀" }, "👨🏼‍🚀", { - "value" : "👨🏼‍🚀", "keywords" : [ "astronaut", "man", "man astronaut: medium-light skin tone", "medium-light skin tone", "rocket" - ] + ], + "value" : "👨🏼‍🚀" }, "👨🏽‍🚀", { - "value" : "👨🏽‍🚀", "keywords" : [ "astronaut", "man", "man astronaut: medium skin tone", "medium skin tone", "rocket" - ] + ], + "value" : "👨🏽‍🚀" }, "👨🏾‍🚀", { @@ -21167,14 +21166,14 @@ }, "👩🏽‍🚀", { + "value" : "👩🏽‍🚀", "keywords" : [ "astronaut", "medium skin tone", "rocket", "woman", "woman astronaut: medium skin tone" - ], - "value" : "👩🏽‍🚀" + ] }, "👩🏾‍🚀", { @@ -21209,36 +21208,36 @@ }, "🧑🏻‍🚒", { + "value" : "🧑🏻‍🚒", "keywords" : [ "fire", "firefighter", "firefighter: light skin tone", "firetruck", "light skin tone" - ], - "value" : "🧑🏻‍🚒" + ] }, "🧑🏼‍🚒", { - "value" : "🧑🏼‍🚒", "keywords" : [ "fire", "firefighter", "firefighter: medium-light skin tone", "firetruck", "medium-light skin tone" - ] + ], + "value" : "🧑🏼‍🚒" }, "🧑🏽‍🚒", { + "value" : "🧑🏽‍🚒", "keywords" : [ "fire", "firefighter", "firefighter: medium skin tone", "firetruck", "medium skin tone" - ], - "value" : "🧑🏽‍🚒" + ] }, "🧑🏾‍🚒", { @@ -21253,24 +21252,24 @@ }, "🧑🏿‍🚒", { - "value" : "🧑🏿‍🚒", "keywords" : [ "dark skin tone", "fire", "firefighter", "firefighter: dark skin tone", "firetruck" - ] + ], + "value" : "🧑🏿‍🚒" }, "👨‍🚒", { + "value" : "👨‍🚒", "keywords" : [ "fire", "firefighter", "firetruck", "man" - ], - "value" : "👨‍🚒" + ] }, "👨🏻‍🚒", { @@ -21285,14 +21284,14 @@ }, "👨🏼‍🚒", { + "value" : "👨🏼‍🚒", "keywords" : [ "firefighter", "firetruck", "man", "man firefighter: medium-light skin tone", "medium-light skin tone" - ], - "value" : "👨🏼‍🚒" + ] }, "👨🏽‍🚒", { @@ -21339,14 +21338,14 @@ }, "👩🏻‍🚒", { + "value" : "👩🏻‍🚒", "keywords" : [ "firefighter", "firetruck", "light skin tone", "woman", "woman firefighter: light skin tone" - ], - "value" : "👩🏻‍🚒" + ] }, "👩🏼‍🚒", { @@ -21361,25 +21360,25 @@ }, "👩🏽‍🚒", { + "value" : "👩🏽‍🚒", "keywords" : [ "firefighter", "firetruck", "medium skin tone", "woman", "woman firefighter: medium skin tone" - ], - "value" : "👩🏽‍🚒" + ] }, "👩🏾‍🚒", { - "value" : "👩🏾‍🚒", "keywords" : [ "firefighter", "firetruck", "medium-dark skin tone", "woman", "woman firefighter: medium-dark skin tone" - ] + ], + "value" : "👩🏾‍🚒" }, "👩🏿‍🚒", { @@ -21394,6 +21393,7 @@ }, "👮", { + "value" : "👮", "keywords" : [ "apprehend", "arrest", @@ -21405,30 +21405,29 @@ "police", "pulled", "undercover" - ], - "value" : "👮" + ] }, "👮🏻", { - "value" : "👮🏻", "keywords" : [ "cop", "light skin tone", "officer", "police", "police officer: light skin tone" - ] + ], + "value" : "👮🏻" }, "👮🏼", { + "value" : "👮🏼", "keywords" : [ "cop", "medium-light skin tone", "officer", "police", "police officer: medium-light skin tone" - ], - "value" : "👮🏼" + ] }, "👮🏽", { @@ -21454,14 +21453,14 @@ }, "👮🏿", { - "value" : "👮🏿", "keywords" : [ "cop", "dark skin tone", "officer", "police", "police officer: dark skin tone" - ] + ], + "value" : "👮🏿" }, "👮‍♂️", { @@ -21494,7 +21493,6 @@ }, "👮🏼‍♂️", { - "value" : "👮🏼‍♂️", "keywords" : [ "cop", "man", @@ -21502,10 +21500,12 @@ "medium-light skin tone", "officer", "police" - ] + ], + "value" : "👮🏼‍♂️" }, "👮🏽‍♂️", { + "value" : "👮🏽‍♂️", "keywords" : [ "cop", "man", @@ -21513,8 +21513,7 @@ "medium skin tone", "officer", "police" - ], - "value" : "👮🏽‍♂️" + ] }, "👮🏾‍♂️", { @@ -21530,6 +21529,7 @@ }, "👮🏿‍♂️", { + "value" : "👮🏿‍♂️", "keywords" : [ "cop", "dark skin tone", @@ -21537,8 +21537,7 @@ "man police officer: dark skin tone", "officer", "police" - ], - "value" : "👮🏿‍♂️" + ] }, "👮‍♀️", { @@ -21595,7 +21594,6 @@ }, "👮🏾‍♀️", { - "value" : "👮🏾‍♀️", "keywords" : [ "cop", "medium-dark skin tone", @@ -21603,7 +21601,8 @@ "police", "woman", "woman police officer: medium-dark skin tone" - ] + ], + "value" : "👮🏾‍♀️" }, "👮🏿‍♀️", { @@ -21628,25 +21627,25 @@ }, "🕵🏻", { + "value" : "🕵🏻", "keywords" : [ "detective", "detective: light skin tone", "light skin tone", "sleuth", "spy" - ], - "value" : "🕵🏻" + ] }, "🕵🏼", { - "value" : "🕵🏼", "keywords" : [ "detective", "detective: medium-light skin tone", "medium-light skin tone", "sleuth", "spy" - ] + ], + "value" : "🕵🏼" }, "🕵🏽", { @@ -21661,14 +21660,14 @@ }, "🕵🏾", { + "value" : "🕵🏾", "keywords" : [ "detective", "detective: medium-dark skin tone", "medium-dark skin tone", "sleuth", "spy" - ], - "value" : "🕵🏾" + ] }, "🕵🏿", { @@ -21693,6 +21692,7 @@ }, "🕵🏻‍♂️", { + "value" : "🕵🏻‍♂️", "keywords" : [ "detective", "light skin tone", @@ -21700,11 +21700,11 @@ "man detective: light skin tone", "sleuth", "spy" - ], - "value" : "🕵🏻‍♂️" + ] }, "🕵🏼‍♂️", { + "value" : "🕵🏼‍♂️", "keywords" : [ "detective", "man", @@ -21712,12 +21712,10 @@ "medium-light skin tone", "sleuth", "spy" - ], - "value" : "🕵🏼‍♂️" + ] }, "🕵🏽‍♂️", { - "value" : "🕵🏽‍♂️", "keywords" : [ "detective", "man", @@ -21725,7 +21723,8 @@ "medium skin tone", "sleuth", "spy" - ] + ], + "value" : "🕵🏽‍♂️" }, "🕵🏾‍♂️", { @@ -21753,13 +21752,13 @@ }, "🕵️‍♀️", { - "value" : "🕵️‍♀️", "keywords" : [ "detective", "sleuth", "spy", "woman" - ] + ], + "value" : "🕵️‍♀️" }, "🕵🏻‍♀️", { @@ -21799,7 +21798,6 @@ }, "🕵🏾‍♀️", { - "value" : "🕵🏾‍♀️", "keywords" : [ "detective", "medium-dark skin tone", @@ -21807,7 +21805,8 @@ "spy", "woman", "woman detective: medium-dark skin tone" - ] + ], + "value" : "🕵🏾‍♀️" }, "🕵🏿‍♀️", { @@ -21870,12 +21869,12 @@ }, "💂🏿", { + "value" : "💂🏿", "keywords" : [ "dark skin tone", "guard", "guard: dark skin tone" - ], - "value" : "💂🏿" + ] }, "💂‍♂️", { @@ -21891,43 +21890,43 @@ }, "💂🏻‍♂️", { + "value" : "💂🏻‍♂️", "keywords" : [ "guard", "light skin tone", "man", "man guard: light skin tone" - ], - "value" : "💂🏻‍♂️" + ] }, "💂🏼‍♂️", { - "value" : "💂🏼‍♂️", "keywords" : [ "guard", "man", "man guard: medium-light skin tone", "medium-light skin tone" - ] + ], + "value" : "💂🏼‍♂️" }, "💂🏽‍♂️", { + "value" : "💂🏽‍♂️", "keywords" : [ "guard", "man", "man guard: medium skin tone", "medium skin tone" - ], - "value" : "💂🏽‍♂️" + ] }, "💂🏾‍♂️", { - "value" : "💂🏾‍♂️", "keywords" : [ "guard", "man", "man guard: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "💂🏾‍♂️" }, "💂🏿‍♂️", { @@ -21973,23 +21972,23 @@ }, "💂🏽‍♀️", { - "value" : "💂🏽‍♀️", "keywords" : [ "guard", "medium skin tone", "woman", "woman guard: medium skin tone" - ] + ], + "value" : "💂🏽‍♀️" }, "💂🏾‍♀️", { - "value" : "💂🏾‍♀️", "keywords" : [ "guard", "medium-dark skin tone", "woman", "woman guard: medium-dark skin tone" - ] + ], + "value" : "💂🏾‍♀️" }, "💂🏿‍♀️", { @@ -22021,7 +22020,6 @@ }, "🥷🏻", { - "value" : "🥷🏻", "keywords" : [ "fighter", "hidden", @@ -22029,11 +22027,11 @@ "ninja", "ninja: light skin tone", "stealth" - ] + ], + "value" : "🥷🏻" }, "🥷🏼", { - "value" : "🥷🏼", "keywords" : [ "fighter", "hidden", @@ -22041,7 +22039,8 @@ "ninja", "ninja: medium-light skin tone", "stealth" - ] + ], + "value" : "🥷🏼" }, "🥷🏽", { @@ -22143,14 +22142,14 @@ }, "👷🏿", { + "value" : "👷🏿", "keywords" : [ "construction", "construction worker: dark skin tone", "dark skin tone", "hat", "worker" - ], - "value" : "👷🏿" + ] }, "👷‍♂️", { @@ -22193,25 +22192,25 @@ }, "👷🏽‍♂️", { - "value" : "👷🏽‍♂️", "keywords" : [ "construction", "man", "man construction worker: medium skin tone", "medium skin tone", "worker" - ] + ], + "value" : "👷🏽‍♂️" }, "👷🏾‍♂️", { - "value" : "👷🏾‍♂️", "keywords" : [ "construction", "man", "man construction worker: medium-dark skin tone", "medium-dark skin tone", "worker" - ] + ], + "value" : "👷🏾‍♂️" }, "👷🏿‍♂️", { @@ -22266,36 +22265,36 @@ }, "👷🏽‍♀️", { - "value" : "👷🏽‍♀️", "keywords" : [ "construction", "medium skin tone", "woman", "woman construction worker: medium skin tone", "worker" - ] + ], + "value" : "👷🏽‍♀️" }, "👷🏾‍♀️", { + "value" : "👷🏾‍♀️", "keywords" : [ "construction", "medium-dark skin tone", "woman", "woman construction worker: medium-dark skin tone", "worker" - ], - "value" : "👷🏾‍♀️" + ] }, "👷🏿‍♀️", { - "value" : "👷🏿‍♀️", "keywords" : [ "construction", "dark skin tone", "woman", "woman construction worker: dark skin tone", "worker" - ] + ], + "value" : "👷🏿‍♀️" }, "🤴", { @@ -22314,12 +22313,12 @@ }, "🤴🏻", { + "value" : "🤴🏻", "keywords" : [ "light skin tone", "prince", "prince: light skin tone" - ], - "value" : "🤴🏻" + ] }, "🤴🏼", { @@ -22359,7 +22358,6 @@ }, "👸", { - "value" : "👸", "keywords" : [ "crown", "fairy", @@ -22370,29 +22368,30 @@ "royal", "royalty", "tale" - ] + ], + "value" : "👸" }, "👸🏻", { + "value" : "👸🏻", "keywords" : [ "fairy tale", "fantasy", "light skin tone", "princess", "princess: light skin tone" - ], - "value" : "👸🏻" + ] }, "👸🏼", { - "value" : "👸🏼", "keywords" : [ "fairy tale", "fantasy", "medium-light skin tone", "princess", "princess: medium-light skin tone" - ] + ], + "value" : "👸🏼" }, "👸🏽", { @@ -22407,34 +22406,34 @@ }, "👸🏾", { + "value" : "👸🏾", "keywords" : [ "fairy tale", "fantasy", "medium-dark skin tone", "princess", "princess: medium-dark skin tone" - ], - "value" : "👸🏾" + ] }, "👸🏿", { + "value" : "👸🏿", "keywords" : [ "dark skin tone", "fairy tale", "fantasy", "princess", "princess: dark skin tone" - ], - "value" : "👸🏿" + ] }, "👳", { + "value" : "👳", "keywords" : [ "person", "turban", "wearing" - ], - "value" : "👳" + ] }, "👳🏻", { @@ -22448,23 +22447,23 @@ }, "👳🏼", { - "value" : "👳🏼", "keywords" : [ "medium-light skin tone", "person wearing turban", "person wearing turban: medium-light skin tone", "turban" - ] + ], + "value" : "👳🏼" }, "👳🏽", { - "value" : "👳🏽", "keywords" : [ "medium skin tone", "person wearing turban", "person wearing turban: medium skin tone", "turban" - ] + ], + "value" : "👳🏽" }, "👳🏾", { @@ -22478,13 +22477,13 @@ }, "👳🏿", { - "value" : "👳🏿", "keywords" : [ "dark skin tone", "person wearing turban", "person wearing turban: dark skin tone", "turban" - ] + ], + "value" : "👳🏿" }, "👳‍♂️", { @@ -22497,14 +22496,14 @@ }, "👳🏻‍♂️", { + "value" : "👳🏻‍♂️", "keywords" : [ "light skin tone", "man", "man wearing turban", "man wearing turban: light skin tone", "turban" - ], - "value" : "👳🏻‍♂️" + ] }, "👳🏼‍♂️", { @@ -22519,14 +22518,14 @@ }, "👳🏽‍♂️", { - "value" : "👳🏽‍♂️", "keywords" : [ "man", "man wearing turban", "man wearing turban: medium skin tone", "medium skin tone", "turban" - ] + ], + "value" : "👳🏽‍♂️" }, "👳🏾‍♂️", { @@ -22541,23 +22540,23 @@ }, "👳🏿‍♂️", { - "value" : "👳🏿‍♂️", "keywords" : [ "dark skin tone", "man", "man wearing turban", "man wearing turban: dark skin tone", "turban" - ] + ], + "value" : "👳🏿‍♂️" }, "👳‍♀️", { - "value" : "👳‍♀️", "keywords" : [ "turban", "wearing", "woman" - ] + ], + "value" : "👳‍♀️" }, "👳🏻‍♀️", { @@ -22594,14 +22593,14 @@ }, "👳🏾‍♀️", { + "value" : "👳🏾‍♀️", "keywords" : [ "medium-dark skin tone", "turban", "woman", "woman wearing turban", "woman wearing turban: medium-dark skin tone" - ], - "value" : "👳🏾‍♀️" + ] }, "👳🏿‍♀️", { @@ -22616,7 +22615,6 @@ }, "👲", { - "value" : "👲", "keywords" : [ "cap", "Chinese", @@ -22627,7 +22625,8 @@ "person", "pi", "skullcap" - ] + ], + "value" : "👲" }, "👲🏻", { @@ -22645,6 +22644,7 @@ }, "👲🏼", { + "value" : "👲🏼", "keywords" : [ "cap", "gua pi mao", @@ -22654,11 +22654,11 @@ "person with skullcap", "person with skullcap: medium-light skin tone", "skullcap" - ], - "value" : "👲🏼" + ] }, "👲🏽", { + "value" : "👲🏽", "keywords" : [ "cap", "gua pi mao", @@ -22668,12 +22668,10 @@ "person with skullcap", "person with skullcap: medium skin tone", "skullcap" - ], - "value" : "👲🏽" + ] }, "👲🏾", { - "value" : "👲🏾", "keywords" : [ "cap", "gua pi mao", @@ -22683,7 +22681,8 @@ "person with skullcap", "person with skullcap: medium-dark skin tone", "skullcap" - ] + ], + "value" : "👲🏾" }, "👲🏿", { @@ -22728,6 +22727,7 @@ }, "🧕🏼", { + "value" : "🧕🏼", "keywords" : [ "headscarf", "hijab", @@ -22736,12 +22736,10 @@ "tichel", "woman with headscarf", "woman with headscarf: medium-light skin tone" - ], - "value" : "🧕🏼" + ] }, "🧕🏽", { - "value" : "🧕🏽", "keywords" : [ "headscarf", "hijab", @@ -22750,11 +22748,11 @@ "tichel", "woman with headscarf", "woman with headscarf: medium skin tone" - ] + ], + "value" : "🧕🏽" }, "🧕🏾", { - "value" : "🧕🏾", "keywords" : [ "headscarf", "hijab", @@ -22763,7 +22761,8 @@ "tichel", "woman with headscarf", "woman with headscarf: medium-dark skin tone" - ] + ], + "value" : "🧕🏾" }, "🧕🏿", { @@ -22790,7 +22789,6 @@ }, "🤵🏻", { - "value" : "🤵🏻", "keywords" : [ "groom", "light skin tone", @@ -22798,10 +22796,12 @@ "person in tuxedo", "person in tuxedo: light skin tone", "tuxedo" - ] + ], + "value" : "🤵🏻" }, "🤵🏼", { + "value" : "🤵🏼", "keywords" : [ "groom", "medium-light skin tone", @@ -22809,11 +22809,11 @@ "person in tuxedo", "person in tuxedo: medium-light skin tone", "tuxedo" - ], - "value" : "🤵🏼" + ] }, "🤵🏽", { + "value" : "🤵🏽", "keywords" : [ "groom", "medium skin tone", @@ -22821,11 +22821,11 @@ "person in tuxedo", "person in tuxedo: medium skin tone", "tuxedo" - ], - "value" : "🤵🏽" + ] }, "🤵🏾", { + "value" : "🤵🏾", "keywords" : [ "groom", "medium-dark skin tone", @@ -22833,8 +22833,7 @@ "person in tuxedo", "person in tuxedo: medium-dark skin tone", "tuxedo" - ], - "value" : "🤵🏾" + ] }, "🤵🏿", { @@ -22916,13 +22915,13 @@ }, "🤵‍♀️", { - "value" : "🤵‍♀️", "keywords" : [ "formal", "tuxedo", "wedding", "woman" - ] + ], + "value" : "🤵‍♀️" }, "🤵🏻‍♀️", { @@ -22937,36 +22936,36 @@ }, "🤵🏼‍♀️", { - "value" : "🤵🏼‍♀️", "keywords" : [ "medium-light skin tone", "tuxedo", "woman", "woman in tuxedo", "woman in tuxedo: medium-light skin tone" - ] + ], + "value" : "🤵🏼‍♀️" }, "🤵🏽‍♀️", { - "value" : "🤵🏽‍♀️", "keywords" : [ "medium skin tone", "tuxedo", "woman", "woman in tuxedo", "woman in tuxedo: medium skin tone" - ] + ], + "value" : "🤵🏽‍♀️" }, "🤵🏾‍♀️", { + "value" : "🤵🏾‍♀️", "keywords" : [ "medium-dark skin tone", "tuxedo", "woman", "woman in tuxedo", "woman in tuxedo: medium-dark skin tone" - ], - "value" : "🤵🏾‍♀️" + ] }, "🤵🏿‍♀️", { @@ -22981,12 +22980,12 @@ }, "👰", { + "value" : "👰", "keywords" : [ "person", "veil", "wedding" - ], - "value" : "👰" + ] }, "👰🏻", { @@ -23016,7 +23015,6 @@ }, "👰🏽", { - "value" : "👰🏽", "keywords" : [ "bride", "medium skin tone", @@ -23025,7 +23023,8 @@ "person with veil: medium skin tone", "veil", "wedding" - ] + ], + "value" : "👰🏽" }, "👰🏾", { @@ -23055,23 +23054,23 @@ }, "👰‍♂️", { + "value" : "👰‍♂️", "keywords" : [ "man", "veil", "wedding" - ], - "value" : "👰‍♂️" + ] }, "👰🏻‍♂️", { - "value" : "👰🏻‍♂️", "keywords" : [ "light skin tone", "man", "man with veil", "man with veil: light skin tone", "veil" - ] + ], + "value" : "👰🏻‍♂️" }, "👰🏼‍♂️", { @@ -23086,25 +23085,25 @@ }, "👰🏽‍♂️", { + "value" : "👰🏽‍♂️", "keywords" : [ "man", "man with veil", "man with veil: medium skin tone", "medium skin tone", "veil" - ], - "value" : "👰🏽‍♂️" + ] }, "👰🏾‍♂️", { - "value" : "👰🏾‍♂️", "keywords" : [ "man", "man with veil", "man with veil: medium-dark skin tone", "medium-dark skin tone", "veil" - ] + ], + "value" : "👰🏾‍♂️" }, "👰🏿‍♂️", { @@ -23140,14 +23139,14 @@ }, "👰🏼‍♀️", { + "value" : "👰🏼‍♀️", "keywords" : [ "medium-light skin tone", "veil", "woman", "woman with veil", "woman with veil: medium-light skin tone" - ], - "value" : "👰🏼‍♀️" + ] }, "👰🏽‍♀️", { @@ -23162,25 +23161,25 @@ }, "👰🏾‍♀️", { + "value" : "👰🏾‍♀️", "keywords" : [ "medium-dark skin tone", "veil", "woman", "woman with veil", "woman with veil: medium-dark skin tone" - ], - "value" : "👰🏾‍♀️" + ] }, "👰🏿‍♀️", { - "value" : "👰🏿‍♀️", "keywords" : [ "dark skin tone", "veil", "woman", "woman with veil", "woman with veil: dark skin tone" - ] + ], + "value" : "👰🏿‍♀️" }, "🤰", { @@ -23192,13 +23191,13 @@ }, "🤰🏻", { + "value" : "🤰🏻", "keywords" : [ "light skin tone", "pregnant", "pregnant woman: light skin tone", "woman" - ], - "value" : "🤰🏻" + ] }, "🤰🏼", { @@ -23222,26 +23221,27 @@ }, "🤰🏾", { + "value" : "🤰🏾", "keywords" : [ "medium-dark skin tone", "pregnant", "pregnant woman: medium-dark skin tone", "woman" - ], - "value" : "🤰🏾" + ] }, "🤰🏿", { - "value" : "🤰🏿", "keywords" : [ "dark skin tone", "pregnant", "pregnant woman: dark skin tone", "woman" - ] + ], + "value" : "🤰🏿" }, "🤱", { + "value" : "🤱", "keywords" : [ "baby", "breast", @@ -23251,8 +23251,7 @@ "mother", "nursing", "woman" - ], - "value" : "🤱" + ] }, "🤱🏻", { @@ -23280,6 +23279,7 @@ }, "🤱🏽", { + "value" : "🤱🏽", "keywords" : [ "baby", "breast", @@ -23287,8 +23287,7 @@ "breast-feeding: medium skin tone", "medium skin tone", "nursing" - ], - "value" : "🤱🏽" + ] }, "🤱🏾", { @@ -23316,7 +23315,6 @@ }, "👩‍🍼", { - "value" : "👩‍🍼", "keywords" : [ "baby", "feed", @@ -23327,10 +23325,12 @@ "newborn", "nursing", "woman" - ] + ], + "value" : "👩‍🍼" }, "👩🏻‍🍼", { + "value" : "👩🏻‍🍼", "keywords" : [ "baby", "feeding", @@ -23338,8 +23338,7 @@ "nursing", "woman", "woman feeding baby: light skin tone" - ], - "value" : "👩🏻‍🍼" + ] }, "👩🏼‍🍼", { @@ -23418,6 +23417,7 @@ }, "👨🏼‍🍼", { + "value" : "👨🏼‍🍼", "keywords" : [ "baby", "feeding", @@ -23425,11 +23425,11 @@ "man feeding baby: medium-light skin tone", "medium-light skin tone", "nursing" - ], - "value" : "👨🏼‍🍼" + ] }, "👨🏽‍🍼", { + "value" : "👨🏽‍🍼", "keywords" : [ "baby", "feeding", @@ -23437,8 +23437,7 @@ "man feeding baby: medium skin tone", "medium skin tone", "nursing" - ], - "value" : "👨🏽‍🍼" + ] }, "👨🏾‍🍼", { @@ -23466,6 +23465,7 @@ }, "🧑‍🍼", { + "value" : "🧑‍🍼", "keywords" : [ "baby", "feed", @@ -23474,8 +23474,7 @@ "newborn", "nursing", "parent" - ], - "value" : "🧑‍🍼" + ] }, "🧑🏻‍🍼", { @@ -23491,6 +23490,7 @@ }, "🧑🏼‍🍼", { + "value" : "🧑🏼‍🍼", "keywords" : [ "baby", "feeding", @@ -23498,11 +23498,11 @@ "nursing", "person", "person feeding baby: medium-light skin tone" - ], - "value" : "🧑🏼‍🍼" + ] }, "🧑🏽‍🍼", { + "value" : "🧑🏽‍🍼", "keywords" : [ "baby", "feeding", @@ -23510,11 +23510,11 @@ "nursing", "person", "person feeding baby: medium skin tone" - ], - "value" : "🧑🏽‍🍼" + ] }, "🧑🏾‍🍼", { + "value" : "🧑🏾‍🍼", "keywords" : [ "baby", "feeding", @@ -23522,8 +23522,7 @@ "nursing", "person", "person feeding baby: medium-dark skin tone" - ], - "value" : "🧑🏾‍🍼" + ] }, "🧑🏿‍🍼", { @@ -23579,6 +23578,7 @@ }, "👼🏽", { + "value" : "👼🏽", "keywords" : [ "angel", "baby", @@ -23587,11 +23587,11 @@ "fairy tale", "fantasy", "medium skin tone" - ], - "value" : "👼🏽" + ] }, "👼🏾", { + "value" : "👼🏾", "keywords" : [ "angel", "baby", @@ -23600,8 +23600,7 @@ "fairy tale", "fantasy", "medium-dark skin tone" - ], - "value" : "👼🏾" + ] }, "👼🏿", { @@ -23618,6 +23617,7 @@ }, "🎅", { + "value" : "🎅", "keywords" : [ "celebration", "Christmas", @@ -23630,12 +23630,10 @@ "santa", "tale", "xmas" - ], - "value" : "🎅" + ] }, "🎅🏻", { - "value" : "🎅🏻", "keywords" : [ "celebration", "Christmas", @@ -23644,7 +23642,8 @@ "light skin tone", "santa", "Santa Claus: light skin tone" - ] + ], + "value" : "🎅🏻" }, "🎅🏼", { @@ -23700,6 +23699,7 @@ }, "🤶", { + "value" : "🤶", "keywords" : [ "celebration", "Christmas", @@ -23713,8 +23713,7 @@ "santa", "tale", "xmas" - ], - "value" : "🤶" + ] }, "🤶🏻", { @@ -23744,7 +23743,6 @@ }, "🤶🏽", { - "value" : "🤶🏽", "keywords" : [ "celebration", "Christmas", @@ -23753,11 +23751,11 @@ "mother", "Mrs.", "Mrs. Claus: medium skin tone" - ] + ], + "value" : "🤶🏽" }, "🤶🏾", { - "value" : "🤶🏾", "keywords" : [ "celebration", "Christmas", @@ -23766,7 +23764,8 @@ "mother", "Mrs.", "Mrs. Claus: medium-dark skin tone" - ] + ], + "value" : "🤶🏾" }, "🤶🏿", { @@ -23783,7 +23782,6 @@ }, "🧑‍🎄", { - "value" : "🧑‍🎄", "keywords" : [ "celebration", "Christmas", @@ -23796,7 +23794,8 @@ "santa", "tale", "xmas" - ] + ], + "value" : "🧑‍🎄" }, "🧑🏻‍🎄", { @@ -23822,14 +23821,14 @@ }, "🧑🏽‍🎄", { + "value" : "🧑🏽‍🎄", "keywords" : [ "christmas", "claus", "medium skin tone", "mx claus", "mx claus: medium skin tone" - ], - "value" : "🧑🏽‍🎄" + ] }, "🧑🏾‍🎄", { @@ -23865,7 +23864,6 @@ }, "🦸🏻", { - "value" : "🦸🏻", "keywords" : [ "good", "hero", @@ -23874,7 +23872,8 @@ "superhero", "superhero: light skin tone", "superpower" - ] + ], + "value" : "🦸🏻" }, "🦸🏼", { @@ -23904,6 +23903,7 @@ }, "🦸🏾", { + "value" : "🦸🏾", "keywords" : [ "good", "hero", @@ -23912,11 +23912,11 @@ "superhero", "superhero: medium-dark skin tone", "superpower" - ], - "value" : "🦸🏾" + ] }, "🦸🏿", { + "value" : "🦸🏿", "keywords" : [ "dark skin tone", "good", @@ -23925,8 +23925,7 @@ "superhero", "superhero: dark skin tone", "superpower" - ], - "value" : "🦸🏿" + ] }, "🦸‍♂️", { @@ -23941,6 +23940,7 @@ }, "🦸🏻‍♂️", { + "value" : "🦸🏻‍♂️", "keywords" : [ "good", "hero", @@ -23949,11 +23949,11 @@ "man superhero", "man superhero: light skin tone", "superpower" - ], - "value" : "🦸🏻‍♂️" + ] }, "🦸🏼‍♂️", { + "value" : "🦸🏼‍♂️", "keywords" : [ "good", "hero", @@ -23962,12 +23962,10 @@ "man superhero: medium-light skin tone", "medium-light skin tone", "superpower" - ], - "value" : "🦸🏼‍♂️" + ] }, "🦸🏽‍♂️", { - "value" : "🦸🏽‍♂️", "keywords" : [ "good", "hero", @@ -23976,10 +23974,12 @@ "man superhero: medium skin tone", "medium skin tone", "superpower" - ] + ], + "value" : "🦸🏽‍♂️" }, "🦸🏾‍♂️", { + "value" : "🦸🏾‍♂️", "keywords" : [ "good", "hero", @@ -23988,11 +23988,11 @@ "man superhero: medium-dark skin tone", "medium-dark skin tone", "superpower" - ], - "value" : "🦸🏾‍♂️" + ] }, "🦸🏿‍♂️", { + "value" : "🦸🏿‍♂️", "keywords" : [ "dark skin tone", "good", @@ -24001,11 +24001,11 @@ "man superhero", "man superhero: dark skin tone", "superpower" - ], - "value" : "🦸🏿‍♂️" + ] }, "🦸‍♀️", { + "value" : "🦸‍♀️", "keywords" : [ "good", "hero", @@ -24013,11 +24013,11 @@ "superhero", "superpower", "woman" - ], - "value" : "🦸‍♀️" + ] }, "🦸🏻‍♀️", { + "value" : "🦸🏻‍♀️", "keywords" : [ "good", "hero", @@ -24027,11 +24027,11 @@ "woman", "woman superhero", "woman superhero: light skin tone" - ], - "value" : "🦸🏻‍♀️" + ] }, "🦸🏼‍♀️", { + "value" : "🦸🏼‍♀️", "keywords" : [ "good", "hero", @@ -24041,8 +24041,7 @@ "woman", "woman superhero", "woman superhero: medium-light skin tone" - ], - "value" : "🦸🏼‍♀️" + ] }, "🦸🏽‍♀️", { @@ -24060,7 +24059,6 @@ }, "🦸🏾‍♀️", { - "value" : "🦸🏾‍♀️", "keywords" : [ "good", "hero", @@ -24070,11 +24068,11 @@ "woman", "woman superhero", "woman superhero: medium-dark skin tone" - ] + ], + "value" : "🦸🏾‍♀️" }, "🦸🏿‍♀️", { - "value" : "🦸🏿‍♀️", "keywords" : [ "dark skin tone", "good", @@ -24084,11 +24082,11 @@ "woman", "woman superhero", "woman superhero: dark skin tone" - ] + ], + "value" : "🦸🏿‍♀️" }, "🦹", { - "value" : "🦹", "keywords" : [ "bad", "criminal", @@ -24096,7 +24094,8 @@ "superpower", "supervillain", "villain" - ] + ], + "value" : "🦹" }, "🦹🏻", { @@ -24113,6 +24112,7 @@ }, "🦹🏼", { + "value" : "🦹🏼", "keywords" : [ "criminal", "evil", @@ -24121,11 +24121,11 @@ "supervillain", "supervillain: medium-light skin tone", "villain" - ], - "value" : "🦹🏼" + ] }, "🦹🏽", { + "value" : "🦹🏽", "keywords" : [ "criminal", "evil", @@ -24134,8 +24134,7 @@ "supervillain", "supervillain: medium skin tone", "villain" - ], - "value" : "🦹🏽" + ] }, "🦹🏾", { @@ -24178,7 +24177,6 @@ }, "🦹🏻‍♂️", { - "value" : "🦹🏻‍♂️", "keywords" : [ "criminal", "evil", @@ -24188,10 +24186,12 @@ "man supervillain: light skin tone", "superpower", "villain" - ] + ], + "value" : "🦹🏻‍♂️" }, "🦹🏼‍♂️", { + "value" : "🦹🏼‍♂️", "keywords" : [ "criminal", "evil", @@ -24201,11 +24201,11 @@ "medium-light skin tone", "superpower", "villain" - ], - "value" : "🦹🏼‍♂️" + ] }, "🦹🏽‍♂️", { + "value" : "🦹🏽‍♂️", "keywords" : [ "criminal", "evil", @@ -24215,8 +24215,7 @@ "medium skin tone", "superpower", "villain" - ], - "value" : "🦹🏽‍♂️" + ] }, "🦹🏾‍♂️", { @@ -24234,6 +24233,7 @@ }, "🦹🏿‍♂️", { + "value" : "🦹🏿‍♂️", "keywords" : [ "criminal", "dark skin tone", @@ -24243,8 +24243,7 @@ "man supervillain: dark skin tone", "superpower", "villain" - ], - "value" : "🦹🏿‍♂️" + ] }, "🦹‍♀️", { @@ -24261,7 +24260,6 @@ }, "🦹🏻‍♀️", { - "value" : "🦹🏻‍♀️", "keywords" : [ "criminal", "evil", @@ -24271,7 +24269,8 @@ "woman", "woman supervillain", "woman supervillain: light skin tone" - ] + ], + "value" : "🦹🏻‍♀️" }, "🦹🏼‍♀️", { @@ -24303,6 +24302,7 @@ }, "🦹🏾‍♀️", { + "value" : "🦹🏾‍♀️", "keywords" : [ "criminal", "evil", @@ -24312,11 +24312,11 @@ "woman", "woman supervillain", "woman supervillain: medium-dark skin tone" - ], - "value" : "🦹🏾‍♀️" + ] }, "🦹🏿‍♀️", { + "value" : "🦹🏿‍♀️", "keywords" : [ "criminal", "dark skin tone", @@ -24326,11 +24326,11 @@ "woman", "woman supervillain", "woman supervillain: dark skin tone" - ], - "value" : "🦹🏿‍♀️" + ] }, "🧙", { + "value" : "🧙", "keywords" : [ "fantasy", "mage", @@ -24343,11 +24343,11 @@ "summon", "witch", "wizard" - ], - "value" : "🧙" + ] }, "🧙🏻", { + "value" : "🧙🏻", "keywords" : [ "light skin tone", "mage", @@ -24356,12 +24356,10 @@ "sorceress", "witch", "wizard" - ], - "value" : "🧙🏻" + ] }, "🧙🏼", { - "value" : "🧙🏼", "keywords" : [ "mage", "mage: medium-light skin tone", @@ -24370,7 +24368,8 @@ "sorceress", "witch", "wizard" - ] + ], + "value" : "🧙🏼" }, "🧙🏽", { @@ -24413,6 +24412,7 @@ }, "🧙‍♂️", { + "value" : "🧙‍♂️", "keywords" : [ "fantasy", "mage", @@ -24426,8 +24426,7 @@ "summon", "witch", "wizard" - ], - "value" : "🧙‍♂️" + ] }, "🧙🏻‍♂️", { @@ -24453,36 +24452,36 @@ }, "🧙🏽‍♂️", { - "value" : "🧙🏽‍♂️", "keywords" : [ "man mage", "man mage: medium skin tone", "medium skin tone", "sorcerer", "wizard" - ] + ], + "value" : "🧙🏽‍♂️" }, "🧙🏾‍♂️", { + "value" : "🧙🏾‍♂️", "keywords" : [ "man mage", "man mage: medium-dark skin tone", "medium-dark skin tone", "sorcerer", "wizard" - ], - "value" : "🧙🏾‍♂️" + ] }, "🧙🏿‍♂️", { - "value" : "🧙🏿‍♂️", "keywords" : [ "dark skin tone", "man mage", "man mage: dark skin tone", "sorcerer", "wizard" - ] + ], + "value" : "🧙🏿‍♂️" }, "🧙‍♀️", { @@ -24504,25 +24503,25 @@ }, "🧙🏻‍♀️", { - "value" : "🧙🏻‍♀️", "keywords" : [ "light skin tone", "sorceress", "witch", "woman mage", "woman mage: light skin tone" - ] + ], + "value" : "🧙🏻‍♀️" }, "🧙🏼‍♀️", { + "value" : "🧙🏼‍♀️", "keywords" : [ "medium-light skin tone", "sorceress", "witch", "woman mage", "woman mage: medium-light skin tone" - ], - "value" : "🧙🏼‍♀️" + ] }, "🧙🏽‍♀️", { @@ -24548,14 +24547,14 @@ }, "🧙🏿‍♀️", { - "value" : "🧙🏿‍♀️", "keywords" : [ "dark skin tone", "sorceress", "witch", "woman mage", "woman mage: dark skin tone" - ] + ], + "value" : "🧙🏿‍♀️" }, "🧚", { @@ -24573,7 +24572,6 @@ }, "🧚🏻", { - "value" : "🧚🏻", "keywords" : [ "fairy", "fairy: light skin tone", @@ -24581,10 +24579,12 @@ "Oberon", "Puck", "Titania" - ] + ], + "value" : "🧚🏻" }, "🧚🏼", { + "value" : "🧚🏼", "keywords" : [ "fairy", "fairy: medium-light skin tone", @@ -24592,11 +24592,11 @@ "Oberon", "Puck", "Titania" - ], - "value" : "🧚🏼" + ] }, "🧚🏽", { + "value" : "🧚🏽", "keywords" : [ "fairy", "fairy: medium skin tone", @@ -24604,8 +24604,7 @@ "Oberon", "Puck", "Titania" - ], - "value" : "🧚🏽" + ] }, "🧚🏾", { @@ -24621,7 +24620,6 @@ }, "🧚🏿", { - "value" : "🧚🏿", "keywords" : [ "dark skin tone", "fairy", @@ -24629,11 +24627,11 @@ "Oberon", "Puck", "Titania" - ] + ], + "value" : "🧚🏿" }, "🧚‍♂️", { - "value" : "🧚‍♂️", "keywords" : [ "fairy", "fairytale", @@ -24646,7 +24644,8 @@ "Puck", "tale", "wings" - ] + ], + "value" : "🧚‍♂️" }, "🧚🏻‍♂️", { @@ -24661,36 +24660,36 @@ }, "🧚🏼‍♂️", { - "value" : "🧚🏼‍♂️", "keywords" : [ "man fairy", "man fairy: medium-light skin tone", "medium-light skin tone", "Oberon", "Puck" - ] + ], + "value" : "🧚🏼‍♂️" }, "🧚🏽‍♂️", { + "value" : "🧚🏽‍♂️", "keywords" : [ "man fairy", "man fairy: medium skin tone", "medium skin tone", "Oberon", "Puck" - ], - "value" : "🧚🏽‍♂️" + ] }, "🧚🏾‍♂️", { + "value" : "🧚🏾‍♂️", "keywords" : [ "man fairy", "man fairy: medium-dark skin tone", "medium-dark skin tone", "Oberon", "Puck" - ], - "value" : "🧚🏾‍♂️" + ] }, "🧚🏿‍♂️", { @@ -24705,6 +24704,7 @@ }, "🧚‍♀️", { + "value" : "🧚‍♀️", "keywords" : [ "fairy", "fairytale", @@ -24716,8 +24716,7 @@ "Titania", "wings", "woman" - ], - "value" : "🧚‍♀️" + ] }, "🧚🏻‍♀️", { @@ -24741,23 +24740,23 @@ }, "🧚🏽‍♀️", { - "value" : "🧚🏽‍♀️", "keywords" : [ "medium skin tone", "Titania", "woman fairy", "woman fairy: medium skin tone" - ] + ], + "value" : "🧚🏽‍♀️" }, "🧚🏾‍♀️", { - "value" : "🧚🏾‍♀️", "keywords" : [ "medium-dark skin tone", "Titania", "woman fairy", "woman fairy: medium-dark skin tone" - ] + ], + "value" : "🧚🏾‍♀️" }, "🧚🏿‍♀️", { @@ -24786,36 +24785,36 @@ }, "🧛🏻", { + "value" : "🧛🏻", "keywords" : [ "Dracula", "light skin tone", "undead", "vampire", "vampire: light skin tone" - ], - "value" : "🧛🏻" + ] }, "🧛🏼", { + "value" : "🧛🏼", "keywords" : [ "Dracula", "medium-light skin tone", "undead", "vampire", "vampire: medium-light skin tone" - ], - "value" : "🧛🏼" + ] }, "🧛🏽", { - "value" : "🧛🏽", "keywords" : [ "Dracula", "medium skin tone", "undead", "vampire", "vampire: medium skin tone" - ] + ], + "value" : "🧛🏽" }, "🧛🏾", { @@ -24830,17 +24829,18 @@ }, "🧛🏿", { + "value" : "🧛🏿", "keywords" : [ "dark skin tone", "Dracula", "undead", "vampire", "vampire: dark skin tone" - ], - "value" : "🧛🏿" + ] }, "🧛‍♂️", { + "value" : "🧛‍♂️", "keywords" : [ "blood", "fangs", @@ -24851,8 +24851,7 @@ "teeth", "undead", "vampire" - ], - "value" : "🧛‍♂️" + ] }, "🧛🏻‍♂️", { @@ -24878,14 +24877,14 @@ }, "🧛🏽‍♂️", { - "value" : "🧛🏽‍♂️", "keywords" : [ "Dracula", "man vampire", "man vampire: medium skin tone", "medium skin tone", "undead" - ] + ], + "value" : "🧛🏽‍♂️" }, "🧛🏾‍♂️", { @@ -24900,14 +24899,14 @@ }, "🧛🏿‍♂️", { - "value" : "🧛🏿‍♂️", "keywords" : [ "dark skin tone", "Dracula", "man vampire", "man vampire: dark skin tone", "undead" - ] + ], + "value" : "🧛🏿‍♂️" }, "🧛‍♀️", { @@ -24926,13 +24925,13 @@ }, "🧛🏻‍♀️", { - "value" : "🧛🏻‍♀️", "keywords" : [ "light skin tone", "undead", "woman vampire", "woman vampire: light skin tone" - ] + ], + "value" : "🧛🏻‍♀️" }, "🧛🏼‍♀️", { @@ -25002,7 +25001,6 @@ }, "🧜🏼", { - "value" : "🧜🏼", "keywords" : [ "medium-light skin tone", "mermaid", @@ -25010,7 +25008,8 @@ "merperson", "merperson: medium-light skin tone", "merwoman" - ] + ], + "value" : "🧜🏼" }, "🧜🏽", { @@ -25050,7 +25049,6 @@ }, "🧜‍♂️", { - "value" : "🧜‍♂️", "keywords" : [ "creature", "fairytale", @@ -25063,27 +25061,28 @@ "siren", "trident", "Triton" - ] + ], + "value" : "🧜‍♂️" }, "🧜🏻‍♂️", { + "value" : "🧜🏻‍♂️", "keywords" : [ "light skin tone", "merman", "merman: light skin tone", "Triton" - ], - "value" : "🧜🏻‍♂️" + ] }, "🧜🏼‍♂️", { - "value" : "🧜🏼‍♂️", "keywords" : [ "medium-light skin tone", "merman", "merman: medium-light skin tone", "Triton" - ] + ], + "value" : "🧜🏼‍♂️" }, "🧜🏽‍♂️", { @@ -25097,23 +25096,23 @@ }, "🧜🏾‍♂️", { + "value" : "🧜🏾‍♂️", "keywords" : [ "medium-dark skin tone", "merman", "merman: medium-dark skin tone", "Triton" - ], - "value" : "🧜🏾‍♂️" + ] }, "🧜🏿‍♂️", { + "value" : "🧜🏿‍♂️", "keywords" : [ "dark skin tone", "merman", "merman: dark skin tone", "Triton" - ], - "value" : "🧜🏿‍♂️" + ] }, "🧜‍♀️", { @@ -25132,13 +25131,13 @@ }, "🧜🏻‍♀️", { + "value" : "🧜🏻‍♀️", "keywords" : [ "light skin tone", "mermaid", "mermaid: light skin tone", "merwoman" - ], - "value" : "🧜🏻‍♀️" + ] }, "🧜🏼‍♀️", { @@ -25162,23 +25161,23 @@ }, "🧜🏾‍♀️", { + "value" : "🧜🏾‍♀️", "keywords" : [ "medium-dark skin tone", "mermaid", "mermaid: medium-dark skin tone", "merwoman" - ], - "value" : "🧜🏾‍♀️" + ] }, "🧜🏿‍♀️", { + "value" : "🧜🏿‍♀️", "keywords" : [ "dark skin tone", "mermaid", "mermaid: dark skin tone", "merwoman" - ], - "value" : "🧜🏿‍♀️" + ] }, "🧝", { @@ -25206,23 +25205,23 @@ }, "🧝🏼", { + "value" : "🧝🏼", "keywords" : [ "elf", "elf: medium-light skin tone", "magical", "medium-light skin tone" - ], - "value" : "🧝🏼" + ] }, "🧝🏽", { + "value" : "🧝🏽", "keywords" : [ "elf", "elf: medium skin tone", "magical", "medium skin tone" - ], - "value" : "🧝🏽" + ] }, "🧝🏾", { @@ -25236,17 +25235,16 @@ }, "🧝🏿", { - "value" : "🧝🏿", "keywords" : [ "dark skin tone", "elf", "elf: dark skin tone", "magical" - ] + ], + "value" : "🧝🏿" }, "🧝‍♂️", { - "value" : "🧝‍♂️", "keywords" : [ "elf", "elves", @@ -25257,61 +25255,61 @@ "magical", "man", "myth" - ] + ], + "value" : "🧝‍♂️" }, "🧝🏻‍♂️", { + "value" : "🧝🏻‍♂️", "keywords" : [ "light skin tone", "magical", "man elf", "man elf: light skin tone" - ], - "value" : "🧝🏻‍♂️" + ] }, "🧝🏼‍♂️", { - "value" : "🧝🏼‍♂️", "keywords" : [ "magical", "man elf", "man elf: medium-light skin tone", "medium-light skin tone" - ] + ], + "value" : "🧝🏼‍♂️" }, "🧝🏽‍♂️", { + "value" : "🧝🏽‍♂️", "keywords" : [ "magical", "man elf", "man elf: medium skin tone", "medium skin tone" - ], - "value" : "🧝🏽‍♂️" + ] }, "🧝🏾‍♂️", { - "value" : "🧝🏾‍♂️", "keywords" : [ "magical", "man elf", "man elf: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "🧝🏾‍♂️" }, "🧝🏿‍♂️", { + "value" : "🧝🏿‍♂️", "keywords" : [ "dark skin tone", "magical", "man elf", "man elf: dark skin tone" - ], - "value" : "🧝🏿‍♂️" + ] }, "🧝‍♀️", { - "value" : "🧝‍♀️", "keywords" : [ "elf", "elves", @@ -25322,7 +25320,8 @@ "magical", "myth", "woman" - ] + ], + "value" : "🧝‍♀️" }, "🧝🏻‍♀️", { @@ -25336,13 +25335,13 @@ }, "🧝🏼‍♀️", { + "value" : "🧝🏼‍♀️", "keywords" : [ "magical", "medium-light skin tone", "woman elf", "woman elf: medium-light skin tone" - ], - "value" : "🧝🏼‍♀️" + ] }, "🧝🏽‍♀️", { @@ -25366,16 +25365,17 @@ }, "🧝🏿‍♀️", { - "value" : "🧝🏿‍♀️", "keywords" : [ "dark skin tone", "magical", "woman elf", "woman elf: dark skin tone" - ] + ], + "value" : "🧝🏿‍♀️" }, "🧞", { + "value" : "🧞", "keywords" : [ "djinn", "fantasy", @@ -25385,11 +25385,11 @@ "myth", "rub", "wishes" - ], - "value" : "🧞" + ] }, "🧞‍♂️", { + "value" : "🧞‍♂️", "keywords" : [ "djinn", "fantasy", @@ -25400,12 +25400,10 @@ "myth", "rub", "wishes" - ], - "value" : "🧞‍♂️" + ] }, "🧞‍♀️", { - "value" : "🧞‍♀️", "keywords" : [ "djinn", "fantasy", @@ -25416,7 +25414,8 @@ "rub", "wishes", "woman" - ] + ], + "value" : "🧞‍♀️" }, "🧟", { @@ -25464,7 +25463,6 @@ }, "💆", { - "value" : "💆", "keywords" : [ "face", "getting", @@ -25479,7 +25477,8 @@ "tension", "therapy", "treatment" - ] + ], + "value" : "💆" }, "💆🏻", { @@ -25495,7 +25494,6 @@ }, "💆🏼", { - "value" : "💆🏼", "keywords" : [ "face", "massage", @@ -25503,7 +25501,8 @@ "person getting massage", "person getting massage: medium-light skin tone", "salon" - ] + ], + "value" : "💆🏼" }, "💆🏽", { @@ -25519,7 +25518,6 @@ }, "💆🏾", { - "value" : "💆🏾", "keywords" : [ "face", "massage", @@ -25527,10 +25525,12 @@ "person getting massage", "person getting massage: medium-dark skin tone", "salon" - ] + ], + "value" : "💆🏾" }, "💆🏿", { + "value" : "💆🏿", "keywords" : [ "dark skin tone", "face", @@ -25538,12 +25538,10 @@ "person getting massage", "person getting massage: dark skin tone", "salon" - ], - "value" : "💆🏿" + ] }, "💆‍♂️", { - "value" : "💆‍♂️", "keywords" : [ "face", "getting", @@ -25558,11 +25556,11 @@ "tension", "therapy", "treatment" - ] + ], + "value" : "💆‍♂️" }, "💆🏻‍♂️", { - "value" : "💆🏻‍♂️", "keywords" : [ "face", "light skin tone", @@ -25570,10 +25568,12 @@ "man getting massage", "man getting massage: light skin tone", "massage" - ] + ], + "value" : "💆🏻‍♂️" }, "💆🏼‍♂️", { + "value" : "💆🏼‍♂️", "keywords" : [ "face", "man", @@ -25581,12 +25581,10 @@ "man getting massage: medium-light skin tone", "massage", "medium-light skin tone" - ], - "value" : "💆🏼‍♂️" + ] }, "💆🏽‍♂️", { - "value" : "💆🏽‍♂️", "keywords" : [ "face", "man", @@ -25594,7 +25592,8 @@ "man getting massage: medium skin tone", "massage", "medium skin tone" - ] + ], + "value" : "💆🏽‍♂️" }, "💆🏾‍♂️", { @@ -25622,7 +25621,6 @@ }, "💆‍♀️", { - "value" : "💆‍♀️", "keywords" : [ "face", "getting", @@ -25637,11 +25635,11 @@ "therapy", "treatment", "woman" - ] + ], + "value" : "💆‍♀️" }, "💆🏻‍♀️", { - "value" : "💆🏻‍♀️", "keywords" : [ "face", "light skin tone", @@ -25649,7 +25647,8 @@ "woman", "woman getting massage", "woman getting massage: light skin tone" - ] + ], + "value" : "💆🏻‍♀️" }, "💆🏼‍♀️", { @@ -25677,6 +25676,7 @@ }, "💆🏾‍♀️", { + "value" : "💆🏾‍♀️", "keywords" : [ "face", "massage", @@ -25684,8 +25684,7 @@ "woman", "woman getting massage", "woman getting massage: medium-dark skin tone" - ], - "value" : "💆🏾‍♀️" + ] }, "💆🏿‍♀️", { @@ -25701,7 +25700,6 @@ }, "💇", { - "value" : "💇", "keywords" : [ "barber", "beauty", @@ -25715,10 +25713,12 @@ "person", "shears", "style" - ] + ], + "value" : "💇" }, "💇🏻", { + "value" : "💇🏻", "keywords" : [ "barber", "beauty", @@ -25727,11 +25727,11 @@ "parlor", "person getting haircut", "person getting haircut: light skin tone" - ], - "value" : "💇🏻" + ] }, "💇🏼", { + "value" : "💇🏼", "keywords" : [ "barber", "beauty", @@ -25740,8 +25740,7 @@ "parlor", "person getting haircut", "person getting haircut: medium-light skin tone" - ], - "value" : "💇🏼" + ] }, "💇🏽", { @@ -25758,7 +25757,6 @@ }, "💇🏾", { - "value" : "💇🏾", "keywords" : [ "barber", "beauty", @@ -25767,10 +25765,12 @@ "parlor", "person getting haircut", "person getting haircut: medium-dark skin tone" - ] + ], + "value" : "💇🏾" }, "💇🏿", { + "value" : "💇🏿", "keywords" : [ "barber", "beauty", @@ -25779,8 +25779,7 @@ "parlor", "person getting haircut", "person getting haircut: dark skin tone" - ], - "value" : "💇🏿" + ] }, "💇‍♂️", { @@ -25803,25 +25802,25 @@ }, "💇🏻‍♂️", { + "value" : "💇🏻‍♂️", "keywords" : [ "haircut", "light skin tone", "man", "man getting haircut", "man getting haircut: light skin tone" - ], - "value" : "💇🏻‍♂️" + ] }, "💇🏼‍♂️", { - "value" : "💇🏼‍♂️", "keywords" : [ "haircut", "man", "man getting haircut", "man getting haircut: medium-light skin tone", "medium-light skin tone" - ] + ], + "value" : "💇🏼‍♂️" }, "💇🏽‍♂️", { @@ -25847,14 +25846,14 @@ }, "💇🏿‍♂️", { - "value" : "💇🏿‍♂️", "keywords" : [ "dark skin tone", "haircut", "man", "man getting haircut", "man getting haircut: dark skin tone" - ] + ], + "value" : "💇🏿‍♂️" }, "💇‍♀️", { @@ -25877,36 +25876,36 @@ }, "💇🏻‍♀️", { - "value" : "💇🏻‍♀️", "keywords" : [ "haircut", "light skin tone", "woman", "woman getting haircut", "woman getting haircut: light skin tone" - ] + ], + "value" : "💇🏻‍♀️" }, "💇🏼‍♀️", { - "value" : "💇🏼‍♀️", "keywords" : [ "haircut", "medium-light skin tone", "woman", "woman getting haircut", "woman getting haircut: medium-light skin tone" - ] + ], + "value" : "💇🏼‍♀️" }, "💇🏽‍♀️", { - "value" : "💇🏽‍♀️", "keywords" : [ "haircut", "medium skin tone", "woman", "woman getting haircut", "woman getting haircut: medium skin tone" - ] + ], + "value" : "💇🏽‍♀️" }, "💇🏾‍♀️", { @@ -26025,6 +26024,7 @@ }, "🚶🏻‍♂️", { + "value" : "🚶🏻‍♂️", "keywords" : [ "hike", "light skin tone", @@ -26032,8 +26032,7 @@ "man walking", "man walking: light skin tone", "walk" - ], - "value" : "🚶🏻‍♂️" + ] }, "🚶🏼‍♂️", { @@ -26049,7 +26048,6 @@ }, "🚶🏽‍♂️", { - "value" : "🚶🏽‍♂️", "keywords" : [ "hike", "man", @@ -26057,11 +26055,11 @@ "man walking: medium skin tone", "medium skin tone", "walk" - ] + ], + "value" : "🚶🏽‍♂️" }, "🚶🏾‍♂️", { - "value" : "🚶🏾‍♂️", "keywords" : [ "hike", "man", @@ -26069,7 +26067,8 @@ "man walking: medium-dark skin tone", "medium-dark skin tone", "walk" - ] + ], + "value" : "🚶🏾‍♂️" }, "🚶🏿‍♂️", { @@ -26085,6 +26084,7 @@ }, "🚶‍♀️", { + "value" : "🚶‍♀️", "keywords" : [ "amble", "gait", @@ -26097,12 +26097,10 @@ "walk", "walking", "woman" - ], - "value" : "🚶‍♀️" + ] }, "🚶🏻‍♀️", { - "value" : "🚶🏻‍♀️", "keywords" : [ "hike", "light skin tone", @@ -26110,7 +26108,8 @@ "woman", "woman walking", "woman walking: light skin tone" - ] + ], + "value" : "🚶🏻‍♀️" }, "🚶🏼‍♀️", { @@ -26138,6 +26137,7 @@ }, "🚶🏾‍♀️", { + "value" : "🚶🏾‍♀️", "keywords" : [ "hike", "medium-dark skin tone", @@ -26145,12 +26145,10 @@ "woman", "woman walking", "woman walking: medium-dark skin tone" - ], - "value" : "🚶🏾‍♀️" + ] }, "🚶🏿‍♀️", { - "value" : "🚶🏿‍♀️", "keywords" : [ "dark skin tone", "hike", @@ -26158,38 +26156,39 @@ "woman", "woman walking", "woman walking: dark skin tone" - ] + ], + "value" : "🚶🏿‍♀️" }, "🧍", { + "value" : "🧍", "keywords" : [ "person", "stand", "standing" - ], - "value" : "🧍" + ] }, "🧍🏻", { + "value" : "🧍🏻", "keywords" : [ "light skin tone", "person standing", "person standing: light skin tone", "stand", "standing" - ], - "value" : "🧍🏻" + ] }, "🧍🏼", { - "value" : "🧍🏼", "keywords" : [ "medium-light skin tone", "person standing", "person standing: medium-light skin tone", "stand", "standing" - ] + ], + "value" : "🧍🏼" }, "🧍🏽", { @@ -26204,14 +26203,14 @@ }, "🧍🏾", { - "value" : "🧍🏾", "keywords" : [ "medium-dark skin tone", "person standing", "person standing: medium-dark skin tone", "stand", "standing" - ] + ], + "value" : "🧍🏾" }, "🧍🏿", { @@ -26226,12 +26225,12 @@ }, "🧍‍♂️", { + "value" : "🧍‍♂️", "keywords" : [ "man", "stand", "standing" - ], - "value" : "🧍‍♂️" + ] }, "🧍🏻‍♂️", { @@ -26275,13 +26274,13 @@ }, "🧍🏿‍♂️", { + "value" : "🧍🏿‍♂️", "keywords" : [ "dark skin tone", "man", "man standing: dark skin tone", "standing" - ], - "value" : "🧍🏿‍♂️" + ] }, "🧍‍♀️", { @@ -26294,13 +26293,13 @@ }, "🧍🏻‍♀️", { - "value" : "🧍🏻‍♀️", "keywords" : [ "light skin tone", "standing", "woman", "woman standing: light skin tone" - ] + ], + "value" : "🧍🏻‍♀️" }, "🧍🏼‍♀️", { @@ -26314,13 +26313,13 @@ }, "🧍🏽‍♀️", { - "value" : "🧍🏽‍♀️", "keywords" : [ "medium skin tone", "standing", "woman", "woman standing: medium skin tone" - ] + ], + "value" : "🧍🏽‍♀️" }, "🧍🏾‍♀️", { @@ -26344,35 +26343,35 @@ }, "🧎", { - "value" : "🧎", "keywords" : [ "kneel", "kneeling", "knees", "person" - ] + ], + "value" : "🧎" }, "🧎🏻", { + "value" : "🧎🏻", "keywords" : [ "kneel", "kneeling", "light skin tone", "person kneeling", "person kneeling: light skin tone" - ], - "value" : "🧎🏻" + ] }, "🧎🏼", { + "value" : "🧎🏼", "keywords" : [ "kneel", "kneeling", "medium-light skin tone", "person kneeling", "person kneeling: medium-light skin tone" - ], - "value" : "🧎🏼" + ] }, "🧎🏽", { @@ -26398,34 +26397,34 @@ }, "🧎🏿", { + "value" : "🧎🏿", "keywords" : [ "dark skin tone", "kneel", "kneeling", "person kneeling", "person kneeling: dark skin tone" - ], - "value" : "🧎🏿" + ] }, "🧎‍♂️", { + "value" : "🧎‍♂️", "keywords" : [ "kneel", "kneeling", "knees", "man" - ], - "value" : "🧎‍♂️" + ] }, "🧎🏻‍♂️", { + "value" : "🧎🏻‍♂️", "keywords" : [ "kneeling", "light skin tone", "man", "man kneeling: light skin tone" - ], - "value" : "🧎🏻‍♂️" + ] }, "🧎🏼‍♂️", { @@ -26439,43 +26438,43 @@ }, "🧎🏽‍♂️", { - "value" : "🧎🏽‍♂️", "keywords" : [ "kneeling", "man", "man kneeling: medium skin tone", "medium skin tone" - ] + ], + "value" : "🧎🏽‍♂️" }, "🧎🏾‍♂️", { - "value" : "🧎🏾‍♂️", "keywords" : [ "kneeling", "man", "man kneeling: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "🧎🏾‍♂️" }, "🧎🏿‍♂️", { + "value" : "🧎🏿‍♂️", "keywords" : [ "dark skin tone", "kneeling", "man", "man kneeling: dark skin tone" - ], - "value" : "🧎🏿‍♂️" + ] }, "🧎‍♀️", { + "value" : "🧎‍♀️", "keywords" : [ "kneel", "kneeling", "knees", "woman" - ], - "value" : "🧎‍♀️" + ] }, "🧎🏻‍♀️", { @@ -26499,33 +26498,33 @@ }, "🧎🏽‍♀️", { + "value" : "🧎🏽‍♀️", "keywords" : [ "kneeling", "medium skin tone", "woman", "woman kneeling: medium skin tone" - ], - "value" : "🧎🏽‍♀️" + ] }, "🧎🏾‍♀️", { + "value" : "🧎🏾‍♀️", "keywords" : [ "kneeling", "medium-dark skin tone", "woman", "woman kneeling: medium-dark skin tone" - ], - "value" : "🧎🏾‍♀️" + ] }, "🧎🏿‍♀️", { + "value" : "🧎🏿‍♀️", "keywords" : [ "dark skin tone", "kneeling", "woman", "woman kneeling: dark skin tone" - ], - "value" : "🧎🏿‍♀️" + ] }, "🧑‍🦯", { @@ -26541,36 +26540,36 @@ }, "🧑🏻‍🦯", { - "value" : "🧑🏻‍🦯", "keywords" : [ "accessibility", "blind", "light skin tone", "person with white cane", "person with white cane: light skin tone" - ] + ], + "value" : "🧑🏻‍🦯" }, "🧑🏼‍🦯", { + "value" : "🧑🏼‍🦯", "keywords" : [ "accessibility", "blind", "medium-light skin tone", "person with white cane", "person with white cane: medium-light skin tone" - ], - "value" : "🧑🏼‍🦯" + ] }, "🧑🏽‍🦯", { + "value" : "🧑🏽‍🦯", "keywords" : [ "accessibility", "blind", "medium skin tone", "person with white cane", "person with white cane: medium skin tone" - ], - "value" : "🧑🏽‍🦯" + ] }, "🧑🏾‍🦯", { @@ -26585,14 +26584,14 @@ }, "🧑🏿‍🦯", { - "value" : "🧑🏿‍🦯", "keywords" : [ "accessibility", "blind", "dark skin tone", "person with white cane", "person with white cane: dark skin tone" - ] + ], + "value" : "🧑🏿‍🦯" }, "👨‍🦯", { @@ -26620,6 +26619,7 @@ }, "👨🏼‍🦯", { + "value" : "👨🏼‍🦯", "keywords" : [ "accessibility", "blind", @@ -26627,11 +26627,11 @@ "man with white cane", "man with white cane: medium-light skin tone", "medium-light skin tone" - ], - "value" : "👨🏼‍🦯" + ] }, "👨🏽‍🦯", { + "value" : "👨🏽‍🦯", "keywords" : [ "accessibility", "blind", @@ -26639,11 +26639,11 @@ "man with white cane", "man with white cane: medium skin tone", "medium skin tone" - ], - "value" : "👨🏽‍🦯" + ] }, "👨🏾‍🦯", { + "value" : "👨🏾‍🦯", "keywords" : [ "accessibility", "blind", @@ -26651,8 +26651,7 @@ "man with white cane", "man with white cane: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "👨🏾‍🦯" + ] }, "👨🏿‍🦯", { @@ -26692,6 +26691,7 @@ }, "👩🏼‍🦯", { + "value" : "👩🏼‍🦯", "keywords" : [ "accessibility", "blind", @@ -26699,8 +26699,7 @@ "woman", "woman with white cane", "woman with white cane: medium-light skin tone" - ], - "value" : "👩🏼‍🦯" + ] }, "👩🏽‍🦯", { @@ -26728,7 +26727,6 @@ }, "👩🏿‍🦯", { - "value" : "👩🏿‍🦯", "keywords" : [ "accessibility", "blind", @@ -26736,7 +26734,8 @@ "woman", "woman with white cane", "woman with white cane: dark skin tone" - ] + ], + "value" : "👩🏿‍🦯" }, "🧑‍🦼", { @@ -26761,36 +26760,36 @@ }, "🧑🏼‍🦼", { - "value" : "🧑🏼‍🦼", "keywords" : [ "accessibility", "medium-light skin tone", "person in motorized wheelchair", "person in motorized wheelchair: medium-light skin tone", "wheelchair" - ] + ], + "value" : "🧑🏼‍🦼" }, "🧑🏽‍🦼", { - "value" : "🧑🏽‍🦼", "keywords" : [ "accessibility", "medium skin tone", "person in motorized wheelchair", "person in motorized wheelchair: medium skin tone", "wheelchair" - ] + ], + "value" : "🧑🏽‍🦼" }, "🧑🏾‍🦼", { - "value" : "🧑🏾‍🦼", "keywords" : [ "accessibility", "medium-dark skin tone", "person in motorized wheelchair", "person in motorized wheelchair: medium-dark skin tone", "wheelchair" - ] + ], + "value" : "🧑🏾‍🦼" }, "🧑🏿‍🦼", { @@ -26815,7 +26814,6 @@ }, "👨🏻‍🦼", { - "value" : "👨🏻‍🦼", "keywords" : [ "accessibility", "light skin tone", @@ -26823,11 +26821,11 @@ "man in motorized wheelchair", "man in motorized wheelchair: light skin tone", "wheelchair" - ] + ], + "value" : "👨🏻‍🦼" }, "👨🏼‍🦼", { - "value" : "👨🏼‍🦼", "keywords" : [ "accessibility", "man", @@ -26835,7 +26833,8 @@ "man in motorized wheelchair: medium-light skin tone", "medium-light skin tone", "wheelchair" - ] + ], + "value" : "👨🏼‍🦼" }, "👨🏽‍🦼", { @@ -26875,17 +26874,16 @@ }, "👩‍🦼", { - "value" : "👩‍🦼", "keywords" : [ "accessibility", "motorized", "wheelchair", "woman" - ] + ], + "value" : "👩‍🦼" }, "👩🏻‍🦼", { - "value" : "👩🏻‍🦼", "keywords" : [ "accessibility", "light skin tone", @@ -26893,7 +26891,8 @@ "woman", "woman in motorized wheelchair", "woman in motorized wheelchair: light skin tone" - ] + ], + "value" : "👩🏻‍🦼" }, "👩🏼‍🦼", { @@ -26933,7 +26932,6 @@ }, "👩🏿‍🦼", { - "value" : "👩🏿‍🦼", "keywords" : [ "accessibility", "dark skin tone", @@ -26941,7 +26939,8 @@ "woman", "woman in motorized wheelchair", "woman in motorized wheelchair: dark skin tone" - ] + ], + "value" : "👩🏿‍🦼" }, "🧑‍🦽", { @@ -26966,25 +26965,25 @@ }, "🧑🏼‍🦽", { + "value" : "🧑🏼‍🦽", "keywords" : [ "accessibility", "medium-light skin tone", "person in manual wheelchair", "person in manual wheelchair: medium-light skin tone", "wheelchair" - ], - "value" : "🧑🏼‍🦽" + ] }, "🧑🏽‍🦽", { - "value" : "🧑🏽‍🦽", "keywords" : [ "accessibility", "medium skin tone", "person in manual wheelchair", "person in manual wheelchair: medium skin tone", "wheelchair" - ] + ], + "value" : "🧑🏽‍🦽" }, "🧑🏾‍🦽", { @@ -26999,14 +26998,14 @@ }, "🧑🏿‍🦽", { - "value" : "🧑🏿‍🦽", "keywords" : [ "accessibility", "dark skin tone", "person in manual wheelchair", "person in manual wheelchair: dark skin tone", "wheelchair" - ] + ], + "value" : "🧑🏿‍🦽" }, "👨‍🦽", { @@ -27032,7 +27031,6 @@ }, "👨🏼‍🦽", { - "value" : "👨🏼‍🦽", "keywords" : [ "accessibility", "man", @@ -27040,10 +27038,12 @@ "man in manual wheelchair: medium-light skin tone", "medium-light skin tone", "wheelchair" - ] + ], + "value" : "👨🏼‍🦽" }, "👨🏽‍🦽", { + "value" : "👨🏽‍🦽", "keywords" : [ "accessibility", "man", @@ -27051,8 +27051,7 @@ "man in manual wheelchair: medium skin tone", "medium skin tone", "wheelchair" - ], - "value" : "👨🏽‍🦽" + ] }, "👨🏾‍🦽", { @@ -27068,6 +27067,7 @@ }, "👨🏿‍🦽", { + "value" : "👨🏿‍🦽", "keywords" : [ "accessibility", "dark skin tone", @@ -27075,18 +27075,17 @@ "man in manual wheelchair", "man in manual wheelchair: dark skin tone", "wheelchair" - ], - "value" : "👨🏿‍🦽" + ] }, "👩‍🦽", { - "value" : "👩‍🦽", "keywords" : [ "accessibility", "manual", "wheelchair", "woman" - ] + ], + "value" : "👩‍🦽" }, "👩🏻‍🦽", { @@ -27102,6 +27101,7 @@ }, "👩🏼‍🦽", { + "value" : "👩🏼‍🦽", "keywords" : [ "accessibility", "medium-light skin tone", @@ -27109,11 +27109,11 @@ "woman", "woman in manual wheelchair", "woman in manual wheelchair: medium-light skin tone" - ], - "value" : "👩🏼‍🦽" + ] }, "👩🏽‍🦽", { + "value" : "👩🏽‍🦽", "keywords" : [ "accessibility", "medium skin tone", @@ -27121,8 +27121,7 @@ "woman", "woman in manual wheelchair", "woman in manual wheelchair: medium skin tone" - ], - "value" : "👩🏽‍🦽" + ] }, "👩🏾‍🦽", { @@ -27138,7 +27137,6 @@ }, "👩🏿‍🦽", { - "value" : "👩🏿‍🦽", "keywords" : [ "accessibility", "dark skin tone", @@ -27146,7 +27144,8 @@ "woman", "woman in manual wheelchair", "woman in manual wheelchair: dark skin tone" - ] + ], + "value" : "👩🏿‍🦽" }, "🏃", { @@ -27189,14 +27188,14 @@ }, "🏃🏽", { + "value" : "🏃🏽", "keywords" : [ "marathon", "medium skin tone", "person running", "person running: medium skin tone", "running" - ], - "value" : "🏃🏽" + ] }, "🏃🏾", { @@ -27251,6 +27250,7 @@ }, "🏃🏼‍♂️", { + "value" : "🏃🏼‍♂️", "keywords" : [ "man", "man running: medium-light skin tone", @@ -27258,12 +27258,10 @@ "medium-light skin tone", "racing", "running" - ], - "value" : "🏃🏼‍♂️" + ] }, "🏃🏽‍♂️", { - "value" : "🏃🏽‍♂️", "keywords" : [ "man", "man running: medium skin tone", @@ -27271,10 +27269,12 @@ "medium skin tone", "racing", "running" - ] + ], + "value" : "🏃🏽‍♂️" }, "🏃🏾‍♂️", { + "value" : "🏃🏾‍♂️", "keywords" : [ "man", "man running: medium-dark skin tone", @@ -27282,12 +27282,10 @@ "medium-dark skin tone", "racing", "running" - ], - "value" : "🏃🏾‍♂️" + ] }, "🏃🏿‍♂️", { - "value" : "🏃🏿‍♂️", "keywords" : [ "dark skin tone", "man", @@ -27295,7 +27293,8 @@ "marathon", "racing", "running" - ] + ], + "value" : "🏃🏿‍♂️" }, "🏃‍♀️", { @@ -27328,7 +27327,6 @@ }, "🏃🏼‍♀️", { - "value" : "🏃🏼‍♀️", "keywords" : [ "marathon", "medium-light skin tone", @@ -27336,7 +27334,8 @@ "running", "woman", "woman running: medium-light skin tone" - ] + ], + "value" : "🏃🏼‍♀️" }, "🏃🏽‍♀️", { @@ -27352,6 +27351,7 @@ }, "🏃🏾‍♀️", { + "value" : "🏃🏾‍♀️", "keywords" : [ "marathon", "medium-dark skin tone", @@ -27359,11 +27359,11 @@ "running", "woman", "woman running: medium-dark skin tone" - ], - "value" : "🏃🏾‍♀️" + ] }, "🏃🏿‍♀️", { + "value" : "🏃🏿‍♀️", "keywords" : [ "dark skin tone", "marathon", @@ -27371,8 +27371,7 @@ "running", "woman", "woman running: dark skin tone" - ], - "value" : "🏃🏿‍♀️" + ] }, "💃", { @@ -27416,14 +27415,14 @@ }, "💃🏽", { - "value" : "💃🏽", "keywords" : [ "dance", "dancing", "medium skin tone", "woman", "woman dancing: medium skin tone" - ] + ], + "value" : "💃🏽" }, "💃🏾", { @@ -27438,14 +27437,14 @@ }, "💃🏿", { - "value" : "💃🏿", "keywords" : [ "dance", "dancing", "dark skin tone", "woman", "woman dancing: dark skin tone" - ] + ], + "value" : "💃🏿" }, "🕺", { @@ -27544,6 +27543,7 @@ }, "🕴🏼", { + "value" : "🕴🏼", "keywords" : [ "business", "medium-light skin tone", @@ -27551,12 +27551,10 @@ "person in suit levitating", "person in suit levitating: medium-light skin tone", "suit" - ], - "value" : "🕴🏼" + ] }, "🕴🏽", { - "value" : "🕴🏽", "keywords" : [ "business", "medium skin tone", @@ -27564,11 +27562,11 @@ "person in suit levitating", "person in suit levitating: medium skin tone", "suit" - ] + ], + "value" : "🕴🏽" }, "🕴🏾", { - "value" : "🕴🏾", "keywords" : [ "business", "medium-dark skin tone", @@ -27576,7 +27574,8 @@ "person in suit levitating", "person in suit levitating: medium-dark skin tone", "suit" - ] + ], + "value" : "🕴🏾" }, "🕴🏿", { @@ -27613,7 +27612,6 @@ }, "👯‍♂️", { - "value" : "👯‍♂️", "keywords" : [ "bestie", "bff", @@ -27631,7 +27629,8 @@ "soulmate", "twin", "twinsies" - ] + ], + "value" : "👯‍♂️" }, "👯‍♀️", { @@ -27696,14 +27695,14 @@ }, "🧖🏽", { - "value" : "🧖🏽", "keywords" : [ "medium skin tone", "person in steamy room", "person in steamy room: medium skin tone", "sauna", "steam room" - ] + ], + "value" : "🧖🏽" }, "🧖🏾", { @@ -27790,14 +27789,14 @@ }, "🧖🏿‍♂️", { + "value" : "🧖🏿‍♂️", "keywords" : [ "dark skin tone", "man in steamy room", "man in steamy room: dark skin tone", "sauna", "steam room" - ], - "value" : "🧖🏿‍♂️" + ] }, "🧖‍♀️", { @@ -27818,14 +27817,14 @@ }, "🧖🏻‍♀️", { - "value" : "🧖🏻‍♀️", "keywords" : [ "light skin tone", "sauna", "steam room", "woman in steamy room", "woman in steamy room: light skin tone" - ] + ], + "value" : "🧖🏻‍♀️" }, "🧖🏼‍♀️", { @@ -27840,25 +27839,25 @@ }, "🧖🏽‍♀️", { - "value" : "🧖🏽‍♀️", "keywords" : [ "medium skin tone", "sauna", "steam room", "woman in steamy room", "woman in steamy room: medium skin tone" - ] + ], + "value" : "🧖🏽‍♀️" }, "🧖🏾‍♀️", { + "value" : "🧖🏾‍♀️", "keywords" : [ "medium-dark skin tone", "sauna", "steam room", "woman in steamy room", "woman in steamy room: medium-dark skin tone" - ], - "value" : "🧖🏾‍♀️" + ] }, "🧖🏿‍♀️", { @@ -27907,13 +27906,13 @@ }, "🧗🏽", { + "value" : "🧗🏽", "keywords" : [ "climber", "medium skin tone", "person climbing", "person climbing: medium skin tone" - ], - "value" : "🧗🏽" + ] }, "🧗🏾", { @@ -27927,13 +27926,13 @@ }, "🧗🏿", { + "value" : "🧗🏿", "keywords" : [ "climber", "dark skin tone", "person climbing", "person climbing: dark skin tone" - ], - "value" : "🧗🏿" + ] }, "🧗‍♂️", { @@ -27961,23 +27960,23 @@ }, "🧗🏼‍♂️", { + "value" : "🧗🏼‍♂️", "keywords" : [ "climber", "man climbing", "man climbing: medium-light skin tone", "medium-light skin tone" - ], - "value" : "🧗🏼‍♂️" + ] }, "🧗🏽‍♂️", { + "value" : "🧗🏽‍♂️", "keywords" : [ "climber", "man climbing", "man climbing: medium skin tone", "medium skin tone" - ], - "value" : "🧗🏽‍♂️" + ] }, "🧗🏾‍♂️", { @@ -28035,13 +28034,13 @@ }, "🧗🏽‍♀️", { - "value" : "🧗🏽‍♀️", "keywords" : [ "climber", "medium skin tone", "woman climbing", "woman climbing: medium skin tone" - ] + ], + "value" : "🧗🏽‍♀️" }, "🧗🏾‍♀️", { @@ -28055,26 +28054,27 @@ }, "🧗🏿‍♀️", { + "value" : "🧗🏿‍♀️", "keywords" : [ "climber", "dark skin tone", "woman climbing", "woman climbing: dark skin tone" - ], - "value" : "🧗🏿‍♀️" + ] }, "🤺", { - "value" : "🤺", "keywords" : [ "fencer", "fencing", "person", "sword" - ] + ], + "value" : "🤺" }, "🏇", { + "value" : "🏇", "keywords" : [ "horse", "jockey", @@ -28082,11 +28082,11 @@ "racing", "riding", "sport" - ], - "value" : "🏇" + ] }, "🏇🏻", { + "value" : "🏇🏻", "keywords" : [ "horse", "horse racing: light skin tone", @@ -28094,11 +28094,11 @@ "light skin tone", "racehorse", "racing" - ], - "value" : "🏇🏻" + ] }, "🏇🏼", { + "value" : "🏇🏼", "keywords" : [ "horse", "horse racing: medium-light skin tone", @@ -28106,11 +28106,11 @@ "medium-light skin tone", "racehorse", "racing" - ], - "value" : "🏇🏼" + ] }, "🏇🏽", { + "value" : "🏇🏽", "keywords" : [ "horse", "horse racing: medium skin tone", @@ -28118,8 +28118,7 @@ "medium skin tone", "racehorse", "racing" - ], - "value" : "🏇🏽" + ] }, "🏇🏾", { @@ -28135,6 +28134,7 @@ }, "🏇🏿", { + "value" : "🏇🏿", "keywords" : [ "dark skin tone", "horse", @@ -28142,17 +28142,16 @@ "jockey", "racehorse", "racing" - ], - "value" : "🏇🏿" + ] }, "⛷️", { + "value" : "⛷️", "keywords" : [ "ski", "skier", "snow" - ], - "value" : "⛷️" + ] }, "🏂", { @@ -28191,7 +28190,6 @@ }, "🏂🏽", { - "value" : "🏂🏽", "keywords" : [ "medium skin tone", "ski", @@ -28199,11 +28197,11 @@ "snowboard", "snowboarder", "snowboarder: medium skin tone" - ] + ], + "value" : "🏂🏽" }, "🏂🏾", { - "value" : "🏂🏾", "keywords" : [ "medium-dark skin tone", "ski", @@ -28211,11 +28209,11 @@ "snowboard", "snowboarder", "snowboarder: medium-dark skin tone" - ] + ], + "value" : "🏂🏾" }, "🏂🏿", { - "value" : "🏂🏿", "keywords" : [ "dark skin tone", "ski", @@ -28223,11 +28221,11 @@ "snowboard", "snowboarder", "snowboarder: dark skin tone" - ] + ], + "value" : "🏂🏿" }, "🏌️", { - "value" : "🏌️", "keywords" : [ "ball", "birdie", @@ -28241,18 +28239,19 @@ "putt", "range", "tee" - ] + ], + "value" : "🏌️" }, "🏌🏻", { - "value" : "🏌🏻", "keywords" : [ "ball", "golf", "light skin tone", "person golfing", "person golfing: light skin tone" - ] + ], + "value" : "🏌🏻" }, "🏌🏼", { @@ -28267,14 +28266,14 @@ }, "🏌🏽", { - "value" : "🏌🏽", "keywords" : [ "ball", "golf", "medium skin tone", "person golfing", "person golfing: medium skin tone" - ] + ], + "value" : "🏌🏽" }, "🏌🏾", { @@ -28300,6 +28299,7 @@ }, "🏌️‍♂️", { + "value" : "🏌️‍♂️", "keywords" : [ "ball", "birdie", @@ -28313,8 +28313,7 @@ "putt", "range", "tee" - ], - "value" : "🏌️‍♂️" + ] }, "🏌🏻‍♂️", { @@ -28362,14 +28361,14 @@ }, "🏌🏿‍♂️", { - "value" : "🏌🏿‍♂️", "keywords" : [ "dark skin tone", "golf", "man", "man golfing", "man golfing: dark skin tone" - ] + ], + "value" : "🏌🏿‍♂️" }, "🏌️‍♀️", { @@ -28391,36 +28390,36 @@ }, "🏌🏻‍♀️", { - "value" : "🏌🏻‍♀️", "keywords" : [ "golf", "light skin tone", "woman", "woman golfing", "woman golfing: light skin tone" - ] + ], + "value" : "🏌🏻‍♀️" }, "🏌🏼‍♀️", { + "value" : "🏌🏼‍♀️", "keywords" : [ "golf", "medium-light skin tone", "woman", "woman golfing", "woman golfing: medium-light skin tone" - ], - "value" : "🏌🏼‍♀️" + ] }, "🏌🏽‍♀️", { + "value" : "🏌🏽‍♀️", "keywords" : [ "golf", "medium skin tone", "woman", "woman golfing", "woman golfing: medium skin tone" - ], - "value" : "🏌🏽‍♀️" + ] }, "🏌🏾‍♀️", { @@ -28481,13 +28480,13 @@ }, "🏄🏽", { + "value" : "🏄🏽", "keywords" : [ "medium skin tone", "person surfing", "person surfing: medium skin tone", "surfing" - ], - "value" : "🏄🏽" + ] }, "🏄🏾", { @@ -28536,23 +28535,23 @@ }, "🏄🏼‍♂️", { + "value" : "🏄🏼‍♂️", "keywords" : [ "man", "man surfing: medium-light skin tone", "medium-light skin tone", "surfing" - ], - "value" : "🏄🏼‍♂️" + ] }, "🏄🏽‍♂️", { + "value" : "🏄🏽‍♂️", "keywords" : [ "man", "man surfing: medium skin tone", "medium skin tone", "surfing" - ], - "value" : "🏄🏽‍♂️" + ] }, "🏄🏾‍♂️", { @@ -28576,6 +28575,7 @@ }, "🏄‍♀️", { + "value" : "🏄‍♀️", "keywords" : [ "beach", "ocean", @@ -28586,8 +28586,7 @@ "surfing", "swell", "waves" - ], - "value" : "🏄‍♀️" + ] }, "🏄🏻‍♀️", { @@ -28621,13 +28620,13 @@ }, "🏄🏾‍♀️", { - "value" : "🏄🏾‍♀️", "keywords" : [ "medium-dark skin tone", "surfing", "woman", "woman surfing: medium-dark skin tone" - ] + ], + "value" : "🏄🏾‍♀️" }, "🏄🏿‍♀️", { @@ -28641,7 +28640,6 @@ }, "🚣", { - "value" : "🚣", "keywords" : [ "boat", "canoe", @@ -28656,18 +28654,19 @@ "row", "rowboat", "rowing" - ] + ], + "value" : "🚣" }, "🚣🏻", { - "value" : "🚣🏻", "keywords" : [ "boat", "light skin tone", "person rowing boat", "person rowing boat: light skin tone", "rowboat" - ] + ], + "value" : "🚣🏻" }, "🚣🏼", { @@ -28682,25 +28681,25 @@ }, "🚣🏽", { + "value" : "🚣🏽", "keywords" : [ "boat", "medium skin tone", "person rowing boat", "person rowing boat: medium skin tone", "rowboat" - ], - "value" : "🚣🏽" + ] }, "🚣🏾", { + "value" : "🚣🏾", "keywords" : [ "boat", "medium-dark skin tone", "person rowing boat", "person rowing boat: medium-dark skin tone", "rowboat" - ], - "value" : "🚣🏾" + ] }, "🚣🏿", { @@ -28715,7 +28714,6 @@ }, "🚣‍♂️", { - "value" : "🚣‍♂️", "keywords" : [ "boat", "canoe", @@ -28730,7 +28728,8 @@ "row", "rowboat", "rowing" - ] + ], + "value" : "🚣‍♂️" }, "🚣🏻‍♂️", { @@ -28746,6 +28745,7 @@ }, "🚣🏼‍♂️", { + "value" : "🚣🏼‍♂️", "keywords" : [ "boat", "man", @@ -28753,12 +28753,10 @@ "man rowing boat: medium-light skin tone", "medium-light skin tone", "rowboat" - ], - "value" : "🚣🏼‍♂️" + ] }, "🚣🏽‍♂️", { - "value" : "🚣🏽‍♂️", "keywords" : [ "boat", "man", @@ -28766,7 +28764,8 @@ "man rowing boat: medium skin tone", "medium skin tone", "rowboat" - ] + ], + "value" : "🚣🏽‍♂️" }, "🚣🏾‍♂️", { @@ -28813,6 +28812,7 @@ }, "🚣🏻‍♀️", { + "value" : "🚣🏻‍♀️", "keywords" : [ "boat", "light skin tone", @@ -28820,12 +28820,10 @@ "woman", "woman rowing boat", "woman rowing boat: light skin tone" - ], - "value" : "🚣🏻‍♀️" + ] }, "🚣🏼‍♀️", { - "value" : "🚣🏼‍♀️", "keywords" : [ "boat", "medium-light skin tone", @@ -28833,7 +28831,8 @@ "woman", "woman rowing boat", "woman rowing boat: medium-light skin tone" - ] + ], + "value" : "🚣🏼‍♀️" }, "🚣🏽‍♀️", { @@ -28849,7 +28848,6 @@ }, "🚣🏾‍♀️", { - "value" : "🚣🏾‍♀️", "keywords" : [ "boat", "medium-dark skin tone", @@ -28857,7 +28855,8 @@ "woman", "woman rowing boat", "woman rowing boat: medium-dark skin tone" - ] + ], + "value" : "🚣🏾‍♀️" }, "🚣🏿‍♀️", { @@ -28896,23 +28895,23 @@ }, "🏊🏼", { + "value" : "🏊🏼", "keywords" : [ "medium-light skin tone", "person swimming", "person swimming: medium-light skin tone", "swim" - ], - "value" : "🏊🏼" + ] }, "🏊🏽", { + "value" : "🏊🏽", "keywords" : [ "medium skin tone", "person swimming", "person swimming: medium skin tone", "swim" - ], - "value" : "🏊🏽" + ] }, "🏊🏾", { @@ -28926,17 +28925,16 @@ }, "🏊🏿", { + "value" : "🏊🏿", "keywords" : [ "dark skin tone", "person swimming", "person swimming: dark skin tone", "swim" - ], - "value" : "🏊🏿" + ] }, "🏊‍♂️", { - "value" : "🏊‍♂️", "keywords" : [ "freestyle", "man", @@ -28945,18 +28943,19 @@ "swimmer", "swimming", "triathlon" - ] + ], + "value" : "🏊‍♂️" }, "🏊🏻‍♂️", { + "value" : "🏊🏻‍♂️", "keywords" : [ "light skin tone", "man", "man swimming", "man swimming: light skin tone", "swim" - ], - "value" : "🏊🏻‍♂️" + ] }, "🏊🏼‍♂️", { @@ -28971,14 +28970,14 @@ }, "🏊🏽‍♂️", { - "value" : "🏊🏽‍♂️", "keywords" : [ "man", "man swimming", "man swimming: medium skin tone", "medium skin tone", "swim" - ] + ], + "value" : "🏊🏽‍♂️" }, "🏊🏾‍♂️", { @@ -29017,14 +29016,14 @@ }, "🏊🏻‍♀️", { + "value" : "🏊🏻‍♀️", "keywords" : [ "light skin tone", "swim", "woman", "woman swimming", "woman swimming: light skin tone" - ], - "value" : "🏊🏻‍♀️" + ] }, "🏊🏼‍♀️", { @@ -29061,14 +29060,14 @@ }, "🏊🏿‍♀️", { + "value" : "🏊🏿‍♀️", "keywords" : [ "dark skin tone", "swim", "woman", "woman swimming", "woman swimming: dark skin tone" - ], - "value" : "🏊🏿‍♀️" + ] }, "⛹️", { @@ -29128,16 +29127,17 @@ }, "⛹🏿", { - "value" : "⛹🏿", "keywords" : [ "ball", "dark skin tone", "person bouncing ball", "person bouncing ball: dark skin tone" - ] + ], + "value" : "⛹🏿" }, "⛹️‍♂️", { + "value" : "⛹️‍♂️", "keywords" : [ "athletic", "ball", @@ -29149,19 +29149,18 @@ "net", "player", "throw" - ], - "value" : "⛹️‍♂️" + ] }, "⛹🏻‍♂️", { + "value" : "⛹🏻‍♂️", "keywords" : [ "ball", "light skin tone", "man", "man bouncing ball", "man bouncing ball: light skin tone" - ], - "value" : "⛹🏻‍♂️" + ] }, "⛹🏼‍♂️", { @@ -29225,14 +29224,14 @@ }, "⛹🏻‍♀️", { - "value" : "⛹🏻‍♀️", "keywords" : [ "ball", "light skin tone", "woman", "woman bouncing ball", "woman bouncing ball: light skin tone" - ] + ], + "value" : "⛹🏻‍♀️" }, "⛹🏼‍♀️", { @@ -29258,14 +29257,14 @@ }, "⛹🏾‍♀️", { - "value" : "⛹🏾‍♀️", "keywords" : [ "ball", "medium-dark skin tone", "woman", "woman bouncing ball", "woman bouncing ball: medium-dark skin tone" - ] + ], + "value" : "⛹🏾‍♀️" }, "⛹🏿‍♀️", { @@ -29308,25 +29307,25 @@ }, "🏋🏼", { - "value" : "🏋🏼", "keywords" : [ "lifter", "medium-light skin tone", "person lifting weights", "person lifting weights: medium-light skin tone", "weight" - ] + ], + "value" : "🏋🏼" }, "🏋🏽", { + "value" : "🏋🏽", "keywords" : [ "lifter", "medium skin tone", "person lifting weights", "person lifting weights: medium skin tone", "weight" - ], - "value" : "🏋🏽" + ] }, "🏋🏾", { @@ -29341,18 +29340,17 @@ }, "🏋🏿", { - "value" : "🏋🏿", "keywords" : [ "dark skin tone", "lifter", "person lifting weights", "person lifting weights: dark skin tone", "weight" - ] + ], + "value" : "🏋🏿" }, "🏋️‍♂️", { - "value" : "🏋️‍♂️", "keywords" : [ "barbell", "bodybuilder", @@ -29365,29 +29363,30 @@ "weightlifter", "weights", "workout" - ] + ], + "value" : "🏋️‍♂️" }, "🏋🏻‍♂️", { + "value" : "🏋🏻‍♂️", "keywords" : [ "light skin tone", "man", "man lifting weights", "man lifting weights: light skin tone", "weight lifter" - ], - "value" : "🏋🏻‍♂️" + ] }, "🏋🏼‍♂️", { - "value" : "🏋🏼‍♂️", "keywords" : [ "man", "man lifting weights", "man lifting weights: medium-light skin tone", "medium-light skin tone", "weight lifter" - ] + ], + "value" : "🏋🏼‍♂️" }, "🏋🏽‍♂️", { @@ -29402,29 +29401,28 @@ }, "🏋🏾‍♂️", { + "value" : "🏋🏾‍♂️", "keywords" : [ "man", "man lifting weights", "man lifting weights: medium-dark skin tone", "medium-dark skin tone", "weight lifter" - ], - "value" : "🏋🏾‍♂️" + ] }, "🏋🏿‍♂️", { - "value" : "🏋🏿‍♂️", "keywords" : [ "dark skin tone", "man", "man lifting weights", "man lifting weights: dark skin tone", "weight lifter" - ] + ], + "value" : "🏋🏿‍♂️" }, "🏋️‍♀️", { - "value" : "🏋️‍♀️", "keywords" : [ "barbell", "bodybuilder", @@ -29437,62 +29435,63 @@ "weights", "woman", "workout" - ] + ], + "value" : "🏋️‍♀️" }, "🏋🏻‍♀️", { + "value" : "🏋🏻‍♀️", "keywords" : [ "light skin tone", "weight lifter", "woman", "woman lifting weights", "woman lifting weights: light skin tone" - ], - "value" : "🏋🏻‍♀️" + ] }, "🏋🏼‍♀️", { - "value" : "🏋🏼‍♀️", "keywords" : [ "medium-light skin tone", "weight lifter", "woman", "woman lifting weights", "woman lifting weights: medium-light skin tone" - ] + ], + "value" : "🏋🏼‍♀️" }, "🏋🏽‍♀️", { + "value" : "🏋🏽‍♀️", "keywords" : [ "medium skin tone", "weight lifter", "woman", "woman lifting weights", "woman lifting weights: medium skin tone" - ], - "value" : "🏋🏽‍♀️" + ] }, "🏋🏾‍♀️", { - "value" : "🏋🏾‍♀️", "keywords" : [ "medium-dark skin tone", "weight lifter", "woman", "woman lifting weights", "woman lifting weights: medium-dark skin tone" - ] + ], + "value" : "🏋🏾‍♀️" }, "🏋🏿‍♀️", { + "value" : "🏋🏿‍♀️", "keywords" : [ "dark skin tone", "weight lifter", "woman", "woman lifting weights", "woman lifting weights: dark skin tone" - ], - "value" : "🏋🏿‍♀️" + ] }, "🚴", { @@ -29535,7 +29534,6 @@ }, "🚴🏽", { - "value" : "🚴🏽", "keywords" : [ "bicycle", "biking", @@ -29543,11 +29541,11 @@ "medium skin tone", "person biking", "person biking: medium skin tone" - ] + ], + "value" : "🚴🏽" }, "🚴🏾", { - "value" : "🚴🏾", "keywords" : [ "bicycle", "biking", @@ -29555,10 +29553,12 @@ "medium-dark skin tone", "person biking", "person biking: medium-dark skin tone" - ] + ], + "value" : "🚴🏾" }, "🚴🏿", { + "value" : "🚴🏿", "keywords" : [ "bicycle", "biking", @@ -29566,11 +29566,11 @@ "dark skin tone", "person biking", "person biking: dark skin tone" - ], - "value" : "🚴🏿" + ] }, "🚴‍♂️", { + "value" : "🚴‍♂️", "keywords" : [ "bicycle", "bicyclist", @@ -29581,8 +29581,7 @@ "man", "riding", "sport" - ], - "value" : "🚴‍♂️" + ] }, "🚴🏻‍♂️", { @@ -29646,6 +29645,7 @@ }, "🚴‍♀️", { + "value" : "🚴‍♀️", "keywords" : [ "bicycle", "bicyclist", @@ -29656,12 +29656,10 @@ "riding", "sport", "woman" - ], - "value" : "🚴‍♀️" + ] }, "🚴🏻‍♀️", { - "value" : "🚴🏻‍♀️", "keywords" : [ "bicycle", "biking", @@ -29669,11 +29667,11 @@ "light skin tone", "woman", "woman biking: light skin tone" - ] + ], + "value" : "🚴🏻‍♀️" }, "🚴🏼‍♀️", { - "value" : "🚴🏼‍♀️", "keywords" : [ "bicycle", "biking", @@ -29681,7 +29679,8 @@ "medium-light skin tone", "woman", "woman biking: medium-light skin tone" - ] + ], + "value" : "🚴🏼‍♀️" }, "🚴🏽‍♀️", { @@ -29697,6 +29696,7 @@ }, "🚴🏾‍♀️", { + "value" : "🚴🏾‍♀️", "keywords" : [ "bicycle", "biking", @@ -29704,8 +29704,7 @@ "medium-dark skin tone", "woman", "woman biking: medium-dark skin tone" - ], - "value" : "🚴🏾‍♀️" + ] }, "🚴🏿‍♀️", { @@ -29737,6 +29736,7 @@ }, "🚵🏻", { + "value" : "🚵🏻", "keywords" : [ "bicycle", "bicyclist", @@ -29746,11 +29746,11 @@ "mountain", "person mountain biking", "person mountain biking: light skin tone" - ], - "value" : "🚵🏻" + ] }, "🚵🏼", { + "value" : "🚵🏼", "keywords" : [ "bicycle", "bicyclist", @@ -29760,12 +29760,10 @@ "mountain", "person mountain biking", "person mountain biking: medium-light skin tone" - ], - "value" : "🚵🏼" + ] }, "🚵🏽", { - "value" : "🚵🏽", "keywords" : [ "bicycle", "bicyclist", @@ -29775,10 +29773,12 @@ "mountain", "person mountain biking", "person mountain biking: medium skin tone" - ] + ], + "value" : "🚵🏽" }, "🚵🏾", { + "value" : "🚵🏾", "keywords" : [ "bicycle", "bicyclist", @@ -29788,8 +29788,7 @@ "mountain", "person mountain biking", "person mountain biking: medium-dark skin tone" - ], - "value" : "🚵🏾" + ] }, "🚵🏿", { @@ -29807,6 +29806,7 @@ }, "🚵‍♂️", { + "value" : "🚵‍♂️", "keywords" : [ "bicycle", "bicyclist", @@ -29818,11 +29818,11 @@ "mountain", "riding", "sport" - ], - "value" : "🚵‍♂️" + ] }, "🚵🏻‍♂️", { + "value" : "🚵🏻‍♂️", "keywords" : [ "bicycle", "bike", @@ -29832,8 +29832,7 @@ "man mountain biking", "man mountain biking: light skin tone", "mountain" - ], - "value" : "🚵🏻‍♂️" + ] }, "🚵🏼‍♂️", { @@ -29851,7 +29850,6 @@ }, "🚵🏽‍♂️", { - "value" : "🚵🏽‍♂️", "keywords" : [ "bicycle", "bike", @@ -29861,7 +29859,8 @@ "man mountain biking: medium skin tone", "medium skin tone", "mountain" - ] + ], + "value" : "🚵🏽‍♂️" }, "🚵🏾‍♂️", { @@ -29879,7 +29878,6 @@ }, "🚵🏿‍♂️", { - "value" : "🚵🏿‍♂️", "keywords" : [ "bicycle", "bike", @@ -29889,10 +29887,12 @@ "man mountain biking", "man mountain biking: dark skin tone", "mountain" - ] + ], + "value" : "🚵🏿‍♂️" }, "🚵‍♀️", { + "value" : "🚵‍♀️", "keywords" : [ "bicycle", "bicyclist", @@ -29904,12 +29904,10 @@ "riding", "sport", "woman" - ], - "value" : "🚵‍♀️" + ] }, "🚵🏻‍♀️", { - "value" : "🚵🏻‍♀️", "keywords" : [ "bicycle", "bike", @@ -29919,11 +29917,11 @@ "mountain", "woman", "woman mountain biking: light skin tone" - ] + ], + "value" : "🚵🏻‍♀️" }, "🚵🏼‍♀️", { - "value" : "🚵🏼‍♀️", "keywords" : [ "bicycle", "bike", @@ -29933,11 +29931,11 @@ "mountain", "woman", "woman mountain biking: medium-light skin tone" - ] + ], + "value" : "🚵🏼‍♀️" }, "🚵🏽‍♀️", { - "value" : "🚵🏽‍♀️", "keywords" : [ "bicycle", "bike", @@ -29947,7 +29945,8 @@ "mountain", "woman", "woman mountain biking: medium skin tone" - ] + ], + "value" : "🚵🏽‍♀️" }, "🚵🏾‍♀️", { @@ -29965,6 +29964,7 @@ }, "🚵🏿‍♀️", { + "value" : "🚵🏿‍♀️", "keywords" : [ "bicycle", "bike", @@ -29974,8 +29974,7 @@ "mountain", "woman", "woman mountain biking: dark skin tone" - ], - "value" : "🚵🏿‍♀️" + ] }, "🤸", { @@ -29994,36 +29993,36 @@ }, "🤸🏻", { - "value" : "🤸🏻", "keywords" : [ "cartwheel", "gymnastics", "light skin tone", "person cartwheeling", "person cartwheeling: light skin tone" - ] + ], + "value" : "🤸🏻" }, "🤸🏼", { + "value" : "🤸🏼", "keywords" : [ "cartwheel", "gymnastics", "medium-light skin tone", "person cartwheeling", "person cartwheeling: medium-light skin tone" - ], - "value" : "🤸🏼" + ] }, "🤸🏽", { + "value" : "🤸🏽", "keywords" : [ "cartwheel", "gymnastics", "medium skin tone", "person cartwheeling", "person cartwheeling: medium skin tone" - ], - "value" : "🤸🏽" + ] }, "🤸🏾", { @@ -30049,6 +30048,7 @@ }, "🤸‍♂️", { + "value" : "🤸‍♂️", "keywords" : [ "active", "cartwheel", @@ -30059,8 +30059,7 @@ "happy", "man", "somersault" - ], - "value" : "🤸‍♂️" + ] }, "🤸🏻‍♂️", { @@ -30088,6 +30087,7 @@ }, "🤸🏽‍♂️", { + "value" : "🤸🏽‍♂️", "keywords" : [ "cartwheel", "gymnastics", @@ -30095,8 +30095,7 @@ "man cartwheeling", "man cartwheeling: medium skin tone", "medium skin tone" - ], - "value" : "🤸🏽‍♂️" + ] }, "🤸🏾‍♂️", { @@ -30112,6 +30111,7 @@ }, "🤸🏿‍♂️", { + "value" : "🤸🏿‍♂️", "keywords" : [ "cartwheel", "dark skin tone", @@ -30119,11 +30119,11 @@ "man", "man cartwheeling", "man cartwheeling: dark skin tone" - ], - "value" : "🤸🏿‍♂️" + ] }, "🤸‍♀️", { + "value" : "🤸‍♀️", "keywords" : [ "active", "cartwheel", @@ -30134,8 +30134,7 @@ "happy", "somersault", "woman" - ], - "value" : "🤸‍♀️" + ] }, "🤸🏻‍♀️", { @@ -30151,7 +30150,6 @@ }, "🤸🏼‍♀️", { - "value" : "🤸🏼‍♀️", "keywords" : [ "cartwheel", "gymnastics", @@ -30159,11 +30157,11 @@ "woman", "woman cartwheeling", "woman cartwheeling: medium-light skin tone" - ] + ], + "value" : "🤸🏼‍♀️" }, "🤸🏽‍♀️", { - "value" : "🤸🏽‍♀️", "keywords" : [ "cartwheel", "gymnastics", @@ -30171,7 +30169,8 @@ "woman", "woman cartwheeling", "woman cartwheeling: medium skin tone" - ] + ], + "value" : "🤸🏽‍♀️" }, "🤸🏾‍♀️", { @@ -30187,7 +30186,6 @@ }, "🤸🏿‍♀️", { - "value" : "🤸🏿‍♀️", "keywords" : [ "cartwheel", "dark skin tone", @@ -30195,10 +30193,12 @@ "woman", "woman cartwheeling", "woman cartwheeling: dark skin tone" - ] + ], + "value" : "🤸🏿‍♀️" }, "🤼", { + "value" : "🤼", "keywords" : [ "combat", "duel", @@ -30208,8 +30208,7 @@ "tournament", "wrestle", "wrestling" - ], - "value" : "🤼" + ] }, "🤼‍♂️", { @@ -30241,6 +30240,7 @@ }, "🤽", { + "value" : "🤽", "keywords" : [ "person", "playing", @@ -30249,19 +30249,18 @@ "swimming", "water", "waterpolo" - ], - "value" : "🤽" + ] }, "🤽🏻", { - "value" : "🤽🏻", "keywords" : [ "light skin tone", "person playing water polo", "person playing water polo: light skin tone", "polo", "water" - ] + ], + "value" : "🤽🏻" }, "🤽🏼", { @@ -30287,28 +30286,29 @@ }, "🤽🏾", { - "value" : "🤽🏾", "keywords" : [ "medium-dark skin tone", "person playing water polo", "person playing water polo: medium-dark skin tone", "polo", "water" - ] + ], + "value" : "🤽🏾" }, "🤽🏿", { + "value" : "🤽🏿", "keywords" : [ "dark skin tone", "person playing water polo", "person playing water polo: dark skin tone", "polo", "water" - ], - "value" : "🤽🏿" + ] }, "🤽‍♂️", { + "value" : "🤽‍♂️", "keywords" : [ "man", "playing", @@ -30317,8 +30317,7 @@ "swimming", "water", "waterpolo" - ], - "value" : "🤽‍♂️" + ] }, "🤽🏻‍♂️", { @@ -30344,25 +30343,25 @@ }, "🤽🏽‍♂️", { - "value" : "🤽🏽‍♂️", "keywords" : [ "man", "man playing water polo", "man playing water polo: medium skin tone", "medium skin tone", "water polo" - ] + ], + "value" : "🤽🏽‍♂️" }, "🤽🏾‍♂️", { + "value" : "🤽🏾‍♂️", "keywords" : [ "man", "man playing water polo", "man playing water polo: medium-dark skin tone", "medium-dark skin tone", "water polo" - ], - "value" : "🤽🏾‍♂️" + ] }, "🤽🏿‍♂️", { @@ -30377,6 +30376,7 @@ }, "🤽‍♀️", { + "value" : "🤽‍♀️", "keywords" : [ "playing", "polo", @@ -30385,8 +30385,7 @@ "water", "waterpolo", "woman" - ], - "value" : "🤽‍♀️" + ] }, "🤽🏻‍♀️", { @@ -30401,25 +30400,25 @@ }, "🤽🏼‍♀️", { + "value" : "🤽🏼‍♀️", "keywords" : [ "medium-light skin tone", "water polo", "woman", "woman playing water polo", "woman playing water polo: medium-light skin tone" - ], - "value" : "🤽🏼‍♀️" + ] }, "🤽🏽‍♀️", { - "value" : "🤽🏽‍♀️", "keywords" : [ "medium skin tone", "water polo", "woman", "woman playing water polo", "woman playing water polo: medium skin tone" - ] + ], + "value" : "🤽🏽‍♀️" }, "🤽🏾‍♀️", { @@ -30434,14 +30433,14 @@ }, "🤽🏿‍♀️", { - "value" : "🤽🏿‍♀️", "keywords" : [ "dark skin tone", "water polo", "woman", "woman playing water polo", "woman playing water polo: dark skin tone" - ] + ], + "value" : "🤽🏿‍♀️" }, "🤾", { @@ -30475,25 +30474,25 @@ }, "🤾🏼", { + "value" : "🤾🏼", "keywords" : [ "ball", "handball", "medium-light skin tone", "person playing handball", "person playing handball: medium-light skin tone" - ], - "value" : "🤾🏼" + ] }, "🤾🏽", { + "value" : "🤾🏽", "keywords" : [ "ball", "handball", "medium skin tone", "person playing handball", "person playing handball: medium skin tone" - ], - "value" : "🤾🏽" + ] }, "🤾🏾", { @@ -30508,18 +30507,17 @@ }, "🤾🏿", { - "value" : "🤾🏿", "keywords" : [ "ball", "dark skin tone", "handball", "person playing handball", "person playing handball: dark skin tone" - ] + ], + "value" : "🤾🏿" }, "🤾‍♂️", { - "value" : "🤾‍♂️", "keywords" : [ "athletics", "ball", @@ -30534,18 +30532,19 @@ "sport", "throw", "toss" - ] + ], + "value" : "🤾‍♂️" }, "🤾🏻‍♂️", { + "value" : "🤾🏻‍♂️", "keywords" : [ "handball", "light skin tone", "man", "man playing handball", "man playing handball: light skin tone" - ], - "value" : "🤾🏻‍♂️" + ] }, "🤾🏼‍♂️", { @@ -30571,14 +30570,14 @@ }, "🤾🏾‍♂️", { + "value" : "🤾🏾‍♂️", "keywords" : [ "handball", "man", "man playing handball", "man playing handball: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "🤾🏾‍♂️" + ] }, "🤾🏿‍♂️", { @@ -30612,25 +30611,25 @@ }, "🤾🏻‍♀️", { + "value" : "🤾🏻‍♀️", "keywords" : [ "handball", "light skin tone", "woman", "woman playing handball", "woman playing handball: light skin tone" - ], - "value" : "🤾🏻‍♀️" + ] }, "🤾🏼‍♀️", { - "value" : "🤾🏼‍♀️", "keywords" : [ "handball", "medium-light skin tone", "woman", "woman playing handball", "woman playing handball: medium-light skin tone" - ] + ], + "value" : "🤾🏼‍♀️" }, "🤾🏽‍♀️", { @@ -30645,14 +30644,14 @@ }, "🤾🏾‍♀️", { + "value" : "🤾🏾‍♀️", "keywords" : [ "handball", "medium-dark skin tone", "woman", "woman playing handball", "woman playing handball: medium-dark skin tone" - ], - "value" : "🤾🏾‍♀️" + ] }, "🤾🏿‍♀️", { @@ -30709,7 +30708,6 @@ }, "🤹🏽", { - "value" : "🤹🏽", "keywords" : [ "balance", "juggle", @@ -30718,10 +30716,12 @@ "person juggling", "person juggling: medium skin tone", "skill" - ] + ], + "value" : "🤹🏽" }, "🤹🏾", { + "value" : "🤹🏾", "keywords" : [ "balance", "juggle", @@ -30730,12 +30730,10 @@ "person juggling", "person juggling: medium-dark skin tone", "skill" - ], - "value" : "🤹🏾" + ] }, "🤹🏿", { - "value" : "🤹🏿", "keywords" : [ "balance", "dark skin tone", @@ -30744,7 +30742,8 @@ "person juggling", "person juggling: dark skin tone", "skill" - ] + ], + "value" : "🤹🏿" }, "🤹‍♂️", { @@ -30775,14 +30774,14 @@ }, "🤹🏼‍♂️", { - "value" : "🤹🏼‍♂️", "keywords" : [ "juggling", "man", "man juggling: medium-light skin tone", "medium-light skin tone", "multitask" - ] + ], + "value" : "🤹🏼‍♂️" }, "🤹🏽‍♂️", { @@ -30808,14 +30807,14 @@ }, "🤹🏿‍♂️", { + "value" : "🤹🏿‍♂️", "keywords" : [ "dark skin tone", "juggling", "man", "man juggling: dark skin tone", "multitask" - ], - "value" : "🤹🏿‍♂️" + ] }, "🤹‍♀️", { @@ -30835,25 +30834,25 @@ }, "🤹🏻‍♀️", { + "value" : "🤹🏻‍♀️", "keywords" : [ "juggling", "light skin tone", "multitask", "woman", "woman juggling: light skin tone" - ], - "value" : "🤹🏻‍♀️" + ] }, "🤹🏼‍♀️", { + "value" : "🤹🏼‍♀️", "keywords" : [ "juggling", "medium-light skin tone", "multitask", "woman", "woman juggling: medium-light skin tone" - ], - "value" : "🤹🏼‍♀️" + ] }, "🤹🏽‍♀️", { @@ -30868,14 +30867,14 @@ }, "🤹🏾‍♀️", { - "value" : "🤹🏾‍♀️", "keywords" : [ "juggling", "medium-dark skin tone", "multitask", "woman", "woman juggling: medium-dark skin tone" - ] + ], + "value" : "🤹🏾‍♀️" }, "🤹🏿‍♀️", { @@ -30909,25 +30908,25 @@ }, "🧘🏻", { - "value" : "🧘🏻", "keywords" : [ "light skin tone", "meditation", "person in lotus position", "person in lotus position: light skin tone", "yoga" - ] + ], + "value" : "🧘🏻" }, "🧘🏼", { + "value" : "🧘🏼", "keywords" : [ "meditation", "medium-light skin tone", "person in lotus position", "person in lotus position: medium-light skin tone", "yoga" - ], - "value" : "🧘🏼" + ] }, "🧘🏽", { @@ -30942,29 +30941,28 @@ }, "🧘🏾", { + "value" : "🧘🏾", "keywords" : [ "meditation", "medium-dark skin tone", "person in lotus position", "person in lotus position: medium-dark skin tone", "yoga" - ], - "value" : "🧘🏾" + ] }, "🧘🏿", { + "value" : "🧘🏿", "keywords" : [ "dark skin tone", "meditation", "person in lotus position", "person in lotus position: dark skin tone", "yoga" - ], - "value" : "🧘🏿" + ] }, "🧘‍♂️", { - "value" : "🧘‍♂️", "keywords" : [ "cross", "legged", @@ -30979,18 +30977,19 @@ "yoga", "yogi", "zen" - ] + ], + "value" : "🧘‍♂️" }, "🧘🏻‍♂️", { + "value" : "🧘🏻‍♂️", "keywords" : [ "light skin tone", "man in lotus position", "man in lotus position: light skin tone", "meditation", "yoga" - ], - "value" : "🧘🏻‍♂️" + ] }, "🧘🏼‍♂️", { @@ -31016,14 +31015,14 @@ }, "🧘🏾‍♂️", { - "value" : "🧘🏾‍♂️", "keywords" : [ "man in lotus position", "man in lotus position: medium-dark skin tone", "meditation", "medium-dark skin tone", "yoga" - ] + ], + "value" : "🧘🏾‍♂️" }, "🧘🏿‍♂️", { @@ -31038,6 +31037,7 @@ }, "🧘‍♀️", { + "value" : "🧘‍♀️", "keywords" : [ "cross", "legged", @@ -31052,8 +31052,7 @@ "yoga", "yogi", "zen" - ], - "value" : "🧘‍♀️" + ] }, "🧘🏻‍♀️", { @@ -31101,14 +31100,14 @@ }, "🧘🏿‍♀️", { + "value" : "🧘🏿‍♀️", "keywords" : [ "dark skin tone", "meditation", "woman in lotus position", "woman in lotus position: dark skin tone", "yoga" - ], - "value" : "🧘🏿‍♀️" + ] }, "🛀", { @@ -31134,25 +31133,25 @@ }, "🛀🏼", { + "value" : "🛀🏼", "keywords" : [ "bath", "bathtub", "medium-light skin tone", "person taking bath", "person taking bath: medium-light skin tone" - ], - "value" : "🛀🏼" + ] }, "🛀🏽", { + "value" : "🛀🏽", "keywords" : [ "bath", "bathtub", "medium skin tone", "person taking bath", "person taking bath: medium skin tone" - ], - "value" : "🛀🏽" + ] }, "🛀🏾", { @@ -31178,6 +31177,7 @@ }, "🛌", { + "value" : "🛌", "keywords" : [ "bed", "bedtime", @@ -31190,11 +31190,11 @@ "sleep", "tired", "zzz" - ], - "value" : "🛌" + ] }, "🛌🏻", { + "value" : "🛌🏻", "keywords" : [ "good night", "hotel", @@ -31202,12 +31202,10 @@ "person in bed", "person in bed: light skin tone", "sleep" - ], - "value" : "🛌🏻" + ] }, "🛌🏼", { - "value" : "🛌🏼", "keywords" : [ "good night", "hotel", @@ -31215,7 +31213,8 @@ "person in bed", "person in bed: medium-light skin tone", "sleep" - ] + ], + "value" : "🛌🏼" }, "🛌🏽", { @@ -31272,7 +31271,6 @@ }, "🧑🏻‍🤝‍🧑🏻", { - "value" : "🧑🏻‍🤝‍🧑🏻", "keywords" : [ "couple", "hand", @@ -31282,7 +31280,8 @@ "people holding hands", "people holding hands: light skin tone", "person" - ] + ], + "value" : "🧑🏻‍🤝‍🧑🏻" }, "🧑🏻‍🤝‍🧑🏼", { @@ -31331,6 +31330,7 @@ }, "🧑🏻‍🤝‍🧑🏿", { + "value" : "🧑🏻‍🤝‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -31341,8 +31341,7 @@ "people holding hands", "people holding hands: light skin tone, dark skin tone", "person" - ], - "value" : "🧑🏻‍🤝‍🧑🏿" + ] }, "🧑🏼‍🤝‍🧑🏻", { @@ -31375,6 +31374,7 @@ }, "🧑🏼‍🤝‍🧑🏽", { + "value" : "🧑🏼‍🤝‍🧑🏽", "keywords" : [ "couple", "hand", @@ -31385,8 +31385,7 @@ "people holding hands", "people holding hands: medium-light skin tone, medium skin tone", "person" - ], - "value" : "🧑🏼‍🤝‍🧑🏽" + ] }, "🧑🏼‍🤝‍🧑🏾", { @@ -31405,6 +31404,7 @@ }, "🧑🏼‍🤝‍🧑🏿", { + "value" : "🧑🏼‍🤝‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -31415,11 +31415,11 @@ "people holding hands", "people holding hands: medium-light skin tone, dark skin tone", "person" - ], - "value" : "🧑🏼‍🤝‍🧑🏿" + ] }, "🧑🏽‍🤝‍🧑🏻", { + "value" : "🧑🏽‍🤝‍🧑🏻", "keywords" : [ "couple", "hand", @@ -31430,8 +31430,7 @@ "people holding hands", "people holding hands: medium skin tone, light skin tone", "person" - ], - "value" : "🧑🏽‍🤝‍🧑🏻" + ] }, "🧑🏽‍🤝‍🧑🏼", { @@ -31450,6 +31449,7 @@ }, "🧑🏽‍🤝‍🧑🏽", { + "value" : "🧑🏽‍🤝‍🧑🏽", "keywords" : [ "couple", "hand", @@ -31459,11 +31459,11 @@ "people holding hands", "people holding hands: medium skin tone", "person" - ], - "value" : "🧑🏽‍🤝‍🧑🏽" + ] }, "🧑🏽‍🤝‍🧑🏾", { + "value" : "🧑🏽‍🤝‍🧑🏾", "keywords" : [ "couple", "hand", @@ -31474,12 +31474,10 @@ "people holding hands", "people holding hands: medium skin tone, medium-dark skin tone", "person" - ], - "value" : "🧑🏽‍🤝‍🧑🏾" + ] }, "🧑🏽‍🤝‍🧑🏿", { - "value" : "🧑🏽‍🤝‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -31490,10 +31488,12 @@ "people holding hands", "people holding hands: medium skin tone, dark skin tone", "person" - ] + ], + "value" : "🧑🏽‍🤝‍🧑🏿" }, "🧑🏾‍🤝‍🧑🏻", { + "value" : "🧑🏾‍🤝‍🧑🏻", "keywords" : [ "couple", "hand", @@ -31504,11 +31504,11 @@ "people holding hands", "people holding hands: medium-dark skin tone, light skin tone", "person" - ], - "value" : "🧑🏾‍🤝‍🧑🏻" + ] }, "🧑🏾‍🤝‍🧑🏼", { + "value" : "🧑🏾‍🤝‍🧑🏼", "keywords" : [ "couple", "hand", @@ -31519,8 +31519,7 @@ "people holding hands", "people holding hands: medium-dark skin tone, medium-light skin tone", "person" - ], - "value" : "🧑🏾‍🤝‍🧑🏼" + ] }, "🧑🏾‍🤝‍🧑🏽", { @@ -31598,6 +31597,7 @@ }, "🧑🏿‍🤝‍🧑🏽", { + "value" : "🧑🏿‍🤝‍🧑🏽", "keywords" : [ "couple", "dark skin tone", @@ -31608,8 +31608,7 @@ "people holding hands", "people holding hands: dark skin tone, medium skin tone", "person" - ], - "value" : "🧑🏿‍🤝‍🧑🏽" + ] }, "🧑🏿‍🤝‍🧑🏾", { @@ -31628,6 +31627,7 @@ }, "🧑🏿‍🤝‍🧑🏿", { + "value" : "🧑🏿‍🤝‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -31637,8 +31637,7 @@ "people holding hands", "people holding hands: dark skin tone", "person" - ], - "value" : "🧑🏿‍🤝‍🧑🏿" + ] }, "👭", { @@ -31716,6 +31715,7 @@ }, "👩🏻‍🤝‍👩🏿", { + "value" : "👩🏻‍🤝‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -31725,11 +31725,11 @@ "women", "women holding hands", "women holding hands: light skin tone, dark skin tone" - ], - "value" : "👩🏻‍🤝‍👩🏿" + ] }, "👩🏼‍🤝‍👩🏻", { + "value" : "👩🏼‍🤝‍👩🏻", "keywords" : [ "couple", "hand", @@ -31739,12 +31739,10 @@ "women", "women holding hands", "women holding hands: medium-light skin tone, light skin tone" - ], - "value" : "👩🏼‍🤝‍👩🏻" + ] }, "👭🏼", { - "value" : "👭🏼", "keywords" : [ "couple", "hand", @@ -31753,11 +31751,11 @@ "women", "women holding hands", "women holding hands: medium-light skin tone" - ] + ], + "value" : "👭🏼" }, "👩🏼‍🤝‍👩🏽", { - "value" : "👩🏼‍🤝‍👩🏽", "keywords" : [ "couple", "hand", @@ -31767,7 +31765,8 @@ "women", "women holding hands", "women holding hands: medium-light skin tone, medium skin tone" - ] + ], + "value" : "👩🏼‍🤝‍👩🏽" }, "👩🏼‍🤝‍👩🏾", { @@ -31813,6 +31812,7 @@ }, "👩🏽‍🤝‍👩🏼", { + "value" : "👩🏽‍🤝‍👩🏼", "keywords" : [ "couple", "hand", @@ -31822,8 +31822,7 @@ "women", "women holding hands", "women holding hands: medium skin tone, medium-light skin tone" - ], - "value" : "👩🏽‍🤝‍👩🏼" + ] }, "👭🏽", { @@ -31854,7 +31853,6 @@ }, "👩🏽‍🤝‍👩🏿", { - "value" : "👩🏽‍🤝‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -31864,7 +31862,8 @@ "women", "women holding hands", "women holding hands: medium skin tone, dark skin tone" - ] + ], + "value" : "👩🏽‍🤝‍👩🏿" }, "👩🏾‍🤝‍👩🏻", { @@ -31896,7 +31895,6 @@ }, "👩🏾‍🤝‍👩🏽", { - "value" : "👩🏾‍🤝‍👩🏽", "keywords" : [ "couple", "hand", @@ -31906,10 +31904,12 @@ "women", "women holding hands", "women holding hands: medium-dark skin tone, medium skin tone" - ] + ], + "value" : "👩🏾‍🤝‍👩🏽" }, "👭🏾", { + "value" : "👭🏾", "keywords" : [ "couple", "hand", @@ -31918,12 +31918,10 @@ "women", "women holding hands", "women holding hands: medium-dark skin tone" - ], - "value" : "👭🏾" + ] }, "👩🏾‍🤝‍👩🏿", { - "value" : "👩🏾‍🤝‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -31933,11 +31931,11 @@ "women", "women holding hands", "women holding hands: medium-dark skin tone, dark skin tone" - ] + ], + "value" : "👩🏾‍🤝‍👩🏿" }, "👩🏿‍🤝‍👩🏻", { - "value" : "👩🏿‍🤝‍👩🏻", "keywords" : [ "couple", "dark skin tone", @@ -31947,11 +31945,11 @@ "women", "women holding hands", "women holding hands: dark skin tone, light skin tone" - ] + ], + "value" : "👩🏿‍🤝‍👩🏻" }, "👩🏿‍🤝‍👩🏼", { - "value" : "👩🏿‍🤝‍👩🏼", "keywords" : [ "couple", "dark skin tone", @@ -31961,7 +31959,8 @@ "women", "women holding hands", "women holding hands: dark skin tone, medium-light skin tone" - ] + ], + "value" : "👩🏿‍🤝‍👩🏼" }, "👩🏿‍🤝‍👩🏽", { @@ -31993,7 +31992,6 @@ }, "👭🏿", { - "value" : "👭🏿", "keywords" : [ "couple", "dark skin tone", @@ -32002,7 +32000,8 @@ "women", "women holding hands", "women holding hands: dark skin tone" - ] + ], + "value" : "👭🏿" }, "👫", { @@ -32024,6 +32023,7 @@ }, "👫🏻", { + "value" : "👫🏻", "keywords" : [ "couple", "hand", @@ -32034,11 +32034,11 @@ "woman", "woman and man holding hands", "woman and man holding hands: light skin tone" - ], - "value" : "👫🏻" + ] }, "👩🏻‍🤝‍👨🏼", { + "value" : "👩🏻‍🤝‍👨🏼", "keywords" : [ "couple", "hand", @@ -32050,12 +32050,10 @@ "woman", "woman and man holding hands", "woman and man holding hands: light skin tone, medium-light skin tone" - ], - "value" : "👩🏻‍🤝‍👨🏼" + ] }, "👩🏻‍🤝‍👨🏽", { - "value" : "👩🏻‍🤝‍👨🏽", "keywords" : [ "couple", "hand", @@ -32067,7 +32065,8 @@ "woman", "woman and man holding hands", "woman and man holding hands: light skin tone, medium skin tone" - ] + ], + "value" : "👩🏻‍🤝‍👨🏽" }, "👩🏻‍🤝‍👨🏾", { @@ -32087,6 +32086,7 @@ }, "👩🏻‍🤝‍👨🏿", { + "value" : "👩🏻‍🤝‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -32098,8 +32098,7 @@ "woman", "woman and man holding hands", "woman and man holding hands: light skin tone, dark skin tone" - ], - "value" : "👩🏻‍🤝‍👨🏿" + ] }, "👩🏼‍🤝‍👨🏻", { @@ -32150,7 +32149,6 @@ }, "👩🏼‍🤝‍👨🏾", { - "value" : "👩🏼‍🤝‍👨🏾", "keywords" : [ "couple", "hand", @@ -32162,7 +32160,8 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium-light skin tone, medium-dark skin tone" - ] + ], + "value" : "👩🏼‍🤝‍👨🏾" }, "👩🏼‍🤝‍👨🏿", { @@ -32182,6 +32181,7 @@ }, "👩🏽‍🤝‍👨🏻", { + "value" : "👩🏽‍🤝‍👨🏻", "keywords" : [ "couple", "hand", @@ -32193,11 +32193,11 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium skin tone, light skin tone" - ], - "value" : "👩🏽‍🤝‍👨🏻" + ] }, "👩🏽‍🤝‍👨🏼", { + "value" : "👩🏽‍🤝‍👨🏼", "keywords" : [ "couple", "hand", @@ -32209,8 +32209,7 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium skin tone, medium-light skin tone" - ], - "value" : "👩🏽‍🤝‍👨🏼" + ] }, "👫🏽", { @@ -32229,6 +32228,7 @@ }, "👩🏽‍🤝‍👨🏾", { + "value" : "👩🏽‍🤝‍👨🏾", "keywords" : [ "couple", "hand", @@ -32240,11 +32240,11 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium skin tone, medium-dark skin tone" - ], - "value" : "👩🏽‍🤝‍👨🏾" + ] }, "👩🏽‍🤝‍👨🏿", { + "value" : "👩🏽‍🤝‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -32256,8 +32256,7 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium skin tone, dark skin tone" - ], - "value" : "👩🏽‍🤝‍👨🏿" + ] }, "👩🏾‍🤝‍👨🏻", { @@ -32293,6 +32292,7 @@ }, "👩🏾‍🤝‍👨🏽", { + "value" : "👩🏾‍🤝‍👨🏽", "keywords" : [ "couple", "hand", @@ -32304,11 +32304,11 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium-dark skin tone, medium skin tone" - ], - "value" : "👩🏾‍🤝‍👨🏽" + ] }, "👫🏾", { + "value" : "👫🏾", "keywords" : [ "couple", "hand", @@ -32319,8 +32319,7 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium-dark skin tone" - ], - "value" : "👫🏾" + ] }, "👩🏾‍🤝‍👨🏿", { @@ -32372,7 +32371,6 @@ }, "👩🏿‍🤝‍👨🏽", { - "value" : "👩🏿‍🤝‍👨🏽", "keywords" : [ "couple", "dark skin tone", @@ -32384,10 +32382,12 @@ "woman", "woman and man holding hands", "woman and man holding hands: dark skin tone, medium skin tone" - ] + ], + "value" : "👩🏿‍🤝‍👨🏽" }, "👩🏿‍🤝‍👨🏾", { + "value" : "👩🏿‍🤝‍👨🏾", "keywords" : [ "couple", "dark skin tone", @@ -32399,11 +32399,11 @@ "woman", "woman and man holding hands", "woman and man holding hands: dark skin tone, medium-dark skin tone" - ], - "value" : "👩🏿‍🤝‍👨🏾" + ] }, "👫🏿", { + "value" : "👫🏿", "keywords" : [ "couple", "dark skin tone", @@ -32414,11 +32414,11 @@ "woman", "woman and man holding hands", "woman and man holding hands: dark skin tone" - ], - "value" : "👫🏿" + ] }, "👬", { + "value" : "👬", "keywords" : [ "bae", "bestie", @@ -32433,8 +32433,7 @@ "hold", "men", "twins" - ], - "value" : "👬" + ] }, "👬🏻", { @@ -32471,7 +32470,6 @@ }, "👨🏻‍🤝‍👨🏽", { - "value" : "👨🏻‍🤝‍👨🏽", "keywords" : [ "couple", "Gemini", @@ -32484,7 +32482,8 @@ "men holding hands: light skin tone, medium skin tone", "twins", "zodiac" - ] + ], + "value" : "👨🏻‍🤝‍👨🏽" }, "👨🏻‍🤝‍👨🏾", { @@ -32522,6 +32521,7 @@ }, "👨🏼‍🤝‍👨🏻", { + "value" : "👨🏼‍🤝‍👨🏻", "keywords" : [ "couple", "Gemini", @@ -32534,8 +32534,7 @@ "men holding hands: medium-light skin tone, light skin tone", "twins", "zodiac" - ], - "value" : "👨🏼‍🤝‍👨🏻" + ] }, "👬🏼", { @@ -32555,6 +32554,7 @@ }, "👨🏼‍🤝‍👨🏽", { + "value" : "👨🏼‍🤝‍👨🏽", "keywords" : [ "couple", "Gemini", @@ -32567,8 +32567,7 @@ "men holding hands: medium-light skin tone, medium skin tone", "twins", "zodiac" - ], - "value" : "👨🏼‍🤝‍👨🏽" + ] }, "👨🏼‍🤝‍👨🏾", { @@ -32640,6 +32639,7 @@ }, "👬🏽", { + "value" : "👬🏽", "keywords" : [ "couple", "Gemini", @@ -32651,11 +32651,11 @@ "men holding hands: medium skin tone", "twins", "zodiac" - ], - "value" : "👬🏽" + ] }, "👨🏽‍🤝‍👨🏾", { + "value" : "👨🏽‍🤝‍👨🏾", "keywords" : [ "couple", "Gemini", @@ -32668,8 +32668,7 @@ "men holding hands: medium skin tone, medium-dark skin tone", "twins", "zodiac" - ], - "value" : "👨🏽‍🤝‍👨🏾" + ] }, "👨🏽‍🤝‍👨🏿", { @@ -32690,7 +32689,6 @@ }, "👨🏾‍🤝‍👨🏻", { - "value" : "👨🏾‍🤝‍👨🏻", "keywords" : [ "couple", "Gemini", @@ -32703,7 +32701,8 @@ "men holding hands: medium-dark skin tone, light skin tone", "twins", "zodiac" - ] + ], + "value" : "👨🏾‍🤝‍👨🏻" }, "👨🏾‍🤝‍👨🏼", { @@ -32774,6 +32773,7 @@ }, "👨🏿‍🤝‍👨🏻", { + "value" : "👨🏿‍🤝‍👨🏻", "keywords" : [ "couple", "dark skin tone", @@ -32786,8 +32786,7 @@ "men holding hands: dark skin tone, light skin tone", "twins", "zodiac" - ], - "value" : "👨🏿‍🤝‍👨🏻" + ] }, "👨🏿‍🤝‍👨🏼", { @@ -32808,7 +32807,6 @@ }, "👨🏿‍🤝‍👨🏽", { - "value" : "👨🏿‍🤝‍👨🏽", "keywords" : [ "couple", "dark skin tone", @@ -32821,11 +32819,11 @@ "men holding hands: dark skin tone, medium skin tone", "twins", "zodiac" - ] + ], + "value" : "👨🏿‍🤝‍👨🏽" }, "👨🏿‍🤝‍👨🏾", { - "value" : "👨🏿‍🤝‍👨🏾", "keywords" : [ "couple", "dark skin tone", @@ -32838,11 +32836,11 @@ "men holding hands: dark skin tone, medium-dark skin tone", "twins", "zodiac" - ] + ], + "value" : "👨🏿‍🤝‍👨🏾" }, "👬🏿", { - "value" : "👬🏿", "keywords" : [ "couple", "dark skin tone", @@ -32854,11 +32852,11 @@ "men holding hands: dark skin tone", "twins", "zodiac" - ] + ], + "value" : "👬🏿" }, "💏", { - "value" : "💏", "keywords" : [ "anniversary", "babe", @@ -32874,17 +32872,18 @@ "romance", "together", "xoxo" - ] + ], + "value" : "💏" }, "💏🏻", { - "value" : "💏🏻", "keywords" : [ "couple", "kiss", "kiss: light skin tone", "light skin tone" - ] + ], + "value" : "💏🏻" }, "💏🏼", { @@ -32908,13 +32907,13 @@ }, "💏🏾", { - "value" : "💏🏾", "keywords" : [ "couple", "kiss", "kiss: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "💏🏾" }, "💏🏿", { @@ -32952,7 +32951,6 @@ }, "🧑🏻‍❤️‍💋‍🧑🏾", { - "value" : "🧑🏻‍❤️‍💋‍🧑🏾", "keywords" : [ "couple", "kiss", @@ -32960,7 +32958,8 @@ "light skin tone", "medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏻‍❤️‍💋‍🧑🏾" }, "🧑🏻‍❤️‍💋‍🧑🏿", { @@ -32988,7 +32987,6 @@ }, "🧑🏼‍❤️‍💋‍🧑🏽", { - "value" : "🧑🏼‍❤️‍💋‍🧑🏽", "keywords" : [ "couple", "kiss", @@ -32996,11 +32994,11 @@ "medium skin tone", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏼‍❤️‍💋‍🧑🏽" }, "🧑🏼‍❤️‍💋‍🧑🏾", { - "value" : "🧑🏼‍❤️‍💋‍🧑🏾", "keywords" : [ "couple", "kiss", @@ -33008,7 +33006,8 @@ "medium-dark skin tone", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏼‍❤️‍💋‍🧑🏾" }, "🧑🏼‍❤️‍💋‍🧑🏿", { @@ -33048,7 +33047,6 @@ }, "🧑🏽‍❤️‍💋‍🧑🏾", { - "value" : "🧑🏽‍❤️‍💋‍🧑🏾", "keywords" : [ "couple", "kiss", @@ -33056,7 +33054,8 @@ "medium skin tone", "medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏽‍❤️‍💋‍🧑🏾" }, "🧑🏽‍❤️‍💋‍🧑🏿", { @@ -33072,7 +33071,6 @@ }, "🧑🏾‍❤️‍💋‍🧑🏻", { - "value" : "🧑🏾‍❤️‍💋‍🧑🏻", "keywords" : [ "couple", "kiss", @@ -33080,7 +33078,8 @@ "light skin tone", "medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏾‍❤️‍💋‍🧑🏻" }, "🧑🏾‍❤️‍💋‍🧑🏼", { @@ -33108,7 +33107,6 @@ }, "🧑🏾‍❤️‍💋‍🧑🏿", { - "value" : "🧑🏾‍❤️‍💋‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -33116,7 +33114,8 @@ "kiss: person, person, medium-dark skin tone, dark skin tone", "medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏾‍❤️‍💋‍🧑🏿" }, "🧑🏿‍❤️‍💋‍🧑🏻", { @@ -33132,7 +33131,6 @@ }, "🧑🏿‍❤️‍💋‍🧑🏼", { - "value" : "🧑🏿‍❤️‍💋‍🧑🏼", "keywords" : [ "couple", "dark skin tone", @@ -33140,7 +33138,8 @@ "kiss: person, person, dark skin tone, medium-light skin tone", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏿‍❤️‍💋‍🧑🏼" }, "🧑🏿‍❤️‍💋‍🧑🏽", { @@ -33156,6 +33155,7 @@ }, "🧑🏿‍❤️‍💋‍🧑🏾", { + "value" : "🧑🏿‍❤️‍💋‍🧑🏾", "keywords" : [ "couple", "dark skin tone", @@ -33163,8 +33163,7 @@ "kiss: person, person, dark skin tone, medium-dark skin tone", "medium-dark skin tone", "person" - ], - "value" : "🧑🏿‍❤️‍💋‍🧑🏾" + ] }, "👩‍❤️‍💋‍👨", { @@ -33179,7 +33178,6 @@ }, "👩🏻‍❤️‍💋‍👨🏻", { - "value" : "👩🏻‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", @@ -33187,7 +33185,8 @@ "light skin tone", "man", "woman" - ] + ], + "value" : "👩🏻‍❤️‍💋‍👨🏻" }, "👩🏻‍❤️‍💋‍👨🏼", { @@ -33204,6 +33203,7 @@ }, "👩🏻‍❤️‍💋‍👨🏽", { + "value" : "👩🏻‍❤️‍💋‍👨🏽", "keywords" : [ "couple", "kiss", @@ -33212,8 +33212,7 @@ "man", "medium skin tone", "woman" - ], - "value" : "👩🏻‍❤️‍💋‍👨🏽" + ] }, "👩🏻‍❤️‍💋‍👨🏾", { @@ -33268,7 +33267,6 @@ }, "👩🏼‍❤️‍💋‍👨🏽", { - "value" : "👩🏼‍❤️‍💋‍👨🏽", "keywords" : [ "couple", "kiss", @@ -33277,10 +33275,12 @@ "medium skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏼‍❤️‍💋‍👨🏽" }, "👩🏼‍❤️‍💋‍👨🏾", { + "value" : "👩🏼‍❤️‍💋‍👨🏾", "keywords" : [ "couple", "kiss", @@ -33289,11 +33289,11 @@ "medium-dark skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍💋‍👨🏾" + ] }, "👩🏼‍❤️‍💋‍👨🏿", { + "value" : "👩🏼‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -33302,8 +33302,7 @@ "man", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍💋‍👨🏿" + ] }, "👩🏽‍❤️‍💋‍👨🏻", { @@ -33345,6 +33344,7 @@ }, "👩🏽‍❤️‍💋‍👨🏾", { + "value" : "👩🏽‍❤️‍💋‍👨🏾", "keywords" : [ "couple", "kiss", @@ -33353,11 +33353,11 @@ "medium skin tone", "medium-dark skin tone", "woman" - ], - "value" : "👩🏽‍❤️‍💋‍👨🏾" + ] }, "👩🏽‍❤️‍💋‍👨🏿", { + "value" : "👩🏽‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -33366,11 +33366,11 @@ "man", "medium skin tone", "woman" - ], - "value" : "👩🏽‍❤️‍💋‍👨🏿" + ] }, "👩🏾‍❤️‍💋‍👨🏻", { + "value" : "👩🏾‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", @@ -33379,12 +33379,10 @@ "man", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍💋‍👨🏻" + ] }, "👩🏾‍❤️‍💋‍👨🏼", { - "value" : "👩🏾‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "kiss", @@ -33393,7 +33391,8 @@ "medium-dark skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏾‍❤️‍💋‍👨🏼" }, "👩🏾‍❤️‍💋‍👨🏽", { @@ -33410,6 +33409,7 @@ }, "👩🏾‍❤️‍💋‍👨🏾", { + "value" : "👩🏾‍❤️‍💋‍👨🏾", "keywords" : [ "couple", "kiss", @@ -33417,8 +33417,7 @@ "man", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍💋‍👨🏾" + ] }, "👩🏾‍❤️‍💋‍👨🏿", { @@ -33435,6 +33434,7 @@ }, "👩🏿‍❤️‍💋‍👨🏻", { + "value" : "👩🏿‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "dark skin tone", @@ -33443,12 +33443,10 @@ "light skin tone", "man", "woman" - ], - "value" : "👩🏿‍❤️‍💋‍👨🏻" + ] }, "👩🏿‍❤️‍💋‍👨🏼", { - "value" : "👩🏿‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "dark skin tone", @@ -33457,11 +33455,11 @@ "man", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👨🏼" }, "👩🏿‍❤️‍💋‍👨🏽", { - "value" : "👩🏿‍❤️‍💋‍👨🏽", "keywords" : [ "couple", "dark skin tone", @@ -33470,11 +33468,11 @@ "man", "medium skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👨🏽" }, "👩🏿‍❤️‍💋‍👨🏾", { - "value" : "👩🏿‍❤️‍💋‍👨🏾", "keywords" : [ "couple", "dark skin tone", @@ -33483,11 +33481,11 @@ "man", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👨🏾" }, "👩🏿‍❤️‍💋‍👨🏿", { - "value" : "👩🏿‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -33495,28 +33493,29 @@ "kiss: woman, man, dark skin tone", "man", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👨🏿" }, "👨‍❤️‍💋‍👨", { - "value" : "👨‍❤️‍💋‍👨", "keywords" : [ "couple", "kiss", "kiss: man, man", "man" - ] + ], + "value" : "👨‍❤️‍💋‍👨" }, "👨🏻‍❤️‍💋‍👨🏻", { - "value" : "👨🏻‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", "kiss: man, man, light skin tone", "light skin tone", "man" - ] + ], + "value" : "👨🏻‍❤️‍💋‍👨🏻" }, "👨🏻‍❤️‍💋‍👨🏼", { @@ -33544,6 +33543,7 @@ }, "👨🏻‍❤️‍💋‍👨🏾", { + "value" : "👨🏻‍❤️‍💋‍👨🏾", "keywords" : [ "couple", "kiss", @@ -33551,8 +33551,7 @@ "light skin tone", "man", "medium-dark skin tone" - ], - "value" : "👨🏻‍❤️‍💋‍👨🏾" + ] }, "👨🏻‍❤️‍💋‍👨🏿", { @@ -33568,7 +33567,6 @@ }, "👨🏼‍❤️‍💋‍👨🏻", { - "value" : "👨🏼‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", @@ -33576,22 +33574,22 @@ "light skin tone", "man", "medium-light skin tone" - ] + ], + "value" : "👨🏼‍❤️‍💋‍👨🏻" }, "👨🏼‍❤️‍💋‍👨🏼", { - "value" : "👨🏼‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "kiss", "kiss: man, man, medium-light skin tone", "man", "medium-light skin tone" - ] + ], + "value" : "👨🏼‍❤️‍💋‍👨🏼" }, "👨🏼‍❤️‍💋‍👨🏽", { - "value" : "👨🏼‍❤️‍💋‍👨🏽", "keywords" : [ "couple", "kiss", @@ -33599,11 +33597,11 @@ "man", "medium skin tone", "medium-light skin tone" - ] + ], + "value" : "👨🏼‍❤️‍💋‍👨🏽" }, "👨🏼‍❤️‍💋‍👨🏾", { - "value" : "👨🏼‍❤️‍💋‍👨🏾", "keywords" : [ "couple", "kiss", @@ -33611,7 +33609,8 @@ "man", "medium-dark skin tone", "medium-light skin tone" - ] + ], + "value" : "👨🏼‍❤️‍💋‍👨🏾" }, "👨🏼‍❤️‍💋‍👨🏿", { @@ -33651,14 +33650,14 @@ }, "👨🏽‍❤️‍💋‍👨🏽", { - "value" : "👨🏽‍❤️‍💋‍👨🏽", "keywords" : [ "couple", "kiss", "kiss: man, man, medium skin tone", "man", "medium skin tone" - ] + ], + "value" : "👨🏽‍❤️‍💋‍👨🏽" }, "👨🏽‍❤️‍💋‍👨🏾", { @@ -33686,6 +33685,7 @@ }, "👨🏾‍❤️‍💋‍👨🏻", { + "value" : "👨🏾‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", @@ -33693,8 +33693,7 @@ "light skin tone", "man", "medium-dark skin tone" - ], - "value" : "👨🏾‍❤️‍💋‍👨🏻" + ] }, "👨🏾‍❤️‍💋‍👨🏼", { @@ -33710,6 +33709,7 @@ }, "👨🏾‍❤️‍💋‍👨🏽", { + "value" : "👨🏾‍❤️‍💋‍👨🏽", "keywords" : [ "couple", "kiss", @@ -33717,8 +33717,7 @@ "man", "medium skin tone", "medium-dark skin tone" - ], - "value" : "👨🏾‍❤️‍💋‍👨🏽" + ] }, "👨🏾‍❤️‍💋‍👨🏾", { @@ -33733,6 +33732,7 @@ }, "👨🏾‍❤️‍💋‍👨🏿", { + "value" : "👨🏾‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -33740,8 +33740,7 @@ "kiss: man, man, medium-dark skin tone, dark skin tone", "man", "medium-dark skin tone" - ], - "value" : "👨🏾‍❤️‍💋‍👨🏿" + ] }, "👨🏿‍❤️‍💋‍👨🏻", { @@ -33757,7 +33756,6 @@ }, "👨🏿‍❤️‍💋‍👨🏼", { - "value" : "👨🏿‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "dark skin tone", @@ -33765,7 +33763,8 @@ "kiss: man, man, dark skin tone, medium-light skin tone", "man", "medium-light skin tone" - ] + ], + "value" : "👨🏿‍❤️‍💋‍👨🏼" }, "👨🏿‍❤️‍💋‍👨🏽", { @@ -33781,7 +33780,6 @@ }, "👨🏿‍❤️‍💋‍👨🏾", { - "value" : "👨🏿‍❤️‍💋‍👨🏾", "keywords" : [ "couple", "dark skin tone", @@ -33789,7 +33787,8 @@ "kiss: man, man, dark skin tone, medium-dark skin tone", "man", "medium-dark skin tone" - ] + ], + "value" : "👨🏿‍❤️‍💋‍👨🏾" }, "👨🏿‍❤️‍💋‍👨🏿", { @@ -33804,13 +33803,13 @@ }, "👩‍❤️‍💋‍👩", { - "value" : "👩‍❤️‍💋‍👩", "keywords" : [ "couple", "kiss", "kiss: woman, woman", "woman" - ] + ], + "value" : "👩‍❤️‍💋‍👩" }, "👩🏻‍❤️‍💋‍👩🏻", { @@ -33825,6 +33824,7 @@ }, "👩🏻‍❤️‍💋‍👩🏼", { + "value" : "👩🏻‍❤️‍💋‍👩🏼", "keywords" : [ "couple", "kiss", @@ -33832,8 +33832,7 @@ "light skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏻‍❤️‍💋‍👩🏼" + ] }, "👩🏻‍❤️‍💋‍👩🏽", { @@ -33849,6 +33848,7 @@ }, "👩🏻‍❤️‍💋‍👩🏾", { + "value" : "👩🏻‍❤️‍💋‍👩🏾", "keywords" : [ "couple", "kiss", @@ -33856,12 +33856,10 @@ "light skin tone", "medium-dark skin tone", "woman" - ], - "value" : "👩🏻‍❤️‍💋‍👩🏾" + ] }, "👩🏻‍❤️‍💋‍👩🏿", { - "value" : "👩🏻‍❤️‍💋‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -33869,7 +33867,8 @@ "kiss: woman, woman, light skin tone, dark skin tone", "light skin tone", "woman" - ] + ], + "value" : "👩🏻‍❤️‍💋‍👩🏿" }, "👩🏼‍❤️‍💋‍👩🏻", { @@ -33944,6 +33943,7 @@ }, "👩🏽‍❤️‍💋‍👩🏼", { + "value" : "👩🏽‍❤️‍💋‍👩🏼", "keywords" : [ "couple", "kiss", @@ -33951,8 +33951,7 @@ "medium skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏽‍❤️‍💋‍👩🏼" + ] }, "👩🏽‍❤️‍💋‍👩🏽", { @@ -33979,7 +33978,6 @@ }, "👩🏽‍❤️‍💋‍👩🏿", { - "value" : "👩🏽‍❤️‍💋‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -33987,7 +33985,8 @@ "kiss: woman, woman, medium skin tone, dark skin tone", "medium skin tone", "woman" - ] + ], + "value" : "👩🏽‍❤️‍💋‍👩🏿" }, "👩🏾‍❤️‍💋‍👩🏻", { @@ -34003,6 +34002,7 @@ }, "👩🏾‍❤️‍💋‍👩🏼", { + "value" : "👩🏾‍❤️‍💋‍👩🏼", "keywords" : [ "couple", "kiss", @@ -34010,11 +34010,11 @@ "medium-dark skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍💋‍👩🏼" + ] }, "👩🏾‍❤️‍💋‍👩🏽", { + "value" : "👩🏾‍❤️‍💋‍👩🏽", "keywords" : [ "couple", "kiss", @@ -34022,22 +34022,22 @@ "medium skin tone", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍💋‍👩🏽" + ] }, "👩🏾‍❤️‍💋‍👩🏾", { + "value" : "👩🏾‍❤️‍💋‍👩🏾", "keywords" : [ "couple", "kiss", "kiss: woman, woman, medium-dark skin tone", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍💋‍👩🏾" + ] }, "👩🏾‍❤️‍💋‍👩🏿", { + "value" : "👩🏾‍❤️‍💋‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -34045,11 +34045,11 @@ "kiss: woman, woman, medium-dark skin tone, dark skin tone", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍💋‍👩🏿" + ] }, "👩🏿‍❤️‍💋‍👩🏻", { + "value" : "👩🏿‍❤️‍💋‍👩🏻", "keywords" : [ "couple", "dark skin tone", @@ -34057,11 +34057,11 @@ "kiss: woman, woman, dark skin tone, light skin tone", "light skin tone", "woman" - ], - "value" : "👩🏿‍❤️‍💋‍👩🏻" + ] }, "👩🏿‍❤️‍💋‍👩🏼", { + "value" : "👩🏿‍❤️‍💋‍👩🏼", "keywords" : [ "couple", "dark skin tone", @@ -34069,11 +34069,11 @@ "kiss: woman, woman, dark skin tone, medium-light skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏿‍❤️‍💋‍👩🏼" + ] }, "👩🏿‍❤️‍💋‍👩🏽", { + "value" : "👩🏿‍❤️‍💋‍👩🏽", "keywords" : [ "couple", "dark skin tone", @@ -34081,12 +34081,10 @@ "kiss: woman, woman, dark skin tone, medium skin tone", "medium skin tone", "woman" - ], - "value" : "👩🏿‍❤️‍💋‍👩🏽" + ] }, "👩🏿‍❤️‍💋‍👩🏾", { - "value" : "👩🏿‍❤️‍💋‍👩🏾", "keywords" : [ "couple", "dark skin tone", @@ -34094,22 +34092,22 @@ "kiss: woman, woman, dark skin tone, medium-dark skin tone", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👩🏾" }, "👩🏿‍❤️‍💋‍👩🏿", { - "value" : "👩🏿‍❤️‍💋‍👩🏿", "keywords" : [ "couple", "dark skin tone", "kiss", "kiss: woman, woman, dark skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👩🏿" }, "💑", { - "value" : "💑", "keywords" : [ "anniversary", "babe", @@ -34124,7 +34122,8 @@ "romance", "together", "you" - ] + ], + "value" : "💑" }, "💑🏻", { @@ -34150,39 +34149,40 @@ }, "💑🏽", { + "value" : "💑🏽", "keywords" : [ "couple", "couple with heart", "couple with heart: medium skin tone", "love", "medium skin tone" - ], - "value" : "💑🏽" + ] }, "💑🏾", { + "value" : "💑🏾", "keywords" : [ "couple", "couple with heart", "couple with heart: medium-dark skin tone", "love", "medium-dark skin tone" - ], - "value" : "💑🏾" + ] }, "💑🏿", { - "value" : "💑🏿", "keywords" : [ "couple", "couple with heart", "couple with heart: dark skin tone", "dark skin tone", "love" - ] + ], + "value" : "💑🏿" }, "🧑🏻‍❤️‍🧑🏼", { + "value" : "🧑🏻‍❤️‍🧑🏼", "keywords" : [ "couple", "couple with heart", @@ -34191,8 +34191,7 @@ "love", "medium-light skin tone", "person" - ], - "value" : "🧑🏻‍❤️‍🧑🏼" + ] }, "🧑🏻‍❤️‍🧑🏽", { @@ -34222,6 +34221,7 @@ }, "🧑🏻‍❤️‍🧑🏿", { + "value" : "🧑🏻‍❤️‍🧑🏿", "keywords" : [ "couple", "couple with heart", @@ -34230,8 +34230,7 @@ "light skin tone", "love", "person" - ], - "value" : "🧑🏻‍❤️‍🧑🏿" + ] }, "🧑🏼‍❤️‍🧑🏻", { @@ -34248,6 +34247,7 @@ }, "🧑🏼‍❤️‍🧑🏽", { + "value" : "🧑🏼‍❤️‍🧑🏽", "keywords" : [ "couple", "couple with heart", @@ -34256,8 +34256,7 @@ "medium skin tone", "medium-light skin tone", "person" - ], - "value" : "🧑🏼‍❤️‍🧑🏽" + ] }, "🧑🏼‍❤️‍🧑🏾", { @@ -34274,7 +34273,6 @@ }, "🧑🏼‍❤️‍🧑🏿", { - "value" : "🧑🏼‍❤️‍🧑🏿", "keywords" : [ "couple", "couple with heart", @@ -34283,7 +34281,8 @@ "love", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏼‍❤️‍🧑🏿" }, "🧑🏽‍❤️‍🧑🏻", { @@ -34326,6 +34325,7 @@ }, "🧑🏽‍❤️‍🧑🏿", { + "value" : "🧑🏽‍❤️‍🧑🏿", "keywords" : [ "couple", "couple with heart", @@ -34334,11 +34334,11 @@ "love", "medium skin tone", "person" - ], - "value" : "🧑🏽‍❤️‍🧑🏿" + ] }, "🧑🏾‍❤️‍🧑🏻", { + "value" : "🧑🏾‍❤️‍🧑🏻", "keywords" : [ "couple", "couple with heart", @@ -34347,8 +34347,7 @@ "love", "medium-dark skin tone", "person" - ], - "value" : "🧑🏾‍❤️‍🧑🏻" + ] }, "🧑🏾‍❤️‍🧑🏼", { @@ -34404,6 +34403,7 @@ }, "🧑🏿‍❤️‍🧑🏼", { + "value" : "🧑🏿‍❤️‍🧑🏼", "keywords" : [ "couple", "couple with heart", @@ -34412,8 +34412,7 @@ "love", "medium-light skin tone", "person" - ], - "value" : "🧑🏿‍❤️‍🧑🏼" + ] }, "🧑🏿‍❤️‍🧑🏽", { @@ -34443,6 +34442,7 @@ }, "👩‍❤️‍👨", { + "value" : "👩‍❤️‍👨", "keywords" : [ "couple", "couple with heart", @@ -34450,8 +34450,7 @@ "love", "man", "woman" - ], - "value" : "👩‍❤️‍👨" + ] }, "👩🏻‍❤️‍👨🏻", { @@ -34482,6 +34481,7 @@ }, "👩🏻‍❤️‍👨🏽", { + "value" : "👩🏻‍❤️‍👨🏽", "keywords" : [ "couple", "couple with heart", @@ -34491,8 +34491,7 @@ "man", "medium skin tone", "woman" - ], - "value" : "👩🏻‍❤️‍👨🏽" + ] }, "👩🏻‍❤️‍👨🏾", { @@ -34510,6 +34509,7 @@ }, "👩🏻‍❤️‍👨🏿", { + "value" : "👩🏻‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -34519,8 +34519,7 @@ "love", "man", "woman" - ], - "value" : "👩🏻‍❤️‍👨🏿" + ] }, "👩🏼‍❤️‍👨🏻", { @@ -34607,6 +34606,7 @@ }, "👩🏽‍❤️‍👨🏼", { + "value" : "👩🏽‍❤️‍👨🏼", "keywords" : [ "couple", "couple with heart", @@ -34616,12 +34616,10 @@ "medium skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏽‍❤️‍👨🏼" + ] }, "👩🏽‍❤️‍👨🏽", { - "value" : "👩🏽‍❤️‍👨🏽", "keywords" : [ "couple", "couple with heart", @@ -34630,7 +34628,8 @@ "man", "medium skin tone", "woman" - ] + ], + "value" : "👩🏽‍❤️‍👨🏽" }, "👩🏽‍❤️‍👨🏾", { @@ -34662,7 +34661,6 @@ }, "👩🏾‍❤️‍👨🏻", { - "value" : "👩🏾‍❤️‍👨🏻", "keywords" : [ "couple", "couple with heart", @@ -34672,7 +34670,8 @@ "man", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏾‍❤️‍👨🏻" }, "👩🏾‍❤️‍👨🏼", { @@ -34745,7 +34744,6 @@ }, "👩🏿‍❤️‍👨🏼", { - "value" : "👩🏿‍❤️‍👨🏼", "keywords" : [ "couple", "couple with heart", @@ -34755,7 +34753,8 @@ "man", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍👨🏼" }, "👩🏿‍❤️‍👨🏽", { @@ -34773,7 +34772,6 @@ }, "👩🏿‍❤️‍👨🏾", { - "value" : "👩🏿‍❤️‍👨🏾", "keywords" : [ "couple", "couple with heart", @@ -34783,10 +34781,12 @@ "man", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍👨🏾" }, "👩🏿‍❤️‍👨🏿", { + "value" : "👩🏿‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -34795,8 +34795,7 @@ "love", "man", "woman" - ], - "value" : "👩🏿‍❤️‍👨🏿" + ] }, "👨‍❤️‍👨", { @@ -34862,6 +34861,7 @@ }, "👨🏻‍❤️‍👨🏿", { + "value" : "👨🏻‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -34870,12 +34870,10 @@ "light skin tone", "love", "man" - ], - "value" : "👨🏻‍❤️‍👨🏿" + ] }, "👨🏼‍❤️‍👨🏻", { - "value" : "👨🏼‍❤️‍👨🏻", "keywords" : [ "couple", "couple with heart", @@ -34884,11 +34882,11 @@ "love", "man", "medium-light skin tone" - ] + ], + "value" : "👨🏼‍❤️‍👨🏻" }, "👨🏼‍❤️‍👨🏼", { - "value" : "👨🏼‍❤️‍👨🏼", "keywords" : [ "couple", "couple with heart", @@ -34896,7 +34894,8 @@ "love", "man", "medium-light skin tone" - ] + ], + "value" : "👨🏼‍❤️‍👨🏼" }, "👨🏼‍❤️‍👨🏽", { @@ -34913,6 +34912,7 @@ }, "👨🏼‍❤️‍👨🏾", { + "value" : "👨🏼‍❤️‍👨🏾", "keywords" : [ "couple", "couple with heart", @@ -34921,8 +34921,7 @@ "man", "medium-dark skin tone", "medium-light skin tone" - ], - "value" : "👨🏼‍❤️‍👨🏾" + ] }, "👨🏼‍❤️‍👨🏿", { @@ -34952,7 +34951,6 @@ }, "👨🏽‍❤️‍👨🏼", { - "value" : "👨🏽‍❤️‍👨🏼", "keywords" : [ "couple", "couple with heart", @@ -34961,11 +34959,11 @@ "man", "medium skin tone", "medium-light skin tone" - ] + ], + "value" : "👨🏽‍❤️‍👨🏼" }, "👨🏽‍❤️‍👨🏽", { - "value" : "👨🏽‍❤️‍👨🏽", "keywords" : [ "couple", "couple with heart", @@ -34973,11 +34971,11 @@ "love", "man", "medium skin tone" - ] + ], + "value" : "👨🏽‍❤️‍👨🏽" }, "👨🏽‍❤️‍👨🏾", { - "value" : "👨🏽‍❤️‍👨🏾", "keywords" : [ "couple", "couple with heart", @@ -34986,11 +34984,11 @@ "man", "medium skin tone", "medium-dark skin tone" - ] + ], + "value" : "👨🏽‍❤️‍👨🏾" }, "👨🏽‍❤️‍👨🏿", { - "value" : "👨🏽‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -34999,7 +34997,8 @@ "love", "man", "medium skin tone" - ] + ], + "value" : "👨🏽‍❤️‍👨🏿" }, "👨🏾‍❤️‍👨🏻", { @@ -35016,6 +35015,7 @@ }, "👨🏾‍❤️‍👨🏼", { + "value" : "👨🏾‍❤️‍👨🏼", "keywords" : [ "couple", "couple with heart", @@ -35024,11 +35024,11 @@ "man", "medium-dark skin tone", "medium-light skin tone" - ], - "value" : "👨🏾‍❤️‍👨🏼" + ] }, "👨🏾‍❤️‍👨🏽", { + "value" : "👨🏾‍❤️‍👨🏽", "keywords" : [ "couple", "couple with heart", @@ -35037,8 +35037,7 @@ "man", "medium skin tone", "medium-dark skin tone" - ], - "value" : "👨🏾‍❤️‍👨🏽" + ] }, "👨🏾‍❤️‍👨🏾", { @@ -35093,7 +35092,6 @@ }, "👨🏿‍❤️‍👨🏽", { - "value" : "👨🏿‍❤️‍👨🏽", "keywords" : [ "couple", "couple with heart", @@ -35102,7 +35100,8 @@ "love", "man", "medium skin tone" - ] + ], + "value" : "👨🏿‍❤️‍👨🏽" }, "👨🏿‍❤️‍👨🏾", { @@ -35119,6 +35118,7 @@ }, "👨🏿‍❤️‍👨🏿", { + "value" : "👨🏿‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -35126,8 +35126,7 @@ "dark skin tone", "love", "man" - ], - "value" : "👨🏿‍❤️‍👨🏿" + ] }, "👩‍❤️‍👩", { @@ -35142,6 +35141,7 @@ }, "👩🏻‍❤️‍👩🏻", { + "value" : "👩🏻‍❤️‍👩🏻", "keywords" : [ "couple", "couple with heart", @@ -35149,8 +35149,7 @@ "light skin tone", "love", "woman" - ], - "value" : "👩🏻‍❤️‍👩🏻" + ] }, "👩🏻‍❤️‍👩🏼", { @@ -35167,6 +35166,7 @@ }, "👩🏻‍❤️‍👩🏽", { + "value" : "👩🏻‍❤️‍👩🏽", "keywords" : [ "couple", "couple with heart", @@ -35175,8 +35175,7 @@ "love", "medium skin tone", "woman" - ], - "value" : "👩🏻‍❤️‍👩🏽" + ] }, "👩🏻‍❤️‍👩🏾", { @@ -35193,6 +35192,7 @@ }, "👩🏻‍❤️‍👩🏿", { + "value" : "👩🏻‍❤️‍👩🏿", "keywords" : [ "couple", "couple with heart", @@ -35201,8 +35201,7 @@ "light skin tone", "love", "woman" - ], - "value" : "👩🏻‍❤️‍👩🏿" + ] }, "👩🏼‍❤️‍👩🏻", { @@ -35257,7 +35256,6 @@ }, "👩🏼‍❤️‍👩🏿", { - "value" : "👩🏼‍❤️‍👩🏿", "keywords" : [ "couple", "couple with heart", @@ -35266,10 +35264,12 @@ "love", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏼‍❤️‍👩🏿" }, "👩🏽‍❤️‍👩🏻", { + "value" : "👩🏽‍❤️‍👩🏻", "keywords" : [ "couple", "couple with heart", @@ -35278,8 +35278,7 @@ "love", "medium skin tone", "woman" - ], - "value" : "👩🏽‍❤️‍👩🏻" + ] }, "👩🏽‍❤️‍👩🏼", { @@ -35308,6 +35307,7 @@ }, "👩🏽‍❤️‍👩🏾", { + "value" : "👩🏽‍❤️‍👩🏾", "keywords" : [ "couple", "couple with heart", @@ -35316,12 +35316,10 @@ "medium skin tone", "medium-dark skin tone", "woman" - ], - "value" : "👩🏽‍❤️‍👩🏾" + ] }, "👩🏽‍❤️‍👩🏿", { - "value" : "👩🏽‍❤️‍👩🏿", "keywords" : [ "couple", "couple with heart", @@ -35330,7 +35328,8 @@ "love", "medium skin tone", "woman" - ] + ], + "value" : "👩🏽‍❤️‍👩🏿" }, "👩🏾‍❤️‍👩🏻", { @@ -35373,6 +35372,7 @@ }, "👩🏾‍❤️‍👩🏾", { + "value" : "👩🏾‍❤️‍👩🏾", "keywords" : [ "couple", "couple with heart", @@ -35380,11 +35380,11 @@ "love", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍👩🏾" + ] }, "👩🏾‍❤️‍👩🏿", { + "value" : "👩🏾‍❤️‍👩🏿", "keywords" : [ "couple", "couple with heart", @@ -35393,8 +35393,7 @@ "love", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍👩🏿" + ] }, "👩🏿‍❤️‍👩🏻", { @@ -35411,7 +35410,6 @@ }, "👩🏿‍❤️‍👩🏼", { - "value" : "👩🏿‍❤️‍👩🏼", "keywords" : [ "couple", "couple with heart", @@ -35420,10 +35418,12 @@ "love", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍👩🏼" }, "👩🏿‍❤️‍👩🏽", { + "value" : "👩🏿‍❤️‍👩🏽", "keywords" : [ "couple", "couple with heart", @@ -35432,12 +35432,10 @@ "love", "medium skin tone", "woman" - ], - "value" : "👩🏿‍❤️‍👩🏽" + ] }, "👩🏿‍❤️‍👩🏾", { - "value" : "👩🏿‍❤️‍👩🏾", "keywords" : [ "couple", "couple with heart", @@ -35446,7 +35444,8 @@ "love", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍👩🏾" }, "👩🏿‍❤️‍👩🏿", { @@ -35470,14 +35469,14 @@ }, "👨‍👩‍👦", { + "value" : "👨‍👩‍👦", "keywords" : [ "boy", "family", "family: man, woman, boy", "man", "woman" - ], - "value" : "👨‍👩‍👦" + ] }, "👨‍👩‍👧", { @@ -35504,14 +35503,14 @@ }, "👨‍👩‍👦‍👦", { - "value" : "👨‍👩‍👦‍👦", "keywords" : [ "boy", "family", "family: man, woman, boy, boy", "man", "woman" - ] + ], + "value" : "👨‍👩‍👦‍👦" }, "👨‍👩‍👧‍👧", { @@ -35526,13 +35525,13 @@ }, "👨‍👨‍👦", { + "value" : "👨‍👨‍👦", "keywords" : [ "boy", "family", "family: man, man, boy", "man" - ], - "value" : "👨‍👨‍👦" + ] }, "👨‍👨‍👧", { @@ -35557,33 +35556,33 @@ }, "👨‍👨‍👦‍👦", { - "value" : "👨‍👨‍👦‍👦", "keywords" : [ "boy", "family", "family: man, man, boy, boy", "man" - ] + ], + "value" : "👨‍👨‍👦‍👦" }, "👨‍👨‍👧‍👧", { + "value" : "👨‍👨‍👧‍👧", "keywords" : [ "family", "family: man, man, girl, girl", "girl", "man" - ], - "value" : "👨‍👨‍👧‍👧" + ] }, "👩‍👩‍👦", { + "value" : "👩‍👩‍👦", "keywords" : [ "boy", "family", "family: woman, woman, boy", "woman" - ], - "value" : "👩‍👩‍👦" + ] }, "👩‍👩‍👧", { @@ -35597,14 +35596,14 @@ }, "👩‍👩‍👧‍👦", { + "value" : "👩‍👩‍👧‍👦", "keywords" : [ "boy", "family", "family: woman, woman, girl, boy", "girl", "woman" - ], - "value" : "👩‍👩‍👧‍👦" + ] }, "👩‍👩‍👦‍👦", { @@ -35638,23 +35637,23 @@ }, "👨‍👦‍👦", { + "value" : "👨‍👦‍👦", "keywords" : [ "boy", "family", "family: man, boy, boy", "man" - ], - "value" : "👨‍👦‍👦" + ] }, "👨‍👧", { + "value" : "👨‍👧", "keywords" : [ "family", "family: man, girl", "girl", "man" - ], - "value" : "👨‍👧" + ] }, "👨‍👧‍👦", { @@ -35669,23 +35668,23 @@ }, "👨‍👧‍👧", { + "value" : "👨‍👧‍👧", "keywords" : [ "family", "family: man, girl, girl", "girl", "man" - ], - "value" : "👨‍👧‍👧" + ] }, "👩‍👦", { - "value" : "👩‍👦", "keywords" : [ "boy", "family", "family: woman, boy", "woman" - ] + ], + "value" : "👩‍👦" }, "👩‍👦‍👦", { @@ -35709,48 +35708,49 @@ }, "👩‍👧‍👦", { - "value" : "👩‍👧‍👦", "keywords" : [ "boy", "family", "family: woman, girl, boy", "girl", "woman" - ] + ], + "value" : "👩‍👧‍👦" }, "👩‍👧‍👧", { + "value" : "👩‍👧‍👧", "keywords" : [ "family", "family: woman, girl, girl", "girl", "woman" - ], - "value" : "👩‍👧‍👧" + ] }, "🗣️", { - "value" : "🗣️", "keywords" : [ "face", "head", "silhouette", "speak", "speaking" - ] + ], + "value" : "🗣️" }, "👤", { - "value" : "👤", "keywords" : [ "bust", "mysterious", "shadow", "silhouette" - ] + ], + "value" : "👤" }, "👥", { + "value" : "👥", "keywords" : [ "bff", "bust", @@ -35760,8 +35760,7 @@ "friends", "people", "silhouette" - ], - "value" : "👥" + ] }, "🫂", { @@ -35793,21 +35792,21 @@ ], "value" : "👣" } - ] + ], + "appleCategory" : "smileysAndPeople" }, { - "appleCategory" : "Animals & Nature", - "name" : "Animals & Nature", + "appleCategory" : "animalsAndNature", "emojis" : [ "🐵", { - "value" : "🐵", "keywords" : [ "animal", "banana", "face", "monkey" - ] + ], + "value" : "🐵" }, "🐒", { @@ -35828,17 +35827,16 @@ }, "🦧", { + "value" : "🦧", "keywords" : [ "animal", "ape", "monkey", "orangutan" - ], - "value" : "🦧" + ] }, "🐶", { - "value" : "🐶", "keywords" : [ "adorbs", "animal", @@ -35847,18 +35845,19 @@ "pet", "puppies", "puppy" - ] + ], + "value" : "🐶" }, "🐕", { + "value" : "🐕", "keywords" : [ "animal", "animals", "dog", "dogs", "pet" - ], - "value" : "🐕" + ] }, "🦮", { @@ -35894,21 +35893,21 @@ }, "🐺", { + "value" : "🐺", "keywords" : [ "animal", "face", "wolf" - ], - "value" : "🐺" + ] }, "🦊", { - "value" : "🦊", "keywords" : [ "animal", "face", "fox" - ] + ], + "value" : "🦊" }, "🦝", { @@ -35922,6 +35921,7 @@ }, "🐱", { + "value" : "🐱", "keywords" : [ "animal", "cat", @@ -35929,12 +35929,10 @@ "kitten", "kitty", "pet" - ], - "value" : "🐱" + ] }, "🐈", { - "value" : "🐈", "keywords" : [ "animal", "animals", @@ -35942,7 +35940,8 @@ "cats", "kitten", "pet" - ] + ], + "value" : "🐈" }, "🐈‍⬛", { @@ -35977,7 +35976,6 @@ }, "🐯", { - "value" : "🐯", "keywords" : [ "animal", "big", @@ -35985,7 +35983,8 @@ "face", "predator", "tiger" - ] + ], + "value" : "🐯" }, "🐅", { @@ -36001,6 +36000,7 @@ }, "🐆", { + "value" : "🐆", "keywords" : [ "animal", "big", @@ -36008,8 +36008,7 @@ "leopard", "predator", "zoo" - ], - "value" : "🐆" + ] }, "🐴", { @@ -36038,20 +36037,20 @@ }, "🦄", { - "value" : "🦄", "keywords" : [ "face", "unicorn" - ] + ], + "value" : "🦄" }, "🦓", { - "value" : "🦓", "keywords" : [ "animal", "stripe", "zebra" - ] + ], + "value" : "🦓" }, "🦌", { @@ -36063,18 +36062,17 @@ }, "🦬", { + "value" : "🦬", "keywords" : [ "animal", "bison", "buffalo", "herd", "wisent" - ], - "value" : "🦬" + ] }, "🐮", { - "value" : "🐮", "keywords" : [ "animal", "cow", @@ -36082,7 +36080,8 @@ "farm", "milk", "moo" - ] + ], + "value" : "🐮" }, "🐂", { @@ -36109,6 +36108,7 @@ }, "🐄", { + "value" : "🐄", "keywords" : [ "animal", "animals", @@ -36116,11 +36116,11 @@ "farm", "milk", "moo" - ], - "value" : "🐄" + ] }, "🐷", { + "value" : "🐷", "keywords" : [ "animal", "bacon", @@ -36128,8 +36128,7 @@ "farm", "pig", "pork" - ], - "value" : "🐷" + ] }, "🐖", { @@ -36167,7 +36166,6 @@ }, "🐏", { - "value" : "🐏", "keywords" : [ "animal", "Aries", @@ -36177,10 +36175,12 @@ "sheep", "zodiac", "zoo" - ] + ], + "value" : "🐏" }, "🐑", { + "value" : "🐑", "keywords" : [ "animal", "baa", @@ -36191,8 +36191,7 @@ "lamb", "sheep", "wool" - ], - "value" : "🐑" + ] }, "🐐", { @@ -36208,7 +36207,6 @@ }, "🐪", { - "value" : "🐪", "keywords" : [ "animal", "camel", @@ -36216,7 +36214,8 @@ "dromedary", "hump", "one" - ] + ], + "value" : "🐪" }, "🐫", { @@ -36233,7 +36232,6 @@ }, "🦙", { - "value" : "🦙", "keywords" : [ "alpaca", "animal", @@ -36241,7 +36239,8 @@ "llama", "vicuña", "wool" - ] + ], + "value" : "🦙" }, "🦒", { @@ -36262,7 +36261,6 @@ }, "🦣", { - "value" : "🦣", "keywords" : [ "animal", "extinction", @@ -36270,15 +36268,16 @@ "mammoth", "tusk", "wooly" - ] + ], + "value" : "🦣" }, "🦏", { - "value" : "🦏", "keywords" : [ "animal", "rhinoceros" - ] + ], + "value" : "🦏" }, "🦛", { @@ -36327,14 +36326,14 @@ }, "🐰", { + "value" : "🐰", "keywords" : [ "animal", "bunny", "face", "pet", "rabbit" - ], - "value" : "🐰" + ] }, "🐇", { @@ -36348,22 +36347,22 @@ }, "🐿️", { + "value" : "🐿️", "keywords" : [ "animal", "chipmunk", "squirrel" - ], - "value" : "🐿️" + ] }, "🦫", { + "value" : "🦫", "keywords" : [ "animal", "beaver", "dam", "teeth" - ], - "value" : "🦫" + ] }, "🦔", { @@ -36385,6 +36384,7 @@ }, "🐻", { + "value" : "🐻", "keywords" : [ "animal", "bear", @@ -36392,8 +36392,7 @@ "grizzly", "growl", "honey" - ], - "value" : "🐻" + ] }, "🐻‍❄️", { @@ -36422,41 +36421,41 @@ }, "🐼", { - "value" : "🐼", "keywords" : [ "animal", "bamboo", "face", "panda" - ] + ], + "value" : "🐼" }, "🦥", { + "value" : "🦥", "keywords" : [ "lazy", "sloth", "slow" - ], - "value" : "🦥" + ] }, "🦦", { - "value" : "🦦", "keywords" : [ "animal", "fishing", "otter", "playful" - ] + ], + "value" : "🦦" }, "🦨", { + "value" : "🦨", "keywords" : [ "animal", "skunk", "stink" - ], - "value" : "🦨" + ] }, "🦘", { @@ -36481,14 +36480,14 @@ }, "🐾", { + "value" : "🐾", "keywords" : [ "feet", "paw", "paws", "print", "prints" - ], - "value" : "🐾" + ] }, "🦃", { @@ -36545,7 +36544,6 @@ }, "🐥", { - "value" : "🐥", "keywords" : [ "animal", "baby", @@ -36554,7 +36552,8 @@ "front-facing", "newborn", "ornithology" - ] + ], + "value" : "🐥" }, "🐦", { @@ -36567,25 +36566,25 @@ }, "🐧", { - "value" : "🐧", "keywords" : [ "animal", "antarctica", "bird", "ornithology", "penguin" - ] + ], + "value" : "🐧" }, "🕊️", { + "value" : "🕊️", "keywords" : [ "bird", "dove", "fly", "ornithology", "peace" - ], - "value" : "🕊️" + ] }, "🦅", { @@ -36622,17 +36621,18 @@ }, "🦉", { - "value" : "🦉", "keywords" : [ "animal", "bird", "ornithology", "owl", "wise" - ] + ], + "value" : "🦉" }, "🦤", { + "value" : "🦤", "keywords" : [ "animal", "bird", @@ -36640,23 +36640,21 @@ "extinction", "large", "ornithology" - ], - "value" : "🦤" + ] }, "🪶", { - "value" : "🪶", "keywords" : [ "bird", "feather", "flight", "light", "plumage" - ] + ], + "value" : "🪶" }, "🦩", { - "value" : "🦩", "keywords" : [ "animal", "bird", @@ -36664,11 +36662,11 @@ "flamingo", "ornithology", "tropical" - ] + ], + "value" : "🦩" }, "🦚", { - "value" : "🦚", "keywords" : [ "animal", "bird", @@ -36679,10 +36677,12 @@ "peahen", "pretty", "proud" - ] + ], + "value" : "🦚" }, "🦜", { + "value" : "🦜", "keywords" : [ "animal", "bird", @@ -36690,17 +36690,16 @@ "parrot", "pirate", "talk" - ], - "value" : "🦜" + ] }, "🐸", { - "value" : "🐸", "keywords" : [ "animal", "face", "frog" - ] + ], + "value" : "🐸" }, "🐊", { @@ -36723,16 +36722,15 @@ }, "🦎", { - "value" : "🦎", "keywords" : [ "animal", "lizard", "reptile" - ] + ], + "value" : "🦎" }, "🐍", { - "value" : "🐍", "keywords" : [ "animal", "bearer", @@ -36740,7 +36738,8 @@ "serpent", "snake", "zodiac" - ] + ], + "value" : "🐍" }, "🐲", { @@ -36756,6 +36755,7 @@ }, "🐉", { + "value" : "🐉", "keywords" : [ "animal", "dragon", @@ -36763,8 +36763,7 @@ "fairytale", "knights", "tale" - ], - "value" : "🐉" + ] }, "🦕", { @@ -36779,17 +36778,18 @@ }, "🦖", { + "value" : "🦖", "keywords" : [ "dinosaur", "Rex", "T", "T-Rex", "Tyrannosaurus" - ], - "value" : "🦖" + ] }, "🐳", { + "value" : "🐳", "keywords" : [ "animal", "beach", @@ -36797,8 +36797,7 @@ "ocean", "spouting", "whale" - ], - "value" : "🐳" + ] }, "🐋", { @@ -36823,14 +36822,14 @@ }, "🦭", { + "value" : "🦭", "keywords" : [ "animal", "lion", "ocean", "sea", "seal" - ], - "value" : "🦭" + ] }, "🐟", { @@ -36857,31 +36856,31 @@ }, "🐡", { + "value" : "🐡", "keywords" : [ "animal", "blowfish", "fish" - ], - "value" : "🐡" + ] }, "🦈", { + "value" : "🦈", "keywords" : [ "animal", "fish", "shark" - ], - "value" : "🦈" + ] }, "🐙", { + "value" : "🐙", "keywords" : [ "animal", "creature", "ocean", "octopus" - ], - "value" : "🐙" + ] }, "🐚", { @@ -36909,22 +36908,22 @@ }, "🦋", { + "value" : "🦋", "keywords" : [ "butterfly", "insect", "pretty" - ], - "value" : "🦋" + ] }, "🐛", { - "value" : "🐛", "keywords" : [ "animal", "bug", "garden", "insect" - ] + ], + "value" : "🐛" }, "🐜", { @@ -36988,41 +36987,41 @@ }, "🪳", { + "value" : "🪳", "keywords" : [ "animal", "cockroach", "insect", "pest", "roach" - ], - "value" : "🪳" + ] }, "🕷️", { + "value" : "🕷️", "keywords" : [ "animal", "insect", "spider" - ], - "value" : "🕷️" + ] }, "🕸️", { - "value" : "🕸️", "keywords" : [ "spider", "web" - ] + ], + "value" : "🕸️" }, "🦂", { + "value" : "🦂", "keywords" : [ "Scorpio", "scorpion", "Scorpius", "zodiac" - ], - "value" : "🦂" + ] }, "🦟", { @@ -37040,7 +37039,6 @@ }, "🪰", { - "value" : "🪰", "keywords" : [ "animal", "disease", @@ -37049,7 +37047,8 @@ "maggot", "pest", "rotting" - ] + ], + "value" : "🪰" }, "🪱", { @@ -37101,11 +37100,11 @@ }, "💮", { - "value" : "💮", "keywords" : [ "flower", "white" - ] + ], + "value" : "💮" }, "🏵️", { @@ -37117,7 +37116,6 @@ }, "🌹", { - "value" : "🌹", "keywords" : [ "beauty", "elegant", @@ -37127,7 +37125,8 @@ "red", "rose", "valentine" - ] + ], + "value" : "🌹" }, "🥀", { @@ -37140,12 +37139,12 @@ }, "🌺", { - "value" : "🌺", "keywords" : [ "flower", "hibiscus", "plant" - ] + ], + "value" : "🌺" }, "🌻", { @@ -37171,14 +37170,14 @@ }, "🌷", { + "value" : "🌷", "keywords" : [ "blossom", "flower", "growth", "plant", "tulip" - ], - "value" : "🌷" + ] }, "🌱", { @@ -37206,18 +37205,17 @@ }, "🌲", { - "value" : "🌲", "keywords" : [ "christmas", "evergreen", "forest", "pine", "tree" - ] + ], + "value" : "🌲" }, "🌳", { - "value" : "🌳", "keywords" : [ "deciduous", "forest", @@ -37225,18 +37223,19 @@ "habitat", "shedding", "tree" - ] + ], + "value" : "🌳" }, "🌴", { + "value" : "🌴", "keywords" : [ "beach", "palm", "plant", "tree", "tropical" - ], - "value" : "🌴" + ] }, "🌵", { @@ -37263,12 +37262,12 @@ }, "🌿", { - "value" : "🌿", "keywords" : [ "herb", "leaf", "plant" - ] + ], + "value" : "🌿" }, "☘️", { @@ -37295,23 +37294,23 @@ }, "🍁", { - "value" : "🍁", "keywords" : [ "falling", "leaf", "maple" - ] + ], + "value" : "🍁" }, "🍂", { - "value" : "🍂", "keywords" : [ "autumn", "fall", "fallen", "falling", "leaf" - ] + ], + "value" : "🍂" }, "🍃", { @@ -37324,39 +37323,42 @@ "wind" ] } - ] + ], + "name" : "Animals & Nature" }, { + "name" : "Food & Drink", "emojis" : [ "🍇", { - "value" : "🍇", "keywords" : [ "Dionysus", "fruit", "grape", "grapes" - ] + ], + "value" : "🍇" }, "🍈", { - "value" : "🍈", "keywords" : [ "cantaloupe", "fruit", "melon" - ] + ], + "value" : "🍈" }, "🍉", { + "value" : "🍉", "keywords" : [ "fruit", "watermelon" - ], - "value" : "🍉" + ] }, "🍊", { + "value" : "🍊", "keywords" : [ "c", "citrus", @@ -37365,18 +37367,17 @@ "orange", "tangerine", "vitamin" - ], - "value" : "🍊" + ] }, "🍋", { + "value" : "🍋", "keywords" : [ "citrus", "fruit", "lemon", "sour" - ], - "value" : "🍋" + ] }, "🍌", { @@ -37432,19 +37433,19 @@ }, "🍐", { + "value" : "🍐", "keywords" : [ "fruit", "pear" - ], - "value" : "🍐" + ] }, "🍑", { + "value" : "🍑", "keywords" : [ "fruit", "peach" - ], - "value" : "🍑" + ] }, "🍒", { @@ -37459,12 +37460,12 @@ }, "🍓", { + "value" : "🍓", "keywords" : [ "berry", "fruit", "strawberry" - ], - "value" : "🍓" + ] }, "🫐", { @@ -37491,21 +37492,21 @@ }, "🍅", { - "value" : "🍅", "keywords" : [ "food", "fruit", "tomato", "vegetable" - ] + ], + "value" : "🍅" }, "🫒", { - "value" : "🫒", "keywords" : [ "food", "olive" - ] + ], + "value" : "🫒" }, "🥥", { @@ -37528,34 +37529,33 @@ }, "🍆", { + "value" : "🍆", "keywords" : [ "aubergine", "eggplant", "vegetable" - ], - "value" : "🍆" + ] }, "🥔", { - "value" : "🥔", "keywords" : [ "food", "potato", "vegetable" - ] + ], + "value" : "🥔" }, "🥕", { + "value" : "🥕", "keywords" : [ "carrot", "food", "vegetable" - ], - "value" : "🥕" + ] }, "🌽", { - "value" : "🌽", "keywords" : [ "corn", "crops", @@ -37563,15 +37563,16 @@ "farm", "maize", "maze" - ] + ], + "value" : "🌽" }, "🌶️", { + "value" : "🌶️", "keywords" : [ "hot", "pepper" - ], - "value" : "🌶️" + ] }, "🫑", { @@ -37586,17 +37587,16 @@ }, "🥒", { - "value" : "🥒", "keywords" : [ "cucumber", "food", "pickle", "vegetable" - ] + ], + "value" : "🥒" }, "🥬", { - "value" : "🥬", "keywords" : [ "bok", "burgers", @@ -37607,24 +37607,25 @@ "leafy", "lettuce", "salad" - ] + ], + "value" : "🥬" }, "🥦", { + "value" : "🥦", "keywords" : [ "broccoli", "cabbage", "wild" - ], - "value" : "🥦" + ] }, "🧄", { + "value" : "🧄", "keywords" : [ "flavoring", "garlic" - ], - "value" : "🧄" + ] }, "🧅", { @@ -37656,12 +37657,12 @@ }, "🌰", { - "value" : "🌰", "keywords" : [ "almond", "chestnut", "plant" - ] + ], + "value" : "🌰" }, "🍞", { @@ -37679,6 +37680,7 @@ }, "🥐", { + "value" : "🥐", "keywords" : [ "bread", "breakfast", @@ -37687,22 +37689,20 @@ "food", "french", "roll" - ], - "value" : "🥐" + ] }, "🥖", { + "value" : "🥖", "keywords" : [ "baguette", "bread", "food", "french" - ], - "value" : "🥖" + ] }, "🫓", { - "value" : "🫓", "keywords" : [ "arepa", "bread", @@ -37712,7 +37712,8 @@ "lavash", "naan", "pita" - ] + ], + "value" : "🫓" }, "🥨", { @@ -37736,7 +37737,6 @@ }, "🥞", { - "value" : "🥞", "keywords" : [ "breakfast", "crêpe", @@ -37744,17 +37744,18 @@ "hotcake", "pancake", "pancakes" - ] + ], + "value" : "🥞" }, "🧇", { - "value" : "🧇", "keywords" : [ "breakfast", "indecisive", "iron", "waffle" - ] + ], + "value" : "🧇" }, "🧀", { @@ -37766,15 +37767,14 @@ }, "🍖", { + "value" : "🍖", "keywords" : [ "bone", "meat" - ], - "value" : "🍖" + ] }, "🍗", { - "value" : "🍗", "keywords" : [ "bone", "chicken", @@ -37783,11 +37783,11 @@ "leg", "poultry", "turkey" - ] + ], + "value" : "🍗" }, "🥩", { - "value" : "🥩", "keywords" : [ "chop", "cut", @@ -37796,7 +37796,8 @@ "porkchop", "red", "steak" - ] + ], + "value" : "🥩" }, "🥓", { @@ -37810,6 +37811,7 @@ }, "🍔", { + "value" : "🍔", "keywords" : [ "burger", "eat", @@ -37817,8 +37819,7 @@ "food", "hamburger", "hungry" - ], - "value" : "🍔" + ] }, "🍟", { @@ -37832,7 +37833,6 @@ }, "🍕", { - "value" : "🍕", "keywords" : [ "cheese", "food", @@ -37840,18 +37840,19 @@ "pepperoni", "pizza", "slice" - ] + ], + "value" : "🍕" }, "🌭", { + "value" : "🌭", "keywords" : [ "dog", "frankfurter", "hot", "hotdog", "sausage" - ], - "value" : "🌭" + ] }, "🥪", { @@ -37863,11 +37864,11 @@ }, "🌮", { - "value" : "🌮", "keywords" : [ "mexican", "taco" - ] + ], + "value" : "🌮" }, "🌯", { @@ -37880,18 +37881,17 @@ }, "🫔", { - "value" : "🫔", "keywords" : [ "food", "mexican", "pamonha", "tamale", "wrapped" - ] + ], + "value" : "🫔" }, "🥙", { - "value" : "🥙", "keywords" : [ "falafel", "flatbread", @@ -37899,7 +37899,8 @@ "gyro", "kebab", "stuffed" - ] + ], + "value" : "🥙" }, "🧆", { @@ -37912,12 +37913,12 @@ }, "🥚", { - "value" : "🥚", "keywords" : [ "breakfast", "egg", "food" - ] + ], + "value" : "🥚" }, "🍳", { @@ -37939,14 +37940,14 @@ }, "🥘", { - "value" : "🥘", "keywords" : [ "casserole", "food", "paella", "pan", "shallow" - ] + ], + "value" : "🥘" }, "🍲", { @@ -37960,7 +37961,6 @@ }, "🫕", { - "value" : "🫕", "keywords" : [ "cheese", "chocolate", @@ -37969,11 +37969,11 @@ "melted", "pot", "ski" - ] + ], + "value" : "🫕" }, "🥣", { - "value" : "🥣", "keywords" : [ "bowl", "breakfast", @@ -37982,26 +37982,27 @@ "oatmeal", "porridge", "spoon" - ] + ], + "value" : "🥣" }, "🥗", { + "value" : "🥗", "keywords" : [ "food", "green", "salad" - ], - "value" : "🥗" + ] }, "🍿", { + "value" : "🍿", "keywords" : [ "movie", "popcorn", "pop", "corn" - ], - "value" : "🍿" + ] }, "🧈", { @@ -38013,7 +38014,6 @@ }, "🧂", { - "value" : "🧂", "keywords" : [ "condiment", "flavor", @@ -38023,7 +38023,8 @@ "shaker", "taste", "upset" - ] + ], + "value" : "🧂" }, "🥫", { @@ -38036,21 +38037,21 @@ }, "🍱", { - "value" : "🍱", "keywords" : [ "bento", "box", "food" - ] + ], + "value" : "🍱" }, "🍘", { + "value" : "🍘", "keywords" : [ "cracker", "food", "rice" - ], - "value" : "🍘" + ] }, "🍙", { @@ -38064,12 +38065,12 @@ }, "🍚", { - "value" : "🍚", "keywords" : [ "cooked", "food", "rice" - ] + ], + "value" : "🍚" }, "🍛", { @@ -38096,14 +38097,14 @@ }, "🍝", { + "value" : "🍝", "keywords" : [ "food", "meatballs", "pasta", "restaurant", "spaghetti" - ], - "value" : "🍝" + ] }, "🍠", { @@ -38138,17 +38139,16 @@ }, "🍤", { + "value" : "🍤", "keywords" : [ "fried", "prawn", "shrimp", "tempura" - ], - "value" : "🍤" + ] }, "🍥", { - "value" : "🍥", "keywords" : [ "cake", "fish", @@ -38156,7 +38156,8 @@ "pastry", "restaurant", "swirl" - ] + ], + "value" : "🍥" }, "🥮", { @@ -38171,6 +38172,7 @@ }, "🍡", { + "value" : "🍡", "keywords" : [ "dango", "dessert", @@ -38178,8 +38180,7 @@ "skewer", "stick", "sweet" - ], - "value" : "🍡" + ] }, "🥟", { @@ -38204,6 +38205,7 @@ }, "🥡", { + "value" : "🥡", "keywords" : [ "box", "chopsticks", @@ -38212,28 +38214,27 @@ "oyster", "pail", "takeout" - ], - "value" : "🥡" + ] }, "🦀", { + "value" : "🦀", "keywords" : [ "Cancer", "crab", "zodiac" - ], - "value" : "🦀" + ] }, "🦞", { - "value" : "🦞", "keywords" : [ "animal", "bisque", "claws", "lobster", "seafood" - ] + ], + "value" : "🦞" }, "🦐", { @@ -38247,13 +38248,13 @@ }, "🦑", { - "value" : "🦑", "keywords" : [ "animal", "food", "mollusk", "squid" - ] + ], + "value" : "🦑" }, "🦪", { @@ -38292,7 +38293,6 @@ }, "🍨", { - "value" : "🍨", "keywords" : [ "cream", "dessert", @@ -38300,7 +38300,8 @@ "ice", "restaurant", "sweet" - ] + ], + "value" : "🍨" }, "🍩", { @@ -38316,14 +38317,14 @@ }, "🍪", { + "value" : "🍪", "keywords" : [ "chip", "chocolate", "cookie", "dessert", "sweet" - ], - "value" : "🍪" + ] }, "🎂", { @@ -38353,6 +38354,7 @@ }, "🧁", { + "value" : "🧁", "keywords" : [ "bakery", "cupcake", @@ -38361,8 +38363,7 @@ "sugar", "sweet", "treat" - ], - "value" : "🧁" + ] }, "🥧", { @@ -38380,7 +38381,6 @@ }, "🍫", { - "value" : "🍫", "keywords" : [ "bar", "candy", @@ -38389,10 +38389,12 @@ "halloween", "sweet", "tooth" - ] + ], + "value" : "🍫" }, "🍬", { + "value" : "🍬", "keywords" : [ "candy", "cavities", @@ -38402,8 +38404,7 @@ "sweet", "tooth", "wrapper" - ], - "value" : "🍬" + ] }, "🍭", { @@ -38419,13 +38420,13 @@ }, "🍮", { - "value" : "🍮", "keywords" : [ "custard", "dessert", "pudding", "sweet" - ] + ], + "value" : "🍮" }, "🍯", { @@ -38458,12 +38459,12 @@ }, "🥛", { + "value" : "🥛", "keywords" : [ "drink", "glass", "milk" - ], - "value" : "🥛" + ] }, "☕", { @@ -38483,7 +38484,6 @@ }, "🫖", { - "value" : "🫖", "keywords" : [ "brew", "drink", @@ -38491,7 +38491,8 @@ "pot", "tea", "teapot" - ] + ], + "value" : "🫖" }, "🍵", { @@ -38521,14 +38522,14 @@ }, "🍾", { - "value" : "🍾", "keywords" : [ "bar", "bottle", "cork", "drink", "popping" - ] + ], + "value" : "🍾" }, "🍷", { @@ -38549,7 +38550,6 @@ }, "🍸", { - "value" : "🍸", "keywords" : [ "alcohol", "bar", @@ -38563,10 +38563,12 @@ "mad", "martini", "men" - ] + ], + "value" : "🍸" }, "🍹", { + "value" : "🍹", "keywords" : [ "alcohol", "bar", @@ -38582,12 +38584,10 @@ "tai", "tropical", "tropics" - ], - "value" : "🍹" + ] }, "🍺", { - "value" : "🍺", "keywords" : [ "alcohol", "ale", @@ -38603,11 +38603,11 @@ "pint", "stein", "summer" - ] + ], + "value" : "🍺" }, "🍻", { - "value" : "🍻", "keywords" : [ "alcohol", "bar", @@ -38620,7 +38620,8 @@ "drinking", "drinks", "mugs" - ] + ], + "value" : "🍻" }, "🥂", { @@ -38636,6 +38637,7 @@ }, "🥃", { + "value" : "🥃", "keywords" : [ "glass", "liquor", @@ -38644,8 +38646,7 @@ "tumbler", "whiskey", "whisky" - ], - "value" : "🥃" + ] }, "🥤", { @@ -38663,7 +38664,6 @@ }, "🧋", { - "value" : "🧋", "keywords" : [ "boba", "bubble", @@ -38671,7 +38671,8 @@ "milk", "pearl", "tea" - ] + ], + "value" : "🧋" }, "🧃", { @@ -38694,13 +38695,13 @@ }, "🧊", { - "value" : "🧊", "keywords" : [ "cold", "cube", "ice", "iceberg" - ] + ], + "value" : "🧊" }, "🥢", { @@ -38714,6 +38715,7 @@ }, "🍽️", { + "value" : "🍽️", "keywords" : [ "cooking", "dinner", @@ -38721,12 +38723,10 @@ "fork", "knife", "plate" - ], - "value" : "🍽️" + ] }, "🍴", { - "value" : "🍴", "keywords" : [ "breakfast", "breaky", @@ -38744,20 +38744,20 @@ "restaurant", "yum", "yummy" - ] + ], + "value" : "🍴" }, "🥄", { - "value" : "🥄", "keywords" : [ "eat", "spoon", "tableware" - ] + ], + "value" : "🥄" }, "🔪", { - "value" : "🔪", "keywords" : [ "chef", "cooking", @@ -38766,10 +38766,12 @@ "knife", "tool", "weapon" - ] + ], + "value" : "🔪" }, "🏺", { + "value" : "🏺", "keywords" : [ "amphora", "Aquarius", @@ -38779,12 +38781,10 @@ "tool", "weapon", "zodiac" - ], - "value" : "🏺" + ] } ], - "name" : "Food & Drink", - "appleCategory" : "Food & Drink" + "appleCategory" : "foodAndDrink" }, { "emojis" : [ @@ -38807,6 +38807,7 @@ }, "😃", { + "value" : "😃", "keywords" : [ "awesome", "big", @@ -38821,11 +38822,11 @@ "smiling", "teeth", "yay" - ], - "value" : "😃" + ] }, "😄", { + "value" : "😄", "keywords" : [ "eye", "eyes", @@ -38839,11 +38840,11 @@ "open", "smile", "smiling" - ], - "value" : "😄" + ] }, "😁", { + "value" : "😁", "keywords" : [ "beaming", "eye", @@ -38856,8 +38857,7 @@ "smile", "smiling", "teeth" - ], - "value" : "😁" + ] }, "😆", { @@ -38882,7 +38882,6 @@ }, "😅", { - "value" : "😅", "keywords" : [ "cold", "dejected", @@ -38897,7 +38896,8 @@ "stress", "stressed", "sweat" - ] + ], + "value" : "😅" }, "🤣", { @@ -38965,6 +38965,7 @@ }, "😉", { + "value" : "😉", "keywords" : [ "face", "flirt", @@ -38975,12 +38976,10 @@ "wink", "winking", "winks" - ], - "value" : "😉" + ] }, "😊", { - "value" : "😊", "keywords" : [ "blush", "eye", @@ -38990,7 +38989,8 @@ "satisfied", "smile", "smiling" - ] + ], + "value" : "😊" }, "😇", { @@ -39034,6 +39034,7 @@ }, "😍", { + "value" : "😍", "keywords" : [ "143", "bae", @@ -39049,8 +39050,7 @@ "romantic", "smile", "xoxo" - ], - "value" : "😍" + ] }, "🤩", { @@ -39069,7 +39069,6 @@ }, "😘", { - "value" : "😘", "keywords" : [ "adorbs", "bae", @@ -39087,11 +39086,11 @@ "smooch", "xoxo", "you" - ] + ], + "value" : "😘" }, "😗", { - "value" : "😗", "keywords" : [ "143", "date", @@ -39105,7 +39104,8 @@ "smooches", "xoxo", "you" - ] + ], + "value" : "😗" }, "☺️", { @@ -39142,7 +39142,6 @@ }, "😙", { - "value" : "😙", "keywords" : [ "143", "closed", @@ -39160,10 +39159,12 @@ "night", "smile", "smiling" - ] + ], + "value" : "😙" }, "🥲", { + "value" : "🥲", "keywords" : [ "face", "glad", @@ -39178,8 +39179,7 @@ "smiling", "tear", "touched" - ], - "value" : "🥲" + ] }, "😋", { @@ -39202,7 +39202,6 @@ }, "😛", { - "value" : "😛", "keywords" : [ "awesome", "cool", @@ -39212,7 +39211,8 @@ "stuck-out", "sweet", "tongue" - ] + ], + "value" : "😛" }, "😜", { @@ -39238,7 +39238,6 @@ }, "🤪", { - "value" : "🤪", "keywords" : [ "crazy", "eye", @@ -39248,11 +39247,11 @@ "large", "small", "zany" - ] + ], + "value" : "🤪" }, "😝", { - "value" : "😝", "keywords" : [ "closed", "eye", @@ -39267,7 +39266,8 @@ "tongue", "whatever", "yolo" - ] + ], + "value" : "😝" }, "🤑", { @@ -39282,7 +39282,6 @@ }, "🤗", { - "value" : "🤗", "keywords" : [ "face", "hands", @@ -39290,7 +39289,8 @@ "hugging", "open", "smiling" - ] + ], + "value" : "🤗" }, "🤭", { @@ -39312,17 +39312,18 @@ }, "🤫", { - "value" : "🤫", "keywords" : [ "face", "quiet", "shh", "shush", "shushing" - ] + ], + "value" : "🤫" }, "🤔", { + "value" : "🤔", "keywords" : [ "chin", "consider", @@ -39332,12 +39333,10 @@ "pondering", "thinking", "wondering" - ], - "value" : "🤔" + ] }, "🤐", { - "value" : "🤐", "keywords" : [ "face", "keep", @@ -39348,7 +39347,8 @@ "zip", "zipper", "zipper-mouth" - ] + ], + "value" : "🤐" }, "🤨", { @@ -39372,7 +39372,6 @@ }, "😐", { - "value" : "😐", "keywords" : [ "awkward", "blank", @@ -39390,7 +39389,8 @@ "unhappy", "unimpressed", "whatever" - ] + ], + "value" : "😐" }, "😑", { @@ -39416,7 +39416,6 @@ }, "😶", { - "value" : "😶", "keywords" : [ "awkward", "blank", @@ -39430,7 +39429,8 @@ "silence", "silent", "speechless" - ] + ], + "value" : "😶" }, "😶‍🌫️", { @@ -39445,7 +39445,6 @@ }, "😏", { - "value" : "😏", "keywords" : [ "boss", "dapper", @@ -39463,11 +39462,11 @@ "suave", "suspicious", "swag" - ] + ], + "value" : "😏" }, "😒", { - "value" : "😒", "keywords" : [ "...", "bored", @@ -39484,7 +39483,8 @@ "unhappy", "weird", "whatever" - ] + ], + "value" : "😒" }, "🙄", { @@ -39547,7 +39547,6 @@ }, "😌", { - "value" : "😌", "keywords" : [ "calm", "face", @@ -39555,11 +39554,11 @@ "relief", "relieved", "zen" - ] + ], + "value" : "😌" }, "😔", { - "value" : "😔", "keywords" : [ "awful", "bored", @@ -39572,7 +39571,8 @@ "pensive", "sad", "sucks" - ] + ], + "value" : "😔" }, "😪", { @@ -39669,7 +39669,6 @@ }, "🤮", { - "value" : "🤮", "keywords" : [ "barf", "ew", @@ -39682,7 +39681,8 @@ "up", "vomit", "vomiting" - ] + ], + "value" : "🤮" }, "🤧", { @@ -39762,7 +39762,6 @@ }, "😵‍💫", { - "value" : "😵‍💫", "keywords" : [ "confused", "dizzy", @@ -39776,11 +39775,11 @@ "whoa", "woah", "woozy" - ] + ], + "value" : "😵‍💫" }, "🤯", { - "value" : "🤯", "keywords" : [ "blown", "explode", @@ -39791,17 +39790,18 @@ "no", "shocked", "way" - ] + ], + "value" : "🤯" }, "🤠", { - "value" : "🤠", "keywords" : [ "cowboy", "cowgirl", "face", "hat" - ] + ], + "value" : "🤠" }, "🥳", { @@ -39841,7 +39841,6 @@ }, "😎", { - "value" : "😎", "keywords" : [ "awesome", "beach", @@ -39859,10 +39858,12 @@ "sunglasses", "swag", "win" - ] + ], + "value" : "😎" }, "🤓", { + "value" : "🤓", "keywords" : [ "brainy", "clever", @@ -39874,8 +39875,7 @@ "intelligent", "nerd", "smart" - ], - "value" : "🤓" + ] }, "🧐", { @@ -39892,7 +39892,6 @@ }, "😕", { - "value" : "😕", "keywords" : [ "befuddled", "confused", @@ -39906,11 +39905,11 @@ "sad", "sorry", "sure" - ] + ], + "value" : "😕" }, "😟", { - "value" : "😟", "keywords" : [ "anxious", "butterflies", @@ -39923,31 +39922,33 @@ "surprised", "worried", "worry" - ] + ], + "value" : "😟" }, "🙁", { - "value" : "🙁", "keywords" : [ "face", "frown", "frowning", "sad", "slightly" - ] + ], + "value" : "🙁" }, "☹️", { + "value" : "☹️", "keywords" : [ "face", "frown", "frowning", "sad" - ], - "value" : "☹️" + ] }, "😮", { + "value" : "😮", "keywords" : [ "believe", "face", @@ -39963,8 +39964,7 @@ "whoa", "wow", "you" - ], - "value" : "😮" + ] }, "😯", { @@ -39982,6 +39982,7 @@ }, "😲", { + "value" : "😲", "keywords" : [ "astonished", "cost", @@ -39991,8 +39992,7 @@ "shocked", "totally", "way" - ], - "value" : "😲" + ] }, "😳", { @@ -40018,6 +40018,7 @@ }, "🥺", { + "value" : "🥺", "keywords" : [ "begging", "big", @@ -40031,11 +40032,11 @@ "puppy", "sad", "why" - ], - "value" : "🥺" + ] }, "😦", { + "value" : "😦", "keywords" : [ "caught", "face", @@ -40049,11 +40050,11 @@ "surprise", "what", "wow" - ], - "value" : "😦" + ] }, "😧", { + "value" : "😧", "keywords" : [ "anguished", "face", @@ -40065,11 +40066,11 @@ "unhappy", "what", "wow" - ], - "value" : "😧" + ] }, "😨", { + "value" : "😨", "keywords" : [ "afraid", "anxious", @@ -40079,11 +40080,11 @@ "fearful", "scared", "worried" - ], - "value" : "😨" + ] }, "😰", { + "value" : "😰", "keywords" : [ "anxious", "blue", @@ -40097,11 +40098,11 @@ "scared", "sweat", "yikes" - ], - "value" : "😰" + ] }, "😥", { + "value" : "😥", "keywords" : [ "anxious", "call", @@ -40115,8 +40116,7 @@ "sweat", "time", "whew" - ], - "value" : "😥" + ] }, "😢", { @@ -40170,7 +40170,6 @@ }, "😖", { - "value" : "😖", "keywords" : [ "annoyed", "confounded", @@ -40182,7 +40181,8 @@ "frustrated", "mad", "sad" - ] + ], + "value" : "😖" }, "😣", { @@ -40199,6 +40199,7 @@ }, "😞", { + "value" : "😞", "keywords" : [ "awful", "blame", @@ -40209,12 +40210,10 @@ "losing", "sad", "unhappy" - ], - "value" : "😞" + ] }, "😓", { - "value" : "😓", "keywords" : [ "close", "cold", @@ -40227,7 +40226,8 @@ "scared", "sweat", "yikes" - ] + ], + "value" : "😓" }, "😩", { @@ -40249,7 +40249,6 @@ }, "😫", { - "value" : "😫", "keywords" : [ "cost", "face", @@ -40258,7 +40257,8 @@ "sad", "sneeze", "tired" - ] + ], + "value" : "😫" }, "🥱", { @@ -40301,6 +40301,7 @@ }, "😡", { + "value" : "😡", "keywords" : [ "anger", "angry", @@ -40315,12 +40316,10 @@ "shade", "unhappy", "upset" - ], - "value" : "😡" + ] }, "😠", { - "value" : "😠", "keywords" : [ "anger", "angry", @@ -40334,10 +40333,12 @@ "shade", "unhappy", "upset" - ] + ], + "value" : "😠" }, "🤬", { + "value" : "🤬", "keywords" : [ "censor", "cursing", @@ -40348,11 +40349,11 @@ "pissed", "swearing", "symbols" - ], - "value" : "🤬" + ] }, "😈", { + "value" : "😈", "keywords" : [ "demon", "devil", @@ -40367,11 +40368,11 @@ "smile", "smiling", "tale" - ], - "value" : "😈" + ] }, "👿", { + "value" : "👿", "keywords" : [ "angry", "demon", @@ -40387,11 +40388,11 @@ "purple", "shade", "tale" - ], - "value" : "👿" + ] }, "💀", { + "value" : "💀", "keywords" : [ "body", "dead", @@ -40405,8 +40406,7 @@ "skull", "tale", "yolo" - ], - "value" : "💀" + ] }, "☠️", { @@ -40470,7 +40470,6 @@ }, "👺", { - "value" : "👺", "keywords" : [ "angry", "creature", @@ -40483,10 +40482,12 @@ "mean", "monster", "tale" - ] + ], + "value" : "👺" }, "👻", { + "value" : "👻", "keywords" : [ "boo", "creature", @@ -40502,8 +40503,7 @@ "scary", "silly", "tale" - ], - "value" : "👻" + ] }, "👽", { @@ -40554,6 +40554,7 @@ }, "😺", { + "value" : "😺", "keywords" : [ "animal", "cat", @@ -40563,11 +40564,11 @@ "open", "smile", "smiling" - ], - "value" : "😺" + ] }, "😸", { + "value" : "😸", "keywords" : [ "animal", "cat", @@ -40578,11 +40579,11 @@ "grinning", "smile", "smiling" - ], - "value" : "😸" + ] }, "😹", { + "value" : "😹", "keywords" : [ "animal", "cat", @@ -40593,12 +40594,10 @@ "lol", "tear", "tears" - ], - "value" : "😹" + ] }, "😻", { - "value" : "😻", "keywords" : [ "animal", "cat", @@ -40609,7 +40608,8 @@ "love", "smile", "smiling" - ] + ], + "value" : "😻" }, "😼", { @@ -40639,6 +40639,7 @@ }, "🙀", { + "value" : "🙀", "keywords" : [ "animal", "cat", @@ -40646,8 +40647,7 @@ "oh", "surprised", "weary" - ], - "value" : "🙀" + ] }, "😿", { @@ -40664,13 +40664,13 @@ }, "😾", { - "value" : "😾", "keywords" : [ "animal", "cat", "face", "pouting" - ] + ], + "value" : "😾" }, "🙈", { @@ -40695,7 +40695,6 @@ }, "🙉", { - "value" : "🙉", "keywords" : [ "animal", "ears", @@ -40712,11 +40711,11 @@ "secret", "shh", "tmi" - ] + ], + "value" : "🙉" }, "🙊", { - "value" : "🙊", "keywords" : [ "animal", "evil", @@ -40732,7 +40731,8 @@ "secret", "speak", "stealth" - ] + ], + "value" : "🙊" }, "💋", { @@ -40751,6 +40751,7 @@ }, "💌", { + "value" : "💌", "keywords" : [ "heart", "letter", @@ -40758,8 +40759,7 @@ "mail", "romance", "valentine" - ], - "value" : "💌" + ] }, "💘", { @@ -40780,7 +40780,6 @@ }, "💝", { - "value" : "💝", "keywords" : [ "143", "anniversary", @@ -40791,7 +40790,8 @@ "ribbon", "valentine", "xoxo" - ] + ], + "value" : "💝" }, "💖", { @@ -40847,6 +40847,7 @@ }, "💞", { + "value" : "💞", "keywords" : [ "143", "adorbs", @@ -40855,8 +40856,7 @@ "heart", "hearts", "revolving" - ], - "value" : "💞" + ] }, "💕", { @@ -40892,14 +40892,14 @@ }, "❣️", { - "value" : "❣️", "keywords" : [ "exclamation", "heart", "heavy", "mark", "punctuation" - ] + ], + "value" : "❣️" }, "💔", { @@ -40917,6 +40917,7 @@ }, "❤️‍🔥", { + "value" : "❤️‍🔥", "keywords" : [ "burn", "fire", @@ -40924,8 +40925,7 @@ "love", "lust", "sacred" - ], - "value" : "❤️‍🔥" + ] }, "❤️‍🩹", { @@ -40942,13 +40942,13 @@ }, "❤️", { - "value" : "❤️", "keywords" : [ "emotion", "heart", "love", "red" - ] + ], + "value" : "❤️" }, "🧡", { @@ -40987,6 +40987,7 @@ }, "💙", { + "value" : "💙", "keywords" : [ "143", "blue", @@ -40995,8 +40996,7 @@ "ily", "love", "romance" - ], - "value" : "💙" + ] }, "💜", { @@ -41013,12 +41013,12 @@ }, "🤎", { - "value" : "🤎", "keywords" : [ "143", "brown", "heart" - ] + ], + "value" : "🤎" }, "🖤", { @@ -41142,7 +41142,6 @@ }, "💣", { - "value" : "💣", "keywords" : [ "bomb", "boom", @@ -41150,11 +41149,11 @@ "dangerous", "explosion", "hot" - ] + ], + "value" : "💣" }, "💬", { - "value" : "💬", "keywords" : [ "balloon", "bubble", @@ -41166,33 +41165,33 @@ "talk", "text", "typing" - ] + ], + "value" : "💬" }, "👁️‍🗨️", { - "value" : "👁️‍🗨️", "keywords" : [ "balloon", "bubble", "eye", "speech", "witness" - ] + ], + "value" : "👁️‍🗨️" }, "🗨️", { + "value" : "🗨️", "keywords" : [ "balloon", "bubble", "dialog", "left", "speech" - ], - "value" : "🗨️" + ] }, "🗯️", { - "value" : "🗯️", "keywords" : [ "anger", "angry", @@ -41200,10 +41199,12 @@ "bubble", "mad", "right" - ] + ], + "value" : "🗯️" }, "💭", { + "value" : "💭", "keywords" : [ "balloon", "bubble", @@ -41220,8 +41221,7 @@ "think", "thoughts", "wonder" - ], - "value" : "💭" + ] }, "💤", { @@ -41239,7 +41239,7 @@ ] } ], - "appleCategory" : "Smileys & People", - "name" : "Smileys & Emotion" + "name" : "Smileys & Emotion", + "appleCategory" : "smileysAndPeople" } ] \ No newline at end of file diff --git a/Sources/EmojiKit/Resources/emojis_v14.0.json b/Sources/EmojiKit/Resources/emojis_v14.0.json index 58bd663..a40a8ed 100644 --- a/Sources/EmojiKit/Resources/emojis_v14.0.json +++ b/Sources/EmojiKit/Resources/emojis_v14.0.json @@ -1,5 +1,6 @@ [ { + "name" : "Flags", "emojis" : [ "🏁", { @@ -19,14 +20,14 @@ }, "🚩", { - "value" : "🚩", "keywords" : [ "construction", "flag", "golf", "post", "triangular" - ] + ], + "value" : "🚩" }, "🎌", { @@ -41,12 +42,12 @@ }, "🏴", { + "value" : "🏴", "keywords" : [ "black", "flag", "waving" - ], - "value" : "🏴" + ] }, "🏳️", { @@ -92,6 +93,7 @@ }, "🏴‍☠️", { + "value" : "🏴‍☠️", "keywords" : [ "flag", "Jolly", @@ -99,32 +101,31 @@ "plunder", "Roger", "treasure" - ], - "value" : "🏴‍☠️" + ] }, "🇦🇨", { + "value" : "🇦🇨", "keywords" : [ "flag", "flag: Ascension Island" - ], - "value" : "🇦🇨" + ] }, "🇦🇩", { - "value" : "🇦🇩", "keywords" : [ "flag", "flag: Andorra" - ] + ], + "value" : "🇦🇩" }, "🇦🇪", { - "value" : "🇦🇪", "keywords" : [ "flag", "flag: United Arab Emirates" - ] + ], + "value" : "🇦🇪" }, "🇦🇫", { @@ -136,27 +137,27 @@ }, "🇦🇬", { + "value" : "🇦🇬", "keywords" : [ "flag", "flag: Antigua&Barbuda" - ], - "value" : "🇦🇬" + ] }, "🇦🇮", { + "value" : "🇦🇮", "keywords" : [ "flag", "flag: Anguilla" - ], - "value" : "🇦🇮" + ] }, "🇦🇱", { + "value" : "🇦🇱", "keywords" : [ "flag", "flag: Albania" - ], - "value" : "🇦🇱" + ] }, "🇦🇲", { @@ -184,11 +185,11 @@ }, "🇦🇷", { + "value" : "🇦🇷", "keywords" : [ "flag", "flag: Argentina" - ], - "value" : "🇦🇷" + ] }, "🇦🇸", { @@ -200,11 +201,11 @@ }, "🇦🇹", { - "value" : "🇦🇹", "keywords" : [ "flag", "flag: Austria" - ] + ], + "value" : "🇦🇹" }, "🇦🇺", { @@ -216,11 +217,11 @@ }, "🇦🇼", { + "value" : "🇦🇼", "keywords" : [ "flag", "flag: Aruba" - ], - "value" : "🇦🇼" + ] }, "🇦🇽", { @@ -232,43 +233,43 @@ }, "🇦🇿", { + "value" : "🇦🇿", "keywords" : [ "flag", "flag: Azerbaijan" - ], - "value" : "🇦🇿" + ] }, "🇧🇦", { - "value" : "🇧🇦", "keywords" : [ "flag", "flag: Bosnia&Herzegovina" - ] + ], + "value" : "🇧🇦" }, "🇧🇧", { - "value" : "🇧🇧", "keywords" : [ "flag", "flag: Barbados" - ] + ], + "value" : "🇧🇧" }, "🇧🇩", { + "value" : "🇧🇩", "keywords" : [ "flag", "flag: Bangladesh" - ], - "value" : "🇧🇩" + ] }, "🇧🇪", { + "value" : "🇧🇪", "keywords" : [ "flag", "flag: Belgium" - ], - "value" : "🇧🇪" + ] }, "🇧🇫", { @@ -296,11 +297,11 @@ }, "🇧🇮", { + "value" : "🇧🇮", "keywords" : [ "flag", "flag: Burundi" - ], - "value" : "🇧🇮" + ] }, "🇧🇯", { @@ -312,27 +313,27 @@ }, "🇧🇱", { + "value" : "🇧🇱", "keywords" : [ "flag", "flag: St. Barthélemy" - ], - "value" : "🇧🇱" + ] }, "🇧🇲", { + "value" : "🇧🇲", "keywords" : [ "flag", "flag: Bermuda" - ], - "value" : "🇧🇲" + ] }, "🇧🇳", { + "value" : "🇧🇳", "keywords" : [ "flag", "flag: Brunei" - ], - "value" : "🇧🇳" + ] }, "🇧🇴", { @@ -352,19 +353,19 @@ }, "🇧🇷", { - "value" : "🇧🇷", "keywords" : [ "flag", "flag: Brazil" - ] + ], + "value" : "🇧🇷" }, "🇧🇸", { - "value" : "🇧🇸", "keywords" : [ "flag", "flag: Bahamas" - ] + ], + "value" : "🇧🇸" }, "🇧🇹", { @@ -384,11 +385,11 @@ }, "🇧🇼", { + "value" : "🇧🇼", "keywords" : [ "flag", "flag: Botswana" - ], - "value" : "🇧🇼" + ] }, "🇧🇾", { @@ -400,11 +401,11 @@ }, "🇧🇿", { + "value" : "🇧🇿", "keywords" : [ "flag", "flag: Belize" - ], - "value" : "🇧🇿" + ] }, "🇨🇦", { @@ -416,11 +417,11 @@ }, "🇨🇨", { + "value" : "🇨🇨", "keywords" : [ "flag", "flag: Cocos (Keeling) Islands" - ], - "value" : "🇨🇨" + ] }, "🇨🇩", { @@ -432,43 +433,43 @@ }, "🇨🇫", { - "value" : "🇨🇫", "keywords" : [ "flag", "flag: Central African Republic" - ] + ], + "value" : "🇨🇫" }, "🇨🇬", { - "value" : "🇨🇬", "keywords" : [ "flag", "flag: Congo - Brazzaville" - ] + ], + "value" : "🇨🇬" }, "🇨🇭", { - "value" : "🇨🇭", "keywords" : [ "flag", "flag: Switzerland" - ] + ], + "value" : "🇨🇭" }, "🇨🇮", { + "value" : "🇨🇮", "keywords" : [ "flag", "flag: Côte d’Ivoire" - ], - "value" : "🇨🇮" + ] }, "🇨🇰", { + "value" : "🇨🇰", "keywords" : [ "flag", "flag: Cook Islands" - ], - "value" : "🇨🇰" + ] }, "🇨🇱", { @@ -512,11 +513,11 @@ }, "🇨🇷", { + "value" : "🇨🇷", "keywords" : [ "flag", "flag: Costa Rica" - ], - "value" : "🇨🇷" + ] }, "🇨🇺", { @@ -544,11 +545,11 @@ }, "🇨🇽", { + "value" : "🇨🇽", "keywords" : [ "flag", "flag: Christmas Island" - ], - "value" : "🇨🇽" + ] }, "🇨🇾", { @@ -560,11 +561,11 @@ }, "🇨🇿", { - "value" : "🇨🇿", "keywords" : [ "flag", "flag: Czechia" - ] + ], + "value" : "🇨🇿" }, "🇩🇪", { @@ -576,43 +577,43 @@ }, "🇩🇬", { - "value" : "🇩🇬", "keywords" : [ "flag", "flag: Diego Garcia" - ] + ], + "value" : "🇩🇬" }, "🇩🇯", { - "value" : "🇩🇯", "keywords" : [ "flag", "flag: Djibouti" - ] + ], + "value" : "🇩🇯" }, "🇩🇰", { + "value" : "🇩🇰", "keywords" : [ "flag", "flag: Denmark" - ], - "value" : "🇩🇰" + ] }, "🇩🇲", { + "value" : "🇩🇲", "keywords" : [ "flag", "flag: Dominica" - ], - "value" : "🇩🇲" + ] }, "🇩🇴", { + "value" : "🇩🇴", "keywords" : [ "flag", "flag: Dominican Republic" - ], - "value" : "🇩🇴" + ] }, "🇩🇿", { @@ -624,11 +625,11 @@ }, "🇪🇦", { + "value" : "🇪🇦", "keywords" : [ "flag", "flag: Ceuta&Melilla" - ], - "value" : "🇪🇦" + ] }, "🇪🇨", { @@ -664,11 +665,11 @@ }, "🇪🇷", { - "value" : "🇪🇷", "keywords" : [ "flag", "flag: Eritrea" - ] + ], + "value" : "🇪🇷" }, "🇪🇸", { @@ -680,35 +681,35 @@ }, "🇪🇹", { + "value" : "🇪🇹", "keywords" : [ "flag", "flag: Ethiopia" - ], - "value" : "🇪🇹" + ] }, "🇪🇺", { + "value" : "🇪🇺", "keywords" : [ "flag", "flag: European Union" - ], - "value" : "🇪🇺" + ] }, "🇫🇮", { - "value" : "🇫🇮", "keywords" : [ "flag", "flag: Finland" - ] + ], + "value" : "🇫🇮" }, "🇫🇯", { + "value" : "🇫🇯", "keywords" : [ "flag", "flag: Fiji" - ], - "value" : "🇫🇯" + ] }, "🇫🇰", { @@ -728,27 +729,27 @@ }, "🇫🇴", { + "value" : "🇫🇴", "keywords" : [ "flag", "flag: Faroe Islands" - ], - "value" : "🇫🇴" + ] }, "🇫🇷", { - "value" : "🇫🇷", "keywords" : [ "flag", "flag: France" - ] + ], + "value" : "🇫🇷" }, "🇬🇦", { + "value" : "🇬🇦", "keywords" : [ "flag", "flag: Gabon" - ], - "value" : "🇬🇦" + ] }, "🇬🇧", { @@ -760,35 +761,35 @@ }, "🇬🇩", { + "value" : "🇬🇩", "keywords" : [ "flag", "flag: Grenada" - ], - "value" : "🇬🇩" + ] }, "🇬🇪", { + "value" : "🇬🇪", "keywords" : [ "flag", "flag: Georgia" - ], - "value" : "🇬🇪" + ] }, "🇬🇫", { - "value" : "🇬🇫", "keywords" : [ "flag", "flag: French Guiana" - ] + ], + "value" : "🇬🇫" }, "🇬🇬", { + "value" : "🇬🇬", "keywords" : [ "flag", "flag: Guernsey" - ], - "value" : "🇬🇬" + ] }, "🇬🇭", { @@ -800,11 +801,11 @@ }, "🇬🇮", { + "value" : "🇬🇮", "keywords" : [ "flag", "flag: Gibraltar" - ], - "value" : "🇬🇮" + ] }, "🇬🇱", { @@ -816,11 +817,11 @@ }, "🇬🇲", { - "value" : "🇬🇲", "keywords" : [ "flag", "flag: Gambia" - ] + ], + "value" : "🇬🇲" }, "🇬🇳", { @@ -832,27 +833,27 @@ }, "🇬🇵", { - "value" : "🇬🇵", "keywords" : [ "flag", "flag: Guadeloupe" - ] + ], + "value" : "🇬🇵" }, "🇬🇶", { + "value" : "🇬🇶", "keywords" : [ "flag", "flag: Equatorial Guinea" - ], - "value" : "🇬🇶" + ] }, "🇬🇷", { + "value" : "🇬🇷", "keywords" : [ "flag", "flag: Greece" - ], - "value" : "🇬🇷" + ] }, "🇬🇸", { @@ -864,11 +865,11 @@ }, "🇬🇹", { + "value" : "🇬🇹", "keywords" : [ "flag", "flag: Guatemala" - ], - "value" : "🇬🇹" + ] }, "🇬🇺", { @@ -888,35 +889,35 @@ }, "🇬🇾", { - "value" : "🇬🇾", "keywords" : [ "flag", "flag: Guyana" - ] + ], + "value" : "🇬🇾" }, "🇭🇰", { + "value" : "🇭🇰", "keywords" : [ "flag", "flag: Hong Kong SAR China" - ], - "value" : "🇭🇰" + ] }, "🇭🇲", { - "value" : "🇭🇲", "keywords" : [ "flag", "flag: Heard&McDonald Islands" - ] + ], + "value" : "🇭🇲" }, "🇭🇳", { - "value" : "🇭🇳", "keywords" : [ "flag", "flag: Honduras" - ] + ], + "value" : "🇭🇳" }, "🇭🇷", { @@ -928,19 +929,19 @@ }, "🇭🇹", { + "value" : "🇭🇹", "keywords" : [ "flag", "flag: Haiti" - ], - "value" : "🇭🇹" + ] }, "🇭🇺", { + "value" : "🇭🇺", "keywords" : [ "flag", "flag: Hungary" - ], - "value" : "🇭🇺" + ] }, "🇮🇨", { @@ -952,43 +953,43 @@ }, "🇮🇩", { + "value" : "🇮🇩", "keywords" : [ "flag", "flag: Indonesia" - ], - "value" : "🇮🇩" + ] }, "🇮🇪", { + "value" : "🇮🇪", "keywords" : [ "flag", "flag: Ireland" - ], - "value" : "🇮🇪" + ] }, "🇮🇱", { + "value" : "🇮🇱", "keywords" : [ "flag", "flag: Israel" - ], - "value" : "🇮🇱" + ] }, "🇮🇲", { + "value" : "🇮🇲", "keywords" : [ "flag", "flag: Isle of Man" - ], - "value" : "🇮🇲" + ] }, "🇮🇳", { - "value" : "🇮🇳", "keywords" : [ "flag", "flag: India" - ] + ], + "value" : "🇮🇳" }, "🇮🇴", { @@ -1000,11 +1001,11 @@ }, "🇮🇶", { - "value" : "🇮🇶", "keywords" : [ "flag", "flag: Iraq" - ] + ], + "value" : "🇮🇶" }, "🇮🇷", { @@ -1016,11 +1017,11 @@ }, "🇮🇸", { - "value" : "🇮🇸", "keywords" : [ "flag", "flag: Iceland" - ] + ], + "value" : "🇮🇸" }, "🇮🇹", { @@ -1032,11 +1033,11 @@ }, "🇯🇪", { - "value" : "🇯🇪", "keywords" : [ "flag", "flag: Jersey" - ] + ], + "value" : "🇯🇪" }, "🇯🇲", { @@ -1088,27 +1089,27 @@ }, "🇰🇮", { + "value" : "🇰🇮", "keywords" : [ "flag", "flag: Kiribati" - ], - "value" : "🇰🇮" + ] }, "🇰🇲", { + "value" : "🇰🇲", "keywords" : [ "flag", "flag: Comoros" - ], - "value" : "🇰🇲" + ] }, "🇰🇳", { + "value" : "🇰🇳", "keywords" : [ "flag", "flag: St. Kitts&Nevis" - ], - "value" : "🇰🇳" + ] }, "🇰🇵", { @@ -1120,19 +1121,19 @@ }, "🇰🇷", { + "value" : "🇰🇷", "keywords" : [ "flag", "flag: South Korea" - ], - "value" : "🇰🇷" + ] }, "🇰🇼", { - "value" : "🇰🇼", "keywords" : [ "flag", "flag: Kuwait" - ] + ], + "value" : "🇰🇼" }, "🇰🇾", { @@ -1144,11 +1145,11 @@ }, "🇰🇿", { + "value" : "🇰🇿", "keywords" : [ "flag", "flag: Kazakhstan" - ], - "value" : "🇰🇿" + ] }, "🇱🇦", { @@ -1160,11 +1161,11 @@ }, "🇱🇧", { + "value" : "🇱🇧", "keywords" : [ "flag", "flag: Lebanon" - ], - "value" : "🇱🇧" + ] }, "🇱🇨", { @@ -1176,11 +1177,11 @@ }, "🇱🇮", { - "value" : "🇱🇮", "keywords" : [ "flag", "flag: Liechtenstein" - ] + ], + "value" : "🇱🇮" }, "🇱🇰", { @@ -1200,11 +1201,11 @@ }, "🇱🇸", { + "value" : "🇱🇸", "keywords" : [ "flag", "flag: Lesotho" - ], - "value" : "🇱🇸" + ] }, "🇱🇹", { @@ -1216,43 +1217,43 @@ }, "🇱🇺", { + "value" : "🇱🇺", "keywords" : [ "flag", "flag: Luxembourg" - ], - "value" : "🇱🇺" + ] }, "🇱🇻", { - "value" : "🇱🇻", "keywords" : [ "flag", "flag: Latvia" - ] + ], + "value" : "🇱🇻" }, "🇱🇾", { + "value" : "🇱🇾", "keywords" : [ "flag", "flag: Libya" - ], - "value" : "🇱🇾" + ] }, "🇲🇦", { - "value" : "🇲🇦", "keywords" : [ "flag", "flag: Morocco" - ] + ], + "value" : "🇲🇦" }, "🇲🇨", { + "value" : "🇲🇨", "keywords" : [ "flag", "flag: Monaco" - ], - "value" : "🇲🇨" + ] }, "🇲🇩", { @@ -1264,59 +1265,59 @@ }, "🇲🇪", { - "value" : "🇲🇪", "keywords" : [ "flag", "flag: Montenegro" - ] + ], + "value" : "🇲🇪" }, "🇲🇫", { - "value" : "🇲🇫", "keywords" : [ "flag", "flag: St. Martin" - ] + ], + "value" : "🇲🇫" }, "🇲🇬", { + "value" : "🇲🇬", "keywords" : [ "flag", "flag: Madagascar" - ], - "value" : "🇲🇬" + ] }, "🇲🇭", { - "value" : "🇲🇭", "keywords" : [ "flag", "flag: Marshall Islands" - ] + ], + "value" : "🇲🇭" }, "🇲🇰", { - "value" : "🇲🇰", "keywords" : [ "flag", "flag: North Macedonia" - ] + ], + "value" : "🇲🇰" }, "🇲🇱", { + "value" : "🇲🇱", "keywords" : [ "flag", "flag: Mali" - ], - "value" : "🇲🇱" + ] }, "🇲🇲", { - "value" : "🇲🇲", "keywords" : [ "flag", "flag: Myanmar (Burma)" - ] + ], + "value" : "🇲🇲" }, "🇲🇳", { @@ -1336,11 +1337,11 @@ }, "🇲🇵", { - "value" : "🇲🇵", "keywords" : [ "flag", "flag: Northern Mariana Islands" - ] + ], + "value" : "🇲🇵" }, "🇲🇶", { @@ -1376,11 +1377,11 @@ }, "🇲🇺", { + "value" : "🇲🇺", "keywords" : [ "flag", "flag: Mauritius" - ], - "value" : "🇲🇺" + ] }, "🇲🇻", { @@ -1392,11 +1393,11 @@ }, "🇲🇼", { - "value" : "🇲🇼", "keywords" : [ "flag", "flag: Malawi" - ] + ], + "value" : "🇲🇼" }, "🇲🇽", { @@ -1424,51 +1425,51 @@ }, "🇳🇦", { + "value" : "🇳🇦", "keywords" : [ "flag", "flag: Namibia" - ], - "value" : "🇳🇦" + ] }, "🇳🇨", { + "value" : "🇳🇨", "keywords" : [ "flag", "flag: New Caledonia" - ], - "value" : "🇳🇨" + ] }, "🇳🇪", { + "value" : "🇳🇪", "keywords" : [ "flag", "flag: Niger" - ], - "value" : "🇳🇪" + ] }, "🇳🇫", { + "value" : "🇳🇫", "keywords" : [ "flag", "flag: Norfolk Island" - ], - "value" : "🇳🇫" + ] }, "🇳🇬", { - "value" : "🇳🇬", "keywords" : [ "flag", "flag: Nigeria" - ] + ], + "value" : "🇳🇬" }, "🇳🇮", { + "value" : "🇳🇮", "keywords" : [ "flag", "flag: Nicaragua" - ], - "value" : "🇳🇮" + ] }, "🇳🇱", { @@ -1504,27 +1505,27 @@ }, "🇳🇺", { + "value" : "🇳🇺", "keywords" : [ "flag", "flag: Niue" - ], - "value" : "🇳🇺" + ] }, "🇳🇿", { + "value" : "🇳🇿", "keywords" : [ "flag", "flag: New Zealand" - ], - "value" : "🇳🇿" + ] }, "🇴🇲", { + "value" : "🇴🇲", "keywords" : [ "flag", "flag: Oman" - ], - "value" : "🇴🇲" + ] }, "🇵🇦", { @@ -1544,19 +1545,19 @@ }, "🇵🇫", { + "value" : "🇵🇫", "keywords" : [ "flag", "flag: French Polynesia" - ], - "value" : "🇵🇫" + ] }, "🇵🇬", { + "value" : "🇵🇬", "keywords" : [ "flag", "flag: Papua New Guinea" - ], - "value" : "🇵🇬" + ] }, "🇵🇭", { @@ -1568,19 +1569,19 @@ }, "🇵🇰", { + "value" : "🇵🇰", "keywords" : [ "flag", "flag: Pakistan" - ], - "value" : "🇵🇰" + ] }, "🇵🇱", { - "value" : "🇵🇱", "keywords" : [ "flag", "flag: Poland" - ] + ], + "value" : "🇵🇱" }, "🇵🇲", { @@ -1592,11 +1593,11 @@ }, "🇵🇳", { - "value" : "🇵🇳", "keywords" : [ "flag", "flag: Pitcairn Islands" - ] + ], + "value" : "🇵🇳" }, "🇵🇷", { @@ -1640,19 +1641,19 @@ }, "🇶🇦", { + "value" : "🇶🇦", "keywords" : [ "flag", "flag: Qatar" - ], - "value" : "🇶🇦" + ] }, "🇷🇪", { - "value" : "🇷🇪", "keywords" : [ "flag", "flag: Réunion" - ] + ], + "value" : "🇷🇪" }, "🇷🇴", { @@ -1704,19 +1705,19 @@ }, "🇸🇨", { - "value" : "🇸🇨", "keywords" : [ "flag", "flag: Seychelles" - ] + ], + "value" : "🇸🇨" }, "🇸🇩", { + "value" : "🇸🇩", "keywords" : [ "flag", "flag: Sudan" - ], - "value" : "🇸🇩" + ] }, "🇸🇪", { @@ -1728,19 +1729,19 @@ }, "🇸🇬", { - "value" : "🇸🇬", "keywords" : [ "flag", "flag: Singapore" - ] + ], + "value" : "🇸🇬" }, "🇸🇭", { + "value" : "🇸🇭", "keywords" : [ "flag", "flag: St. Helena" - ], - "value" : "🇸🇭" + ] }, "🇸🇮", { @@ -1752,19 +1753,19 @@ }, "🇸🇯", { + "value" : "🇸🇯", "keywords" : [ "flag", "flag: Svalbard&Jan Mayen" - ], - "value" : "🇸🇯" + ] }, "🇸🇰", { + "value" : "🇸🇰", "keywords" : [ "flag", "flag: Slovakia" - ], - "value" : "🇸🇰" + ] }, "🇸🇱", { @@ -1800,27 +1801,27 @@ }, "🇸🇷", { - "value" : "🇸🇷", "keywords" : [ "flag", "flag: Suriname" - ] + ], + "value" : "🇸🇷" }, "🇸🇸", { + "value" : "🇸🇸", "keywords" : [ "flag", "flag: South Sudan" - ], - "value" : "🇸🇸" + ] }, "🇸🇹", { - "value" : "🇸🇹", "keywords" : [ "flag", "flag: São Tomé&Príncipe" - ] + ], + "value" : "🇸🇹" }, "🇸🇻", { @@ -1832,11 +1833,11 @@ }, "🇸🇽", { + "value" : "🇸🇽", "keywords" : [ "flag", "flag: Sint Maarten" - ], - "value" : "🇸🇽" + ] }, "🇸🇾", { @@ -1848,11 +1849,11 @@ }, "🇸🇿", { - "value" : "🇸🇿", "keywords" : [ "flag", "flag: Eswatini" - ] + ], + "value" : "🇸🇿" }, "🇹🇦", { @@ -1880,11 +1881,11 @@ }, "🇹🇫", { - "value" : "🇹🇫", "keywords" : [ "flag", "flag: French Southern Territories" - ] + ], + "value" : "🇹🇫" }, "🇹🇬", { @@ -1896,51 +1897,51 @@ }, "🇹🇭", { + "value" : "🇹🇭", "keywords" : [ "flag", "flag: Thailand" - ], - "value" : "🇹🇭" + ] }, "🇹🇯", { - "value" : "🇹🇯", "keywords" : [ "flag", "flag: Tajikistan" - ] + ], + "value" : "🇹🇯" }, "🇹🇰", { + "value" : "🇹🇰", "keywords" : [ "flag", "flag: Tokelau" - ], - "value" : "🇹🇰" + ] }, "🇹🇱", { + "value" : "🇹🇱", "keywords" : [ "flag", "flag: Timor-Leste" - ], - "value" : "🇹🇱" + ] }, "🇹🇲", { + "value" : "🇹🇲", "keywords" : [ "flag", "flag: Turkmenistan" - ], - "value" : "🇹🇲" + ] }, "🇹🇳", { + "value" : "🇹🇳", "keywords" : [ "flag", "flag: Tunisia" - ], - "value" : "🇹🇳" + ] }, "🇹🇴", { @@ -1952,11 +1953,11 @@ }, "🇹🇷", { + "value" : "🇹🇷", "keywords" : [ "flag", "flag: Türkiye" - ], - "value" : "🇹🇷" + ] }, "🇹🇹", { @@ -1968,11 +1969,11 @@ }, "🇹🇻", { - "value" : "🇹🇻", "keywords" : [ "flag", "flag: Tuvalu" - ] + ], + "value" : "🇹🇻" }, "🇹🇼", { @@ -2000,19 +2001,19 @@ }, "🇺🇬", { + "value" : "🇺🇬", "keywords" : [ "flag", "flag: Uganda" - ], - "value" : "🇺🇬" + ] }, "🇺🇲", { + "value" : "🇺🇲", "keywords" : [ "flag", "flag: U.S. Outlying Islands" - ], - "value" : "🇺🇲" + ] }, "🇺🇳", { @@ -2032,11 +2033,11 @@ }, "🇺🇾", { - "value" : "🇺🇾", "keywords" : [ "flag", "flag: Uruguay" - ] + ], + "value" : "🇺🇾" }, "🇺🇿", { @@ -2048,11 +2049,11 @@ }, "🇻🇦", { - "value" : "🇻🇦", "keywords" : [ "flag", "flag: Vatican City" - ] + ], + "value" : "🇻🇦" }, "🇻🇨", { @@ -2064,59 +2065,59 @@ }, "🇻🇪", { - "value" : "🇻🇪", "keywords" : [ "flag", "flag: Venezuela" - ] + ], + "value" : "🇻🇪" }, "🇻🇬", { - "value" : "🇻🇬", "keywords" : [ "flag", "flag: British Virgin Islands" - ] + ], + "value" : "🇻🇬" }, "🇻🇮", { - "value" : "🇻🇮", "keywords" : [ "flag", "flag: U.S. Virgin Islands" - ] + ], + "value" : "🇻🇮" }, "🇻🇳", { - "value" : "🇻🇳", "keywords" : [ "flag", "flag: Vietnam" - ] + ], + "value" : "🇻🇳" }, "🇻🇺", { - "value" : "🇻🇺", "keywords" : [ "flag", "flag: Vanuatu" - ] + ], + "value" : "🇻🇺" }, "🇼🇫", { + "value" : "🇼🇫", "keywords" : [ "flag", "flag: Wallis&Futuna" - ], - "value" : "🇼🇫" + ] }, "🇼🇸", { - "value" : "🇼🇸", "keywords" : [ "flag", "flag: Samoa" - ] + ], + "value" : "🇼🇸" }, "🇽🇰", { @@ -2136,19 +2137,19 @@ }, "🇾🇹", { + "value" : "🇾🇹", "keywords" : [ "flag", "flag: Mayotte" - ], - "value" : "🇾🇹" + ] }, "🇿🇦", { - "value" : "🇿🇦", "keywords" : [ "flag", "flag: South Africa" - ] + ], + "value" : "🇿🇦" }, "🇿🇲", { @@ -2160,45 +2161,44 @@ }, "🇿🇼", { + "value" : "🇿🇼", "keywords" : [ "flag", "flag: Zimbabwe" - ], - "value" : "🇿🇼" + ] }, "🏴󠁧󠁢󠁥󠁮󠁧󠁿", { + "value" : "🏴󠁧󠁢󠁥󠁮󠁧󠁿", "keywords" : [ "flag", "flag: England" - ], - "value" : "🏴󠁧󠁢󠁥󠁮󠁧󠁿" + ] }, "🏴󠁧󠁢󠁳󠁣󠁴󠁿", { + "value" : "🏴󠁧󠁢󠁳󠁣󠁴󠁿", "keywords" : [ "flag", "flag: Scotland" - ], - "value" : "🏴󠁧󠁢󠁳󠁣󠁴󠁿" + ] }, "🏴󠁧󠁢󠁷󠁬󠁳󠁿", { + "value" : "🏴󠁧󠁢󠁷󠁬󠁳󠁿", "keywords" : [ "flag", "flag: Wales" - ], - "value" : "🏴󠁧󠁢󠁷󠁬󠁳󠁿" + ] } ], - "name" : "Flags", - "appleCategory" : "Flags" + "appleCategory" : "flags" }, { + "appleCategory" : "activity", "emojis" : [ "🎃", { - "value" : "🎃", "keywords" : [ "celebration", "halloween", @@ -2206,16 +2206,17 @@ "jack-o-lantern", "lantern", "pumpkin" - ] + ], + "value" : "🎃" }, "🎄", { - "value" : "🎄", "keywords" : [ "celebration", "Christmas", "tree" - ] + ], + "value" : "🎄" }, "🎆", { @@ -2230,17 +2231,18 @@ }, "🎇", { + "value" : "🎇", "keywords" : [ "boom", "celebration", "fireworks", "sparkle", "sparkler" - ], - "value" : "🎇" + ] }, "🧨", { + "value" : "🧨", "keywords" : [ "dynamite", "explosive", @@ -2251,8 +2253,7 @@ "pop", "popping", "spark" - ], - "value" : "🧨" + ] }, "✨", { @@ -2267,17 +2268,16 @@ }, "🎈", { - "value" : "🎈", "keywords" : [ "balloon", "birthday", "celebrate", "celebration" - ] + ], + "value" : "🎈" }, "🎉", { - "value" : "🎉", "keywords" : [ "awesome", "birthday", @@ -2289,10 +2289,12 @@ "popper", "tada", "woohoo" - ] + ], + "value" : "🎉" }, "🎊", { + "value" : "🎊", "keywords" : [ "ball", "celebrate", @@ -2300,22 +2302,22 @@ "confetti", "party", "woohoo" - ], - "value" : "🎊" + ] }, "🎋", { + "value" : "🎋", "keywords" : [ "banner", "celebration", "Japanese", "tanabata", "tree" - ], - "value" : "🎋" + ] }, "🎍", { + "value" : "🎍", "keywords" : [ "bamboo", "celebration", @@ -2323,28 +2325,27 @@ "Japanese", "pine", "plant" - ], - "value" : "🎍" + ] }, "🎎", { + "value" : "🎎", "keywords" : [ "celebration", "doll", "dolls", "festival", "Japanese" - ], - "value" : "🎎" + ] }, "🎏", { + "value" : "🎏", "keywords" : [ "carp", "celebration", "streamer" - ], - "value" : "🎏" + ] }, "🎐", { @@ -2358,13 +2359,13 @@ }, "🎑", { - "value" : "🎑", "keywords" : [ "celebration", "ceremony", "moon", "viewing" - ] + ], + "value" : "🎑" }, "🧧", { @@ -2406,12 +2407,12 @@ }, "🎗️", { - "value" : "🎗️", "keywords" : [ "celebration", "reminder", "ribbon" - ] + ], + "value" : "🎗️" }, "🎟️", { @@ -2433,13 +2434,13 @@ }, "🎖️", { + "value" : "🎖️", "keywords" : [ "award", "celebration", "medal", "military" - ], - "value" : "🎖️" + ] }, "🏆", { @@ -2458,25 +2459,25 @@ }, "🏅", { - "value" : "🏅", "keywords" : [ "award", "gold", "medal", "sports", "winner" - ] + ], + "value" : "🏅" }, "🥇", { - "value" : "🥇", "keywords" : [ "1st", "first", "gold", "medal", "place" - ] + ], + "value" : "🥇" }, "🥈", { @@ -2522,24 +2523,24 @@ }, "🥎", { + "value" : "🥎", "keywords" : [ "ball", "glove", "softball", "sports", "underarm" - ], - "value" : "🥎" + ] }, "🏀", { + "value" : "🏀", "keywords" : [ "ball", "basketball", "hoop", "sport" - ], - "value" : "🏀" + ] }, "🏐", { @@ -2636,18 +2637,17 @@ }, "🥍", { - "value" : "🥍", "keywords" : [ "ball", "goal", "lacrosse", "sports", "stick" - ] + ], + "value" : "🥍" }, "🏓", { - "value" : "🏓", "keywords" : [ "ball", "bat", @@ -2658,7 +2658,8 @@ "pong", "table", "tennis" - ] + ], + "value" : "🏓" }, "🏸", { @@ -2681,6 +2682,7 @@ }, "🥋", { + "value" : "🥋", "keywords" : [ "arts", "judo", @@ -2688,8 +2690,7 @@ "martial", "taekwondo", "uniform" - ], - "value" : "🥋" + ] }, "🥅", { @@ -2711,12 +2712,12 @@ }, "⛸️", { + "value" : "⛸️", "keywords" : [ "ice", "skate", "skating" - ], - "value" : "⛸️" + ] }, "🎣", { @@ -2731,13 +2732,13 @@ }, "🤿", { - "value" : "🤿", "keywords" : [ "diving", "mask", "scuba", "snorkeling" - ] + ], + "value" : "🤿" }, "🎽", { @@ -2751,13 +2752,13 @@ }, "🎿", { + "value" : "🎿", "keywords" : [ "ski", "skis", "snow", "sport" - ], - "value" : "🎿" + ] }, "🛷", { @@ -2783,6 +2784,7 @@ }, "🎯", { + "value" : "🎯", "keywords" : [ "bull", "bullseye", @@ -2792,17 +2794,16 @@ "game", "hit", "target" - ], - "value" : "🎯" + ] }, "🪀", { - "value" : "🪀", "keywords" : [ "fluctuate", "toy", "yo-yo" - ] + ], + "value" : "🪀" }, "🪁", { @@ -2815,6 +2816,7 @@ }, "🎱", { + "value" : "🎱", "keywords" : [ "8", "8ball", @@ -2823,8 +2825,7 @@ "eight", "game", "pool" - ], - "value" : "🎱" + ] }, "🔮", { @@ -2855,6 +2856,7 @@ }, "🧿", { + "value" : "🧿", "keywords" : [ "amulet", "bead", @@ -2863,8 +2865,7 @@ "evil-eye", "nazar", "talisman" - ], - "value" : "🧿" + ] }, "🪬", { @@ -2885,26 +2886,27 @@ }, "🎮", { + "value" : "🎮", "keywords" : [ "controller", "entertainment", "game", "video" - ], - "value" : "🎮" + ] }, "🕹️", { + "value" : "🕹️", "keywords" : [ "game", "joystick", "video", "videogame" - ], - "value" : "🕹️" + ] }, "🎰", { + "value" : "🎰", "keywords" : [ "casino", "gamble", @@ -2913,18 +2915,17 @@ "machine", "slot", "slots" - ], - "value" : "🎰" + ] }, "🎲", { - "value" : "🎲", "keywords" : [ "dice", "die", "entertainment", "game" - ] + ], + "value" : "🎲" }, "🧩", { @@ -2951,6 +2952,7 @@ }, "🪅", { + "value" : "🪅", "keywords" : [ "candy", "celebrate", @@ -2963,8 +2965,7 @@ "pinada", "pinata", "piñata" - ], - "value" : "🪅" + ] }, "🪩", { @@ -3004,6 +3005,7 @@ }, "♥️", { + "value" : "♥️", "keywords" : [ "card", "emotion", @@ -3011,49 +3013,48 @@ "heart", "hearts", "suit" - ], - "value" : "♥️" + ] }, "♦️", { - "value" : "♦️", "keywords" : [ "card", "diamond", "game", "suit" - ] + ], + "value" : "♦️" }, "♣️", { + "value" : "♣️", "keywords" : [ "card", "club", "clubs", "game", "suit" - ], - "value" : "♣️" + ] }, "♟️", { + "value" : "♟️", "keywords" : [ "chess", "dupe", "expendable", "pawn" - ], - "value" : "♟️" + ] }, "🃏", { - "value" : "🃏", "keywords" : [ "card", "game", "joker", "wildcard" - ] + ], + "value" : "🃏" }, "🀄", { @@ -3095,7 +3096,6 @@ }, "🖼️", { - "value" : "🖼️", "keywords" : [ "art", "frame", @@ -3103,7 +3103,8 @@ "museum", "painting", "picture" - ] + ], + "value" : "🖼️" }, "🎨", { @@ -3159,6 +3160,7 @@ }, "🪢", { + "value" : "🪢", "keywords" : [ "cord", "knot", @@ -3167,25 +3169,23 @@ "tie", "twine", "twist" - ], - "value" : "🪢" + ] } ], - "name" : "Activities", - "appleCategory" : "Activity" + "name" : "Activities" }, { "emojis" : [ "🏻", { + "value" : "🏻", "keywords" : [ "1–2", "light", "skin", "tone", "type" - ], - "value" : "🏻" + ] }, "🏼", { @@ -3222,47 +3222,48 @@ }, "🏿", { - "value" : "🏿", "keywords" : [ "6", "dark", "skin", "tone", "type" - ] + ], + "value" : "🏿" }, "🦰", { + "value" : "🦰", "keywords" : [ "ginger", "hair", "red", "redhead" - ], - "value" : "🦰" + ] }, "🦱", { - "value" : "🦱", "keywords" : [ "afro", "curly", "hair", "ringlets" - ] + ], + "value" : "🦱" }, "🦳", { + "value" : "🦳", "keywords" : [ "gray", "hair", "old", "white" - ], - "value" : "🦳" + ] }, "🦲", { + "value" : "🦲", "keywords" : [ "bald", "chemotherapy", @@ -3270,14 +3271,13 @@ "hairless", "no", "shaven" - ], - "value" : "🦲" + ] } ], "name" : "Component" }, { - "appleCategory" : "Objects", + "name" : "Objects", "emojis" : [ "👓", { @@ -3331,16 +3331,15 @@ }, "🦺", { - "value" : "🦺", "keywords" : [ "emergency", "safety", "vest" - ] + ], + "value" : "🦺" }, "👔", { - "value" : "👔", "keywords" : [ "clothing", "employed", @@ -3348,10 +3347,12 @@ "serious", "shirt", "tie" - ] + ], + "value" : "👔" }, "👕", { + "value" : "👕", "keywords" : [ "blue", "casual", @@ -3364,11 +3365,11 @@ "t-shirt", "tshirt", "weekend" - ], - "value" : "👕" + ] }, "👖", { + "value" : "👖", "keywords" : [ "blue", "casual", @@ -3381,8 +3382,7 @@ "shopping", "trousers", "weekend" - ], - "value" : "👖" + ] }, "🧣", { @@ -3437,12 +3437,12 @@ }, "👘", { - "value" : "👘", "keywords" : [ "clothing", "comfortable", "kimono" - ] + ], + "value" : "👘" }, "🥻", { @@ -3465,6 +3465,7 @@ }, "🩲", { + "value" : "🩲", "keywords" : [ "bathing", "briefs", @@ -3472,12 +3473,10 @@ "suit", "swimsuit", "underwear" - ], - "value" : "🩲" + ] }, "🩳", { - "value" : "🩳", "keywords" : [ "bathing", "pants", @@ -3485,11 +3484,11 @@ "suit", "swimsuit", "underwear" - ] + ], + "value" : "🩳" }, "👙", { - "value" : "👙", "keywords" : [ "bathing", "beach", @@ -3498,11 +3497,11 @@ "pool", "suit", "swim" - ] + ], + "value" : "👙" }, "👚", { - "value" : "👚", "keywords" : [ "blouse", "clothes", @@ -3515,7 +3514,8 @@ "shopping", "woman", "woman’s" - ] + ], + "value" : "👚" }, "👛", { @@ -3533,7 +3533,6 @@ }, "👜", { - "value" : "👜", "keywords" : [ "bag", "clothes", @@ -3543,10 +3542,12 @@ "lady", "purse", "shopping" - ] + ], + "value" : "👜" }, "👝", { + "value" : "👝", "keywords" : [ "bag", "clothes", @@ -3556,8 +3557,7 @@ "handbag", "pouch", "purse" - ], - "value" : "👝" + ] }, "🛍️", { @@ -3571,6 +3571,7 @@ }, "🎒", { + "value" : "🎒", "keywords" : [ "backpack", "backpacking", @@ -3580,8 +3581,7 @@ "rucksack", "satchel", "school" - ], - "value" : "🎒" + ] }, "🩴", { @@ -3634,6 +3634,7 @@ }, "🥾", { + "value" : "🥾", "keywords" : [ "backpacking", "boot", @@ -3642,8 +3643,7 @@ "hiking", "outdoors", "shoe" - ], - "value" : "🥾" + ] }, "🥿", { @@ -3660,7 +3660,6 @@ }, "👠", { - "value" : "👠", "keywords" : [ "clothes", "clothing", @@ -3674,7 +3673,8 @@ "shopping", "stiletto", "woman" - ] + ], + "value" : "👠" }, "👡", { @@ -3689,12 +3689,12 @@ }, "🩰", { - "value" : "🩰", "keywords" : [ "ballet", "dance", "shoes" - ] + ], + "value" : "🩰" }, "👢", { @@ -3781,7 +3781,6 @@ }, "🪖", { - "value" : "🪖", "keywords" : [ "army", "helmet", @@ -3789,11 +3788,11 @@ "soldier", "war", "warrior" - ] + ], + "value" : "🪖" }, "⛑️", { - "value" : "⛑️", "keywords" : [ "aid", "cross", @@ -3802,28 +3801,29 @@ "helmet", "rescue", "worker’s" - ] + ], + "value" : "⛑️" }, "📿", { + "value" : "📿", "keywords" : [ "beads", "clothing", "necklace", "prayer", "religion" - ], - "value" : "📿" + ] }, "💄", { - "value" : "💄", "keywords" : [ "cosmetics", "date", "lipstick", "makeup" - ] + ], + "value" : "💄" }, "💍", { @@ -3842,6 +3842,7 @@ }, "💎", { + "value" : "💎", "keywords" : [ "diamond", "engagement", @@ -3851,8 +3852,7 @@ "romance", "stone", "wedding" - ], - "value" : "💎" + ] }, "🔇", { @@ -3868,24 +3868,24 @@ }, "🔈", { + "value" : "🔈", "keywords" : [ "low", "soft", "sound", "speaker", "volume" - ], - "value" : "🔈" + ] }, "🔉", { - "value" : "🔉", "keywords" : [ "medium", "sound", "speaker", "volume" - ] + ], + "value" : "🔉" }, "🔊", { @@ -3931,13 +3931,13 @@ }, "🔔", { + "value" : "🔔", "keywords" : [ "bell", "break", "church", "sound" - ], - "value" : "🔔" + ] }, "🔕", { @@ -3957,34 +3957,34 @@ }, "🎼", { - "value" : "🎼", "keywords" : [ "music", "musical", "note", "score" - ] + ], + "value" : "🎼" }, "🎵", { + "value" : "🎵", "keywords" : [ "music", "musical", "note", "sound" - ], - "value" : "🎵" + ] }, "🎶", { - "value" : "🎶", "keywords" : [ "music", "musical", "note", "notes", "sound" - ] + ], + "value" : "🎶" }, "🎙️", { @@ -4007,16 +4007,15 @@ }, "🎛️", { - "value" : "🎛️", "keywords" : [ "control", "knobs", "music" - ] + ], + "value" : "🎛️" }, "🎤", { - "value" : "🎤", "keywords" : [ "karaoke", "mic", @@ -4024,39 +4023,41 @@ "music", "sing", "sound" - ] + ], + "value" : "🎤" }, "🎧", { + "value" : "🎧", "keywords" : [ "earbud", "headphone", "sound" - ], - "value" : "🎧" + ] }, "📻", { + "value" : "📻", "keywords" : [ "entertainment", "radio", "tbt", "video" - ], - "value" : "📻" + ] }, "🎷", { + "value" : "🎷", "keywords" : [ "instrument", "music", "sax", "saxophone" - ], - "value" : "🎷" + ] }, "🪗", { + "value" : "🪗", "keywords" : [ "accordion", "box", @@ -4065,18 +4066,17 @@ "music", "squeeze", "squeezebox" - ], - "value" : "🪗" + ] }, "🎸", { + "value" : "🎸", "keywords" : [ "guitar", "instrument", "music", "strat" - ], - "value" : "🎸" + ] }, "🎹", { @@ -4109,21 +4109,21 @@ }, "🪕", { + "value" : "🪕", "keywords" : [ "banjo", "music", "stringed" - ], - "value" : "🪕" + ] }, "🥁", { - "value" : "🥁", "keywords" : [ "drum", "drumsticks", "music" - ] + ], + "value" : "🥁" }, "🪘", { @@ -4139,14 +4139,14 @@ }, "📱", { + "value" : "📱", "keywords" : [ "cell", "communication", "mobile", "phone", "telephone" - ], - "value" : "📱" + ] }, "📲", { @@ -4192,12 +4192,12 @@ }, "📠", { - "value" : "📠", "keywords" : [ "communication", "fax", "machine" - ] + ], + "value" : "📠" }, "🔋", { @@ -4208,7 +4208,6 @@ }, "🪫", { - "value" : "🪫", "keywords" : [ "battery", "drained", @@ -4216,7 +4215,8 @@ "energy", "low", "power" - ] + ], + "value" : "🪫" }, "🔌", { @@ -4265,29 +4265,29 @@ }, "🖱️", { + "value" : "🖱️", "keywords" : [ "computer", "mouse" - ], - "value" : "🖱️" + ] }, "🖲️", { - "value" : "🖲️", "keywords" : [ "computer", "trackball" - ] + ], + "value" : "🖲️" }, "💽", { + "value" : "💽", "keywords" : [ "computer", "disk", "minidisk", "optical" - ], - "value" : "💽" + ] }, "💾", { @@ -4300,7 +4300,6 @@ }, "💿", { - "value" : "💿", "keywords" : [ "blu-ray", "CD", @@ -4308,7 +4307,8 @@ "disk", "dvd", "optical" - ] + ], + "value" : "💿" }, "📀", { @@ -4356,24 +4356,24 @@ }, "📽️", { + "value" : "📽️", "keywords" : [ "cinema", "film", "movie", "projector", "video" - ], - "value" : "📽️" + ] }, "🎬", { + "value" : "🎬", "keywords" : [ "action", "board", "clapper", "movie" - ], - "value" : "🎬" + ] }, "📺", { @@ -4386,6 +4386,7 @@ }, "📷", { + "value" : "📷", "keywords" : [ "camera", "photo", @@ -4394,17 +4395,16 @@ "tbt", "trip", "video" - ], - "value" : "📷" + ] }, "📸", { - "value" : "📸", "keywords" : [ "camera", "flash", "video" - ] + ], + "value" : "📸" }, "📹", { @@ -4431,7 +4431,6 @@ }, "🔍", { - "value" : "🔍", "keywords" : [ "glass", "lab", @@ -4442,10 +4441,12 @@ "search", "tilted", "tool" - ] + ], + "value" : "🔍" }, "🔎", { + "value" : "🔎", "keywords" : [ "contact", "glass", @@ -4457,27 +4458,26 @@ "search", "tilted", "tool" - ], - "value" : "🔎" + ] }, "🕯️", { + "value" : "🕯️", "keywords" : [ "candle", "light" - ], - "value" : "🕯️" + ] }, "💡", { - "value" : "💡", "keywords" : [ "bulb", "comic", "electric", "idea", "light" - ] + ], + "value" : "💡" }, "🔦", { @@ -4504,16 +4504,17 @@ }, "🪔", { + "value" : "🪔", "keywords" : [ "diya", "lamp", "oil", "light" - ], - "value" : "🪔" + ] }, "📔", { + "value" : "📔", "keywords" : [ "book", "cover", @@ -4523,8 +4524,7 @@ "notebook", "school", "writing" - ], - "value" : "📔" + ] }, "📕", { @@ -4563,7 +4563,6 @@ }, "📘", { - "value" : "📘", "keywords" : [ "blue", "book", @@ -4571,7 +4570,8 @@ "fantasy", "library", "reading" - ] + ], + "value" : "📘" }, "📙", { @@ -4587,6 +4587,7 @@ }, "📚", { + "value" : "📚", "keywords" : [ "book", "books", @@ -4598,8 +4599,7 @@ "reading", "school", "study" - ], - "value" : "📚" + ] }, "📓", { @@ -4610,11 +4610,11 @@ }, "📒", { + "value" : "📒", "keywords" : [ "ledger", "notebook" - ], - "value" : "📒" + ] }, "📃", { @@ -4628,11 +4628,11 @@ }, "📜", { + "value" : "📜", "keywords" : [ "paper", "scroll" - ], - "value" : "📜" + ] }, "📄", { @@ -4657,24 +4657,24 @@ }, "🗞️", { - "value" : "🗞️", "keywords" : [ "news", "newspaper", "paper", "rolled", "rolled-up" - ] + ], + "value" : "🗞️" }, "📑", { + "value" : "📑", "keywords" : [ "bookmark", "mark", "marker", "tabs" - ], - "value" : "📑" + ] }, "🔖", { @@ -4757,7 +4757,6 @@ }, "💶", { - "value" : "💶", "keywords" : [ "100", "bank", @@ -4768,11 +4767,11 @@ "money", "note", "rich" - ] + ], + "value" : "💶" }, "💷", { - "value" : "💷", "keywords" : [ "bank", "banknote", @@ -4784,7 +4783,8 @@ "note", "pound", "pounds" - ] + ], + "value" : "💷" }, "💸", { @@ -4806,7 +4806,6 @@ }, "💳", { - "value" : "💳", "keywords" : [ "bank", "card", @@ -4815,11 +4814,11 @@ "credit", "money", "pay" - ] + ], + "value" : "💳" }, "🧾", { - "value" : "🧾", "keywords" : [ "accounting", "bookkeeping", @@ -4827,7 +4826,8 @@ "invoice", "proof", "receipt" - ] + ], + "value" : "🧾" }, "💹", { @@ -4859,13 +4859,13 @@ }, "📧", { - "value" : "📧", "keywords" : [ "e-mail", "email", "letter", "mail" - ] + ], + "value" : "📧" }, "📨", { @@ -4914,6 +4914,7 @@ }, "📥", { + "value" : "📥", "keywords" : [ "box", "email", @@ -4923,11 +4924,11 @@ "receive", "tray", "zero" - ], - "value" : "📥" + ] }, "📦", { + "value" : "📦", "keywords" : [ "box", "communication", @@ -4935,8 +4936,7 @@ "package", "parcel", "shipping" - ], - "value" : "📦" + ] }, "📫", { @@ -4953,7 +4953,6 @@ }, "📪", { - "value" : "📪", "keywords" : [ "closed", "flag", @@ -4961,7 +4960,8 @@ "mail", "mailbox", "postbox" - ] + ], + "value" : "📪" }, "📬", { @@ -4977,6 +4977,7 @@ }, "📭", { + "value" : "📭", "keywords" : [ "flag", "lowered", @@ -4984,17 +4985,16 @@ "mailbox", "open", "postbox" - ], - "value" : "📭" + ] }, "📮", { - "value" : "📮", "keywords" : [ "mail", "mailbox", "postbox" - ] + ], + "value" : "📮" }, "🗳️", { @@ -5006,35 +5006,35 @@ }, "✏️", { - "value" : "✏️", "keywords" : [ "pencil" - ] + ], + "value" : "✏️" }, "✒️", { + "value" : "✒️", "keywords" : [ "black", "nib", "pen" - ], - "value" : "✒️" + ] }, "🖋️", { + "value" : "🖋️", "keywords" : [ "fountain", "pen" - ], - "value" : "🖋️" + ] }, "🖊️", { - "value" : "🖊️", "keywords" : [ "ballpoint", "pen" - ] + ], + "value" : "🖊️" }, "🖌️", { @@ -5046,21 +5046,21 @@ }, "🖍️", { - "value" : "🖍️", "keywords" : [ "crayon" - ] + ], + "value" : "🖍️" }, "📝", { + "value" : "📝", "keywords" : [ "communication", "media", "memo", "notes", "pencil" - ], - "value" : "📝" + ] }, "💼", { @@ -5089,47 +5089,47 @@ }, "🗂️", { + "value" : "🗂️", "keywords" : [ "card", "dividers", "index" - ], - "value" : "🗂️" + ] }, "📅", { + "value" : "📅", "keywords" : [ "calendar", "date" - ], - "value" : "📅" + ] }, "📆", { - "value" : "📆", "keywords" : [ "calendar", "tear-off" - ] + ], + "value" : "📆" }, "🗒️", { + "value" : "🗒️", "keywords" : [ "note", "notepad", "pad", "spiral" - ], - "value" : "🗒️" + ] }, "🗓️", { - "value" : "🗓️", "keywords" : [ "calendar", "pad", "spiral" - ] + ], + "value" : "🗓️" }, "📇", { @@ -5159,7 +5159,6 @@ }, "📉", { - "value" : "📉", "keywords" : [ "chart", "data", @@ -5169,17 +5168,18 @@ "graph", "negative", "trend" - ] + ], + "value" : "📉" }, "📊", { + "value" : "📊", "keywords" : [ "bar", "chart", "data", "graph" - ], - "value" : "📊" + ] }, "📋", { @@ -5193,12 +5193,12 @@ }, "📌", { - "value" : "📌", "keywords" : [ "collage", "pin", "pushpin" - ] + ], + "value" : "📌" }, "📍", { @@ -5220,17 +5220,16 @@ }, "🖇️", { - "value" : "🖇️", "keywords" : [ "link", "linked", "paperclip", "paperclips" - ] + ], + "value" : "🖇️" }, "📏", { - "value" : "📏", "keywords" : [ "angle", "edge", @@ -5238,11 +5237,11 @@ "ruler", "straight", "straightedge" - ] + ], + "value" : "📏" }, "📐", { - "value" : "📐", "keywords" : [ "angle", "math", @@ -5252,27 +5251,28 @@ "slide", "triangle", "triangular" - ] + ], + "value" : "📐" }, "✂️", { - "value" : "✂️", "keywords" : [ "cut", "cutting", "paper", "scissors", "tool" - ] + ], + "value" : "✂️" }, "🗃️", { - "value" : "🗃️", "keywords" : [ "box", "card", "file" - ] + ], + "value" : "🗃️" }, "🗄️", { @@ -5286,14 +5286,14 @@ }, "🗑️", { + "value" : "🗑️", "keywords" : [ "wastebasket", "trash", "can", "waste", "garbage" - ], - "value" : "🗑️" + ] }, "🔒", { @@ -5318,6 +5318,7 @@ }, "🔏", { + "value" : "🔏", "keywords" : [ "ink", "lock", @@ -5325,8 +5326,7 @@ "nib", "pen", "privacy" - ], - "value" : "🔏" + ] }, "🔐", { @@ -5354,13 +5354,13 @@ }, "🗝️", { + "value" : "🗝️", "keywords" : [ "clue", "key", "lock", "old" - ], - "value" : "🗝️" + ] }, "🔨", { @@ -5375,7 +5375,6 @@ }, "🪓", { - "value" : "🪓", "keywords" : [ "ax", "axe", @@ -5383,57 +5382,59 @@ "hatchet", "split", "wood" - ] + ], + "value" : "🪓" }, "⛏️", { - "value" : "⛏️", "keywords" : [ "hammer", "mining", "pick", "tool" - ] + ], + "value" : "⛏️" }, "⚒️", { - "value" : "⚒️", "keywords" : [ "hammer", "pick", "tool" - ] + ], + "value" : "⚒️" }, "🛠️", { + "value" : "🛠️", "keywords" : [ "hammer", "spanner", "tool", "wrench" - ], - "value" : "🛠️" + ] }, "🗡️", { + "value" : "🗡️", "keywords" : [ "dagger", "knife", "weapon" - ], - "value" : "🗡️" + ] }, "⚔️", { + "value" : "⚔️", "keywords" : [ "crossed", "swords", "weapon" - ], - "value" : "⚔️" + ] }, "🔫", { + "value" : "🔫", "keywords" : [ "gun", "handgun", @@ -5442,18 +5443,17 @@ "tool", "water", "weapon" - ], - "value" : "🔫" + ] }, "🪃", { + "value" : "🪃", "keywords" : [ "boomerang", "rebound", "repercussion", "weapon" - ], - "value" : "🪃" + ] }, "🏹", { @@ -5471,14 +5471,15 @@ }, "🛡️", { + "value" : "🛡️", "keywords" : [ "shield", "weapon" - ], - "value" : "🛡️" + ] }, "🪚", { + "value" : "🪚", "keywords" : [ "carpenter", "carpentry", @@ -5487,19 +5488,18 @@ "saw", "tool", "trim" - ], - "value" : "🪚" + ] }, "🔧", { + "value" : "🔧", "keywords" : [ "home", "improvement", "spanner", "tool", "wrench" - ], - "value" : "🔧" + ] }, "🪛", { @@ -5514,14 +5514,14 @@ }, "🔩", { - "value" : "🔩", "keywords" : [ "bolt", "home", "improvement", "nut", "tool" - ] + ], + "value" : "🔩" }, "⚙️", { @@ -5599,6 +5599,7 @@ }, "🧰", { + "value" : "🧰", "keywords" : [ "box", "chest", @@ -5606,12 +5607,10 @@ "red", "tool", "toolbox" - ], - "value" : "🧰" + ] }, "🧲", { - "value" : "🧲", "keywords" : [ "attraction", "horseshoe", @@ -5621,7 +5620,8 @@ "positive", "shape", "u" - ] + ], + "value" : "🧲" }, "🪜", { @@ -5644,7 +5644,6 @@ }, "🧪", { - "value" : "🧪", "keywords" : [ "chemist", "chemistry", @@ -5653,7 +5652,8 @@ "science", "test", "tube" - ] + ], + "value" : "🧪" }, "🧫", { @@ -5704,6 +5704,7 @@ }, "📡", { + "value" : "📡", "keywords" : [ "aliens", "antenna", @@ -5711,11 +5712,11 @@ "dish", "satellite", "science" - ], - "value" : "📡" + ] }, "💉", { + "value" : "💉", "keywords" : [ "doctor", "flu", @@ -5726,11 +5727,11 @@ "syringe", "tool", "vaccination" - ], - "value" : "💉" + ] }, "🩸", { + "value" : "🩸", "keywords" : [ "bleed", "blood", @@ -5739,8 +5740,7 @@ "injury", "medicine", "menstruation" - ], - "value" : "🩸" + ] }, "💊", { @@ -5766,6 +5766,7 @@ }, "🩼", { + "value" : "🩼", "keywords" : [ "aid", "cane", @@ -5776,8 +5777,7 @@ "injured", "mobility", "stick" - ], - "value" : "🩼" + ] }, "🩺", { @@ -5791,7 +5791,6 @@ }, "🩻", { - "value" : "🩻", "keywords" : [ "bones", "doctor", @@ -5800,17 +5799,18 @@ "skull", "x-ray", "xray" - ] + ], + "value" : "🩻" }, "🚪", { + "value" : "🚪", "keywords" : [ "back", "closet", "door", "front" - ], - "value" : "🚪" + ] }, "🛗", { @@ -5824,17 +5824,18 @@ }, "🪞", { + "value" : "🪞", "keywords" : [ "makeup", "mirror", "reflection", "reflector", "speculum" - ], - "value" : "🪞" + ] }, "🪟", { + "value" : "🪟", "keywords" : [ "air", "frame", @@ -5843,8 +5844,7 @@ "transparent", "view", "window" - ], - "value" : "🪟" + ] }, "🛏️", { @@ -5857,12 +5857,12 @@ }, "🛋️", { - "value" : "🛋️", "keywords" : [ "couch", "hotel", "lamp" - ] + ], + "value" : "🛋️" }, "🪑", { @@ -5912,6 +5912,7 @@ }, "🪤", { + "value" : "🪤", "keywords" : [ "bait", "cheese", @@ -5920,8 +5921,7 @@ "mousetrap", "snare", "trap" - ], - "value" : "🪤" + ] }, "🪒", { @@ -5945,14 +5945,14 @@ }, "🧷", { + "value" : "🧷", "keywords" : [ "diaper", "pin", "punk", "rock", "safety" - ], - "value" : "🧷" + ] }, "🧹", { @@ -5986,16 +5986,17 @@ }, "🪣", { - "value" : "🪣", "keywords" : [ "bucket", "cask", "pail", "vat" - ] + ], + "value" : "🪣" }, "🧼", { + "value" : "🧼", "keywords" : [ "bar", "bathing", @@ -6004,8 +6005,7 @@ "lather", "soap", "soapdish" - ], - "value" : "🧼" + ] }, "🫧", { @@ -6037,33 +6037,33 @@ }, "🧽", { - "value" : "🧽", "keywords" : [ "absorbing", "cleaning", "porous", "soak", "sponge" - ] + ], + "value" : "🧽" }, "🧯", { - "value" : "🧯", "keywords" : [ "extinguish", "extinguisher", "fire", "quench" - ] + ], + "value" : "🧯" }, "🛒", { - "value" : "🛒", "keywords" : [ "cart", "shopping", "trolley" - ] + ], + "value" : "🛒" }, "🚬", { @@ -6085,7 +6085,6 @@ }, "🪦", { - "value" : "🪦", "keywords" : [ "cemetery", "dead", @@ -6096,20 +6095,22 @@ "rip", "tomb", "tombstone" - ] + ], + "value" : "🪦" }, "⚱️", { + "value" : "⚱️", "keywords" : [ "ashes", "death", "funeral", "urn" - ], - "value" : "⚱️" + ] }, "🗿", { + "value" : "🗿", "keywords" : [ "face", "moai", @@ -6117,11 +6118,11 @@ "statue", "stoneface", "travel" - ], - "value" : "🗿" + ] }, "🪧", { + "value" : "🪧", "keywords" : [ "card", "demonstration", @@ -6131,8 +6132,7 @@ "plaque", "protest", "sign" - ], - "value" : "🪧" + ] }, "🪪", { @@ -6148,14 +6148,13 @@ "value" : "🪪" } ], - "name" : "Objects" + "appleCategory" : "objects" }, { - "appleCategory" : "Travel & Places", + "name" : "Travel & Places", "emojis" : [ "🌍", { - "value" : "🌍", "keywords" : [ "Africa", "earth", @@ -6164,22 +6163,22 @@ "globe", "showing", "world" - ] + ], + "value" : "🌍" }, "🌎", { - "value" : "🌎", "keywords" : [ "Americas", "earth", "globe", "showing", "world" - ] + ], + "value" : "🌎" }, "🌏", { - "value" : "🌏", "keywords" : [ "Asia", "Asia-Australia", @@ -6188,11 +6187,11 @@ "globe", "showing", "world" - ] + ], + "value" : "🌏" }, "🌐", { - "value" : "🌐", "keywords" : [ "earth", "globe", @@ -6201,15 +6200,16 @@ "web", "world", "worldwide" - ] + ], + "value" : "🌐" }, "🗺️", { + "value" : "🗺️", "keywords" : [ "map", "world" - ], - "value" : "🗺️" + ] }, "🗾", { @@ -6232,13 +6232,13 @@ }, "🏔️", { + "value" : "🏔️", "keywords" : [ "cold", "mountain", "snow", "snow-capped" - ], - "value" : "🏔️" + ] }, "⛰️", { @@ -6259,13 +6259,13 @@ }, "🗻", { - "value" : "🗻", "keywords" : [ "fuji", "mount", "mountain", "nature" - ] + ], + "value" : "🗻" }, "🏕️", { @@ -6284,26 +6284,26 @@ }, "🏜️", { + "value" : "🏜️", "keywords" : [ "desert" - ], - "value" : "🏜️" + ] }, "🏝️", { + "value" : "🏝️", "keywords" : [ "desert", "island" - ], - "value" : "🏝️" + ] }, "🏞️", { - "value" : "🏞️", "keywords" : [ "national", "park" - ] + ], + "value" : "🏞️" }, "🏟️", { @@ -6331,14 +6331,14 @@ }, "🧱", { + "value" : "🧱", "keywords" : [ "brick", "bricks", "clay", "mortar", "wall" - ], - "value" : "🧱" + ] }, "🪨", { @@ -6376,20 +6376,20 @@ }, "🏘️", { + "value" : "🏘️", "keywords" : [ "house", "houses" - ], - "value" : "🏘️" + ] }, "🏚️", { + "value" : "🏚️", "keywords" : [ "derelict", "home", "house" - ], - "value" : "🏚️" + ] }, "🏠", { @@ -6439,13 +6439,13 @@ }, "🏣", { - "value" : "🏣", "keywords" : [ "building", "Japanese", "office", "post" - ] + ], + "value" : "🏣" }, "🏤", { @@ -6477,20 +6477,20 @@ }, "🏨", { - "value" : "🏨", "keywords" : [ "building", "hotel" - ] + ], + "value" : "🏨" }, "🏩", { - "value" : "🏩", "keywords" : [ "building", "hotel", "love" - ] + ], + "value" : "🏩" }, "🏪", { @@ -6505,11 +6505,11 @@ }, "🏫", { - "value" : "🏫", "keywords" : [ "building", "school" - ] + ], + "value" : "🏫" }, "🏬", { @@ -6530,43 +6530,44 @@ }, "🏯", { + "value" : "🏯", "keywords" : [ "building", "castle", "Japanese" - ], - "value" : "🏯" + ] }, "🏰", { + "value" : "🏰", "keywords" : [ "building", "castle", "European" - ], - "value" : "🏰" + ] }, "💒", { - "value" : "💒", "keywords" : [ "chapel", "hitched", "nuptials", "romance", "wedding" - ] + ], + "value" : "💒" }, "🗼", { + "value" : "🗼", "keywords" : [ "Tokyo", "tower" - ], - "value" : "🗼" + ] }, "🗽", { + "value" : "🗽", "keywords" : [ "liberty", "Liberty", @@ -6576,11 +6577,11 @@ "statue", "Statue", "york" - ], - "value" : "🗽" + ] }, "⛪", { + "value" : "⛪", "keywords" : [ "bless", "chapel", @@ -6588,8 +6589,7 @@ "church", "cross", "religion" - ], - "value" : "⛪" + ] }, "🕌", { @@ -6633,7 +6633,6 @@ }, "🕋", { - "value" : "🕋", "keywords" : [ "hajj", "islam", @@ -6641,30 +6640,31 @@ "Muslim", "religion", "umrah" - ] + ], + "value" : "🕋" }, "⛲", { - "value" : "⛲", "keywords" : [ "fountain" - ] + ], + "value" : "⛲" }, "⛺", { - "value" : "⛺", "keywords" : [ "camping", "tent" - ] + ], + "value" : "⛺" }, "🌁", { + "value" : "🌁", "keywords" : [ "fog", "foggy" - ], - "value" : "🌁" + ] }, "🌃", { @@ -6696,13 +6696,13 @@ }, "🌅", { - "value" : "🌅", "keywords" : [ "morning", "nature", "sun", "sunrise" - ] + ], + "value" : "🌅" }, "🌆", { @@ -6731,12 +6731,12 @@ }, "🌉", { + "value" : "🌉", "keywords" : [ "at", "bridge", "night" - ], - "value" : "🌉" + ] }, "♨️", { @@ -6759,7 +6759,6 @@ }, "🛝", { - "value" : "🛝", "keywords" : [ "amusement", "park", @@ -6769,7 +6768,8 @@ "slide", "sliding", "theme" - ] + ], + "value" : "🛝" }, "🎡", { @@ -6795,7 +6795,6 @@ }, "💈", { - "value" : "💈", "keywords" : [ "barber", "cut", @@ -6803,7 +6802,8 @@ "haircut", "pole", "shave" - ] + ], + "value" : "💈" }, "🎪", { @@ -6815,6 +6815,7 @@ }, "🚂", { + "value" : "🚂", "keywords" : [ "caboose", "engine", @@ -6824,11 +6825,11 @@ "train", "trains", "travel" - ], - "value" : "🚂" + ] }, "🚃", { + "value" : "🚃", "keywords" : [ "car", "electric", @@ -6837,19 +6838,18 @@ "tram", "travel", "trolleybus" - ], - "value" : "🚃" + ] }, "🚄", { - "value" : "🚄", "keywords" : [ "high-speed", "railway", "shinkansen", "speed", "train" - ] + ], + "value" : "🚄" }, "🚅", { @@ -6867,22 +6867,22 @@ }, "🚆", { + "value" : "🚆", "keywords" : [ "arrived", "choo", "railway", "train" - ], - "value" : "🚆" + ] }, "🚇", { + "value" : "🚇", "keywords" : [ "metro", "subway", "travel" - ], - "value" : "🚇" + ] }, "🚈", { @@ -6897,12 +6897,12 @@ }, "🚉", { - "value" : "🚉", "keywords" : [ "railway", "station", "train" - ] + ], + "value" : "🚉" }, "🚊", { @@ -6914,11 +6914,11 @@ }, "🚝", { + "value" : "🚝", "keywords" : [ "monorail", "vehicle" - ], - "value" : "🚝" + ] }, "🚞", { @@ -6932,14 +6932,14 @@ }, "🚋", { - "value" : "🚋", "keywords" : [ "bus", "car", "tram", "trolley", "trolleybus" - ] + ], + "value" : "🚋" }, "🚌", { @@ -6961,33 +6961,33 @@ }, "🚎", { - "value" : "🚎", "keywords" : [ "bus", "tram", "trolley", "trolleybus" - ] + ], + "value" : "🚎" }, "🚐", { + "value" : "🚐", "keywords" : [ "bus", "drive", "minibus", "van", "vehicle" - ], - "value" : "🚐" + ] }, "🚑", { - "value" : "🚑", "keywords" : [ "ambulance", "emergency", "vehicle" - ] + ], + "value" : "🚑" }, "🚒", { @@ -7020,7 +7020,6 @@ }, "🚕", { - "value" : "🚕", "keywords" : [ "cab", "cabbie", @@ -7029,7 +7028,8 @@ "taxi", "vehicle", "yellow" - ] + ], + "value" : "🚕" }, "🚖", { @@ -7047,16 +7047,17 @@ }, "🚗", { + "value" : "🚗", "keywords" : [ "automobile", "car", "driving", "vehicle" - ], - "value" : "🚗" + ] }, "🚘", { + "value" : "🚘", "keywords" : [ "automobile", "car", @@ -7064,11 +7065,11 @@ "drove", "oncoming", "vehicle" - ], - "value" : "🚘" + ] }, "🚙", { + "value" : "🚙", "keywords" : [ "car", "drive", @@ -7077,8 +7078,7 @@ "sportutility", "utility", "vehicle" - ], - "value" : "🚙" + ] }, "🛻", { @@ -7120,28 +7120,28 @@ }, "🚜", { - "value" : "🚜", "keywords" : [ "tractor", "vehicle" - ] + ], + "value" : "🚜" }, "🏎️", { + "value" : "🏎️", "keywords" : [ "car", "racing", "zoom" - ], - "value" : "🏎️" + ] }, "🏍️", { - "value" : "🏍️", "keywords" : [ "motorcycle", "racing" - ] + ], + "value" : "🏍️" }, "🛵", { @@ -7153,12 +7153,12 @@ }, "🦽", { - "value" : "🦽", "keywords" : [ "accessibility", "manual", "wheelchair" - ] + ], + "value" : "🦽" }, "🦼", { @@ -7226,12 +7226,12 @@ }, "🚏", { + "value" : "🚏", "keywords" : [ "bus", "busstop", "stop" - ], - "value" : "🚏" + ] }, "🛣️", { @@ -7274,6 +7274,7 @@ }, "🛞", { + "value" : "🛞", "keywords" : [ "car", "circle", @@ -7281,11 +7282,11 @@ "turn", "vehicle", "wheel" - ], - "value" : "🛞" + ] }, "🚨", { + "value" : "🚨", "keywords" : [ "alarm", "alert", @@ -7296,8 +7297,7 @@ "police", "revolving", "siren" - ], - "value" : "🚨" + ] }, "🚥", { @@ -7328,20 +7328,20 @@ }, "🛑", { - "value" : "🛑", "keywords" : [ "octagonal", "sign", "stop" - ] + ], + "value" : "🛑" }, "🚧", { + "value" : "🚧", "keywords" : [ "barrier", "construction" - ], - "value" : "🚧" + ] }, "⚓", { @@ -7354,6 +7354,7 @@ }, "🛟", { + "value" : "🛟", "keywords" : [ "buoy", "float", @@ -7366,8 +7367,7 @@ "save", "saver", "swim" - ], - "value" : "🛟" + ] }, "⛵", { @@ -7391,7 +7391,6 @@ }, "🚤", { - "value" : "🚤", "keywords" : [ "billionaire", "boat", @@ -7401,7 +7400,8 @@ "speedboat", "summer", "travel" - ] + ], + "value" : "🚤" }, "🛳️", { @@ -7422,22 +7422,22 @@ }, "🛥️", { - "value" : "🛥️", "keywords" : [ "boat", "motor", "motorboat" - ] + ], + "value" : "🛥️" }, "🚢", { + "value" : "🚢", "keywords" : [ "boat", "passenger", "ship", "travel" - ], - "value" : "🚢" + ] }, "✈️", { @@ -7538,6 +7538,7 @@ }, "🚡", { + "value" : "🚡", "keywords" : [ "aerial", "cable", @@ -7545,8 +7546,7 @@ "gondola", "ropeway", "tramway" - ], - "value" : "🚡" + ] }, "🛰️", { @@ -7581,12 +7581,12 @@ }, "🛎️", { - "value" : "🛎️", "keywords" : [ "bell", "bellhop", "hotel" - ] + ], + "value" : "🛎️" }, "🧳", { @@ -7613,6 +7613,7 @@ }, "⏳", { + "value" : "⏳", "keywords" : [ "done", "flowing", @@ -7623,8 +7624,7 @@ "timer", "waiting", "yolo" - ], - "value" : "⏳" + ] }, "⌚", { @@ -7637,7 +7637,6 @@ }, "⏰", { - "value" : "⏰", "keywords" : [ "alarm", "clock", @@ -7646,16 +7645,17 @@ "late", "time", "waiting" - ] + ], + "value" : "⏰" }, "⏱️", { - "value" : "⏱️", "keywords" : [ "clock", "stopwatch", "time" - ] + ], + "value" : "⏱️" }, "⏲️", { @@ -7676,7 +7676,6 @@ }, "🕛", { - "value" : "🕛", "keywords" : [ "12", "12:00", @@ -7684,10 +7683,12 @@ "o’clock", "time", "twelve" - ] + ], + "value" : "🕛" }, "🕧", { + "value" : "🕧", "keywords" : [ "12", "12:30", @@ -7697,12 +7698,10 @@ "time", "twelve", "twelve-thirty" - ], - "value" : "🕧" + ] }, "🕐", { - "value" : "🕐", "keywords" : [ "1", "1:00", @@ -7710,7 +7709,8 @@ "o’clock", "one", "time" - ] + ], + "value" : "🕐" }, "🕜", { @@ -7728,7 +7728,6 @@ }, "🕑", { - "value" : "🕑", "keywords" : [ "2", "2:00", @@ -7736,11 +7735,11 @@ "o’clock", "time", "two" - ] + ], + "value" : "🕑" }, "🕝", { - "value" : "🕝", "keywords" : [ "2", "2:30", @@ -7750,10 +7749,12 @@ "time", "two", "two-thirty" - ] + ], + "value" : "🕝" }, "🕒", { + "value" : "🕒", "keywords" : [ "3", "3:00", @@ -7761,12 +7762,10 @@ "o’clock", "three", "time" - ], - "value" : "🕒" + ] }, "🕞", { - "value" : "🕞", "keywords" : [ "3", "3:30", @@ -7776,7 +7775,8 @@ "three", "three-thirty", "time" - ] + ], + "value" : "🕞" }, "🕓", { @@ -7792,6 +7792,7 @@ }, "🕟", { + "value" : "🕟", "keywords" : [ "30", "4", @@ -7801,8 +7802,7 @@ "four-thirty", "thirty", "time" - ], - "value" : "🕟" + ] }, "🕔", { @@ -7832,6 +7832,7 @@ }, "🕕", { + "value" : "🕕", "keywords" : [ "6", "6:00", @@ -7839,8 +7840,7 @@ "o’clock", "six", "time" - ], - "value" : "🕕" + ] }, "🕡", { @@ -7857,7 +7857,6 @@ }, "🕖", { - "value" : "🕖", "keywords" : [ "0", "7", @@ -7865,10 +7864,12 @@ "clock", "o’clock", "seven" - ] + ], + "value" : "🕖" }, "🕢", { + "value" : "🕢", "keywords" : [ "30", "7", @@ -7877,8 +7878,7 @@ "seven", "seven-thirty", "thirty" - ], - "value" : "🕢" + ] }, "🕗", { @@ -7934,6 +7934,7 @@ }, "🕙", { + "value" : "🕙", "keywords" : [ "0", "10", @@ -7941,11 +7942,11 @@ "clock", "o’clock", "ten" - ], - "value" : "🕙" + ] }, "🕥", { + "value" : "🕥", "keywords" : [ "10", "10:30", @@ -7955,8 +7956,7 @@ "ten-thirty", "thirty", "time" - ], - "value" : "🕥" + ] }, "🕚", { @@ -8017,13 +8017,13 @@ }, "🌔", { + "value" : "🌔", "keywords" : [ "gibbous", "moon", "space", "waxing" - ], - "value" : "🌔" + ] }, "🌕", { @@ -8046,23 +8046,23 @@ }, "🌗", { + "value" : "🌗", "keywords" : [ "last", "moon", "quarter", "space" - ], - "value" : "🌗" + ] }, "🌘", { - "value" : "🌘", "keywords" : [ "crescent", "moon", "space", "waning" - ] + ], + "value" : "🌘" }, "🌙", { @@ -8076,24 +8076,24 @@ }, "🌚", { + "value" : "🌚", "keywords" : [ "face", "moon", "new", "space" - ], - "value" : "🌚" + ] }, "🌛", { + "value" : "🌛", "keywords" : [ "face", "first", "moon", "quarter", "space" - ], - "value" : "🌛" + ] }, "🌜", { @@ -8116,6 +8116,7 @@ }, "☀️", { + "value" : "☀️", "keywords" : [ "bright", "rays", @@ -8123,22 +8124,20 @@ "sun", "sunny", "weather" - ], - "value" : "☀️" + ] }, "🌝", { - "value" : "🌝", "keywords" : [ "bright", "face", "full", "moon" - ] + ], + "value" : "🌝" }, "🌞", { - "value" : "🌞", "keywords" : [ "beach", "bright", @@ -8150,32 +8149,32 @@ "sunny", "sunshine", "weather" - ] + ], + "value" : "🌞" }, "🪐", { - "value" : "🪐", "keywords" : [ "planet", "ringed", "saturn", "saturnine" - ] + ], + "value" : "🪐" }, "⭐", { + "value" : "⭐", "keywords" : [ "astronomy", "medium", "star", "stars", "white" - ], - "value" : "⭐" + ] }, "🌟", { - "value" : "🌟", "keywords" : [ "glittery", "glow", @@ -8185,7 +8184,8 @@ "sparkle", "star", "win" - ] + ], + "value" : "🌟" }, "🌠", { @@ -8200,20 +8200,20 @@ }, "🌌", { - "value" : "🌌", "keywords" : [ "milky", "space", "way" - ] + ], + "value" : "🌌" }, "☁️", { + "value" : "☁️", "keywords" : [ "cloud", "weather" - ], - "value" : "☁️" + ] }, "⛅", { @@ -8249,13 +8249,13 @@ }, "🌥️", { + "value" : "🌥️", "keywords" : [ "behind", "cloud", "sun", "weather" - ], - "value" : "🌥️" + ] }, "🌦️", { @@ -8279,54 +8279,55 @@ }, "🌨️", { + "value" : "🌨️", "keywords" : [ "cloud", "cold", "snow", "weather" - ], - "value" : "🌨️" + ] }, "🌩️", { - "value" : "🌩️", "keywords" : [ "cloud", "lightning", "weather" - ] + ], + "value" : "🌩️" }, "🌪️", { + "value" : "🌪️", "keywords" : [ "cloud", "tornado", "weather", "whirlwind" - ], - "value" : "🌪️" + ] }, "🌫️", { - "value" : "🌫️", "keywords" : [ "cloud", "fog", "weather" - ] + ], + "value" : "🌫️" }, "🌬️", { + "value" : "🌬️", "keywords" : [ "blow", "cloud", "face", "wind" - ], - "value" : "🌬️" + ] }, "🌀", { + "value" : "🌀", "keywords" : [ "cyclone", "dizzy", @@ -8334,12 +8335,10 @@ "twister", "typhoon", "weather" - ], - "value" : "🌀" + ] }, "🌈", { - "value" : "🌈", "keywords" : [ "gay", "genderqueer", @@ -8357,7 +8356,8 @@ "trans", "transgender", "weather" - ] + ], + "value" : "🌈" }, "🌂", { @@ -8371,12 +8371,12 @@ }, "☂️", { + "value" : "☂️", "keywords" : [ "clothing", "rain", "umbrella" - ], - "value" : "☂️" + ] }, "☔", { @@ -8392,17 +8392,16 @@ }, "⛱️", { + "value" : "⛱️", "keywords" : [ "ground", "rain", "sun", "umbrella" - ], - "value" : "⛱️" + ] }, "⚡", { - "value" : "⚡", "keywords" : [ "danger", "electric", @@ -8414,48 +8413,50 @@ "thunderbolt", "voltage", "zap" - ] + ], + "value" : "⚡" }, "❄️", { + "value" : "❄️", "keywords" : [ "cold", "snow", "snowflake", "weather" - ], - "value" : "❄️" + ] }, "☃️", { + "value" : "☃️", "keywords" : [ "cold", "snow", "snowman", "man" - ], - "value" : "☃️" + ] }, "⛄", { + "value" : "⛄", "keywords" : [ "cold", "snow", "snowman", "man" - ], - "value" : "⛄" + ] }, "☄️", { - "value" : "☄️", "keywords" : [ "comet", "space" - ] + ], + "value" : "☄️" }, "🔥", { + "value" : "🔥", "keywords" : [ "af", "burn", @@ -8465,12 +8466,10 @@ "lit", "litaf", "tool" - ], - "value" : "🔥" + ] }, "💧", { - "value" : "💧", "keywords" : [ "cold", "comic", @@ -8482,11 +8481,11 @@ "tear", "water", "weather" - ] + ], + "value" : "💧" }, "🌊", { - "value" : "🌊", "keywords" : [ "nature", "ocean", @@ -8495,13 +8494,15 @@ "surfing", "water", "wave" - ] + ], + "value" : "🌊" } ], - "name" : "Travel & Places" + "appleCategory" : "travelAndPlaces" }, { - "appleCategory" : "Symbols", + "name" : "Symbols", + "appleCategory" : "symbols", "emojis" : [ "🏧", { @@ -8528,25 +8529,26 @@ }, "🚰", { - "value" : "🚰", "keywords" : [ "drinking", "potable", "water" - ] + ], + "value" : "🚰" }, "♿", { + "value" : "♿", "keywords" : [ "access", "handicap", "symbol", "wheelchair" - ], - "value" : "♿" + ] }, "🚹", { + "value" : "🚹", "keywords" : [ "bathroom", "lavatory", @@ -8556,12 +8558,10 @@ "room", "toilet", "WC" - ], - "value" : "🚹" + ] }, "🚺", { - "value" : "🚺", "keywords" : [ "bathroom", "lavatory", @@ -8571,27 +8571,28 @@ "WC", "woman", "women’s" - ] + ], + "value" : "🚺" }, "🚻", { + "value" : "🚻", "keywords" : [ "bathroom", "lavatory", "restroom", "toilet", "WC" - ], - "value" : "🚻" + ] }, "🚼", { + "value" : "🚼", "keywords" : [ "baby", "changing", "symbol" - ], - "value" : "🚼" + ] }, "🚾", { @@ -8608,23 +8609,22 @@ }, "🛂", { + "value" : "🛂", "keywords" : [ "control", "passport" - ], - "value" : "🛂" + ] }, "🛃", { - "value" : "🛃", "keywords" : [ "customs", "packing" - ] + ], + "value" : "🛃" }, "🛄", { - "value" : "🛄", "keywords" : [ "arrived", "baggage", @@ -8638,18 +8638,19 @@ "ready", "travel", "trip" - ] + ], + "value" : "🛄" }, "🛅", { + "value" : "🛅", "keywords" : [ "baggage", "case", "left", "locker", "luggage" - ], - "value" : "🛅" + ] }, "⚠️", { @@ -8661,14 +8662,14 @@ }, "🚸", { - "value" : "🚸", "keywords" : [ "child", "children", "crossing", "pedestrian", "traffic" - ] + ], + "value" : "🚸" }, "⛔", { @@ -8724,7 +8725,6 @@ }, "🚯", { - "value" : "🚯", "keywords" : [ "forbidden", "litter", @@ -8732,7 +8732,8 @@ "no", "not", "prohibited" - ] + ], + "value" : "🚯" }, "🚱", { @@ -8759,7 +8760,6 @@ }, "📵", { - "value" : "📵", "keywords" : [ "cell", "forbidden", @@ -8770,11 +8770,11 @@ "phones", "prohibited", "telephone" - ] + ], + "value" : "📵" }, "🔞", { - "value" : "🔞", "keywords" : [ "18", "age", @@ -8786,7 +8786,8 @@ "prohibited", "restriction", "underage" - ] + ], + "value" : "🔞" }, "☢️", { @@ -8806,14 +8807,14 @@ }, "⬆️", { + "value" : "⬆️", "keywords" : [ "arrow", "cardinal", "direction", "north", "up" - ], - "value" : "⬆️" + ] }, "↗️", { @@ -8828,14 +8829,14 @@ }, "➡️", { - "value" : "➡️", "keywords" : [ "arrow", "cardinal", "direction", "east", "right" - ] + ], + "value" : "➡️" }, "↘️", { @@ -8850,14 +8851,14 @@ }, "⬇️", { - "value" : "⬇️", "keywords" : [ "arrow", "cardinal", "direction", "down", "south" - ] + ], + "value" : "⬇️" }, "↙️", { @@ -8872,33 +8873,33 @@ }, "⬅️", { - "value" : "⬅️", "keywords" : [ "arrow", "cardinal", "direction", "left", "west" - ] + ], + "value" : "⬅️" }, "↖️", { + "value" : "↖️", "keywords" : [ "arrow", "direction", "intercardinal", "northwest", "up-left" - ], - "value" : "↖️" + ] }, "↕️", { - "value" : "↕️", "keywords" : [ "arrow", "up-down" - ] + ], + "value" : "↕️" }, "↔️", { @@ -8910,13 +8911,13 @@ }, "↩️", { - "value" : "↩️", "keywords" : [ "arrow", "curving", "left", "right" - ] + ], + "value" : "↩️" }, "↪️", { @@ -8994,12 +8995,12 @@ }, "🔛", { + "value" : "🔛", "keywords" : [ "arrow", "mark", "ON!" - ], - "value" : "🔛" + ] }, "🔜", { @@ -9033,12 +9034,12 @@ }, "⚛️", { + "value" : "⚛️", "keywords" : [ "atheist", "atom", "symbol" - ], - "value" : "⚛️" + ] }, "🕉️", { @@ -9051,7 +9052,6 @@ }, "✡️", { - "value" : "✡️", "keywords" : [ "David", "Jew", @@ -9059,7 +9059,8 @@ "judaism", "religion", "star" - ] + ], + "value" : "✡️" }, "☸️", { @@ -9099,16 +9100,17 @@ }, "☦️", { - "value" : "☦️", "keywords" : [ "Christian", "cross", "orthodox", "religion" - ] + ], + "value" : "☦️" }, "☪️", { + "value" : "☪️", "keywords" : [ "crescent", "islam", @@ -9116,8 +9118,7 @@ "ramadan", "religion", "star" - ], - "value" : "☪️" + ] }, "☮️", { @@ -9131,6 +9132,7 @@ }, "🕎", { + "value" : "🕎", "keywords" : [ "candelabrum", "candlestick", @@ -9139,11 +9141,11 @@ "judaism", "menorah", "religion" - ], - "value" : "🕎" + ] }, "🔯", { + "value" : "🔯", "keywords" : [ "dotted", "fortune", @@ -9151,8 +9153,7 @@ "judaism", "six-pointed", "star" - ], - "value" : "🔯" + ] }, "♈", { @@ -9166,14 +9167,14 @@ }, "♉", { - "value" : "♉", "keywords" : [ "bull", "horoscope", "ox", "Taurus", "zodiac" - ] + ], + "value" : "♉" }, "♊", { @@ -9239,23 +9240,23 @@ }, "♐", { + "value" : "♐", "keywords" : [ "archer", "horoscope", "Sagittarius", "zodiac" - ], - "value" : "♐" + ] }, "♑", { - "value" : "♑", "keywords" : [ "Capricorn", "goat", "horoscope", "zodiac" - ] + ], + "value" : "♑" }, "♒", { @@ -9280,14 +9281,14 @@ }, "⛎", { + "value" : "⛎", "keywords" : [ "bearer", "Ophiuchus", "serpent", "snake", "zodiac" - ], - "value" : "⛎" + ] }, "🔀", { @@ -9302,17 +9303,16 @@ }, "🔁", { - "value" : "🔁", "keywords" : [ "arrow", "button", "clockwise", "repeat" - ] + ], + "value" : "🔁" }, "🔂", { - "value" : "🔂", "keywords" : [ "arrow", "button", @@ -9320,22 +9320,22 @@ "once", "repeat", "single" - ] + ], + "value" : "🔂" }, "▶️", { - "value" : "▶️", "keywords" : [ "arrow", "button", "play", "right", "triangle" - ] + ], + "value" : "▶️" }, "⏩", { - "value" : "⏩", "keywords" : [ "arrow", "button", @@ -9343,10 +9343,12 @@ "fast", "fast-forward", "forward" - ] + ], + "value" : "⏩" }, "⏭️", { + "value" : "⏭️", "keywords" : [ "arrow", "button", @@ -9354,8 +9356,7 @@ "scene", "track", "triangle" - ], - "value" : "⏭️" + ] }, "⏯️", { @@ -9371,14 +9372,14 @@ }, "◀️", { + "value" : "◀️", "keywords" : [ "arrow", "button", "left", "reverse", "triangle" - ], - "value" : "◀️" + ] }, "⏪", { @@ -9407,25 +9408,25 @@ }, "🔼", { - "value" : "🔼", "keywords" : [ "arrow", "button", "red", "up", "upwards" - ] + ], + "value" : "🔼" }, "⏫", { - "value" : "⏫", "keywords" : [ "arrow", "button", "double", "fast", "up" - ] + ], + "value" : "⏫" }, "🔽", { @@ -9471,20 +9472,20 @@ }, "⏺️", { - "value" : "⏺️", "keywords" : [ "button", "circle", "record" - ] + ], + "value" : "⏺️" }, "⏏️", { - "value" : "⏏️", "keywords" : [ "button", "eject" - ] + ], + "value" : "⏏️" }, "🎦", { @@ -9518,6 +9519,7 @@ }, "📶", { + "value" : "📶", "keywords" : [ "antenna", "bar", @@ -9528,8 +9530,7 @@ "phone", "signal", "telephone" - ], - "value" : "📶" + ] }, "📳", { @@ -9557,12 +9558,12 @@ }, "♀️", { + "value" : "♀️", "keywords" : [ "female", "sign", "woman" - ], - "value" : "♀️" + ] }, "♂️", { @@ -9575,15 +9576,14 @@ }, "⚧️", { - "value" : "⚧️", "keywords" : [ "symbol", "transgender" - ] + ], + "value" : "⚧️" }, "✖️", { - "value" : "✖️", "keywords" : [ "×", "cancel", @@ -9591,7 +9591,8 @@ "multiply", "sign", "x" - ] + ], + "value" : "✖️" }, "➕", { @@ -9603,7 +9604,6 @@ }, "➖", { - "value" : "➖", "keywords" : [ "-", "−", @@ -9611,7 +9611,8 @@ "math", "minus", "sign" - ] + ], + "value" : "➖" }, "➗", { @@ -9663,6 +9664,7 @@ }, "⁉️", { + "value" : "⁉️", "keywords" : [ "!", "!?", @@ -9672,8 +9674,7 @@ "mark", "punctuation", "question" - ], - "value" : "⁉️" + ] }, "❓", { @@ -9712,14 +9713,14 @@ }, "❗", { - "value" : "❗", "keywords" : [ "!", "exclamation", "mark", "punctuation", "red" - ] + ], + "value" : "❗" }, "〰️", { @@ -9732,13 +9733,13 @@ }, "💱", { - "value" : "💱", "keywords" : [ "bank", "currency", "exchange", "money" - ] + ], + "value" : "💱" }, "💲", { @@ -9758,14 +9759,14 @@ }, "⚕️", { - "value" : "⚕️", "keywords" : [ "aesculapius", "medical", "medicine", "staff", "symbol" - ] + ], + "value" : "⚕️" }, "♻️", { @@ -9778,11 +9779,11 @@ }, "⚜️", { - "value" : "⚜️", "keywords" : [ "fleur-de-lis", "knights" - ] + ], + "value" : "⚜️" }, "🔱", { @@ -9798,11 +9799,11 @@ }, "📛", { + "value" : "📛", "keywords" : [ "badge", "name" - ], - "value" : "📛" + ] }, "🔰", { @@ -9849,7 +9850,6 @@ }, "☑️", { - "value" : "☑️", "keywords" : [ "✓", "ballot", @@ -9859,10 +9859,12 @@ "done", "off", "tick" - ] + ], + "value" : "☑️" }, "✔️", { + "value" : "✔️", "keywords" : [ "✓", "check", @@ -9872,12 +9874,10 @@ "heavy", "mark", "tick" - ], - "value" : "✔️" + ] }, "❌", { - "value" : "❌", "keywords" : [ "×", "cancel", @@ -9886,11 +9886,11 @@ "multiplication", "multiply", "x" - ] + ], + "value" : "❌" }, "❎", { - "value" : "❎", "keywords" : [ "×", "button", @@ -9900,7 +9900,8 @@ "multiply", "square", "x" - ] + ], + "value" : "❎" }, "➰", { @@ -9913,13 +9914,13 @@ }, "➿", { - "value" : "➿", "keywords" : [ "curl", "curly", "double", "loop" - ] + ], + "value" : "➿" }, "〽️", { @@ -9950,45 +9951,45 @@ }, "❇️", { - "value" : "❇️", "keywords" : [ "*", "sparkle" - ] + ], + "value" : "❇️" }, "©️", { - "value" : "©️", "keywords" : [ "C", "copyright" - ] + ], + "value" : "©️" }, "®️", { - "value" : "®️", "keywords" : [ "R", "registered" - ] + ], + "value" : "®️" }, "™️", { + "value" : "™️", "keywords" : [ "mark", "TM", "trade", "trademark" - ], - "value" : "™️" + ] }, "#️⃣", { + "value" : "#️⃣", "keywords" : [ "keycap", "keycap: #" - ], - "value" : "#️⃣" + ] }, "*️⃣", { @@ -10008,11 +10009,11 @@ }, "1️⃣", { + "value" : "1️⃣", "keywords" : [ "keycap", "keycap: 1" - ], - "value" : "1️⃣" + ] }, "2️⃣", { @@ -10040,19 +10041,19 @@ }, "5️⃣", { + "value" : "5️⃣", "keywords" : [ "keycap", "keycap: 5" - ], - "value" : "5️⃣" + ] }, "6️⃣", { - "value" : "6️⃣", "keywords" : [ "keycap", "keycap: 6" - ] + ], + "value" : "6️⃣" }, "7️⃣", { @@ -10072,11 +10073,11 @@ }, "9️⃣", { + "value" : "9️⃣", "keywords" : [ "keycap", "keycap: 9" - ], - "value" : "9️⃣" + ] }, "🔟", { @@ -10088,14 +10089,14 @@ }, "🔠", { + "value" : "🔠", "keywords" : [ "ABCD", "input", "latin", "letters", "uppercase" - ], - "value" : "🔠" + ] }, "🔡", { @@ -10131,23 +10132,23 @@ }, "🔤", { + "value" : "🔤", "keywords" : [ "abc", "alphabet", "input", "latin", "letters" - ], - "value" : "🔤" + ] }, "🅰️", { - "value" : "🅰️", "keywords" : [ "blood", "button", "type" - ] + ], + "value" : "🅰️" }, "🆎", { @@ -10161,13 +10162,13 @@ }, "🅱️", { + "value" : "🅱️", "keywords" : [ "B", "blood", "button", "type" - ], - "value" : "🅱️" + ] }, "🆑", { @@ -10179,19 +10180,19 @@ }, "🆒", { + "value" : "🆒", "keywords" : [ "button", "COOL" - ], - "value" : "🆒" + ] }, "🆓", { - "value" : "🆓", "keywords" : [ "button", "FREE" - ] + ], + "value" : "🆓" }, "ℹ️", { @@ -10221,11 +10222,11 @@ }, "🆕", { - "value" : "🆕", "keywords" : [ "button", "NEW" - ] + ], + "value" : "🆕" }, "🆖", { @@ -10237,13 +10238,13 @@ }, "🅾️", { + "value" : "🅾️", "keywords" : [ "blood", "button", "O", "type" - ], - "value" : "🅾️" + ] }, "🆗", { @@ -10256,21 +10257,21 @@ }, "🅿️", { + "value" : "🅿️", "keywords" : [ "button", "P", "parking" - ], - "value" : "🅿️" + ] }, "🆘", { + "value" : "🆘", "keywords" : [ "button", "help", "SOS" - ], - "value" : "🆘" + ] }, "🆙", { @@ -10284,12 +10285,12 @@ }, "🆚", { + "value" : "🆚", "keywords" : [ "button", "versus", "VS" - ], - "value" : "🆚" + ] }, "🈁", { @@ -10303,28 +10304,29 @@ }, "🈂️", { + "value" : "🈂️", "keywords" : [ "button", "charge", "Japanese", "katakana", "service" - ], - "value" : "🈂️" + ] }, "🈷️", { + "value" : "🈷️", "keywords" : [ "amount", "button", "ideograph", "Japanese", "monthly" - ], - "value" : "🈷️" + ] }, "🈶", { + "value" : "🈶", "keywords" : [ "button", "charge", @@ -10332,28 +10334,27 @@ "ideograph", "Japanese", "not" - ], - "value" : "🈶" + ] }, "🈯", { - "value" : "🈯", "keywords" : [ "button", "ideograph", "Japanese", "reserved" - ] + ], + "value" : "🈯" }, "🉐", { - "value" : "🉐", "keywords" : [ "bargain", "button", "ideograph", "Japanese" - ] + ], + "value" : "🉐" }, "🈹", { @@ -10367,14 +10368,14 @@ }, "🈚", { + "value" : "🈚", "keywords" : [ "button", "charge", "free", "ideograph", "Japanese" - ], - "value" : "🈚" + ] }, "🈲", { @@ -10398,24 +10399,24 @@ }, "🈸", { - "value" : "🈸", "keywords" : [ "application", "button", "ideograph", "Japanese" - ] + ], + "value" : "🈸" }, "🈴", { + "value" : "🈴", "keywords" : [ "button", "grade", "ideograph", "Japanese", "passing" - ], - "value" : "🈴" + ] }, "🈳", { @@ -10429,34 +10430,34 @@ }, "㊗️", { + "value" : "㊗️", "keywords" : [ "button", "congratulations", "ideograph", "Japanese" - ], - "value" : "㊗️" + ] }, "㊙️", { - "value" : "㊙️", "keywords" : [ "button", "ideograph", "Japanese", "secret" - ] + ], + "value" : "㊙️" }, "🈺", { + "value" : "🈺", "keywords" : [ "business", "button", "ideograph", "Japanese", "open" - ], - "value" : "🈺" + ] }, "🈵", { @@ -10488,28 +10489,28 @@ }, "🟡", { + "value" : "🟡", "keywords" : [ "circle", "yellow" - ], - "value" : "🟡" + ] }, "🟢", { + "value" : "🟢", "keywords" : [ "circle", "green" - ], - "value" : "🟢" + ] }, "🔵", { + "value" : "🔵", "keywords" : [ "blue", "circle", "geometric" - ], - "value" : "🔵" + ] }, "🟣", { @@ -10521,81 +10522,81 @@ }, "🟤", { - "value" : "🟤", "keywords" : [ "brown", "circle" - ] + ], + "value" : "🟤" }, "⚫", { + "value" : "⚫", "keywords" : [ "black", "circle", "geometric" - ], - "value" : "⚫" + ] }, "⚪", { - "value" : "⚪", "keywords" : [ "circle", "geometric", "white" - ] + ], + "value" : "⚪" }, "🟥", { + "value" : "🟥", "keywords" : [ "card", "penalty", "red", "square" - ], - "value" : "🟥" + ] }, "🟧", { - "value" : "🟧", "keywords" : [ "orange", "square" - ] + ], + "value" : "🟧" }, "🟨", { - "value" : "🟨", "keywords" : [ "card", "penalty", "square", "yellow" - ] + ], + "value" : "🟨" }, "🟩", { + "value" : "🟩", "keywords" : [ "green", "square" - ], - "value" : "🟩" + ] }, "🟦", { + "value" : "🟦", "keywords" : [ "blue", "square" - ], - "value" : "🟦" + ] }, "🟪", { + "value" : "🟪", "keywords" : [ "purple", "square" - ], - "value" : "🟪" + ] }, "🟫", { @@ -10607,13 +10608,13 @@ }, "⬛", { - "value" : "⬛", "keywords" : [ "black", "geometric", "large", "square" - ] + ], + "value" : "⬛" }, "⬜", { @@ -10637,13 +10638,13 @@ }, "◻️", { + "value" : "◻️", "keywords" : [ "geometric", "medium", "square", "white" - ], - "value" : "◻️" + ] }, "◾", { @@ -10657,33 +10658,33 @@ }, "◽", { - "value" : "◽", "keywords" : [ "geometric", "medium-small", "square", "white" - ] + ], + "value" : "◽" }, "▪️", { + "value" : "▪️", "keywords" : [ "black", "geometric", "small", "square" - ], - "value" : "▪️" + ] }, "▫️", { + "value" : "▫️", "keywords" : [ "geometric", "small", "square", "white" - ], - "value" : "▫️" + ] }, "🔶", { @@ -10717,13 +10718,13 @@ }, "🔹", { + "value" : "🔹", "keywords" : [ "blue", "diamond", "geometric", "small" - ], - "value" : "🔹" + ] }, "🔺", { @@ -10768,14 +10769,14 @@ }, "🔳", { + "value" : "🔳", "keywords" : [ "button", "geometric", "outlined", "square", "white" - ], - "value" : "🔳" + ] }, "🔲", { @@ -10787,11 +10788,10 @@ "square" ] } - ], - "name" : "Symbols" + ] }, { - "appleCategory" : "Smileys & People", + "appleCategory" : "smileysAndPeople", "emojis" : [ "👋", { @@ -10817,25 +10817,25 @@ }, "👋🏻", { - "value" : "👋🏻", "keywords" : [ "hand", "light skin tone", "wave", "waving", "waving hand: light skin tone" - ] + ], + "value" : "👋🏻" }, "👋🏼", { + "value" : "👋🏼", "keywords" : [ "hand", "medium-light skin tone", "wave", "waving", "waving hand: medium-light skin tone" - ], - "value" : "👋🏼" + ] }, "👋🏽", { @@ -10850,35 +10850,35 @@ }, "👋🏾", { + "value" : "👋🏾", "keywords" : [ "hand", "medium-dark skin tone", "wave", "waving", "waving hand: medium-dark skin tone" - ], - "value" : "👋🏾" + ] }, "👋🏿", { - "value" : "👋🏿", "keywords" : [ "dark skin tone", "hand", "wave", "waving", "waving hand: dark skin tone" - ] + ], + "value" : "👋🏿" }, "🤚", { - "value" : "🤚", "keywords" : [ "back", "backhand", "hand", "raised" - ] + ], + "value" : "🤚" }, "🤚🏻", { @@ -10893,25 +10893,25 @@ }, "🤚🏼", { - "value" : "🤚🏼", "keywords" : [ "backhand", "medium-light skin tone", "raised", "raised back of hand", "raised back of hand: medium-light skin tone" - ] + ], + "value" : "🤚🏼" }, "🤚🏽", { - "value" : "🤚🏽", "keywords" : [ "backhand", "medium skin tone", "raised", "raised back of hand", "raised back of hand: medium skin tone" - ] + ], + "value" : "🤚🏽" }, "🤚🏾", { @@ -10949,6 +10949,7 @@ }, "🖐🏻", { + "value" : "🖐🏻", "keywords" : [ "finger", "hand", @@ -10956,8 +10957,7 @@ "hand with fingers splayed: light skin tone", "light skin tone", "splayed" - ], - "value" : "🖐🏻" + ] }, "🖐🏼", { @@ -10997,6 +10997,7 @@ }, "🖐🏿", { + "value" : "🖐🏿", "keywords" : [ "dark skin tone", "finger", @@ -11004,11 +11005,11 @@ "hand with fingers splayed", "hand with fingers splayed: dark skin tone", "splayed" - ], - "value" : "🖐🏿" + ] }, "✋", { + "value" : "✋", "keywords" : [ "5", "five", @@ -11016,8 +11017,7 @@ "high", "raised", "stop" - ], - "value" : "✋" + ] }, "✋🏻", { @@ -11033,7 +11033,6 @@ }, "✋🏼", { - "value" : "✋🏼", "keywords" : [ "hand", "high 5", @@ -11041,7 +11040,8 @@ "medium-light skin tone", "raised hand", "raised hand: medium-light skin tone" - ] + ], + "value" : "✋🏼" }, "✋🏽", { @@ -11069,7 +11069,6 @@ }, "✋🏿", { - "value" : "✋🏿", "keywords" : [ "dark skin tone", "hand", @@ -11077,7 +11076,8 @@ "high five", "raised hand", "raised hand: dark skin tone" - ] + ], + "value" : "✋🏿" }, "🖖", { @@ -11130,7 +11130,6 @@ }, "🖖🏾", { - "value" : "🖖🏾", "keywords" : [ "finger", "hand", @@ -11139,7 +11138,8 @@ "vulcan", "vulcan salute", "vulcan salute: medium-dark skin tone" - ] + ], + "value" : "🖖🏾" }, "🖖🏿", { @@ -11170,7 +11170,6 @@ }, "🫱🏻", { - "value" : "🫱🏻", "keywords" : [ "hand", "light skin tone", @@ -11178,7 +11177,8 @@ "rightward", "rightwards hand", "rightwards hand: light skin tone" - ] + ], + "value" : "🫱🏻" }, "🫱🏼", { @@ -11218,6 +11218,7 @@ }, "🫱🏿", { + "value" : "🫱🏿", "keywords" : [ "dark skin tone", "hand", @@ -11225,8 +11226,7 @@ "rightward", "rightwards hand", "rightwards hand: dark skin tone" - ], - "value" : "🫱🏿" + ] }, "🫲", { @@ -11268,7 +11268,6 @@ }, "🫲🏽", { - "value" : "🫲🏽", "keywords" : [ "hand", "left", @@ -11276,11 +11275,11 @@ "leftwards hand", "leftwards hand: medium skin tone", "medium skin tone" - ] + ], + "value" : "🫲🏽" }, "🫲🏾", { - "value" : "🫲🏾", "keywords" : [ "hand", "left", @@ -11288,7 +11287,8 @@ "leftwards hand", "leftwards hand: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "🫲🏾" }, "🫲🏿", { @@ -11319,7 +11319,6 @@ }, "🫳🏻", { - "value" : "🫳🏻", "keywords" : [ "dismiss", "drop", @@ -11327,10 +11326,12 @@ "palm down hand", "palm down hand: light skin tone", "shoo" - ] + ], + "value" : "🫳🏻" }, "🫳🏼", { + "value" : "🫳🏼", "keywords" : [ "dismiss", "drop", @@ -11338,12 +11339,10 @@ "palm down hand", "palm down hand: medium-light skin tone", "shoo" - ], - "value" : "🫳🏼" + ] }, "🫳🏽", { - "value" : "🫳🏽", "keywords" : [ "dismiss", "drop", @@ -11351,7 +11350,8 @@ "palm down hand", "palm down hand: medium skin tone", "shoo" - ] + ], + "value" : "🫳🏽" }, "🫳🏾", { @@ -11396,6 +11396,7 @@ }, "🫴🏻", { + "value" : "🫴🏻", "keywords" : [ "beckon", "catch", @@ -11404,8 +11405,7 @@ "offer", "palm up hand", "palm up hand: light skin tone" - ], - "value" : "🫴🏻" + ] }, "🫴🏼", { @@ -11435,6 +11435,7 @@ }, "🫴🏾", { + "value" : "🫴🏾", "keywords" : [ "beckon", "catch", @@ -11443,8 +11444,7 @@ "offer", "palm up hand", "palm up hand: medium-dark skin tone" - ], - "value" : "🫴🏾" + ] }, "🫴🏿", { @@ -11461,6 +11461,7 @@ }, "👌", { + "value" : "👌", "keywords" : [ "awesome", "bet", @@ -11478,18 +11479,17 @@ "sure", "sweet", "three" - ], - "value" : "👌" + ] }, "👌🏻", { + "value" : "👌🏻", "keywords" : [ "hand", "light skin tone", "OK", "OK hand: light skin tone" - ], - "value" : "👌🏻" + ] }, "👌🏼", { @@ -11523,13 +11523,13 @@ }, "👌🏿", { + "value" : "👌🏿", "keywords" : [ "dark skin tone", "hand", "OK", "OK hand: dark skin tone" - ], - "value" : "👌🏿" + ] }, "🤌", { @@ -11552,6 +11552,7 @@ }, "🤌🏻", { + "value" : "🤌🏻", "keywords" : [ "fingers", "hand gesture", @@ -11560,8 +11561,7 @@ "pinched", "pinched fingers: light skin tone", "sarcastic" - ], - "value" : "🤌🏻" + ] }, "🤌🏼", { @@ -11591,7 +11591,6 @@ }, "🤌🏾", { - "value" : "🤌🏾", "keywords" : [ "fingers", "hand gesture", @@ -11600,10 +11599,12 @@ "pinched", "pinched fingers: medium-dark skin tone", "sarcastic" - ] + ], + "value" : "🤌🏾" }, "🤌🏿", { + "value" : "🤌🏿", "keywords" : [ "dark skin tone", "fingers", @@ -11612,8 +11613,7 @@ "pinched", "pinched fingers: dark skin tone", "sarcastic" - ], - "value" : "🤌🏿" + ] }, "🤏", { @@ -11641,64 +11641,64 @@ }, "🤏🏼", { - "value" : "🤏🏼", "keywords" : [ "medium-light skin tone", "pinching hand", "pinching hand: medium-light skin tone", "small amount" - ] + ], + "value" : "🤏🏼" }, "🤏🏽", { + "value" : "🤏🏽", "keywords" : [ "medium skin tone", "pinching hand", "pinching hand: medium skin tone", "small amount" - ], - "value" : "🤏🏽" + ] }, "🤏🏾", { + "value" : "🤏🏾", "keywords" : [ "medium-dark skin tone", "pinching hand", "pinching hand: medium-dark skin tone", "small amount" - ], - "value" : "🤏🏾" + ] }, "🤏🏿", { - "value" : "🤏🏿", "keywords" : [ "dark skin tone", "pinching hand", "pinching hand: dark skin tone", "small amount" - ] + ], + "value" : "🤏🏿" }, "✌️", { - "value" : "✌️", "keywords" : [ "hand", "peace", "v", "victory" - ] + ], + "value" : "✌️" }, "✌🏻", { - "value" : "✌🏻", "keywords" : [ "hand", "light skin tone", "v", "victory", "victory hand: light skin tone" - ] + ], + "value" : "✌🏻" }, "✌🏼", { @@ -11758,7 +11758,6 @@ }, "🤞🏻", { - "value" : "🤞🏻", "keywords" : [ "cross", "crossed fingers", @@ -11767,10 +11766,12 @@ "hand", "light skin tone", "luck" - ] + ], + "value" : "🤞🏻" }, "🤞🏼", { + "value" : "🤞🏼", "keywords" : [ "cross", "crossed fingers", @@ -11779,11 +11780,11 @@ "hand", "luck", "medium-light skin tone" - ], - "value" : "🤞🏼" + ] }, "🤞🏽", { + "value" : "🤞🏽", "keywords" : [ "cross", "crossed fingers", @@ -11792,8 +11793,7 @@ "hand", "luck", "medium skin tone" - ], - "value" : "🤞🏽" + ] }, "🤞🏾", { @@ -11810,7 +11810,6 @@ }, "🤞🏿", { - "value" : "🤞🏿", "keywords" : [ "cross", "crossed fingers", @@ -11819,7 +11818,8 @@ "finger", "hand", "luck" - ] + ], + "value" : "🤞🏿" }, "🫰", { @@ -11840,6 +11840,7 @@ }, "🫰🏻", { + "value" : "🫰🏻", "keywords" : [ "expensive", "hand with index finger and thumb crossed", @@ -11849,11 +11850,11 @@ "love", "money", "snap" - ], - "value" : "🫰🏻" + ] }, "🫰🏼", { + "value" : "🫰🏼", "keywords" : [ "expensive", "hand with index finger and thumb crossed", @@ -11863,8 +11864,7 @@ "medium-light skin tone", "money", "snap" - ], - "value" : "🫰🏼" + ] }, "🫰🏽", { @@ -11910,6 +11910,7 @@ }, "🤟", { + "value" : "🤟", "keywords" : [ "fingers", "gesture", @@ -11919,8 +11920,7 @@ "love-you", "three", "you" - ], - "value" : "🤟" + ] }, "🤟🏻", { @@ -11968,14 +11968,14 @@ }, "🤟🏿", { + "value" : "🤟🏿", "keywords" : [ "dark skin tone", "hand", "ILY", "love-you gesture", "love-you gesture: dark skin tone" - ], - "value" : "🤟🏿" + ] }, "🤘", { @@ -11990,7 +11990,6 @@ }, "🤘🏻", { - "value" : "🤘🏻", "keywords" : [ "finger", "hand", @@ -11999,10 +11998,12 @@ "rock-on", "sign of the horns", "sign of the horns: light skin tone" - ] + ], + "value" : "🤘🏻" }, "🤘🏼", { + "value" : "🤘🏼", "keywords" : [ "finger", "hand", @@ -12011,8 +12012,7 @@ "rock-on", "sign of the horns", "sign of the horns: medium-light skin tone" - ], - "value" : "🤘🏼" + ] }, "🤘🏽", { @@ -12029,7 +12029,6 @@ }, "🤘🏾", { - "value" : "🤘🏾", "keywords" : [ "finger", "hand", @@ -12038,7 +12037,8 @@ "rock-on", "sign of the horns", "sign of the horns: medium-dark skin tone" - ] + ], + "value" : "🤘🏾" }, "🤘🏿", { @@ -12067,7 +12067,6 @@ }, "🤙🏻", { - "value" : "🤙🏻", "keywords" : [ "call", "call me hand", @@ -12076,11 +12075,11 @@ "hang loose", "light skin tone", "Shaka" - ] + ], + "value" : "🤙🏻" }, "🤙🏼", { - "value" : "🤙🏼", "keywords" : [ "call", "call me hand", @@ -12089,10 +12088,12 @@ "hang loose", "medium-light skin tone", "Shaka" - ] + ], + "value" : "🤙🏼" }, "🤙🏽", { + "value" : "🤙🏽", "keywords" : [ "call", "call me hand", @@ -12101,12 +12102,10 @@ "hang loose", "medium skin tone", "Shaka" - ], - "value" : "🤙🏽" + ] }, "🤙🏾", { - "value" : "🤙🏾", "keywords" : [ "call", "call me hand", @@ -12115,7 +12114,8 @@ "hang loose", "medium-dark skin tone", "Shaka" - ] + ], + "value" : "🤙🏾" }, "🤙🏿", { @@ -12132,7 +12132,6 @@ }, "👈", { - "value" : "👈", "keywords" : [ "backhand", "finger", @@ -12141,10 +12140,12 @@ "left", "point", "pointing" - ] + ], + "value" : "👈" }, "👈🏻", { + "value" : "👈🏻", "keywords" : [ "backhand", "backhand index pointing left", @@ -12154,11 +12155,11 @@ "index", "light skin tone", "point" - ], - "value" : "👈🏻" + ] }, "👈🏼", { + "value" : "👈🏼", "keywords" : [ "backhand", "backhand index pointing left", @@ -12168,8 +12169,7 @@ "index", "medium-light skin tone", "point" - ], - "value" : "👈🏼" + ] }, "👈🏽", { @@ -12201,6 +12201,7 @@ }, "👈🏿", { + "value" : "👈🏿", "keywords" : [ "backhand", "backhand index pointing left", @@ -12210,11 +12211,11 @@ "hand", "index", "point" - ], - "value" : "👈🏿" + ] }, "👉", { + "value" : "👉", "keywords" : [ "backhand", "finger", @@ -12223,11 +12224,11 @@ "point", "pointing", "right" - ], - "value" : "👉" + ] }, "👉🏻", { + "value" : "👉🏻", "keywords" : [ "backhand", "backhand index pointing right", @@ -12237,12 +12238,10 @@ "index", "light skin tone", "point" - ], - "value" : "👉🏻" + ] }, "👉🏼", { - "value" : "👉🏼", "keywords" : [ "backhand", "backhand index pointing right", @@ -12252,7 +12251,8 @@ "index", "medium-light skin tone", "point" - ] + ], + "value" : "👉🏼" }, "👉🏽", { @@ -12270,7 +12270,6 @@ }, "👉🏾", { - "value" : "👉🏾", "keywords" : [ "backhand", "backhand index pointing right", @@ -12280,7 +12279,8 @@ "index", "medium-dark skin tone", "point" - ] + ], + "value" : "👉🏾" }, "👉🏿", { @@ -12311,6 +12311,7 @@ }, "👆🏻", { + "value" : "👆🏻", "keywords" : [ "backhand", "backhand index pointing up", @@ -12320,8 +12321,7 @@ "light skin tone", "point", "up" - ], - "value" : "👆🏻" + ] }, "👆🏼", { @@ -12339,7 +12339,6 @@ }, "👆🏽", { - "value" : "👆🏽", "keywords" : [ "backhand", "backhand index pointing up", @@ -12349,7 +12348,8 @@ "medium skin tone", "point", "up" - ] + ], + "value" : "👆🏽" }, "👆🏾", { @@ -12381,23 +12381,23 @@ }, "🖕", { + "value" : "🖕", "keywords" : [ "finger", "hand", "middle" - ], - "value" : "🖕" + ] }, "🖕🏻", { - "value" : "🖕🏻", "keywords" : [ "finger", "hand", "light skin tone", "middle finger", "middle finger: light skin tone" - ] + ], + "value" : "🖕🏻" }, "🖕🏼", { @@ -12423,14 +12423,14 @@ }, "🖕🏾", { - "value" : "🖕🏾", "keywords" : [ "finger", "hand", "medium-dark skin tone", "middle finger", "middle finger: medium-dark skin tone" - ] + ], + "value" : "🖕🏾" }, "🖕🏿", { @@ -12445,6 +12445,7 @@ }, "👇", { + "value" : "👇", "keywords" : [ "backhand", "down", @@ -12453,8 +12454,7 @@ "index", "point", "pointing" - ], - "value" : "👇" + ] }, "👇🏻", { @@ -12486,7 +12486,6 @@ }, "👇🏽", { - "value" : "👇🏽", "keywords" : [ "backhand", "backhand index pointing down", @@ -12496,7 +12495,8 @@ "hand", "medium skin tone", "point" - ] + ], + "value" : "👇🏽" }, "👇🏾", { @@ -12514,6 +12514,7 @@ }, "👇🏿", { + "value" : "👇🏿", "keywords" : [ "backhand", "backhand index pointing down", @@ -12523,12 +12524,10 @@ "finger", "hand", "point" - ], - "value" : "👇🏿" + ] }, "☝️", { - "value" : "☝️", "keywords" : [ "finger", "hand", @@ -12537,7 +12536,8 @@ "pointing", "this", "up" - ] + ], + "value" : "☝️" }, "☝🏻", { @@ -12555,6 +12555,7 @@ }, "☝🏼", { + "value" : "☝🏼", "keywords" : [ "finger", "hand", @@ -12564,11 +12565,11 @@ "medium-light skin tone", "point", "up" - ], - "value" : "☝🏼" + ] }, "☝🏽", { + "value" : "☝🏽", "keywords" : [ "finger", "hand", @@ -12578,11 +12579,11 @@ "medium skin tone", "point", "up" - ], - "value" : "☝🏽" + ] }, "☝🏾", { + "value" : "☝🏾", "keywords" : [ "finger", "hand", @@ -12592,8 +12593,7 @@ "medium-dark skin tone", "point", "up" - ], - "value" : "☝🏾" + ] }, "☝🏿", { @@ -12611,7 +12611,6 @@ }, "🫵", { - "value" : "🫵", "keywords" : [ "at", "finger", @@ -12621,7 +12620,8 @@ "poke", "viewer", "you" - ] + ], + "value" : "🫵" }, "🫵🏻", { @@ -12636,14 +12636,14 @@ }, "🫵🏼", { - "value" : "🫵🏼", "keywords" : [ "index pointing at the viewer", "index pointing at the viewer: medium-light skin tone", "medium-light skin tone", "point", "you" - ] + ], + "value" : "🫵🏼" }, "🫵🏽", { @@ -12669,14 +12669,14 @@ }, "🫵🏿", { + "value" : "🫵🏿", "keywords" : [ "dark skin tone", "index pointing at the viewer", "index pointing at the viewer: dark skin tone", "point", "you" - ], - "value" : "🫵🏿" + ] }, "👍", { @@ -12719,7 +12719,6 @@ }, "👍🏽", { - "value" : "👍🏽", "keywords" : [ "+1", "hand", @@ -12728,11 +12727,11 @@ "thumbs up", "thumbs up: medium skin tone", "up" - ] + ], + "value" : "👍🏽" }, "👍🏾", { - "value" : "👍🏾", "keywords" : [ "+1", "hand", @@ -12741,10 +12740,12 @@ "thumbs up", "thumbs up: medium-dark skin tone", "up" - ] + ], + "value" : "👍🏾" }, "👍🏿", { + "value" : "👍🏿", "keywords" : [ "+1", "dark skin tone", @@ -12753,8 +12754,7 @@ "thumbs up", "thumbs up: dark skin tone", "up" - ], - "value" : "👍🏿" + ] }, "👎", { @@ -12774,6 +12774,7 @@ }, "👎🏻", { + "value" : "👎🏻", "keywords" : [ "-1", "down", @@ -12782,8 +12783,7 @@ "thumb", "thumbs down", "thumbs down: light skin tone" - ], - "value" : "👎🏻" + ] }, "👎🏼", { @@ -12800,7 +12800,6 @@ }, "👎🏽", { - "value" : "👎🏽", "keywords" : [ "-1", "down", @@ -12809,10 +12808,12 @@ "thumb", "thumbs down", "thumbs down: medium skin tone" - ] + ], + "value" : "👎🏽" }, "👎🏾", { + "value" : "👎🏾", "keywords" : [ "-1", "down", @@ -12821,12 +12822,10 @@ "thumb", "thumbs down", "thumbs down: medium-dark skin tone" - ], - "value" : "👎🏾" + ] }, "👎🏿", { - "value" : "👎🏿", "keywords" : [ "-1", "dark skin tone", @@ -12835,7 +12834,8 @@ "thumb", "thumbs down", "thumbs down: dark skin tone" - ] + ], + "value" : "👎🏿" }, "✊", { @@ -12864,6 +12864,7 @@ }, "✊🏼", { + "value" : "✊🏼", "keywords" : [ "clenched", "fist", @@ -12872,8 +12873,7 @@ "punch", "raised fist", "raised fist: medium-light skin tone" - ], - "value" : "✊🏼" + ] }, "✊🏽", { @@ -12916,6 +12916,7 @@ }, "👊", { + "value" : "👊", "keywords" : [ "absolutely", "agree", @@ -12933,8 +12934,7 @@ "punch", "rock", "ttyl" - ], - "value" : "👊" + ] }, "👊🏻", { @@ -12990,7 +12990,6 @@ }, "👊🏿", { - "value" : "👊🏿", "keywords" : [ "clenched", "dark skin tone", @@ -12999,16 +12998,17 @@ "oncoming fist", "oncoming fist: dark skin tone", "punch" - ] + ], + "value" : "👊🏿" }, "🤛", { - "value" : "🤛", "keywords" : [ "fist", "left-facing", "leftwards" - ] + ], + "value" : "🤛" }, "🤛🏻", { @@ -13045,34 +13045,34 @@ }, "🤛🏾", { + "value" : "🤛🏾", "keywords" : [ "fist", "left-facing fist", "left-facing fist: medium-dark skin tone", "leftwards", "medium-dark skin tone" - ], - "value" : "🤛🏾" + ] }, "🤛🏿", { + "value" : "🤛🏿", "keywords" : [ "dark skin tone", "fist", "left-facing fist", "left-facing fist: dark skin tone", "leftwards" - ], - "value" : "🤛🏿" + ] }, "🤜", { + "value" : "🤜", "keywords" : [ "fist", "right-facing", "rightwards" - ], - "value" : "🤜" + ] }, "🤜🏻", { @@ -13087,36 +13087,36 @@ }, "🤜🏼", { + "value" : "🤜🏼", "keywords" : [ "fist", "medium-light skin tone", "right-facing fist", "right-facing fist: medium-light skin tone", "rightwards" - ], - "value" : "🤜🏼" + ] }, "🤜🏽", { + "value" : "🤜🏽", "keywords" : [ "fist", "medium skin tone", "right-facing fist", "right-facing fist: medium skin tone", "rightwards" - ], - "value" : "🤜🏽" + ] }, "🤜🏾", { + "value" : "🤜🏾", "keywords" : [ "fist", "medium-dark skin tone", "right-facing fist", "right-facing fist: medium-dark skin tone", "rightwards" - ], - "value" : "🤜🏾" + ] }, "🤜🏿", { @@ -13164,14 +13164,14 @@ }, "👏🏼", { - "value" : "👏🏼", "keywords" : [ "clap", "clapping hands", "clapping hands: medium-light skin tone", "hand", "medium-light skin tone" - ] + ], + "value" : "👏🏼" }, "👏🏽", { @@ -13197,14 +13197,14 @@ }, "👏🏿", { + "value" : "👏🏿", "keywords" : [ "clap", "clapping hands", "clapping hands: dark skin tone", "dark skin tone", "hand" - ], - "value" : "👏🏿" + ] }, "🙌", { @@ -13222,6 +13222,7 @@ }, "🙌🏻", { + "value" : "🙌🏻", "keywords" : [ "celebration", "gesture", @@ -13231,11 +13232,11 @@ "raised", "raising hands", "raising hands: light skin tone" - ], - "value" : "🙌🏻" + ] }, "🙌🏼", { + "value" : "🙌🏼", "keywords" : [ "celebration", "gesture", @@ -13245,8 +13246,7 @@ "raised", "raising hands", "raising hands: medium-light skin tone" - ], - "value" : "🙌🏼" + ] }, "🙌🏽", { @@ -13323,13 +13323,13 @@ }, "🫶🏽", { + "value" : "🫶🏽", "keywords" : [ "heart hands", "heart hands: medium skin tone", "love", "medium skin tone" - ], - "value" : "🫶🏽" + ] }, "🫶🏾", { @@ -13365,14 +13365,14 @@ }, "👐🏻", { - "value" : "👐🏻", "keywords" : [ "hand", "light skin tone", "open", "open hands", "open hands: light skin tone" - ] + ], + "value" : "👐🏻" }, "👐🏼", { @@ -13387,14 +13387,14 @@ }, "👐🏽", { - "value" : "👐🏽", "keywords" : [ "hand", "medium skin tone", "open", "open hands", "open hands: medium skin tone" - ] + ], + "value" : "👐🏽" }, "👐🏾", { @@ -13435,13 +13435,13 @@ }, "🤲🏻", { - "value" : "🤲🏻", "keywords" : [ "light skin tone", "palms up together", "palms up together: light skin tone", "prayer" - ] + ], + "value" : "🤲🏻" }, "🤲🏼", { @@ -13485,7 +13485,6 @@ }, "🤝", { - "value" : "🤝", "keywords" : [ "agreement", "deal", @@ -13493,7 +13492,8 @@ "handshake", "meeting", "shake" - ] + ], + "value" : "🤝" }, "🤝🏻", { @@ -13523,7 +13523,6 @@ }, "🤝🏽", { - "value" : "🤝🏽", "keywords" : [ "agreement", "hand", @@ -13532,7 +13531,8 @@ "medium skin tone", "meeting", "shake" - ] + ], + "value" : "🤝🏽" }, "🤝🏾", { @@ -13549,6 +13549,7 @@ }, "🤝🏿", { + "value" : "🤝🏿", "keywords" : [ "agreement", "dark skin tone", @@ -13557,8 +13558,7 @@ "handshake: dark skin tone", "meeting", "shake" - ], - "value" : "🤝🏿" + ] }, "🫱🏻‍🫲🏼", { @@ -13576,7 +13576,6 @@ }, "🫱🏻‍🫲🏽", { - "value" : "🫱🏻‍🫲🏽", "keywords" : [ "agreement", "hand", @@ -13586,11 +13585,11 @@ "medium skin tone", "meeting", "shake" - ] + ], + "value" : "🫱🏻‍🫲🏽" }, "🫱🏻‍🫲🏾", { - "value" : "🫱🏻‍🫲🏾", "keywords" : [ "agreement", "hand", @@ -13600,11 +13599,11 @@ "medium-dark skin tone", "meeting", "shake" - ] + ], + "value" : "🫱🏻‍🫲🏾" }, "🫱🏻‍🫲🏿", { - "value" : "🫱🏻‍🫲🏿", "keywords" : [ "agreement", "dark skin tone", @@ -13614,7 +13613,8 @@ "light skin tone", "meeting", "shake" - ] + ], + "value" : "🫱🏻‍🫲🏿" }, "🫱🏼‍🫲🏻", { @@ -13632,7 +13632,6 @@ }, "🫱🏼‍🫲🏽", { - "value" : "🫱🏼‍🫲🏽", "keywords" : [ "agreement", "hand", @@ -13642,7 +13641,8 @@ "medium-light skin tone", "meeting", "shake" - ] + ], + "value" : "🫱🏼‍🫲🏽" }, "🫱🏼‍🫲🏾", { @@ -13660,7 +13660,6 @@ }, "🫱🏼‍🫲🏿", { - "value" : "🫱🏼‍🫲🏿", "keywords" : [ "agreement", "dark skin tone", @@ -13670,7 +13669,8 @@ "medium-light skin tone", "meeting", "shake" - ] + ], + "value" : "🫱🏼‍🫲🏿" }, "🫱🏽‍🫲🏻", { @@ -13688,6 +13688,7 @@ }, "🫱🏽‍🫲🏼", { + "value" : "🫱🏽‍🫲🏼", "keywords" : [ "agreement", "hand", @@ -13697,12 +13698,10 @@ "medium-light skin tone", "meeting", "shake" - ], - "value" : "🫱🏽‍🫲🏼" + ] }, "🫱🏽‍🫲🏾", { - "value" : "🫱🏽‍🫲🏾", "keywords" : [ "agreement", "hand", @@ -13712,11 +13711,11 @@ "medium-dark skin tone", "meeting", "shake" - ] + ], + "value" : "🫱🏽‍🫲🏾" }, "🫱🏽‍🫲🏿", { - "value" : "🫱🏽‍🫲🏿", "keywords" : [ "agreement", "dark skin tone", @@ -13726,11 +13725,11 @@ "medium skin tone", "meeting", "shake" - ] + ], + "value" : "🫱🏽‍🫲🏿" }, "🫱🏾‍🫲🏻", { - "value" : "🫱🏾‍🫲🏻", "keywords" : [ "agreement", "hand", @@ -13740,7 +13739,8 @@ "medium-dark skin tone", "meeting", "shake" - ] + ], + "value" : "🫱🏾‍🫲🏻" }, "🫱🏾‍🫲🏼", { @@ -13800,6 +13800,7 @@ }, "🫱🏿‍🫲🏼", { + "value" : "🫱🏿‍🫲🏼", "keywords" : [ "agreement", "dark skin tone", @@ -13809,8 +13810,7 @@ "medium-light skin tone", "meeting", "shake" - ], - "value" : "🫱🏿‍🫲🏼" + ] }, "🫱🏿‍🫲🏽", { @@ -13842,6 +13842,7 @@ }, "🙏", { + "value" : "🙏", "keywords" : [ "appreciate", "ask", @@ -13858,8 +13859,7 @@ "pray", "thanks", "thx" - ], - "value" : "🙏" + ] }, "🙏🏻", { @@ -13911,7 +13911,6 @@ }, "🙏🏾", { - "value" : "🙏🏾", "keywords" : [ "ask", "folded hands", @@ -13923,10 +13922,12 @@ "please", "pray", "thanks" - ] + ], + "value" : "🙏🏾" }, "🙏🏿", { + "value" : "🙏🏿", "keywords" : [ "ask", "dark skin tone", @@ -13938,17 +13939,16 @@ "please", "pray", "thanks" - ], - "value" : "🙏🏿" + ] }, "✍️", { + "value" : "✍️", "keywords" : [ "hand", "write", "writing" - ], - "value" : "✍️" + ] }, "✍🏻", { @@ -14087,12 +14087,12 @@ }, "🤳", { - "value" : "🤳", "keywords" : [ "camera", "phone", "selfie" - ] + ], + "value" : "🤳" }, "🤳🏻", { @@ -14151,7 +14151,6 @@ }, "💪", { - "value" : "💪", "keywords" : [ "arm", "beast", @@ -14169,7 +14168,8 @@ "ripped", "strong", "weightlift" - ] + ], + "value" : "💪" }, "💪🏻", { @@ -14186,6 +14186,7 @@ }, "💪🏼", { + "value" : "💪🏼", "keywords" : [ "biceps", "comic", @@ -14194,8 +14195,7 @@ "flexed biceps: medium-light skin tone", "medium-light skin tone", "muscle" - ], - "value" : "💪🏼" + ] }, "💪🏽", { @@ -14238,13 +14238,13 @@ }, "🦾", { - "value" : "🦾", "keywords" : [ "accessibility", "arm", "mechanical", "prosthetic" - ] + ], + "value" : "🦾" }, "🦿", { @@ -14258,7 +14258,6 @@ }, "🦵", { - "value" : "🦵", "keywords" : [ "bent", "foot", @@ -14266,7 +14265,8 @@ "knee", "leg", "limb" - ] + ], + "value" : "🦵" }, "🦵🏻", { @@ -14292,14 +14292,14 @@ }, "🦵🏽", { + "value" : "🦵🏽", "keywords" : [ "kick", "leg", "leg: medium skin tone", "limb", "medium skin tone" - ], - "value" : "🦵🏽" + ] }, "🦵🏾", { @@ -14314,14 +14314,14 @@ }, "🦵🏿", { + "value" : "🦵🏿", "keywords" : [ "dark skin tone", "kick", "leg", "leg: dark skin tone", "limb" - ], - "value" : "🦵🏿" + ] }, "🦶", { @@ -14347,14 +14347,14 @@ }, "🦶🏼", { + "value" : "🦶🏼", "keywords" : [ "foot", "foot: medium-light skin tone", "kick", "medium-light skin tone", "stomp" - ], - "value" : "🦶🏼" + ] }, "🦶🏽", { @@ -14380,14 +14380,14 @@ }, "🦶🏿", { - "value" : "🦶🏿", "keywords" : [ "dark skin tone", "foot", "foot: dark skin tone", "kick", "stomp" - ] + ], + "value" : "🦶🏿" }, "👂", { @@ -14455,58 +14455,58 @@ }, "🦻", { - "value" : "🦻", "keywords" : [ "accessibility", "aid", "ear", "hard", "hearing" - ] + ], + "value" : "🦻" }, "🦻🏻", { - "value" : "🦻🏻", "keywords" : [ "accessibility", "ear with hearing aid", "ear with hearing aid: light skin tone", "hard of hearing", "light skin tone" - ] + ], + "value" : "🦻🏻" }, "🦻🏼", { + "value" : "🦻🏼", "keywords" : [ "accessibility", "ear with hearing aid", "ear with hearing aid: medium-light skin tone", "hard of hearing", "medium-light skin tone" - ], - "value" : "🦻🏼" + ] }, "🦻🏽", { + "value" : "🦻🏽", "keywords" : [ "accessibility", "ear with hearing aid", "ear with hearing aid: medium skin tone", "hard of hearing", "medium skin tone" - ], - "value" : "🦻🏽" + ] }, "🦻🏾", { + "value" : "🦻🏾", "keywords" : [ "accessibility", "ear with hearing aid", "ear with hearing aid: medium-dark skin tone", "hard of hearing", "medium-dark skin tone" - ], - "value" : "🦻🏾" + ] }, "🦻🏿", { @@ -14584,15 +14584,16 @@ }, "🧠", { + "value" : "🧠", "keywords" : [ "brain", "intelligent", "smart" - ], - "value" : "🧠" + ] }, "🫀", { + "value" : "🫀", "keywords" : [ "anatomical", "beat", @@ -14603,8 +14604,7 @@ "pulse", "real", "red" - ], - "value" : "🫀" + ] }, "🫁", { @@ -14661,13 +14661,13 @@ }, "👁️", { - "value" : "👁️", "keywords" : [ "1", "body", "eye", "one" - ] + ], + "value" : "👁️" }, "👅", { @@ -14681,7 +14681,6 @@ }, "👄", { - "value" : "👄", "keywords" : [ "beauty", "body", @@ -14690,11 +14689,11 @@ "lips", "lipstick", "mouth" - ] + ], + "value" : "👄" }, "🫦", { - "value" : "🫦", "keywords" : [ "anxious", "bite", @@ -14710,10 +14709,12 @@ "uncomfortable", "worried", "worry" - ] + ], + "value" : "🫦" }, "👶", { + "value" : "👶", "keywords" : [ "babies", "baby", @@ -14723,18 +14724,17 @@ "newborn", "pregnant", "young" - ], - "value" : "👶" + ] }, "👶🏻", { + "value" : "👶🏻", "keywords" : [ "baby", "baby: light skin tone", "light skin tone", "young" - ], - "value" : "👶🏻" + ] }, "👶🏼", { @@ -14748,33 +14748,33 @@ }, "👶🏽", { + "value" : "👶🏽", "keywords" : [ "baby", "baby: medium skin tone", "medium skin tone", "young" - ], - "value" : "👶🏽" + ] }, "👶🏾", { - "value" : "👶🏾", "keywords" : [ "baby", "baby: medium-dark skin tone", "medium-dark skin tone", "young" - ] + ], + "value" : "👶🏾" }, "👶🏿", { - "value" : "👶🏿", "keywords" : [ "baby", "baby: dark skin tone", "dark skin tone", "young" - ] + ], + "value" : "👶🏿" }, "🧒", { @@ -14790,6 +14790,7 @@ }, "🧒🏻", { + "value" : "🧒🏻", "keywords" : [ "child", "child: light skin tone", @@ -14797,8 +14798,7 @@ "light skin tone", "unspecified gender", "young" - ], - "value" : "🧒🏻" + ] }, "🧒🏼", { @@ -14814,7 +14814,6 @@ }, "🧒🏽", { - "value" : "🧒🏽", "keywords" : [ "child", "child: medium skin tone", @@ -14822,7 +14821,8 @@ "medium skin tone", "unspecified gender", "young" - ] + ], + "value" : "🧒🏽" }, "🧒🏾", { @@ -14838,7 +14838,6 @@ }, "🧒🏿", { - "value" : "🧒🏿", "keywords" : [ "child", "child: dark skin tone", @@ -14846,11 +14845,11 @@ "gender-neutral", "unspecified gender", "young" - ] + ], + "value" : "🧒🏿" }, "👦", { - "value" : "👦", "keywords" : [ "boy", "bright-eyed", @@ -14860,7 +14859,8 @@ "son", "young", "younger" - ] + ], + "value" : "👦" }, "👦🏻", { @@ -14874,47 +14874,46 @@ }, "👦🏼", { - "value" : "👦🏼", "keywords" : [ "boy", "boy: medium-light skin tone", "medium-light skin tone", "young" - ] + ], + "value" : "👦🏼" }, "👦🏽", { + "value" : "👦🏽", "keywords" : [ "boy", "boy: medium skin tone", "medium skin tone", "young" - ], - "value" : "👦🏽" + ] }, "👦🏾", { + "value" : "👦🏾", "keywords" : [ "boy", "boy: medium-dark skin tone", "medium-dark skin tone", "young" - ], - "value" : "👦🏾" + ] }, "👦🏿", { + "value" : "👦🏿", "keywords" : [ "boy", "boy: dark skin tone", "dark skin tone", "young" - ], - "value" : "👦🏿" + ] }, "👧", { - "value" : "👧", "keywords" : [ "bright-eyed", "child", @@ -14926,7 +14925,8 @@ "young", "younger", "zodiac" - ] + ], + "value" : "👧" }, "👧🏻", { @@ -14942,6 +14942,7 @@ }, "👧🏼", { + "value" : "👧🏼", "keywords" : [ "girl", "girl: medium-light skin tone", @@ -14949,11 +14950,11 @@ "Virgo", "young", "zodiac" - ], - "value" : "👧🏼" + ] }, "👧🏽", { + "value" : "👧🏽", "keywords" : [ "girl", "girl: medium skin tone", @@ -14961,8 +14962,7 @@ "Virgo", "young", "zodiac" - ], - "value" : "👧🏽" + ] }, "👧🏾", { @@ -14978,7 +14978,6 @@ }, "👧🏿", { - "value" : "👧🏿", "keywords" : [ "dark skin tone", "girl", @@ -14986,19 +14985,19 @@ "Virgo", "young", "zodiac" - ] + ], + "value" : "👧🏿" }, "🧑", { + "value" : "🧑", "keywords" : [ "adult", "person" - ], - "value" : "🧑" + ] }, "🧑🏻", { - "value" : "🧑🏻", "keywords" : [ "adult", "gender-neutral", @@ -15006,7 +15005,8 @@ "person", "person: light skin tone", "unspecified gender" - ] + ], + "value" : "🧑🏻" }, "🧑🏼", { @@ -15034,7 +15034,6 @@ }, "🧑🏾", { - "value" : "🧑🏾", "keywords" : [ "adult", "gender-neutral", @@ -15042,7 +15041,8 @@ "person", "person: medium-dark skin tone", "unspecified gender" - ] + ], + "value" : "🧑🏾" }, "🧑🏿", { @@ -15092,7 +15092,6 @@ }, "👱🏽", { - "value" : "👱🏽", "keywords" : [ "blond", "blond-haired person", @@ -15100,7 +15099,8 @@ "medium skin tone", "person: blond hair", "person: medium skin tone, blond hair" - ] + ], + "value" : "👱🏽" }, "👱🏾", { @@ -15128,52 +15128,52 @@ }, "👨", { + "value" : "👨", "keywords" : [ "adult", "bro", "man" - ], - "value" : "👨" + ] }, "👨🏻", { + "value" : "👨🏻", "keywords" : [ "adult", "light skin tone", "man", "man: light skin tone" - ], - "value" : "👨🏻" + ] }, "👨🏼", { - "value" : "👨🏼", "keywords" : [ "adult", "man", "man: medium-light skin tone", "medium-light skin tone" - ] + ], + "value" : "👨🏼" }, "👨🏽", { + "value" : "👨🏽", "keywords" : [ "adult", "man", "man: medium skin tone", "medium skin tone" - ], - "value" : "👨🏽" + ] }, "👨🏾", { + "value" : "👨🏾", "keywords" : [ "adult", "man", "man: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "👨🏾" + ] }, "👨🏿", { @@ -15230,14 +15230,14 @@ }, "🧔🏾", { - "value" : "🧔🏾", "keywords" : [ "beard", "medium-dark skin tone", "person", "person: beard", "person: medium-dark skin tone, beard" - ] + ], + "value" : "🧔🏾" }, "🧔🏿", { @@ -15252,35 +15252,35 @@ }, "🧔‍♂️", { - "value" : "🧔‍♂️", "keywords" : [ "beard", "bearded", "man", "whiskers" - ] + ], + "value" : "🧔‍♂️" }, "🧔🏻‍♂️", { - "value" : "🧔🏻‍♂️", "keywords" : [ "beard", "light skin tone", "man", "man: beard", "man: light skin tone, beard" - ] + ], + "value" : "🧔🏻‍♂️" }, "🧔🏼‍♂️", { + "value" : "🧔🏼‍♂️", "keywords" : [ "beard", "man", "man: beard", "man: medium-light skin tone, beard", "medium-light skin tone" - ], - "value" : "🧔🏼‍♂️" + ] }, "🧔🏽‍♂️", { @@ -15317,13 +15317,13 @@ }, "🧔‍♀️", { + "value" : "🧔‍♀️", "keywords" : [ "beard", "bearded", "whiskers", "woman" - ], - "value" : "🧔‍♀️" + ] }, "🧔🏻‍♀️", { @@ -15338,14 +15338,14 @@ }, "🧔🏼‍♀️", { + "value" : "🧔🏼‍♀️", "keywords" : [ "beard", "medium-light skin tone", "woman", "woman: beard", "woman: medium-light skin tone, beard" - ], - "value" : "🧔🏼‍♀️" + ] }, "🧔🏽‍♀️", { @@ -15360,25 +15360,25 @@ }, "🧔🏾‍♀️", { - "value" : "🧔🏾‍♀️", "keywords" : [ "beard", "medium-dark skin tone", "woman", "woman: beard", "woman: medium-dark skin tone, beard" - ] + ], + "value" : "🧔🏾‍♀️" }, "🧔🏿‍♀️", { - "value" : "🧔🏿‍♀️", "keywords" : [ "beard", "dark skin tone", "woman", "woman: beard", "woman: dark skin tone, beard" - ] + ], + "value" : "🧔🏿‍♀️" }, "👨‍🦰", { @@ -15392,14 +15392,14 @@ }, "👨🏻‍🦰", { - "value" : "👨🏻‍🦰", "keywords" : [ "adult", "light skin tone", "man", "man: light skin tone, red hair", "red hair" - ] + ], + "value" : "👨🏻‍🦰" }, "👨🏼‍🦰", { @@ -15447,24 +15447,24 @@ }, "👨‍🦱", { + "value" : "👨‍🦱", "keywords" : [ "adult", "curly hair", "man", "man: curly hair" - ], - "value" : "👨‍🦱" + ] }, "👨🏻‍🦱", { - "value" : "👨🏻‍🦱", "keywords" : [ "adult", "curly hair", "light skin tone", "man", "man: light skin tone, curly hair" - ] + ], + "value" : "👨🏻‍🦱" }, "👨🏼‍🦱", { @@ -15490,14 +15490,14 @@ }, "👨🏾‍🦱", { - "value" : "👨🏾‍🦱", "keywords" : [ "adult", "curly hair", "man", "man: medium-dark skin tone, curly hair", "medium-dark skin tone" - ] + ], + "value" : "👨🏾‍🦱" }, "👨🏿‍🦱", { @@ -15533,36 +15533,36 @@ }, "👨🏼‍🦳", { - "value" : "👨🏼‍🦳", "keywords" : [ "adult", "man", "man: medium-light skin tone, white hair", "medium-light skin tone", "white hair" - ] + ], + "value" : "👨🏼‍🦳" }, "👨🏽‍🦳", { + "value" : "👨🏽‍🦳", "keywords" : [ "adult", "man", "man: medium skin tone, white hair", "medium skin tone", "white hair" - ], - "value" : "👨🏽‍🦳" + ] }, "👨🏾‍🦳", { + "value" : "👨🏾‍🦳", "keywords" : [ "adult", "man", "man: medium-dark skin tone, white hair", "medium-dark skin tone", "white hair" - ], - "value" : "👨🏾‍🦳" + ] }, "👨🏿‍🦳", { @@ -15577,24 +15577,24 @@ }, "👨‍🦲", { - "value" : "👨‍🦲", "keywords" : [ "adult", "bald", "man", "man: bald" - ] + ], + "value" : "👨‍🦲" }, "👨🏻‍🦲", { + "value" : "👨🏻‍🦲", "keywords" : [ "adult", "bald", "light skin tone", "man", "man: light skin tone, bald" - ], - "value" : "👨🏻‍🦲" + ] }, "👨🏼‍🦲", { @@ -15609,14 +15609,14 @@ }, "👨🏽‍🦲", { + "value" : "👨🏽‍🦲", "keywords" : [ "adult", "bald", "man", "man: medium skin tone, bald", "medium skin tone" - ], - "value" : "👨🏽‍🦲" + ] }, "👨🏾‍🦲", { @@ -15681,13 +15681,13 @@ }, "👩🏾", { + "value" : "👩🏾", "keywords" : [ "adult", "medium-dark skin tone", "woman", "woman: medium-dark skin tone" - ], - "value" : "👩🏾" + ] }, "👩🏿", { @@ -15701,13 +15701,13 @@ }, "👩‍🦰", { + "value" : "👩‍🦰", "keywords" : [ "adult", "red hair", "woman", "woman: red hair" - ], - "value" : "👩‍🦰" + ] }, "👩🏻‍🦰", { @@ -15722,14 +15722,14 @@ }, "👩🏼‍🦰", { - "value" : "👩🏼‍🦰", "keywords" : [ "adult", "medium-light skin tone", "red hair", "woman", "woman: medium-light skin tone, red hair" - ] + ], + "value" : "👩🏼‍🦰" }, "👩🏽‍🦰", { @@ -15755,14 +15755,14 @@ }, "👩🏿‍🦰", { - "value" : "👩🏿‍🦰", "keywords" : [ "adult", "dark skin tone", "red hair", "woman", "woman: dark skin tone, red hair" - ] + ], + "value" : "👩🏿‍🦰" }, "🧑‍🦰", { @@ -15791,6 +15791,7 @@ }, "🧑🏼‍🦰", { + "value" : "🧑🏼‍🦰", "keywords" : [ "adult", "gender-neutral", @@ -15799,12 +15800,10 @@ "person: medium-light skin tone, red hair", "red hair", "unspecified gender" - ], - "value" : "🧑🏼‍🦰" + ] }, "🧑🏽‍🦰", { - "value" : "🧑🏽‍🦰", "keywords" : [ "adult", "gender-neutral", @@ -15813,7 +15812,8 @@ "person: medium skin tone, red hair", "red hair", "unspecified gender" - ] + ], + "value" : "🧑🏽‍🦰" }, "🧑🏾‍🦰", { @@ -15830,7 +15830,6 @@ }, "🧑🏿‍🦰", { - "value" : "🧑🏿‍🦰", "keywords" : [ "adult", "dark skin tone", @@ -15839,7 +15838,8 @@ "person: dark skin tone, red hair", "red hair", "unspecified gender" - ] + ], + "value" : "🧑🏿‍🦰" }, "👩‍🦱", { @@ -15875,40 +15875,39 @@ }, "👩🏽‍🦱", { - "value" : "👩🏽‍🦱", "keywords" : [ "adult", "curly hair", "medium skin tone", "woman", "woman: medium skin tone, curly hair" - ] + ], + "value" : "👩🏽‍🦱" }, "👩🏾‍🦱", { + "value" : "👩🏾‍🦱", "keywords" : [ "adult", "curly hair", "medium-dark skin tone", "woman", "woman: medium-dark skin tone, curly hair" - ], - "value" : "👩🏾‍🦱" + ] }, "👩🏿‍🦱", { - "value" : "👩🏿‍🦱", "keywords" : [ "adult", "curly hair", "dark skin tone", "woman", "woman: dark skin tone, curly hair" - ] + ], + "value" : "👩🏿‍🦱" }, "🧑‍🦱", { - "value" : "🧑‍🦱", "keywords" : [ "adult", "curly hair", @@ -15916,10 +15915,12 @@ "person", "person: curly hair", "unspecified gender" - ] + ], + "value" : "🧑‍🦱" }, "🧑🏻‍🦱", { + "value" : "🧑🏻‍🦱", "keywords" : [ "adult", "curly hair", @@ -15928,11 +15929,11 @@ "person", "person: light skin tone, curly hair", "unspecified gender" - ], - "value" : "🧑🏻‍🦱" + ] }, "🧑🏼‍🦱", { + "value" : "🧑🏼‍🦱", "keywords" : [ "adult", "curly hair", @@ -15941,8 +15942,7 @@ "person", "person: medium-light skin tone, curly hair", "unspecified gender" - ], - "value" : "🧑🏼‍🦱" + ] }, "🧑🏽‍🦱", { @@ -15959,7 +15959,6 @@ }, "🧑🏾‍🦱", { - "value" : "🧑🏾‍🦱", "keywords" : [ "adult", "curly hair", @@ -15968,7 +15967,8 @@ "person", "person: medium-dark skin tone, curly hair", "unspecified gender" - ] + ], + "value" : "🧑🏾‍🦱" }, "🧑🏿‍🦱", { @@ -15985,13 +15985,13 @@ }, "👩‍🦳", { + "value" : "👩‍🦳", "keywords" : [ "adult", "white hair", "woman", "woman: white hair" - ], - "value" : "👩‍🦳" + ] }, "👩🏻‍🦳", { @@ -16039,17 +16039,18 @@ }, "👩🏿‍🦳", { - "value" : "👩🏿‍🦳", "keywords" : [ "adult", "dark skin tone", "white hair", "woman", "woman: dark skin tone, white hair" - ] + ], + "value" : "👩🏿‍🦳" }, "🧑‍🦳", { + "value" : "🧑‍🦳", "keywords" : [ "adult", "gender-neutral", @@ -16057,8 +16058,7 @@ "person: white hair", "unspecified gender", "white hair" - ], - "value" : "🧑‍🦳" + ] }, "🧑🏻‍🦳", { @@ -16114,6 +16114,7 @@ }, "🧑🏿‍🦳", { + "value" : "🧑🏿‍🦳", "keywords" : [ "adult", "dark skin tone", @@ -16122,8 +16123,7 @@ "person: dark skin tone, white hair", "unspecified gender", "white hair" - ], - "value" : "🧑🏿‍🦳" + ] }, "👩‍🦲", { @@ -16137,36 +16137,36 @@ }, "👩🏻‍🦲", { - "value" : "👩🏻‍🦲", "keywords" : [ "adult", "bald", "light skin tone", "woman", "woman: light skin tone, bald" - ] + ], + "value" : "👩🏻‍🦲" }, "👩🏼‍🦲", { - "value" : "👩🏼‍🦲", "keywords" : [ "adult", "bald", "medium-light skin tone", "woman", "woman: medium-light skin tone, bald" - ] + ], + "value" : "👩🏼‍🦲" }, "👩🏽‍🦲", { - "value" : "👩🏽‍🦲", "keywords" : [ "adult", "bald", "medium skin tone", "woman", "woman: medium skin tone, bald" - ] + ], + "value" : "👩🏽‍🦲" }, "👩🏾‍🦲", { @@ -16192,6 +16192,7 @@ }, "🧑‍🦲", { + "value" : "🧑‍🦲", "keywords" : [ "adult", "bald", @@ -16199,12 +16200,10 @@ "person", "person: bald", "unspecified gender" - ], - "value" : "🧑‍🦲" + ] }, "🧑🏻‍🦲", { - "value" : "🧑🏻‍🦲", "keywords" : [ "adult", "bald", @@ -16213,10 +16212,12 @@ "person", "person: light skin tone, bald", "unspecified gender" - ] + ], + "value" : "🧑🏻‍🦲" }, "🧑🏼‍🦲", { + "value" : "🧑🏼‍🦲", "keywords" : [ "adult", "bald", @@ -16225,11 +16226,11 @@ "person", "person: medium-light skin tone, bald", "unspecified gender" - ], - "value" : "🧑🏼‍🦲" + ] }, "🧑🏽‍🦲", { + "value" : "🧑🏽‍🦲", "keywords" : [ "adult", "bald", @@ -16238,11 +16239,11 @@ "person", "person: medium skin tone, bald", "unspecified gender" - ], - "value" : "🧑🏽‍🦲" + ] }, "🧑🏾‍🦲", { + "value" : "🧑🏾‍🦲", "keywords" : [ "adult", "bald", @@ -16251,12 +16252,10 @@ "person", "person: medium-dark skin tone, bald", "unspecified gender" - ], - "value" : "🧑🏾‍🦲" + ] }, "🧑🏿‍🦲", { - "value" : "🧑🏿‍🦲", "keywords" : [ "adult", "bald", @@ -16265,7 +16264,8 @@ "person", "person: dark skin tone, bald", "unspecified gender" - ] + ], + "value" : "🧑🏿‍🦲" }, "👱‍♀️", { @@ -16308,7 +16308,6 @@ }, "👱🏽‍♀️", { - "value" : "👱🏽‍♀️", "keywords" : [ "blond hair", "blond-haired woman", @@ -16318,10 +16317,12 @@ "woman", "woman: blond hair", "woman: medium skin tone, blond hair" - ] + ], + "value" : "👱🏽‍♀️" }, "👱🏾‍♀️", { + "value" : "👱🏾‍♀️", "keywords" : [ "blond hair", "blond-haired woman", @@ -16331,8 +16332,7 @@ "woman", "woman: blond hair", "woman: medium-dark skin tone, blond hair" - ], - "value" : "👱🏾‍♀️" + ] }, "👱🏿‍♀️", { @@ -16350,13 +16350,13 @@ }, "👱‍♂️", { + "value" : "👱‍♂️", "keywords" : [ "blond", "blond-haired", "hair", "man" - ], - "value" : "👱‍♂️" + ] }, "👱🏻‍♂️", { @@ -16399,6 +16399,7 @@ }, "👱🏾‍♂️", { + "value" : "👱🏾‍♂️", "keywords" : [ "blond", "blond-haired man", @@ -16407,12 +16408,10 @@ "man: blond hair", "man: medium-dark skin tone, blond hair", "medium-dark skin tone" - ], - "value" : "👱🏾‍♂️" + ] }, "👱🏿‍♂️", { - "value" : "👱🏿‍♂️", "keywords" : [ "blond", "blond-haired man", @@ -16421,11 +16420,11 @@ "man", "man: blond hair", "man: dark skin tone, blond hair" - ] + ], + "value" : "👱🏿‍♂️" }, "🧓", { - "value" : "🧓", "keywords" : [ "adult", "elderly", @@ -16433,11 +16432,11 @@ "old", "person", "wise" - ] + ], + "value" : "🧓" }, "🧓🏻", { - "value" : "🧓🏻", "keywords" : [ "adult", "gender-neutral", @@ -16446,11 +16445,11 @@ "older person", "older person: light skin tone", "unspecified gender" - ] + ], + "value" : "🧓🏻" }, "🧓🏼", { - "value" : "🧓🏼", "keywords" : [ "adult", "gender-neutral", @@ -16459,10 +16458,12 @@ "older person", "older person: medium-light skin tone", "unspecified gender" - ] + ], + "value" : "🧓🏼" }, "🧓🏽", { + "value" : "🧓🏽", "keywords" : [ "adult", "gender-neutral", @@ -16471,12 +16472,10 @@ "older person", "older person: medium skin tone", "unspecified gender" - ], - "value" : "🧓🏽" + ] }, "🧓🏾", { - "value" : "🧓🏾", "keywords" : [ "adult", "gender-neutral", @@ -16485,7 +16484,8 @@ "older person", "older person: medium-dark skin tone", "unspecified gender" - ] + ], + "value" : "🧓🏾" }, "🧓🏿", { @@ -16502,7 +16502,6 @@ }, "👴", { - "value" : "👴", "keywords" : [ "adult", "bald", @@ -16513,7 +16512,8 @@ "man", "old", "wise" - ] + ], + "value" : "👴" }, "👴🏻", { @@ -16528,25 +16528,25 @@ }, "👴🏼", { + "value" : "👴🏼", "keywords" : [ "adult", "man", "medium-light skin tone", "old", "old man: medium-light skin tone" - ], - "value" : "👴🏼" + ] }, "👴🏽", { - "value" : "👴🏽", "keywords" : [ "adult", "man", "medium skin tone", "old", "old man: medium skin tone" - ] + ], + "value" : "👴🏽" }, "👴🏾", { @@ -16572,7 +16572,6 @@ }, "👵", { - "value" : "👵", "keywords" : [ "adult", "elderly", @@ -16583,18 +16582,19 @@ "old", "wise", "woman" - ] + ], + "value" : "👵" }, "👵🏻", { + "value" : "👵🏻", "keywords" : [ "adult", "light skin tone", "old", "old woman: light skin tone", "woman" - ], - "value" : "👵🏻" + ] }, "👵🏼", { @@ -16609,14 +16609,14 @@ }, "👵🏽", { + "value" : "👵🏽", "keywords" : [ "adult", "medium skin tone", "old", "old woman: medium skin tone", "woman" - ], - "value" : "👵🏽" + ] }, "👵🏾", { @@ -16642,6 +16642,7 @@ }, "🙍", { + "value" : "🙍", "keywords" : [ "annoyed", "disappointed", @@ -16654,19 +16655,18 @@ "irritated", "person", "upset" - ], - "value" : "🙍" + ] }, "🙍🏻", { - "value" : "🙍🏻", "keywords" : [ "frown", "gesture", "light skin tone", "person frowning", "person frowning: light skin tone" - ] + ], + "value" : "🙍🏻" }, "🙍🏼", { @@ -16714,7 +16714,6 @@ }, "🙍‍♂️", { - "value" : "🙍‍♂️", "keywords" : [ "annoyed", "disappointed", @@ -16727,7 +16726,8 @@ "irritated", "man", "upset" - ] + ], + "value" : "🙍‍♂️" }, "🙍🏻‍♂️", { @@ -16764,14 +16764,14 @@ }, "🙍🏾‍♂️", { - "value" : "🙍🏾‍♂️", "keywords" : [ "frowning", "gesture", "man", "man frowning: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "🙍🏾‍♂️" }, "🙍🏿‍♂️", { @@ -16836,14 +16836,14 @@ }, "🙍🏾‍♀️", { - "value" : "🙍🏾‍♀️", "keywords" : [ "frowning", "gesture", "medium-dark skin tone", "woman", "woman frowning: medium-dark skin tone" - ] + ], + "value" : "🙍🏾‍♀️" }, "🙍🏿‍♀️", { @@ -16885,36 +16885,36 @@ }, "🙎🏼", { + "value" : "🙎🏼", "keywords" : [ "gesture", "medium-light skin tone", "person pouting", "person pouting: medium-light skin tone", "pouting" - ], - "value" : "🙎🏼" + ] }, "🙎🏽", { + "value" : "🙎🏽", "keywords" : [ "gesture", "medium skin tone", "person pouting", "person pouting: medium skin tone", "pouting" - ], - "value" : "🙎🏽" + ] }, "🙎🏾", { + "value" : "🙎🏾", "keywords" : [ "gesture", "medium-dark skin tone", "person pouting", "person pouting: medium-dark skin tone", "pouting" - ], - "value" : "🙎🏾" + ] }, "🙎🏿", { @@ -16945,61 +16945,62 @@ }, "🙎🏻‍♂️", { + "value" : "🙎🏻‍♂️", "keywords" : [ "gesture", "light skin tone", "man", "man pouting: light skin tone", "pouting" - ], - "value" : "🙎🏻‍♂️" + ] }, "🙎🏼‍♂️", { + "value" : "🙎🏼‍♂️", "keywords" : [ "gesture", "man", "man pouting: medium-light skin tone", "medium-light skin tone", "pouting" - ], - "value" : "🙎🏼‍♂️" + ] }, "🙎🏽‍♂️", { - "value" : "🙎🏽‍♂️", "keywords" : [ "gesture", "man", "man pouting: medium skin tone", "medium skin tone", "pouting" - ] + ], + "value" : "🙎🏽‍♂️" }, "🙎🏾‍♂️", { - "value" : "🙎🏾‍♂️", "keywords" : [ "gesture", "man", "man pouting: medium-dark skin tone", "medium-dark skin tone", "pouting" - ] + ], + "value" : "🙎🏾‍♂️" }, "🙎🏿‍♂️", { - "value" : "🙎🏿‍♂️", "keywords" : [ "dark skin tone", "gesture", "man", "man pouting: dark skin tone", "pouting" - ] + ], + "value" : "🙎🏿‍♂️" }, "🙎‍♀️", { + "value" : "🙎‍♀️", "keywords" : [ "disappointed", "downtrodden", @@ -17011,8 +17012,7 @@ "upset", "whine", "woman" - ], - "value" : "🙎‍♀️" + ] }, "🙎🏻‍♀️", { @@ -17027,25 +17027,25 @@ }, "🙎🏼‍♀️", { + "value" : "🙎🏼‍♀️", "keywords" : [ "gesture", "medium-light skin tone", "pouting", "woman", "woman pouting: medium-light skin tone" - ], - "value" : "🙎🏼‍♀️" + ] }, "🙎🏽‍♀️", { + "value" : "🙎🏽‍♀️", "keywords" : [ "gesture", "medium skin tone", "pouting", "woman", "woman pouting: medium skin tone" - ], - "value" : "🙎🏽‍♀️" + ] }, "🙎🏾‍♀️", { @@ -17071,7 +17071,6 @@ }, "🙅", { - "value" : "🙅", "keywords" : [ "forbidden", "gesture", @@ -17080,10 +17079,12 @@ "not", "person", "prohibit" - ] + ], + "value" : "🙅" }, "🙅🏻", { + "value" : "🙅🏻", "keywords" : [ "forbidden", "gesture", @@ -17092,8 +17093,7 @@ "person gesturing NO", "person gesturing NO: light skin tone", "prohibited" - ], - "value" : "🙅🏻" + ] }, "🙅🏼", { @@ -17110,6 +17110,7 @@ }, "🙅🏽", { + "value" : "🙅🏽", "keywords" : [ "forbidden", "gesture", @@ -17118,12 +17119,10 @@ "person gesturing NO", "person gesturing NO: medium skin tone", "prohibited" - ], - "value" : "🙅🏽" + ] }, "🙅🏾", { - "value" : "🙅🏾", "keywords" : [ "forbidden", "gesture", @@ -17132,11 +17131,11 @@ "person gesturing NO", "person gesturing NO: medium-dark skin tone", "prohibited" - ] + ], + "value" : "🙅🏾" }, "🙅🏿", { - "value" : "🙅🏿", "keywords" : [ "dark skin tone", "forbidden", @@ -17145,7 +17144,8 @@ "person gesturing NO", "person gesturing NO: dark skin tone", "prohibited" - ] + ], + "value" : "🙅🏿" }, "🙅‍♂️", { @@ -17176,6 +17176,7 @@ }, "🙅🏼‍♂️", { + "value" : "🙅🏼‍♂️", "keywords" : [ "forbidden", "gesture", @@ -17185,11 +17186,11 @@ "man gesturing NO: medium-light skin tone", "medium-light skin tone", "prohibited" - ], - "value" : "🙅🏼‍♂️" + ] }, "🙅🏽‍♂️", { + "value" : "🙅🏽‍♂️", "keywords" : [ "forbidden", "gesture", @@ -17199,12 +17200,10 @@ "man gesturing NO: medium skin tone", "medium skin tone", "prohibited" - ], - "value" : "🙅🏽‍♂️" + ] }, "🙅🏾‍♂️", { - "value" : "🙅🏾‍♂️", "keywords" : [ "forbidden", "gesture", @@ -17214,10 +17213,12 @@ "man gesturing NO: medium-dark skin tone", "medium-dark skin tone", "prohibited" - ] + ], + "value" : "🙅🏾‍♂️" }, "🙅🏿‍♂️", { + "value" : "🙅🏿‍♂️", "keywords" : [ "dark skin tone", "forbidden", @@ -17227,11 +17228,11 @@ "man gesturing NO", "man gesturing NO: dark skin tone", "prohibited" - ], - "value" : "🙅🏿‍♂️" + ] }, "🙅‍♀️", { + "value" : "🙅‍♀️", "keywords" : [ "forbidden", "gesture", @@ -17240,8 +17241,7 @@ "not", "prohibit", "woman" - ], - "value" : "🙅‍♀️" + ] }, "🙅🏻‍♀️", { @@ -17259,6 +17259,7 @@ }, "🙅🏼‍♀️", { + "value" : "🙅🏼‍♀️", "keywords" : [ "forbidden", "gesture", @@ -17268,11 +17269,11 @@ "woman", "woman gesturing NO", "woman gesturing NO: medium-light skin tone" - ], - "value" : "🙅🏼‍♀️" + ] }, "🙅🏽‍♀️", { + "value" : "🙅🏽‍♀️", "keywords" : [ "forbidden", "gesture", @@ -17282,12 +17283,10 @@ "woman", "woman gesturing NO", "woman gesturing NO: medium skin tone" - ], - "value" : "🙅🏽‍♀️" + ] }, "🙅🏾‍♀️", { - "value" : "🙅🏾‍♀️", "keywords" : [ "forbidden", "gesture", @@ -17297,7 +17296,8 @@ "woman", "woman gesturing NO", "woman gesturing NO: medium-dark skin tone" - ] + ], + "value" : "🙅🏾‍♀️" }, "🙅🏿‍♀️", { @@ -17315,7 +17315,6 @@ }, "🙆", { - "value" : "🙆", "keywords" : [ "exercise", "gesture", @@ -17324,11 +17323,11 @@ "OK", "omg", "person" - ] + ], + "value" : "🙆" }, "🙆🏻", { - "value" : "🙆🏻", "keywords" : [ "gesture", "hand", @@ -17336,7 +17335,8 @@ "OK", "person gesturing OK", "person gesturing OK: light skin tone" - ] + ], + "value" : "🙆🏻" }, "🙆🏼", { @@ -17352,6 +17352,7 @@ }, "🙆🏽", { + "value" : "🙆🏽", "keywords" : [ "gesture", "hand", @@ -17359,8 +17360,7 @@ "OK", "person gesturing OK", "person gesturing OK: medium skin tone" - ], - "value" : "🙆🏽" + ] }, "🙆🏾", { @@ -17376,6 +17376,7 @@ }, "🙆🏿", { + "value" : "🙆🏿", "keywords" : [ "dark skin tone", "gesture", @@ -17383,8 +17384,7 @@ "OK", "person gesturing OK", "person gesturing OK: dark skin tone" - ], - "value" : "🙆🏿" + ] }, "🙆‍♂️", { @@ -17427,6 +17427,7 @@ }, "🙆🏽‍♂️", { + "value" : "🙆🏽‍♂️", "keywords" : [ "gesture", "hand", @@ -17435,8 +17436,7 @@ "man gesturing OK: medium skin tone", "medium skin tone", "OK" - ], - "value" : "🙆🏽‍♂️" + ] }, "🙆🏾‍♂️", { @@ -17479,6 +17479,7 @@ }, "🙆🏻‍♀️", { + "value" : "🙆🏻‍♀️", "keywords" : [ "gesture", "hand", @@ -17487,12 +17488,10 @@ "woman", "woman gesturing OK", "woman gesturing OK: light skin tone" - ], - "value" : "🙆🏻‍♀️" + ] }, "🙆🏼‍♀️", { - "value" : "🙆🏼‍♀️", "keywords" : [ "gesture", "hand", @@ -17501,11 +17500,11 @@ "woman", "woman gesturing OK", "woman gesturing OK: medium-light skin tone" - ] + ], + "value" : "🙆🏼‍♀️" }, "🙆🏽‍♀️", { - "value" : "🙆🏽‍♀️", "keywords" : [ "gesture", "hand", @@ -17514,7 +17513,8 @@ "woman", "woman gesturing OK", "woman gesturing OK: medium skin tone" - ] + ], + "value" : "🙆🏽‍♀️" }, "🙆🏾‍♀️", { @@ -17576,6 +17576,7 @@ }, "💁🏼", { + "value" : "💁🏼", "keywords" : [ "hand", "help", @@ -17585,8 +17586,7 @@ "person tipping hand: medium-light skin tone", "sassy", "tipping" - ], - "value" : "💁🏼" + ] }, "💁🏽", { @@ -17604,7 +17604,6 @@ }, "💁🏾", { - "value" : "💁🏾", "keywords" : [ "hand", "help", @@ -17614,7 +17613,8 @@ "person tipping hand: medium-dark skin tone", "sassy", "tipping" - ] + ], + "value" : "💁🏾" }, "💁🏿", { @@ -17650,7 +17650,6 @@ }, "💁🏻‍♂️", { - "value" : "💁🏻‍♂️", "keywords" : [ "light skin tone", "man", @@ -17658,7 +17657,8 @@ "man tipping hand: light skin tone", "sassy", "tipping hand" - ] + ], + "value" : "💁🏻‍♂️" }, "💁🏼‍♂️", { @@ -17686,6 +17686,7 @@ }, "💁🏾‍♂️", { + "value" : "💁🏾‍♂️", "keywords" : [ "man", "man tipping hand", @@ -17693,8 +17694,7 @@ "medium-dark skin tone", "sassy", "tipping hand" - ], - "value" : "💁🏾‍♂️" + ] }, "💁🏿‍♂️", { @@ -17740,6 +17740,7 @@ }, "💁🏼‍♀️", { + "value" : "💁🏼‍♀️", "keywords" : [ "medium-light skin tone", "sassy", @@ -17747,12 +17748,10 @@ "woman", "woman tipping hand", "woman tipping hand: medium-light skin tone" - ], - "value" : "💁🏼‍♀️" + ] }, "💁🏽‍♀️", { - "value" : "💁🏽‍♀️", "keywords" : [ "medium skin tone", "sassy", @@ -17760,11 +17759,11 @@ "woman", "woman tipping hand", "woman tipping hand: medium skin tone" - ] + ], + "value" : "💁🏽‍♀️" }, "💁🏾‍♀️", { - "value" : "💁🏾‍♀️", "keywords" : [ "medium-dark skin tone", "sassy", @@ -17772,11 +17771,11 @@ "woman", "woman tipping hand", "woman tipping hand: medium-dark skin tone" - ] + ], + "value" : "💁🏾‍♀️" }, "💁🏿‍♀️", { - "value" : "💁🏿‍♀️", "keywords" : [ "dark skin tone", "sassy", @@ -17784,11 +17783,11 @@ "woman", "woman tipping hand", "woman tipping hand: dark skin tone" - ] + ], + "value" : "💁🏿‍♀️" }, "🙋", { - "value" : "🙋", "keywords" : [ "gesture", "hand", @@ -17800,11 +17799,11 @@ "question", "raise", "raising" - ] + ], + "value" : "🙋" }, "🙋🏻", { - "value" : "🙋🏻", "keywords" : [ "gesture", "hand", @@ -17813,10 +17812,12 @@ "person raising hand", "person raising hand: light skin tone", "raised" - ] + ], + "value" : "🙋🏻" }, "🙋🏼", { + "value" : "🙋🏼", "keywords" : [ "gesture", "hand", @@ -17825,8 +17826,7 @@ "person raising hand", "person raising hand: medium-light skin tone", "raised" - ], - "value" : "🙋🏼" + ] }, "🙋🏽", { @@ -17856,6 +17856,7 @@ }, "🙋🏿", { + "value" : "🙋🏿", "keywords" : [ "dark skin tone", "gesture", @@ -17864,11 +17865,11 @@ "person raising hand", "person raising hand: dark skin tone", "raised" - ], - "value" : "🙋🏿" + ] }, "🙋‍♂️", { + "value" : "🙋‍♂️", "keywords" : [ "gesture", "hand", @@ -17880,11 +17881,11 @@ "question", "raise", "raising" - ], - "value" : "🙋‍♂️" + ] }, "🙋🏻‍♂️", { + "value" : "🙋🏻‍♂️", "keywords" : [ "gesture", "light skin tone", @@ -17892,12 +17893,10 @@ "man raising hand", "man raising hand: light skin tone", "raising hand" - ], - "value" : "🙋🏻‍♂️" + ] }, "🙋🏼‍♂️", { - "value" : "🙋🏼‍♂️", "keywords" : [ "gesture", "man", @@ -17905,11 +17904,11 @@ "man raising hand: medium-light skin tone", "medium-light skin tone", "raising hand" - ] + ], + "value" : "🙋🏼‍♂️" }, "🙋🏽‍♂️", { - "value" : "🙋🏽‍♂️", "keywords" : [ "gesture", "man", @@ -17917,7 +17916,8 @@ "man raising hand: medium skin tone", "medium skin tone", "raising hand" - ] + ], + "value" : "🙋🏽‍♂️" }, "🙋🏾‍♂️", { @@ -17945,6 +17945,7 @@ }, "🙋‍♀️", { + "value" : "🙋‍♀️", "keywords" : [ "gesture", "hand", @@ -17956,8 +17957,7 @@ "raise", "raising", "woman" - ], - "value" : "🙋‍♀️" + ] }, "🙋🏻‍♀️", { @@ -17973,7 +17973,6 @@ }, "🙋🏼‍♀️", { - "value" : "🙋🏼‍♀️", "keywords" : [ "gesture", "medium-light skin tone", @@ -17981,11 +17980,11 @@ "woman", "woman raising hand", "woman raising hand: medium-light skin tone" - ] + ], + "value" : "🙋🏼‍♀️" }, "🙋🏽‍♀️", { - "value" : "🙋🏽‍♀️", "keywords" : [ "gesture", "medium skin tone", @@ -17993,7 +17992,8 @@ "woman", "woman raising hand", "woman raising hand: medium skin tone" - ] + ], + "value" : "🙋🏽‍♀️" }, "🙋🏾‍♀️", { @@ -18009,6 +18009,7 @@ }, "🙋🏿‍♀️", { + "value" : "🙋🏿‍♀️", "keywords" : [ "dark skin tone", "gesture", @@ -18016,11 +18017,11 @@ "woman", "woman raising hand", "woman raising hand: dark skin tone" - ], - "value" : "🙋🏿‍♀️" + ] }, "🧏", { + "value" : "🧏", "keywords" : [ "accessibility", "deaf", @@ -18028,8 +18029,7 @@ "gesture", "hear", "person" - ], - "value" : "🧏" + ] }, "🧏🏻", { @@ -18098,7 +18098,6 @@ }, "🧏‍♂️", { - "value" : "🧏‍♂️", "keywords" : [ "accessibility", "deaf", @@ -18106,7 +18105,8 @@ "gesture", "hear", "man" - ] + ], + "value" : "🧏‍♂️" }, "🧏🏻‍♂️", { @@ -18120,13 +18120,13 @@ }, "🧏🏼‍♂️", { + "value" : "🧏🏼‍♂️", "keywords" : [ "deaf", "deaf man: medium-light skin tone", "man", "medium-light skin tone" - ], - "value" : "🧏🏼‍♂️" + ] }, "🧏🏽‍♂️", { @@ -18140,26 +18140,27 @@ }, "🧏🏾‍♂️", { - "value" : "🧏🏾‍♂️", "keywords" : [ "deaf", "deaf man: medium-dark skin tone", "man", "medium-dark skin tone" - ] + ], + "value" : "🧏🏾‍♂️" }, "🧏🏿‍♂️", { - "value" : "🧏🏿‍♂️", "keywords" : [ "dark skin tone", "deaf", "deaf man: dark skin tone", "man" - ] + ], + "value" : "🧏🏿‍♂️" }, "🧏‍♀️", { + "value" : "🧏‍♀️", "keywords" : [ "accessibility", "deaf", @@ -18167,18 +18168,17 @@ "gesture", "hear", "woman" - ], - "value" : "🧏‍♀️" + ] }, "🧏🏻‍♀️", { + "value" : "🧏🏻‍♀️", "keywords" : [ "deaf", "deaf woman: light skin tone", "light skin tone", "woman" - ], - "value" : "🧏🏻‍♀️" + ] }, "🧏🏼‍♀️", { @@ -18202,23 +18202,23 @@ }, "🧏🏾‍♀️", { - "value" : "🧏🏾‍♀️", "keywords" : [ "deaf", "deaf woman: medium-dark skin tone", "medium-dark skin tone", "woman" - ] + ], + "value" : "🧏🏾‍♀️" }, "🧏🏿‍♀️", { - "value" : "🧏🏿‍♀️", "keywords" : [ "dark skin tone", "deaf", "deaf woman: dark skin tone", "woman" - ] + ], + "value" : "🧏🏿‍♀️" }, "🙇", { @@ -18281,6 +18281,7 @@ }, "🙇🏾", { + "value" : "🙇🏾", "keywords" : [ "apology", "bow", @@ -18289,12 +18290,10 @@ "person bowing", "person bowing: medium-dark skin tone", "sorry" - ], - "value" : "🙇🏾" + ] }, "🙇🏿", { - "value" : "🙇🏿", "keywords" : [ "apology", "bow", @@ -18303,11 +18302,11 @@ "person bowing", "person bowing: dark skin tone", "sorry" - ] + ], + "value" : "🙇🏿" }, "🙇‍♂️", { - "value" : "🙇‍♂️", "keywords" : [ "apology", "ask", @@ -18323,7 +18322,8 @@ "pity", "regret", "sorry" - ] + ], + "value" : "🙇‍♂️" }, "🙇🏻‍♂️", { @@ -18341,6 +18341,7 @@ }, "🙇🏼‍♂️", { + "value" : "🙇🏼‍♂️", "keywords" : [ "apology", "bowing", @@ -18350,8 +18351,7 @@ "man bowing: medium-light skin tone", "medium-light skin tone", "sorry" - ], - "value" : "🙇🏼‍♂️" + ] }, "🙇🏽‍♂️", { @@ -18397,7 +18397,6 @@ }, "🙇‍♀️", { - "value" : "🙇‍♀️", "keywords" : [ "apology", "ask", @@ -18413,10 +18412,12 @@ "regret", "sorry", "woman" - ] + ], + "value" : "🙇‍♀️" }, "🙇🏻‍♀️", { + "value" : "🙇🏻‍♀️", "keywords" : [ "apology", "bowing", @@ -18426,8 +18427,7 @@ "sorry", "woman", "woman bowing: light skin tone" - ], - "value" : "🙇🏻‍♀️" + ] }, "🙇🏼‍♀️", { @@ -18459,6 +18459,7 @@ }, "🙇🏾‍♀️", { + "value" : "🙇🏾‍♀️", "keywords" : [ "apology", "bowing", @@ -18468,8 +18469,7 @@ "sorry", "woman", "woman bowing: medium-dark skin tone" - ], - "value" : "🙇🏾‍♀️" + ] }, "🙇🏿‍♀️", { @@ -18487,7 +18487,6 @@ }, "🤦", { - "value" : "🤦", "keywords" : [ "again", "bewilder", @@ -18501,11 +18500,11 @@ "person", "shock", "smh" - ] + ], + "value" : "🤦" }, "🤦🏻", { - "value" : "🤦🏻", "keywords" : [ "disbelief", "exasperation", @@ -18514,7 +18513,8 @@ "palm", "person facepalming", "person facepalming: light skin tone" - ] + ], + "value" : "🤦🏻" }, "🤦🏼", { @@ -18531,7 +18531,6 @@ }, "🤦🏽", { - "value" : "🤦🏽", "keywords" : [ "disbelief", "exasperation", @@ -18540,7 +18539,8 @@ "palm", "person facepalming", "person facepalming: medium skin tone" - ] + ], + "value" : "🤦🏽" }, "🤦🏾", { @@ -18570,6 +18570,7 @@ }, "🤦‍♂️", { + "value" : "🤦‍♂️", "keywords" : [ "again", "bewilder", @@ -18583,11 +18584,11 @@ "omg", "shock", "smh" - ], - "value" : "🤦‍♂️" + ] }, "🤦🏻‍♂️", { + "value" : "🤦🏻‍♂️", "keywords" : [ "disbelief", "exasperation", @@ -18596,8 +18597,7 @@ "man", "man facepalming", "man facepalming: light skin tone" - ], - "value" : "🤦🏻‍♂️" + ] }, "🤦🏼‍♂️", { @@ -18627,7 +18627,6 @@ }, "🤦🏾‍♂️", { - "value" : "🤦🏾‍♂️", "keywords" : [ "disbelief", "exasperation", @@ -18636,11 +18635,11 @@ "man facepalming", "man facepalming: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "🤦🏾‍♂️" }, "🤦🏿‍♂️", { - "value" : "🤦🏿‍♂️", "keywords" : [ "dark skin tone", "disbelief", @@ -18649,11 +18648,11 @@ "man", "man facepalming", "man facepalming: dark skin tone" - ] + ], + "value" : "🤦🏿‍♂️" }, "🤦‍♀️", { - "value" : "🤦‍♀️", "keywords" : [ "again", "bewilder", @@ -18667,10 +18666,12 @@ "shock", "smh", "woman" - ] + ], + "value" : "🤦‍♀️" }, "🤦🏻‍♀️", { + "value" : "🤦🏻‍♀️", "keywords" : [ "disbelief", "exasperation", @@ -18679,8 +18680,7 @@ "woman", "woman facepalming", "woman facepalming: light skin tone" - ], - "value" : "🤦🏻‍♀️" + ] }, "🤦🏼‍♀️", { @@ -18736,6 +18736,7 @@ }, "🤷", { + "value" : "🤷", "keywords" : [ "doubt", "dunno", @@ -18750,8 +18751,7 @@ "shrugging", "whatever", "who" - ], - "value" : "🤷" + ] }, "🤷🏻", { @@ -18794,7 +18794,6 @@ }, "🤷🏾", { - "value" : "🤷🏾", "keywords" : [ "doubt", "ignorance", @@ -18803,7 +18802,8 @@ "person shrugging", "person shrugging: medium-dark skin tone", "shrug" - ] + ], + "value" : "🤷🏾" }, "🤷🏿", { @@ -18820,7 +18820,6 @@ }, "🤷‍♂️", { - "value" : "🤷‍♂️", "keywords" : [ "doubt", "dunno", @@ -18835,7 +18834,8 @@ "shrugging", "whatever", "who" - ] + ], + "value" : "🤷‍♂️" }, "🤷🏻‍♂️", { @@ -18881,6 +18881,7 @@ }, "🤷🏾‍♂️", { + "value" : "🤷🏾‍♂️", "keywords" : [ "doubt", "ignorance", @@ -18890,11 +18891,11 @@ "man shrugging: medium-dark skin tone", "medium-dark skin tone", "shrug" - ], - "value" : "🤷🏾‍♂️" + ] }, "🤷🏿‍♂️", { + "value" : "🤷🏿‍♂️", "keywords" : [ "dark skin tone", "doubt", @@ -18904,12 +18905,10 @@ "man shrugging", "man shrugging: dark skin tone", "shrug" - ], - "value" : "🤷🏿‍♂️" + ] }, "🤷‍♀️", { - "value" : "🤷‍♀️", "keywords" : [ "doubt", "dunno", @@ -18924,11 +18923,11 @@ "whatever", "who", "woman" - ] + ], + "value" : "🤷‍♀️" }, "🤷🏻‍♀️", { - "value" : "🤷🏻‍♀️", "keywords" : [ "doubt", "ignorance", @@ -18938,10 +18937,12 @@ "woman", "woman shrugging", "woman shrugging: light skin tone" - ] + ], + "value" : "🤷🏻‍♀️" }, "🤷🏼‍♀️", { + "value" : "🤷🏼‍♀️", "keywords" : [ "doubt", "ignorance", @@ -18951,12 +18952,10 @@ "woman", "woman shrugging", "woman shrugging: medium-light skin tone" - ], - "value" : "🤷🏼‍♀️" + ] }, "🤷🏽‍♀️", { - "value" : "🤷🏽‍♀️", "keywords" : [ "doubt", "ignorance", @@ -18966,7 +18965,8 @@ "woman", "woman shrugging", "woman shrugging: medium skin tone" - ] + ], + "value" : "🤷🏽‍♀️" }, "🤷🏾‍♀️", { @@ -19023,6 +19023,7 @@ }, "🧑🏼‍⚕️", { + "value" : "🧑🏼‍⚕️", "keywords" : [ "doctor", "health worker", @@ -19031,8 +19032,7 @@ "medium-light skin tone", "nurse", "therapist" - ], - "value" : "🧑🏼‍⚕️" + ] }, "🧑🏽‍⚕️", { @@ -19049,6 +19049,7 @@ }, "🧑🏾‍⚕️", { + "value" : "🧑🏾‍⚕️", "keywords" : [ "doctor", "health worker", @@ -19057,11 +19058,11 @@ "medium-dark skin tone", "nurse", "therapist" - ], - "value" : "🧑🏾‍⚕️" + ] }, "🧑🏿‍⚕️", { + "value" : "🧑🏿‍⚕️", "keywords" : [ "dark skin tone", "doctor", @@ -19070,12 +19071,10 @@ "healthcare", "nurse", "therapist" - ], - "value" : "🧑🏿‍⚕️" + ] }, "👨‍⚕️", { - "value" : "👨‍⚕️", "keywords" : [ "doctor", "health", @@ -19084,11 +19083,11 @@ "nurse", "therapist", "worker" - ] + ], + "value" : "👨‍⚕️" }, "👨🏻‍⚕️", { - "value" : "👨🏻‍⚕️", "keywords" : [ "doctor", "healthcare", @@ -19098,7 +19097,8 @@ "man health worker: light skin tone", "nurse", "therapist" - ] + ], + "value" : "👨🏻‍⚕️" }, "👨🏼‍⚕️", { @@ -19130,6 +19130,7 @@ }, "👨🏾‍⚕️", { + "value" : "👨🏾‍⚕️", "keywords" : [ "doctor", "healthcare", @@ -19139,8 +19140,7 @@ "medium-dark skin tone", "nurse", "therapist" - ], - "value" : "👨🏾‍⚕️" + ] }, "👨🏿‍⚕️", { @@ -19158,6 +19158,7 @@ }, "👩‍⚕️", { + "value" : "👩‍⚕️", "keywords" : [ "doctor", "health", @@ -19166,8 +19167,7 @@ "therapist", "woman", "worker" - ], - "value" : "👩‍⚕️" + ] }, "👩🏻‍⚕️", { @@ -19185,6 +19185,7 @@ }, "👩🏼‍⚕️", { + "value" : "👩🏼‍⚕️", "keywords" : [ "doctor", "healthcare", @@ -19194,8 +19195,7 @@ "woman", "woman health worker", "woman health worker: medium-light skin tone" - ], - "value" : "👩🏼‍⚕️" + ] }, "👩🏽‍⚕️", { @@ -19269,13 +19269,13 @@ }, "🧑🏽‍🎓", { - "value" : "🧑🏽‍🎓", "keywords" : [ "graduate", "medium skin tone", "student", "student: medium skin tone" - ] + ], + "value" : "🧑🏽‍🎓" }, "🧑🏾‍🎓", { @@ -19308,25 +19308,25 @@ }, "👨🏻‍🎓", { + "value" : "👨🏻‍🎓", "keywords" : [ "graduate", "light skin tone", "man", "man student: light skin tone", "student" - ], - "value" : "👨🏻‍🎓" + ] }, "👨🏼‍🎓", { + "value" : "👨🏼‍🎓", "keywords" : [ "graduate", "man", "man student: medium-light skin tone", "medium-light skin tone", "student" - ], - "value" : "👨🏼‍🎓" + ] }, "👨🏽‍🎓", { @@ -19352,14 +19352,14 @@ }, "👨🏿‍🎓", { - "value" : "👨🏿‍🎓", "keywords" : [ "dark skin tone", "graduate", "man", "man student: dark skin tone", "student" - ] + ], + "value" : "👨🏿‍🎓" }, "👩‍🎓", { @@ -19437,6 +19437,7 @@ }, "🧑🏻‍🏫", { + "value" : "🧑🏻‍🏫", "keywords" : [ "instructor", "lecturer", @@ -19444,8 +19445,7 @@ "professor", "teacher", "teacher: light skin tone" - ], - "value" : "🧑🏻‍🏫" + ] }, "🧑🏼‍🏫", { @@ -19461,6 +19461,7 @@ }, "🧑🏽‍🏫", { + "value" : "🧑🏽‍🏫", "keywords" : [ "instructor", "lecturer", @@ -19468,11 +19469,11 @@ "professor", "teacher", "teacher: medium skin tone" - ], - "value" : "🧑🏽‍🏫" + ] }, "🧑🏾‍🏫", { + "value" : "🧑🏾‍🏫", "keywords" : [ "instructor", "lecturer", @@ -19480,8 +19481,7 @@ "professor", "teacher", "teacher: medium-dark skin tone" - ], - "value" : "🧑🏾‍🏫" + ] }, "🧑🏿‍🏫", { @@ -19497,17 +19497,18 @@ }, "👨‍🏫", { + "value" : "👨‍🏫", "keywords" : [ "instructor", "lecturer", "man", "professor", "teacher" - ], - "value" : "👨‍🏫" + ] }, "👨🏻‍🏫", { + "value" : "👨🏻‍🏫", "keywords" : [ "instructor", "lecturer", @@ -19516,8 +19517,7 @@ "man teacher: light skin tone", "professor", "teacher" - ], - "value" : "👨🏻‍🏫" + ] }, "👨🏼‍🏫", { @@ -19584,6 +19584,7 @@ }, "👩🏻‍🏫", { + "value" : "👩🏻‍🏫", "keywords" : [ "instructor", "lecturer", @@ -19592,11 +19593,11 @@ "teacher", "woman", "woman teacher: light skin tone" - ], - "value" : "👩🏻‍🏫" + ] }, "👩🏼‍🏫", { + "value" : "👩🏼‍🏫", "keywords" : [ "instructor", "lecturer", @@ -19605,11 +19606,11 @@ "teacher", "woman", "woman teacher: medium-light skin tone" - ], - "value" : "👩🏼‍🏫" + ] }, "👩🏽‍🏫", { + "value" : "👩🏽‍🏫", "keywords" : [ "instructor", "lecturer", @@ -19618,8 +19619,7 @@ "teacher", "woman", "woman teacher: medium skin tone" - ], - "value" : "👩🏽‍🏫" + ] }, "👩🏾‍🏫", { @@ -19636,6 +19636,7 @@ }, "👩🏿‍🏫", { + "value" : "👩🏿‍🏫", "keywords" : [ "dark skin tone", "instructor", @@ -19644,21 +19645,21 @@ "teacher", "woman", "woman teacher: dark skin tone" - ], - "value" : "👩🏿‍🏫" + ] }, "🧑‍⚖️", { + "value" : "🧑‍⚖️", "keywords" : [ "judge", "justice", "law", "scales" - ], - "value" : "🧑‍⚖️" + ] }, "🧑🏻‍⚖️", { + "value" : "🧑🏻‍⚖️", "keywords" : [ "judge", "judge: light skin tone", @@ -19666,8 +19667,7 @@ "law", "light skin tone", "scales" - ], - "value" : "🧑🏻‍⚖️" + ] }, "🧑🏼‍⚖️", { @@ -19683,7 +19683,6 @@ }, "🧑🏽‍⚖️", { - "value" : "🧑🏽‍⚖️", "keywords" : [ "judge", "judge: medium skin tone", @@ -19691,10 +19690,12 @@ "law", "medium skin tone", "scales" - ] + ], + "value" : "🧑🏽‍⚖️" }, "🧑🏾‍⚖️", { + "value" : "🧑🏾‍⚖️", "keywords" : [ "judge", "judge: medium-dark skin tone", @@ -19702,8 +19703,7 @@ "law", "medium-dark skin tone", "scales" - ], - "value" : "🧑🏾‍⚖️" + ] }, "🧑🏿‍⚖️", { @@ -19730,7 +19730,6 @@ }, "👨🏻‍⚖️", { - "value" : "👨🏻‍⚖️", "keywords" : [ "judge", "justice", @@ -19739,10 +19738,12 @@ "man", "man judge: light skin tone", "scales" - ] + ], + "value" : "👨🏻‍⚖️" }, "👨🏼‍⚖️", { + "value" : "👨🏼‍⚖️", "keywords" : [ "judge", "justice", @@ -19751,8 +19752,7 @@ "man judge: medium-light skin tone", "medium-light skin tone", "scales" - ], - "value" : "👨🏼‍⚖️" + ] }, "👨🏽‍⚖️", { @@ -19769,7 +19769,6 @@ }, "👨🏾‍⚖️", { - "value" : "👨🏾‍⚖️", "keywords" : [ "judge", "justice", @@ -19778,11 +19777,11 @@ "man judge: medium-dark skin tone", "medium-dark skin tone", "scales" - ] + ], + "value" : "👨🏾‍⚖️" }, "👨🏿‍⚖️", { - "value" : "👨🏿‍⚖️", "keywords" : [ "dark skin tone", "judge", @@ -19791,18 +19790,19 @@ "man", "man judge: dark skin tone", "scales" - ] + ], + "value" : "👨🏿‍⚖️" }, "👩‍⚖️", { - "value" : "👩‍⚖️", "keywords" : [ "judge", "justice", "law", "scales", "woman" - ] + ], + "value" : "👩‍⚖️" }, "👩🏻‍⚖️", { @@ -19819,6 +19819,7 @@ }, "👩🏼‍⚖️", { + "value" : "👩🏼‍⚖️", "keywords" : [ "judge", "justice", @@ -19827,8 +19828,7 @@ "scales", "woman", "woman judge: medium-light skin tone" - ], - "value" : "👩🏼‍⚖️" + ] }, "👩🏽‍⚖️", { @@ -19845,7 +19845,6 @@ }, "👩🏾‍⚖️", { - "value" : "👩🏾‍⚖️", "keywords" : [ "judge", "justice", @@ -19854,7 +19853,8 @@ "scales", "woman", "woman judge: medium-dark skin tone" - ] + ], + "value" : "👩🏾‍⚖️" }, "👩🏿‍⚖️", { @@ -19871,23 +19871,23 @@ }, "🧑‍🌾", { + "value" : "🧑‍🌾", "keywords" : [ "farmer", "gardener", "rancher" - ], - "value" : "🧑‍🌾" + ] }, "🧑🏻‍🌾", { + "value" : "🧑🏻‍🌾", "keywords" : [ "farmer", "farmer: light skin tone", "gardener", "light skin tone", "rancher" - ], - "value" : "🧑🏻‍🌾" + ] }, "🧑🏼‍🌾", { @@ -19902,14 +19902,14 @@ }, "🧑🏽‍🌾", { + "value" : "🧑🏽‍🌾", "keywords" : [ "farmer", "farmer: medium skin tone", "gardener", "medium skin tone", "rancher" - ], - "value" : "🧑🏽‍🌾" + ] }, "🧑🏾‍🌾", { @@ -19957,6 +19957,7 @@ }, "👨🏼‍🌾", { + "value" : "👨🏼‍🌾", "keywords" : [ "farmer", "gardener", @@ -19964,11 +19965,11 @@ "man farmer: medium-light skin tone", "medium-light skin tone", "rancher" - ], - "value" : "👨🏼‍🌾" + ] }, "👨🏽‍🌾", { + "value" : "👨🏽‍🌾", "keywords" : [ "farmer", "gardener", @@ -19976,8 +19977,7 @@ "man farmer: medium skin tone", "medium skin tone", "rancher" - ], - "value" : "👨🏽‍🌾" + ] }, "👨🏾‍🌾", { @@ -20005,16 +20005,17 @@ }, "👩‍🌾", { + "value" : "👩‍🌾", "keywords" : [ "farmer", "gardener", "rancher", "woman" - ], - "value" : "👩‍🌾" + ] }, "👩🏻‍🌾", { + "value" : "👩🏻‍🌾", "keywords" : [ "farmer", "gardener", @@ -20022,12 +20023,10 @@ "rancher", "woman", "woman farmer: light skin tone" - ], - "value" : "👩🏻‍🌾" + ] }, "👩🏼‍🌾", { - "value" : "👩🏼‍🌾", "keywords" : [ "farmer", "gardener", @@ -20035,10 +20034,12 @@ "rancher", "woman", "woman farmer: medium-light skin tone" - ] + ], + "value" : "👩🏼‍🌾" }, "👩🏽‍🌾", { + "value" : "👩🏽‍🌾", "keywords" : [ "farmer", "gardener", @@ -20046,8 +20047,7 @@ "rancher", "woman", "woman farmer: medium skin tone" - ], - "value" : "👩🏽‍🌾" + ] }, "👩🏾‍🌾", { @@ -20063,7 +20063,6 @@ }, "👩🏿‍🌾", { - "value" : "👩🏿‍🌾", "keywords" : [ "dark skin tone", "farmer", @@ -20071,7 +20070,8 @@ "rancher", "woman", "woman farmer: dark skin tone" - ] + ], + "value" : "👩🏿‍🌾" }, "🧑‍🍳", { @@ -20083,23 +20083,23 @@ }, "🧑🏻‍🍳", { + "value" : "🧑🏻‍🍳", "keywords" : [ "chef", "cook", "cook: light skin tone", "light skin tone" - ], - "value" : "🧑🏻‍🍳" + ] }, "🧑🏼‍🍳", { + "value" : "🧑🏼‍🍳", "keywords" : [ "chef", "cook", "cook: medium-light skin tone", "medium-light skin tone" - ], - "value" : "🧑🏼‍🍳" + ] }, "🧑🏽‍🍳", { @@ -20113,23 +20113,23 @@ }, "🧑🏾‍🍳", { - "value" : "🧑🏾‍🍳", "keywords" : [ "chef", "cook", "cook: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "🧑🏾‍🍳" }, "🧑🏿‍🍳", { - "value" : "🧑🏿‍🍳", "keywords" : [ "chef", "cook", "cook: dark skin tone", "dark skin tone" - ] + ], + "value" : "🧑🏿‍🍳" }, "👨‍🍳", { @@ -20186,23 +20186,23 @@ }, "👨🏿‍🍳", { + "value" : "👨🏿‍🍳", "keywords" : [ "chef", "cook", "dark skin tone", "man", "man cook: dark skin tone" - ], - "value" : "👨🏿‍🍳" + ] }, "👩‍🍳", { + "value" : "👩‍🍳", "keywords" : [ "chef", "cook", "woman" - ], - "value" : "👩‍🍳" + ] }, "👩🏻‍🍳", { @@ -20228,14 +20228,14 @@ }, "👩🏽‍🍳", { - "value" : "👩🏽‍🍳", "keywords" : [ "chef", "cook", "medium skin tone", "woman", "woman cook: medium skin tone" - ] + ], + "value" : "👩🏽‍🍳" }, "👩🏾‍🍳", { @@ -20250,14 +20250,14 @@ }, "👩🏿‍🍳", { - "value" : "👩🏿‍🍳", "keywords" : [ "chef", "cook", "dark skin tone", "woman", "woman cook: dark skin tone" - ] + ], + "value" : "👩🏿‍🍳" }, "🧑‍🔧", { @@ -20271,6 +20271,7 @@ }, "🧑🏻‍🔧", { + "value" : "🧑🏻‍🔧", "keywords" : [ "electrician", "light skin tone", @@ -20278,8 +20279,7 @@ "mechanic: light skin tone", "plumber", "tradesperson" - ], - "value" : "🧑🏻‍🔧" + ] }, "🧑🏼‍🔧", { @@ -20319,6 +20319,7 @@ }, "🧑🏿‍🔧", { + "value" : "🧑🏿‍🔧", "keywords" : [ "dark skin tone", "electrician", @@ -20326,8 +20327,7 @@ "mechanic: dark skin tone", "plumber", "tradesperson" - ], - "value" : "🧑🏿‍🔧" + ] }, "👨‍🔧", { @@ -20342,7 +20342,6 @@ }, "👨🏻‍🔧", { - "value" : "👨🏻‍🔧", "keywords" : [ "electrician", "light skin tone", @@ -20351,7 +20350,8 @@ "mechanic", "plumber", "tradesperson" - ] + ], + "value" : "👨🏻‍🔧" }, "👨🏼‍🔧", { @@ -20394,6 +20394,7 @@ }, "👨🏿‍🔧", { + "value" : "👨🏿‍🔧", "keywords" : [ "dark skin tone", "electrician", @@ -20402,8 +20403,7 @@ "mechanic", "plumber", "tradesperson" - ], - "value" : "👨🏿‍🔧" + ] }, "👩‍🔧", { @@ -20418,6 +20418,7 @@ }, "👩🏻‍🔧", { + "value" : "👩🏻‍🔧", "keywords" : [ "electrician", "light skin tone", @@ -20426,12 +20427,10 @@ "tradesperson", "woman", "woman mechanic: light skin tone" - ], - "value" : "👩🏻‍🔧" + ] }, "👩🏼‍🔧", { - "value" : "👩🏼‍🔧", "keywords" : [ "electrician", "mechanic", @@ -20440,7 +20439,8 @@ "tradesperson", "woman", "woman mechanic: medium-light skin tone" - ] + ], + "value" : "👩🏼‍🔧" }, "👩🏽‍🔧", { @@ -20470,7 +20470,6 @@ }, "👩🏿‍🔧", { - "value" : "👩🏿‍🔧", "keywords" : [ "dark skin tone", "electrician", @@ -20479,20 +20478,22 @@ "tradesperson", "woman", "woman mechanic: dark skin tone" - ] + ], + "value" : "👩🏿‍🔧" }, "🧑‍🏭", { - "value" : "🧑‍🏭", "keywords" : [ "assembly", "factory", "industrial", "worker" - ] + ], + "value" : "🧑‍🏭" }, "🧑🏻‍🏭", { + "value" : "🧑🏻‍🏭", "keywords" : [ "assembly", "factory", @@ -20500,11 +20501,11 @@ "industrial", "light skin tone", "worker" - ], - "value" : "🧑🏻‍🏭" + ] }, "🧑🏼‍🏭", { + "value" : "🧑🏼‍🏭", "keywords" : [ "assembly", "factory", @@ -20512,11 +20513,11 @@ "industrial", "medium-light skin tone", "worker" - ], - "value" : "🧑🏼‍🏭" + ] }, "🧑🏽‍🏭", { + "value" : "🧑🏽‍🏭", "keywords" : [ "assembly", "factory", @@ -20524,12 +20525,10 @@ "industrial", "medium skin tone", "worker" - ], - "value" : "🧑🏽‍🏭" + ] }, "🧑🏾‍🏭", { - "value" : "🧑🏾‍🏭", "keywords" : [ "assembly", "factory", @@ -20537,10 +20536,12 @@ "industrial", "medium-dark skin tone", "worker" - ] + ], + "value" : "🧑🏾‍🏭" }, "🧑🏿‍🏭", { + "value" : "🧑🏿‍🏭", "keywords" : [ "assembly", "dark skin tone", @@ -20548,8 +20549,7 @@ "factory worker: dark skin tone", "industrial", "worker" - ], - "value" : "🧑🏿‍🏭" + ] }, "👨‍🏭", { @@ -20590,7 +20590,6 @@ }, "👨🏽‍🏭", { - "value" : "👨🏽‍🏭", "keywords" : [ "assembly", "factory", @@ -20599,7 +20598,8 @@ "man factory worker: medium skin tone", "medium skin tone", "worker" - ] + ], + "value" : "👨🏽‍🏭" }, "👨🏾‍🏭", { @@ -20640,7 +20640,6 @@ }, "👩🏻‍🏭", { - "value" : "👩🏻‍🏭", "keywords" : [ "assembly", "factory", @@ -20649,10 +20648,12 @@ "woman", "woman factory worker: light skin tone", "worker" - ] + ], + "value" : "👩🏻‍🏭" }, "👩🏼‍🏭", { + "value" : "👩🏼‍🏭", "keywords" : [ "assembly", "factory", @@ -20661,12 +20662,10 @@ "woman", "woman factory worker: medium-light skin tone", "worker" - ], - "value" : "👩🏼‍🏭" + ] }, "👩🏽‍🏭", { - "value" : "👩🏽‍🏭", "keywords" : [ "assembly", "factory", @@ -20675,10 +20674,12 @@ "woman", "woman factory worker: medium skin tone", "worker" - ] + ], + "value" : "👩🏽‍🏭" }, "👩🏾‍🏭", { + "value" : "👩🏾‍🏭", "keywords" : [ "assembly", "factory", @@ -20687,8 +20688,7 @@ "woman", "woman factory worker: medium-dark skin tone", "worker" - ], - "value" : "👩🏾‍🏭" + ] }, "👩🏿‍🏭", { @@ -20769,6 +20769,7 @@ }, "🧑🏿‍💼", { + "value" : "🧑🏿‍💼", "keywords" : [ "architect", "business", @@ -20777,8 +20778,7 @@ "office worker", "office worker: dark skin tone", "white-collar" - ], - "value" : "🧑🏿‍💼" + ] }, "👨‍💼", { @@ -20795,6 +20795,7 @@ }, "👨🏻‍💼", { + "value" : "👨🏻‍💼", "keywords" : [ "architect", "business", @@ -20804,12 +20805,10 @@ "man office worker: light skin tone", "manager", "white-collar" - ], - "value" : "👨🏻‍💼" + ] }, "👨🏼‍💼", { - "value" : "👨🏼‍💼", "keywords" : [ "architect", "business", @@ -20819,7 +20818,8 @@ "manager", "medium-light skin tone", "white-collar" - ] + ], + "value" : "👨🏼‍💼" }, "👨🏽‍💼", { @@ -20865,7 +20865,6 @@ }, "👩‍💼", { - "value" : "👩‍💼", "keywords" : [ "architect", "business", @@ -20874,10 +20873,12 @@ "white-collar", "woman", "worker" - ] + ], + "value" : "👩‍💼" }, "👩🏻‍💼", { + "value" : "👩🏻‍💼", "keywords" : [ "architect", "business", @@ -20887,12 +20888,10 @@ "woman", "woman office worker", "woman office worker: light skin tone" - ], - "value" : "👩🏻‍💼" + ] }, "👩🏼‍💼", { - "value" : "👩🏼‍💼", "keywords" : [ "architect", "business", @@ -20902,7 +20901,8 @@ "woman", "woman office worker", "woman office worker: medium-light skin tone" - ] + ], + "value" : "👩🏼‍💼" }, "👩🏽‍💼", { @@ -20920,6 +20920,7 @@ }, "👩🏾‍💼", { + "value" : "👩🏾‍💼", "keywords" : [ "architect", "business", @@ -20929,11 +20930,11 @@ "woman", "woman office worker", "woman office worker: medium-dark skin tone" - ], - "value" : "👩🏾‍💼" + ] }, "👩🏿‍💼", { + "value" : "👩🏿‍💼", "keywords" : [ "architect", "business", @@ -20943,12 +20944,10 @@ "woman", "woman office worker", "woman office worker: dark skin tone" - ], - "value" : "👩🏿‍💼" + ] }, "🧑‍🔬", { - "value" : "🧑‍🔬", "keywords" : [ "biologist", "chemist", @@ -20956,11 +20955,11 @@ "mathematician", "physicist", "scientist" - ] + ], + "value" : "🧑‍🔬" }, "🧑🏻‍🔬", { - "value" : "🧑🏻‍🔬", "keywords" : [ "biologist", "chemist", @@ -20969,10 +20968,12 @@ "physicist", "scientist", "scientist: light skin tone" - ] + ], + "value" : "🧑🏻‍🔬" }, "🧑🏼‍🔬", { + "value" : "🧑🏼‍🔬", "keywords" : [ "biologist", "chemist", @@ -20981,8 +20982,7 @@ "physicist", "scientist", "scientist: medium-light skin tone" - ], - "value" : "🧑🏼‍🔬" + ] }, "🧑🏽‍🔬", { @@ -21025,7 +21025,6 @@ }, "👨‍🔬", { - "value" : "👨‍🔬", "keywords" : [ "biologist", "chemist", @@ -21034,11 +21033,11 @@ "mathematician", "physicist", "scientist" - ] + ], + "value" : "👨‍🔬" }, "👨🏻‍🔬", { - "value" : "👨🏻‍🔬", "keywords" : [ "biologist", "chemist", @@ -21048,10 +21047,12 @@ "man scientist: light skin tone", "physicist", "scientist" - ] + ], + "value" : "👨🏻‍🔬" }, "👨🏼‍🔬", { + "value" : "👨🏼‍🔬", "keywords" : [ "biologist", "chemist", @@ -21061,8 +21062,7 @@ "medium-light skin tone", "physicist", "scientist" - ], - "value" : "👨🏼‍🔬" + ] }, "👨🏽‍🔬", { @@ -21080,6 +21080,7 @@ }, "👨🏾‍🔬", { + "value" : "👨🏾‍🔬", "keywords" : [ "biologist", "chemist", @@ -21089,12 +21090,10 @@ "medium-dark skin tone", "physicist", "scientist" - ], - "value" : "👨🏾‍🔬" + ] }, "👨🏿‍🔬", { - "value" : "👨🏿‍🔬", "keywords" : [ "biologist", "chemist", @@ -21104,11 +21103,11 @@ "man scientist: dark skin tone", "physicist", "scientist" - ] + ], + "value" : "👨🏿‍🔬" }, "👩‍🔬", { - "value" : "👩‍🔬", "keywords" : [ "biologist", "chemist", @@ -21117,10 +21116,12 @@ "physicist", "scientist", "woman" - ] + ], + "value" : "👩‍🔬" }, "👩🏻‍🔬", { + "value" : "👩🏻‍🔬", "keywords" : [ "biologist", "chemist", @@ -21130,12 +21131,10 @@ "scientist", "woman", "woman scientist: light skin tone" - ], - "value" : "👩🏻‍🔬" + ] }, "👩🏼‍🔬", { - "value" : "👩🏼‍🔬", "keywords" : [ "biologist", "chemist", @@ -21145,11 +21144,11 @@ "scientist", "woman", "woman scientist: medium-light skin tone" - ] + ], + "value" : "👩🏼‍🔬" }, "👩🏽‍🔬", { - "value" : "👩🏽‍🔬", "keywords" : [ "biologist", "chemist", @@ -21159,7 +21158,8 @@ "scientist", "woman", "woman scientist: medium skin tone" - ] + ], + "value" : "👩🏽‍🔬" }, "👩🏾‍🔬", { @@ -21203,7 +21203,6 @@ }, "🧑🏻‍💻", { - "value" : "🧑🏻‍💻", "keywords" : [ "coder", "developer", @@ -21212,11 +21211,11 @@ "software", "technologist", "technologist: light skin tone" - ] + ], + "value" : "🧑🏻‍💻" }, "🧑🏼‍💻", { - "value" : "🧑🏼‍💻", "keywords" : [ "coder", "developer", @@ -21225,10 +21224,12 @@ "software", "technologist", "technologist: medium-light skin tone" - ] + ], + "value" : "🧑🏼‍💻" }, "🧑🏽‍💻", { + "value" : "🧑🏽‍💻", "keywords" : [ "coder", "developer", @@ -21237,12 +21238,10 @@ "software", "technologist", "technologist: medium skin tone" - ], - "value" : "🧑🏽‍💻" + ] }, "🧑🏾‍💻", { - "value" : "🧑🏾‍💻", "keywords" : [ "coder", "developer", @@ -21251,10 +21250,12 @@ "software", "technologist", "technologist: medium-dark skin tone" - ] + ], + "value" : "🧑🏾‍💻" }, "🧑🏿‍💻", { + "value" : "🧑🏿‍💻", "keywords" : [ "coder", "dark skin tone", @@ -21263,11 +21264,11 @@ "software", "technologist", "technologist: dark skin tone" - ], - "value" : "🧑🏿‍💻" + ] }, "👨‍💻", { + "value" : "👨‍💻", "keywords" : [ "coder", "computer", @@ -21276,11 +21277,11 @@ "man", "software", "technologist" - ], - "value" : "👨‍💻" + ] }, "👨🏻‍💻", { + "value" : "👨🏻‍💻", "keywords" : [ "coder", "developer", @@ -21290,11 +21291,11 @@ "man technologist: light skin tone", "software", "technologist" - ], - "value" : "👨🏻‍💻" + ] }, "👨🏼‍💻", { + "value" : "👨🏼‍💻", "keywords" : [ "coder", "developer", @@ -21304,11 +21305,11 @@ "medium-light skin tone", "software", "technologist" - ], - "value" : "👨🏼‍💻" + ] }, "👨🏽‍💻", { + "value" : "👨🏽‍💻", "keywords" : [ "coder", "developer", @@ -21318,11 +21319,11 @@ "medium skin tone", "software", "technologist" - ], - "value" : "👨🏽‍💻" + ] }, "👨🏾‍💻", { + "value" : "👨🏾‍💻", "keywords" : [ "coder", "developer", @@ -21332,11 +21333,11 @@ "medium-dark skin tone", "software", "technologist" - ], - "value" : "👨🏾‍💻" + ] }, "👨🏿‍💻", { + "value" : "👨🏿‍💻", "keywords" : [ "coder", "dark skin tone", @@ -21346,11 +21347,11 @@ "man technologist: dark skin tone", "software", "technologist" - ], - "value" : "👨🏿‍💻" + ] }, "👩‍💻", { + "value" : "👩‍💻", "keywords" : [ "coder", "computer", @@ -21359,8 +21360,7 @@ "software", "technologist", "woman" - ], - "value" : "👩‍💻" + ] }, "👩🏻‍💻", { @@ -21378,7 +21378,6 @@ }, "👩🏼‍💻", { - "value" : "👩🏼‍💻", "keywords" : [ "coder", "developer", @@ -21388,7 +21387,8 @@ "technologist", "woman", "woman technologist: medium-light skin tone" - ] + ], + "value" : "👩🏼‍💻" }, "👩🏽‍💻", { @@ -21434,6 +21434,7 @@ }, "🧑‍🎤", { + "value" : "🧑‍🎤", "keywords" : [ "actor", "entertainer", @@ -21441,12 +21442,10 @@ "rockstar", "singer", "star" - ], - "value" : "🧑‍🎤" + ] }, "🧑🏻‍🎤", { - "value" : "🧑🏻‍🎤", "keywords" : [ "actor", "entertainer", @@ -21455,7 +21454,8 @@ "singer", "singer: light skin tone", "star" - ] + ], + "value" : "🧑🏻‍🎤" }, "🧑🏼‍🎤", { @@ -21472,7 +21472,6 @@ }, "🧑🏽‍🎤", { - "value" : "🧑🏽‍🎤", "keywords" : [ "actor", "entertainer", @@ -21481,11 +21480,11 @@ "singer", "singer: medium skin tone", "star" - ] + ], + "value" : "🧑🏽‍🎤" }, "🧑🏾‍🎤", { - "value" : "🧑🏾‍🎤", "keywords" : [ "actor", "entertainer", @@ -21494,10 +21493,12 @@ "singer", "singer: medium-dark skin tone", "star" - ] + ], + "value" : "🧑🏾‍🎤" }, "🧑🏿‍🎤", { + "value" : "🧑🏿‍🎤", "keywords" : [ "actor", "dark skin tone", @@ -21506,12 +21507,10 @@ "singer", "singer: dark skin tone", "star" - ], - "value" : "🧑🏿‍🎤" + ] }, "👨‍🎤", { - "value" : "👨‍🎤", "keywords" : [ "actor", "entertainer", @@ -21520,7 +21519,8 @@ "rockstar", "singer", "star" - ] + ], + "value" : "👨‍🎤" }, "👨🏻‍🎤", { @@ -21552,6 +21552,7 @@ }, "👨🏽‍🎤", { + "value" : "👨🏽‍🎤", "keywords" : [ "actor", "entertainer", @@ -21561,8 +21562,7 @@ "rock", "singer", "star" - ], - "value" : "👨🏽‍🎤" + ] }, "👨🏾‍🎤", { @@ -21580,6 +21580,7 @@ }, "👨🏿‍🎤", { + "value" : "👨🏿‍🎤", "keywords" : [ "actor", "dark skin tone", @@ -21589,11 +21590,11 @@ "rock", "singer", "star" - ], - "value" : "👨🏿‍🎤" + ] }, "👩‍🎤", { + "value" : "👩‍🎤", "keywords" : [ "actor", "entertainer", @@ -21602,8 +21603,7 @@ "singer", "star", "woman" - ], - "value" : "👩‍🎤" + ] }, "👩🏻‍🎤", { @@ -21621,6 +21621,7 @@ }, "👩🏼‍🎤", { + "value" : "👩🏼‍🎤", "keywords" : [ "actor", "entertainer", @@ -21630,12 +21631,10 @@ "star", "woman", "woman singer: medium-light skin tone" - ], - "value" : "👩🏼‍🎤" + ] }, "👩🏽‍🎤", { - "value" : "👩🏽‍🎤", "keywords" : [ "actor", "entertainer", @@ -21645,10 +21644,12 @@ "star", "woman", "woman singer: medium skin tone" - ] + ], + "value" : "👩🏽‍🎤" }, "👩🏾‍🎤", { + "value" : "👩🏾‍🎤", "keywords" : [ "actor", "entertainer", @@ -21658,8 +21659,7 @@ "star", "woman", "woman singer: medium-dark skin tone" - ], - "value" : "👩🏾‍🎤" + ] }, "👩🏿‍🎤", { @@ -21677,11 +21677,11 @@ }, "🧑‍🎨", { - "value" : "🧑‍🎨", "keywords" : [ "artist", "palette" - ] + ], + "value" : "🧑‍🎨" }, "🧑🏻‍🎨", { @@ -21695,23 +21695,23 @@ }, "🧑🏼‍🎨", { + "value" : "🧑🏼‍🎨", "keywords" : [ "artist", "artist: medium-light skin tone", "medium-light skin tone", "palette" - ], - "value" : "🧑🏼‍🎨" + ] }, "🧑🏽‍🎨", { + "value" : "🧑🏽‍🎨", "keywords" : [ "artist", "artist: medium skin tone", "medium skin tone", "palette" - ], - "value" : "🧑🏽‍🎨" + ] }, "🧑🏾‍🎨", { @@ -21735,12 +21735,12 @@ }, "👨‍🎨", { + "value" : "👨‍🎨", "keywords" : [ "artist", "man", "palette" - ], - "value" : "👨‍🎨" + ] }, "👨🏻‍🎨", { @@ -21755,36 +21755,36 @@ }, "👨🏼‍🎨", { - "value" : "👨🏼‍🎨", "keywords" : [ "artist", "man", "man artist: medium-light skin tone", "medium-light skin tone", "palette" - ] + ], + "value" : "👨🏼‍🎨" }, "👨🏽‍🎨", { - "value" : "👨🏽‍🎨", "keywords" : [ "artist", "man", "man artist: medium skin tone", "medium skin tone", "palette" - ] + ], + "value" : "👨🏽‍🎨" }, "👨🏾‍🎨", { + "value" : "👨🏾‍🎨", "keywords" : [ "artist", "man", "man artist: medium-dark skin tone", "medium-dark skin tone", "palette" - ], - "value" : "👨🏾‍🎨" + ] }, "👨🏿‍🎨", { @@ -21799,23 +21799,23 @@ }, "👩‍🎨", { + "value" : "👩‍🎨", "keywords" : [ "artist", "palette", "woman" - ], - "value" : "👩‍🎨" + ] }, "👩🏻‍🎨", { + "value" : "👩🏻‍🎨", "keywords" : [ "artist", "light skin tone", "palette", "woman", "woman artist: light skin tone" - ], - "value" : "👩🏻‍🎨" + ] }, "👩🏼‍🎨", { @@ -21830,14 +21830,14 @@ }, "👩🏽‍🎨", { - "value" : "👩🏽‍🎨", "keywords" : [ "artist", "medium skin tone", "palette", "woman", "woman artist: medium skin tone" - ] + ], + "value" : "👩🏽‍🎨" }, "👩🏾‍🎨", { @@ -21891,13 +21891,13 @@ }, "🧑🏽‍✈️", { + "value" : "🧑🏽‍✈️", "keywords" : [ "medium skin tone", "pilot", "pilot: medium skin tone", "plane" - ], - "value" : "🧑🏽‍✈️" + ] }, "🧑🏾‍✈️", { @@ -21930,47 +21930,47 @@ }, "👨🏻‍✈️", { - "value" : "👨🏻‍✈️", "keywords" : [ "light skin tone", "man", "man pilot: light skin tone", "pilot", "plane" - ] + ], + "value" : "👨🏻‍✈️" }, "👨🏼‍✈️", { + "value" : "👨🏼‍✈️", "keywords" : [ "man", "man pilot: medium-light skin tone", "medium-light skin tone", "pilot", "plane" - ], - "value" : "👨🏼‍✈️" + ] }, "👨🏽‍✈️", { + "value" : "👨🏽‍✈️", "keywords" : [ "man", "man pilot: medium skin tone", "medium skin tone", "pilot", "plane" - ], - "value" : "👨🏽‍✈️" + ] }, "👨🏾‍✈️", { - "value" : "👨🏾‍✈️", "keywords" : [ "man", "man pilot: medium-dark skin tone", "medium-dark skin tone", "pilot", "plane" - ] + ], + "value" : "👨🏾‍✈️" }, "👨🏿‍✈️", { @@ -21985,12 +21985,12 @@ }, "👩‍✈️", { - "value" : "👩‍✈️", "keywords" : [ "pilot", "plane", "woman" - ] + ], + "value" : "👩‍✈️" }, "👩🏻‍✈️", { @@ -22005,14 +22005,14 @@ }, "👩🏼‍✈️", { + "value" : "👩🏼‍✈️", "keywords" : [ "medium-light skin tone", "pilot", "plane", "woman", "woman pilot: medium-light skin tone" - ], - "value" : "👩🏼‍✈️" + ] }, "👩🏽‍✈️", { @@ -22038,14 +22038,14 @@ }, "👩🏿‍✈️", { - "value" : "👩🏿‍✈️", "keywords" : [ "dark skin tone", "pilot", "plane", "woman", "woman pilot: dark skin tone" - ] + ], + "value" : "👩🏿‍✈️" }, "🧑‍🚀", { @@ -22058,63 +22058,63 @@ }, "🧑🏻‍🚀", { - "value" : "🧑🏻‍🚀", "keywords" : [ "astronaut", "astronaut: light skin tone", "light skin tone", "rocket" - ] + ], + "value" : "🧑🏻‍🚀" }, "🧑🏼‍🚀", { - "value" : "🧑🏼‍🚀", "keywords" : [ "astronaut", "astronaut: medium-light skin tone", "medium-light skin tone", "rocket" - ] + ], + "value" : "🧑🏼‍🚀" }, "🧑🏽‍🚀", { - "value" : "🧑🏽‍🚀", "keywords" : [ "astronaut", "astronaut: medium skin tone", "medium skin tone", "rocket" - ] + ], + "value" : "🧑🏽‍🚀" }, "🧑🏾‍🚀", { + "value" : "🧑🏾‍🚀", "keywords" : [ "astronaut", "astronaut: medium-dark skin tone", "medium-dark skin tone", "rocket" - ], - "value" : "🧑🏾‍🚀" + ] }, "🧑🏿‍🚀", { + "value" : "🧑🏿‍🚀", "keywords" : [ "astronaut", "astronaut: dark skin tone", "dark skin tone", "rocket" - ], - "value" : "🧑🏿‍🚀" + ] }, "👨‍🚀", { - "value" : "👨‍🚀", "keywords" : [ "astronaut", "man", "rocket", "space" - ] + ], + "value" : "👨‍🚀" }, "👨🏻‍🚀", { @@ -22173,24 +22173,24 @@ }, "👩‍🚀", { - "value" : "👩‍🚀", "keywords" : [ "astronaut", "rocket", "space", "woman" - ] + ], + "value" : "👩‍🚀" }, "👩🏻‍🚀", { + "value" : "👩🏻‍🚀", "keywords" : [ "astronaut", "light skin tone", "rocket", "woman", "woman astronaut: light skin tone" - ], - "value" : "👩🏻‍🚀" + ] }, "👩🏼‍🚀", { @@ -22205,45 +22205,45 @@ }, "👩🏽‍🚀", { + "value" : "👩🏽‍🚀", "keywords" : [ "astronaut", "medium skin tone", "rocket", "woman", "woman astronaut: medium skin tone" - ], - "value" : "👩🏽‍🚀" + ] }, "👩🏾‍🚀", { + "value" : "👩🏾‍🚀", "keywords" : [ "astronaut", "medium-dark skin tone", "rocket", "woman", "woman astronaut: medium-dark skin tone" - ], - "value" : "👩🏾‍🚀" + ] }, "👩🏿‍🚀", { + "value" : "👩🏿‍🚀", "keywords" : [ "astronaut", "dark skin tone", "rocket", "woman", "woman astronaut: dark skin tone" - ], - "value" : "👩🏿‍🚀" + ] }, "🧑‍🚒", { + "value" : "🧑‍🚒", "keywords" : [ "fire", "firefighter", "firetruck" - ], - "value" : "🧑‍🚒" + ] }, "🧑🏻‍🚒", { @@ -22258,14 +22258,14 @@ }, "🧑🏼‍🚒", { + "value" : "🧑🏼‍🚒", "keywords" : [ "fire", "firefighter", "firefighter: medium-light skin tone", "firetruck", "medium-light skin tone" - ], - "value" : "🧑🏼‍🚒" + ] }, "🧑🏽‍🚒", { @@ -22302,35 +22302,35 @@ }, "👨‍🚒", { + "value" : "👨‍🚒", "keywords" : [ "fire", "firefighter", "firetruck", "man" - ], - "value" : "👨‍🚒" + ] }, "👨🏻‍🚒", { - "value" : "👨🏻‍🚒", "keywords" : [ "firefighter", "firetruck", "light skin tone", "man", "man firefighter: light skin tone" - ] + ], + "value" : "👨🏻‍🚒" }, "👨🏼‍🚒", { + "value" : "👨🏼‍🚒", "keywords" : [ "firefighter", "firetruck", "man", "man firefighter: medium-light skin tone", "medium-light skin tone" - ], - "value" : "👨🏼‍🚒" + ] }, "👨🏽‍🚒", { @@ -22345,46 +22345,46 @@ }, "👨🏾‍🚒", { + "value" : "👨🏾‍🚒", "keywords" : [ "firefighter", "firetruck", "man", "man firefighter: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "👨🏾‍🚒" + ] }, "👨🏿‍🚒", { + "value" : "👨🏿‍🚒", "keywords" : [ "dark skin tone", "firefighter", "firetruck", "man", "man firefighter: dark skin tone" - ], - "value" : "👨🏿‍🚒" + ] }, "👩‍🚒", { + "value" : "👩‍🚒", "keywords" : [ "fire", "firefighter", "firetruck", "woman" - ], - "value" : "👩‍🚒" + ] }, "👩🏻‍🚒", { + "value" : "👩🏻‍🚒", "keywords" : [ "firefighter", "firetruck", "light skin tone", "woman", "woman firefighter: light skin tone" - ], - "value" : "👩🏻‍🚒" + ] }, "👩🏼‍🚒", { @@ -22399,14 +22399,14 @@ }, "👩🏽‍🚒", { - "value" : "👩🏽‍🚒", "keywords" : [ "firefighter", "firetruck", "medium skin tone", "woman", "woman firefighter: medium skin tone" - ] + ], + "value" : "👩🏽‍🚒" }, "👩🏾‍🚒", { @@ -22448,14 +22448,14 @@ }, "👮🏻", { - "value" : "👮🏻", "keywords" : [ "cop", "light skin tone", "officer", "police", "police officer: light skin tone" - ] + ], + "value" : "👮🏻" }, "👮🏼", { @@ -22492,14 +22492,14 @@ }, "👮🏿", { + "value" : "👮🏿", "keywords" : [ "cop", "dark skin tone", "officer", "police", "police officer: dark skin tone" - ], - "value" : "👮🏿" + ] }, "👮‍♂️", { @@ -22532,6 +22532,7 @@ }, "👮🏼‍♂️", { + "value" : "👮🏼‍♂️", "keywords" : [ "cop", "man", @@ -22539,12 +22540,10 @@ "medium-light skin tone", "officer", "police" - ], - "value" : "👮🏼‍♂️" + ] }, "👮🏽‍♂️", { - "value" : "👮🏽‍♂️", "keywords" : [ "cop", "man", @@ -22552,7 +22551,8 @@ "medium skin tone", "officer", "police" - ] + ], + "value" : "👮🏽‍♂️" }, "👮🏾‍♂️", { @@ -22597,7 +22597,6 @@ }, "👮🏻‍♀️", { - "value" : "👮🏻‍♀️", "keywords" : [ "cop", "light skin tone", @@ -22605,7 +22604,8 @@ "police", "woman", "woman police officer: light skin tone" - ] + ], + "value" : "👮🏻‍♀️" }, "👮🏼‍♀️", { @@ -22657,12 +22657,12 @@ }, "🕵️", { - "value" : "🕵️", "keywords" : [ "detective", "sleuth", "spy" - ] + ], + "value" : "🕵️" }, "🕵🏻", { @@ -22710,14 +22710,14 @@ }, "🕵🏿", { + "value" : "🕵🏿", "keywords" : [ "dark skin tone", "detective", "detective: dark skin tone", "sleuth", "spy" - ], - "value" : "🕵🏿" + ] }, "🕵️‍♂️", { @@ -22767,6 +22767,7 @@ }, "🕵🏾‍♂️", { + "value" : "🕵🏾‍♂️", "keywords" : [ "detective", "man", @@ -22774,8 +22775,7 @@ "medium-dark skin tone", "sleuth", "spy" - ], - "value" : "🕵🏾‍♂️" + ] }, "🕵🏿‍♂️", { @@ -22801,6 +22801,7 @@ }, "🕵🏻‍♀️", { + "value" : "🕵🏻‍♀️", "keywords" : [ "detective", "light skin tone", @@ -22808,8 +22809,7 @@ "spy", "woman", "woman detective: light skin tone" - ], - "value" : "🕵🏻‍♀️" + ] }, "🕵🏼‍♀️", { @@ -22825,7 +22825,6 @@ }, "🕵🏽‍♀️", { - "value" : "🕵🏽‍♀️", "keywords" : [ "detective", "medium skin tone", @@ -22833,7 +22832,8 @@ "spy", "woman", "woman detective: medium skin tone" - ] + ], + "value" : "🕵🏽‍♀️" }, "🕵🏾‍♀️", { @@ -22849,7 +22849,6 @@ }, "🕵🏿‍♀️", { - "value" : "🕵🏿‍♀️", "keywords" : [ "dark skin tone", "detective", @@ -22857,36 +22856,37 @@ "spy", "woman", "woman detective: dark skin tone" - ] + ], + "value" : "🕵🏿‍♀️" }, "💂", { - "value" : "💂", "keywords" : [ "buckingham", "guard", "helmet", "london", "palace" - ] + ], + "value" : "💂" }, "💂🏻", { - "value" : "💂🏻", "keywords" : [ "guard", "guard: light skin tone", "light skin tone" - ] + ], + "value" : "💂🏻" }, "💂🏼", { + "value" : "💂🏼", "keywords" : [ "guard", "guard: medium-light skin tone", "medium-light skin tone" - ], - "value" : "💂🏼" + ] }, "💂🏽", { @@ -22917,7 +22917,6 @@ }, "💂‍♂️", { - "value" : "💂‍♂️", "keywords" : [ "buckingham", "guard", @@ -22925,17 +22924,18 @@ "london", "man", "palace" - ] + ], + "value" : "💂‍♂️" }, "💂🏻‍♂️", { + "value" : "💂🏻‍♂️", "keywords" : [ "guard", "light skin tone", "man", "man guard: light skin tone" - ], - "value" : "💂🏻‍♂️" + ] }, "💂🏼‍♂️", { @@ -23021,13 +23021,13 @@ }, "💂🏾‍♀️", { - "value" : "💂🏾‍♀️", "keywords" : [ "guard", "medium-dark skin tone", "woman", "woman guard: medium-dark skin tone" - ] + ], + "value" : "💂🏾‍♀️" }, "💂🏿‍♀️", { @@ -23041,7 +23041,6 @@ }, "🥷", { - "value" : "🥷", "keywords" : [ "assassin", "fight", @@ -23055,11 +23054,11 @@ "soldier", "stealth", "war" - ] + ], + "value" : "🥷" }, "🥷🏻", { - "value" : "🥷🏻", "keywords" : [ "fighter", "hidden", @@ -23067,11 +23066,11 @@ "ninja", "ninja: light skin tone", "stealth" - ] + ], + "value" : "🥷🏻" }, "🥷🏼", { - "value" : "🥷🏼", "keywords" : [ "fighter", "hidden", @@ -23079,7 +23078,8 @@ "ninja", "ninja: medium-light skin tone", "stealth" - ] + ], + "value" : "🥷🏼" }, "🥷🏽", { @@ -23148,14 +23148,14 @@ }, "👷🏼", { - "value" : "👷🏼", "keywords" : [ "construction", "construction worker: medium-light skin tone", "hat", "medium-light skin tone", "worker" - ] + ], + "value" : "👷🏼" }, "👷🏽", { @@ -23170,14 +23170,14 @@ }, "👷🏾", { - "value" : "👷🏾", "keywords" : [ "construction", "construction worker: medium-dark skin tone", "hat", "medium-dark skin tone", "worker" - ] + ], + "value" : "👷🏾" }, "👷🏿", { @@ -23209,25 +23209,25 @@ }, "👷🏻‍♂️", { - "value" : "👷🏻‍♂️", "keywords" : [ "construction", "light skin tone", "man", "man construction worker: light skin tone", "worker" - ] + ], + "value" : "👷🏻‍♂️" }, "👷🏼‍♂️", { - "value" : "👷🏼‍♂️", "keywords" : [ "construction", "man", "man construction worker: medium-light skin tone", "medium-light skin tone", "worker" - ] + ], + "value" : "👷🏼‍♂️" }, "👷🏽‍♂️", { @@ -23242,14 +23242,14 @@ }, "👷🏾‍♂️", { - "value" : "👷🏾‍♂️", "keywords" : [ "construction", "man", "man construction worker: medium-dark skin tone", "medium-dark skin tone", "worker" - ] + ], + "value" : "👷🏾‍♂️" }, "👷🏿‍♂️", { @@ -23264,7 +23264,6 @@ }, "👷‍♀️", { - "value" : "👷‍♀️", "keywords" : [ "build", "construction", @@ -23278,18 +23277,19 @@ "woman", "work", "worker" - ] + ], + "value" : "👷‍♀️" }, "👷🏻‍♀️", { - "value" : "👷🏻‍♀️", "keywords" : [ "construction", "light skin tone", "woman", "woman construction worker: light skin tone", "worker" - ] + ], + "value" : "👷🏻‍♀️" }, "👷🏼‍♀️", { @@ -23304,14 +23304,14 @@ }, "👷🏽‍♀️", { + "value" : "👷🏽‍♀️", "keywords" : [ "construction", "medium skin tone", "woman", "woman construction worker: medium skin tone", "worker" - ], - "value" : "👷🏽‍♀️" + ] }, "👷🏾‍♀️", { @@ -23326,14 +23326,14 @@ }, "👷🏿‍♀️", { + "value" : "👷🏿‍♀️", "keywords" : [ "construction", "dark skin tone", "woman", "woman construction worker: dark skin tone", "worker" - ], - "value" : "👷🏿‍♀️" + ] }, "🫅", { @@ -23363,6 +23363,7 @@ }, "🫅🏼", { + "value" : "🫅🏼", "keywords" : [ "medium-light skin tone", "monarch", @@ -23371,8 +23372,7 @@ "person with crown: medium-light skin tone", "regal", "royalty" - ], - "value" : "🫅🏼" + ] }, "🫅🏽", { @@ -23402,6 +23402,7 @@ }, "🫅🏿", { + "value" : "🫅🏿", "keywords" : [ "dark skin tone", "monarch", @@ -23410,11 +23411,11 @@ "person with crown: dark skin tone", "regal", "royalty" - ], - "value" : "🫅🏿" + ] }, "🤴", { + "value" : "🤴", "keywords" : [ "crown", "fairy", @@ -23425,17 +23426,16 @@ "royal", "royalty", "tale" - ], - "value" : "🤴" + ] }, "🤴🏻", { + "value" : "🤴🏻", "keywords" : [ "light skin tone", "prince", "prince: light skin tone" - ], - "value" : "🤴🏻" + ] }, "🤴🏼", { @@ -23448,30 +23448,30 @@ }, "🤴🏽", { + "value" : "🤴🏽", "keywords" : [ "medium skin tone", "prince", "prince: medium skin tone" - ], - "value" : "🤴🏽" + ] }, "🤴🏾", { + "value" : "🤴🏾", "keywords" : [ "medium-dark skin tone", "prince", "prince: medium-dark skin tone" - ], - "value" : "🤴🏾" + ] }, "🤴🏿", { - "value" : "🤴🏿", "keywords" : [ "dark skin tone", "prince", "prince: dark skin tone" - ] + ], + "value" : "🤴🏿" }, "👸", { @@ -23490,36 +23490,36 @@ }, "👸🏻", { + "value" : "👸🏻", "keywords" : [ "fairy tale", "fantasy", "light skin tone", "princess", "princess: light skin tone" - ], - "value" : "👸🏻" + ] }, "👸🏼", { - "value" : "👸🏼", "keywords" : [ "fairy tale", "fantasy", "medium-light skin tone", "princess", "princess: medium-light skin tone" - ] + ], + "value" : "👸🏼" }, "👸🏽", { + "value" : "👸🏽", "keywords" : [ "fairy tale", "fantasy", "medium skin tone", "princess", "princess: medium skin tone" - ], - "value" : "👸🏽" + ] }, "👸🏾", { @@ -23534,14 +23534,14 @@ }, "👸🏿", { + "value" : "👸🏿", "keywords" : [ "dark skin tone", "fairy tale", "fantasy", "princess", "princess: dark skin tone" - ], - "value" : "👸🏿" + ] }, "👳", { @@ -23564,23 +23564,23 @@ }, "👳🏼", { - "value" : "👳🏼", "keywords" : [ "medium-light skin tone", "person wearing turban", "person wearing turban: medium-light skin tone", "turban" - ] + ], + "value" : "👳🏼" }, "👳🏽", { + "value" : "👳🏽", "keywords" : [ "medium skin tone", "person wearing turban", "person wearing turban: medium skin tone", "turban" - ], - "value" : "👳🏽" + ] }, "👳🏾", { @@ -23594,13 +23594,13 @@ }, "👳🏿", { + "value" : "👳🏿", "keywords" : [ "dark skin tone", "person wearing turban", "person wearing turban: dark skin tone", "turban" - ], - "value" : "👳🏿" + ] }, "👳‍♂️", { @@ -23688,14 +23688,14 @@ }, "👳🏼‍♀️", { - "value" : "👳🏼‍♀️", "keywords" : [ "medium-light skin tone", "turban", "woman", "woman wearing turban", "woman wearing turban: medium-light skin tone" - ] + ], + "value" : "👳🏼‍♀️" }, "👳🏽‍♀️", { @@ -23732,6 +23732,7 @@ }, "👲", { + "value" : "👲", "keywords" : [ "cap", "Chinese", @@ -23742,12 +23743,10 @@ "person", "pi", "skullcap" - ], - "value" : "👲" + ] }, "👲🏻", { - "value" : "👲🏻", "keywords" : [ "cap", "gua pi mao", @@ -23757,7 +23756,8 @@ "person with skullcap", "person with skullcap: light skin tone", "skullcap" - ] + ], + "value" : "👲🏻" }, "👲🏼", { @@ -23789,6 +23789,7 @@ }, "👲🏾", { + "value" : "👲🏾", "keywords" : [ "cap", "gua pi mao", @@ -23798,8 +23799,7 @@ "person with skullcap", "person with skullcap: medium-dark skin tone", "skullcap" - ], - "value" : "👲🏾" + ] }, "👲🏿", { @@ -23857,7 +23857,6 @@ }, "🧕🏽", { - "value" : "🧕🏽", "keywords" : [ "headscarf", "hijab", @@ -23866,11 +23865,11 @@ "tichel", "woman with headscarf", "woman with headscarf: medium skin tone" - ] + ], + "value" : "🧕🏽" }, "🧕🏾", { - "value" : "🧕🏾", "keywords" : [ "headscarf", "hijab", @@ -23879,7 +23878,8 @@ "tichel", "woman with headscarf", "woman with headscarf: medium-dark skin tone" - ] + ], + "value" : "🧕🏾" }, "🧕🏿", { @@ -23906,7 +23906,6 @@ }, "🤵🏻", { - "value" : "🤵🏻", "keywords" : [ "groom", "light skin tone", @@ -23914,10 +23913,12 @@ "person in tuxedo", "person in tuxedo: light skin tone", "tuxedo" - ] + ], + "value" : "🤵🏻" }, "🤵🏼", { + "value" : "🤵🏼", "keywords" : [ "groom", "medium-light skin tone", @@ -23925,8 +23926,7 @@ "person in tuxedo", "person in tuxedo: medium-light skin tone", "tuxedo" - ], - "value" : "🤵🏼" + ] }, "🤵🏽", { @@ -23966,14 +23966,14 @@ }, "🤵‍♂️", { - "value" : "🤵‍♂️", "keywords" : [ "formal", "groom", "man", "tuxedo", "wedding" - ] + ], + "value" : "🤵‍♂️" }, "🤵🏻‍♂️", { @@ -23988,14 +23988,14 @@ }, "🤵🏼‍♂️", { + "value" : "🤵🏼‍♂️", "keywords" : [ "man", "man in tuxedo", "man in tuxedo: medium-light skin tone", "medium-light skin tone", "tuxedo" - ], - "value" : "🤵🏼‍♂️" + ] }, "🤵🏽‍♂️", { @@ -24032,13 +24032,13 @@ }, "🤵‍♀️", { - "value" : "🤵‍♀️", "keywords" : [ "formal", "tuxedo", "wedding", "woman" - ] + ], + "value" : "🤵‍♀️" }, "🤵🏻‍♀️", { @@ -24053,59 +24053,60 @@ }, "🤵🏼‍♀️", { + "value" : "🤵🏼‍♀️", "keywords" : [ "medium-light skin tone", "tuxedo", "woman", "woman in tuxedo", "woman in tuxedo: medium-light skin tone" - ], - "value" : "🤵🏼‍♀️" + ] }, "🤵🏽‍♀️", { - "value" : "🤵🏽‍♀️", "keywords" : [ "medium skin tone", "tuxedo", "woman", "woman in tuxedo", "woman in tuxedo: medium skin tone" - ] + ], + "value" : "🤵🏽‍♀️" }, "🤵🏾‍♀️", { + "value" : "🤵🏾‍♀️", "keywords" : [ "medium-dark skin tone", "tuxedo", "woman", "woman in tuxedo", "woman in tuxedo: medium-dark skin tone" - ], - "value" : "🤵🏾‍♀️" + ] }, "🤵🏿‍♀️", { - "value" : "🤵🏿‍♀️", "keywords" : [ "dark skin tone", "tuxedo", "woman", "woman in tuxedo", "woman in tuxedo: dark skin tone" - ] + ], + "value" : "🤵🏿‍♀️" }, "👰", { - "value" : "👰", "keywords" : [ "person", "veil", "wedding" - ] + ], + "value" : "👰" }, "👰🏻", { + "value" : "👰🏻", "keywords" : [ "bride", "light skin tone", @@ -24114,8 +24115,7 @@ "person with veil: light skin tone", "veil", "wedding" - ], - "value" : "👰🏻" + ] }, "👰🏼", { @@ -24132,6 +24132,7 @@ }, "👰🏽", { + "value" : "👰🏽", "keywords" : [ "bride", "medium skin tone", @@ -24140,8 +24141,7 @@ "person with veil: medium skin tone", "veil", "wedding" - ], - "value" : "👰🏽" + ] }, "👰🏾", { @@ -24158,6 +24158,7 @@ }, "👰🏿", { + "value" : "👰🏿", "keywords" : [ "bride", "dark skin tone", @@ -24166,39 +24167,38 @@ "person with veil: dark skin tone", "veil", "wedding" - ], - "value" : "👰🏿" + ] }, "👰‍♂️", { - "value" : "👰‍♂️", "keywords" : [ "man", "veil", "wedding" - ] + ], + "value" : "👰‍♂️" }, "👰🏻‍♂️", { + "value" : "👰🏻‍♂️", "keywords" : [ "light skin tone", "man", "man with veil", "man with veil: light skin tone", "veil" - ], - "value" : "👰🏻‍♂️" + ] }, "👰🏼‍♂️", { + "value" : "👰🏼‍♂️", "keywords" : [ "man", "man with veil", "man with veil: medium-light skin tone", "medium-light skin tone", "veil" - ], - "value" : "👰🏼‍♂️" + ] }, "👰🏽‍♂️", { @@ -24213,25 +24213,25 @@ }, "👰🏾‍♂️", { + "value" : "👰🏾‍♂️", "keywords" : [ "man", "man with veil", "man with veil: medium-dark skin tone", "medium-dark skin tone", "veil" - ], - "value" : "👰🏾‍♂️" + ] }, "👰🏿‍♂️", { + "value" : "👰🏿‍♂️", "keywords" : [ "dark skin tone", "man", "man with veil", "man with veil: dark skin tone", "veil" - ], - "value" : "👰🏿‍♂️" + ] }, "👰‍♀️", { @@ -24245,36 +24245,36 @@ }, "👰🏻‍♀️", { - "value" : "👰🏻‍♀️", "keywords" : [ "light skin tone", "veil", "woman", "woman with veil", "woman with veil: light skin tone" - ] + ], + "value" : "👰🏻‍♀️" }, "👰🏼‍♀️", { - "value" : "👰🏼‍♀️", "keywords" : [ "medium-light skin tone", "veil", "woman", "woman with veil", "woman with veil: medium-light skin tone" - ] + ], + "value" : "👰🏼‍♀️" }, "👰🏽‍♀️", { - "value" : "👰🏽‍♀️", "keywords" : [ "medium skin tone", "veil", "woman", "woman with veil", "woman with veil: medium skin tone" - ] + ], + "value" : "👰🏽‍♀️" }, "👰🏾‍♀️", { @@ -24318,13 +24318,13 @@ }, "🤰🏼", { - "value" : "🤰🏼", "keywords" : [ "medium-light skin tone", "pregnant", "pregnant woman: medium-light skin tone", "woman" - ] + ], + "value" : "🤰🏼" }, "🤰🏽", { @@ -24383,7 +24383,6 @@ }, "🫃🏼", { - "value" : "🫃🏼", "keywords" : [ "belly", "bloated", @@ -24392,10 +24391,12 @@ "pregnant", "pregnant man", "pregnant man: medium-light skin tone" - ] + ], + "value" : "🫃🏼" }, "🫃🏽", { + "value" : "🫃🏽", "keywords" : [ "belly", "bloated", @@ -24404,11 +24405,11 @@ "pregnant", "pregnant man", "pregnant man: medium skin tone" - ], - "value" : "🫃🏽" + ] }, "🫃🏾", { + "value" : "🫃🏾", "keywords" : [ "belly", "bloated", @@ -24417,11 +24418,11 @@ "pregnant", "pregnant man", "pregnant man: medium-dark skin tone" - ], - "value" : "🫃🏾" + ] }, "🫃🏿", { + "value" : "🫃🏿", "keywords" : [ "belly", "bloated", @@ -24430,12 +24431,10 @@ "pregnant", "pregnant man", "pregnant man: dark skin tone" - ], - "value" : "🫃🏿" + ] }, "🫄", { - "value" : "🫄", "keywords" : [ "belly", "bloated", @@ -24444,10 +24443,12 @@ "person", "pregnant", "stuffed" - ] + ], + "value" : "🫄" }, "🫄🏻", { + "value" : "🫄🏻", "keywords" : [ "belly", "bloated", @@ -24456,8 +24457,7 @@ "pregnant", "pregnant person", "pregnant person: light skin tone" - ], - "value" : "🫄🏻" + ] }, "🫄🏼", { @@ -24474,6 +24474,7 @@ }, "🫄🏽", { + "value" : "🫄🏽", "keywords" : [ "belly", "bloated", @@ -24482,8 +24483,7 @@ "pregnant", "pregnant person", "pregnant person: medium skin tone" - ], - "value" : "🫄🏽" + ] }, "🫄🏾", { @@ -24513,7 +24513,6 @@ }, "🤱", { - "value" : "🤱", "keywords" : [ "baby", "breast", @@ -24523,11 +24522,11 @@ "mother", "nursing", "woman" - ] + ], + "value" : "🤱" }, "🤱🏻", { - "value" : "🤱🏻", "keywords" : [ "baby", "breast", @@ -24535,7 +24534,8 @@ "breast-feeding: light skin tone", "light skin tone", "nursing" - ] + ], + "value" : "🤱🏻" }, "🤱🏼", { @@ -24563,7 +24563,6 @@ }, "🤱🏾", { - "value" : "🤱🏾", "keywords" : [ "baby", "breast", @@ -24571,7 +24570,8 @@ "breast-feeding: medium-dark skin tone", "medium-dark skin tone", "nursing" - ] + ], + "value" : "🤱🏾" }, "🤱🏿", { @@ -24587,6 +24587,7 @@ }, "👩‍🍼", { + "value" : "👩‍🍼", "keywords" : [ "baby", "feed", @@ -24597,12 +24598,10 @@ "newborn", "nursing", "woman" - ], - "value" : "👩‍🍼" + ] }, "👩🏻‍🍼", { - "value" : "👩🏻‍🍼", "keywords" : [ "baby", "feeding", @@ -24610,7 +24609,8 @@ "nursing", "woman", "woman feeding baby: light skin tone" - ] + ], + "value" : "👩🏻‍🍼" }, "👩🏼‍🍼", { @@ -24638,6 +24638,7 @@ }, "👩🏾‍🍼", { + "value" : "👩🏾‍🍼", "keywords" : [ "baby", "feeding", @@ -24645,8 +24646,7 @@ "nursing", "woman", "woman feeding baby: medium-dark skin tone" - ], - "value" : "👩🏾‍🍼" + ] }, "👩🏿‍🍼", { @@ -24677,6 +24677,7 @@ }, "👨🏻‍🍼", { + "value" : "👨🏻‍🍼", "keywords" : [ "baby", "feeding", @@ -24684,11 +24685,11 @@ "man", "man feeding baby: light skin tone", "nursing" - ], - "value" : "👨🏻‍🍼" + ] }, "👨🏼‍🍼", { + "value" : "👨🏼‍🍼", "keywords" : [ "baby", "feeding", @@ -24696,8 +24697,7 @@ "man feeding baby: medium-light skin tone", "medium-light skin tone", "nursing" - ], - "value" : "👨🏼‍🍼" + ] }, "👨🏽‍🍼", { @@ -24750,7 +24750,6 @@ }, "🧑🏻‍🍼", { - "value" : "🧑🏻‍🍼", "keywords" : [ "baby", "feeding", @@ -24758,7 +24757,8 @@ "nursing", "person", "person feeding baby: light skin tone" - ] + ], + "value" : "🧑🏻‍🍼" }, "🧑🏼‍🍼", { @@ -24774,7 +24774,6 @@ }, "🧑🏽‍🍼", { - "value" : "🧑🏽‍🍼", "keywords" : [ "baby", "feeding", @@ -24782,11 +24781,11 @@ "nursing", "person", "person feeding baby: medium skin tone" - ] + ], + "value" : "🧑🏽‍🍼" }, "🧑🏾‍🍼", { - "value" : "🧑🏾‍🍼", "keywords" : [ "baby", "feeding", @@ -24794,10 +24793,12 @@ "nursing", "person", "person feeding baby: medium-dark skin tone" - ] + ], + "value" : "🧑🏾‍🍼" }, "🧑🏿‍🍼", { + "value" : "🧑🏿‍🍼", "keywords" : [ "baby", "dark skin tone", @@ -24805,12 +24806,10 @@ "nursing", "person", "person feeding baby: dark skin tone" - ], - "value" : "🧑🏿‍🍼" + ] }, "👼", { - "value" : "👼", "keywords" : [ "angel", "baby", @@ -24820,11 +24819,11 @@ "fairytale", "fantasy", "tale" - ] + ], + "value" : "👼" }, "👼🏻", { - "value" : "👼🏻", "keywords" : [ "angel", "baby", @@ -24833,10 +24832,12 @@ "fairy tale", "fantasy", "light skin tone" - ] + ], + "value" : "👼🏻" }, "👼🏼", { + "value" : "👼🏼", "keywords" : [ "angel", "baby", @@ -24845,8 +24846,7 @@ "fairy tale", "fantasy", "medium-light skin tone" - ], - "value" : "👼🏼" + ] }, "👼🏽", { @@ -24863,7 +24863,6 @@ }, "👼🏾", { - "value" : "👼🏾", "keywords" : [ "angel", "baby", @@ -24872,11 +24871,11 @@ "fairy tale", "fantasy", "medium-dark skin tone" - ] + ], + "value" : "👼🏾" }, "👼🏿", { - "value" : "👼🏿", "keywords" : [ "angel", "baby", @@ -24885,11 +24884,11 @@ "face", "fairy tale", "fantasy" - ] + ], + "value" : "👼🏿" }, "🎅", { - "value" : "🎅", "keywords" : [ "celebration", "Christmas", @@ -24902,11 +24901,11 @@ "santa", "tale", "xmas" - ] + ], + "value" : "🎅" }, "🎅🏻", { - "value" : "🎅🏻", "keywords" : [ "celebration", "Christmas", @@ -24915,10 +24914,12 @@ "light skin tone", "santa", "Santa Claus: light skin tone" - ] + ], + "value" : "🎅🏻" }, "🎅🏼", { + "value" : "🎅🏼", "keywords" : [ "celebration", "Christmas", @@ -24927,8 +24928,7 @@ "medium-light skin tone", "santa", "Santa Claus: medium-light skin tone" - ], - "value" : "🎅🏼" + ] }, "🎅🏽", { @@ -24945,7 +24945,6 @@ }, "🎅🏾", { - "value" : "🎅🏾", "keywords" : [ "celebration", "Christmas", @@ -24954,11 +24953,11 @@ "medium-dark skin tone", "santa", "Santa Claus: medium-dark skin tone" - ] + ], + "value" : "🎅🏾" }, "🎅🏿", { - "value" : "🎅🏿", "keywords" : [ "celebration", "Christmas", @@ -24967,11 +24966,11 @@ "father", "santa", "Santa Claus: dark skin tone" - ] + ], + "value" : "🎅🏿" }, "🤶", { - "value" : "🤶", "keywords" : [ "celebration", "Christmas", @@ -24985,10 +24984,12 @@ "santa", "tale", "xmas" - ] + ], + "value" : "🤶" }, "🤶🏻", { + "value" : "🤶🏻", "keywords" : [ "celebration", "Christmas", @@ -24997,8 +24998,7 @@ "mother", "Mrs.", "Mrs. Claus: light skin tone" - ], - "value" : "🤶🏻" + ] }, "🤶🏼", { @@ -25015,7 +25015,6 @@ }, "🤶🏽", { - "value" : "🤶🏽", "keywords" : [ "celebration", "Christmas", @@ -25024,10 +25023,12 @@ "mother", "Mrs.", "Mrs. Claus: medium skin tone" - ] + ], + "value" : "🤶🏽" }, "🤶🏾", { + "value" : "🤶🏾", "keywords" : [ "celebration", "Christmas", @@ -25036,12 +25037,10 @@ "mother", "Mrs.", "Mrs. Claus: medium-dark skin tone" - ], - "value" : "🤶🏾" + ] }, "🤶🏿", { - "value" : "🤶🏿", "keywords" : [ "celebration", "Christmas", @@ -25050,7 +25049,8 @@ "mother", "Mrs.", "Mrs. Claus: dark skin tone" - ] + ], + "value" : "🤶🏿" }, "🧑‍🎄", { @@ -25093,36 +25093,36 @@ }, "🧑🏽‍🎄", { + "value" : "🧑🏽‍🎄", "keywords" : [ "christmas", "claus", "medium skin tone", "mx claus", "mx claus: medium skin tone" - ], - "value" : "🧑🏽‍🎄" + ] }, "🧑🏾‍🎄", { + "value" : "🧑🏾‍🎄", "keywords" : [ "christmas", "claus", "medium-dark skin tone", "mx claus", "mx claus: medium-dark skin tone" - ], - "value" : "🧑🏾‍🎄" + ] }, "🧑🏿‍🎄", { + "value" : "🧑🏿‍🎄", "keywords" : [ "christmas", "claus", "dark skin tone", "mx claus", "mx claus: dark skin tone" - ], - "value" : "🧑🏿‍🎄" + ] }, "🦸", { @@ -25149,7 +25149,6 @@ }, "🦸🏼", { - "value" : "🦸🏼", "keywords" : [ "good", "hero", @@ -25158,10 +25157,12 @@ "superhero", "superhero: medium-light skin tone", "superpower" - ] + ], + "value" : "🦸🏼" }, "🦸🏽", { + "value" : "🦸🏽", "keywords" : [ "good", "hero", @@ -25170,8 +25171,7 @@ "superhero", "superhero: medium skin tone", "superpower" - ], - "value" : "🦸🏽" + ] }, "🦸🏾", { @@ -25201,18 +25201,17 @@ }, "🦸‍♂️", { + "value" : "🦸‍♂️", "keywords" : [ "good", "hero", "man", "superhero", "superpower" - ], - "value" : "🦸‍♂️" + ] }, "🦸🏻‍♂️", { - "value" : "🦸🏻‍♂️", "keywords" : [ "good", "hero", @@ -25221,7 +25220,8 @@ "man superhero", "man superhero: light skin tone", "superpower" - ] + ], + "value" : "🦸🏻‍♂️" }, "🦸🏼‍♂️", { @@ -25251,7 +25251,6 @@ }, "🦸🏾‍♂️", { - "value" : "🦸🏾‍♂️", "keywords" : [ "good", "hero", @@ -25260,7 +25259,8 @@ "man superhero: medium-dark skin tone", "medium-dark skin tone", "superpower" - ] + ], + "value" : "🦸🏾‍♂️" }, "🦸🏿‍♂️", { @@ -25277,7 +25277,6 @@ }, "🦸‍♀️", { - "value" : "🦸‍♀️", "keywords" : [ "good", "hero", @@ -25285,10 +25284,12 @@ "superhero", "superpower", "woman" - ] + ], + "value" : "🦸‍♀️" }, "🦸🏻‍♀️", { + "value" : "🦸🏻‍♀️", "keywords" : [ "good", "hero", @@ -25298,8 +25299,7 @@ "woman", "woman superhero", "woman superhero: light skin tone" - ], - "value" : "🦸🏻‍♀️" + ] }, "🦸🏼‍♀️", { @@ -25359,6 +25359,7 @@ }, "🦹", { + "value" : "🦹", "keywords" : [ "bad", "criminal", @@ -25366,8 +25367,7 @@ "superpower", "supervillain", "villain" - ], - "value" : "🦹" + ] }, "🦹🏻", { @@ -25397,6 +25397,7 @@ }, "🦹🏽", { + "value" : "🦹🏽", "keywords" : [ "criminal", "evil", @@ -25405,12 +25406,10 @@ "supervillain", "supervillain: medium skin tone", "villain" - ], - "value" : "🦹🏽" + ] }, "🦹🏾", { - "value" : "🦹🏾", "keywords" : [ "criminal", "evil", @@ -25419,11 +25418,11 @@ "supervillain", "supervillain: medium-dark skin tone", "villain" - ] + ], + "value" : "🦹🏾" }, "🦹🏿", { - "value" : "🦹🏿", "keywords" : [ "criminal", "dark skin tone", @@ -25432,11 +25431,11 @@ "supervillain", "supervillain: dark skin tone", "villain" - ] + ], + "value" : "🦹🏿" }, "🦹‍♂️", { - "value" : "🦹‍♂️", "keywords" : [ "bad", "criminal", @@ -25445,11 +25444,11 @@ "superpower", "supervillain", "villain" - ] + ], + "value" : "🦹‍♂️" }, "🦹🏻‍♂️", { - "value" : "🦹🏻‍♂️", "keywords" : [ "criminal", "evil", @@ -25459,7 +25458,8 @@ "man supervillain: light skin tone", "superpower", "villain" - ] + ], + "value" : "🦹🏻‍♂️" }, "🦹🏼‍♂️", { @@ -25477,7 +25477,6 @@ }, "🦹🏽‍♂️", { - "value" : "🦹🏽‍♂️", "keywords" : [ "criminal", "evil", @@ -25487,7 +25486,8 @@ "medium skin tone", "superpower", "villain" - ] + ], + "value" : "🦹🏽‍♂️" }, "🦹🏾‍♂️", { @@ -25519,7 +25519,6 @@ }, "🦹‍♀️", { - "value" : "🦹‍♀️", "keywords" : [ "bad", "criminal", @@ -25528,10 +25527,12 @@ "supervillain", "villain", "woman" - ] + ], + "value" : "🦹‍♀️" }, "🦹🏻‍♀️", { + "value" : "🦹🏻‍♀️", "keywords" : [ "criminal", "evil", @@ -25541,11 +25542,11 @@ "woman", "woman supervillain", "woman supervillain: light skin tone" - ], - "value" : "🦹🏻‍♀️" + ] }, "🦹🏼‍♀️", { + "value" : "🦹🏼‍♀️", "keywords" : [ "criminal", "evil", @@ -25555,8 +25556,7 @@ "woman", "woman supervillain", "woman supervillain: medium-light skin tone" - ], - "value" : "🦹🏼‍♀️" + ] }, "🦹🏽‍♀️", { @@ -25574,6 +25574,7 @@ }, "🦹🏾‍♀️", { + "value" : "🦹🏾‍♀️", "keywords" : [ "criminal", "evil", @@ -25583,12 +25584,10 @@ "woman", "woman supervillain", "woman supervillain: medium-dark skin tone" - ], - "value" : "🦹🏾‍♀️" + ] }, "🦹🏿‍♀️", { - "value" : "🦹🏿‍♀️", "keywords" : [ "criminal", "dark skin tone", @@ -25598,7 +25597,8 @@ "woman", "woman supervillain", "woman supervillain: dark skin tone" - ] + ], + "value" : "🦹🏿‍♀️" }, "🧙", { @@ -25658,6 +25658,7 @@ }, "🧙🏾", { + "value" : "🧙🏾", "keywords" : [ "mage", "mage: medium-dark skin tone", @@ -25666,12 +25667,10 @@ "sorceress", "witch", "wizard" - ], - "value" : "🧙🏾" + ] }, "🧙🏿", { - "value" : "🧙🏿", "keywords" : [ "dark skin tone", "mage", @@ -25680,10 +25679,12 @@ "sorceress", "witch", "wizard" - ] + ], + "value" : "🧙🏿" }, "🧙‍♂️", { + "value" : "🧙‍♂️", "keywords" : [ "fantasy", "mage", @@ -25697,8 +25698,7 @@ "summon", "witch", "wizard" - ], - "value" : "🧙‍♂️" + ] }, "🧙🏻‍♂️", { @@ -25735,14 +25735,14 @@ }, "🧙🏾‍♂️", { + "value" : "🧙🏾‍♂️", "keywords" : [ "man mage", "man mage: medium-dark skin tone", "medium-dark skin tone", "sorcerer", "wizard" - ], - "value" : "🧙🏾‍♂️" + ] }, "🧙🏿‍♂️", { @@ -25775,58 +25775,58 @@ }, "🧙🏻‍♀️", { + "value" : "🧙🏻‍♀️", "keywords" : [ "light skin tone", "sorceress", "witch", "woman mage", "woman mage: light skin tone" - ], - "value" : "🧙🏻‍♀️" + ] }, "🧙🏼‍♀️", { - "value" : "🧙🏼‍♀️", "keywords" : [ "medium-light skin tone", "sorceress", "witch", "woman mage", "woman mage: medium-light skin tone" - ] + ], + "value" : "🧙🏼‍♀️" }, "🧙🏽‍♀️", { + "value" : "🧙🏽‍♀️", "keywords" : [ "medium skin tone", "sorceress", "witch", "woman mage", "woman mage: medium skin tone" - ], - "value" : "🧙🏽‍♀️" + ] }, "🧙🏾‍♀️", { + "value" : "🧙🏾‍♀️", "keywords" : [ "medium-dark skin tone", "sorceress", "witch", "woman mage", "woman mage: medium-dark skin tone" - ], - "value" : "🧙🏾‍♀️" + ] }, "🧙🏿‍♀️", { - "value" : "🧙🏿‍♀️", "keywords" : [ "dark skin tone", "sorceress", "witch", "woman mage", "woman mage: dark skin tone" - ] + ], + "value" : "🧙🏿‍♀️" }, "🧚", { @@ -25844,6 +25844,7 @@ }, "🧚🏻", { + "value" : "🧚🏻", "keywords" : [ "fairy", "fairy: light skin tone", @@ -25851,11 +25852,11 @@ "Oberon", "Puck", "Titania" - ], - "value" : "🧚🏻" + ] }, "🧚🏼", { + "value" : "🧚🏼", "keywords" : [ "fairy", "fairy: medium-light skin tone", @@ -25863,8 +25864,7 @@ "Oberon", "Puck", "Titania" - ], - "value" : "🧚🏼" + ] }, "🧚🏽", { @@ -25880,7 +25880,6 @@ }, "🧚🏾", { - "value" : "🧚🏾", "keywords" : [ "fairy", "fairy: medium-dark skin tone", @@ -25888,11 +25887,11 @@ "Oberon", "Puck", "Titania" - ] + ], + "value" : "🧚🏾" }, "🧚🏿", { - "value" : "🧚🏿", "keywords" : [ "dark skin tone", "fairy", @@ -25900,7 +25899,8 @@ "Oberon", "Puck", "Titania" - ] + ], + "value" : "🧚🏿" }, "🧚‍♂️", { @@ -25921,25 +25921,25 @@ }, "🧚🏻‍♂️", { + "value" : "🧚🏻‍♂️", "keywords" : [ "light skin tone", "man fairy", "man fairy: light skin tone", "Oberon", "Puck" - ], - "value" : "🧚🏻‍♂️" + ] }, "🧚🏼‍♂️", { - "value" : "🧚🏼‍♂️", "keywords" : [ "man fairy", "man fairy: medium-light skin tone", "medium-light skin tone", "Oberon", "Puck" - ] + ], + "value" : "🧚🏼‍♂️" }, "🧚🏽‍♂️", { @@ -25976,7 +25976,6 @@ }, "🧚‍♀️", { - "value" : "🧚‍♀️", "keywords" : [ "fairy", "fairytale", @@ -25988,7 +25987,8 @@ "Titania", "wings", "woman" - ] + ], + "value" : "🧚‍♀️" }, "🧚🏻‍♀️", { @@ -26002,13 +26002,13 @@ }, "🧚🏼‍♀️", { + "value" : "🧚🏼‍♀️", "keywords" : [ "medium-light skin tone", "Titania", "woman fairy", "woman fairy: medium-light skin tone" - ], - "value" : "🧚🏼‍♀️" + ] }, "🧚🏽‍♀️", { @@ -26032,16 +26032,17 @@ }, "🧚🏿‍♀️", { - "value" : "🧚🏿‍♀️", "keywords" : [ "dark skin tone", "Titania", "woman fairy", "woman fairy: dark skin tone" - ] + ], + "value" : "🧚🏿‍♀️" }, "🧛", { + "value" : "🧛", "keywords" : [ "blood", "fangs", @@ -26052,8 +26053,7 @@ "undead", "vampire", "Dracula" - ], - "value" : "🧛" + ] }, "🧛🏻", { @@ -26068,25 +26068,25 @@ }, "🧛🏼", { + "value" : "🧛🏼", "keywords" : [ "Dracula", "medium-light skin tone", "undead", "vampire", "vampire: medium-light skin tone" - ], - "value" : "🧛🏼" + ] }, "🧛🏽", { + "value" : "🧛🏽", "keywords" : [ "Dracula", "medium skin tone", "undead", "vampire", "vampire: medium skin tone" - ], - "value" : "🧛🏽" + ] }, "🧛🏾", { @@ -26101,14 +26101,14 @@ }, "🧛🏿", { - "value" : "🧛🏿", "keywords" : [ "dark skin tone", "Dracula", "undead", "vampire", "vampire: dark skin tone" - ] + ], + "value" : "🧛🏿" }, "🧛‍♂️", { @@ -26127,47 +26127,47 @@ }, "🧛🏻‍♂️", { + "value" : "🧛🏻‍♂️", "keywords" : [ "Dracula", "light skin tone", "man vampire", "man vampire: light skin tone", "undead" - ], - "value" : "🧛🏻‍♂️" + ] }, "🧛🏼‍♂️", { + "value" : "🧛🏼‍♂️", "keywords" : [ "Dracula", "man vampire", "man vampire: medium-light skin tone", "medium-light skin tone", "undead" - ], - "value" : "🧛🏼‍♂️" + ] }, "🧛🏽‍♂️", { - "value" : "🧛🏽‍♂️", "keywords" : [ "Dracula", "man vampire", "man vampire: medium skin tone", "medium skin tone", "undead" - ] + ], + "value" : "🧛🏽‍♂️" }, "🧛🏾‍♂️", { - "value" : "🧛🏾‍♂️", "keywords" : [ "Dracula", "man vampire", "man vampire: medium-dark skin tone", "medium-dark skin tone", "undead" - ] + ], + "value" : "🧛🏾‍♂️" }, "🧛🏿‍♂️", { @@ -26182,7 +26182,6 @@ }, "🧛‍♀️", { - "value" : "🧛‍♀️", "keywords" : [ "blood", "fangs", @@ -26193,17 +26192,18 @@ "undead", "vampire", "woman" - ] + ], + "value" : "🧛‍♀️" }, "🧛🏻‍♀️", { + "value" : "🧛🏻‍♀️", "keywords" : [ "light skin tone", "undead", "woman vampire", "woman vampire: light skin tone" - ], - "value" : "🧛🏻‍♀️" + ] }, "🧛🏼‍♀️", { @@ -26217,23 +26217,23 @@ }, "🧛🏽‍♀️", { + "value" : "🧛🏽‍♀️", "keywords" : [ "medium skin tone", "undead", "woman vampire", "woman vampire: medium skin tone" - ], - "value" : "🧛🏽‍♀️" + ] }, "🧛🏾‍♀️", { + "value" : "🧛🏾‍♀️", "keywords" : [ "medium-dark skin tone", "undead", "woman vampire", "woman vampire: medium-dark skin tone" - ], - "value" : "🧛🏾‍♀️" + ] }, "🧛🏿‍♀️", { @@ -26261,7 +26261,6 @@ }, "🧜🏻", { - "value" : "🧜🏻", "keywords" : [ "light skin tone", "mermaid", @@ -26269,7 +26268,8 @@ "merperson", "merperson: light skin tone", "merwoman" - ] + ], + "value" : "🧜🏻" }, "🧜🏼", { @@ -26309,7 +26309,6 @@ }, "🧜🏿", { - "value" : "🧜🏿", "keywords" : [ "dark skin tone", "mermaid", @@ -26317,11 +26316,11 @@ "merperson", "merperson: dark skin tone", "merwoman" - ] + ], + "value" : "🧜🏿" }, "🧜‍♂️", { - "value" : "🧜‍♂️", "keywords" : [ "creature", "fairytale", @@ -26334,7 +26333,8 @@ "siren", "trident", "Triton" - ] + ], + "value" : "🧜‍♂️" }, "🧜🏻‍♂️", { @@ -26368,26 +26368,27 @@ }, "🧜🏾‍♂️", { - "value" : "🧜🏾‍♂️", "keywords" : [ "medium-dark skin tone", "merman", "merman: medium-dark skin tone", "Triton" - ] + ], + "value" : "🧜🏾‍♂️" }, "🧜🏿‍♂️", { + "value" : "🧜🏿‍♂️", "keywords" : [ "dark skin tone", "merman", "merman: dark skin tone", "Triton" - ], - "value" : "🧜🏿‍♂️" + ] }, "🧜‍♀️", { + "value" : "🧜‍♀️", "keywords" : [ "creature", "fairytale", @@ -26398,18 +26399,17 @@ "sea", "siren", "trident" - ], - "value" : "🧜‍♀️" + ] }, "🧜🏻‍♀️", { + "value" : "🧜🏻‍♀️", "keywords" : [ "light skin tone", "mermaid", "mermaid: light skin tone", "merwoman" - ], - "value" : "🧜🏻‍♀️" + ] }, "🧜🏼‍♀️", { @@ -26433,23 +26433,23 @@ }, "🧜🏾‍♀️", { - "value" : "🧜🏾‍♀️", "keywords" : [ "medium-dark skin tone", "mermaid", "mermaid: medium-dark skin tone", "merwoman" - ] + ], + "value" : "🧜🏾‍♀️" }, "🧜🏿‍♀️", { - "value" : "🧜🏿‍♀️", "keywords" : [ "dark skin tone", "mermaid", "mermaid: dark skin tone", "merwoman" - ] + ], + "value" : "🧜🏿‍♀️" }, "🧝", { @@ -26467,23 +26467,23 @@ }, "🧝🏻", { - "value" : "🧝🏻", "keywords" : [ "elf", "elf: light skin tone", "light skin tone", "magical" - ] + ], + "value" : "🧝🏻" }, "🧝🏼", { - "value" : "🧝🏼", "keywords" : [ "elf", "elf: medium-light skin tone", "magical", "medium-light skin tone" - ] + ], + "value" : "🧝🏼" }, "🧝🏽", { @@ -26552,23 +26552,23 @@ }, "🧝🏽‍♂️", { - "value" : "🧝🏽‍♂️", "keywords" : [ "magical", "man elf", "man elf: medium skin tone", "medium skin tone" - ] + ], + "value" : "🧝🏽‍♂️" }, "🧝🏾‍♂️", { - "value" : "🧝🏾‍♂️", "keywords" : [ "magical", "man elf", "man elf: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "🧝🏾‍♂️" }, "🧝🏿‍♂️", { @@ -26582,6 +26582,7 @@ }, "🧝‍♀️", { + "value" : "🧝‍♀️", "keywords" : [ "elf", "elves", @@ -26592,18 +26593,17 @@ "magical", "myth", "woman" - ], - "value" : "🧝‍♀️" + ] }, "🧝🏻‍♀️", { - "value" : "🧝🏻‍♀️", "keywords" : [ "light skin tone", "magical", "woman elf", "woman elf: light skin tone" - ] + ], + "value" : "🧝🏻‍♀️" }, "🧝🏼‍♀️", { @@ -26617,23 +26617,23 @@ }, "🧝🏽‍♀️", { + "value" : "🧝🏽‍♀️", "keywords" : [ "magical", "medium skin tone", "woman elf", "woman elf: medium skin tone" - ], - "value" : "🧝🏽‍♀️" + ] }, "🧝🏾‍♀️", { + "value" : "🧝🏾‍♀️", "keywords" : [ "magical", "medium-dark skin tone", "woman elf", "woman elf: medium-dark skin tone" - ], - "value" : "🧝🏾‍♀️" + ] }, "🧝🏿‍♀️", { @@ -26647,7 +26647,6 @@ }, "🧞", { - "value" : "🧞", "keywords" : [ "djinn", "fantasy", @@ -26657,7 +26656,8 @@ "myth", "rub", "wishes" - ] + ], + "value" : "🧞" }, "🧞‍♂️", { @@ -26691,7 +26691,6 @@ }, "🧟", { - "value" : "🧟", "keywords" : [ "apocalypse", "dead", @@ -26701,7 +26700,8 @@ "undead", "walking", "zombie" - ] + ], + "value" : "🧟" }, "🧟‍♂️", { @@ -26720,7 +26720,6 @@ }, "🧟‍♀️", { - "value" : "🧟‍♀️", "keywords" : [ "apocalypse", "dead", @@ -26731,11 +26730,11 @@ "walking", "woman", "zombie" - ] + ], + "value" : "🧟‍♀️" }, "🧌", { - "value" : "🧌", "keywords" : [ "fairy", "fantasy", @@ -26743,10 +26742,12 @@ "tale", "troll", "trolling" - ] + ], + "value" : "🧌" }, "💆", { + "value" : "💆", "keywords" : [ "face", "getting", @@ -26761,12 +26762,10 @@ "tension", "therapy", "treatment" - ], - "value" : "💆" + ] }, "💆🏻", { - "value" : "💆🏻", "keywords" : [ "face", "light skin tone", @@ -26774,7 +26773,8 @@ "person getting massage", "person getting massage: light skin tone", "salon" - ] + ], + "value" : "💆🏻" }, "💆🏼", { @@ -26826,6 +26826,7 @@ }, "💆‍♂️", { + "value" : "💆‍♂️", "keywords" : [ "face", "getting", @@ -26840,12 +26841,10 @@ "tension", "therapy", "treatment" - ], - "value" : "💆‍♂️" + ] }, "💆🏻‍♂️", { - "value" : "💆🏻‍♂️", "keywords" : [ "face", "light skin tone", @@ -26853,11 +26852,11 @@ "man getting massage", "man getting massage: light skin tone", "massage" - ] + ], + "value" : "💆🏻‍♂️" }, "💆🏼‍♂️", { - "value" : "💆🏼‍♂️", "keywords" : [ "face", "man", @@ -26865,7 +26864,8 @@ "man getting massage: medium-light skin tone", "massage", "medium-light skin tone" - ] + ], + "value" : "💆🏼‍♂️" }, "💆🏽‍♂️", { @@ -26893,6 +26893,7 @@ }, "💆🏿‍♂️", { + "value" : "💆🏿‍♂️", "keywords" : [ "dark skin tone", "face", @@ -26900,11 +26901,11 @@ "man getting massage", "man getting massage: dark skin tone", "massage" - ], - "value" : "💆🏿‍♂️" + ] }, "💆‍♀️", { + "value" : "💆‍♀️", "keywords" : [ "face", "getting", @@ -26919,12 +26920,10 @@ "therapy", "treatment", "woman" - ], - "value" : "💆‍♀️" + ] }, "💆🏻‍♀️", { - "value" : "💆🏻‍♀️", "keywords" : [ "face", "light skin tone", @@ -26932,11 +26931,11 @@ "woman", "woman getting massage", "woman getting massage: light skin tone" - ] + ], + "value" : "💆🏻‍♀️" }, "💆🏼‍♀️", { - "value" : "💆🏼‍♀️", "keywords" : [ "face", "massage", @@ -26944,10 +26943,12 @@ "woman", "woman getting massage", "woman getting massage: medium-light skin tone" - ] + ], + "value" : "💆🏼‍♀️" }, "💆🏽‍♀️", { + "value" : "💆🏽‍♀️", "keywords" : [ "face", "massage", @@ -26955,8 +26956,7 @@ "woman", "woman getting massage", "woman getting massage: medium skin tone" - ], - "value" : "💆🏽‍♀️" + ] }, "💆🏾‍♀️", { @@ -26984,6 +26984,7 @@ }, "💇", { + "value" : "💇", "keywords" : [ "barber", "beauty", @@ -26997,8 +26998,7 @@ "person", "shears", "style" - ], - "value" : "💇" + ] }, "💇🏻", { @@ -27015,6 +27015,7 @@ }, "💇🏼", { + "value" : "💇🏼", "keywords" : [ "barber", "beauty", @@ -27023,11 +27024,11 @@ "parlor", "person getting haircut", "person getting haircut: medium-light skin tone" - ], - "value" : "💇🏼" + ] }, "💇🏽", { + "value" : "💇🏽", "keywords" : [ "barber", "beauty", @@ -27036,12 +27037,10 @@ "parlor", "person getting haircut", "person getting haircut: medium skin tone" - ], - "value" : "💇🏽" + ] }, "💇🏾", { - "value" : "💇🏾", "keywords" : [ "barber", "beauty", @@ -27050,11 +27049,11 @@ "parlor", "person getting haircut", "person getting haircut: medium-dark skin tone" - ] + ], + "value" : "💇🏾" }, "💇🏿", { - "value" : "💇🏿", "keywords" : [ "barber", "beauty", @@ -27063,10 +27062,12 @@ "parlor", "person getting haircut", "person getting haircut: dark skin tone" - ] + ], + "value" : "💇🏿" }, "💇‍♂️", { + "value" : "💇‍♂️", "keywords" : [ "barber", "beauty", @@ -27081,19 +27082,18 @@ "person", "shears", "style" - ], - "value" : "💇‍♂️" + ] }, "💇🏻‍♂️", { - "value" : "💇🏻‍♂️", "keywords" : [ "haircut", "light skin tone", "man", "man getting haircut", "man getting haircut: light skin tone" - ] + ], + "value" : "💇🏻‍♂️" }, "💇🏼‍♂️", { @@ -27108,14 +27108,14 @@ }, "💇🏽‍♂️", { + "value" : "💇🏽‍♂️", "keywords" : [ "haircut", "man", "man getting haircut", "man getting haircut: medium skin tone", "medium skin tone" - ], - "value" : "💇🏽‍♂️" + ] }, "💇🏾‍♂️", { @@ -27130,18 +27130,17 @@ }, "💇🏿‍♂️", { - "value" : "💇🏿‍♂️", "keywords" : [ "dark skin tone", "haircut", "man", "man getting haircut", "man getting haircut: dark skin tone" - ] + ], + "value" : "💇🏿‍♂️" }, "💇‍♀️", { - "value" : "💇‍♀️", "keywords" : [ "barber", "beauty", @@ -27156,7 +27155,8 @@ "shears", "style", "woman" - ] + ], + "value" : "💇‍♀️" }, "💇🏻‍♀️", { @@ -27171,47 +27171,47 @@ }, "💇🏼‍♀️", { - "value" : "💇🏼‍♀️", "keywords" : [ "haircut", "medium-light skin tone", "woman", "woman getting haircut", "woman getting haircut: medium-light skin tone" - ] + ], + "value" : "💇🏼‍♀️" }, "💇🏽‍♀️", { - "value" : "💇🏽‍♀️", "keywords" : [ "haircut", "medium skin tone", "woman", "woman getting haircut", "woman getting haircut: medium skin tone" - ] + ], + "value" : "💇🏽‍♀️" }, "💇🏾‍♀️", { - "value" : "💇🏾‍♀️", "keywords" : [ "haircut", "medium-dark skin tone", "woman", "woman getting haircut", "woman getting haircut: medium-dark skin tone" - ] + ], + "value" : "💇🏾‍♀️" }, "💇🏿‍♀️", { - "value" : "💇🏿‍♀️", "keywords" : [ "dark skin tone", "haircut", "woman", "woman getting haircut", "woman getting haircut: dark skin tone" - ] + ], + "value" : "💇🏿‍♀️" }, "🚶", { @@ -27232,7 +27232,6 @@ }, "🚶🏻", { - "value" : "🚶🏻", "keywords" : [ "hike", "light skin tone", @@ -27240,10 +27239,12 @@ "person walking: light skin tone", "walk", "walking" - ] + ], + "value" : "🚶🏻" }, "🚶🏼", { + "value" : "🚶🏼", "keywords" : [ "hike", "medium-light skin tone", @@ -27251,8 +27252,7 @@ "person walking: medium-light skin tone", "walk", "walking" - ], - "value" : "🚶🏼" + ] }, "🚶🏽", { @@ -27268,6 +27268,7 @@ }, "🚶🏾", { + "value" : "🚶🏾", "keywords" : [ "hike", "medium-dark skin tone", @@ -27275,8 +27276,7 @@ "person walking: medium-dark skin tone", "walk", "walking" - ], - "value" : "🚶🏾" + ] }, "🚶🏿", { @@ -27292,6 +27292,7 @@ }, "🚶‍♂️", { + "value" : "🚶‍♂️", "keywords" : [ "amble", "gait", @@ -27303,8 +27304,7 @@ "stroll", "walk", "walking" - ], - "value" : "🚶‍♂️" + ] }, "🚶🏻‍♂️", { @@ -27344,6 +27344,7 @@ }, "🚶🏾‍♂️", { + "value" : "🚶🏾‍♂️", "keywords" : [ "hike", "man", @@ -27351,8 +27352,7 @@ "man walking: medium-dark skin tone", "medium-dark skin tone", "walk" - ], - "value" : "🚶🏾‍♂️" + ] }, "🚶🏿‍♂️", { @@ -27385,7 +27385,6 @@ }, "🚶🏻‍♀️", { - "value" : "🚶🏻‍♀️", "keywords" : [ "hike", "light skin tone", @@ -27393,10 +27392,12 @@ "woman", "woman walking", "woman walking: light skin tone" - ] + ], + "value" : "🚶🏻‍♀️" }, "🚶🏼‍♀️", { + "value" : "🚶🏼‍♀️", "keywords" : [ "hike", "medium-light skin tone", @@ -27404,8 +27405,7 @@ "woman", "woman walking", "woman walking: medium-light skin tone" - ], - "value" : "🚶🏼‍♀️" + ] }, "🚶🏽‍♀️", { @@ -27421,6 +27421,7 @@ }, "🚶🏾‍♀️", { + "value" : "🚶🏾‍♀️", "keywords" : [ "hike", "medium-dark skin tone", @@ -27428,8 +27429,7 @@ "woman", "woman walking", "woman walking: medium-dark skin tone" - ], - "value" : "🚶🏾‍♀️" + ] }, "🚶🏿‍♀️", { @@ -27445,56 +27445,56 @@ }, "🧍", { + "value" : "🧍", "keywords" : [ "person", "stand", "standing" - ], - "value" : "🧍" + ] }, "🧍🏻", { + "value" : "🧍🏻", "keywords" : [ "light skin tone", "person standing", "person standing: light skin tone", "stand", "standing" - ], - "value" : "🧍🏻" + ] }, "🧍🏼", { - "value" : "🧍🏼", "keywords" : [ "medium-light skin tone", "person standing", "person standing: medium-light skin tone", "stand", "standing" - ] + ], + "value" : "🧍🏼" }, "🧍🏽", { - "value" : "🧍🏽", "keywords" : [ "medium skin tone", "person standing", "person standing: medium skin tone", "stand", "standing" - ] + ], + "value" : "🧍🏽" }, "🧍🏾", { + "value" : "🧍🏾", "keywords" : [ "medium-dark skin tone", "person standing", "person standing: medium-dark skin tone", "stand", "standing" - ], - "value" : "🧍🏾" + ] }, "🧍🏿", { @@ -27509,12 +27509,12 @@ }, "🧍‍♂️", { - "value" : "🧍‍♂️", "keywords" : [ "man", "stand", "standing" - ] + ], + "value" : "🧍‍♂️" }, "🧍🏻‍♂️", { @@ -27528,13 +27528,13 @@ }, "🧍🏼‍♂️", { + "value" : "🧍🏼‍♂️", "keywords" : [ "man", "man standing: medium-light skin tone", "medium-light skin tone", "standing" - ], - "value" : "🧍🏼‍♂️" + ] }, "🧍🏽‍♂️", { @@ -27568,12 +27568,12 @@ }, "🧍‍♀️", { - "value" : "🧍‍♀️", "keywords" : [ "stand", "standing", "woman" - ] + ], + "value" : "🧍‍♀️" }, "🧍🏻‍♀️", { @@ -27617,34 +27617,34 @@ }, "🧍🏿‍♀️", { + "value" : "🧍🏿‍♀️", "keywords" : [ "dark skin tone", "standing", "woman", "woman standing: dark skin tone" - ], - "value" : "🧍🏿‍♀️" + ] }, "🧎", { + "value" : "🧎", "keywords" : [ "kneel", "kneeling", "knees", "person" - ], - "value" : "🧎" + ] }, "🧎🏻", { - "value" : "🧎🏻", "keywords" : [ "kneel", "kneeling", "light skin tone", "person kneeling", "person kneeling: light skin tone" - ] + ], + "value" : "🧎🏻" }, "🧎🏼", { @@ -27659,14 +27659,14 @@ }, "🧎🏽", { - "value" : "🧎🏽", "keywords" : [ "kneel", "kneeling", "medium skin tone", "person kneeling", "person kneeling: medium skin tone" - ] + ], + "value" : "🧎🏽" }, "🧎🏾", { @@ -27681,34 +27681,34 @@ }, "🧎🏿", { - "value" : "🧎🏿", "keywords" : [ "dark skin tone", "kneel", "kneeling", "person kneeling", "person kneeling: dark skin tone" - ] + ], + "value" : "🧎🏿" }, "🧎‍♂️", { + "value" : "🧎‍♂️", "keywords" : [ "kneel", "kneeling", "knees", "man" - ], - "value" : "🧎‍♂️" + ] }, "🧎🏻‍♂️", { + "value" : "🧎🏻‍♂️", "keywords" : [ "kneeling", "light skin tone", "man", "man kneeling: light skin tone" - ], - "value" : "🧎🏻‍♂️" + ] }, "🧎🏼‍♂️", { @@ -27722,23 +27722,23 @@ }, "🧎🏽‍♂️", { + "value" : "🧎🏽‍♂️", "keywords" : [ "kneeling", "man", "man kneeling: medium skin tone", "medium skin tone" - ], - "value" : "🧎🏽‍♂️" + ] }, "🧎🏾‍♂️", { + "value" : "🧎🏾‍♂️", "keywords" : [ "kneeling", "man", "man kneeling: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "🧎🏾‍♂️" + ] }, "🧎🏿‍♂️", { @@ -27782,36 +27782,37 @@ }, "🧎🏽‍♀️", { - "value" : "🧎🏽‍♀️", "keywords" : [ "kneeling", "medium skin tone", "woman", "woman kneeling: medium skin tone" - ] + ], + "value" : "🧎🏽‍♀️" }, "🧎🏾‍♀️", { + "value" : "🧎🏾‍♀️", "keywords" : [ "kneeling", "medium-dark skin tone", "woman", "woman kneeling: medium-dark skin tone" - ], - "value" : "🧎🏾‍♀️" + ] }, "🧎🏿‍♀️", { + "value" : "🧎🏿‍♀️", "keywords" : [ "dark skin tone", "kneeling", "woman", "woman kneeling: dark skin tone" - ], - "value" : "🧎🏿‍♀️" + ] }, "🧑‍🦯", { + "value" : "🧑‍🦯", "keywords" : [ "accessibility", "blind", @@ -27819,19 +27820,18 @@ "person", "probing", "white" - ], - "value" : "🧑‍🦯" + ] }, "🧑🏻‍🦯", { - "value" : "🧑🏻‍🦯", "keywords" : [ "accessibility", "blind", "light skin tone", "person with white cane", "person with white cane: light skin tone" - ] + ], + "value" : "🧑🏻‍🦯" }, "🧑🏼‍🦯", { @@ -27846,36 +27846,36 @@ }, "🧑🏽‍🦯", { + "value" : "🧑🏽‍🦯", "keywords" : [ "accessibility", "blind", "medium skin tone", "person with white cane", "person with white cane: medium skin tone" - ], - "value" : "🧑🏽‍🦯" + ] }, "🧑🏾‍🦯", { - "value" : "🧑🏾‍🦯", "keywords" : [ "accessibility", "blind", "medium-dark skin tone", "person with white cane", "person with white cane: medium-dark skin tone" - ] + ], + "value" : "🧑🏾‍🦯" }, "🧑🏿‍🦯", { + "value" : "🧑🏿‍🦯", "keywords" : [ "accessibility", "blind", "dark skin tone", "person with white cane", "person with white cane: dark skin tone" - ], - "value" : "🧑🏿‍🦯" + ] }, "👨‍🦯", { @@ -27891,6 +27891,7 @@ }, "👨🏻‍🦯", { + "value" : "👨🏻‍🦯", "keywords" : [ "accessibility", "blind", @@ -27898,8 +27899,7 @@ "man", "man with white cane", "man with white cane: light skin tone" - ], - "value" : "👨🏻‍🦯" + ] }, "👨🏼‍🦯", { @@ -27987,6 +27987,7 @@ }, "👩🏽‍🦯", { + "value" : "👩🏽‍🦯", "keywords" : [ "accessibility", "blind", @@ -27994,8 +27995,7 @@ "woman", "woman with white cane", "woman with white cane: medium skin tone" - ], - "value" : "👩🏽‍🦯" + ] }, "👩🏾‍🦯", { @@ -28011,6 +28011,7 @@ }, "👩🏿‍🦯", { + "value" : "👩🏿‍🦯", "keywords" : [ "accessibility", "blind", @@ -28018,8 +28019,7 @@ "woman", "woman with white cane", "woman with white cane: dark skin tone" - ], - "value" : "👩🏿‍🦯" + ] }, "🧑‍🦼", { @@ -28044,47 +28044,47 @@ }, "🧑🏼‍🦼", { - "value" : "🧑🏼‍🦼", "keywords" : [ "accessibility", "medium-light skin tone", "person in motorized wheelchair", "person in motorized wheelchair: medium-light skin tone", "wheelchair" - ] + ], + "value" : "🧑🏼‍🦼" }, "🧑🏽‍🦼", { - "value" : "🧑🏽‍🦼", "keywords" : [ "accessibility", "medium skin tone", "person in motorized wheelchair", "person in motorized wheelchair: medium skin tone", "wheelchair" - ] + ], + "value" : "🧑🏽‍🦼" }, "🧑🏾‍🦼", { - "value" : "🧑🏾‍🦼", "keywords" : [ "accessibility", "medium-dark skin tone", "person in motorized wheelchair", "person in motorized wheelchair: medium-dark skin tone", "wheelchair" - ] + ], + "value" : "🧑🏾‍🦼" }, "🧑🏿‍🦼", { - "value" : "🧑🏿‍🦼", "keywords" : [ "accessibility", "dark skin tone", "person in motorized wheelchair", "person in motorized wheelchair: dark skin tone", "wheelchair" - ] + ], + "value" : "🧑🏿‍🦼" }, "👨‍🦼", { @@ -28110,6 +28110,7 @@ }, "👨🏼‍🦼", { + "value" : "👨🏼‍🦼", "keywords" : [ "accessibility", "man", @@ -28117,11 +28118,11 @@ "man in motorized wheelchair: medium-light skin tone", "medium-light skin tone", "wheelchair" - ], - "value" : "👨🏼‍🦼" + ] }, "👨🏽‍🦼", { + "value" : "👨🏽‍🦼", "keywords" : [ "accessibility", "man", @@ -28129,12 +28130,10 @@ "man in motorized wheelchair: medium skin tone", "medium skin tone", "wheelchair" - ], - "value" : "👨🏽‍🦼" + ] }, "👨🏾‍🦼", { - "value" : "👨🏾‍🦼", "keywords" : [ "accessibility", "man", @@ -28142,10 +28141,12 @@ "man in motorized wheelchair: medium-dark skin tone", "medium-dark skin tone", "wheelchair" - ] + ], + "value" : "👨🏾‍🦼" }, "👨🏿‍🦼", { + "value" : "👨🏿‍🦼", "keywords" : [ "accessibility", "dark skin tone", @@ -28153,8 +28154,7 @@ "man in motorized wheelchair", "man in motorized wheelchair: dark skin tone", "wheelchair" - ], - "value" : "👨🏿‍🦼" + ] }, "👩‍🦼", { @@ -28180,6 +28180,7 @@ }, "👩🏼‍🦼", { + "value" : "👩🏼‍🦼", "keywords" : [ "accessibility", "medium-light skin tone", @@ -28187,11 +28188,11 @@ "woman", "woman in motorized wheelchair", "woman in motorized wheelchair: medium-light skin tone" - ], - "value" : "👩🏼‍🦼" + ] }, "👩🏽‍🦼", { + "value" : "👩🏽‍🦼", "keywords" : [ "accessibility", "medium skin tone", @@ -28199,8 +28200,7 @@ "woman", "woman in motorized wheelchair", "woman in motorized wheelchair: medium skin tone" - ], - "value" : "👩🏽‍🦼" + ] }, "👩🏾‍🦼", { @@ -28228,24 +28228,24 @@ }, "🧑‍🦽", { - "value" : "🧑‍🦽", "keywords" : [ "accessibility", "manual", "person", "wheelchair" - ] + ], + "value" : "🧑‍🦽" }, "🧑🏻‍🦽", { - "value" : "🧑🏻‍🦽", "keywords" : [ "accessibility", "light skin tone", "person in manual wheelchair", "person in manual wheelchair: light skin tone", "wheelchair" - ] + ], + "value" : "🧑🏻‍🦽" }, "🧑🏼‍🦽", { @@ -28271,14 +28271,14 @@ }, "🧑🏾‍🦽", { - "value" : "🧑🏾‍🦽", "keywords" : [ "accessibility", "medium-dark skin tone", "person in manual wheelchair", "person in manual wheelchair: medium-dark skin tone", "wheelchair" - ] + ], + "value" : "🧑🏾‍🦽" }, "🧑🏿‍🦽", { @@ -28293,17 +28293,16 @@ }, "👨‍🦽", { - "value" : "👨‍🦽", "keywords" : [ "accessibility", "man", "manual", "wheelchair" - ] + ], + "value" : "👨‍🦽" }, "👨🏻‍🦽", { - "value" : "👨🏻‍🦽", "keywords" : [ "accessibility", "light skin tone", @@ -28311,11 +28310,11 @@ "man in manual wheelchair", "man in manual wheelchair: light skin tone", "wheelchair" - ] + ], + "value" : "👨🏻‍🦽" }, "👨🏼‍🦽", { - "value" : "👨🏼‍🦽", "keywords" : [ "accessibility", "man", @@ -28323,7 +28322,8 @@ "man in manual wheelchair: medium-light skin tone", "medium-light skin tone", "wheelchair" - ] + ], + "value" : "👨🏼‍🦽" }, "👨🏽‍🦽", { @@ -28351,7 +28351,6 @@ }, "👨🏿‍🦽", { - "value" : "👨🏿‍🦽", "keywords" : [ "accessibility", "dark skin tone", @@ -28359,20 +28358,22 @@ "man in manual wheelchair", "man in manual wheelchair: dark skin tone", "wheelchair" - ] + ], + "value" : "👨🏿‍🦽" }, "👩‍🦽", { + "value" : "👩‍🦽", "keywords" : [ "accessibility", "manual", "wheelchair", "woman" - ], - "value" : "👩‍🦽" + ] }, "👩🏻‍🦽", { + "value" : "👩🏻‍🦽", "keywords" : [ "accessibility", "light skin tone", @@ -28380,11 +28381,11 @@ "woman", "woman in manual wheelchair", "woman in manual wheelchair: light skin tone" - ], - "value" : "👩🏻‍🦽" + ] }, "👩🏼‍🦽", { + "value" : "👩🏼‍🦽", "keywords" : [ "accessibility", "medium-light skin tone", @@ -28392,12 +28393,10 @@ "woman", "woman in manual wheelchair", "woman in manual wheelchair: medium-light skin tone" - ], - "value" : "👩🏼‍🦽" + ] }, "👩🏽‍🦽", { - "value" : "👩🏽‍🦽", "keywords" : [ "accessibility", "medium skin tone", @@ -28405,7 +28404,8 @@ "woman", "woman in manual wheelchair", "woman in manual wheelchair: medium skin tone" - ] + ], + "value" : "👩🏽‍🦽" }, "👩🏾‍🦽", { @@ -28433,7 +28433,6 @@ }, "🏃", { - "value" : "🏃", "keywords" : [ "fast", "hurry", @@ -28446,18 +28445,19 @@ "run", "rush", "speed" - ] + ], + "value" : "🏃" }, "🏃🏻", { + "value" : "🏃🏻", "keywords" : [ "light skin tone", "marathon", "person running", "person running: light skin tone", "running" - ], - "value" : "🏃🏻" + ] }, "🏃🏼", { @@ -28483,14 +28483,14 @@ }, "🏃🏾", { + "value" : "🏃🏾", "keywords" : [ "marathon", "medium-dark skin tone", "person running", "person running: medium-dark skin tone", "running" - ], - "value" : "🏃🏾" + ] }, "🏃🏿", { @@ -28522,6 +28522,7 @@ }, "🏃🏻‍♂️", { + "value" : "🏃🏻‍♂️", "keywords" : [ "light skin tone", "man", @@ -28529,8 +28530,7 @@ "marathon", "racing", "running" - ], - "value" : "🏃🏻‍♂️" + ] }, "🏃🏼‍♂️", { @@ -28546,6 +28546,7 @@ }, "🏃🏽‍♂️", { + "value" : "🏃🏽‍♂️", "keywords" : [ "man", "man running: medium skin tone", @@ -28553,8 +28554,7 @@ "medium skin tone", "racing", "running" - ], - "value" : "🏃🏽‍♂️" + ] }, "🏃🏾‍♂️", { @@ -28570,7 +28570,6 @@ }, "🏃🏿‍♂️", { - "value" : "🏃🏿‍♂️", "keywords" : [ "dark skin tone", "man", @@ -28578,7 +28577,8 @@ "marathon", "racing", "running" - ] + ], + "value" : "🏃🏿‍♂️" }, "🏃‍♀️", { @@ -28599,6 +28599,7 @@ }, "🏃🏻‍♀️", { + "value" : "🏃🏻‍♀️", "keywords" : [ "light skin tone", "marathon", @@ -28606,12 +28607,10 @@ "running", "woman", "woman running: light skin tone" - ], - "value" : "🏃🏻‍♀️" + ] }, "🏃🏼‍♀️", { - "value" : "🏃🏼‍♀️", "keywords" : [ "marathon", "medium-light skin tone", @@ -28619,7 +28618,8 @@ "running", "woman", "woman running: medium-light skin tone" - ] + ], + "value" : "🏃🏼‍♀️" }, "🏃🏽‍♀️", { @@ -28635,7 +28635,6 @@ }, "🏃🏾‍♀️", { - "value" : "🏃🏾‍♀️", "keywords" : [ "marathon", "medium-dark skin tone", @@ -28643,7 +28642,8 @@ "running", "woman", "woman running: medium-dark skin tone" - ] + ], + "value" : "🏃🏾‍♀️" }, "🏃🏿‍♀️", { @@ -28677,14 +28677,14 @@ }, "💃🏻", { - "value" : "💃🏻", "keywords" : [ "dance", "dancing", "light skin tone", "woman", "woman dancing: light skin tone" - ] + ], + "value" : "💃🏻" }, "💃🏼", { @@ -28699,25 +28699,25 @@ }, "💃🏽", { + "value" : "💃🏽", "keywords" : [ "dance", "dancing", "medium skin tone", "woman", "woman dancing: medium skin tone" - ], - "value" : "💃🏽" + ] }, "💃🏾", { - "value" : "💃🏾", "keywords" : [ "dance", "dancing", "medium-dark skin tone", "woman", "woman dancing: medium-dark skin tone" - ] + ], + "value" : "💃🏾" }, "💃🏿", { @@ -28732,6 +28732,7 @@ }, "🕺", { + "value" : "🕺", "keywords" : [ "dance", "dancer", @@ -28745,30 +28746,29 @@ "man", "salsa", "tango" - ], - "value" : "🕺" + ] }, "🕺🏻", { + "value" : "🕺🏻", "keywords" : [ "dance", "dancing", "light skin tone", "man", "man dancing: light skin tone" - ], - "value" : "🕺🏻" + ] }, "🕺🏼", { + "value" : "🕺🏼", "keywords" : [ "dance", "dancing", "man", "man dancing: medium-light skin tone", "medium-light skin tone" - ], - "value" : "🕺🏼" + ] }, "🕺🏽", { @@ -28783,14 +28783,14 @@ }, "🕺🏾", { - "value" : "🕺🏾", "keywords" : [ "dance", "dancing", "man", "man dancing: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "🕺🏾" }, "🕺🏿", { @@ -28815,6 +28815,7 @@ }, "🕴🏻", { + "value" : "🕴🏻", "keywords" : [ "business", "light skin tone", @@ -28822,8 +28823,7 @@ "person in suit levitating", "person in suit levitating: light skin tone", "suit" - ], - "value" : "🕴🏻" + ] }, "🕴🏼", { @@ -28839,7 +28839,6 @@ }, "🕴🏽", { - "value" : "🕴🏽", "keywords" : [ "business", "medium skin tone", @@ -28847,7 +28846,8 @@ "person in suit levitating", "person in suit levitating: medium skin tone", "suit" - ] + ], + "value" : "🕴🏽" }, "🕴🏾", { @@ -28863,6 +28863,7 @@ }, "🕴🏿", { + "value" : "🕴🏿", "keywords" : [ "business", "dark skin tone", @@ -28870,12 +28871,10 @@ "person in suit levitating", "person in suit levitating: dark skin tone", "suit" - ], - "value" : "🕴🏿" + ] }, "👯", { - "value" : "👯", "keywords" : [ "bestie", "bff", @@ -28892,11 +28891,11 @@ "soulmate", "twin", "twinsies" - ] + ], + "value" : "👯" }, "👯‍♂️", { - "value" : "👯‍♂️", "keywords" : [ "bestie", "bff", @@ -28914,7 +28913,8 @@ "soulmate", "twin", "twinsies" - ] + ], + "value" : "👯‍♂️" }, "👯‍♀️", { @@ -28957,14 +28957,14 @@ }, "🧖🏻", { + "value" : "🧖🏻", "keywords" : [ "light skin tone", "person in steamy room", "person in steamy room: light skin tone", "sauna", "steam room" - ], - "value" : "🧖🏻" + ] }, "🧖🏼", { @@ -28979,36 +28979,36 @@ }, "🧖🏽", { + "value" : "🧖🏽", "keywords" : [ "medium skin tone", "person in steamy room", "person in steamy room: medium skin tone", "sauna", "steam room" - ], - "value" : "🧖🏽" + ] }, "🧖🏾", { - "value" : "🧖🏾", "keywords" : [ "medium-dark skin tone", "person in steamy room", "person in steamy room: medium-dark skin tone", "sauna", "steam room" - ] + ], + "value" : "🧖🏾" }, "🧖🏿", { - "value" : "🧖🏿", "keywords" : [ "dark skin tone", "person in steamy room", "person in steamy room: dark skin tone", "sauna", "steam room" - ] + ], + "value" : "🧖🏿" }, "🧖‍♂️", { @@ -29040,14 +29040,14 @@ }, "🧖🏼‍♂️", { + "value" : "🧖🏼‍♂️", "keywords" : [ "man in steamy room", "man in steamy room: medium-light skin tone", "medium-light skin tone", "sauna", "steam room" - ], - "value" : "🧖🏼‍♂️" + ] }, "🧖🏽‍♂️", { @@ -29134,14 +29134,14 @@ }, "🧖🏾‍♀️", { + "value" : "🧖🏾‍♀️", "keywords" : [ "medium-dark skin tone", "sauna", "steam room", "woman in steamy room", "woman in steamy room: medium-dark skin tone" - ], - "value" : "🧖🏾‍♀️" + ] }, "🧖🏿‍♀️", { @@ -29170,13 +29170,13 @@ }, "🧗🏻", { + "value" : "🧗🏻", "keywords" : [ "climber", "light skin tone", "person climbing", "person climbing: light skin tone" - ], - "value" : "🧗🏻" + ] }, "🧗🏼", { @@ -29220,7 +29220,6 @@ }, "🧗‍♂️", { - "value" : "🧗‍♂️", "keywords" : [ "climb", "climber", @@ -29230,7 +29229,8 @@ "rock", "scale", "up" - ] + ], + "value" : "🧗‍♂️" }, "🧗🏻‍♂️", { @@ -29244,46 +29244,47 @@ }, "🧗🏼‍♂️", { - "value" : "🧗🏼‍♂️", "keywords" : [ "climber", "man climbing", "man climbing: medium-light skin tone", "medium-light skin tone" - ] + ], + "value" : "🧗🏼‍♂️" }, "🧗🏽‍♂️", { + "value" : "🧗🏽‍♂️", "keywords" : [ "climber", "man climbing", "man climbing: medium skin tone", "medium skin tone" - ], - "value" : "🧗🏽‍♂️" + ] }, "🧗🏾‍♂️", { - "value" : "🧗🏾‍♂️", "keywords" : [ "climber", "man climbing", "man climbing: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "🧗🏾‍♂️" }, "🧗🏿‍♂️", { + "value" : "🧗🏿‍♂️", "keywords" : [ "climber", "dark skin tone", "man climbing", "man climbing: dark skin tone" - ], - "value" : "🧗🏿‍♂️" + ] }, "🧗‍♀️", { + "value" : "🧗‍♀️", "keywords" : [ "climb", "climber", @@ -29293,8 +29294,7 @@ "scale", "up", "woman" - ], - "value" : "🧗‍♀️" + ] }, "🧗🏻‍♀️", { @@ -29318,13 +29318,13 @@ }, "🧗🏽‍♀️", { - "value" : "🧗🏽‍♀️", "keywords" : [ "climber", "medium skin tone", "woman climbing", "woman climbing: medium skin tone" - ] + ], + "value" : "🧗🏽‍♀️" }, "🧗🏾‍♀️", { @@ -29358,7 +29358,6 @@ }, "🏇", { - "value" : "🏇", "keywords" : [ "horse", "jockey", @@ -29366,11 +29365,11 @@ "racing", "riding", "sport" - ] + ], + "value" : "🏇" }, "🏇🏻", { - "value" : "🏇🏻", "keywords" : [ "horse", "horse racing: light skin tone", @@ -29378,11 +29377,11 @@ "light skin tone", "racehorse", "racing" - ] + ], + "value" : "🏇🏻" }, "🏇🏼", { - "value" : "🏇🏼", "keywords" : [ "horse", "horse racing: medium-light skin tone", @@ -29390,7 +29389,8 @@ "medium-light skin tone", "racehorse", "racing" - ] + ], + "value" : "🏇🏼" }, "🏇🏽", { @@ -29418,7 +29418,6 @@ }, "🏇🏿", { - "value" : "🏇🏿", "keywords" : [ "dark skin tone", "horse", @@ -29426,16 +29425,17 @@ "jockey", "racehorse", "racing" - ] + ], + "value" : "🏇🏿" }, "⛷️", { + "value" : "⛷️", "keywords" : [ "ski", "skier", "snow" - ], - "value" : "⛷️" + ] }, "🏂", { @@ -29450,7 +29450,6 @@ }, "🏂🏻", { - "value" : "🏂🏻", "keywords" : [ "light skin tone", "ski", @@ -29458,10 +29457,12 @@ "snowboard", "snowboarder", "snowboarder: light skin tone" - ] + ], + "value" : "🏂🏻" }, "🏂🏼", { + "value" : "🏂🏼", "keywords" : [ "medium-light skin tone", "ski", @@ -29469,11 +29470,11 @@ "snowboard", "snowboarder", "snowboarder: medium-light skin tone" - ], - "value" : "🏂🏼" + ] }, "🏂🏽", { + "value" : "🏂🏽", "keywords" : [ "medium skin tone", "ski", @@ -29481,11 +29482,11 @@ "snowboard", "snowboarder", "snowboarder: medium skin tone" - ], - "value" : "🏂🏽" + ] }, "🏂🏾", { + "value" : "🏂🏾", "keywords" : [ "medium-dark skin tone", "ski", @@ -29493,8 +29494,7 @@ "snowboard", "snowboarder", "snowboarder: medium-dark skin tone" - ], - "value" : "🏂🏾" + ] }, "🏂🏿", { @@ -29510,7 +29510,6 @@ }, "🏌️", { - "value" : "🏌️", "keywords" : [ "ball", "birdie", @@ -29524,7 +29523,8 @@ "putt", "range", "tee" - ] + ], + "value" : "🏌️" }, "🏌🏻", { @@ -29561,28 +29561,29 @@ }, "🏌🏾", { - "value" : "🏌🏾", "keywords" : [ "ball", "golf", "medium-dark skin tone", "person golfing", "person golfing: medium-dark skin tone" - ] + ], + "value" : "🏌🏾" }, "🏌🏿", { + "value" : "🏌🏿", "keywords" : [ "ball", "dark skin tone", "golf", "person golfing", "person golfing: dark skin tone" - ], - "value" : "🏌🏿" + ] }, "🏌️‍♂️", { + "value" : "🏌️‍♂️", "keywords" : [ "ball", "birdie", @@ -29596,30 +29597,29 @@ "putt", "range", "tee" - ], - "value" : "🏌️‍♂️" + ] }, "🏌🏻‍♂️", { + "value" : "🏌🏻‍♂️", "keywords" : [ "golf", "light skin tone", "man", "man golfing", "man golfing: light skin tone" - ], - "value" : "🏌🏻‍♂️" + ] }, "🏌🏼‍♂️", { - "value" : "🏌🏼‍♂️", "keywords" : [ "golf", "man", "man golfing", "man golfing: medium-light skin tone", "medium-light skin tone" - ] + ], + "value" : "🏌🏼‍♂️" }, "🏌🏽‍♂️", { @@ -29634,14 +29634,14 @@ }, "🏌🏾‍♂️", { - "value" : "🏌🏾‍♂️", "keywords" : [ "golf", "man", "man golfing", "man golfing: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "🏌🏾‍♂️" }, "🏌🏿‍♂️", { @@ -29685,14 +29685,14 @@ }, "🏌🏼‍♀️", { + "value" : "🏌🏼‍♀️", "keywords" : [ "golf", "medium-light skin tone", "woman", "woman golfing", "woman golfing: medium-light skin tone" - ], - "value" : "🏌🏼‍♀️" + ] }, "🏌🏽‍♀️", { @@ -29754,13 +29754,13 @@ }, "🏄🏼", { + "value" : "🏄🏼", "keywords" : [ "medium-light skin tone", "person surfing", "person surfing: medium-light skin tone", "surfing" - ], - "value" : "🏄🏼" + ] }, "🏄🏽", { @@ -29774,23 +29774,23 @@ }, "🏄🏾", { - "value" : "🏄🏾", "keywords" : [ "medium-dark skin tone", "person surfing", "person surfing: medium-dark skin tone", "surfing" - ] + ], + "value" : "🏄🏾" }, "🏄🏿", { - "value" : "🏄🏿", "keywords" : [ "dark skin tone", "person surfing", "person surfing: dark skin tone", "surfing" - ] + ], + "value" : "🏄🏿" }, "🏄‍♂️", { @@ -29819,47 +29819,46 @@ }, "🏄🏼‍♂️", { + "value" : "🏄🏼‍♂️", "keywords" : [ "man", "man surfing: medium-light skin tone", "medium-light skin tone", "surfing" - ], - "value" : "🏄🏼‍♂️" + ] }, "🏄🏽‍♂️", { + "value" : "🏄🏽‍♂️", "keywords" : [ "man", "man surfing: medium skin tone", "medium skin tone", "surfing" - ], - "value" : "🏄🏽‍♂️" + ] }, "🏄🏾‍♂️", { + "value" : "🏄🏾‍♂️", "keywords" : [ "man", "man surfing: medium-dark skin tone", "medium-dark skin tone", "surfing" - ], - "value" : "🏄🏾‍♂️" + ] }, "🏄🏿‍♂️", { + "value" : "🏄🏿‍♂️", "keywords" : [ "dark skin tone", "man", "man surfing: dark skin tone", "surfing" - ], - "value" : "🏄🏿‍♂️" + ] }, "🏄‍♀️", { - "value" : "🏄‍♀️", "keywords" : [ "beach", "ocean", @@ -29870,7 +29869,8 @@ "surfing", "swell", "waves" - ] + ], + "value" : "🏄‍♀️" }, "🏄🏻‍♀️", { @@ -29904,26 +29904,27 @@ }, "🏄🏾‍♀️", { - "value" : "🏄🏾‍♀️", "keywords" : [ "medium-dark skin tone", "surfing", "woman", "woman surfing: medium-dark skin tone" - ] + ], + "value" : "🏄🏾‍♀️" }, "🏄🏿‍♀️", { - "value" : "🏄🏿‍♀️", "keywords" : [ "dark skin tone", "surfing", "woman", "woman surfing: dark skin tone" - ] + ], + "value" : "🏄🏿‍♀️" }, "🚣", { + "value" : "🚣", "keywords" : [ "boat", "canoe", @@ -29938,19 +29939,18 @@ "row", "rowboat", "rowing" - ], - "value" : "🚣" + ] }, "🚣🏻", { - "value" : "🚣🏻", "keywords" : [ "boat", "light skin tone", "person rowing boat", "person rowing boat: light skin tone", "rowboat" - ] + ], + "value" : "🚣🏻" }, "🚣🏼", { @@ -29976,14 +29976,14 @@ }, "🚣🏾", { + "value" : "🚣🏾", "keywords" : [ "boat", "medium-dark skin tone", "person rowing boat", "person rowing boat: medium-dark skin tone", "rowboat" - ], - "value" : "🚣🏾" + ] }, "🚣🏿", { @@ -29998,6 +29998,7 @@ }, "🚣‍♂️", { + "value" : "🚣‍♂️", "keywords" : [ "boat", "canoe", @@ -30012,8 +30013,7 @@ "row", "rowboat", "rowing" - ], - "value" : "🚣‍♂️" + ] }, "🚣🏻‍♂️", { @@ -30053,6 +30053,7 @@ }, "🚣🏾‍♂️", { + "value" : "🚣🏾‍♂️", "keywords" : [ "boat", "man", @@ -30060,8 +30061,7 @@ "man rowing boat: medium-dark skin tone", "medium-dark skin tone", "rowboat" - ], - "value" : "🚣🏾‍♂️" + ] }, "🚣🏿‍♂️", { @@ -30077,6 +30077,7 @@ }, "🚣‍♀️", { + "value" : "🚣‍♀️", "keywords" : [ "boat", "canoe", @@ -30091,8 +30092,7 @@ "rowboat", "rowing", "woman" - ], - "value" : "🚣‍♀️" + ] }, "🚣🏻‍♀️", { @@ -30108,6 +30108,7 @@ }, "🚣🏼‍♀️", { + "value" : "🚣🏼‍♀️", "keywords" : [ "boat", "medium-light skin tone", @@ -30115,11 +30116,11 @@ "woman", "woman rowing boat", "woman rowing boat: medium-light skin tone" - ], - "value" : "🚣🏼‍♀️" + ] }, "🚣🏽‍♀️", { + "value" : "🚣🏽‍♀️", "keywords" : [ "boat", "medium skin tone", @@ -30127,8 +30128,7 @@ "woman", "woman rowing boat", "woman rowing boat: medium skin tone" - ], - "value" : "🚣🏽‍♀️" + ] }, "🚣🏾‍♀️", { @@ -30156,6 +30156,7 @@ }, "🏊", { + "value" : "🏊", "keywords" : [ "freestyle", "person", @@ -30164,28 +30165,27 @@ "swimmer", "swimming", "triathlon" - ], - "value" : "🏊" + ] }, "🏊🏻", { - "value" : "🏊🏻", "keywords" : [ "light skin tone", "person swimming", "person swimming: light skin tone", "swim" - ] + ], + "value" : "🏊🏻" }, "🏊🏼", { + "value" : "🏊🏼", "keywords" : [ "medium-light skin tone", "person swimming", "person swimming: medium-light skin tone", "swim" - ], - "value" : "🏊🏼" + ] }, "🏊🏽", { @@ -30199,23 +30199,23 @@ }, "🏊🏾", { + "value" : "🏊🏾", "keywords" : [ "medium-dark skin tone", "person swimming", "person swimming: medium-dark skin tone", "swim" - ], - "value" : "🏊🏾" + ] }, "🏊🏿", { - "value" : "🏊🏿", "keywords" : [ "dark skin tone", "person swimming", "person swimming: dark skin tone", "swim" - ] + ], + "value" : "🏊🏿" }, "🏊‍♂️", { @@ -30243,14 +30243,14 @@ }, "🏊🏼‍♂️", { - "value" : "🏊🏼‍♂️", "keywords" : [ "man", "man swimming", "man swimming: medium-light skin tone", "medium-light skin tone", "swim" - ] + ], + "value" : "🏊🏼‍♂️" }, "🏊🏽‍♂️", { @@ -30287,6 +30287,7 @@ }, "🏊‍♀️", { + "value" : "🏊‍♀️", "keywords" : [ "freestyle", "man", @@ -30295,8 +30296,7 @@ "swimmer", "swimming", "triathlon" - ], - "value" : "🏊‍♀️" + ] }, "🏊🏻‍♀️", { @@ -30311,14 +30311,14 @@ }, "🏊🏼‍♀️", { - "value" : "🏊🏼‍♀️", "keywords" : [ "medium-light skin tone", "swim", "woman", "woman swimming", "woman swimming: medium-light skin tone" - ] + ], + "value" : "🏊🏼‍♀️" }, "🏊🏽‍♀️", { @@ -30371,13 +30371,13 @@ }, "⛹🏻", { + "value" : "⛹🏻", "keywords" : [ "ball", "light skin tone", "person bouncing ball", "person bouncing ball: light skin tone" - ], - "value" : "⛹🏻" + ] }, "⛹🏼", { @@ -30401,13 +30401,13 @@ }, "⛹🏾", { - "value" : "⛹🏾", "keywords" : [ "ball", "medium-dark skin tone", "person bouncing ball", "person bouncing ball: medium-dark skin tone" - ] + ], + "value" : "⛹🏾" }, "⛹🏿", { @@ -30421,7 +30421,6 @@ }, "⛹️‍♂️", { - "value" : "⛹️‍♂️", "keywords" : [ "athletic", "ball", @@ -30433,7 +30432,8 @@ "net", "player", "throw" - ] + ], + "value" : "⛹️‍♂️" }, "⛹🏻‍♂️", { @@ -30448,25 +30448,25 @@ }, "⛹🏼‍♂️", { - "value" : "⛹🏼‍♂️", "keywords" : [ "ball", "man", "man bouncing ball", "man bouncing ball: medium-light skin tone", "medium-light skin tone" - ] + ], + "value" : "⛹🏼‍♂️" }, "⛹🏽‍♂️", { - "value" : "⛹🏽‍♂️", "keywords" : [ "ball", "man", "man bouncing ball", "man bouncing ball: medium skin tone", "medium skin tone" - ] + ], + "value" : "⛹🏽‍♂️" }, "⛹🏾‍♂️", { @@ -30481,14 +30481,14 @@ }, "⛹🏿‍♂️", { - "value" : "⛹🏿‍♂️", "keywords" : [ "ball", "dark skin tone", "man", "man bouncing ball", "man bouncing ball: dark skin tone" - ] + ], + "value" : "⛹🏿‍♂️" }, "⛹️‍♀️", { @@ -30508,14 +30508,14 @@ }, "⛹🏻‍♀️", { + "value" : "⛹🏻‍♀️", "keywords" : [ "ball", "light skin tone", "woman", "woman bouncing ball", "woman bouncing ball: light skin tone" - ], - "value" : "⛹🏻‍♀️" + ] }, "⛹🏼‍♀️", { @@ -30541,14 +30541,14 @@ }, "⛹🏾‍♀️", { - "value" : "⛹🏾‍♀️", "keywords" : [ "ball", "medium-dark skin tone", "woman", "woman bouncing ball", "woman bouncing ball: medium-dark skin tone" - ] + ], + "value" : "⛹🏾‍♀️" }, "⛹🏿‍♀️", { @@ -30580,25 +30580,25 @@ }, "🏋🏻", { + "value" : "🏋🏻", "keywords" : [ "lifter", "light skin tone", "person lifting weights", "person lifting weights: light skin tone", "weight" - ], - "value" : "🏋🏻" + ] }, "🏋🏼", { + "value" : "🏋🏼", "keywords" : [ "lifter", "medium-light skin tone", "person lifting weights", "person lifting weights: medium-light skin tone", "weight" - ], - "value" : "🏋🏼" + ] }, "🏋🏽", { @@ -30624,18 +30624,17 @@ }, "🏋🏿", { - "value" : "🏋🏿", "keywords" : [ "dark skin tone", "lifter", "person lifting weights", "person lifting weights: dark skin tone", "weight" - ] + ], + "value" : "🏋🏿" }, "🏋️‍♂️", { - "value" : "🏋️‍♂️", "keywords" : [ "barbell", "bodybuilder", @@ -30648,7 +30647,8 @@ "weightlifter", "weights", "workout" - ] + ], + "value" : "🏋️‍♂️" }, "🏋🏻‍♂️", { @@ -30663,50 +30663,51 @@ }, "🏋🏼‍♂️", { - "value" : "🏋🏼‍♂️", "keywords" : [ "man", "man lifting weights", "man lifting weights: medium-light skin tone", "medium-light skin tone", "weight lifter" - ] + ], + "value" : "🏋🏼‍♂️" }, "🏋🏽‍♂️", { + "value" : "🏋🏽‍♂️", "keywords" : [ "man", "man lifting weights", "man lifting weights: medium skin tone", "medium skin tone", "weight lifter" - ], - "value" : "🏋🏽‍♂️" + ] }, "🏋🏾‍♂️", { - "value" : "🏋🏾‍♂️", "keywords" : [ "man", "man lifting weights", "man lifting weights: medium-dark skin tone", "medium-dark skin tone", "weight lifter" - ] + ], + "value" : "🏋🏾‍♂️" }, "🏋🏿‍♂️", { - "value" : "🏋🏿‍♂️", "keywords" : [ "dark skin tone", "man", "man lifting weights", "man lifting weights: dark skin tone", "weight lifter" - ] + ], + "value" : "🏋🏿‍♂️" }, "🏋️‍♀️", { + "value" : "🏋️‍♀️", "keywords" : [ "barbell", "bodybuilder", @@ -30719,8 +30720,7 @@ "weights", "woman", "workout" - ], - "value" : "🏋️‍♀️" + ] }, "🏋🏻‍♀️", { @@ -30735,14 +30735,14 @@ }, "🏋🏼‍♀️", { - "value" : "🏋🏼‍♀️", "keywords" : [ "medium-light skin tone", "weight lifter", "woman", "woman lifting weights", "woman lifting weights: medium-light skin tone" - ] + ], + "value" : "🏋🏼‍♀️" }, "🏋🏽‍♀️", { @@ -30757,14 +30757,14 @@ }, "🏋🏾‍♀️", { + "value" : "🏋🏾‍♀️", "keywords" : [ "medium-dark skin tone", "weight lifter", "woman", "woman lifting weights", "woman lifting weights: medium-dark skin tone" - ], - "value" : "🏋🏾‍♀️" + ] }, "🏋🏿‍♀️", { @@ -30818,6 +30818,7 @@ }, "🚴🏽", { + "value" : "🚴🏽", "keywords" : [ "bicycle", "biking", @@ -30825,11 +30826,11 @@ "medium skin tone", "person biking", "person biking: medium skin tone" - ], - "value" : "🚴🏽" + ] }, "🚴🏾", { + "value" : "🚴🏾", "keywords" : [ "bicycle", "biking", @@ -30837,8 +30838,7 @@ "medium-dark skin tone", "person biking", "person biking: medium-dark skin tone" - ], - "value" : "🚴🏾" + ] }, "🚴🏿", { @@ -30956,6 +30956,7 @@ }, "🚴🏼‍♀️", { + "value" : "🚴🏼‍♀️", "keywords" : [ "bicycle", "biking", @@ -30963,8 +30964,7 @@ "medium-light skin tone", "woman", "woman biking: medium-light skin tone" - ], - "value" : "🚴🏼‍♀️" + ] }, "🚴🏽‍♀️", { @@ -30980,6 +30980,7 @@ }, "🚴🏾‍♀️", { + "value" : "🚴🏾‍♀️", "keywords" : [ "bicycle", "biking", @@ -30987,8 +30988,7 @@ "medium-dark skin tone", "woman", "woman biking: medium-dark skin tone" - ], - "value" : "🚴🏾‍♀️" + ] }, "🚴🏿‍♀️", { @@ -31004,6 +31004,7 @@ }, "🚵", { + "value" : "🚵", "keywords" : [ "bicycle", "bicyclist", @@ -31015,8 +31016,7 @@ "person", "riding", "sport" - ], - "value" : "🚵" + ] }, "🚵🏻", { @@ -31062,7 +31062,6 @@ }, "🚵🏾", { - "value" : "🚵🏾", "keywords" : [ "bicycle", "bicyclist", @@ -31072,7 +31071,8 @@ "mountain", "person mountain biking", "person mountain biking: medium-dark skin tone" - ] + ], + "value" : "🚵🏾" }, "🚵🏿", { @@ -31090,6 +31090,7 @@ }, "🚵‍♂️", { + "value" : "🚵‍♂️", "keywords" : [ "bicycle", "bicyclist", @@ -31101,8 +31102,7 @@ "mountain", "riding", "sport" - ], - "value" : "🚵‍♂️" + ] }, "🚵🏻‍♂️", { @@ -31134,6 +31134,7 @@ }, "🚵🏽‍♂️", { + "value" : "🚵🏽‍♂️", "keywords" : [ "bicycle", "bike", @@ -31143,8 +31144,7 @@ "man mountain biking: medium skin tone", "medium skin tone", "mountain" - ], - "value" : "🚵🏽‍♂️" + ] }, "🚵🏾‍♂️", { @@ -31162,6 +31162,7 @@ }, "🚵🏿‍♂️", { + "value" : "🚵🏿‍♂️", "keywords" : [ "bicycle", "bike", @@ -31171,12 +31172,10 @@ "man mountain biking", "man mountain biking: dark skin tone", "mountain" - ], - "value" : "🚵🏿‍♂️" + ] }, "🚵‍♀️", { - "value" : "🚵‍♀️", "keywords" : [ "bicycle", "bicyclist", @@ -31188,11 +31187,11 @@ "riding", "sport", "woman" - ] + ], + "value" : "🚵‍♀️" }, "🚵🏻‍♀️", { - "value" : "🚵🏻‍♀️", "keywords" : [ "bicycle", "bike", @@ -31202,7 +31201,8 @@ "mountain", "woman", "woman mountain biking: light skin tone" - ] + ], + "value" : "🚵🏻‍♀️" }, "🚵🏼‍♀️", { @@ -31234,7 +31234,6 @@ }, "🚵🏾‍♀️", { - "value" : "🚵🏾‍♀️", "keywords" : [ "bicycle", "bike", @@ -31244,7 +31243,8 @@ "mountain", "woman", "woman mountain biking: medium-dark skin tone" - ] + ], + "value" : "🚵🏾‍♀️" }, "🚵🏿‍♀️", { @@ -31262,7 +31262,6 @@ }, "🤸", { - "value" : "🤸", "keywords" : [ "active", "cartwheel", @@ -31273,7 +31272,8 @@ "happy", "person", "somersault" - ] + ], + "value" : "🤸" }, "🤸🏻", { @@ -31321,17 +31321,18 @@ }, "🤸🏿", { + "value" : "🤸🏿", "keywords" : [ "cartwheel", "dark skin tone", "gymnastics", "person cartwheeling", "person cartwheeling: dark skin tone" - ], - "value" : "🤸🏿" + ] }, "🤸‍♂️", { + "value" : "🤸‍♂️", "keywords" : [ "active", "cartwheel", @@ -31342,8 +31343,7 @@ "happy", "man", "somersault" - ], - "value" : "🤸‍♂️" + ] }, "🤸🏻‍♂️", { @@ -31383,6 +31383,7 @@ }, "🤸🏾‍♂️", { + "value" : "🤸🏾‍♂️", "keywords" : [ "cartwheel", "gymnastics", @@ -31390,12 +31391,10 @@ "man cartwheeling", "man cartwheeling: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "🤸🏾‍♂️" + ] }, "🤸🏿‍♂️", { - "value" : "🤸🏿‍♂️", "keywords" : [ "cartwheel", "dark skin tone", @@ -31403,7 +31402,8 @@ "man", "man cartwheeling", "man cartwheeling: dark skin tone" - ] + ], + "value" : "🤸🏿‍♂️" }, "🤸‍♀️", { @@ -31470,6 +31470,7 @@ }, "🤸🏿‍♀️", { + "value" : "🤸🏿‍♀️", "keywords" : [ "cartwheel", "dark skin tone", @@ -31477,8 +31478,7 @@ "woman", "woman cartwheeling", "woman cartwheeling: dark skin tone" - ], - "value" : "🤸🏿‍♀️" + ] }, "🤼", { @@ -31524,7 +31524,6 @@ }, "🤽", { - "value" : "🤽", "keywords" : [ "person", "playing", @@ -31533,29 +31532,30 @@ "swimming", "water", "waterpolo" - ] + ], + "value" : "🤽" }, "🤽🏻", { + "value" : "🤽🏻", "keywords" : [ "light skin tone", "person playing water polo", "person playing water polo: light skin tone", "polo", "water" - ], - "value" : "🤽🏻" + ] }, "🤽🏼", { - "value" : "🤽🏼", "keywords" : [ "medium-light skin tone", "person playing water polo", "person playing water polo: medium-light skin tone", "polo", "water" - ] + ], + "value" : "🤽🏼" }, "🤽🏽", { @@ -31581,18 +31581,17 @@ }, "🤽🏿", { + "value" : "🤽🏿", "keywords" : [ "dark skin tone", "person playing water polo", "person playing water polo: dark skin tone", "polo", "water" - ], - "value" : "🤽🏿" + ] }, "🤽‍♂️", { - "value" : "🤽‍♂️", "keywords" : [ "man", "playing", @@ -31601,7 +31600,8 @@ "swimming", "water", "waterpolo" - ] + ], + "value" : "🤽‍♂️" }, "🤽🏻‍♂️", { @@ -31638,14 +31638,14 @@ }, "🤽🏾‍♂️", { - "value" : "🤽🏾‍♂️", "keywords" : [ "man", "man playing water polo", "man playing water polo: medium-dark skin tone", "medium-dark skin tone", "water polo" - ] + ], + "value" : "🤽🏾‍♂️" }, "🤽🏿‍♂️", { @@ -31660,6 +31660,7 @@ }, "🤽‍♀️", { + "value" : "🤽‍♀️", "keywords" : [ "playing", "polo", @@ -31668,8 +31669,7 @@ "water", "waterpolo", "woman" - ], - "value" : "🤽‍♀️" + ] }, "🤽🏻‍♀️", { @@ -31728,7 +31728,6 @@ }, "🤾", { - "value" : "🤾", "keywords" : [ "athletics", "ball", @@ -31743,40 +31742,41 @@ "sport", "throw", "toss" - ] + ], + "value" : "🤾" }, "🤾🏻", { + "value" : "🤾🏻", "keywords" : [ "ball", "handball", "light skin tone", "person playing handball", "person playing handball: light skin tone" - ], - "value" : "🤾🏻" + ] }, "🤾🏼", { - "value" : "🤾🏼", "keywords" : [ "ball", "handball", "medium-light skin tone", "person playing handball", "person playing handball: medium-light skin tone" - ] + ], + "value" : "🤾🏼" }, "🤾🏽", { - "value" : "🤾🏽", "keywords" : [ "ball", "handball", "medium skin tone", "person playing handball", "person playing handball: medium skin tone" - ] + ], + "value" : "🤾🏽" }, "🤾🏾", { @@ -31821,25 +31821,25 @@ }, "🤾🏻‍♂️", { - "value" : "🤾🏻‍♂️", "keywords" : [ "handball", "light skin tone", "man", "man playing handball", "man playing handball: light skin tone" - ] + ], + "value" : "🤾🏻‍♂️" }, "🤾🏼‍♂️", { + "value" : "🤾🏼‍♂️", "keywords" : [ "handball", "man", "man playing handball", "man playing handball: medium-light skin tone", "medium-light skin tone" - ], - "value" : "🤾🏼‍♂️" + ] }, "🤾🏽‍♂️", { @@ -31865,14 +31865,14 @@ }, "🤾🏿‍♂️", { + "value" : "🤾🏿‍♂️", "keywords" : [ "dark skin tone", "handball", "man", "man playing handball", "man playing handball: dark skin tone" - ], - "value" : "🤾🏿‍♂️" + ] }, "🤾‍♀️", { @@ -31906,14 +31906,14 @@ }, "🤾🏼‍♀️", { + "value" : "🤾🏼‍♀️", "keywords" : [ "handball", "medium-light skin tone", "woman", "woman playing handball", "woman playing handball: medium-light skin tone" - ], - "value" : "🤾🏼‍♀️" + ] }, "🤾🏽‍♀️", { @@ -31950,6 +31950,7 @@ }, "🤹", { + "value" : "🤹", "keywords" : [ "act", "balance", @@ -31961,11 +31962,11 @@ "multitask", "person", "skill" - ], - "value" : "🤹" + ] }, "🤹🏻", { + "value" : "🤹🏻", "keywords" : [ "balance", "juggle", @@ -31974,8 +31975,7 @@ "person juggling", "person juggling: light skin tone", "skill" - ], - "value" : "🤹🏻" + ] }, "🤹🏼", { @@ -32018,6 +32018,7 @@ }, "🤹🏿", { + "value" : "🤹🏿", "keywords" : [ "balance", "dark skin tone", @@ -32026,8 +32027,7 @@ "person juggling", "person juggling: dark skin tone", "skill" - ], - "value" : "🤹🏿" + ] }, "🤹‍♂️", { @@ -32058,25 +32058,25 @@ }, "🤹🏼‍♂️", { + "value" : "🤹🏼‍♂️", "keywords" : [ "juggling", "man", "man juggling: medium-light skin tone", "medium-light skin tone", "multitask" - ], - "value" : "🤹🏼‍♂️" + ] }, "🤹🏽‍♂️", { - "value" : "🤹🏽‍♂️", "keywords" : [ "juggling", "man", "man juggling: medium skin tone", "medium skin tone", "multitask" - ] + ], + "value" : "🤹🏽‍♂️" }, "🤹🏾‍♂️", { @@ -32102,6 +32102,7 @@ }, "🤹‍♀️", { + "value" : "🤹‍♀️", "keywords" : [ "act", "balance", @@ -32113,67 +32114,65 @@ "multitask", "skill", "woman" - ], - "value" : "🤹‍♀️" + ] }, "🤹🏻‍♀️", { - "value" : "🤹🏻‍♀️", "keywords" : [ "juggling", "light skin tone", "multitask", "woman", "woman juggling: light skin tone" - ] + ], + "value" : "🤹🏻‍♀️" }, "🤹🏼‍♀️", { - "value" : "🤹🏼‍♀️", "keywords" : [ "juggling", "medium-light skin tone", "multitask", "woman", "woman juggling: medium-light skin tone" - ] + ], + "value" : "🤹🏼‍♀️" }, "🤹🏽‍♀️", { + "value" : "🤹🏽‍♀️", "keywords" : [ "juggling", "medium skin tone", "multitask", "woman", "woman juggling: medium skin tone" - ], - "value" : "🤹🏽‍♀️" + ] }, "🤹🏾‍♀️", { + "value" : "🤹🏾‍♀️", "keywords" : [ "juggling", "medium-dark skin tone", "multitask", "woman", "woman juggling: medium-dark skin tone" - ], - "value" : "🤹🏾‍♀️" + ] }, "🤹🏿‍♀️", { - "value" : "🤹🏿‍♀️", "keywords" : [ "dark skin tone", "juggling", "multitask", "woman", "woman juggling: dark skin tone" - ] + ], + "value" : "🤹🏿‍♀️" }, "🧘", { - "value" : "🧘", "keywords" : [ "cross", "legged", @@ -32188,7 +32187,8 @@ "yoga", "yogi", "zen" - ] + ], + "value" : "🧘" }, "🧘🏻", { @@ -32203,14 +32203,14 @@ }, "🧘🏼", { - "value" : "🧘🏼", "keywords" : [ "meditation", "medium-light skin tone", "person in lotus position", "person in lotus position: medium-light skin tone", "yoga" - ] + ], + "value" : "🧘🏼" }, "🧘🏽", { @@ -32247,6 +32247,7 @@ }, "🧘‍♂️", { + "value" : "🧘‍♂️", "keywords" : [ "cross", "legged", @@ -32261,19 +32262,18 @@ "yoga", "yogi", "zen" - ], - "value" : "🧘‍♂️" + ] }, "🧘🏻‍♂️", { - "value" : "🧘🏻‍♂️", "keywords" : [ "light skin tone", "man in lotus position", "man in lotus position: light skin tone", "meditation", "yoga" - ] + ], + "value" : "🧘🏻‍♂️" }, "🧘🏼‍♂️", { @@ -32310,14 +32310,14 @@ }, "🧘🏿‍♂️", { - "value" : "🧘🏿‍♂️", "keywords" : [ "dark skin tone", "man in lotus position", "man in lotus position: dark skin tone", "meditation", "yoga" - ] + ], + "value" : "🧘🏿‍♂️" }, "🧘‍♀️", { @@ -32351,36 +32351,36 @@ }, "🧘🏼‍♀️", { + "value" : "🧘🏼‍♀️", "keywords" : [ "meditation", "medium-light skin tone", "woman in lotus position", "woman in lotus position: medium-light skin tone", "yoga" - ], - "value" : "🧘🏼‍♀️" + ] }, "🧘🏽‍♀️", { - "value" : "🧘🏽‍♀️", "keywords" : [ "meditation", "medium skin tone", "woman in lotus position", "woman in lotus position: medium skin tone", "yoga" - ] + ], + "value" : "🧘🏽‍♀️" }, "🧘🏾‍♀️", { - "value" : "🧘🏾‍♀️", "keywords" : [ "meditation", "medium-dark skin tone", "woman in lotus position", "woman in lotus position: medium-dark skin tone", "yoga" - ] + ], + "value" : "🧘🏾‍♀️" }, "🧘🏿‍♀️", { @@ -32395,14 +32395,14 @@ }, "🛀", { - "value" : "🛀", "keywords" : [ "bath", "bathtub", "person", "taking", "tub" - ] + ], + "value" : "🛀" }, "🛀🏻", { @@ -32439,14 +32439,14 @@ }, "🛀🏾", { - "value" : "🛀🏾", "keywords" : [ "bath", "bathtub", "medium-dark skin tone", "person taking bath", "person taking bath: medium-dark skin tone" - ] + ], + "value" : "🛀🏾" }, "🛀🏿", { @@ -32490,7 +32490,6 @@ }, "🛌🏼", { - "value" : "🛌🏼", "keywords" : [ "good night", "hotel", @@ -32498,10 +32497,12 @@ "person in bed", "person in bed: medium-light skin tone", "sleep" - ] + ], + "value" : "🛌🏼" }, "🛌🏽", { + "value" : "🛌🏽", "keywords" : [ "good night", "hotel", @@ -32509,8 +32510,7 @@ "person in bed", "person in bed: medium skin tone", "sleep" - ], - "value" : "🛌🏽" + ] }, "🛌🏾", { @@ -32526,6 +32526,7 @@ }, "🛌🏿", { + "value" : "🛌🏿", "keywords" : [ "dark skin tone", "good night", @@ -32533,12 +32534,10 @@ "person in bed", "person in bed: dark skin tone", "sleep" - ], - "value" : "🛌🏿" + ] }, "🧑‍🤝‍🧑", { - "value" : "🧑‍🤝‍🧑", "keywords" : [ "bae", "bestie", @@ -32551,11 +32550,11 @@ "hold", "people", "twins" - ] + ], + "value" : "🧑‍🤝‍🧑" }, "🧑🏻‍🤝‍🧑🏻", { - "value" : "🧑🏻‍🤝‍🧑🏻", "keywords" : [ "couple", "hand", @@ -32565,10 +32564,12 @@ "people holding hands", "people holding hands: light skin tone", "person" - ] + ], + "value" : "🧑🏻‍🤝‍🧑🏻" }, "🧑🏻‍🤝‍🧑🏼", { + "value" : "🧑🏻‍🤝‍🧑🏼", "keywords" : [ "couple", "hand", @@ -32579,12 +32580,10 @@ "people holding hands", "people holding hands: light skin tone, medium-light skin tone", "person" - ], - "value" : "🧑🏻‍🤝‍🧑🏼" + ] }, "🧑🏻‍🤝‍🧑🏽", { - "value" : "🧑🏻‍🤝‍🧑🏽", "keywords" : [ "couple", "hand", @@ -32595,7 +32594,8 @@ "people holding hands", "people holding hands: light skin tone, medium skin tone", "person" - ] + ], + "value" : "🧑🏻‍🤝‍🧑🏽" }, "🧑🏻‍🤝‍🧑🏾", { @@ -32629,6 +32629,7 @@ }, "🧑🏼‍🤝‍🧑🏻", { + "value" : "🧑🏼‍🤝‍🧑🏻", "keywords" : [ "couple", "hand", @@ -32639,8 +32640,7 @@ "people holding hands", "people holding hands: medium-light skin tone, light skin tone", "person" - ], - "value" : "🧑🏼‍🤝‍🧑🏻" + ] }, "🧑🏼‍🤝‍🧑🏼", { @@ -32658,7 +32658,6 @@ }, "🧑🏼‍🤝‍🧑🏽", { - "value" : "🧑🏼‍🤝‍🧑🏽", "keywords" : [ "couple", "hand", @@ -32669,11 +32668,11 @@ "people holding hands", "people holding hands: medium-light skin tone, medium skin tone", "person" - ] + ], + "value" : "🧑🏼‍🤝‍🧑🏽" }, "🧑🏼‍🤝‍🧑🏾", { - "value" : "🧑🏼‍🤝‍🧑🏾", "keywords" : [ "couple", "hand", @@ -32684,7 +32683,8 @@ "people holding hands", "people holding hands: medium-light skin tone, medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏼‍🤝‍🧑🏾" }, "🧑🏼‍🤝‍🧑🏿", { @@ -32718,6 +32718,7 @@ }, "🧑🏽‍🤝‍🧑🏼", { + "value" : "🧑🏽‍🤝‍🧑🏼", "keywords" : [ "couple", "hand", @@ -32728,11 +32729,11 @@ "people holding hands", "people holding hands: medium skin tone, medium-light skin tone", "person" - ], - "value" : "🧑🏽‍🤝‍🧑🏼" + ] }, "🧑🏽‍🤝‍🧑🏽", { + "value" : "🧑🏽‍🤝‍🧑🏽", "keywords" : [ "couple", "hand", @@ -32742,8 +32743,7 @@ "people holding hands", "people holding hands: medium skin tone", "person" - ], - "value" : "🧑🏽‍🤝‍🧑🏽" + ] }, "🧑🏽‍🤝‍🧑🏾", { @@ -32762,6 +32762,7 @@ }, "🧑🏽‍🤝‍🧑🏿", { + "value" : "🧑🏽‍🤝‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -32772,12 +32773,10 @@ "people holding hands", "people holding hands: medium skin tone, dark skin tone", "person" - ], - "value" : "🧑🏽‍🤝‍🧑🏿" + ] }, "🧑🏾‍🤝‍🧑🏻", { - "value" : "🧑🏾‍🤝‍🧑🏻", "keywords" : [ "couple", "hand", @@ -32788,7 +32787,8 @@ "people holding hands", "people holding hands: medium-dark skin tone, light skin tone", "person" - ] + ], + "value" : "🧑🏾‍🤝‍🧑🏻" }, "🧑🏾‍🤝‍🧑🏼", { @@ -32836,7 +32836,6 @@ }, "🧑🏾‍🤝‍🧑🏿", { - "value" : "🧑🏾‍🤝‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -32847,7 +32846,8 @@ "people holding hands", "people holding hands: medium-dark skin tone, dark skin tone", "person" - ] + ], + "value" : "🧑🏾‍🤝‍🧑🏿" }, "🧑🏿‍🤝‍🧑🏻", { @@ -32881,6 +32881,7 @@ }, "🧑🏿‍🤝‍🧑🏽", { + "value" : "🧑🏿‍🤝‍🧑🏽", "keywords" : [ "couple", "dark skin tone", @@ -32891,11 +32892,11 @@ "people holding hands", "people holding hands: dark skin tone, medium skin tone", "person" - ], - "value" : "🧑🏿‍🤝‍🧑🏽" + ] }, "🧑🏿‍🤝‍🧑🏾", { + "value" : "🧑🏿‍🤝‍🧑🏾", "keywords" : [ "couple", "dark skin tone", @@ -32906,8 +32907,7 @@ "people holding hands", "people holding hands: dark skin tone, medium-dark skin tone", "person" - ], - "value" : "🧑🏿‍🤝‍🧑🏾" + ] }, "🧑🏿‍🤝‍🧑🏿", { @@ -32925,6 +32925,7 @@ }, "👭", { + "value" : "👭", "keywords" : [ "bae", "bestie", @@ -32939,8 +32940,7 @@ "sisters", "twins", "women" - ], - "value" : "👭" + ] }, "👭🏻", { @@ -32957,6 +32957,7 @@ }, "👩🏻‍🤝‍👩🏼", { + "value" : "👩🏻‍🤝‍👩🏼", "keywords" : [ "couple", "hand", @@ -32966,11 +32967,11 @@ "women", "women holding hands", "women holding hands: light skin tone, medium-light skin tone" - ], - "value" : "👩🏻‍🤝‍👩🏼" + ] }, "👩🏻‍🤝‍👩🏽", { + "value" : "👩🏻‍🤝‍👩🏽", "keywords" : [ "couple", "hand", @@ -32980,12 +32981,10 @@ "women", "women holding hands", "women holding hands: light skin tone, medium skin tone" - ], - "value" : "👩🏻‍🤝‍👩🏽" + ] }, "👩🏻‍🤝‍👩🏾", { - "value" : "👩🏻‍🤝‍👩🏾", "keywords" : [ "couple", "hand", @@ -32995,10 +32994,12 @@ "women", "women holding hands", "women holding hands: light skin tone, medium-dark skin tone" - ] + ], + "value" : "👩🏻‍🤝‍👩🏾" }, "👩🏻‍🤝‍👩🏿", { + "value" : "👩🏻‍🤝‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -33008,8 +33009,7 @@ "women", "women holding hands", "women holding hands: light skin tone, dark skin tone" - ], - "value" : "👩🏻‍🤝‍👩🏿" + ] }, "👩🏼‍🤝‍👩🏻", { @@ -33027,7 +33027,6 @@ }, "👭🏼", { - "value" : "👭🏼", "keywords" : [ "couple", "hand", @@ -33036,10 +33035,12 @@ "women", "women holding hands", "women holding hands: medium-light skin tone" - ] + ], + "value" : "👭🏼" }, "👩🏼‍🤝‍👩🏽", { + "value" : "👩🏼‍🤝‍👩🏽", "keywords" : [ "couple", "hand", @@ -33049,11 +33050,11 @@ "women", "women holding hands", "women holding hands: medium-light skin tone, medium skin tone" - ], - "value" : "👩🏼‍🤝‍👩🏽" + ] }, "👩🏼‍🤝‍👩🏾", { + "value" : "👩🏼‍🤝‍👩🏾", "keywords" : [ "couple", "hand", @@ -33063,8 +33064,7 @@ "women", "women holding hands", "women holding hands: medium-light skin tone, medium-dark skin tone" - ], - "value" : "👩🏼‍🤝‍👩🏾" + ] }, "👩🏼‍🤝‍👩🏿", { @@ -33096,6 +33096,7 @@ }, "👩🏽‍🤝‍👩🏼", { + "value" : "👩🏽‍🤝‍👩🏼", "keywords" : [ "couple", "hand", @@ -33105,11 +33106,11 @@ "women", "women holding hands", "women holding hands: medium skin tone, medium-light skin tone" - ], - "value" : "👩🏽‍🤝‍👩🏼" + ] }, "👭🏽", { + "value" : "👭🏽", "keywords" : [ "couple", "hand", @@ -33118,8 +33119,7 @@ "women", "women holding hands", "women holding hands: medium skin tone" - ], - "value" : "👭🏽" + ] }, "👩🏽‍🤝‍👩🏾", { @@ -33137,6 +33137,7 @@ }, "👩🏽‍🤝‍👩🏿", { + "value" : "👩🏽‍🤝‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -33146,12 +33147,10 @@ "women", "women holding hands", "women holding hands: medium skin tone, dark skin tone" - ], - "value" : "👩🏽‍🤝‍👩🏿" + ] }, "👩🏾‍🤝‍👩🏻", { - "value" : "👩🏾‍🤝‍👩🏻", "keywords" : [ "couple", "hand", @@ -33161,7 +33160,8 @@ "women", "women holding hands", "women holding hands: medium-dark skin tone, light skin tone" - ] + ], + "value" : "👩🏾‍🤝‍👩🏻" }, "👩🏾‍🤝‍👩🏼", { @@ -33179,6 +33179,7 @@ }, "👩🏾‍🤝‍👩🏽", { + "value" : "👩🏾‍🤝‍👩🏽", "keywords" : [ "couple", "hand", @@ -33188,8 +33189,7 @@ "women", "women holding hands", "women holding hands: medium-dark skin tone, medium skin tone" - ], - "value" : "👩🏾‍🤝‍👩🏽" + ] }, "👭🏾", { @@ -33206,6 +33206,7 @@ }, "👩🏾‍🤝‍👩🏿", { + "value" : "👩🏾‍🤝‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -33215,8 +33216,7 @@ "women", "women holding hands", "women holding hands: medium-dark skin tone, dark skin tone" - ], - "value" : "👩🏾‍🤝‍👩🏿" + ] }, "👩🏿‍🤝‍👩🏻", { @@ -33234,7 +33234,6 @@ }, "👩🏿‍🤝‍👩🏼", { - "value" : "👩🏿‍🤝‍👩🏼", "keywords" : [ "couple", "dark skin tone", @@ -33244,7 +33243,8 @@ "women", "women holding hands", "women holding hands: dark skin tone, medium-light skin tone" - ] + ], + "value" : "👩🏿‍🤝‍👩🏼" }, "👩🏿‍🤝‍👩🏽", { @@ -33276,6 +33276,7 @@ }, "👭🏿", { + "value" : "👭🏿", "keywords" : [ "couple", "dark skin tone", @@ -33284,11 +33285,11 @@ "women", "women holding hands", "women holding hands: dark skin tone" - ], - "value" : "👭🏿" + ] }, "👫", { + "value" : "👫", "keywords" : [ "bae", "bestie", @@ -33302,8 +33303,7 @@ "man", "twins", "woman" - ], - "value" : "👫" + ] }, "👫🏻", { @@ -33322,6 +33322,7 @@ }, "👩🏻‍🤝‍👨🏼", { + "value" : "👩🏻‍🤝‍👨🏼", "keywords" : [ "couple", "hand", @@ -33333,12 +33334,10 @@ "woman", "woman and man holding hands", "woman and man holding hands: light skin tone, medium-light skin tone" - ], - "value" : "👩🏻‍🤝‍👨🏼" + ] }, "👩🏻‍🤝‍👨🏽", { - "value" : "👩🏻‍🤝‍👨🏽", "keywords" : [ "couple", "hand", @@ -33350,7 +33349,8 @@ "woman", "woman and man holding hands", "woman and man holding hands: light skin tone, medium skin tone" - ] + ], + "value" : "👩🏻‍🤝‍👨🏽" }, "👩🏻‍🤝‍👨🏾", { @@ -33370,7 +33370,6 @@ }, "👩🏻‍🤝‍👨🏿", { - "value" : "👩🏻‍🤝‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -33382,7 +33381,8 @@ "woman", "woman and man holding hands", "woman and man holding hands: light skin tone, dark skin tone" - ] + ], + "value" : "👩🏻‍🤝‍👨🏿" }, "👩🏼‍🤝‍👨🏻", { @@ -33402,7 +33402,6 @@ }, "👫🏼", { - "value" : "👫🏼", "keywords" : [ "couple", "hand", @@ -33413,7 +33412,8 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium-light skin tone" - ] + ], + "value" : "👫🏼" }, "👩🏼‍🤝‍👨🏽", { @@ -33449,6 +33449,7 @@ }, "👩🏼‍🤝‍👨🏿", { + "value" : "👩🏼‍🤝‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -33460,11 +33461,11 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium-light skin tone, dark skin tone" - ], - "value" : "👩🏼‍🤝‍👨🏿" + ] }, "👩🏽‍🤝‍👨🏻", { + "value" : "👩🏽‍🤝‍👨🏻", "keywords" : [ "couple", "hand", @@ -33476,11 +33477,11 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium skin tone, light skin tone" - ], - "value" : "👩🏽‍🤝‍👨🏻" + ] }, "👩🏽‍🤝‍👨🏼", { + "value" : "👩🏽‍🤝‍👨🏼", "keywords" : [ "couple", "hand", @@ -33492,12 +33493,10 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium skin tone, medium-light skin tone" - ], - "value" : "👩🏽‍🤝‍👨🏼" + ] }, "👫🏽", { - "value" : "👫🏽", "keywords" : [ "couple", "hand", @@ -33508,10 +33507,12 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium skin tone" - ] + ], + "value" : "👫🏽" }, "👩🏽‍🤝‍👨🏾", { + "value" : "👩🏽‍🤝‍👨🏾", "keywords" : [ "couple", "hand", @@ -33523,8 +33524,7 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium skin tone, medium-dark skin tone" - ], - "value" : "👩🏽‍🤝‍👨🏾" + ] }, "👩🏽‍🤝‍👨🏿", { @@ -33544,6 +33544,7 @@ }, "👩🏾‍🤝‍👨🏻", { + "value" : "👩🏾‍🤝‍👨🏻", "keywords" : [ "couple", "hand", @@ -33555,8 +33556,7 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium-dark skin tone, light skin tone" - ], - "value" : "👩🏾‍🤝‍👨🏻" + ] }, "👩🏾‍🤝‍👨🏼", { @@ -33576,7 +33576,6 @@ }, "👩🏾‍🤝‍👨🏽", { - "value" : "👩🏾‍🤝‍👨🏽", "keywords" : [ "couple", "hand", @@ -33588,10 +33587,12 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium-dark skin tone, medium skin tone" - ] + ], + "value" : "👩🏾‍🤝‍👨🏽" }, "👫🏾", { + "value" : "👫🏾", "keywords" : [ "couple", "hand", @@ -33602,11 +33603,11 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium-dark skin tone" - ], - "value" : "👫🏾" + ] }, "👩🏾‍🤝‍👨🏿", { + "value" : "👩🏾‍🤝‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -33618,12 +33619,10 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium-dark skin tone, dark skin tone" - ], - "value" : "👩🏾‍🤝‍👨🏿" + ] }, "👩🏿‍🤝‍👨🏻", { - "value" : "👩🏿‍🤝‍👨🏻", "keywords" : [ "couple", "dark skin tone", @@ -33635,10 +33634,12 @@ "woman", "woman and man holding hands", "woman and man holding hands: dark skin tone, light skin tone" - ] + ], + "value" : "👩🏿‍🤝‍👨🏻" }, "👩🏿‍🤝‍👨🏼", { + "value" : "👩🏿‍🤝‍👨🏼", "keywords" : [ "couple", "dark skin tone", @@ -33650,8 +33651,7 @@ "woman", "woman and man holding hands", "woman and man holding hands: dark skin tone, medium-light skin tone" - ], - "value" : "👩🏿‍🤝‍👨🏼" + ] }, "👩🏿‍🤝‍👨🏽", { @@ -33754,7 +33754,6 @@ }, "👨🏻‍🤝‍👨🏽", { - "value" : "👨🏻‍🤝‍👨🏽", "keywords" : [ "couple", "Gemini", @@ -33767,10 +33766,12 @@ "men holding hands: light skin tone, medium skin tone", "twins", "zodiac" - ] + ], + "value" : "👨🏻‍🤝‍👨🏽" }, "👨🏻‍🤝‍👨🏾", { + "value" : "👨🏻‍🤝‍👨🏾", "keywords" : [ "couple", "Gemini", @@ -33783,12 +33784,10 @@ "men holding hands: light skin tone, medium-dark skin tone", "twins", "zodiac" - ], - "value" : "👨🏻‍🤝‍👨🏾" + ] }, "👨🏻‍🤝‍👨🏿", { - "value" : "👨🏻‍🤝‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -33801,10 +33800,12 @@ "men holding hands: light skin tone, dark skin tone", "twins", "zodiac" - ] + ], + "value" : "👨🏻‍🤝‍👨🏿" }, "👨🏼‍🤝‍👨🏻", { + "value" : "👨🏼‍🤝‍👨🏻", "keywords" : [ "couple", "Gemini", @@ -33817,11 +33818,11 @@ "men holding hands: medium-light skin tone, light skin tone", "twins", "zodiac" - ], - "value" : "👨🏼‍🤝‍👨🏻" + ] }, "👬🏼", { + "value" : "👬🏼", "keywords" : [ "couple", "Gemini", @@ -33833,8 +33834,7 @@ "men holding hands: medium-light skin tone", "twins", "zodiac" - ], - "value" : "👬🏼" + ] }, "👨🏼‍🤝‍👨🏽", { @@ -33855,6 +33855,7 @@ }, "👨🏼‍🤝‍👨🏾", { + "value" : "👨🏼‍🤝‍👨🏾", "keywords" : [ "couple", "Gemini", @@ -33867,11 +33868,11 @@ "men holding hands: medium-light skin tone, medium-dark skin tone", "twins", "zodiac" - ], - "value" : "👨🏼‍🤝‍👨🏾" + ] }, "👨🏼‍🤝‍👨🏿", { + "value" : "👨🏼‍🤝‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -33884,8 +33885,7 @@ "men holding hands: medium-light skin tone, dark skin tone", "twins", "zodiac" - ], - "value" : "👨🏼‍🤝‍👨🏿" + ] }, "👨🏽‍🤝‍👨🏻", { @@ -33906,6 +33906,7 @@ }, "👨🏽‍🤝‍👨🏼", { + "value" : "👨🏽‍🤝‍👨🏼", "keywords" : [ "couple", "Gemini", @@ -33918,11 +33919,11 @@ "men holding hands: medium skin tone, medium-light skin tone", "twins", "zodiac" - ], - "value" : "👨🏽‍🤝‍👨🏼" + ] }, "👬🏽", { + "value" : "👬🏽", "keywords" : [ "couple", "Gemini", @@ -33934,11 +33935,11 @@ "men holding hands: medium skin tone", "twins", "zodiac" - ], - "value" : "👬🏽" + ] }, "👨🏽‍🤝‍👨🏾", { + "value" : "👨🏽‍🤝‍👨🏾", "keywords" : [ "couple", "Gemini", @@ -33951,8 +33952,7 @@ "men holding hands: medium skin tone, medium-dark skin tone", "twins", "zodiac" - ], - "value" : "👨🏽‍🤝‍👨🏾" + ] }, "👨🏽‍🤝‍👨🏿", { @@ -34024,6 +34024,7 @@ }, "👬🏾", { + "value" : "👬🏾", "keywords" : [ "couple", "Gemini", @@ -34035,12 +34036,10 @@ "men holding hands: medium-dark skin tone", "twins", "zodiac" - ], - "value" : "👬🏾" + ] }, "👨🏾‍🤝‍👨🏿", { - "value" : "👨🏾‍🤝‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -34053,11 +34052,11 @@ "men holding hands: medium-dark skin tone, dark skin tone", "twins", "zodiac" - ] + ], + "value" : "👨🏾‍🤝‍👨🏿" }, "👨🏿‍🤝‍👨🏻", { - "value" : "👨🏿‍🤝‍👨🏻", "keywords" : [ "couple", "dark skin tone", @@ -34070,7 +34069,8 @@ "men holding hands: dark skin tone, light skin tone", "twins", "zodiac" - ] + ], + "value" : "👨🏿‍🤝‍👨🏻" }, "👨🏿‍🤝‍👨🏼", { @@ -34125,7 +34125,6 @@ }, "👬🏿", { - "value" : "👬🏿", "keywords" : [ "couple", "dark skin tone", @@ -34137,11 +34136,11 @@ "men holding hands: dark skin tone", "twins", "zodiac" - ] + ], + "value" : "👬🏿" }, "💏", { - "value" : "💏", "keywords" : [ "anniversary", "babe", @@ -34157,17 +34156,18 @@ "romance", "together", "xoxo" - ] + ], + "value" : "💏" }, "💏🏻", { + "value" : "💏🏻", "keywords" : [ "couple", "kiss", "kiss: light skin tone", "light skin tone" - ], - "value" : "💏🏻" + ] }, "💏🏼", { @@ -34181,13 +34181,13 @@ }, "💏🏽", { + "value" : "💏🏽", "keywords" : [ "couple", "kiss", "kiss: medium skin tone", "medium skin tone" - ], - "value" : "💏🏽" + ] }, "💏🏾", { @@ -34235,7 +34235,6 @@ }, "🧑🏻‍❤️‍💋‍🧑🏾", { - "value" : "🧑🏻‍❤️‍💋‍🧑🏾", "keywords" : [ "couple", "kiss", @@ -34243,7 +34242,8 @@ "light skin tone", "medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏻‍❤️‍💋‍🧑🏾" }, "🧑🏻‍❤️‍💋‍🧑🏿", { @@ -34271,6 +34271,7 @@ }, "🧑🏼‍❤️‍💋‍🧑🏽", { + "value" : "🧑🏼‍❤️‍💋‍🧑🏽", "keywords" : [ "couple", "kiss", @@ -34278,12 +34279,10 @@ "medium skin tone", "medium-light skin tone", "person" - ], - "value" : "🧑🏼‍❤️‍💋‍🧑🏽" + ] }, "🧑🏼‍❤️‍💋‍🧑🏾", { - "value" : "🧑🏼‍❤️‍💋‍🧑🏾", "keywords" : [ "couple", "kiss", @@ -34291,10 +34290,12 @@ "medium-dark skin tone", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏼‍❤️‍💋‍🧑🏾" }, "🧑🏼‍❤️‍💋‍🧑🏿", { + "value" : "🧑🏼‍❤️‍💋‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -34302,12 +34303,10 @@ "kiss: person, person, medium-light skin tone, dark skin tone", "medium-light skin tone", "person" - ], - "value" : "🧑🏼‍❤️‍💋‍🧑🏿" + ] }, "🧑🏽‍❤️‍💋‍🧑🏻", { - "value" : "🧑🏽‍❤️‍💋‍🧑🏻", "keywords" : [ "couple", "kiss", @@ -34315,7 +34314,8 @@ "light skin tone", "medium skin tone", "person" - ] + ], + "value" : "🧑🏽‍❤️‍💋‍🧑🏻" }, "🧑🏽‍❤️‍💋‍🧑🏼", { @@ -34343,6 +34343,7 @@ }, "🧑🏽‍❤️‍💋‍🧑🏿", { + "value" : "🧑🏽‍❤️‍💋‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -34350,8 +34351,7 @@ "kiss: person, person, medium skin tone, dark skin tone", "medium skin tone", "person" - ], - "value" : "🧑🏽‍❤️‍💋‍🧑🏿" + ] }, "🧑🏾‍❤️‍💋‍🧑🏻", { @@ -34367,6 +34367,7 @@ }, "🧑🏾‍❤️‍💋‍🧑🏼", { + "value" : "🧑🏾‍❤️‍💋‍🧑🏼", "keywords" : [ "couple", "kiss", @@ -34374,11 +34375,11 @@ "medium-dark skin tone", "medium-light skin tone", "person" - ], - "value" : "🧑🏾‍❤️‍💋‍🧑🏼" + ] }, "🧑🏾‍❤️‍💋‍🧑🏽", { + "value" : "🧑🏾‍❤️‍💋‍🧑🏽", "keywords" : [ "couple", "kiss", @@ -34386,8 +34387,7 @@ "medium skin tone", "medium-dark skin tone", "person" - ], - "value" : "🧑🏾‍❤️‍💋‍🧑🏽" + ] }, "🧑🏾‍❤️‍💋‍🧑🏿", { @@ -34403,7 +34403,6 @@ }, "🧑🏿‍❤️‍💋‍🧑🏻", { - "value" : "🧑🏿‍❤️‍💋‍🧑🏻", "keywords" : [ "couple", "dark skin tone", @@ -34411,7 +34410,8 @@ "kiss: person, person, dark skin tone, light skin tone", "light skin tone", "person" - ] + ], + "value" : "🧑🏿‍❤️‍💋‍🧑🏻" }, "🧑🏿‍❤️‍💋‍🧑🏼", { @@ -34439,7 +34439,6 @@ }, "🧑🏿‍❤️‍💋‍🧑🏾", { - "value" : "🧑🏿‍❤️‍💋‍🧑🏾", "keywords" : [ "couple", "dark skin tone", @@ -34447,21 +34446,23 @@ "kiss: person, person, dark skin tone, medium-dark skin tone", "medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏿‍❤️‍💋‍🧑🏾" }, "👩‍❤️‍💋‍👨", { + "value" : "👩‍❤️‍💋‍👨", "keywords" : [ "couple", "kiss", "kiss: woman, man", "man", "woman" - ], - "value" : "👩‍❤️‍💋‍👨" + ] }, "👩🏻‍❤️‍💋‍👨🏻", { + "value" : "👩🏻‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", @@ -34469,11 +34470,11 @@ "light skin tone", "man", "woman" - ], - "value" : "👩🏻‍❤️‍💋‍👨🏻" + ] }, "👩🏻‍❤️‍💋‍👨🏼", { + "value" : "👩🏻‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "kiss", @@ -34482,8 +34483,7 @@ "man", "medium-light skin tone", "woman" - ], - "value" : "👩🏻‍❤️‍💋‍👨🏼" + ] }, "👩🏻‍❤️‍💋‍👨🏽", { @@ -34513,7 +34513,6 @@ }, "👩🏻‍❤️‍💋‍👨🏿", { - "value" : "👩🏻‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -34522,11 +34521,11 @@ "light skin tone", "man", "woman" - ] + ], + "value" : "👩🏻‍❤️‍💋‍👨🏿" }, "👩🏼‍❤️‍💋‍👨🏻", { - "value" : "👩🏼‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", @@ -34535,10 +34534,12 @@ "man", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏼‍❤️‍💋‍👨🏻" }, "👩🏼‍❤️‍💋‍👨🏼", { + "value" : "👩🏼‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "kiss", @@ -34546,8 +34547,7 @@ "man", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍💋‍👨🏼" + ] }, "👩🏼‍❤️‍💋‍👨🏽", { @@ -34590,6 +34590,7 @@ }, "👩🏽‍❤️‍💋‍👨🏻", { + "value" : "👩🏽‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", @@ -34598,12 +34599,10 @@ "man", "medium skin tone", "woman" - ], - "value" : "👩🏽‍❤️‍💋‍👨🏻" + ] }, "👩🏽‍❤️‍💋‍👨🏼", { - "value" : "👩🏽‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "kiss", @@ -34612,7 +34611,8 @@ "medium skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏽‍❤️‍💋‍👨🏼" }, "👩🏽‍❤️‍💋‍👨🏽", { @@ -34654,6 +34654,7 @@ }, "👩🏾‍❤️‍💋‍👨🏻", { + "value" : "👩🏾‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", @@ -34662,12 +34663,10 @@ "man", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍💋‍👨🏻" + ] }, "👩🏾‍❤️‍💋‍👨🏼", { - "value" : "👩🏾‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "kiss", @@ -34676,7 +34675,8 @@ "medium-dark skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏾‍❤️‍💋‍👨🏼" }, "👩🏾‍❤️‍💋‍👨🏽", { @@ -34693,6 +34693,7 @@ }, "👩🏾‍❤️‍💋‍👨🏾", { + "value" : "👩🏾‍❤️‍💋‍👨🏾", "keywords" : [ "couple", "kiss", @@ -34700,12 +34701,10 @@ "man", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍💋‍👨🏾" + ] }, "👩🏾‍❤️‍💋‍👨🏿", { - "value" : "👩🏾‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -34714,7 +34713,8 @@ "man", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏾‍❤️‍💋‍👨🏿" }, "👩🏿‍❤️‍💋‍👨🏻", { @@ -34731,7 +34731,6 @@ }, "👩🏿‍❤️‍💋‍👨🏼", { - "value" : "👩🏿‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "dark skin tone", @@ -34740,7 +34739,8 @@ "man", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👨🏼" }, "👩🏿‍❤️‍💋‍👨🏽", { @@ -34770,7 +34770,6 @@ }, "👩🏿‍❤️‍💋‍👨🏿", { - "value" : "👩🏿‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -34778,7 +34777,8 @@ "kiss: woman, man, dark skin tone", "man", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👨🏿" }, "👨‍❤️‍💋‍👨", { @@ -34792,17 +34792,18 @@ }, "👨🏻‍❤️‍💋‍👨🏻", { + "value" : "👨🏻‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", "kiss: man, man, light skin tone", "light skin tone", "man" - ], - "value" : "👨🏻‍❤️‍💋‍👨🏻" + ] }, "👨🏻‍❤️‍💋‍👨🏼", { + "value" : "👨🏻‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "kiss", @@ -34810,11 +34811,11 @@ "light skin tone", "man", "medium-light skin tone" - ], - "value" : "👨🏻‍❤️‍💋‍👨🏼" + ] }, "👨🏻‍❤️‍💋‍👨🏽", { + "value" : "👨🏻‍❤️‍💋‍👨🏽", "keywords" : [ "couple", "kiss", @@ -34822,8 +34823,7 @@ "light skin tone", "man", "medium skin tone" - ], - "value" : "👨🏻‍❤️‍💋‍👨🏽" + ] }, "👨🏻‍❤️‍💋‍👨🏾", { @@ -34839,7 +34839,6 @@ }, "👨🏻‍❤️‍💋‍👨🏿", { - "value" : "👨🏻‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -34847,10 +34846,12 @@ "kiss: man, man, light skin tone, dark skin tone", "light skin tone", "man" - ] + ], + "value" : "👨🏻‍❤️‍💋‍👨🏿" }, "👨🏼‍❤️‍💋‍👨🏻", { + "value" : "👨🏼‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", @@ -34858,8 +34859,7 @@ "light skin tone", "man", "medium-light skin tone" - ], - "value" : "👨🏼‍❤️‍💋‍👨🏻" + ] }, "👨🏼‍❤️‍💋‍👨🏼", { @@ -34886,6 +34886,7 @@ }, "👨🏼‍❤️‍💋‍👨🏾", { + "value" : "👨🏼‍❤️‍💋‍👨🏾", "keywords" : [ "couple", "kiss", @@ -34893,12 +34894,10 @@ "man", "medium-dark skin tone", "medium-light skin tone" - ], - "value" : "👨🏼‍❤️‍💋‍👨🏾" + ] }, "👨🏼‍❤️‍💋‍👨🏿", { - "value" : "👨🏼‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -34906,7 +34905,8 @@ "kiss: man, man, medium-light skin tone, dark skin tone", "man", "medium-light skin tone" - ] + ], + "value" : "👨🏼‍❤️‍💋‍👨🏿" }, "👨🏽‍❤️‍💋‍👨🏻", { @@ -34993,6 +34993,7 @@ }, "👨🏾‍❤️‍💋‍👨🏽", { + "value" : "👨🏾‍❤️‍💋‍👨🏽", "keywords" : [ "couple", "kiss", @@ -35000,8 +35001,7 @@ "man", "medium skin tone", "medium-dark skin tone" - ], - "value" : "👨🏾‍❤️‍💋‍👨🏽" + ] }, "👨🏾‍❤️‍💋‍👨🏾", { @@ -35016,7 +35016,6 @@ }, "👨🏾‍❤️‍💋‍👨🏿", { - "value" : "👨🏾‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -35024,7 +35023,8 @@ "kiss: man, man, medium-dark skin tone, dark skin tone", "man", "medium-dark skin tone" - ] + ], + "value" : "👨🏾‍❤️‍💋‍👨🏿" }, "👨🏿‍❤️‍💋‍👨🏻", { @@ -35040,7 +35040,6 @@ }, "👨🏿‍❤️‍💋‍👨🏼", { - "value" : "👨🏿‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "dark skin tone", @@ -35048,7 +35047,8 @@ "kiss: man, man, dark skin tone, medium-light skin tone", "man", "medium-light skin tone" - ] + ], + "value" : "👨🏿‍❤️‍💋‍👨🏼" }, "👨🏿‍❤️‍💋‍👨🏽", { @@ -35064,6 +35064,7 @@ }, "👨🏿‍❤️‍💋‍👨🏾", { + "value" : "👨🏿‍❤️‍💋‍👨🏾", "keywords" : [ "couple", "dark skin tone", @@ -35071,8 +35072,7 @@ "kiss: man, man, dark skin tone, medium-dark skin tone", "man", "medium-dark skin tone" - ], - "value" : "👨🏿‍❤️‍💋‍👨🏾" + ] }, "👨🏿‍❤️‍💋‍👨🏿", { @@ -35087,13 +35087,13 @@ }, "👩‍❤️‍💋‍👩", { - "value" : "👩‍❤️‍💋‍👩", "keywords" : [ "couple", "kiss", "kiss: woman, woman", "woman" - ] + ], + "value" : "👩‍❤️‍💋‍👩" }, "👩🏻‍❤️‍💋‍👩🏻", { @@ -35108,6 +35108,7 @@ }, "👩🏻‍❤️‍💋‍👩🏼", { + "value" : "👩🏻‍❤️‍💋‍👩🏼", "keywords" : [ "couple", "kiss", @@ -35115,8 +35116,7 @@ "light skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏻‍❤️‍💋‍👩🏼" + ] }, "👩🏻‍❤️‍💋‍👩🏽", { @@ -35144,7 +35144,6 @@ }, "👩🏻‍❤️‍💋‍👩🏿", { - "value" : "👩🏻‍❤️‍💋‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -35152,7 +35151,8 @@ "kiss: woman, woman, light skin tone, dark skin tone", "light skin tone", "woman" - ] + ], + "value" : "👩🏻‍❤️‍💋‍👩🏿" }, "👩🏼‍❤️‍💋‍👩🏻", { @@ -35168,14 +35168,14 @@ }, "👩🏼‍❤️‍💋‍👩🏼", { + "value" : "👩🏼‍❤️‍💋‍👩🏼", "keywords" : [ "couple", "kiss", "kiss: woman, woman, medium-light skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍💋‍👩🏼" + ] }, "👩🏼‍❤️‍💋‍👩🏽", { @@ -35250,7 +35250,6 @@ }, "👩🏽‍❤️‍💋‍👩🏾", { - "value" : "👩🏽‍❤️‍💋‍👩🏾", "keywords" : [ "couple", "kiss", @@ -35258,7 +35257,8 @@ "medium skin tone", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏽‍❤️‍💋‍👩🏾" }, "👩🏽‍❤️‍💋‍👩🏿", { @@ -35274,7 +35274,6 @@ }, "👩🏾‍❤️‍💋‍👩🏻", { - "value" : "👩🏾‍❤️‍💋‍👩🏻", "keywords" : [ "couple", "kiss", @@ -35282,7 +35281,8 @@ "light skin tone", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏾‍❤️‍💋‍👩🏻" }, "👩🏾‍❤️‍💋‍👩🏼", { @@ -35321,6 +35321,7 @@ }, "👩🏾‍❤️‍💋‍👩🏿", { + "value" : "👩🏾‍❤️‍💋‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -35328,8 +35329,7 @@ "kiss: woman, woman, medium-dark skin tone, dark skin tone", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍💋‍👩🏿" + ] }, "👩🏿‍❤️‍💋‍👩🏻", { @@ -35357,6 +35357,7 @@ }, "👩🏿‍❤️‍💋‍👩🏽", { + "value" : "👩🏿‍❤️‍💋‍👩🏽", "keywords" : [ "couple", "dark skin tone", @@ -35364,8 +35365,7 @@ "kiss: woman, woman, dark skin tone, medium skin tone", "medium skin tone", "woman" - ], - "value" : "👩🏿‍❤️‍💋‍👩🏽" + ] }, "👩🏿‍❤️‍💋‍👩🏾", { @@ -35392,7 +35392,6 @@ }, "💑", { - "value" : "💑", "keywords" : [ "anniversary", "babe", @@ -35407,18 +35406,19 @@ "romance", "together", "you" - ] + ], + "value" : "💑" }, "💑🏻", { + "value" : "💑🏻", "keywords" : [ "couple", "couple with heart", "couple with heart: light skin tone", "light skin tone", "love" - ], - "value" : "💑🏻" + ] }, "💑🏼", { @@ -35444,14 +35444,14 @@ }, "💑🏾", { + "value" : "💑🏾", "keywords" : [ "couple", "couple with heart", "couple with heart: medium-dark skin tone", "love", "medium-dark skin tone" - ], - "value" : "💑🏾" + ] }, "💑🏿", { @@ -35466,7 +35466,6 @@ }, "🧑🏻‍❤️‍🧑🏼", { - "value" : "🧑🏻‍❤️‍🧑🏼", "keywords" : [ "couple", "couple with heart", @@ -35475,7 +35474,8 @@ "love", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏻‍❤️‍🧑🏼" }, "🧑🏻‍❤️‍🧑🏽", { @@ -35505,6 +35505,7 @@ }, "🧑🏻‍❤️‍🧑🏿", { + "value" : "🧑🏻‍❤️‍🧑🏿", "keywords" : [ "couple", "couple with heart", @@ -35513,12 +35514,10 @@ "light skin tone", "love", "person" - ], - "value" : "🧑🏻‍❤️‍🧑🏿" + ] }, "🧑🏼‍❤️‍🧑🏻", { - "value" : "🧑🏼‍❤️‍🧑🏻", "keywords" : [ "couple", "couple with heart", @@ -35527,10 +35526,12 @@ "love", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏼‍❤️‍🧑🏻" }, "🧑🏼‍❤️‍🧑🏽", { + "value" : "🧑🏼‍❤️‍🧑🏽", "keywords" : [ "couple", "couple with heart", @@ -35539,11 +35540,11 @@ "medium skin tone", "medium-light skin tone", "person" - ], - "value" : "🧑🏼‍❤️‍🧑🏽" + ] }, "🧑🏼‍❤️‍🧑🏾", { + "value" : "🧑🏼‍❤️‍🧑🏾", "keywords" : [ "couple", "couple with heart", @@ -35552,8 +35553,7 @@ "medium-dark skin tone", "medium-light skin tone", "person" - ], - "value" : "🧑🏼‍❤️‍🧑🏾" + ] }, "🧑🏼‍❤️‍🧑🏿", { @@ -35583,7 +35583,6 @@ }, "🧑🏽‍❤️‍🧑🏼", { - "value" : "🧑🏽‍❤️‍🧑🏼", "keywords" : [ "couple", "couple with heart", @@ -35592,11 +35591,11 @@ "medium skin tone", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏽‍❤️‍🧑🏼" }, "🧑🏽‍❤️‍🧑🏾", { - "value" : "🧑🏽‍❤️‍🧑🏾", "keywords" : [ "couple", "couple with heart", @@ -35605,10 +35604,12 @@ "medium skin tone", "medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏽‍❤️‍🧑🏾" }, "🧑🏽‍❤️‍🧑🏿", { + "value" : "🧑🏽‍❤️‍🧑🏿", "keywords" : [ "couple", "couple with heart", @@ -35617,8 +35618,7 @@ "love", "medium skin tone", "person" - ], - "value" : "🧑🏽‍❤️‍🧑🏿" + ] }, "🧑🏾‍❤️‍🧑🏻", { @@ -35635,6 +35635,7 @@ }, "🧑🏾‍❤️‍🧑🏼", { + "value" : "🧑🏾‍❤️‍🧑🏼", "keywords" : [ "couple", "couple with heart", @@ -35643,11 +35644,11 @@ "medium-dark skin tone", "medium-light skin tone", "person" - ], - "value" : "🧑🏾‍❤️‍🧑🏼" + ] }, "🧑🏾‍❤️‍🧑🏽", { + "value" : "🧑🏾‍❤️‍🧑🏽", "keywords" : [ "couple", "couple with heart", @@ -35656,11 +35657,11 @@ "medium skin tone", "medium-dark skin tone", "person" - ], - "value" : "🧑🏾‍❤️‍🧑🏽" + ] }, "🧑🏾‍❤️‍🧑🏿", { + "value" : "🧑🏾‍❤️‍🧑🏿", "keywords" : [ "couple", "couple with heart", @@ -35669,12 +35670,10 @@ "love", "medium-dark skin tone", "person" - ], - "value" : "🧑🏾‍❤️‍🧑🏿" + ] }, "🧑🏿‍❤️‍🧑🏻", { - "value" : "🧑🏿‍❤️‍🧑🏻", "keywords" : [ "couple", "couple with heart", @@ -35683,11 +35682,11 @@ "light skin tone", "love", "person" - ] + ], + "value" : "🧑🏿‍❤️‍🧑🏻" }, "🧑🏿‍❤️‍🧑🏼", { - "value" : "🧑🏿‍❤️‍🧑🏼", "keywords" : [ "couple", "couple with heart", @@ -35696,7 +35695,8 @@ "love", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏿‍❤️‍🧑🏼" }, "🧑🏿‍❤️‍🧑🏽", { @@ -35726,7 +35726,6 @@ }, "👩‍❤️‍👨", { - "value" : "👩‍❤️‍👨", "keywords" : [ "couple", "couple with heart", @@ -35734,7 +35733,8 @@ "love", "man", "woman" - ] + ], + "value" : "👩‍❤️‍👨" }, "👩🏻‍❤️‍👨🏻", { @@ -35751,6 +35751,7 @@ }, "👩🏻‍❤️‍👨🏼", { + "value" : "👩🏻‍❤️‍👨🏼", "keywords" : [ "couple", "couple with heart", @@ -35760,8 +35761,7 @@ "man", "medium-light skin tone", "woman" - ], - "value" : "👩🏻‍❤️‍👨🏼" + ] }, "👩🏻‍❤️‍👨🏽", { @@ -35793,6 +35793,7 @@ }, "👩🏻‍❤️‍👨🏿", { + "value" : "👩🏻‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -35802,11 +35803,11 @@ "love", "man", "woman" - ], - "value" : "👩🏻‍❤️‍👨🏿" + ] }, "👩🏼‍❤️‍👨🏻", { + "value" : "👩🏼‍❤️‍👨🏻", "keywords" : [ "couple", "couple with heart", @@ -35816,8 +35817,7 @@ "man", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍👨🏻" + ] }, "👩🏼‍❤️‍👨🏼", { @@ -35848,6 +35848,7 @@ }, "👩🏼‍❤️‍👨🏾", { + "value" : "👩🏼‍❤️‍👨🏾", "keywords" : [ "couple", "couple with heart", @@ -35857,11 +35858,11 @@ "medium-dark skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍👨🏾" + ] }, "👩🏼‍❤️‍👨🏿", { + "value" : "👩🏼‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -35871,8 +35872,7 @@ "man", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍👨🏿" + ] }, "👩🏽‍❤️‍👨🏻", { @@ -35890,7 +35890,6 @@ }, "👩🏽‍❤️‍👨🏼", { - "value" : "👩🏽‍❤️‍👨🏼", "keywords" : [ "couple", "couple with heart", @@ -35900,7 +35899,8 @@ "medium skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏽‍❤️‍👨🏼" }, "👩🏽‍❤️‍👨🏽", { @@ -35917,6 +35917,7 @@ }, "👩🏽‍❤️‍👨🏾", { + "value" : "👩🏽‍❤️‍👨🏾", "keywords" : [ "couple", "couple with heart", @@ -35926,8 +35927,7 @@ "medium skin tone", "medium-dark skin tone", "woman" - ], - "value" : "👩🏽‍❤️‍👨🏾" + ] }, "👩🏽‍❤️‍👨🏿", { @@ -35959,7 +35959,6 @@ }, "👩🏾‍❤️‍👨🏼", { - "value" : "👩🏾‍❤️‍👨🏼", "keywords" : [ "couple", "couple with heart", @@ -35969,11 +35968,11 @@ "medium-dark skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏾‍❤️‍👨🏼" }, "👩🏾‍❤️‍👨🏽", { - "value" : "👩🏾‍❤️‍👨🏽", "keywords" : [ "couple", "couple with heart", @@ -35983,10 +35982,12 @@ "medium skin tone", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏾‍❤️‍👨🏽" }, "👩🏾‍❤️‍👨🏾", { + "value" : "👩🏾‍❤️‍👨🏾", "keywords" : [ "couple", "couple with heart", @@ -35995,8 +35996,7 @@ "man", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍👨🏾" + ] }, "👩🏾‍❤️‍👨🏿", { @@ -36014,6 +36014,7 @@ }, "👩🏿‍❤️‍👨🏻", { + "value" : "👩🏿‍❤️‍👨🏻", "keywords" : [ "couple", "couple with heart", @@ -36023,8 +36024,7 @@ "love", "man", "woman" - ], - "value" : "👩🏿‍❤️‍👨🏻" + ] }, "👩🏿‍❤️‍👨🏼", { @@ -36042,7 +36042,6 @@ }, "👩🏿‍❤️‍👨🏽", { - "value" : "👩🏿‍❤️‍👨🏽", "keywords" : [ "couple", "couple with heart", @@ -36052,7 +36051,8 @@ "man", "medium skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍👨🏽" }, "👩🏿‍❤️‍👨🏾", { @@ -36083,17 +36083,18 @@ }, "👨‍❤️‍👨", { + "value" : "👨‍❤️‍👨", "keywords" : [ "couple", "couple with heart", "couple with heart: man, man", "love", "man" - ], - "value" : "👨‍❤️‍👨" + ] }, "👨🏻‍❤️‍👨🏻", { + "value" : "👨🏻‍❤️‍👨🏻", "keywords" : [ "couple", "couple with heart", @@ -36101,8 +36102,7 @@ "light skin tone", "love", "man" - ], - "value" : "👨🏻‍❤️‍👨🏻" + ] }, "👨🏻‍❤️‍👨🏼", { @@ -36119,7 +36119,6 @@ }, "👨🏻‍❤️‍👨🏽", { - "value" : "👨🏻‍❤️‍👨🏽", "keywords" : [ "couple", "couple with heart", @@ -36128,7 +36127,8 @@ "love", "man", "medium skin tone" - ] + ], + "value" : "👨🏻‍❤️‍👨🏽" }, "👨🏻‍❤️‍👨🏾", { @@ -36145,6 +36145,7 @@ }, "👨🏻‍❤️‍👨🏿", { + "value" : "👨🏻‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -36153,11 +36154,11 @@ "light skin tone", "love", "man" - ], - "value" : "👨🏻‍❤️‍👨🏿" + ] }, "👨🏼‍❤️‍👨🏻", { + "value" : "👨🏼‍❤️‍👨🏻", "keywords" : [ "couple", "couple with heart", @@ -36166,8 +36167,7 @@ "love", "man", "medium-light skin tone" - ], - "value" : "👨🏼‍❤️‍👨🏻" + ] }, "👨🏼‍❤️‍👨🏼", { @@ -36222,7 +36222,6 @@ }, "👨🏽‍❤️‍👨🏻", { - "value" : "👨🏽‍❤️‍👨🏻", "keywords" : [ "couple", "couple with heart", @@ -36231,7 +36230,8 @@ "love", "man", "medium skin tone" - ] + ], + "value" : "👨🏽‍❤️‍👨🏻" }, "👨🏽‍❤️‍👨🏼", { @@ -36273,7 +36273,6 @@ }, "👨🏽‍❤️‍👨🏿", { - "value" : "👨🏽‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -36282,11 +36281,11 @@ "love", "man", "medium skin tone" - ] + ], + "value" : "👨🏽‍❤️‍👨🏿" }, "👨🏾‍❤️‍👨🏻", { - "value" : "👨🏾‍❤️‍👨🏻", "keywords" : [ "couple", "couple with heart", @@ -36295,7 +36294,8 @@ "love", "man", "medium-dark skin tone" - ] + ], + "value" : "👨🏾‍❤️‍👨🏻" }, "👨🏾‍❤️‍👨🏼", { @@ -36337,6 +36337,7 @@ }, "👨🏾‍❤️‍👨🏿", { + "value" : "👨🏾‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -36345,11 +36346,11 @@ "love", "man", "medium-dark skin tone" - ], - "value" : "👨🏾‍❤️‍👨🏿" + ] }, "👨🏿‍❤️‍👨🏻", { + "value" : "👨🏿‍❤️‍👨🏻", "keywords" : [ "couple", "couple with heart", @@ -36358,11 +36359,11 @@ "light skin tone", "love", "man" - ], - "value" : "👨🏿‍❤️‍👨🏻" + ] }, "👨🏿‍❤️‍👨🏼", { + "value" : "👨🏿‍❤️‍👨🏼", "keywords" : [ "couple", "couple with heart", @@ -36371,12 +36372,10 @@ "love", "man", "medium-light skin tone" - ], - "value" : "👨🏿‍❤️‍👨🏼" + ] }, "👨🏿‍❤️‍👨🏽", { - "value" : "👨🏿‍❤️‍👨🏽", "keywords" : [ "couple", "couple with heart", @@ -36385,7 +36384,8 @@ "love", "man", "medium skin tone" - ] + ], + "value" : "👨🏿‍❤️‍👨🏽" }, "👨🏿‍❤️‍👨🏾", { @@ -36402,7 +36402,6 @@ }, "👨🏿‍❤️‍👨🏿", { - "value" : "👨🏿‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -36410,18 +36409,19 @@ "dark skin tone", "love", "man" - ] + ], + "value" : "👨🏿‍❤️‍👨🏿" }, "👩‍❤️‍👩", { - "value" : "👩‍❤️‍👩", "keywords" : [ "couple", "couple with heart", "couple with heart: woman, woman", "love", "woman" - ] + ], + "value" : "👩‍❤️‍👩" }, "👩🏻‍❤️‍👩🏻", { @@ -36437,6 +36437,7 @@ }, "👩🏻‍❤️‍👩🏼", { + "value" : "👩🏻‍❤️‍👩🏼", "keywords" : [ "couple", "couple with heart", @@ -36445,12 +36446,10 @@ "love", "medium-light skin tone", "woman" - ], - "value" : "👩🏻‍❤️‍👩🏼" + ] }, "👩🏻‍❤️‍👩🏽", { - "value" : "👩🏻‍❤️‍👩🏽", "keywords" : [ "couple", "couple with heart", @@ -36459,7 +36458,8 @@ "love", "medium skin tone", "woman" - ] + ], + "value" : "👩🏻‍❤️‍👩🏽" }, "👩🏻‍❤️‍👩🏾", { @@ -36527,7 +36527,6 @@ }, "👩🏼‍❤️‍👩🏾", { - "value" : "👩🏼‍❤️‍👩🏾", "keywords" : [ "couple", "couple with heart", @@ -36536,7 +36535,8 @@ "medium-dark skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏼‍❤️‍👩🏾" }, "👩🏼‍❤️‍👩🏿", { @@ -36566,7 +36566,6 @@ }, "👩🏽‍❤️‍👩🏼", { - "value" : "👩🏽‍❤️‍👩🏼", "keywords" : [ "couple", "couple with heart", @@ -36575,10 +36574,12 @@ "medium skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏽‍❤️‍👩🏼" }, "👩🏽‍❤️‍👩🏽", { + "value" : "👩🏽‍❤️‍👩🏽", "keywords" : [ "couple", "couple with heart", @@ -36586,8 +36587,7 @@ "love", "medium skin tone", "woman" - ], - "value" : "👩🏽‍❤️‍👩🏽" + ] }, "👩🏽‍❤️‍👩🏾", { @@ -36617,7 +36617,6 @@ }, "👩🏾‍❤️‍👩🏻", { - "value" : "👩🏾‍❤️‍👩🏻", "keywords" : [ "couple", "couple with heart", @@ -36626,11 +36625,11 @@ "love", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏾‍❤️‍👩🏻" }, "👩🏾‍❤️‍👩🏼", { - "value" : "👩🏾‍❤️‍👩🏼", "keywords" : [ "couple", "couple with heart", @@ -36639,7 +36638,8 @@ "medium-dark skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏾‍❤️‍👩🏼" }, "👩🏾‍❤️‍👩🏽", { @@ -36668,7 +36668,6 @@ }, "👩🏾‍❤️‍👩🏿", { - "value" : "👩🏾‍❤️‍👩🏿", "keywords" : [ "couple", "couple with heart", @@ -36677,10 +36676,12 @@ "love", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏾‍❤️‍👩🏿" }, "👩🏿‍❤️‍👩🏻", { + "value" : "👩🏿‍❤️‍👩🏻", "keywords" : [ "couple", "couple with heart", @@ -36689,8 +36690,7 @@ "light skin tone", "love", "woman" - ], - "value" : "👩🏿‍❤️‍👩🏻" + ] }, "👩🏿‍❤️‍👩🏼", { @@ -36720,7 +36720,6 @@ }, "👩🏿‍❤️‍👩🏾", { - "value" : "👩🏿‍❤️‍👩🏾", "keywords" : [ "couple", "couple with heart", @@ -36729,10 +36728,12 @@ "love", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍👩🏾" }, "👩🏿‍❤️‍👩🏿", { + "value" : "👩🏿‍❤️‍👩🏿", "keywords" : [ "couple", "couple with heart", @@ -36740,8 +36741,7 @@ "dark skin tone", "love", "woman" - ], - "value" : "👩🏿‍❤️‍👩🏿" + ] }, "👪", { @@ -36764,18 +36764,17 @@ }, "👨‍👩‍👧", { - "value" : "👨‍👩‍👧", "keywords" : [ "family", "family: man, woman, girl", "girl", "man", "woman" - ] + ], + "value" : "👨‍👩‍👧" }, "👨‍👩‍👧‍👦", { - "value" : "👨‍👩‍👧‍👦", "keywords" : [ "boy", "family", @@ -36783,7 +36782,8 @@ "girl", "man", "woman" - ] + ], + "value" : "👨‍👩‍👧‍👦" }, "👨‍👩‍👦‍👦", { @@ -36798,34 +36798,34 @@ }, "👨‍👩‍👧‍👧", { + "value" : "👨‍👩‍👧‍👧", "keywords" : [ "family", "family: man, woman, girl, girl", "girl", "man", "woman" - ], - "value" : "👨‍👩‍👧‍👧" + ] }, "👨‍👨‍👦", { + "value" : "👨‍👨‍👦", "keywords" : [ "boy", "family", "family: man, man, boy", "man" - ], - "value" : "👨‍👨‍👦" + ] }, "👨‍👨‍👧", { + "value" : "👨‍👨‍👧", "keywords" : [ "family", "family: man, man, girl", "girl", "man" - ], - "value" : "👨‍👨‍👧" + ] }, "👨‍👨‍👧‍👦", { @@ -36840,23 +36840,23 @@ }, "👨‍👨‍👦‍👦", { + "value" : "👨‍👨‍👦‍👦", "keywords" : [ "boy", "family", "family: man, man, boy, boy", "man" - ], - "value" : "👨‍👨‍👦‍👦" + ] }, "👨‍👨‍👧‍👧", { - "value" : "👨‍👨‍👧‍👧", "keywords" : [ "family", "family: man, man, girl, girl", "girl", "man" - ] + ], + "value" : "👨‍👨‍👧‍👧" }, "👩‍👩‍👦", { @@ -36870,34 +36870,34 @@ }, "👩‍👩‍👧", { - "value" : "👩‍👩‍👧", "keywords" : [ "family", "family: woman, woman, girl", "girl", "woman" - ] + ], + "value" : "👩‍👩‍👧" }, "👩‍👩‍👧‍👦", { + "value" : "👩‍👩‍👧‍👦", "keywords" : [ "boy", "family", "family: woman, woman, girl, boy", "girl", "woman" - ], - "value" : "👩‍👩‍👧‍👦" + ] }, "👩‍👩‍👦‍👦", { + "value" : "👩‍👩‍👦‍👦", "keywords" : [ "boy", "family", "family: woman, woman, boy, boy", "woman" - ], - "value" : "👩‍👩‍👦‍👦" + ] }, "👩‍👩‍👧‍👧", { @@ -36931,34 +36931,34 @@ }, "👨‍👧", { - "value" : "👨‍👧", "keywords" : [ "family", "family: man, girl", "girl", "man" - ] + ], + "value" : "👨‍👧" }, "👨‍👧‍👦", { - "value" : "👨‍👧‍👦", "keywords" : [ "boy", "family", "family: man, girl, boy", "girl", "man" - ] + ], + "value" : "👨‍👧‍👦" }, "👨‍👧‍👧", { + "value" : "👨‍👧‍👧", "keywords" : [ "family", "family: man, girl, girl", "girl", "man" - ], - "value" : "👨‍👧‍👧" + ] }, "👩‍👦", { @@ -36992,14 +36992,14 @@ }, "👩‍👧‍👦", { - "value" : "👩‍👧‍👦", "keywords" : [ "boy", "family", "family: woman, girl, boy", "girl", "woman" - ] + ], + "value" : "👩‍👧‍👦" }, "👩‍👧‍👧", { @@ -37013,28 +37013,27 @@ }, "🗣️", { - "value" : "🗣️", "keywords" : [ "face", "head", "silhouette", "speak", "speaking" - ] + ], + "value" : "🗣️" }, "👤", { + "value" : "👤", "keywords" : [ "bust", "mysterious", "shadow", "silhouette" - ], - "value" : "👤" + ] }, "👥", { - "value" : "👥", "keywords" : [ "bff", "bust", @@ -37044,7 +37043,8 @@ "friends", "people", "silhouette" - ] + ], + "value" : "👥" }, "🫂", { @@ -37081,48 +37081,46 @@ }, { "name" : "Animals & Nature", - "appleCategory" : "Animals & Nature", "emojis" : [ "🐵", { - "value" : "🐵", "keywords" : [ "animal", "banana", "face", "monkey" - ] + ], + "value" : "🐵" }, "🐒", { + "value" : "🐒", "keywords" : [ "animal", "banana", "monkey" - ], - "value" : "🐒" + ] }, "🦍", { - "value" : "🦍", "keywords" : [ "animal", "gorilla" - ] + ], + "value" : "🦍" }, "🦧", { - "value" : "🦧", "keywords" : [ "animal", "ape", "monkey", "orangutan" - ] + ], + "value" : "🦧" }, "🐶", { - "value" : "🐶", "keywords" : [ "adorbs", "animal", @@ -37131,18 +37129,19 @@ "pet", "puppies", "puppy" - ] + ], + "value" : "🐶" }, "🐕", { - "value" : "🐕", "keywords" : [ "animal", "animals", "dog", "dogs", "pet" - ] + ], + "value" : "🐕" }, "🦮", { @@ -37196,13 +37195,13 @@ }, "🦝", { + "value" : "🦝", "keywords" : [ "animal", "curious", "raccoon", "sly" - ], - "value" : "🦝" + ] }, "🐱", { @@ -37218,7 +37217,6 @@ }, "🐈", { - "value" : "🐈", "keywords" : [ "animal", "animals", @@ -37226,7 +37224,8 @@ "cats", "kitten", "pet" - ] + ], + "value" : "🐈" }, "🐈‍⬛", { @@ -37243,7 +37242,6 @@ }, "🦁", { - "value" : "🦁", "keywords" : [ "alpha", "animal", @@ -37257,10 +37255,12 @@ "safari", "strong", "zodiac" - ] + ], + "value" : "🦁" }, "🐯", { + "value" : "🐯", "keywords" : [ "animal", "big", @@ -37268,11 +37268,11 @@ "face", "predator", "tiger" - ], - "value" : "🐯" + ] }, "🐅", { + "value" : "🐅", "keywords" : [ "animal", "big", @@ -37280,11 +37280,11 @@ "predator", "tiger", "zoo" - ], - "value" : "🐅" + ] }, "🐆", { + "value" : "🐆", "keywords" : [ "animal", "big", @@ -37292,11 +37292,11 @@ "leopard", "predator", "zoo" - ], - "value" : "🐆" + ] }, "🐴", { + "value" : "🐴", "keywords" : [ "animal", "dressage", @@ -37305,8 +37305,7 @@ "farm", "horse", "horses" - ], - "value" : "🐴" + ] }, "🐎", { @@ -37339,11 +37338,11 @@ }, "🦌", { + "value" : "🦌", "keywords" : [ "animal", "deer" - ], - "value" : "🦌" + ] }, "🦬", { @@ -37358,7 +37357,6 @@ }, "🐮", { - "value" : "🐮", "keywords" : [ "animal", "cow", @@ -37366,10 +37364,12 @@ "farm", "milk", "moo" - ] + ], + "value" : "🐮" }, "🐂", { + "value" : "🐂", "keywords" : [ "animal", "animals", @@ -37378,8 +37378,7 @@ "ox", "Taurus", "zodiac" - ], - "value" : "🐂" + ] }, "🐃", { @@ -37393,6 +37392,7 @@ }, "🐄", { + "value" : "🐄", "keywords" : [ "animal", "animals", @@ -37400,11 +37400,11 @@ "farm", "milk", "moo" - ], - "value" : "🐄" + ] }, "🐷", { + "value" : "🐷", "keywords" : [ "animal", "bacon", @@ -37412,12 +37412,10 @@ "farm", "pig", "pork" - ], - "value" : "🐷" + ] }, "🐖", { - "value" : "🐖", "keywords" : [ "animal", "bacon", @@ -37425,20 +37423,20 @@ "pig", "pork", "sow" - ] + ], + "value" : "🐖" }, "🐗", { + "value" : "🐗", "keywords" : [ "animal", "boar", "pig" - ], - "value" : "🐗" + ] }, "🐽", { - "value" : "🐽", "keywords" : [ "animal", "face", @@ -37447,7 +37445,8 @@ "pig", "smell", "snout" - ] + ], + "value" : "🐽" }, "🐏", { @@ -37480,6 +37479,7 @@ }, "🐐", { + "value" : "🐐", "keywords" : [ "animal", "Capricorn", @@ -37487,8 +37487,7 @@ "goat", "milk", "zodiac" - ], - "value" : "🐐" + ] }, "🐪", { @@ -37546,7 +37545,6 @@ }, "🦣", { - "value" : "🦣", "keywords" : [ "animal", "extinction", @@ -37554,15 +37552,16 @@ "mammoth", "tusk", "wooly" - ] + ], + "value" : "🦣" }, "🦏", { + "value" : "🦏", "keywords" : [ "animal", "rhinoceros" - ], - "value" : "🦏" + ] }, "🦛", { @@ -37601,13 +37600,13 @@ }, "🐹", { + "value" : "🐹", "keywords" : [ "animal", "face", "hamster", "pet" - ], - "value" : "🐹" + ] }, "🐰", { @@ -37632,12 +37631,12 @@ }, "🐿️", { + "value" : "🐿️", "keywords" : [ "animal", "chipmunk", "squirrel" - ], - "value" : "🐿️" + ] }, "🦫", { @@ -37651,12 +37650,12 @@ }, "🦔", { - "value" : "🦔", "keywords" : [ "animal", "hedgehog", "spiny" - ] + ], + "value" : "🦔" }, "🦇", { @@ -37681,14 +37680,14 @@ }, "🐻‍❄️", { + "value" : "🐻‍❄️", "keywords" : [ "animal", "arctic", "bear", "polar", "white" - ], - "value" : "🐻‍❄️" + ] }, "🐨", { @@ -37706,22 +37705,22 @@ }, "🐼", { - "value" : "🐼", "keywords" : [ "animal", "bamboo", "face", "panda" - ] + ], + "value" : "🐼" }, "🦥", { - "value" : "🦥", "keywords" : [ "lazy", "sloth", "slow" - ] + ], + "value" : "🦥" }, "🦦", { @@ -37765,48 +37764,47 @@ }, "🐾", { + "value" : "🐾", "keywords" : [ "feet", "paw", "paws", "print", "prints" - ], - "value" : "🐾" + ] }, "🦃", { - "value" : "🦃", "keywords" : [ "bird", "gobble", "thanksgiving", "turkey" - ] + ], + "value" : "🦃" }, "🐔", { - "value" : "🐔", "keywords" : [ "animal", "bird", "chicken", "ornithology" - ] + ], + "value" : "🐔" }, "🐓", { - "value" : "🐓", "keywords" : [ "animal", "bird", "ornithology", "rooster" - ] + ], + "value" : "🐓" }, "🐣", { - "value" : "🐣", "keywords" : [ "animal", "baby", @@ -37814,21 +37812,23 @@ "chick", "egg", "hatching" - ] + ], + "value" : "🐣" }, "🐤", { + "value" : "🐤", "keywords" : [ "animal", "baby", "bird", "chick", "ornithology" - ], - "value" : "🐤" + ] }, "🐥", { + "value" : "🐥", "keywords" : [ "animal", "baby", @@ -37837,8 +37837,7 @@ "front-facing", "newborn", "ornithology" - ], - "value" : "🐥" + ] }, "🐦", { @@ -37862,14 +37861,14 @@ }, "🕊️", { - "value" : "🕊️", "keywords" : [ "bird", "dove", "fly", "ornithology", "peace" - ] + ], + "value" : "🕊️" }, "🦅", { @@ -37883,13 +37882,13 @@ }, "🦆", { - "value" : "🦆", "keywords" : [ "animal", "bird", "duck", "ornithology" - ] + ], + "value" : "🦆" }, "🦢", { @@ -37906,14 +37905,14 @@ }, "🦉", { - "value" : "🦉", "keywords" : [ "animal", "bird", "ornithology", "owl", "wise" - ] + ], + "value" : "🦉" }, "🦤", { @@ -37940,6 +37939,7 @@ }, "🦩", { + "value" : "🦩", "keywords" : [ "animal", "bird", @@ -37947,8 +37947,7 @@ "flamingo", "ornithology", "tropical" - ], - "value" : "🦩" + ] }, "🦚", { @@ -37967,7 +37966,6 @@ }, "🦜", { - "value" : "🦜", "keywords" : [ "animal", "bird", @@ -37975,7 +37973,8 @@ "parrot", "pirate", "talk" - ] + ], + "value" : "🦜" }, "🐸", { @@ -38063,14 +38062,14 @@ }, "🦖", { + "value" : "🦖", "keywords" : [ "dinosaur", "Rex", "T", "T-Rex", "Tyrannosaurus" - ], - "value" : "🦖" + ] }, "🐳", { @@ -38086,13 +38085,13 @@ }, "🐋", { + "value" : "🐋", "keywords" : [ "animal", "beach", "ocean", "whale" - ], - "value" : "🐋" + ] }, "🐬", { @@ -38107,18 +38106,17 @@ }, "🦭", { + "value" : "🦭", "keywords" : [ "animal", "lion", "ocean", "sea", "seal" - ], - "value" : "🦭" + ] }, "🐟", { - "value" : "🐟", "keywords" : [ "animal", "dinner", @@ -38127,17 +38125,18 @@ "fishing", "Pisces", "zodiac" - ] + ], + "value" : "🐟" }, "🐠", { + "value" : "🐠", "keywords" : [ "animal", "fish", "fishes", "tropical" - ], - "value" : "🐠" + ] }, "🐡", { @@ -38193,7 +38192,6 @@ }, "🐌", { - "value" : "🐌", "keywords" : [ "animal", "escargot", @@ -38201,39 +38199,41 @@ "nature", "slug", "snail" - ] + ], + "value" : "🐌" }, "🦋", { + "value" : "🦋", "keywords" : [ "butterfly", "insect", "pretty" - ], - "value" : "🦋" + ] }, "🐛", { - "value" : "🐛", "keywords" : [ "animal", "bug", "garden", "insect" - ] + ], + "value" : "🐛" }, "🐜", { - "value" : "🐜", "keywords" : [ "animal", "ant", "garden", "insect" - ] + ], + "value" : "🐜" }, "🐝", { + "value" : "🐝", "keywords" : [ "animal", "bee", @@ -38243,21 +38243,21 @@ "insect", "nature", "spring" - ], - "value" : "🐝" + ] }, "🪲", { - "value" : "🪲", "keywords" : [ "animal", "beetle", "bug", "insect" - ] + ], + "value" : "🪲" }, "🐞", { + "value" : "🐞", "keywords" : [ "animal", "beetle", @@ -38267,11 +38267,11 @@ "ladybird", "ladybug", "nature" - ], - "value" : "🐞" + ] }, "🦗", { + "value" : "🦗", "keywords" : [ "animal", "bug", @@ -38279,19 +38279,18 @@ "grasshopper", "insect", "Orthoptera" - ], - "value" : "🦗" + ] }, "🪳", { + "value" : "🪳", "keywords" : [ "animal", "cockroach", "insect", "pest", "roach" - ], - "value" : "🪳" + ] }, "🕷️", { @@ -38304,24 +38303,25 @@ }, "🕸️", { + "value" : "🕸️", "keywords" : [ "spider", "web" - ], - "value" : "🕸️" + ] }, "🦂", { - "value" : "🦂", "keywords" : [ "Scorpio", "scorpion", "Scorpius", "zodiac" - ] + ], + "value" : "🦂" }, "🦟", { + "value" : "🦟", "keywords" : [ "bite", "disease", @@ -38331,8 +38331,7 @@ "mosquito", "pest", "virus" - ], - "value" : "🦟" + ] }, "🪰", { @@ -38360,14 +38359,14 @@ }, "🦠", { - "value" : "🦠", "keywords" : [ "amoeba", "bacteria", "microbe", "science", "virus" - ] + ], + "value" : "🦠" }, "💐", { @@ -38397,11 +38396,11 @@ }, "💮", { + "value" : "💮", "keywords" : [ "flower", "white" - ], - "value" : "💮" + ] }, "🪷", { @@ -38428,6 +38427,7 @@ }, "🌹", { + "value" : "🌹", "keywords" : [ "beauty", "elegant", @@ -38437,26 +38437,25 @@ "red", "rose", "valentine" - ], - "value" : "🌹" + ] }, "🥀", { + "value" : "🥀", "keywords" : [ "dying", "flower", "wilted" - ], - "value" : "🥀" + ] }, "🌺", { + "value" : "🌺", "keywords" : [ "flower", "hibiscus", "plant" - ], - "value" : "🌺" + ] }, "🌻", { @@ -38482,28 +38481,29 @@ }, "🌷", { - "value" : "🌷", "keywords" : [ "blossom", "flower", "growth", "plant", "tulip" - ] + ], + "value" : "🌷" }, "🌱", { + "value" : "🌱", "keywords" : [ "plant", "sapling", "seedling", "sprout", "young" - ], - "value" : "🌱" + ] }, "🪴", { + "value" : "🪴", "keywords" : [ "decor", "grow", @@ -38512,8 +38512,7 @@ "plant", "pot", "potted" - ], - "value" : "🪴" + ] }, "🌲", { @@ -38528,7 +38527,6 @@ }, "🌳", { - "value" : "🌳", "keywords" : [ "deciduous", "forest", @@ -38536,18 +38534,19 @@ "habitat", "shedding", "tree" - ] + ], + "value" : "🌳" }, "🌴", { + "value" : "🌴", "keywords" : [ "beach", "palm", "plant", "tree", "tropical" - ], - "value" : "🌴" + ] }, "🌵", { @@ -38592,6 +38591,7 @@ }, "🍀", { + "value" : "🍀", "keywords" : [ "4", "clover", @@ -38601,8 +38601,7 @@ "leaf", "lucky", "plant" - ], - "value" : "🍀" + ] }, "🍁", { @@ -38615,25 +38614,25 @@ }, "🍂", { - "value" : "🍂", "keywords" : [ "autumn", "fall", "fallen", "falling", "leaf" - ] + ], + "value" : "🍂" }, "🍃", { - "value" : "🍃", "keywords" : [ "blow", "flutter", "fluttering", "leaf", "wind" - ] + ], + "value" : "🍃" }, "🪹", { @@ -38658,40 +38657,42 @@ "nesting" ] } - ] + ], + "appleCategory" : "animalsAndNature" }, { + "name" : "Food & Drink", + "appleCategory" : "foodAndDrink", "emojis" : [ "🍇", { + "value" : "🍇", "keywords" : [ "Dionysus", "fruit", "grape", "grapes" - ], - "value" : "🍇" + ] }, "🍈", { + "value" : "🍈", "keywords" : [ "cantaloupe", "fruit", "melon" - ], - "value" : "🍈" + ] }, "🍉", { - "value" : "🍉", "keywords" : [ "fruit", "watermelon" - ] + ], + "value" : "🍉" }, "🍊", { - "value" : "🍊", "keywords" : [ "c", "citrus", @@ -38700,26 +38701,27 @@ "orange", "tangerine", "vitamin" - ] + ], + "value" : "🍊" }, "🍋", { - "value" : "🍋", "keywords" : [ "citrus", "fruit", "lemon", "sour" - ] + ], + "value" : "🍋" }, "🍌", { + "value" : "🍌", "keywords" : [ "banana", "fruit", "potassium" - ], - "value" : "🍌" + ] }, "🍍", { @@ -38734,16 +38736,17 @@ }, "🥭", { + "value" : "🥭", "keywords" : [ "food", "fruit", "mango", "tropical" - ], - "value" : "🥭" + ] }, "🍎", { + "value" : "🍎", "keywords" : [ "apple", "diet", @@ -38752,53 +38755,52 @@ "health", "red", "ripe" - ], - "value" : "🍎" + ] }, "🍏", { - "value" : "🍏", "keywords" : [ "apple", "fruit", "green" - ] + ], + "value" : "🍏" }, "🍐", { + "value" : "🍐", "keywords" : [ "fruit", "pear" - ], - "value" : "🍐" + ] }, "🍑", { + "value" : "🍑", "keywords" : [ "fruit", "peach" - ], - "value" : "🍑" + ] }, "🍒", { + "value" : "🍒", "keywords" : [ "berries", "cherries", "cherry", "fruit", "red" - ], - "value" : "🍒" + ] }, "🍓", { - "value" : "🍓", "keywords" : [ "berry", "fruit", "strawberry" - ] + ], + "value" : "🍓" }, "🫐", { @@ -38835,11 +38837,11 @@ }, "🫒", { - "value" : "🫒", "keywords" : [ "food", "olive" - ] + ], + "value" : "🫒" }, "🥥", { @@ -38862,34 +38864,33 @@ }, "🍆", { - "value" : "🍆", "keywords" : [ "aubergine", "eggplant", "vegetable" - ] + ], + "value" : "🍆" }, "🥔", { + "value" : "🥔", "keywords" : [ "food", "potato", "vegetable" - ], - "value" : "🥔" + ] }, "🥕", { - "value" : "🥕", "keywords" : [ "carrot", "food", "vegetable" - ] + ], + "value" : "🥕" }, "🌽", { - "value" : "🌽", "keywords" : [ "corn", "crops", @@ -38897,7 +38898,8 @@ "farm", "maize", "maze" - ] + ], + "value" : "🌽" }, "🌶️", { @@ -38909,24 +38911,24 @@ }, "🫑", { + "value" : "🫑", "keywords" : [ "bell", "capsicum", "food", "pepper", "vegetable" - ], - "value" : "🫑" + ] }, "🥒", { - "value" : "🥒", "keywords" : [ "cucumber", "food", "pickle", "vegetable" - ] + ], + "value" : "🥒" }, "🥬", { @@ -38945,37 +38947,37 @@ }, "🥦", { - "value" : "🥦", "keywords" : [ "broccoli", "cabbage", "wild" - ] + ], + "value" : "🥦" }, "🧄", { - "value" : "🧄", "keywords" : [ "flavoring", "garlic" - ] + ], + "value" : "🧄" }, "🧅", { + "value" : "🧅", "keywords" : [ "flavoring", "onion" - ], - "value" : "🧅" + ] }, "🍄", { + "value" : "🍄", "keywords" : [ "fungus", "mushroom", "toadstool" - ], - "value" : "🍄" + ] }, "🥜", { @@ -38990,26 +38992,27 @@ }, "🫘", { - "value" : "🫘", "keywords" : [ "beans", "food", "kidney", "legume", "small" - ] + ], + "value" : "🫘" }, "🌰", { - "value" : "🌰", "keywords" : [ "almond", "chestnut", "plant" - ] + ], + "value" : "🌰" }, "🍞", { + "value" : "🍞", "keywords" : [ "bread", "carbs", @@ -39019,8 +39022,7 @@ "restaurant", "toast", "wheat" - ], - "value" : "🍞" + ] }, "🥐", { @@ -39047,6 +39049,7 @@ }, "🫓", { + "value" : "🫓", "keywords" : [ "arepa", "bread", @@ -39056,17 +39059,16 @@ "lavash", "naan", "pita" - ], - "value" : "🫓" + ] }, "🥨", { - "value" : "🥨", "keywords" : [ "convoluted", "pretzel", "twisted" - ] + ], + "value" : "🥨" }, "🥯", { @@ -39132,6 +39134,7 @@ }, "🥩", { + "value" : "🥩", "keywords" : [ "chop", "cut", @@ -39140,8 +39143,7 @@ "porkchop", "red", "steak" - ], - "value" : "🥩" + ] }, "🥓", { @@ -39167,13 +39169,13 @@ }, "🍟", { + "value" : "🍟", "keywords" : [ "fast", "food", "french", "fries" - ], - "value" : "🍟" + ] }, "🍕", { @@ -39200,28 +39202,28 @@ }, "🥪", { + "value" : "🥪", "keywords" : [ "bread", "sandwich" - ], - "value" : "🥪" + ] }, "🌮", { - "value" : "🌮", "keywords" : [ "mexican", "taco" - ] + ], + "value" : "🌮" }, "🌯", { + "value" : "🌯", "keywords" : [ "burrito", "mexican", "wrap" - ], - "value" : "🌯" + ] }, "🫔", { @@ -39236,6 +39238,7 @@ }, "🥙", { + "value" : "🥙", "keywords" : [ "falafel", "flatbread", @@ -39243,8 +39246,7 @@ "gyro", "kebab", "stuffed" - ], - "value" : "🥙" + ] }, "🧆", { @@ -39284,27 +39286,28 @@ }, "🥘", { + "value" : "🥘", "keywords" : [ "casserole", "food", "paella", "pan", "shallow" - ], - "value" : "🥘" + ] }, "🍲", { - "value" : "🍲", "keywords" : [ "food", "pot", "soup", "stew" - ] + ], + "value" : "🍲" }, "🫕", { + "value" : "🫕", "keywords" : [ "cheese", "chocolate", @@ -39313,8 +39316,7 @@ "melted", "pot", "ski" - ], - "value" : "🫕" + ] }, "🥣", { @@ -39358,7 +39360,6 @@ }, "🧂", { - "value" : "🧂", "keywords" : [ "condiment", "flavor", @@ -39368,7 +39369,8 @@ "shaker", "taste", "upset" - ] + ], + "value" : "🧂" }, "🥫", { @@ -39381,12 +39383,12 @@ }, "🍱", { - "value" : "🍱", "keywords" : [ "bento", "box", "food" - ] + ], + "value" : "🍱" }, "🍘", { @@ -39409,25 +39411,24 @@ }, "🍚", { - "value" : "🍚", "keywords" : [ "cooked", "food", "rice" - ] + ], + "value" : "🍚" }, "🍛", { + "value" : "🍛", "keywords" : [ "curry", "food", "rice" - ], - "value" : "🍛" + ] }, "🍜", { - "value" : "🍜", "keywords" : [ "bowl", "chopsticks", @@ -39437,7 +39438,8 @@ "ramen", "soup", "steaming" - ] + ], + "value" : "🍜" }, "🍝", { @@ -39452,16 +39454,17 @@ }, "🍠", { - "value" : "🍠", "keywords" : [ "food", "potato", "roasted", "sweet" - ] + ], + "value" : "🍠" }, "🍢", { + "value" : "🍢", "keywords" : [ "food", "kebab", @@ -39470,8 +39473,7 @@ "seafood", "skewer", "stick" - ], - "value" : "🍢" + ] }, "🍣", { @@ -39483,13 +39485,13 @@ }, "🍤", { - "value" : "🍤", "keywords" : [ "fried", "prawn", "shrimp", "tempura" - ] + ], + "value" : "🍤" }, "🍥", { @@ -39516,7 +39518,6 @@ }, "🍡", { - "value" : "🍡", "keywords" : [ "dango", "dessert", @@ -39524,7 +39525,8 @@ "skewer", "stick", "sweet" - ] + ], + "value" : "🍡" }, "🥟", { @@ -39549,7 +39551,6 @@ }, "🥡", { - "value" : "🥡", "keywords" : [ "box", "chopsticks", @@ -39558,16 +39559,17 @@ "oyster", "pail", "takeout" - ] + ], + "value" : "🥡" }, "🦀", { - "value" : "🦀", "keywords" : [ "Cancer", "crab", "zodiac" - ] + ], + "value" : "🦀" }, "🦞", { @@ -39582,13 +39584,13 @@ }, "🦐", { - "value" : "🦐", "keywords" : [ "food", "shellfish", "shrimp", "small" - ] + ], + "value" : "🦐" }, "🦑", { @@ -39602,16 +39604,15 @@ }, "🦪", { - "value" : "🦪", "keywords" : [ "diving", "oyster", "pearl" - ] + ], + "value" : "🦪" }, "🍦", { - "value" : "🍦", "keywords" : [ "cream", "dessert", @@ -39622,7 +39623,8 @@ "serve", "soft", "sweet" - ] + ], + "value" : "🍦" }, "🍧", { @@ -39637,6 +39639,7 @@ }, "🍨", { + "value" : "🍨", "keywords" : [ "cream", "dessert", @@ -39644,8 +39647,7 @@ "ice", "restaurant", "sweet" - ], - "value" : "🍨" + ] }, "🍩", { @@ -39661,18 +39663,17 @@ }, "🍪", { + "value" : "🍪", "keywords" : [ "chip", "chocolate", "cookie", "dessert", "sweet" - ], - "value" : "🍪" + ] }, "🎂", { - "value" : "🎂", "keywords" : [ "bday", "birthday", @@ -39682,10 +39683,12 @@ "happy", "pastry", "sweet" - ] + ], + "value" : "🎂" }, "🍰", { + "value" : "🍰", "keywords" : [ "cake", "dessert", @@ -39693,8 +39696,7 @@ "shortcake", "slice", "sweet" - ], - "value" : "🍰" + ] }, "🧁", { @@ -39711,7 +39713,6 @@ }, "🥧", { - "value" : "🥧", "keywords" : [ "apple", "filling", @@ -39721,11 +39722,11 @@ "pie", "pumpkin", "slice" - ] + ], + "value" : "🥧" }, "🍫", { - "value" : "🍫", "keywords" : [ "bar", "candy", @@ -39734,10 +39735,12 @@ "halloween", "sweet", "tooth" - ] + ], + "value" : "🍫" }, "🍬", { + "value" : "🍬", "keywords" : [ "candy", "cavities", @@ -39747,8 +39750,7 @@ "sweet", "tooth", "wrapper" - ], - "value" : "🍬" + ] }, "🍭", { @@ -39764,13 +39766,13 @@ }, "🍮", { - "value" : "🍮", "keywords" : [ "custard", "dessert", "pudding", "sweet" - ] + ], + "value" : "🍮" }, "🍯", { @@ -39812,7 +39814,6 @@ }, "☕", { - "value" : "☕", "keywords" : [ "beverage", "cafe", @@ -39824,7 +39825,8 @@ "morning", "steaming", "tea" - ] + ], + "value" : "☕" }, "🫖", { @@ -39853,6 +39855,7 @@ }, "🍶", { + "value" : "🍶", "keywords" : [ "bar", "beverage", @@ -39861,23 +39864,21 @@ "drink", "restaurant", "sake" - ], - "value" : "🍶" + ] }, "🍾", { - "value" : "🍾", "keywords" : [ "bar", "bottle", "cork", "drink", "popping" - ] + ], + "value" : "🍾" }, "🍷", { - "value" : "🍷", "keywords" : [ "alcohol", "bar", @@ -39890,10 +39891,12 @@ "glass", "restaurant", "wine" - ] + ], + "value" : "🍷" }, "🍸", { + "value" : "🍸", "keywords" : [ "alcohol", "bar", @@ -39907,11 +39910,11 @@ "mad", "martini", "men" - ], - "value" : "🍸" + ] }, "🍹", { + "value" : "🍹", "keywords" : [ "alcohol", "bar", @@ -39927,11 +39930,11 @@ "tai", "tropical", "tropics" - ], - "value" : "🍹" + ] }, "🍺", { + "value" : "🍺", "keywords" : [ "alcohol", "ale", @@ -39947,12 +39950,10 @@ "pint", "stein", "summer" - ], - "value" : "🍺" + ] }, "🍻", { - "value" : "🍻", "keywords" : [ "alcohol", "bar", @@ -39965,11 +39966,11 @@ "drinking", "drinks", "mugs" - ] + ], + "value" : "🍻" }, "🥂", { - "value" : "🥂", "keywords" : [ "celebrate", "clink", @@ -39977,10 +39978,12 @@ "drink", "glass", "glasses" - ] + ], + "value" : "🥂" }, "🥃", { + "value" : "🥃", "keywords" : [ "glass", "liquor", @@ -39989,8 +39992,7 @@ "tumbler", "whiskey", "whisky" - ], - "value" : "🥃" + ] }, "🫗", { @@ -40024,6 +40026,7 @@ }, "🧋", { + "value" : "🧋", "keywords" : [ "boba", "bubble", @@ -40031,8 +40034,7 @@ "milk", "pearl", "tea" - ], - "value" : "🧋" + ] }, "🧃", { @@ -40047,11 +40049,11 @@ }, "🧉", { + "value" : "🧉", "keywords" : [ "drink", "mate" - ], - "value" : "🧉" + ] }, "🧊", { @@ -40075,7 +40077,6 @@ }, "🍽️", { - "value" : "🍽️", "keywords" : [ "cooking", "dinner", @@ -40083,11 +40084,11 @@ "fork", "knife", "plate" - ] + ], + "value" : "🍽️" }, "🍴", { - "value" : "🍴", "keywords" : [ "breakfast", "breaky", @@ -40105,16 +40106,17 @@ "restaurant", "yum", "yummy" - ] + ], + "value" : "🍴" }, "🥄", { - "value" : "🥄", "keywords" : [ "eat", "spoon", "tableware" - ] + ], + "value" : "🥄" }, "🔪", { @@ -40156,16 +40158,13 @@ "zodiac" ] } - ], - "name" : "Food & Drink", - "appleCategory" : "Food & Drink" + ] }, { - "appleCategory" : "Smileys & People", - "name" : "Smileys & Emotion", "emojis" : [ "😀", { + "value" : "😀", "keywords" : [ "cheerful", "cheery", @@ -40178,8 +40177,7 @@ "smile", "smiling", "teeth" - ], - "value" : "😀" + ] }, "😃", { @@ -40202,6 +40200,7 @@ }, "😄", { + "value" : "😄", "keywords" : [ "eye", "eyes", @@ -40215,8 +40214,7 @@ "open", "smile", "smiling" - ], - "value" : "😄" + ] }, "😁", { @@ -40237,7 +40235,6 @@ }, "😆", { - "value" : "😆", "keywords" : [ "closed", "eyes", @@ -40254,11 +40251,11 @@ "smile", "smiling", "squinting" - ] + ], + "value" : "😆" }, "😅", { - "value" : "😅", "keywords" : [ "cold", "dejected", @@ -40273,11 +40270,11 @@ "stress", "stressed", "sweat" - ] + ], + "value" : "😅" }, "🤣", { - "value" : "🤣", "keywords" : [ "crying", "face", @@ -40295,10 +40292,12 @@ "roflmao", "rolling", "tear" - ] + ], + "value" : "🤣" }, "😂", { + "value" : "😂", "keywords" : [ "crying", "face", @@ -40315,8 +40314,7 @@ "rofl", "roflmao", "tear" - ], - "value" : "😂" + ] }, "🙂", { @@ -40331,13 +40329,13 @@ }, "🙃", { - "value" : "🙃", "keywords" : [ "face", "hehe", "smile", "upside-down" - ] + ], + "value" : "🙃" }, "🫠", { @@ -40360,7 +40358,6 @@ }, "😉", { - "value" : "😉", "keywords" : [ "face", "flirt", @@ -40371,7 +40368,8 @@ "wink", "winking", "winks" - ] + ], + "value" : "😉" }, "😊", { @@ -40429,7 +40427,6 @@ }, "😍", { - "value" : "😍", "keywords" : [ "143", "bae", @@ -40445,7 +40442,8 @@ "romantic", "smile", "xoxo" - ] + ], + "value" : "😍" }, "🤩", { @@ -40464,6 +40462,7 @@ }, "😘", { + "value" : "😘", "keywords" : [ "adorbs", "bae", @@ -40481,8 +40480,7 @@ "smooch", "xoxo", "you" - ], - "value" : "😘" + ] }, "😗", { @@ -40597,7 +40595,6 @@ }, "😛", { - "value" : "😛", "keywords" : [ "awesome", "cool", @@ -40607,11 +40604,11 @@ "stuck-out", "sweet", "tongue" - ] + ], + "value" : "😛" }, "😜", { - "value" : "😜", "keywords" : [ "crazy", "epic", @@ -40629,11 +40626,11 @@ "wink", "winking", "yolo" - ] + ], + "value" : "😜" }, "🤪", { - "value" : "🤪", "keywords" : [ "crazy", "eye", @@ -40643,7 +40640,8 @@ "large", "small", "zany" - ] + ], + "value" : "🤪" }, "😝", { @@ -40666,14 +40664,14 @@ }, "🤑", { - "value" : "🤑", "keywords" : [ "face", "money", "money-mouth", "mouth", "paid" - ] + ], + "value" : "🤑" }, "🤗", { @@ -40747,18 +40745,17 @@ }, "🤫", { - "value" : "🤫", "keywords" : [ "face", "quiet", "shh", "shush", "shushing" - ] + ], + "value" : "🤫" }, "🤔", { - "value" : "🤔", "keywords" : [ "chin", "consider", @@ -40768,11 +40765,11 @@ "pondering", "thinking", "wondering" - ] + ], + "value" : "🤔" }, "🫡", { - "value" : "🫡", "keywords" : [ "face", "good", @@ -40785,10 +40782,12 @@ "sir", "troops", "yes" - ] + ], + "value" : "🫡" }, "🤐", { + "value" : "🤐", "keywords" : [ "face", "keep", @@ -40799,8 +40798,7 @@ "zip", "zipper", "zipper-mouth" - ], - "value" : "🤐" + ] }, "🤨", { @@ -40824,7 +40822,6 @@ }, "😐", { - "value" : "😐", "keywords" : [ "awkward", "blank", @@ -40842,7 +40839,8 @@ "unhappy", "unimpressed", "whatever" - ] + ], + "value" : "😐" }, "😑", { @@ -40868,6 +40866,7 @@ }, "😶", { + "value" : "😶", "keywords" : [ "awkward", "blank", @@ -40881,8 +40880,7 @@ "silence", "silent", "speechless" - ], - "value" : "😶" + ] }, "🫥", { @@ -40904,14 +40902,14 @@ }, "😶‍🌫️", { + "value" : "😶‍🌫️", "keywords" : [ "absentminded", "clouds", "face", "fog", "head" - ], - "value" : "😶‍🌫️" + ] }, "😏", { @@ -40937,6 +40935,7 @@ }, "😒", { + "value" : "😒", "keywords" : [ "...", "bored", @@ -40953,11 +40952,11 @@ "unhappy", "weird", "whatever" - ], - "value" : "😒" + ] }, "🙄", { + "value" : "🙄", "keywords" : [ "eyeroll", "eyes", @@ -40966,12 +40965,10 @@ "shade", "ugh", "whatever" - ], - "value" : "🙄" + ] }, "😬", { - "value" : "😬", "keywords" : [ "awk", "awkward", @@ -40982,11 +40979,11 @@ "grinning", "smile", "smiling" - ] + ], + "value" : "😬" }, "😮‍💨", { - "value" : "😮‍💨", "keywords" : [ "blow", "blowing", @@ -41002,7 +40999,8 @@ "smoke", "whisper", "whistle" - ] + ], + "value" : "😮‍💨" }, "🤥", { @@ -41029,6 +41027,7 @@ }, "😔", { + "value" : "😔", "keywords" : [ "awful", "bored", @@ -41041,12 +41040,10 @@ "pensive", "sad", "sucks" - ], - "value" : "😔" + ] }, "😪", { - "value" : "😪", "keywords" : [ "crying", "face", @@ -41057,7 +41054,8 @@ "sleeping", "sleepy", "tired" - ] + ], + "value" : "😪" }, "🤤", { @@ -41127,7 +41125,6 @@ }, "🤢", { - "value" : "🤢", "keywords" : [ "face", "gross", @@ -41135,10 +41132,12 @@ "nauseated", "sick", "vomit" - ] + ], + "value" : "🤢" }, "🤮", { + "value" : "🤮", "keywords" : [ "barf", "ew", @@ -41151,8 +41150,7 @@ "up", "vomit", "vomiting" - ], - "value" : "🤮" + ] }, "🤧", { @@ -41185,7 +41183,6 @@ }, "🥶", { - "value" : "🥶", "keywords" : [ "blue", "blue-faced", @@ -41196,7 +41193,8 @@ "icicles", "subzero", "teeth" - ] + ], + "value" : "🥶" }, "🥴", { @@ -41232,7 +41230,6 @@ }, "😵‍💫", { - "value" : "😵‍💫", "keywords" : [ "confused", "dizzy", @@ -41246,10 +41243,12 @@ "whoa", "woah", "woozy" - ] + ], + "value" : "😵‍💫" }, "🤯", { + "value" : "🤯", "keywords" : [ "blown", "explode", @@ -41260,8 +41259,7 @@ "no", "shocked", "way" - ], - "value" : "🤯" + ] }, "🤠", { @@ -41275,7 +41273,6 @@ }, "🥳", { - "value" : "🥳", "keywords" : [ "bday", "birthday", @@ -41289,7 +41286,8 @@ "horn", "party", "partying" - ] + ], + "value" : "🥳" }, "🥸", { @@ -41311,6 +41309,7 @@ }, "😎", { + "value" : "😎", "keywords" : [ "awesome", "beach", @@ -41328,8 +41327,7 @@ "sunglasses", "swag", "win" - ], - "value" : "😎" + ] }, "🤓", { @@ -41349,7 +41347,6 @@ }, "🧐", { - "value" : "🧐", "keywords" : [ "classy", "face", @@ -41358,7 +41355,8 @@ "rich", "stuffy", "wealthy" - ] + ], + "value" : "🧐" }, "😕", { @@ -41380,6 +41378,7 @@ }, "🫤", { + "value" : "🫤", "keywords" : [ "confused", "confusion", @@ -41396,11 +41395,11 @@ "unsure", "whatever", "wtv" - ], - "value" : "🫤" + ] }, "😟", { + "value" : "😟", "keywords" : [ "anxious", "butterflies", @@ -41413,8 +41412,7 @@ "surprised", "worried", "worry" - ], - "value" : "😟" + ] }, "🙁", { @@ -41429,13 +41427,13 @@ }, "☹️", { - "value" : "☹️", "keywords" : [ "face", "frown", "frowning", "sad" - ] + ], + "value" : "☹️" }, "😮", { @@ -41597,7 +41595,6 @@ }, "😰", { - "value" : "😰", "keywords" : [ "anxious", "blue", @@ -41611,11 +41608,11 @@ "scared", "sweat", "yikes" - ] + ], + "value" : "😰" }, "😥", { - "value" : "😥", "keywords" : [ "anxious", "call", @@ -41629,11 +41626,11 @@ "sweat", "time", "whew" - ] + ], + "value" : "😥" }, "😢", { - "value" : "😢", "keywords" : [ "awful", "cry", @@ -41645,11 +41642,11 @@ "tear", "triste", "unhappy" - ] + ], + "value" : "😢" }, "😭", { - "value" : "😭", "keywords" : [ "bawling", "cry", @@ -41661,11 +41658,11 @@ "tear", "tears", "unhappy" - ] + ], + "value" : "😭" }, "😱", { - "value" : "😱", "keywords" : [ "epic", "face", @@ -41679,11 +41676,11 @@ "shocked", "surprised", "woah" - ] + ], + "value" : "😱" }, "😖", { - "value" : "😖", "keywords" : [ "annoyed", "confounded", @@ -41695,7 +41692,8 @@ "frustrated", "mad", "sad" - ] + ], + "value" : "😖" }, "😣", { @@ -41727,7 +41725,6 @@ }, "😓", { - "value" : "😓", "keywords" : [ "close", "cold", @@ -41740,10 +41737,12 @@ "scared", "sweat", "yikes" - ] + ], + "value" : "😓" }, "😩", { + "value" : "😩", "keywords" : [ "crying", "face", @@ -41757,12 +41756,10 @@ "tired", "unhappy", "weary" - ], - "value" : "😩" + ] }, "😫", { - "value" : "😫", "keywords" : [ "cost", "face", @@ -41771,7 +41768,8 @@ "sad", "sneeze", "tired" - ] + ], + "value" : "😫" }, "🥱", { @@ -41794,7 +41792,6 @@ }, "😤", { - "value" : "😤", "keywords" : [ "anger", "angry", @@ -41810,10 +41807,12 @@ "triumph", "unhappy", "won" - ] + ], + "value" : "😤" }, "😡", { + "value" : "😡", "keywords" : [ "anger", "angry", @@ -41828,12 +41827,10 @@ "shade", "unhappy", "upset" - ], - "value" : "😡" + ] }, "😠", { - "value" : "😠", "keywords" : [ "anger", "angry", @@ -41847,7 +41844,8 @@ "shade", "unhappy", "upset" - ] + ], + "value" : "😠" }, "🤬", { @@ -41866,7 +41864,6 @@ }, "😈", { - "value" : "😈", "keywords" : [ "demon", "devil", @@ -41881,7 +41878,8 @@ "smile", "smiling", "tale" - ] + ], + "value" : "😈" }, "👿", { @@ -41905,7 +41903,6 @@ }, "💀", { - "value" : "💀", "keywords" : [ "body", "dead", @@ -41919,11 +41916,11 @@ "skull", "tale", "yolo" - ] + ], + "value" : "💀" }, "☠️", { - "value" : "☠️", "keywords" : [ "bone", "crossbones", @@ -41932,7 +41929,8 @@ "face", "monster", "skull" - ] + ], + "value" : "☠️" }, "💩", { @@ -41966,7 +41964,6 @@ }, "👹", { - "value" : "👹", "keywords" : [ "creature", "devil", @@ -41979,11 +41976,11 @@ "ogre", "scary", "tale" - ] + ], + "value" : "👹" }, "👺", { - "value" : "👺", "keywords" : [ "angry", "creature", @@ -41996,10 +41993,12 @@ "mean", "monster", "tale" - ] + ], + "value" : "👺" }, "👻", { + "value" : "👻", "keywords" : [ "boo", "creature", @@ -42015,11 +42014,11 @@ "scary", "silly", "tale" - ], - "value" : "👻" + ] }, "👽", { + "value" : "👽", "keywords" : [ "alien", "creature", @@ -42032,12 +42031,10 @@ "space", "tale", "ufo" - ], - "value" : "👽" + ] }, "👾", { - "value" : "👾", "keywords" : [ "alien", "creature", @@ -42054,7 +42051,8 @@ "space", "tale", "ufo" - ] + ], + "value" : "👾" }, "🤖", { @@ -42067,7 +42065,6 @@ }, "😺", { - "value" : "😺", "keywords" : [ "animal", "cat", @@ -42077,7 +42074,8 @@ "open", "smile", "smiling" - ] + ], + "value" : "😺" }, "😸", { @@ -42111,6 +42109,7 @@ }, "😻", { + "value" : "😻", "keywords" : [ "animal", "cat", @@ -42121,12 +42120,10 @@ "love", "smile", "smiling" - ], - "value" : "😻" + ] }, "😼", { - "value" : "😼", "keywords" : [ "animal", "cat", @@ -42134,10 +42131,12 @@ "ironic", "smile", "wry" - ] + ], + "value" : "😼" }, "😽", { + "value" : "😽", "keywords" : [ "animal", "cat", @@ -42147,8 +42146,7 @@ "face", "kiss", "kissing" - ], - "value" : "😽" + ] }, "🙀", { @@ -42177,13 +42175,13 @@ }, "😾", { - "value" : "😾", "keywords" : [ "animal", "cat", "face", "pouting" - ] + ], + "value" : "😾" }, "🙈", { @@ -42208,6 +42206,7 @@ }, "🙉", { + "value" : "🙉", "keywords" : [ "animal", "ears", @@ -42224,12 +42223,10 @@ "secret", "shh", "tmi" - ], - "value" : "🙉" + ] }, "🙊", { - "value" : "🙊", "keywords" : [ "animal", "evil", @@ -42245,10 +42242,12 @@ "secret", "speak", "stealth" - ] + ], + "value" : "🙊" }, "💋", { + "value" : "💋", "keywords" : [ "dating", "emotion", @@ -42259,8 +42258,7 @@ "mark", "romance", "sexy" - ], - "value" : "💋" + ] }, "💌", { @@ -42293,7 +42291,6 @@ }, "💝", { - "value" : "💝", "keywords" : [ "143", "anniversary", @@ -42304,11 +42301,11 @@ "ribbon", "valentine", "xoxo" - ] + ], + "value" : "💝" }, "💖", { - "value" : "💖", "keywords" : [ "143", "emotion", @@ -42322,7 +42319,8 @@ "sparkle", "sparkling", "xoxo" - ] + ], + "value" : "💖" }, "💗", { @@ -42344,6 +42342,7 @@ }, "💓", { + "value" : "💓", "keywords" : [ "143", "beating", @@ -42355,8 +42354,7 @@ "love", "pulsating", "pulse" - ], - "value" : "💓" + ] }, "💞", { @@ -42416,7 +42414,6 @@ }, "💔", { - "value" : "💔", "keywords" : [ "break", "broken", @@ -42426,10 +42423,12 @@ "heartbroken", "lonely", "sad" - ] + ], + "value" : "💔" }, "❤️‍🔥", { + "value" : "❤️‍🔥", "keywords" : [ "burn", "fire", @@ -42437,11 +42436,11 @@ "love", "lust", "sacred" - ], - "value" : "❤️‍🔥" + ] }, "❤️‍🩹", { + "value" : "❤️‍🩹", "keywords" : [ "healthier", "heart", @@ -42450,27 +42449,26 @@ "recovering", "recuperating", "well" - ], - "value" : "❤️‍🩹" + ] }, "❤️", { - "value" : "❤️", "keywords" : [ "emotion", "heart", "love", "red" - ] + ], + "value" : "❤️" }, "🧡", { + "value" : "🧡", "keywords" : [ "143", "heart", "orange" - ], - "value" : "🧡" + ] }, "💛", { @@ -42487,6 +42485,7 @@ }, "💚", { + "value" : "💚", "keywords" : [ "143", "emotion", @@ -42495,11 +42494,11 @@ "ily", "love", "romantic" - ], - "value" : "💚" + ] }, "💙", { + "value" : "💙", "keywords" : [ "143", "blue", @@ -42508,8 +42507,7 @@ "ily", "love", "romance" - ], - "value" : "💙" + ] }, "💜", { @@ -42526,31 +42524,31 @@ }, "🤎", { - "value" : "🤎", "keywords" : [ "143", "brown", "heart" - ] + ], + "value" : "🤎" }, "🖤", { + "value" : "🖤", "keywords" : [ "black", "evil", "heart", "wicked" - ], - "value" : "🖤" + ] }, "🤍", { + "value" : "🤍", "keywords" : [ "143", "heart", "white" - ], - "value" : "🤍" + ] }, "💯", { @@ -42588,6 +42586,7 @@ }, "💥", { + "value" : "💥", "keywords" : [ "bomb", "boom", @@ -42595,11 +42594,11 @@ "collision", "comic", "explode" - ], - "value" : "💥" + ] }, "💫", { + "value" : "💫", "keywords" : [ "comic", "dizzy", @@ -42607,8 +42606,7 @@ "shooting", "star", "stars" - ], - "value" : "💫" + ] }, "💦", { @@ -42648,14 +42646,13 @@ }, "🕳️", { - "value" : "🕳️", "keywords" : [ "hole" - ] + ], + "value" : "🕳️" }, "💣", { - "value" : "💣", "keywords" : [ "bomb", "boom", @@ -42663,10 +42660,12 @@ "dangerous", "explosion", "hot" - ] + ], + "value" : "💣" }, "💬", { + "value" : "💬", "keywords" : [ "balloon", "bubble", @@ -42678,33 +42677,33 @@ "talk", "text", "typing" - ], - "value" : "💬" + ] }, "👁️‍🗨️", { - "value" : "👁️‍🗨️", "keywords" : [ "balloon", "bubble", "eye", "speech", "witness" - ] + ], + "value" : "👁️‍🗨️" }, "🗨️", { - "value" : "🗨️", "keywords" : [ "balloon", "bubble", "dialog", "left", "speech" - ] + ], + "value" : "🗨️" }, "🗯️", { + "value" : "🗯️", "keywords" : [ "anger", "angry", @@ -42712,11 +42711,11 @@ "bubble", "mad", "right" - ], - "value" : "🗯️" + ] }, "💭", { + "value" : "💭", "keywords" : [ "balloon", "bubble", @@ -42733,11 +42732,11 @@ "think", "thoughts", "wonder" - ], - "value" : "💭" + ] }, "💤", { + "value" : "💤", "keywords" : [ "comic", "good", @@ -42748,9 +42747,10 @@ "sleepy", "tired", "zzz" - ], - "value" : "💤" + ] } - ] + ], + "appleCategory" : "smileysAndPeople", + "name" : "Smileys & Emotion" } ] \ No newline at end of file diff --git a/Sources/EmojiKit/Resources/emojis_v15.0.json b/Sources/EmojiKit/Resources/emojis_v15.0.json index 5e4578a..484b7d1 100644 --- a/Sources/EmojiKit/Resources/emojis_v15.0.json +++ b/Sources/EmojiKit/Resources/emojis_v15.0.json @@ -1,3716 +1,43258 @@ [ { + "appleCategory" : "flags", "name" : "Flags", - "values" : [ + "emojis" : [ "🏁", + { + "keywords" : [ + "checkered", + "chequered", + "finish", + "flag", + "flags", + "game", + "race", + "racing", + "sport", + "win" + ], + "value" : "🏁" + }, "🚩", + { + "value" : "🚩", + "keywords" : [ + "construction", + "flag", + "golf", + "post", + "triangular" + ] + }, "🎌", + { + "value" : "🎌", + "keywords" : [ + "celebration", + "cross", + "crossed", + "flags", + "Japanese" + ] + }, "🏴", + { + "value" : "🏴", + "keywords" : [ + "black", + "flag", + "waving" + ] + }, "🏳️", + { + "value" : "🏳️", + "keywords" : [ + "flag", + "waving", + "white" + ] + }, "🏳️‍🌈", + { + "value" : "🏳️‍🌈", + "keywords" : [ + "bisexual", + "flag", + "gay", + "genderqueer", + "glbt", + "glbtq", + "lesbian", + "lgbt", + "lgbtq", + "lgbtqia", + "pride", + "queer", + "rainbow", + "trans", + "transgender" + ] + }, "🏳️‍⚧️", + { + "value" : "🏳️‍⚧️", + "keywords" : [ + "blue", + "flag", + "light", + "pink", + "transgender", + "white" + ] + }, "🏴‍☠️", + { + "value" : "🏴‍☠️", + "keywords" : [ + "flag", + "Jolly", + "pirate", + "plunder", + "Roger", + "treasure" + ] + }, "🇦🇨", + { + "keywords" : [ + "flag", + "flag: Ascension Island" + ], + "value" : "🇦🇨" + }, "🇦🇩", + { + "keywords" : [ + "flag", + "flag: Andorra" + ], + "value" : "🇦🇩" + }, "🇦🇪", + { + "keywords" : [ + "flag", + "flag: United Arab Emirates" + ], + "value" : "🇦🇪" + }, "🇦🇫", + { + "value" : "🇦🇫", + "keywords" : [ + "flag", + "flag: Afghanistan" + ] + }, "🇦🇬", + { + "keywords" : [ + "flag", + "flag: Antigua&Barbuda" + ], + "value" : "🇦🇬" + }, "🇦🇮", + { + "keywords" : [ + "flag", + "flag: Anguilla" + ], + "value" : "🇦🇮" + }, "🇦🇱", + { + "keywords" : [ + "flag", + "flag: Albania" + ], + "value" : "🇦🇱" + }, "🇦🇲", + { + "keywords" : [ + "flag", + "flag: Armenia" + ], + "value" : "🇦🇲" + }, "🇦🇴", + { + "value" : "🇦🇴", + "keywords" : [ + "flag", + "flag: Angola" + ] + }, "🇦🇶", + { + "keywords" : [ + "flag", + "flag: Antarctica" + ], + "value" : "🇦🇶" + }, "🇦🇷", + { + "keywords" : [ + "flag", + "flag: Argentina" + ], + "value" : "🇦🇷" + }, "🇦🇸", + { + "value" : "🇦🇸", + "keywords" : [ + "flag", + "flag: American Samoa" + ] + }, "🇦🇹", + { + "value" : "🇦🇹", + "keywords" : [ + "flag", + "flag: Austria" + ] + }, "🇦🇺", + { + "keywords" : [ + "flag", + "flag: Australia" + ], + "value" : "🇦🇺" + }, "🇦🇼", + { + "keywords" : [ + "flag", + "flag: Aruba" + ], + "value" : "🇦🇼" + }, "🇦🇽", + { + "keywords" : [ + "flag", + "flag:Åland Islands" + ], + "value" : "🇦🇽" + }, "🇦🇿", + { + "value" : "🇦🇿", + "keywords" : [ + "flag", + "flag: Azerbaijan" + ] + }, "🇧🇦", + { + "value" : "🇧🇦", + "keywords" : [ + "flag", + "flag: Bosnia&Herzegovina" + ] + }, "🇧🇧", + { + "value" : "🇧🇧", + "keywords" : [ + "flag", + "flag: Barbados" + ] + }, "🇧🇩", + { + "value" : "🇧🇩", + "keywords" : [ + "flag", + "flag: Bangladesh" + ] + }, "🇧🇪", + { + "value" : "🇧🇪", + "keywords" : [ + "flag", + "flag: Belgium" + ] + }, "🇧🇫", + { + "value" : "🇧🇫", + "keywords" : [ + "flag", + "flag: Burkina Faso" + ] + }, "🇧🇬", + { + "value" : "🇧🇬", + "keywords" : [ + "flag", + "flag: Bulgaria" + ] + }, "🇧🇭", + { + "keywords" : [ + "flag", + "flag: Bahrain" + ], + "value" : "🇧🇭" + }, "🇧🇮", + { + "value" : "🇧🇮", + "keywords" : [ + "flag", + "flag: Burundi" + ] + }, "🇧🇯", + { + "keywords" : [ + "flag", + "flag: Benin" + ], + "value" : "🇧🇯" + }, "🇧🇱", + { + "keywords" : [ + "flag", + "flag: St. Barthélemy" + ], + "value" : "🇧🇱" + }, "🇧🇲", + { + "value" : "🇧🇲", + "keywords" : [ + "flag", + "flag: Bermuda" + ] + }, "🇧🇳", + { + "value" : "🇧🇳", + "keywords" : [ + "flag", + "flag: Brunei" + ] + }, "🇧🇴", + { + "keywords" : [ + "flag", + "flag: Bolivia" + ], + "value" : "🇧🇴" + }, "🇧🇶", + { + "value" : "🇧🇶", + "keywords" : [ + "flag", + "flag: Caribbean Netherlands" + ] + }, "🇧🇷", + { + "value" : "🇧🇷", + "keywords" : [ + "flag", + "flag: Brazil" + ] + }, "🇧🇸", + { + "value" : "🇧🇸", + "keywords" : [ + "flag", + "flag: Bahamas" + ] + }, "🇧🇹", + { + "value" : "🇧🇹", + "keywords" : [ + "flag", + "flag: Bhutan" + ] + }, "🇧🇻", + { + "keywords" : [ + "flag", + "flag: Bouvet Island" + ], + "value" : "🇧🇻" + }, "🇧🇼", + { + "keywords" : [ + "flag", + "flag: Botswana" + ], + "value" : "🇧🇼" + }, "🇧🇾", + { + "value" : "🇧🇾", + "keywords" : [ + "flag", + "flag: Belarus" + ] + }, "🇧🇿", + { + "value" : "🇧🇿", + "keywords" : [ + "flag", + "flag: Belize" + ] + }, "🇨🇦", + { + "value" : "🇨🇦", + "keywords" : [ + "flag", + "flag: Canada" + ] + }, "🇨🇨", + { + "keywords" : [ + "flag", + "flag: Cocos (Keeling) Islands" + ], + "value" : "🇨🇨" + }, "🇨🇩", + { + "value" : "🇨🇩", + "keywords" : [ + "flag", + "flag: Congo - Kinshasa" + ] + }, "🇨🇫", + { + "value" : "🇨🇫", + "keywords" : [ + "flag", + "flag: Central African Republic" + ] + }, "🇨🇬", + { + "value" : "🇨🇬", + "keywords" : [ + "flag", + "flag: Congo - Brazzaville" + ] + }, "🇨🇭", + { + "value" : "🇨🇭", + "keywords" : [ + "flag", + "flag: Switzerland" + ] + }, "🇨🇮", + { + "value" : "🇨🇮", + "keywords" : [ + "flag", + "flag: Côte d’Ivoire" + ] + }, "🇨🇰", + { + "value" : "🇨🇰", + "keywords" : [ + "flag", + "flag: Cook Islands" + ] + }, "🇨🇱", + { + "value" : "🇨🇱", + "keywords" : [ + "flag", + "flag: Chile" + ] + }, "🇨🇲", + { + "value" : "🇨🇲", + "keywords" : [ + "flag", + "flag: Cameroon" + ] + }, "🇨🇳", + { + "keywords" : [ + "flag", + "flag: China" + ], + "value" : "🇨🇳" + }, "🇨🇴", + { + "value" : "🇨🇴", + "keywords" : [ + "flag", + "flag: Colombia" + ] + }, "🇨🇵", + { + "keywords" : [ + "flag", + "flag: Clipperton Island" + ], + "value" : "🇨🇵" + }, "🇨🇷", + { + "value" : "🇨🇷", + "keywords" : [ + "flag", + "flag: Costa Rica" + ] + }, "🇨🇺", + { + "value" : "🇨🇺", + "keywords" : [ + "flag", + "flag: Cuba" + ] + }, "🇨🇻", + { + "value" : "🇨🇻", + "keywords" : [ + "flag", + "flag: Cape Verde" + ] + }, "🇨🇼", + { + "keywords" : [ + "flag", + "flag: Curaçao" + ], + "value" : "🇨🇼" + }, "🇨🇽", + { + "value" : "🇨🇽", + "keywords" : [ + "flag", + "flag: Christmas Island" + ] + }, "🇨🇾", + { + "keywords" : [ + "flag", + "flag: Cyprus" + ], + "value" : "🇨🇾" + }, "🇨🇿", + { + "keywords" : [ + "flag", + "flag: Czechia" + ], + "value" : "🇨🇿" + }, "🇩🇪", + { + "keywords" : [ + "flag", + "flag: Germany" + ], + "value" : "🇩🇪" + }, "🇩🇬", + { + "keywords" : [ + "flag", + "flag: Diego Garcia" + ], + "value" : "🇩🇬" + }, "🇩🇯", + { + "keywords" : [ + "flag", + "flag: Djibouti" + ], + "value" : "🇩🇯" + }, "🇩🇰", + { + "value" : "🇩🇰", + "keywords" : [ + "flag", + "flag: Denmark" + ] + }, "🇩🇲", + { + "keywords" : [ + "flag", + "flag: Dominica" + ], + "value" : "🇩🇲" + }, "🇩🇴", + { + "value" : "🇩🇴", + "keywords" : [ + "flag", + "flag: Dominican Republic" + ] + }, "🇩🇿", + { + "value" : "🇩🇿", + "keywords" : [ + "flag", + "flag: Algeria" + ] + }, "🇪🇦", + { + "value" : "🇪🇦", + "keywords" : [ + "flag", + "flag: Ceuta&Melilla" + ] + }, "🇪🇨", + { + "keywords" : [ + "flag", + "flag: Ecuador" + ], + "value" : "🇪🇨" + }, "🇪🇪", + { + "value" : "🇪🇪", + "keywords" : [ + "flag", + "flag: Estonia" + ] + }, "🇪🇬", + { + "value" : "🇪🇬", + "keywords" : [ + "flag", + "flag: Egypt" + ] + }, "🇪🇭", + { + "value" : "🇪🇭", + "keywords" : [ + "flag", + "flag: Western Sahara" + ] + }, "🇪🇷", + { + "value" : "🇪🇷", + "keywords" : [ + "flag", + "flag: Eritrea" + ] + }, "🇪🇸", + { + "keywords" : [ + "flag", + "flag: Spain" + ], + "value" : "🇪🇸" + }, "🇪🇹", + { + "keywords" : [ + "flag", + "flag: Ethiopia" + ], + "value" : "🇪🇹" + }, "🇪🇺", + { + "keywords" : [ + "flag", + "flag: European Union" + ], + "value" : "🇪🇺" + }, "🇫🇮", + { + "value" : "🇫🇮", + "keywords" : [ + "flag", + "flag: Finland" + ] + }, "🇫🇯", + { + "value" : "🇫🇯", + "keywords" : [ + "flag", + "flag: Fiji" + ] + }, "🇫🇰", + { + "value" : "🇫🇰", + "keywords" : [ + "flag", + "flag: Falkland Islands" + ] + }, "🇫🇲", + { + "keywords" : [ + "flag", + "flag: Micronesia" + ], + "value" : "🇫🇲" + }, "🇫🇴", + { + "value" : "🇫🇴", + "keywords" : [ + "flag", + "flag: Faroe Islands" + ] + }, "🇫🇷", + { + "value" : "🇫🇷", + "keywords" : [ + "flag", + "flag: France" + ] + }, "🇬🇦", + { + "value" : "🇬🇦", + "keywords" : [ + "flag", + "flag: Gabon" + ] + }, "🇬🇧", + { + "keywords" : [ + "flag", + "flag: United Kingdom" + ], + "value" : "🇬🇧" + }, "🇬🇩", + { + "value" : "🇬🇩", + "keywords" : [ + "flag", + "flag: Grenada" + ] + }, "🇬🇪", + { + "keywords" : [ + "flag", + "flag: Georgia" + ], + "value" : "🇬🇪" + }, "🇬🇫", + { + "keywords" : [ + "flag", + "flag: French Guiana" + ], + "value" : "🇬🇫" + }, "🇬🇬", + { + "value" : "🇬🇬", + "keywords" : [ + "flag", + "flag: Guernsey" + ] + }, "🇬🇭", + { + "value" : "🇬🇭", + "keywords" : [ + "flag", + "flag: Ghana" + ] + }, "🇬🇮", + { + "value" : "🇬🇮", + "keywords" : [ + "flag", + "flag: Gibraltar" + ] + }, "🇬🇱", + { + "value" : "🇬🇱", + "keywords" : [ + "flag", + "flag: Greenland" + ] + }, "🇬🇲", + { + "value" : "🇬🇲", + "keywords" : [ + "flag", + "flag: Gambia" + ] + }, "🇬🇳", + { + "value" : "🇬🇳", + "keywords" : [ + "flag", + "flag: Guinea" + ] + }, "🇬🇵", + { + "value" : "🇬🇵", + "keywords" : [ + "flag", + "flag: Guadeloupe" + ] + }, "🇬🇶", + { + "value" : "🇬🇶", + "keywords" : [ + "flag", + "flag: Equatorial Guinea" + ] + }, "🇬🇷", + { + "keywords" : [ + "flag", + "flag: Greece" + ], + "value" : "🇬🇷" + }, "🇬🇸", + { + "value" : "🇬🇸", + "keywords" : [ + "flag", + "flag: South Georgia&South Sandwich Islands" + ] + }, "🇬🇹", + { + "value" : "🇬🇹", + "keywords" : [ + "flag", + "flag: Guatemala" + ] + }, "🇬🇺", + { + "keywords" : [ + "flag", + "flag: Guam" + ], + "value" : "🇬🇺" + }, "🇬🇼", + { + "keywords" : [ + "flag", + "flag: Guinea-Bissau" + ], + "value" : "🇬🇼" + }, "🇬🇾", + { + "value" : "🇬🇾", + "keywords" : [ + "flag", + "flag: Guyana" + ] + }, "🇭🇰", + { + "value" : "🇭🇰", + "keywords" : [ + "flag", + "flag: Hong Kong SAR China" + ] + }, "🇭🇲", + { + "keywords" : [ + "flag", + "flag: Heard&McDonald Islands" + ], + "value" : "🇭🇲" + }, "🇭🇳", + { + "value" : "🇭🇳", + "keywords" : [ + "flag", + "flag: Honduras" + ] + }, "🇭🇷", + { + "value" : "🇭🇷", + "keywords" : [ + "flag", + "flag: Croatia" + ] + }, "🇭🇹", + { + "keywords" : [ + "flag", + "flag: Haiti" + ], + "value" : "🇭🇹" + }, "🇭🇺", + { + "keywords" : [ + "flag", + "flag: Hungary" + ], + "value" : "🇭🇺" + }, "🇮🇨", + { + "value" : "🇮🇨", + "keywords" : [ + "flag", + "flag: Canary Islands" + ] + }, "🇮🇩", + { + "value" : "🇮🇩", + "keywords" : [ + "flag", + "flag: Indonesia" + ] + }, "🇮🇪", + { + "value" : "🇮🇪", + "keywords" : [ + "flag", + "flag: Ireland" + ] + }, "🇮🇱", + { + "keywords" : [ + "flag", + "flag: Israel" + ], + "value" : "🇮🇱" + }, "🇮🇲", + { + "keywords" : [ + "flag", + "flag: Isle of Man" + ], + "value" : "🇮🇲" + }, "🇮🇳", + { + "value" : "🇮🇳", + "keywords" : [ + "flag", + "flag: India" + ] + }, "🇮🇴", + { + "keywords" : [ + "flag", + "flag: British Indian Ocean Territory" + ], + "value" : "🇮🇴" + }, "🇮🇶", + { + "value" : "🇮🇶", + "keywords" : [ + "flag", + "flag: Iraq" + ] + }, "🇮🇷", + { + "keywords" : [ + "flag", + "flag: Iran" + ], + "value" : "🇮🇷" + }, "🇮🇸", + { + "keywords" : [ + "flag", + "flag: Iceland" + ], + "value" : "🇮🇸" + }, "🇮🇹", + { + "value" : "🇮🇹", + "keywords" : [ + "flag", + "flag: Italy" + ] + }, "🇯🇪", + { + "value" : "🇯🇪", + "keywords" : [ + "flag", + "flag: Jersey" + ] + }, "🇯🇲", + { + "value" : "🇯🇲", + "keywords" : [ + "flag", + "flag: Jamaica" + ] + }, "🇯🇴", + { + "keywords" : [ + "flag", + "flag: Jordan" + ], + "value" : "🇯🇴" + }, "🇯🇵", + { + "keywords" : [ + "flag", + "flag: Japan" + ], + "value" : "🇯🇵" + }, "🇰🇪", + { + "value" : "🇰🇪", + "keywords" : [ + "flag", + "flag: Kenya" + ] + }, "🇰🇬", + { + "value" : "🇰🇬", + "keywords" : [ + "flag", + "flag: Kyrgyzstan" + ] + }, "🇰🇭", + { + "keywords" : [ + "flag", + "flag: Cambodia" + ], + "value" : "🇰🇭" + }, "🇰🇮", + { + "keywords" : [ + "flag", + "flag: Kiribati" + ], + "value" : "🇰🇮" + }, "🇰🇲", + { + "value" : "🇰🇲", + "keywords" : [ + "flag", + "flag: Comoros" + ] + }, "🇰🇳", + { + "value" : "🇰🇳", + "keywords" : [ + "flag", + "flag: St. Kitts&Nevis" + ] + }, "🇰🇵", + { + "value" : "🇰🇵", + "keywords" : [ + "flag", + "flag: North Korea" + ] + }, "🇰🇷", + { + "value" : "🇰🇷", + "keywords" : [ + "flag", + "flag: South Korea" + ] + }, "🇰🇼", + { + "value" : "🇰🇼", + "keywords" : [ + "flag", + "flag: Kuwait" + ] + }, "🇰🇾", + { + "keywords" : [ + "flag", + "flag: Cayman Islands" + ], + "value" : "🇰🇾" + }, "🇰🇿", + { + "value" : "🇰🇿", + "keywords" : [ + "flag", + "flag: Kazakhstan" + ] + }, "🇱🇦", + { + "value" : "🇱🇦", + "keywords" : [ + "flag", + "flag: Laos" + ] + }, "🇱🇧", + { + "value" : "🇱🇧", + "keywords" : [ + "flag", + "flag: Lebanon" + ] + }, "🇱🇨", + { + "value" : "🇱🇨", + "keywords" : [ + "flag", + "flag: St. Lucia" + ] + }, "🇱🇮", + { + "keywords" : [ + "flag", + "flag: Liechtenstein" + ], + "value" : "🇱🇮" + }, "🇱🇰", + { + "keywords" : [ + "flag", + "flag: Sri Lanka" + ], + "value" : "🇱🇰" + }, "🇱🇷", + { + "keywords" : [ + "flag", + "flag: Liberia" + ], + "value" : "🇱🇷" + }, "🇱🇸", + { + "keywords" : [ + "flag", + "flag: Lesotho" + ], + "value" : "🇱🇸" + }, "🇱🇹", + { + "keywords" : [ + "flag", + "flag: Lithuania" + ], + "value" : "🇱🇹" + }, "🇱🇺", + { + "value" : "🇱🇺", + "keywords" : [ + "flag", + "flag: Luxembourg" + ] + }, "🇱🇻", + { + "value" : "🇱🇻", + "keywords" : [ + "flag", + "flag: Latvia" + ] + }, "🇱🇾", + { + "value" : "🇱🇾", + "keywords" : [ + "flag", + "flag: Libya" + ] + }, "🇲🇦", + { + "keywords" : [ + "flag", + "flag: Morocco" + ], + "value" : "🇲🇦" + }, "🇲🇨", + { + "keywords" : [ + "flag", + "flag: Monaco" + ], + "value" : "🇲🇨" + }, "🇲🇩", + { + "value" : "🇲🇩", + "keywords" : [ + "flag", + "flag: Moldova" + ] + }, "🇲🇪", + { + "keywords" : [ + "flag", + "flag: Montenegro" + ], + "value" : "🇲🇪" + }, "🇲🇫", + { + "keywords" : [ + "flag", + "flag: St. Martin" + ], + "value" : "🇲🇫" + }, "🇲🇬", + { + "value" : "🇲🇬", + "keywords" : [ + "flag", + "flag: Madagascar" + ] + }, "🇲🇭", + { + "keywords" : [ + "flag", + "flag: Marshall Islands" + ], + "value" : "🇲🇭" + }, "🇲🇰", + { + "value" : "🇲🇰", + "keywords" : [ + "flag", + "flag: North Macedonia" + ] + }, "🇲🇱", + { + "value" : "🇲🇱", + "keywords" : [ + "flag", + "flag: Mali" + ] + }, "🇲🇲", + { + "value" : "🇲🇲", + "keywords" : [ + "flag", + "flag: Myanmar (Burma)" + ] + }, "🇲🇳", + { + "value" : "🇲🇳", + "keywords" : [ + "flag", + "flag: Mongolia" + ] + }, "🇲🇴", + { + "value" : "🇲🇴", + "keywords" : [ + "flag", + "flag: Macao SAR China" + ] + }, "🇲🇵", + { + "keywords" : [ + "flag", + "flag: Northern Mariana Islands" + ], + "value" : "🇲🇵" + }, "🇲🇶", + { + "keywords" : [ + "flag", + "flag: Martinique" + ], + "value" : "🇲🇶" + }, "🇲🇷", + { + "value" : "🇲🇷", + "keywords" : [ + "flag", + "flag: Mauritania" + ] + }, "🇲🇸", + { + "value" : "🇲🇸", + "keywords" : [ + "flag", + "flag: Montserrat" + ] + }, "🇲🇹", + { + "value" : "🇲🇹", + "keywords" : [ + "flag", + "flag: Malta" + ] + }, "🇲🇺", + { + "keywords" : [ + "flag", + "flag: Mauritius" + ], + "value" : "🇲🇺" + }, "🇲🇻", + { + "value" : "🇲🇻", + "keywords" : [ + "flag", + "flag: Maldives" + ] + }, "🇲🇼", + { + "value" : "🇲🇼", + "keywords" : [ + "flag", + "flag: Malawi" + ] + }, "🇲🇽", + { + "keywords" : [ + "flag", + "flag: Mexico" + ], + "value" : "🇲🇽" + }, "🇲🇾", + { + "keywords" : [ + "flag", + "flag: Malaysia" + ], + "value" : "🇲🇾" + }, "🇲🇿", + { + "keywords" : [ + "flag", + "flag: Mozambique" + ], + "value" : "🇲🇿" + }, "🇳🇦", + { + "value" : "🇳🇦", + "keywords" : [ + "flag", + "flag: Namibia" + ] + }, "🇳🇨", + { + "keywords" : [ + "flag", + "flag: New Caledonia" + ], + "value" : "🇳🇨" + }, "🇳🇪", + { + "value" : "🇳🇪", + "keywords" : [ + "flag", + "flag: Niger" + ] + }, "🇳🇫", + { + "value" : "🇳🇫", + "keywords" : [ + "flag", + "flag: Norfolk Island" + ] + }, "🇳🇬", + { + "value" : "🇳🇬", + "keywords" : [ + "flag", + "flag: Nigeria" + ] + }, "🇳🇮", + { + "value" : "🇳🇮", + "keywords" : [ + "flag", + "flag: Nicaragua" + ] + }, "🇳🇱", + { + "keywords" : [ + "flag", + "flag: Netherlands" + ], + "value" : "🇳🇱" + }, "🇳🇴", + { + "value" : "🇳🇴", + "keywords" : [ + "flag", + "flag: Norway" + ] + }, "🇳🇵", + { + "keywords" : [ + "flag", + "flag: Nepal" + ], + "value" : "🇳🇵" + }, "🇳🇷", + { + "keywords" : [ + "flag", + "flag: Nauru" + ], + "value" : "🇳🇷" + }, "🇳🇺", + { + "keywords" : [ + "flag", + "flag: Niue" + ], + "value" : "🇳🇺" + }, "🇳🇿", + { + "value" : "🇳🇿", + "keywords" : [ + "flag", + "flag: New Zealand" + ] + }, "🇴🇲", + { + "value" : "🇴🇲", + "keywords" : [ + "flag", + "flag: Oman" + ] + }, "🇵🇦", + { + "keywords" : [ + "flag", + "flag: Panama" + ], + "value" : "🇵🇦" + }, "🇵🇪", + { + "value" : "🇵🇪", + "keywords" : [ + "flag", + "flag: Peru" + ] + }, "🇵🇫", + { + "value" : "🇵🇫", + "keywords" : [ + "flag", + "flag: French Polynesia" + ] + }, "🇵🇬", + { + "value" : "🇵🇬", + "keywords" : [ + "flag", + "flag: Papua New Guinea" + ] + }, "🇵🇭", + { + "keywords" : [ + "flag", + "flag: Philippines" + ], + "value" : "🇵🇭" + }, "🇵🇰", + { + "keywords" : [ + "flag", + "flag: Pakistan" + ], + "value" : "🇵🇰" + }, "🇵🇱", + { + "value" : "🇵🇱", + "keywords" : [ + "flag", + "flag: Poland" + ] + }, "🇵🇲", + { + "value" : "🇵🇲", + "keywords" : [ + "flag", + "flag: St. Pierre&Miquelon" + ] + }, "🇵🇳", + { + "keywords" : [ + "flag", + "flag: Pitcairn Islands" + ], + "value" : "🇵🇳" + }, "🇵🇷", + { + "value" : "🇵🇷", + "keywords" : [ + "flag", + "flag: Puerto Rico" + ] + }, "🇵🇸", + { + "keywords" : [ + "flag", + "flag: Palestinian Territories" + ], + "value" : "🇵🇸" + }, "🇵🇹", + { + "value" : "🇵🇹", + "keywords" : [ + "flag", + "flag: Portugal" + ] + }, "🇵🇼", + { + "keywords" : [ + "flag", + "flag: Palau" + ], + "value" : "🇵🇼" + }, "🇵🇾", + { + "value" : "🇵🇾", + "keywords" : [ + "flag", + "flag: Paraguay" + ] + }, "🇶🇦", + { + "keywords" : [ + "flag", + "flag: Qatar" + ], + "value" : "🇶🇦" + }, "🇷🇪", + { + "value" : "🇷🇪", + "keywords" : [ + "flag", + "flag: Réunion" + ] + }, "🇷🇴", + { + "value" : "🇷🇴", + "keywords" : [ + "flag", + "flag: Romania" + ] + }, "🇷🇸", + { + "value" : "🇷🇸", + "keywords" : [ + "flag", + "flag: Serbia" + ] + }, "🇷🇺", + { + "value" : "🇷🇺", + "keywords" : [ + "flag", + "flag: Russia" + ] + }, "🇷🇼", + { + "keywords" : [ + "flag", + "flag: Rwanda" + ], + "value" : "🇷🇼" + }, "🇸🇦", + { + "value" : "🇸🇦", + "keywords" : [ + "flag", + "flag: Saudi Arabia" + ] + }, "🇸🇧", + { + "keywords" : [ + "flag", + "flag: Solomon Islands" + ], + "value" : "🇸🇧" + }, "🇸🇨", + { + "value" : "🇸🇨", + "keywords" : [ + "flag", + "flag: Seychelles" + ] + }, "🇸🇩", + { + "keywords" : [ + "flag", + "flag: Sudan" + ], + "value" : "🇸🇩" + }, "🇸🇪", + { + "keywords" : [ + "flag", + "flag: Sweden" + ], + "value" : "🇸🇪" + }, "🇸🇬", + { + "value" : "🇸🇬", + "keywords" : [ + "flag", + "flag: Singapore" + ] + }, "🇸🇭", + { + "keywords" : [ + "flag", + "flag: St. Helena" + ], + "value" : "🇸🇭" + }, "🇸🇮", + { + "value" : "🇸🇮", + "keywords" : [ + "flag", + "flag: Slovenia" + ] + }, "🇸🇯", + { + "value" : "🇸🇯", + "keywords" : [ + "flag", + "flag: Svalbard&Jan Mayen" + ] + }, "🇸🇰", + { + "keywords" : [ + "flag", + "flag: Slovakia" + ], + "value" : "🇸🇰" + }, "🇸🇱", + { + "keywords" : [ + "flag", + "flag: Sierra Leone" + ], + "value" : "🇸🇱" + }, "🇸🇲", + { + "value" : "🇸🇲", + "keywords" : [ + "flag", + "flag: San Marino" + ] + }, "🇸🇳", + { + "value" : "🇸🇳", + "keywords" : [ + "flag", + "flag: Senegal" + ] + }, "🇸🇴", + { + "value" : "🇸🇴", + "keywords" : [ + "flag", + "flag: Somalia" + ] + }, "🇸🇷", + { + "value" : "🇸🇷", + "keywords" : [ + "flag", + "flag: Suriname" + ] + }, "🇸🇸", + { + "keywords" : [ + "flag", + "flag: South Sudan" + ], + "value" : "🇸🇸" + }, "🇸🇹", + { + "value" : "🇸🇹", + "keywords" : [ + "flag", + "flag: São Tomé&Príncipe" + ] + }, "🇸🇻", + { + "value" : "🇸🇻", + "keywords" : [ + "flag", + "flag: El Salvador" + ] + }, "🇸🇽", + { + "value" : "🇸🇽", + "keywords" : [ + "flag", + "flag: Sint Maarten" + ] + }, "🇸🇾", + { + "value" : "🇸🇾", + "keywords" : [ + "flag", + "flag: Syria" + ] + }, "🇸🇿", + { + "value" : "🇸🇿", + "keywords" : [ + "flag", + "flag: Eswatini" + ] + }, "🇹🇦", + { + "keywords" : [ + "flag", + "flag: Tristan da Cunha" + ], + "value" : "🇹🇦" + }, "🇹🇨", + { + "keywords" : [ + "flag", + "flag: Turks&Caicos Islands" + ], + "value" : "🇹🇨" + }, "🇹🇩", + { + "value" : "🇹🇩", + "keywords" : [ + "flag", + "flag: Chad" + ] + }, "🇹🇫", + { + "keywords" : [ + "flag", + "flag: French Southern Territories" + ], + "value" : "🇹🇫" + }, "🇹🇬", + { + "value" : "🇹🇬", + "keywords" : [ + "flag", + "flag: Togo" + ] + }, "🇹🇭", + { + "value" : "🇹🇭", + "keywords" : [ + "flag", + "flag: Thailand" + ] + }, "🇹🇯", + { + "value" : "🇹🇯", + "keywords" : [ + "flag", + "flag: Tajikistan" + ] + }, "🇹🇰", + { + "value" : "🇹🇰", + "keywords" : [ + "flag", + "flag: Tokelau" + ] + }, "🇹🇱", + { + "keywords" : [ + "flag", + "flag: Timor-Leste" + ], + "value" : "🇹🇱" + }, "🇹🇲", + { + "value" : "🇹🇲", + "keywords" : [ + "flag", + "flag: Turkmenistan" + ] + }, "🇹🇳", + { + "keywords" : [ + "flag", + "flag: Tunisia" + ], + "value" : "🇹🇳" + }, "🇹🇴", + { + "keywords" : [ + "flag", + "flag: Tonga" + ], + "value" : "🇹🇴" + }, "🇹🇷", + { + "value" : "🇹🇷", + "keywords" : [ + "flag", + "flag: Türkiye" + ] + }, "🇹🇹", + { + "value" : "🇹🇹", + "keywords" : [ + "flag", + "flag: Trinidad&Tobago" + ] + }, "🇹🇻", + { + "value" : "🇹🇻", + "keywords" : [ + "flag", + "flag: Tuvalu" + ] + }, "🇹🇼", + { + "value" : "🇹🇼", + "keywords" : [ + "flag", + "flag: Taiwan" + ] + }, "🇹🇿", + { + "value" : "🇹🇿", + "keywords" : [ + "flag", + "flag: Tanzania" + ] + }, "🇺🇦", + { + "keywords" : [ + "flag", + "flag: Ukraine" + ], + "value" : "🇺🇦" + }, "🇺🇬", + { + "keywords" : [ + "flag", + "flag: Uganda" + ], + "value" : "🇺🇬" + }, "🇺🇲", + { + "value" : "🇺🇲", + "keywords" : [ + "flag", + "flag: U.S. Outlying Islands" + ] + }, "🇺🇳", + { + "value" : "🇺🇳", + "keywords" : [ + "flag", + "flag: United Nations" + ] + }, "🇺🇸", + { + "keywords" : [ + "flag", + "flag: United States" + ], + "value" : "🇺🇸" + }, "🇺🇾", + { + "keywords" : [ + "flag", + "flag: Uruguay" + ], + "value" : "🇺🇾" + }, "🇺🇿", + { + "value" : "🇺🇿", + "keywords" : [ + "flag", + "flag: Uzbekistan" + ] + }, "🇻🇦", + { + "value" : "🇻🇦", + "keywords" : [ + "flag", + "flag: Vatican City" + ] + }, "🇻🇨", + { + "keywords" : [ + "flag", + "flag: St. Vincent&Grenadines" + ], + "value" : "🇻🇨" + }, "🇻🇪", + { + "keywords" : [ + "flag", + "flag: Venezuela" + ], + "value" : "🇻🇪" + }, "🇻🇬", + { + "value" : "🇻🇬", + "keywords" : [ + "flag", + "flag: British Virgin Islands" + ] + }, "🇻🇮", + { + "value" : "🇻🇮", + "keywords" : [ + "flag", + "flag: U.S. Virgin Islands" + ] + }, "🇻🇳", + { + "keywords" : [ + "flag", + "flag: Vietnam" + ], + "value" : "🇻🇳" + }, "🇻🇺", + { + "value" : "🇻🇺", + "keywords" : [ + "flag", + "flag: Vanuatu" + ] + }, "🇼🇫", + { + "keywords" : [ + "flag", + "flag: Wallis&Futuna" + ], + "value" : "🇼🇫" + }, "🇼🇸", + { + "value" : "🇼🇸", + "keywords" : [ + "flag", + "flag: Samoa" + ] + }, "🇽🇰", + { + "value" : "🇽🇰", + "keywords" : [ + "flag", + "flag: Kosovo" + ] + }, "🇾🇪", + { + "keywords" : [ + "flag", + "flag: Yemen" + ], + "value" : "🇾🇪" + }, "🇾🇹", + { + "keywords" : [ + "flag", + "flag: Mayotte" + ], + "value" : "🇾🇹" + }, "🇿🇦", + { + "keywords" : [ + "flag", + "flag: South Africa" + ], + "value" : "🇿🇦" + }, "🇿🇲", + { + "keywords" : [ + "flag", + "flag: Zambia" + ], + "value" : "🇿🇲" + }, "🇿🇼", + { + "value" : "🇿🇼", + "keywords" : [ + "flag", + "flag: Zimbabwe" + ] + }, "🏴󠁧󠁢󠁥󠁮󠁧󠁿", + { + "value" : "🏴󠁧󠁢󠁥󠁮󠁧󠁿", + "keywords" : [ + "flag", + "flag: England" + ] + }, "🏴󠁧󠁢󠁳󠁣󠁴󠁿", - "🏴󠁧󠁢󠁷󠁬󠁳󠁿" + { + "value" : "🏴󠁧󠁢󠁳󠁣󠁴󠁿", + "keywords" : [ + "flag", + "flag: Scotland" + ] + }, + "🏴󠁧󠁢󠁷󠁬󠁳󠁿", + { + "value" : "🏴󠁧󠁢󠁷󠁬󠁳󠁿", + "keywords" : [ + "flag", + "flag: Wales" + ] + } ] }, { - "name" : "Activities", - "values" : [ + "emojis" : [ "🎃", + { + "value" : "🎃", + "keywords" : [ + "celebration", + "halloween", + "jack", + "jack-o-lantern", + "lantern", + "pumpkin" + ] + }, "🎄", + { + "keywords" : [ + "celebration", + "Christmas", + "tree" + ], + "value" : "🎄" + }, "🎆", + { + "value" : "🎆", + "keywords" : [ + "boom", + "celebration", + "entertainment", + "fireworks", + "yolo" + ] + }, "🎇", + { + "value" : "🎇", + "keywords" : [ + "boom", + "celebration", + "fireworks", + "sparkle", + "sparkler" + ] + }, "🧨", + { + "value" : "🧨", + "keywords" : [ + "dynamite", + "explosive", + "fire", + "firecracker", + "fireworks", + "light", + "pop", + "popping", + "spark" + ] + }, "✨", + { + "keywords" : [ + "*", + "magic", + "sparkle", + "sparkles", + "star" + ], + "value" : "✨" + }, "🎈", + { + "value" : "🎈", + "keywords" : [ + "balloon", + "birthday", + "celebrate", + "celebration" + ] + }, "🎉", + { + "value" : "🎉", + "keywords" : [ + "awesome", + "birthday", + "celebrate", + "celebration", + "excited", + "hooray", + "party", + "popper", + "tada", + "woohoo" + ] + }, "🎊", + { + "keywords" : [ + "ball", + "celebrate", + "celebration", + "confetti", + "party", + "woohoo" + ], + "value" : "🎊" + }, "🎋", + { + "value" : "🎋", + "keywords" : [ + "banner", + "celebration", + "Japanese", + "tanabata", + "tree" + ] + }, "🎍", + { + "value" : "🎍", + "keywords" : [ + "bamboo", + "celebration", + "decoration", + "Japanese", + "pine", + "plant" + ] + }, "🎎", + { + "keywords" : [ + "celebration", + "doll", + "dolls", + "festival", + "Japanese" + ], + "value" : "🎎" + }, "🎏", + { + "value" : "🎏", + "keywords" : [ + "carp", + "celebration", + "streamer" + ] + }, "🎐", + { + "value" : "🎐", + "keywords" : [ + "bell", + "celebration", + "chime", + "wind" + ] + }, "🎑", + { + "value" : "🎑", + "keywords" : [ + "celebration", + "ceremony", + "moon", + "viewing" + ] + }, "🧧", + { + "keywords" : [ + "envelope", + "gift", + "good", + "hóngbāo", + "lai", + "luck", + "money", + "red", + "see" + ], + "value" : "🧧" + }, "🎀", + { + "keywords" : [ + "celebration", + "ribbon" + ], + "value" : "🎀" + }, "🎁", + { + "keywords" : [ + "birthday", + "bow", + "box", + "celebration", + "christmas", + "gift", + "present", + "surprise", + "wrapped" + ], + "value" : "🎁" + }, "🎗️", + { + "value" : "🎗️", + "keywords" : [ + "celebration", + "reminder", + "ribbon" + ] + }, "🎟️", + { + "value" : "🎟️", + "keywords" : [ + "admission", + "ticket", + "tickets" + ] + }, "🎫", + { + "keywords" : [ + "admission", + "stub", + "ticket" + ], + "value" : "🎫" + }, "🎖️", + { + "value" : "🎖️", + "keywords" : [ + "award", + "celebration", + "medal", + "military" + ] + }, "🏆", + { + "value" : "🏆", + "keywords" : [ + "champion", + "champs", + "prize", + "slay", + "sport", + "trophy", + "victory", + "win", + "winning" + ] + }, "🏅", + { + "keywords" : [ + "award", + "gold", + "medal", + "sports", + "winner" + ], + "value" : "🏅" + }, "🥇", + { + "value" : "🥇", + "keywords" : [ + "1st", + "first", + "gold", + "medal", + "place" + ] + }, "🥈", + { + "value" : "🥈", + "keywords" : [ + "2nd", + "medal", + "place", + "second", + "silver" + ] + }, "🥉", + { + "keywords" : [ + "3rd", + "bronze", + "medal", + "place", + "third" + ], + "value" : "🥉" + }, "⚽", + { + "value" : "⚽", + "keywords" : [ + "ball", + "football", + "futbol", + "soccer", + "sport" + ] + }, "⚾", + { + "value" : "⚾", + "keywords" : [ + "ball", + "baseball", + "sport" + ] + }, "🥎", + { + "keywords" : [ + "ball", + "glove", + "softball", + "sports", + "underarm" + ], + "value" : "🥎" + }, "🏀", + { + "keywords" : [ + "ball", + "basketball", + "hoop", + "sport" + ], + "value" : "🏀" + }, "🏐", + { + "value" : "🏐", + "keywords" : [ + "ball", + "game", + "volleyball" + ] + }, "🏈", + { + "value" : "🏈", + "keywords" : [ + "american", + "ball", + "bowl", + "football", + "sport", + "super" + ] + }, "🏉", + { + "value" : "🏉", + "keywords" : [ + "ball", + "football", + "rugby", + "sport" + ] + }, "🎾", + { + "value" : "🎾", + "keywords" : [ + "ball", + "racquet", + "sport", + "tennis" + ] + }, "🥏", + { + "keywords" : [ + "disc", + "flying", + "ultimate" + ], + "value" : "🥏" + }, "🎳", + { + "value" : "🎳", + "keywords" : [ + "ball", + "bowling", + "game", + "sport", + "strike" + ] + }, "🏏", + { + "keywords" : [ + "ball", + "bat", + "cricket", + "game" + ], + "value" : "🏏" + }, "🏑", + { + "keywords" : [ + "ball", + "field", + "game", + "hockey", + "stick" + ], + "value" : "🏑" + }, "🏒", + { + "value" : "🏒", + "keywords" : [ + "game", + "hockey", + "ice", + "puck", + "stick" + ] + }, "🥍", + { + "value" : "🥍", + "keywords" : [ + "ball", + "goal", + "lacrosse", + "sports", + "stick" + ] + }, "🏓", + { + "keywords" : [ + "ball", + "bat", + "game", + "paddle", + "ping", + "pingpong", + "pong", + "table", + "tennis" + ], + "value" : "🏓" + }, "🏸", + { + "value" : "🏸", + "keywords" : [ + "badminton", + "birdie", + "game", + "racquet", + "shuttlecock" + ] + }, "🥊", + { + "value" : "🥊", + "keywords" : [ + "boxing", + "glove" + ] + }, "🥋", + { + "value" : "🥋", + "keywords" : [ + "arts", + "judo", + "karate", + "martial", + "taekwondo", + "uniform" + ] + }, "🥅", + { + "keywords" : [ + "goal", + "net" + ], + "value" : "🥅" + }, "⛳", + { + "keywords" : [ + "flag", + "golf", + "hole", + "sport" + ], + "value" : "⛳" + }, "⛸️", + { + "value" : "⛸️", + "keywords" : [ + "ice", + "skate", + "skating" + ] + }, "🎣", + { + "value" : "🎣", + "keywords" : [ + "entertainment", + "fish", + "fishing", + "pole", + "sport" + ] + }, "🤿", + { + "value" : "🤿", + "keywords" : [ + "diving", + "mask", + "scuba", + "snorkeling" + ] + }, "🎽", + { + "value" : "🎽", + "keywords" : [ + "athletics", + "running", + "sash", + "shirt" + ] + }, "🎿", + { + "value" : "🎿", + "keywords" : [ + "ski", + "skis", + "snow", + "sport" + ] + }, "🛷", + { + "keywords" : [ + "luge", + "sled", + "sledge", + "sleigh", + "snow", + "toboggan" + ], + "value" : "🛷" + }, "🥌", + { + "value" : "🥌", + "keywords" : [ + "curling", + "game", + "rock", + "stone" + ] + }, "🎯", + { + "keywords" : [ + "bull", + "bullseye", + "dart", + "direct", + "entertainment", + "game", + "hit", + "target" + ], + "value" : "🎯" + }, "🪀", + { + "keywords" : [ + "fluctuate", + "toy", + "yo-yo" + ], + "value" : "🪀" + }, "🪁", + { + "keywords" : [ + "fly", + "kite", + "soar" + ], + "value" : "🪁" + }, "🔫", + { + "keywords" : [ + "gun", + "handgun", + "pistol", + "revolver", + "tool", + "water", + "weapon" + ], + "value" : "🔫" + }, "🎱", + { + "keywords" : [ + "8", + "8ball", + "ball", + "billiard", + "eight", + "game", + "pool" + ], + "value" : "🎱" + }, "🔮", + { + "value" : "🔮", + "keywords" : [ + "ball", + "crystal", + "fairy", + "fairytale", + "fantasy", + "fortune", + "future", + "magic", + "tale", + "tool" + ] + }, "🪄", + { + "value" : "🪄", + "keywords" : [ + "magic", + "magician", + "wand", + "witch", + "wizard" + ] + }, "🎮", + { + "value" : "🎮", + "keywords" : [ + "controller", + "entertainment", + "game", + "video" + ] + }, "🕹️", + { + "keywords" : [ + "game", + "joystick", + "video", + "videogame" + ], + "value" : "🕹️" + }, "🎰", + { + "keywords" : [ + "casino", + "gamble", + "gambling", + "game", + "machine", + "slot", + "slots" + ], + "value" : "🎰" + }, "🎲", + { + "keywords" : [ + "dice", + "die", + "entertainment", + "game" + ], + "value" : "🎲" + }, "🧩", + { + "value" : "🧩", + "keywords" : [ + "clue", + "interlocking", + "jigsaw", + "piece", + "puzzle" + ] + }, "🧸", + { + "value" : "🧸", + "keywords" : [ + "bear", + "plaything", + "plush", + "stuffed", + "teddy", + "toy" + ] + }, "🪅", + { + "keywords" : [ + "candy", + "celebrate", + "celebration", + "cinco", + "de", + "festive", + "mayo", + "party", + "pinada", + "pinata", + "piñata" + ], + "value" : "🪅" + }, "🪩", + { + "value" : "🪩", + "keywords" : [ + "ball", + "dance", + "disco", + "glitter", + "mirror", + "party" + ] + }, "🪆", + { + "value" : "🪆", + "keywords" : [ + "babooshka", + "baboushka", + "babushka", + "doll", + "dolls", + "matryoshka", + "nesting", + "russia" + ] + }, "♠️", + { + "keywords" : [ + "card", + "game", + "spade", + "suit" + ], + "value" : "♠️" + }, "♥️", + { + "value" : "♥️", + "keywords" : [ + "card", + "emotion", + "game", + "heart", + "hearts", + "suit" + ] + }, "♦️", + { + "value" : "♦️", + "keywords" : [ + "card", + "diamond", + "game", + "suit" + ] + }, "♣️", + { + "value" : "♣️", + "keywords" : [ + "card", + "club", + "clubs", + "game", + "suit" + ] + }, "♟️", + { + "value" : "♟️", + "keywords" : [ + "chess", + "dupe", + "expendable", + "pawn" + ] + }, "🃏", + { + "keywords" : [ + "card", + "game", + "joker", + "wildcard" + ], + "value" : "🃏" + }, "🀄", + { + "keywords" : [ + "dragon", + "game", + "mahjong", + "red" + ], + "value" : "🀄" + }, "🎴", + { + "keywords" : [ + "card", + "cards", + "flower", + "game", + "Japanese", + "playing" + ], + "value" : "🎴" + }, "🎭", + { + "value" : "🎭", + "keywords" : [ + "actor", + "actress", + "art", + "arts", + "entertainment", + "mask", + "performing", + "theater", + "theatre", + "thespian" + ] + }, "🖼️", + { + "keywords" : [ + "art", + "frame", + "framed", + "museum", + "painting", + "picture" + ], + "value" : "🖼️" + }, "🎨", + { + "value" : "🎨", + "keywords" : [ + "art", + "artist", + "artsy", + "arty", + "colorful", + "creative", + "entertainment", + "museum", + "painter", + "painting", + "palette" + ] + }, "🧵", + { + "value" : "🧵", + "keywords" : [ + "needle", + "sewing", + "spool", + "string", + "thread" + ] + }, "🪡", + { + "value" : "🪡", + "keywords" : [ + "embroidery", + "needle", + "sew", + "sewing", + "stitches", + "sutures", + "tailoring", + "thread" + ] + }, "🧶", - "🪢" - ] + { + "keywords" : [ + "ball", + "crochet", + "knit", + "yarn" + ], + "value" : "🧶" + }, + "🪢", + { + "value" : "🪢", + "keywords" : [ + "cord", + "knot", + "rope", + "tangled", + "tie", + "twine", + "twist" + ] + } + ], + "name" : "Activities", + "appleCategory" : "activity" }, { "name" : "Component", - "values" : [ + "emojis" : [ "🏻", + { + "keywords" : [ + "1–2", + "light", + "skin", + "tone", + "type" + ], + "value" : "🏻" + }, "🏼", + { + "keywords" : [ + "3", + "medium-light", + "skin", + "tone", + "type" + ], + "value" : "🏼" + }, "🏽", + { + "keywords" : [ + "4", + "medium", + "skin", + "tone", + "type" + ], + "value" : "🏽" + }, "🏾", + { + "keywords" : [ + "5", + "medium-dark", + "skin", + "tone", + "type" + ], + "value" : "🏾" + }, "🏿", + { + "keywords" : [ + "6", + "dark", + "skin", + "tone", + "type" + ], + "value" : "🏿" + }, "🦰", + { + "keywords" : [ + "ginger", + "hair", + "red", + "redhead" + ], + "value" : "🦰" + }, "🦱", + { + "value" : "🦱", + "keywords" : [ + "afro", + "curly", + "hair", + "ringlets" + ] + }, "🦳", - "🦲" + { + "value" : "🦳", + "keywords" : [ + "gray", + "hair", + "old", + "white" + ] + }, + "🦲", + { + "value" : "🦲", + "keywords" : [ + "bald", + "chemotherapy", + "hair", + "hairless", + "no", + "shaven" + ] + } ] }, { - "name" : "Objects", - "values" : [ + "emojis" : [ "👓", + { + "value" : "👓", + "keywords" : [ + "clothing", + "eye", + "eyeglasses", + "eyewear", + "glasses" + ] + }, "🕶️", + { + "keywords" : [ + "dark", + "eye", + "eyewear", + "glasses", + "sunglasses" + ], + "value" : "🕶️" + }, "🥽", + { + "value" : "🥽", + "keywords" : [ + "dive", + "eye", + "goggles", + "protection", + "scuba", + "swimming", + "welding" + ] + }, "🥼", + { + "value" : "🥼", + "keywords" : [ + "clothes", + "coat", + "doctor", + "dr", + "experiment", + "jacket", + "lab", + "scientist", + "white" + ] + }, "🦺", + { + "value" : "🦺", + "keywords" : [ + "emergency", + "safety", + "vest" + ] + }, "👔", + { + "value" : "👔", + "keywords" : [ + "clothing", + "employed", + "necktie", + "serious", + "shirt", + "tie" + ] + }, "👕", + { + "keywords" : [ + "blue", + "casual", + "clothes", + "clothing", + "collar", + "dressed", + "shirt", + "shopping", + "t-shirt", + "tshirt", + "weekend" + ], + "value" : "👕" + }, "👖", + { + "keywords" : [ + "blue", + "casual", + "clothes", + "clothing", + "denim", + "dressed", + "jeans", + "pants", + "shopping", + "trousers", + "weekend" + ], + "value" : "👖" + }, "🧣", + { + "keywords" : [ + "bundle", + "cold", + "neck", + "scarf", + "up" + ], + "value" : "🧣" + }, "🧤", + { + "keywords" : [ + "gloves", + "hand" + ], + "value" : "🧤" + }, "🧥", + { + "keywords" : [ + "brr", + "bundle", + "coat", + "cold", + "jacket", + "up" + ], + "value" : "🧥" + }, "🧦", + { + "value" : "🧦", + "keywords" : [ + "socks", + "stocking" + ] + }, "👗", + { + "value" : "👗", + "keywords" : [ + "clothes", + "clothing", + "dress", + "dressed", + "fancy", + "shopping" + ] + }, "👘", + { + "value" : "👘", + "keywords" : [ + "clothing", + "comfortable", + "kimono" + ] + }, "🥻", + { + "keywords" : [ + "clothing", + "dress", + "sari" + ], + "value" : "🥻" + }, "🩱", + { + "value" : "🩱", + "keywords" : [ + "bathing", + "one-piece", + "suit", + "swimsuit" + ] + }, "🩲", + { + "keywords" : [ + "bathing", + "briefs", + "one-piece", + "suit", + "swimsuit", + "underwear" + ], + "value" : "🩲" + }, "🩳", + { + "keywords" : [ + "bathing", + "pants", + "shorts", + "suit", + "swimsuit", + "underwear" + ], + "value" : "🩳" + }, "👙", + { + "value" : "👙", + "keywords" : [ + "bathing", + "beach", + "bikini", + "clothing", + "pool", + "suit", + "swim" + ] + }, "👚", + { + "keywords" : [ + "blouse", + "clothes", + "clothing", + "collar", + "dress", + "dressed", + "lady", + "shirt", + "shopping", + "woman", + "woman’s" + ], + "value" : "👚" + }, "🪭", + { + "keywords" : [ + "clack", + "clap", + "cool", + "cooling", + "dance", + "fan", + "flirt", + "flutter", + "folding", + "hand", + "hot", + "shy" + ], + "value" : "🪭" + }, "👛", + { + "keywords" : [ + "clothes", + "clothing", + "coin", + "dress", + "fancy", + "handbag", + "purse", + "shopping" + ], + "value" : "👛" + }, "👜", + { + "keywords" : [ + "bag", + "clothes", + "clothing", + "dress", + "handbag", + "lady", + "purse", + "shopping" + ], + "value" : "👜" + }, "👝", + { + "value" : "👝", + "keywords" : [ + "bag", + "clothes", + "clothing", + "clutch", + "dress", + "handbag", + "pouch", + "purse" + ] + }, "🛍️", + { + "value" : "🛍️", + "keywords" : [ + "bag", + "bags", + "hotel", + "shopping" + ] + }, "🎒", + { + "keywords" : [ + "backpack", + "backpacking", + "bag", + "bookbag", + "education", + "rucksack", + "satchel", + "school" + ], + "value" : "🎒" + }, "🩴", + { + "keywords" : [ + "beach", + "flip", + "flop", + "sandal", + "sandals", + "shoe", + "thong", + "thongs", + "zōri" + ], + "value" : "🩴" + }, "👞", + { + "keywords" : [ + "brown", + "clothes", + "clothing", + "feet", + "foot", + "kick", + "man", + "man’s", + "shoe", + "shoes", + "shopping" + ], + "value" : "👞" + }, "👟", + { + "value" : "👟", + "keywords" : [ + "athletic", + "clothes", + "clothing", + "fast", + "kick", + "running", + "shoe", + "shoes", + "shopping", + "sneaker", + "tennis" + ] + }, "🥾", + { + "keywords" : [ + "backpacking", + "boot", + "brown", + "camping", + "hiking", + "outdoors", + "shoe" + ], + "value" : "🥾" + }, "🥿", + { + "keywords" : [ + "ballet", + "comfy", + "flat", + "flats", + "shoe", + "slip-on", + "slipper" + ], + "value" : "🥿" + }, "👠", + { + "keywords" : [ + "clothes", + "clothing", + "dress", + "fashion", + "heel", + "heels", + "high-heeled", + "shoe", + "shoes", + "shopping", + "stiletto", + "woman" + ], + "value" : "👠" + }, "👡", + { + "value" : "👡", + "keywords" : [ + "clothing", + "sandal", + "shoe", + "woman", + "woman’s" + ] + }, "🩰", + { + "value" : "🩰", + "keywords" : [ + "ballet", + "dance", + "shoes" + ] + }, "👢", + { + "value" : "👢", + "keywords" : [ + "boot", + "clothes", + "clothing", + "dress", + "shoe", + "shoes", + "shopping", + "woman", + "woman’s" + ] + }, "🪮", + { + "keywords" : [ + "Afro", + "comb", + "groom", + "hair", + "pick" + ], + "value" : "🪮" + }, "👑", + { + "value" : "👑", + "keywords" : [ + "clothing", + "crown", + "family", + "king", + "medieval", + "queen", + "royal", + "royalty", + "win" + ] + }, "👒", + { + "value" : "👒", + "keywords" : [ + "clothes", + "clothing", + "garden", + "hat", + "hats", + "party", + "woman", + "woman’s" + ] + }, "🎩", + { + "value" : "🎩", + "keywords" : [ + "clothes", + "clothing", + "fancy", + "formal", + "hat", + "magic", + "top", + "tophat" + ] + }, "🎓", + { + "value" : "🎓", + "keywords" : [ + "cap", + "celebration", + "clothing", + "education", + "graduation", + "hat", + "scholar" + ] + }, "🧢", + { + "keywords" : [ + "baseball", + "bent", + "billed", + "cap", + "dad", + "hat" + ], + "value" : "🧢" + }, "🪖", + { + "value" : "🪖", + "keywords" : [ + "army", + "helmet", + "military", + "soldier", + "war", + "warrior" + ] + }, "⛑️", + { + "value" : "⛑️", + "keywords" : [ + "aid", + "cross", + "face", + "hat", + "helmet", + "rescue", + "worker’s" + ] + }, "📿", + { + "keywords" : [ + "beads", + "clothing", + "necklace", + "prayer", + "religion" + ], + "value" : "📿" + }, "💄", + { + "value" : "💄", + "keywords" : [ + "cosmetics", + "date", + "lipstick", + "makeup" + ] + }, "💍", + { + "value" : "💍", + "keywords" : [ + "diamond", + "engaged", + "engagement", + "married", + "ring", + "romance", + "shiny", + "sparkling", + "wedding" + ] + }, "💎", + { + "value" : "💎", + "keywords" : [ + "diamond", + "engagement", + "gem", + "jewel", + "money", + "romance", + "stone", + "wedding" + ] + }, "🔇", + { + "value" : "🔇", + "keywords" : [ + "mute", + "muted", + "quiet", + "silent", + "sound", + "speaker" + ] + }, "🔈", + { + "value" : "🔈", + "keywords" : [ + "low", + "soft", + "sound", + "speaker", + "volume" + ] + }, "🔉", + { + "keywords" : [ + "medium", + "sound", + "speaker", + "volume" + ], + "value" : "🔉" + }, "🔊", + { + "keywords" : [ + "high", + "loud", + "music", + "sound", + "speaker", + "volume" + ], + "value" : "🔊" + }, "📢", + { + "keywords" : [ + "address", + "communication", + "loud", + "loudspeaker", + "public", + "sound" + ], + "value" : "📢" + }, "📣", + { + "keywords" : [ + "cheering", + "megaphone", + "sound" + ], + "value" : "📣" + }, "📯", + { + "value" : "📯", + "keywords" : [ + "horn", + "post", + "postal" + ] + }, "🔔", + { + "value" : "🔔", + "keywords" : [ + "bell", + "break", + "church", + "sound" + ] + }, "🔕", + { + "keywords" : [ + "bell", + "forbidden", + "mute", + "no", + "not", + "prohibited", + "quiet", + "silent", + "slash", + "sound" + ], + "value" : "🔕" + }, "🎼", + { + "keywords" : [ + "music", + "musical", + "note", + "score" + ], + "value" : "🎼" + }, "🎵", + { + "keywords" : [ + "music", + "musical", + "note", + "sound" + ], + "value" : "🎵" + }, "🎶", + { + "value" : "🎶", + "keywords" : [ + "music", + "musical", + "note", + "notes", + "sound" + ] + }, "🎙️", + { + "value" : "🎙️", + "keywords" : [ + "mic", + "microphone", + "music", + "studio" + ] + }, "🎚️", + { + "keywords" : [ + "level", + "music", + "slider" + ], + "value" : "🎚️" + }, "🎛️", + { + "keywords" : [ + "control", + "knobs", + "music" + ], + "value" : "🎛️" + }, "🎤", + { + "value" : "🎤", + "keywords" : [ + "karaoke", + "mic", + "microphone", + "music", + "sing", + "sound" + ] + }, "🎧", + { + "keywords" : [ + "earbud", + "headphone", + "sound" + ], + "value" : "🎧" + }, "📻", + { + "keywords" : [ + "entertainment", + "radio", + "tbt", + "video" + ], + "value" : "📻" + }, "🎷", + { + "value" : "🎷", + "keywords" : [ + "instrument", + "music", + "sax", + "saxophone" + ] + }, "🪗", + { + "value" : "🪗", + "keywords" : [ + "accordion", + "box", + "concertina", + "instrument", + "music", + "squeeze", + "squeezebox" + ] + }, "🎸", + { + "value" : "🎸", + "keywords" : [ + "guitar", + "instrument", + "music", + "strat" + ] + }, "🎹", + { + "value" : "🎹", + "keywords" : [ + "instrument", + "keyboard", + "music", + "musical", + "piano" + ] + }, "🎺", + { + "keywords" : [ + "instrument", + "music", + "trumpet" + ], + "value" : "🎺" + }, "🎻", + { + "value" : "🎻", + "keywords" : [ + "instrument", + "music", + "violin" + ] + }, "🪕", + { + "keywords" : [ + "banjo", + "music", + "stringed" + ], + "value" : "🪕" + }, "🥁", + { + "value" : "🥁", + "keywords" : [ + "drum", + "drumsticks", + "music" + ] + }, "🪘", + { + "keywords" : [ + "beat", + "conga", + "drum", + "instrument", + "long", + "rhythm" + ], + "value" : "🪘" + }, "🪇", + { + "value" : "🪇", + "keywords" : [ + "cha", + "dance", + "instrument", + "maracas", + "music", + "party", + "percussion", + "rattle", + "shake", + "shaker" + ] + }, "🪈", + { + "value" : "🪈", + "keywords" : [ + "band", + "fife", + "flautist", + "flute", + "instrument", + "marching", + "music", + "orchestra", + "piccolo", + "pipe", + "recorder", + "woodwind" + ] + }, "📱", + { + "value" : "📱", + "keywords" : [ + "cell", + "communication", + "mobile", + "phone", + "telephone" + ] + }, "📲", + { + "keywords" : [ + "arrow", + "build", + "call", + "cell", + "communication", + "mobile", + "phone", + "receive", + "telephone" + ], + "value" : "📲" + }, "☎️", + { + "keywords" : [ + "phone", + "telephone" + ], + "value" : "☎️" + }, "📞", + { + "keywords" : [ + "communication", + "phone", + "receiver", + "telephone", + "voip" + ], + "value" : "📞" + }, "📟", + { + "value" : "📟", + "keywords" : [ + "communication", + "pager" + ] + }, "📠", + { + "keywords" : [ + "communication", + "fax", + "machine" + ], + "value" : "📠" + }, "🔋", + { + "value" : "🔋", + "keywords" : [ + "battery" + ] + }, "🪫", + { + "keywords" : [ + "battery", + "drained", + "electronic", + "energy", + "low", + "power" + ], + "value" : "🪫" + }, "🔌", + { + "value" : "🔌", + "keywords" : [ + "electric", + "electricity", + "plug" + ] + }, "💻", + { + "keywords" : [ + "computer", + "laptop", + "office", + "pc", + "personal" + ], + "value" : "💻" + }, "🖥️", + { + "value" : "🖥️", + "keywords" : [ + "computer", + "desktop", + "monitor" + ] + }, "🖨️", + { + "value" : "🖨️", + "keywords" : [ + "computer", + "printer" + ] + }, "⌨️", + { + "value" : "⌨️", + "keywords" : [ + "computer", + "keyboard" + ] + }, "🖱️", + { + "value" : "🖱️", + "keywords" : [ + "computer", + "mouse" + ] + }, "🖲️", + { + "value" : "🖲️", + "keywords" : [ + "computer", + "trackball" + ] + }, "💽", + { + "value" : "💽", + "keywords" : [ + "computer", + "disk", + "minidisk", + "optical" + ] + }, "💾", + { + "value" : "💾", + "keywords" : [ + "computer", + "disk", + "floppy" + ] + }, "💿", + { + "value" : "💿", + "keywords" : [ + "blu-ray", + "CD", + "computer", + "disk", + "dvd", + "optical" + ] + }, "📀", + { + "keywords" : [ + "Blu-ray", + "cd", + "computer", + "disk", + "DVD", + "optical" + ], + "value" : "📀" + }, "🧮", + { + "keywords" : [ + "abacus", + "calculation", + "calculator" + ], + "value" : "🧮" + }, "🎥", + { + "keywords" : [ + "bollywood", + "camera", + "cinema", + "film", + "hollywood", + "movie", + "record" + ], + "value" : "🎥" + }, "🎞️", + { + "keywords" : [ + "cinema", + "film", + "frames", + "movie" + ], + "value" : "🎞️" + }, "📽️", + { + "value" : "📽️", + "keywords" : [ + "cinema", + "film", + "movie", + "projector", + "video" + ] + }, "🎬", + { + "value" : "🎬", + "keywords" : [ + "action", + "board", + "clapper", + "movie" + ] + }, "📺", + { + "keywords" : [ + "television", + "tv", + "video" + ], + "value" : "📺" + }, "📷", + { + "value" : "📷", + "keywords" : [ + "camera", + "photo", + "selfie", + "snap", + "tbt", + "trip", + "video" + ] + }, "📸", + { + "value" : "📸", + "keywords" : [ + "camera", + "flash", + "video" + ] + }, "📹", + { + "keywords" : [ + "camcorder", + "camera", + "tbt", + "video" + ], + "value" : "📹" + }, "📼", + { + "keywords" : [ + "old", + "school", + "tape", + "vcr", + "vhs", + "video", + "videocassette" + ], + "value" : "📼" + }, "🔍", + { + "keywords" : [ + "glass", + "lab", + "left", + "left-pointing", + "magnifying", + "science", + "search", + "tilted", + "tool" + ], + "value" : "🔍" + }, "🔎", + { + "keywords" : [ + "contact", + "glass", + "lab", + "magnifying", + "right", + "right-pointing", + "science", + "search", + "tilted", + "tool" + ], + "value" : "🔎" + }, "🕯️", + { + "value" : "🕯️", + "keywords" : [ + "candle", + "light" + ] + }, "💡", + { + "value" : "💡", + "keywords" : [ + "bulb", + "comic", + "electric", + "idea", + "light" + ] + }, "🔦", + { + "keywords" : [ + "electric", + "flashlight", + "light", + "tool", + "torch" + ], + "value" : "🔦" + }, "🏮", + { + "keywords" : [ + "bar", + "lantern", + "light", + "paper", + "red", + "restaurant" + ], + "value" : "🏮" + }, "🪔", + { + "value" : "🪔", + "keywords" : [ + "diya", + "lamp", + "oil", + "light" + ] + }, "📔", + { + "value" : "📔", + "keywords" : [ + "book", + "cover", + "decorated", + "decorative", + "education", + "notebook", + "school", + "writing" + ] + }, "📕", + { + "keywords" : [ + "book", + "closed", + "education" + ], + "value" : "📕" + }, "📖", + { + "value" : "📖", + "keywords" : [ + "book", + "education", + "fantasy", + "knowledge", + "library", + "novels", + "open", + "reading" + ] + }, "📗", + { + "value" : "📗", + "keywords" : [ + "book", + "education", + "fantasy", + "green", + "library", + "reading" + ] + }, "📘", + { + "keywords" : [ + "blue", + "book", + "education", + "fantasy", + "library", + "reading" + ], + "value" : "📘" + }, "📙", + { + "keywords" : [ + "book", + "education", + "fantasy", + "library", + "orange", + "reading" + ], + "value" : "📙" + }, "📚", + { + "keywords" : [ + "book", + "books", + "education", + "fantasy", + "knowledge", + "library", + "novels", + "reading", + "school", + "study" + ], + "value" : "📚" + }, "📓", + { + "keywords" : [ + "notebook" + ], + "value" : "📓" + }, "📒", + { + "value" : "📒", + "keywords" : [ + "ledger", + "notebook" + ] + }, "📃", + { + "value" : "📃", + "keywords" : [ + "curl", + "document", + "page", + "paper" + ] + }, "📜", + { + "value" : "📜", + "keywords" : [ + "paper", + "scroll" + ] + }, "📄", + { + "keywords" : [ + "document", + "facing", + "page", + "up", + "paper" + ], + "value" : "📄" + }, "📰", + { + "value" : "📰", + "keywords" : [ + "communication", + "news", + "newspaper", + "paper" + ] + }, "🗞️", + { + "value" : "🗞️", + "keywords" : [ + "news", + "newspaper", + "paper", + "rolled", + "rolled-up" + ] + }, "📑", + { + "keywords" : [ + "bookmark", + "mark", + "marker", + "tabs" + ], + "value" : "📑" + }, "🔖", + { + "value" : "🔖", + "keywords" : [ + "bookmark", + "mark" + ] + }, "🏷️", + { + "keywords" : [ + "label", + "tag" + ], + "value" : "🏷️" + }, "💰", + { + "keywords" : [ + "bag", + "bank", + "bet", + "billion", + "cash", + "cost", + "dollar", + "gold", + "million", + "money", + "moneybag", + "paid", + "paying", + "pot", + "rich", + "win" + ], + "value" : "💰" + }, "🪙", + { + "value" : "🪙", + "keywords" : [ + "coin", + "dollar", + "euro", + "gold", + "metal", + "money", + "rich", + "silver", + "treasure" + ] + }, "💴", + { + "value" : "💴", + "keywords" : [ + "bank", + "banknote", + "bill", + "currency", + "money", + "note", + "yen" + ] + }, "💵", + { + "value" : "💵", + "keywords" : [ + "bank", + "banknote", + "bill", + "currency", + "dollar", + "money", + "note" + ] + }, "💶", + { + "value" : "💶", + "keywords" : [ + "100", + "bank", + "banknote", + "bill", + "currency", + "euro", + "money", + "note", + "rich" + ] + }, "💷", + { + "keywords" : [ + "bank", + "banknote", + "bill", + "billion", + "cash", + "currency", + "money", + "note", + "pound", + "pounds" + ], + "value" : "💷" + }, "💸", + { + "value" : "💸", + "keywords" : [ + "bank", + "banknote", + "bill", + "billion", + "cash", + "dollar", + "fly", + "million", + "money", + "note", + "pay", + "wings" + ] + }, "💳", + { + "value" : "💳", + "keywords" : [ + "bank", + "card", + "cash", + "charge", + "credit", + "money", + "pay" + ] + }, "🧾", + { + "value" : "🧾", + "keywords" : [ + "accounting", + "bookkeeping", + "evidence", + "invoice", + "proof", + "receipt" + ] + }, "💹", + { + "value" : "💹", + "keywords" : [ + "bank", + "chart", + "currency", + "graph", + "growth", + "increasing", + "market", + "money", + "rise", + "trend", + "upward", + "yen" + ] + }, "✉️", + { + "value" : "✉️", + "keywords" : [ + "e-mail", + "email", + "envelope", + "letter" + ] + }, "📧", + { + "value" : "📧", + "keywords" : [ + "e-mail", + "email", + "letter", + "mail" + ] + }, "📨", + { + "value" : "📨", + "keywords" : [ + "delivering", + "e-mail", + "email", + "envelope", + "incoming", + "letter", + "mail", + "receive", + "sent" + ] + }, "📩", + { + "keywords" : [ + "arrow", + "communication", + "down", + "e-mail", + "email", + "envelope", + "letter", + "mail", + "outgoing", + "send", + "sent" + ], + "value" : "📩" + }, "📤", + { + "value" : "📤", + "keywords" : [ + "box", + "email", + "letter", + "mail", + "outbox", + "sent", + "tray" + ] + }, "📥", + { + "value" : "📥", + "keywords" : [ + "box", + "email", + "inbox", + "letter", + "mail", + "receive", + "tray", + "zero" + ] + }, "📦", + { + "value" : "📦", + "keywords" : [ + "box", + "communication", + "delivery", + "package", + "parcel", + "shipping" + ] + }, "📫", + { + "keywords" : [ + "closed", + "communication", + "flag", + "mail", + "mailbox", + "postbox", + "raised" + ], + "value" : "📫" + }, "📪", + { + "keywords" : [ + "closed", + "flag", + "lowered", + "mail", + "mailbox", + "postbox" + ], + "value" : "📪" + }, "📬", + { + "value" : "📬", + "keywords" : [ + "flag", + "mail", + "mailbox", + "open", + "postbox", + "raised" + ] + }, "📭", + { + "value" : "📭", + "keywords" : [ + "flag", + "lowered", + "mail", + "mailbox", + "open", + "postbox" + ] + }, "📮", + { + "value" : "📮", + "keywords" : [ + "mail", + "mailbox", + "postbox" + ] + }, "🗳️", + { + "keywords" : [ + "ballot", + "box" + ], + "value" : "🗳️" + }, "✏️", + { + "keywords" : [ + "pencil" + ], + "value" : "✏️" + }, "✒️", + { + "keywords" : [ + "black", + "nib", + "pen" + ], + "value" : "✒️" + }, "🖋️", + { + "keywords" : [ + "fountain", + "pen" + ], + "value" : "🖋️" + }, "🖊️", + { + "value" : "🖊️", + "keywords" : [ + "ballpoint", + "pen" + ] + }, "🖌️", + { + "keywords" : [ + "paintbrush", + "painting" + ], + "value" : "🖌️" + }, "🖍️", + { + "value" : "🖍️", + "keywords" : [ + "crayon" + ] + }, "📝", + { + "value" : "📝", + "keywords" : [ + "communication", + "media", + "memo", + "notes", + "pencil" + ] + }, "💼", + { + "value" : "💼", + "keywords" : [ + "briefcase", + "office" + ] + }, "📁", + { + "keywords" : [ + "file", + "folder" + ], + "value" : "📁" + }, "📂", + { + "value" : "📂", + "keywords" : [ + "file", + "folder", + "open" + ] + }, "🗂️", + { + "keywords" : [ + "card", + "dividers", + "index" + ], + "value" : "🗂️" + }, "📅", + { + "value" : "📅", + "keywords" : [ + "calendar", + "date" + ] + }, "📆", + { + "keywords" : [ + "calendar", + "tear-off" + ], + "value" : "📆" + }, "🗒️", + { + "keywords" : [ + "note", + "notepad", + "pad", + "spiral" + ], + "value" : "🗒️" + }, "🗓️", + { + "value" : "🗓️", + "keywords" : [ + "calendar", + "pad", + "spiral" + ] + }, "📇", + { + "value" : "📇", + "keywords" : [ + "card", + "index", + "old", + "rolodex", + "school" + ] + }, "📈", + { + "value" : "📈", + "keywords" : [ + "chart", + "data", + "graph", + "growth", + "increasing", + "right", + "trend", + "up", + "upward" + ] + }, "📉", + { + "value" : "📉", + "keywords" : [ + "chart", + "data", + "decreasing", + "down", + "downward", + "graph", + "negative", + "trend" + ] + }, "📊", + { + "keywords" : [ + "bar", + "chart", + "data", + "graph" + ], + "value" : "📊" + }, "📋", + { + "value" : "📋", + "keywords" : [ + "clipboard", + "do", + "list", + "notes" + ] + }, "📌", + { + "keywords" : [ + "collage", + "pin", + "pushpin" + ], + "value" : "📌" + }, "📍", + { + "value" : "📍", + "keywords" : [ + "location", + "map", + "pin", + "pushpin", + "round" + ] + }, "📎", + { + "value" : "📎", + "keywords" : [ + "paperclip" + ] + }, "🖇️", + { + "value" : "🖇️", + "keywords" : [ + "link", + "linked", + "paperclip", + "paperclips" + ] + }, "📏", + { + "keywords" : [ + "angle", + "edge", + "math", + "ruler", + "straight", + "straightedge" + ], + "value" : "📏" + }, "📐", + { + "keywords" : [ + "angle", + "math", + "rule", + "ruler", + "set", + "slide", + "triangle", + "triangular" + ], + "value" : "📐" + }, "✂️", + { + "value" : "✂️", + "keywords" : [ + "cut", + "cutting", + "paper", + "scissors", + "tool" + ] + }, "🗃️", + { + "keywords" : [ + "box", + "card", + "file" + ], + "value" : "🗃️" + }, "🗄️", + { + "keywords" : [ + "cabinet", + "file", + "filing", + "paper" + ], + "value" : "🗄️" + }, "🗑️", + { + "value" : "🗑️", + "keywords" : [ + "wastebasket", + "trash", + "can", + "waste", + "garbage" + ] + }, "🔒", + { + "value" : "🔒", + "keywords" : [ + "closed", + "lock", + "locked", + "private" + ] + }, "🔓", + { + "value" : "🔓", + "keywords" : [ + "cracked", + "lock", + "open", + "unlock", + "unlocked" + ] + }, "🔏", + { + "value" : "🔏", + "keywords" : [ + "ink", + "lock", + "locked", + "nib", + "pen", + "privacy" + ] + }, "🔐", + { + "keywords" : [ + "bike", + "closed", + "key", + "lock", + "locked", + "secure" + ], + "value" : "🔐" + }, "🔑", + { + "value" : "🔑", + "keywords" : [ + "key", + "keys", + "lock", + "major", + "password", + "unlock" + ] + }, "🗝️", + { + "value" : "🗝️", + "keywords" : [ + "clue", + "key", + "lock", + "old" + ] + }, "🔨", + { + "value" : "🔨", + "keywords" : [ + "hammer", + "home", + "improvement", + "repairs", + "tool" + ] + }, "🪓", + { + "keywords" : [ + "ax", + "axe", + "chop", + "hatchet", + "split", + "wood" + ], + "value" : "🪓" + }, "⛏️", + { + "value" : "⛏️", + "keywords" : [ + "hammer", + "mining", + "pick", + "tool" + ] + }, "⚒️", + { + "keywords" : [ + "hammer", + "pick", + "tool" + ], + "value" : "⚒️" + }, "🛠️", + { + "keywords" : [ + "hammer", + "spanner", + "tool", + "wrench" + ], + "value" : "🛠️" + }, "🗡️", + { + "value" : "🗡️", + "keywords" : [ + "dagger", + "knife", + "weapon" + ] + }, "⚔️", + { + "keywords" : [ + "crossed", + "swords", + "weapon" + ], + "value" : "⚔️" + }, "💣", + { + "keywords" : [ + "bomb", + "boom", + "comic", + "dangerous", + "explosion", + "hot" + ], + "value" : "💣" + }, "🪃", + { + "value" : "🪃", + "keywords" : [ + "boomerang", + "rebound", + "repercussion", + "weapon" + ] + }, "🏹", + { + "value" : "🏹", + "keywords" : [ + "archer", + "archery", + "arrow", + "bow", + "Sagittarius", + "tool", + "weapon", + "zodiac" + ] + }, "🛡️", + { + "value" : "🛡️", + "keywords" : [ + "shield", + "weapon" + ] + }, "🪚", + { + "value" : "🪚", + "keywords" : [ + "carpenter", + "carpentry", + "cut", + "lumber", + "saw", + "tool", + "trim" + ] + }, "🔧", + { + "value" : "🔧", + "keywords" : [ + "home", + "improvement", + "spanner", + "tool", + "wrench" + ] + }, "🪛", + { + "value" : "🪛", + "keywords" : [ + "flathead", + "handy", + "screw", + "screwdriver", + "tool" + ] + }, "🔩", + { + "value" : "🔩", + "keywords" : [ + "bolt", + "home", + "improvement", + "nut", + "tool" + ] + }, "⚙️", + { + "value" : "⚙️", + "keywords" : [ + "cog", + "cogwheel", + "gear", + "tool" + ] + }, "🗜️", + { + "keywords" : [ + "clamp", + "compress", + "tool", + "vice" + ], + "value" : "🗜️" + }, "⚖️", + { + "value" : "⚖️", + "keywords" : [ + "balance", + "justice", + "Libra", + "scale", + "scales", + "tool", + "weight", + "zodiac" + ] + }, "🦯", + { + "value" : "🦯", + "keywords" : [ + "accessibility", + "blind", + "cane", + "probing", + "white" + ] + }, "🔗", + { + "value" : "🔗", + "keywords" : [ + "link", + "links" + ] + }, "⛓️", + { + "value" : "⛓️", + "keywords" : [ + "chain", + "chains" + ] + }, "🪝", + { + "value" : "🪝", + "keywords" : [ + "catch", + "crook", + "curve", + "ensnare", + "hook", + "point", + "selling" + ] + }, "🧰", + { + "value" : "🧰", + "keywords" : [ + "box", + "chest", + "mechanic", + "red", + "tool", + "toolbox" + ] + }, "🧲", + { + "value" : "🧲", + "keywords" : [ + "attraction", + "horseshoe", + "magnet", + "magnetic", + "negative", + "positive", + "shape", + "u" + ] + }, "🪜", + { + "value" : "🪜", + "keywords" : [ + "climb", + "ladder", + "rung", + "step" + ] + }, "⚗️", + { + "value" : "⚗️", + "keywords" : [ + "alembic", + "chemistry", + "tool" + ] + }, "🧪", + { + "value" : "🧪", + "keywords" : [ + "chemist", + "chemistry", + "experiment", + "lab", + "science", + "test", + "tube" + ] + }, "🧫", + { + "keywords" : [ + "bacteria", + "biologist", + "biology", + "culture", + "dish", + "lab", + "petri" + ], + "value" : "🧫" + }, "🧬", + { + "value" : "🧬", + "keywords" : [ + "biologist", + "dna", + "evolution", + "gene", + "genetics", + "life" + ] + }, "🔬", + { + "keywords" : [ + "experiment", + "lab", + "microscope", + "science", + "tool" + ], + "value" : "🔬" + }, "🔭", + { + "keywords" : [ + "contact", + "extraterrestrial", + "science", + "telescope", + "tool" + ], + "value" : "🔭" + }, "📡", + { + "keywords" : [ + "aliens", + "antenna", + "contact", + "dish", + "satellite", + "science" + ], + "value" : "📡" + }, "💉", + { + "value" : "💉", + "keywords" : [ + "doctor", + "flu", + "medicine", + "needle", + "shot", + "sick", + "syringe", + "tool", + "vaccination" + ] + }, "🩸", + { + "value" : "🩸", + "keywords" : [ + "bleed", + "blood", + "donation", + "drop", + "injury", + "medicine", + "menstruation" + ] + }, "💊", + { + "keywords" : [ + "doctor", + "drugs", + "medicated", + "medicine", + "pill", + "pills", + "sick", + "vitamin" + ], + "value" : "💊" + }, "🩹", + { + "keywords" : [ + "adhesive", + "bandage" + ], + "value" : "🩹" + }, "🩼", + { + "keywords" : [ + "aid", + "cane", + "crutch", + "disability", + "help", + "hurt", + "injured", + "mobility", + "stick" + ], + "value" : "🩼" + }, "🩺", + { + "keywords" : [ + "doctor", + "heart", + "medicine", + "stethoscope" + ], + "value" : "🩺" + }, "🩻", + { + "keywords" : [ + "bones", + "doctor", + "medical", + "skeleton", + "skull", + "x-ray", + "xray" + ], + "value" : "🩻" + }, "🚪", + { + "keywords" : [ + "back", + "closet", + "door", + "front" + ], + "value" : "🚪" + }, "🛗", + { + "value" : "🛗", + "keywords" : [ + "accessibility", + "elevator", + "hoist", + "lift" + ] + }, "🪞", + { + "value" : "🪞", + "keywords" : [ + "makeup", + "mirror", + "reflection", + "reflector", + "speculum" + ] + }, "🪟", + { + "value" : "🪟", + "keywords" : [ + "air", + "frame", + "fresh", + "opening", + "transparent", + "view", + "window" + ] + }, "🛏️", + { + "keywords" : [ + "bed", + "hotel", + "sleep" + ], + "value" : "🛏️" + }, "🛋️", + { + "keywords" : [ + "couch", + "hotel", + "lamp" + ], + "value" : "🛋️" + }, "🪑", + { + "keywords" : [ + "chair", + "seat", + "sit" + ], + "value" : "🪑" + }, "🚽", + { + "value" : "🚽", + "keywords" : [ + "bathroom", + "toilet" + ] + }, "🪠", + { + "value" : "🪠", + "keywords" : [ + "cup", + "force", + "plumber", + "plunger", + "poop", + "suction", + "toilet" + ] + }, "🚿", + { + "value" : "🚿", + "keywords" : [ + "shower", + "water" + ] + }, "🛁", + { + "value" : "🛁", + "keywords" : [ + "bath", + "bathtub" + ] + }, "🪤", + { + "keywords" : [ + "bait", + "cheese", + "lure", + "mouse", + "mousetrap", + "snare", + "trap" + ], + "value" : "🪤" + }, "🪒", + { + "value" : "🪒", + "keywords" : [ + "razor", + "sharp", + "shave" + ] + }, "🧴", + { + "value" : "🧴", + "keywords" : [ + "bottle", + "lotion", + "moisturizer", + "shampoo", + "sunscreen" + ] + }, "🧷", + { + "value" : "🧷", + "keywords" : [ + "diaper", + "pin", + "punk", + "rock", + "safety" + ] + }, "🧹", + { + "value" : "🧹", + "keywords" : [ + "broom", + "cleaning", + "sweeping", + "witch" + ] + }, "🧺", + { + "value" : "🧺", + "keywords" : [ + "basket", + "farming", + "laundry", + "picnic" + ] + }, "🧻", + { + "value" : "🧻", + "keywords" : [ + "paper", + "roll", + "toilet", + "towels" + ] + }, "🪣", + { + "value" : "🪣", + "keywords" : [ + "bucket", + "cask", + "pail", + "vat" + ] + }, "🧼", + { + "value" : "🧼", + "keywords" : [ + "bar", + "bathing", + "clean", + "cleaning", + "lather", + "soap", + "soapdish" + ] + }, "🫧", + { + "value" : "🫧", + "keywords" : [ + "bubble", + "bubbles", + "burp", + "clean", + "floating", + "pearl", + "soap", + "underwater" + ] + }, "🪥", + { + "keywords" : [ + "bathroom", + "brush", + "clean", + "dental", + "hygiene", + "teeth", + "toiletry", + "toothbrush" + ], + "value" : "🪥" + }, "🧽", + { + "value" : "🧽", + "keywords" : [ + "absorbing", + "cleaning", + "porous", + "soak", + "sponge" + ] + }, "🧯", + { + "value" : "🧯", + "keywords" : [ + "extinguish", + "extinguisher", + "fire", + "quench" + ] + }, "🛒", + { + "value" : "🛒", + "keywords" : [ + "cart", + "shopping", + "trolley" + ] + }, "🚬", + { + "value" : "🚬", + "keywords" : [ + "cigarette", + "smoking" + ] + }, "⚰️", + { + "keywords" : [ + "coffin", + "dead", + "death", + "vampire" + ], + "value" : "⚰️" + }, "🪦", + { + "value" : "🪦", + "keywords" : [ + "cemetery", + "dead", + "grave", + "graveyard", + "headstone", + "memorial", + "rip", + "tomb", + "tombstone" + ] + }, "⚱️", + { + "keywords" : [ + "ashes", + "death", + "funeral", + "urn" + ], + "value" : "⚱️" + }, "🧿", + { + "keywords" : [ + "amulet", + "bead", + "blue", + "charm", + "evil-eye", + "nazar", + "talisman" + ], + "value" : "🧿" + }, "🪬", + { + "value" : "🪬", + "keywords" : [ + "amulet", + "Fatima", + "fortune", + "guide", + "hamsa", + "hand", + "Mary", + "Miriam", + "palm", + "protect", + "protection" + ] + }, "🗿", + { + "keywords" : [ + "face", + "moai", + "moyai", + "statue", + "stoneface", + "travel" + ], + "value" : "🗿" + }, "🪧", - "🪪" - ] + { + "keywords" : [ + "card", + "demonstration", + "notice", + "picket", + "placard", + "plaque", + "protest", + "sign" + ], + "value" : "🪧" + }, + "🪪", + { + "value" : "🪪", + "keywords" : [ + "card", + "credentials", + "document", + "ID", + "identification", + "license", + "security" + ] + } + ], + "appleCategory" : "objects", + "name" : "Objects" }, { - "name" : "Travel & Places", - "values" : [ + "emojis" : [ "🌍", + { + "value" : "🌍", + "keywords" : [ + "Africa", + "earth", + "Europe", + "Europe-Africa", + "globe", + "showing", + "world" + ] + }, "🌎", + { + "value" : "🌎", + "keywords" : [ + "Americas", + "earth", + "globe", + "showing", + "world" + ] + }, "🌏", + { + "value" : "🌏", + "keywords" : [ + "Asia", + "Asia-Australia", + "Australia", + "earth", + "globe", + "showing", + "world" + ] + }, "🌐", + { + "value" : "🌐", + "keywords" : [ + "earth", + "globe", + "internet", + "meridians", + "web", + "world", + "worldwide" + ] + }, "🗺️", + { + "keywords" : [ + "map", + "world" + ], + "value" : "🗺️" + }, "🗾", + { + "value" : "🗾", + "keywords" : [ + "Japan", + "map" + ] + }, "🧭", + { + "keywords" : [ + "compass", + "direction", + "magnetic", + "navigation", + "orienteering" + ], + "value" : "🧭" + }, "🏔️", + { + "value" : "🏔️", + "keywords" : [ + "cold", + "mountain", + "snow", + "snow-capped" + ] + }, "⛰️", + { + "value" : "⛰️", + "keywords" : [ + "mountain" + ] + }, "🌋", + { + "keywords" : [ + "eruption", + "mountain", + "nature", + "volcano" + ], + "value" : "🌋" + }, "🗻", + { + "value" : "🗻", + "keywords" : [ + "fuji", + "mount", + "mountain", + "nature" + ] + }, "🏕️", + { + "keywords" : [ + "camping" + ], + "value" : "🏕️" + }, "🏖️", + { + "value" : "🏖️", + "keywords" : [ + "beach", + "umbrella" + ] + }, "🏜️", + { + "keywords" : [ + "desert" + ], + "value" : "🏜️" + }, "🏝️", + { + "value" : "🏝️", + "keywords" : [ + "desert", + "island" + ] + }, "🏞️", + { + "keywords" : [ + "national", + "park" + ], + "value" : "🏞️" + }, "🏟️", + { + "value" : "🏟️", + "keywords" : [ + "stadium" + ] + }, "🏛️", + { + "value" : "🏛️", + "keywords" : [ + "building", + "classical" + ] + }, "🏗️", + { + "keywords" : [ + "building", + "construction", + "crane" + ], + "value" : "🏗️" + }, "🧱", + { + "value" : "🧱", + "keywords" : [ + "brick", + "bricks", + "clay", + "mortar", + "wall" + ] + }, "🪨", + { + "value" : "🪨", + "keywords" : [ + "boulder", + "heavy", + "rock", + "solid", + "stone", + "tough" + ] + }, "🪵", + { + "value" : "🪵", + "keywords" : [ + "log", + "lumber", + "timber", + "wood" + ] + }, "🛖", + { + "keywords" : [ + "home", + "house", + "hut", + "roundhouse", + "shelter", + "yurt" + ], + "value" : "🛖" + }, "🏘️", + { + "keywords" : [ + "house", + "houses" + ], + "value" : "🏘️" + }, "🏚️", + { + "keywords" : [ + "derelict", + "home", + "house" + ], + "value" : "🏚️" + }, "🏠", + { + "value" : "🏠", + "keywords" : [ + "building", + "country", + "heart", + "home", + "house", + "ranch", + "settle", + "simple", + "suburban", + "suburbia", + "where" + ] + }, "🏡", + { + "keywords" : [ + "building", + "country", + "garden", + "heart", + "home", + "house", + "ranch", + "settle", + "simple", + "suburban", + "suburbia", + "where" + ], + "value" : "🏡" + }, "🏢", + { + "value" : "🏢", + "keywords" : [ + "building", + "city", + "cubical", + "job", + "office" + ] + }, "🏣", + { + "value" : "🏣", + "keywords" : [ + "building", + "Japanese", + "office", + "post" + ] + }, "🏤", + { + "keywords" : [ + "building", + "European", + "office", + "post" + ], + "value" : "🏤" + }, "🏥", + { + "value" : "🏥", + "keywords" : [ + "building", + "doctor", + "hospital", + "medicine" + ] + }, "🏦", + { + "keywords" : [ + "bank", + "building" + ], + "value" : "🏦" + }, "🏨", + { + "keywords" : [ + "building", + "hotel" + ], + "value" : "🏨" + }, "🏩", + { + "keywords" : [ + "building", + "hotel", + "love" + ], + "value" : "🏩" + }, "🏪", + { + "keywords" : [ + "24", + "building", + "convenience", + "hours", + "store" + ], + "value" : "🏪" + }, "🏫", + { + "value" : "🏫", + "keywords" : [ + "building", + "school" + ] + }, "🏬", + { + "keywords" : [ + "building", + "department", + "store" + ], + "value" : "🏬" + }, "🏭", + { + "keywords" : [ + "building", + "factory" + ], + "value" : "🏭" + }, "🏯", + { + "keywords" : [ + "building", + "castle", + "Japanese" + ], + "value" : "🏯" + }, "🏰", + { + "value" : "🏰", + "keywords" : [ + "building", + "castle", + "European" + ] + }, "💒", + { + "value" : "💒", + "keywords" : [ + "chapel", + "hitched", + "nuptials", + "romance", + "wedding" + ] + }, "🗼", + { + "value" : "🗼", + "keywords" : [ + "Tokyo", + "tower" + ] + }, "🗽", + { + "value" : "🗽", + "keywords" : [ + "liberty", + "Liberty", + "new", + "ny", + "nyc", + "statue", + "Statue", + "york" + ] + }, "⛪", + { + "keywords" : [ + "bless", + "chapel", + "Christian", + "church", + "cross", + "religion" + ], + "value" : "⛪" + }, "🕌", + { + "keywords" : [ + "islam", + "masjid", + "mosque", + "Muslim", + "religion" + ], + "value" : "🕌" + }, "🛕", + { + "keywords" : [ + "hindu", + "temple" + ], + "value" : "🛕" + }, "🕍", + { + "keywords" : [ + "Jew", + "Jewish", + "judaism", + "religion", + "synagogue", + "temple" + ], + "value" : "🕍" + }, "⛩️", + { + "value" : "⛩️", + "keywords" : [ + "religion", + "shinto", + "shrine" + ] + }, "🕋", + { + "value" : "🕋", + "keywords" : [ + "hajj", + "islam", + "kaaba", + "Muslim", + "religion", + "umrah" + ] + }, "⛲", + { + "value" : "⛲", + "keywords" : [ + "fountain" + ] + }, "⛺", + { + "keywords" : [ + "camping", + "tent" + ], + "value" : "⛺" + }, "🌁", + { + "keywords" : [ + "fog", + "foggy" + ], + "value" : "🌁" + }, "🌃", + { + "keywords" : [ + "night", + "star", + "stars" + ], + "value" : "🌃" + }, "🏙️", + { + "value" : "🏙️", + "keywords" : [ + "city", + "cityscape" + ] + }, "🌄", + { + "keywords" : [ + "morning", + "mountains", + "over", + "sun", + "sunrise" + ], + "value" : "🌄" + }, "🌅", + { + "value" : "🌅", + "keywords" : [ + "morning", + "nature", + "sun", + "sunrise" + ] + }, "🌆", + { + "keywords" : [ + "at", + "building", + "city", + "cityscape", + "dusk", + "evening", + "landscape", + "sun", + "sunset" + ], + "value" : "🌆" + }, "🌇", + { + "value" : "🌇", + "keywords" : [ + "building", + "dusk", + "sun", + "sunset" + ] + }, "🌉", + { + "value" : "🌉", + "keywords" : [ + "at", + "bridge", + "night" + ] + }, "♨️", + { + "keywords" : [ + "hot", + "hotsprings", + "springs", + "steaming" + ], + "value" : "♨️" + }, "🎠", + { + "keywords" : [ + "carousel", + "entertainment", + "horse" + ], + "value" : "🎠" + }, "🛝", + { + "keywords" : [ + "amusement", + "park", + "play", + "playground", + "playing", + "slide", + "sliding", + "theme" + ], + "value" : "🛝" + }, "🎡", + { + "value" : "🎡", + "keywords" : [ + "amusement", + "ferris", + "park", + "theme", + "wheel" + ] + }, "🎢", + { + "keywords" : [ + "amusement", + "coaster", + "park", + "roller", + "theme" + ], + "value" : "🎢" + }, "💈", + { + "value" : "💈", + "keywords" : [ + "barber", + "cut", + "fresh", + "haircut", + "pole", + "shave" + ] + }, "🎪", + { + "keywords" : [ + "circus", + "tent" + ], + "value" : "🎪" + }, "🚂", + { + "value" : "🚂", + "keywords" : [ + "caboose", + "engine", + "locomotive", + "railway", + "steam", + "train", + "trains", + "travel" + ] + }, "🚃", + { + "keywords" : [ + "car", + "electric", + "railway", + "train", + "tram", + "travel", + "trolleybus" + ], + "value" : "🚃" + }, "🚄", + { + "keywords" : [ + "high-speed", + "railway", + "shinkansen", + "speed", + "train" + ], + "value" : "🚄" + }, "🚅", + { + "keywords" : [ + "bullet", + "high-speed", + "nose", + "railway", + "shinkansen", + "speed", + "train", + "travel" + ], + "value" : "🚅" + }, "🚆", + { + "keywords" : [ + "arrived", + "choo", + "railway", + "train" + ], + "value" : "🚆" + }, "🚇", + { + "keywords" : [ + "metro", + "subway", + "travel" + ], + "value" : "🚇" + }, "🚈", + { + "keywords" : [ + "arrived", + "light", + "monorail", + "rail", + "railway" + ], + "value" : "🚈" + }, "🚉", + { + "value" : "🚉", + "keywords" : [ + "railway", + "station", + "train" + ] + }, "🚊", + { + "keywords" : [ + "tram", + "trolleybus" + ], + "value" : "🚊" + }, "🚝", + { + "value" : "🚝", + "keywords" : [ + "monorail", + "vehicle" + ] + }, "🚞", + { + "value" : "🚞", + "keywords" : [ + "car", + "mountain", + "railway", + "trip" + ] + }, "🚋", + { + "value" : "🚋", + "keywords" : [ + "bus", + "car", + "tram", + "trolley", + "trolleybus" + ] + }, "🚌", + { + "value" : "🚌", + "keywords" : [ + "bus", + "school", + "vehicle" + ] + }, "🚍", + { + "value" : "🚍", + "keywords" : [ + "bus", + "cars", + "oncoming" + ] + }, "🚎", + { + "keywords" : [ + "bus", + "tram", + "trolley", + "trolleybus" + ], + "value" : "🚎" + }, "🚐", + { + "value" : "🚐", + "keywords" : [ + "bus", + "drive", + "minibus", + "van", + "vehicle" + ] + }, "🚑", + { + "value" : "🚑", + "keywords" : [ + "ambulance", + "emergency", + "vehicle" + ] + }, "🚒", + { + "keywords" : [ + "engine", + "fire", + "truck" + ], + "value" : "🚒" + }, "🚓", + { + "keywords" : [ + "5–0", + "car", + "cops", + "patrol", + "police" + ], + "value" : "🚓" + }, "🚔", + { + "keywords" : [ + "car", + "oncoming", + "police" + ], + "value" : "🚔" + }, "🚕", + { + "keywords" : [ + "cab", + "cabbie", + "car", + "drive", + "taxi", + "vehicle", + "yellow" + ], + "value" : "🚕" + }, "🚖", + { + "keywords" : [ + "cab", + "cabbie", + "cars", + "drove", + "hail", + "oncoming", + "taxi", + "yellow" + ], + "value" : "🚖" + }, "🚗", + { + "value" : "🚗", + "keywords" : [ + "automobile", + "car", + "driving", + "vehicle" + ] + }, "🚘", + { + "value" : "🚘", + "keywords" : [ + "automobile", + "car", + "cars", + "drove", + "oncoming", + "vehicle" + ] + }, "🚙", + { + "value" : "🚙", + "keywords" : [ + "car", + "drive", + "recreational", + "sport", + "sportutility", + "utility", + "vehicle" + ] + }, "🛻", + { + "keywords" : [ + "automobile", + "car", + "flatbed", + "pick-up", + "pickup", + "transportation", + "truck" + ], + "value" : "🛻" + }, "🚚", + { + "value" : "🚚", + "keywords" : [ + "car", + "delivery", + "drive", + "truck", + "vehicle" + ] + }, "🚛", + { + "value" : "🚛", + "keywords" : [ + "articulated", + "car", + "drive", + "lorry", + "move", + "semi", + "truck", + "vehicle" + ] + }, "🚜", + { + "keywords" : [ + "tractor", + "vehicle" + ], + "value" : "🚜" + }, "🏎️", + { + "value" : "🏎️", + "keywords" : [ + "car", + "racing", + "zoom" + ] + }, "🏍️", + { + "keywords" : [ + "motorcycle", + "racing" + ], + "value" : "🏍️" + }, "🛵", + { + "keywords" : [ + "motor", + "scooter" + ], + "value" : "🛵" + }, "🦽", + { + "keywords" : [ + "accessibility", + "manual", + "wheelchair" + ], + "value" : "🦽" + }, "🦼", + { + "keywords" : [ + "accessibility", + "motorized", + "wheelchair" + ], + "value" : "🦼" + }, "🛺", + { + "keywords" : [ + "auto", + "rickshaw", + "tuk" + ], + "value" : "🛺" + }, "🚲", + { + "value" : "🚲", + "keywords" : [ + "bicycle", + "bike", + "class", + "cycle", + "cycling", + "cyclist", + "gang", + "ride", + "spin", + "spinning" + ] + }, "🛴", + { + "keywords" : [ + "kick", + "scooter" + ], + "value" : "🛴" + }, "🛹", + { + "value" : "🛹", + "keywords" : [ + "board", + "skate", + "skateboard", + "skater", + "wheels" + ] + }, "🛼", + { + "keywords" : [ + "blades", + "roller", + "skate", + "skates", + "sport" + ], + "value" : "🛼" + }, "🚏", + { + "value" : "🚏", + "keywords" : [ + "bus", + "busstop", + "stop" + ] + }, "🛣️", + { + "keywords" : [ + "highway", + "motorway", + "road" + ], + "value" : "🛣️" + }, "🛤️", + { + "keywords" : [ + "railway", + "track", + "train" + ], + "value" : "🛤️" + }, "🛢️", + { + "keywords" : [ + "drum", + "oil" + ], + "value" : "🛢️" + }, "⛽", + { + "value" : "⛽", + "keywords" : [ + "diesel", + "fuel", + "fuelpump", + "gas", + "gasoline", + "pump", + "station" + ] + }, "🛞", + { + "value" : "🛞", + "keywords" : [ + "car", + "circle", + "tire", + "turn", + "vehicle", + "wheel" + ] + }, "🚨", + { + "value" : "🚨", + "keywords" : [ + "alarm", + "alert", + "beacon", + "car", + "emergency", + "light", + "police", + "revolving", + "siren" + ] + }, "🚥", + { + "keywords" : [ + "horizontal", + "intersection", + "light", + "signal", + "stop", + "stoplight", + "traffic" + ], + "value" : "🚥" + }, "🚦", + { + "value" : "🚦", + "keywords" : [ + "drove", + "intersection", + "light", + "signal", + "stop", + "stoplight", + "traffic", + "vertical" + ] + }, "🛑", + { + "value" : "🛑", + "keywords" : [ + "octagonal", + "sign", + "stop" + ] + }, "🚧", + { + "keywords" : [ + "barrier", + "construction" + ], + "value" : "🚧" + }, "⚓", + { + "keywords" : [ + "anchor", + "ship", + "tool" + ], + "value" : "⚓" + }, "🛟", + { + "value" : "🛟", + "keywords" : [ + "buoy", + "float", + "life", + "lifesaver", + "preserver", + "rescue", + "ring", + "safety", + "save", + "saver", + "swim" + ] + }, "⛵", + { + "keywords" : [ + "boat", + "resort", + "sailboat", + "sailing", + "sea", + "yacht" + ], + "value" : "⛵" + }, "🛶", + { + "value" : "🛶", + "keywords" : [ + "boat", + "canoe" + ] + }, "🚤", + { + "value" : "🚤", + "keywords" : [ + "billionaire", + "boat", + "lake", + "luxury", + "millionaire", + "speedboat", + "summer", + "travel" + ] + }, "🛳️", + { + "keywords" : [ + "passenger", + "ship" + ], + "value" : "🛳️" + }, "⛴️", + { + "keywords" : [ + "boat", + "ferry", + "passenger" + ], + "value" : "⛴️" + }, "🛥️", + { + "value" : "🛥️", + "keywords" : [ + "boat", + "motor", + "motorboat" + ] + }, "🚢", + { + "value" : "🚢", + "keywords" : [ + "boat", + "passenger", + "ship", + "travel" + ] + }, "✈️", + { + "keywords" : [ + "aeroplane", + "airplane", + "fly", + "flying", + "jet", + "plane", + "travel" + ], + "value" : "✈️" + }, "🛩️", + { + "value" : "🛩️", + "keywords" : [ + "aeroplane", + "airplane", + "plane", + "small" + ] + }, "🛫", + { + "value" : "🛫", + "keywords" : [ + "aeroplane", + "airplane", + "check-in", + "departure", + "departures", + "plane" + ] + }, "🛬", + { + "keywords" : [ + "aeroplane", + "airplane", + "arrival", + "arrivals", + "arriving", + "landing", + "plane" + ], + "value" : "🛬" + }, "🪂", + { + "value" : "🪂", + "keywords" : [ + "hang-glide", + "parachute", + "parasail", + "skydive" + ] + }, "💺", + { + "value" : "💺", + "keywords" : [ + "chair", + "seat" + ] + }, "🚁", + { + "keywords" : [ + "copter", + "helicopter", + "roflcopter", + "travel", + "vehicle" + ], + "value" : "🚁" + }, "🚟", + { + "keywords" : [ + "railway", + "suspension" + ], + "value" : "🚟" + }, "🚠", + { + "value" : "🚠", + "keywords" : [ + "cable", + "cableway", + "gondola", + "lift", + "mountain", + "ski" + ] + }, "🚡", + { + "value" : "🚡", + "keywords" : [ + "aerial", + "cable", + "car", + "gondola", + "ropeway", + "tramway" + ] + }, "🛰️", + { + "value" : "🛰️", + "keywords" : [ + "satellite", + "space" + ] + }, "🚀", + { + "keywords" : [ + "launch", + "rocket", + "rockets", + "space", + "travel" + ], + "value" : "🚀" + }, "🛸", + { + "keywords" : [ + "aliens", + "extra", + "flying", + "saucer", + "terrestrial", + "UFO" + ], + "value" : "🛸" + }, "🛎️", + { + "value" : "🛎️", + "keywords" : [ + "bell", + "bellhop", + "hotel" + ] + }, "🧳", + { + "keywords" : [ + "bag", + "luggage", + "packing", + "roller", + "suitcase", + "travel" + ], + "value" : "🧳" + }, "⌛", + { + "keywords" : [ + "done", + "hourglass", + "sand", + "time", + "timer" + ], + "value" : "⌛" + }, "⏳", + { + "keywords" : [ + "done", + "flowing", + "hourglass", + "hours", + "not", + "sand", + "timer", + "waiting", + "yolo" + ], + "value" : "⏳" + }, "⌚", + { + "keywords" : [ + "clock", + "time", + "watch" + ], + "value" : "⌚" + }, "⏰", + { + "value" : "⏰", + "keywords" : [ + "alarm", + "clock", + "hours", + "hrs", + "late", + "time", + "waiting" + ] + }, "⏱️", + { + "keywords" : [ + "clock", + "stopwatch", + "time" + ], + "value" : "⏱️" + }, "⏲️", + { + "value" : "⏲️", + "keywords" : [ + "clock", + "timer" + ] + }, "🕰️", + { + "value" : "🕰️", + "keywords" : [ + "clock", + "mantelpiece", + "time" + ] + }, "🕛", + { + "value" : "🕛", + "keywords" : [ + "12", + "12:00", + "clock", + "o’clock", + "time", + "twelve" + ] + }, "🕧", + { + "value" : "🕧", + "keywords" : [ + "12", + "12:30", + "30", + "clock", + "thirty", + "time", + "twelve", + "twelve-thirty" + ] + }, "🕐", + { + "keywords" : [ + "1", + "1:00", + "clock", + "o’clock", + "one", + "time" + ], + "value" : "🕐" + }, "🕜", + { + "value" : "🕜", + "keywords" : [ + "1", + "1:30", + "30", + "clock", + "one", + "one-thirty", + "thirty", + "time" + ] + }, "🕑", + { + "value" : "🕑", + "keywords" : [ + "2", + "2:00", + "clock", + "o’clock", + "time", + "two" + ] + }, "🕝", + { + "keywords" : [ + "2", + "2:30", + "30", + "clock", + "thirty", + "time", + "two", + "two-thirty" + ], + "value" : "🕝" + }, "🕒", + { + "keywords" : [ + "3", + "3:00", + "clock", + "o’clock", + "three", + "time" + ], + "value" : "🕒" + }, "🕞", + { + "keywords" : [ + "3", + "3:30", + "30", + "clock", + "thirty", + "three", + "three-thirty", + "time" + ], + "value" : "🕞" + }, "🕓", + { + "value" : "🕓", + "keywords" : [ + "4", + "4:00", + "clock", + "four", + "o’clock", + "time" + ] + }, "🕟", + { + "value" : "🕟", + "keywords" : [ + "30", + "4", + "4:30", + "clock", + "four", + "four-thirty", + "thirty", + "time" + ] + }, "🕔", + { + "value" : "🕔", + "keywords" : [ + "5", + "5:00", + "clock", + "five", + "o’clock", + "time" + ] + }, "🕠", + { + "value" : "🕠", + "keywords" : [ + "30", + "5", + "5:30", + "clock", + "five", + "five-thirty", + "thirty", + "time" + ] + }, "🕕", + { + "keywords" : [ + "6", + "6:00", + "clock", + "o’clock", + "six", + "time" + ], + "value" : "🕕" + }, "🕡", + { + "value" : "🕡", + "keywords" : [ + "30", + "6", + "6:30", + "clock", + "six", + "six-thirty", + "thirty" + ] + }, "🕖", + { + "value" : "🕖", + "keywords" : [ + "0", + "7", + "7:00", + "clock", + "o’clock", + "seven" + ] + }, "🕢", + { + "value" : "🕢", + "keywords" : [ + "30", + "7", + "7:30", + "clock", + "seven", + "seven-thirty", + "thirty" + ] + }, "🕗", + { + "value" : "🕗", + "keywords" : [ + "8", + "8:00", + "clock", + "eight", + "o’clock", + "time" + ] + }, "🕣", + { + "value" : "🕣", + "keywords" : [ + "30", + "8", + "8:30", + "clock", + "eight", + "eight-thirty", + "thirty", + "time" + ] + }, "🕘", + { + "value" : "🕘", + "keywords" : [ + "9", + "9:00", + "clock", + "nine", + "o’clock", + "time" + ] + }, "🕤", + { + "value" : "🕤", + "keywords" : [ + "30", + "9", + "9:30", + "clock", + "nine", + "nine-thirty", + "thirty", + "time" + ] + }, "🕙", + { + "keywords" : [ + "0", + "10", + "10:00", + "clock", + "o’clock", + "ten" + ], + "value" : "🕙" + }, "🕥", + { + "keywords" : [ + "10", + "10:30", + "30", + "clock", + "ten", + "ten-thirty", + "thirty", + "time" + ], + "value" : "🕥" + }, "🕚", + { + "value" : "🕚", + "keywords" : [ + "11", + "11:00", + "clock", + "eleven", + "o’clock", + "time" + ] + }, "🕦", + { + "keywords" : [ + "11", + "11:30", + "30", + "clock", + "eleven", + "eleven-thirty", + "thirty", + "time" + ], + "value" : "🕦" + }, "🌑", + { + "value" : "🌑", + "keywords" : [ + "dark", + "moon", + "new", + "space" + ] + }, "🌒", + { + "value" : "🌒", + "keywords" : [ + "crescent", + "dreams", + "moon", + "space", + "waxing" + ] + }, "🌓", + { + "keywords" : [ + "first", + "moon", + "quarter", + "space" + ], + "value" : "🌓" + }, "🌔", + { + "value" : "🌔", + "keywords" : [ + "gibbous", + "moon", + "space", + "waxing" + ] + }, "🌕", + { + "value" : "🌕", + "keywords" : [ + "full", + "moon", + "space" + ] + }, "🌖", + { + "keywords" : [ + "gibbous", + "moon", + "space", + "waning" + ], + "value" : "🌖" + }, "🌗", + { + "value" : "🌗", + "keywords" : [ + "last", + "moon", + "quarter", + "space" + ] + }, "🌘", + { + "keywords" : [ + "crescent", + "moon", + "space", + "waning" + ], + "value" : "🌘" + }, "🌙", + { + "value" : "🌙", + "keywords" : [ + "crescent", + "moon", + "ramadan", + "space" + ] + }, "🌚", + { + "keywords" : [ + "face", + "moon", + "new", + "space" + ], + "value" : "🌚" + }, "🌛", + { + "value" : "🌛", + "keywords" : [ + "face", + "first", + "moon", + "quarter", + "space" + ] + }, "🌜", + { + "keywords" : [ + "dreams", + "face", + "last", + "moon", + "quarter" + ], + "value" : "🌜" + }, "🌡️", + { + "keywords" : [ + "thermometer", + "weather" + ], + "value" : "🌡️" + }, "☀️", + { + "value" : "☀️", + "keywords" : [ + "bright", + "rays", + "space", + "sun", + "sunny", + "weather" + ] + }, "🌝", + { + "value" : "🌝", + "keywords" : [ + "bright", + "face", + "full", + "moon" + ] + }, "🌞", + { + "keywords" : [ + "beach", + "bright", + "day", + "face", + "heat", + "shine", + "sun", + "sunny", + "sunshine", + "weather" + ], + "value" : "🌞" + }, "🪐", + { + "keywords" : [ + "planet", + "ringed", + "saturn", + "saturnine" + ], + "value" : "🪐" + }, "⭐", + { + "keywords" : [ + "astronomy", + "medium", + "star", + "stars", + "white" + ], + "value" : "⭐" + }, "🌟", + { + "keywords" : [ + "glittery", + "glow", + "glowing", + "night", + "shining", + "sparkle", + "star", + "win" + ], + "value" : "🌟" + }, "🌠", + { + "keywords" : [ + "falling", + "night", + "shooting", + "space", + "star" + ], + "value" : "🌠" + }, "🌌", + { + "keywords" : [ + "milky", + "space", + "way" + ], + "value" : "🌌" + }, "☁️", + { + "keywords" : [ + "cloud", + "weather" + ], + "value" : "☁️" + }, "⛅", + { + "value" : "⛅", + "keywords" : [ + "behind", + "cloud", + "cloudy", + "sun", + "weather" + ] + }, "⛈️", + { + "value" : "⛈️", + "keywords" : [ + "cloud", + "lightning", + "rain", + "thunder", + "thunderstorm" + ] + }, "🌤️", + { + "value" : "🌤️", + "keywords" : [ + "behind", + "cloud", + "sun", + "weather" + ] + }, "🌥️", + { + "keywords" : [ + "behind", + "cloud", + "sun", + "weather" + ], + "value" : "🌥️" + }, "🌦️", + { + "value" : "🌦️", + "keywords" : [ + "behind", + "cloud", + "rain", + "sun", + "weather" + ] + }, "🌧️", + { + "value" : "🌧️", + "keywords" : [ + "cloud", + "rain", + "weather" + ] + }, "🌨️", + { + "keywords" : [ + "cloud", + "cold", + "snow", + "weather" + ], + "value" : "🌨️" + }, "🌩️", + { + "keywords" : [ + "cloud", + "lightning", + "weather" + ], + "value" : "🌩️" + }, "🌪️", + { + "keywords" : [ + "cloud", + "tornado", + "weather", + "whirlwind" + ], + "value" : "🌪️" + }, "🌫️", + { + "value" : "🌫️", + "keywords" : [ + "cloud", + "fog", + "weather" + ] + }, "🌬️", + { + "keywords" : [ + "blow", + "cloud", + "face", + "wind" + ], + "value" : "🌬️" + }, "🌀", + { + "value" : "🌀", + "keywords" : [ + "cyclone", + "dizzy", + "hurricane", + "twister", + "typhoon", + "weather" + ] + }, "🌈", + { + "value" : "🌈", + "keywords" : [ + "gay", + "genderqueer", + "glbt", + "glbtq", + "lesbian", + "lgbt", + "lgbtq", + "lgbtqia", + "nature", + "pride", + "queer", + "rain", + "rainbow", + "trans", + "transgender", + "weather" + ] + }, "🌂", + { + "value" : "🌂", + "keywords" : [ + "closed", + "clothing", + "rain", + "umbrella" + ] + }, "☂️", + { + "value" : "☂️", + "keywords" : [ + "clothing", + "rain", + "umbrella" + ] + }, "☔", + { + "value" : "☔", + "keywords" : [ + "clothing", + "drop", + "drops", + "rain", + "umbrella", + "weather" + ] + }, "⛱️", + { + "keywords" : [ + "ground", + "rain", + "sun", + "umbrella" + ], + "value" : "⛱️" + }, "⚡", + { + "value" : "⚡", + "keywords" : [ + "danger", + "electric", + "electricity", + "high", + "lightning", + "nature", + "thunder", + "thunderbolt", + "voltage", + "zap" + ] + }, "❄️", + { + "keywords" : [ + "cold", + "snow", + "snowflake", + "weather" + ], + "value" : "❄️" + }, "☃️", + { + "keywords" : [ + "cold", + "snow", + "snowman", + "man" + ], + "value" : "☃️" + }, "⛄", + { + "value" : "⛄", + "keywords" : [ + "cold", + "snow", + "snowman", + "man" + ] + }, "☄️", + { + "value" : "☄️", + "keywords" : [ + "comet", + "space" + ] + }, "🔥", + { + "keywords" : [ + "af", + "burn", + "fire", + "flame", + "hot", + "lit", + "litaf", + "tool" + ], + "value" : "🔥" + }, "💧", - "🌊" - ] + { + "keywords" : [ + "cold", + "comic", + "drop", + "droplet", + "nature", + "sad", + "sweat", + "tear", + "water", + "weather" + ], + "value" : "💧" + }, + "🌊", + { + "keywords" : [ + "nature", + "ocean", + "surf", + "surfer", + "surfing", + "water", + "wave" + ], + "value" : "🌊" + } + ], + "name" : "Travel & Places", + "appleCategory" : "travelAndPlaces" }, { "name" : "Symbols", - "values" : [ + "appleCategory" : "symbols", + "emojis" : [ "🏧", + { + "value" : "🏧", + "keywords" : [ + "ATM", + "automated", + "bank", + "cash", + "money", + "sign", + "teller" + ] + }, "🚮", + { + "value" : "🚮", + "keywords" : [ + "bin", + "litter", + "litterbin", + "sign" + ] + }, "🚰", + { + "keywords" : [ + "drinking", + "potable", + "water" + ], + "value" : "🚰" + }, "♿", + { + "value" : "♿", + "keywords" : [ + "access", + "handicap", + "symbol", + "wheelchair" + ] + }, "🚹", + { + "value" : "🚹", + "keywords" : [ + "bathroom", + "lavatory", + "man", + "men’s", + "restroom", + "room", + "toilet", + "WC" + ] + }, "🚺", + { + "value" : "🚺", + "keywords" : [ + "bathroom", + "lavatory", + "restroom", + "room", + "toilet", + "WC", + "woman", + "women’s" + ] + }, "🚻", + { + "keywords" : [ + "bathroom", + "lavatory", + "restroom", + "toilet", + "WC" + ], + "value" : "🚻" + }, "🚼", + { + "value" : "🚼", + "keywords" : [ + "baby", + "changing", + "symbol" + ] + }, "🚾", + { + "keywords" : [ + "bathroom", + "closet", + "lavatory", + "restroom", + "toilet", + "water", + "WC" + ], + "value" : "🚾" + }, "🛂", + { + "value" : "🛂", + "keywords" : [ + "control", + "passport" + ] + }, "🛃", + { + "value" : "🛃", + "keywords" : [ + "customs", + "packing" + ] + }, "🛄", + { + "value" : "🛄", + "keywords" : [ + "arrived", + "baggage", + "bags", + "case", + "checked", + "claim", + "journey", + "packing", + "plane", + "ready", + "travel", + "trip" + ] + }, "🛅", + { + "keywords" : [ + "baggage", + "case", + "left", + "locker", + "luggage" + ], + "value" : "🛅" + }, "⚠️", + { + "keywords" : [ + "caution", + "warning" + ], + "value" : "⚠️" + }, "🚸", + { + "value" : "🚸", + "keywords" : [ + "child", + "children", + "crossing", + "pedestrian", + "traffic" + ] + }, "⛔", + { + "value" : "⛔", + "keywords" : [ + "do", + "entry", + "fail", + "forbidden", + "no", + "not", + "pass", + "prohibited", + "traffic" + ] + }, "🚫", + { + "value" : "🚫", + "keywords" : [ + "entry", + "forbidden", + "no", + "not", + "prohibited", + "smoke" + ] + }, "🚳", + { + "keywords" : [ + "bicycle", + "bicycles", + "bike", + "forbidden", + "no", + "not", + "prohibited" + ], + "value" : "🚳" + }, "🚭", + { + "value" : "🚭", + "keywords" : [ + "forbidden", + "no", + "not", + "prohibited", + "smoke", + "smoking" + ] + }, "🚯", + { + "keywords" : [ + "forbidden", + "litter", + "littering", + "no", + "not", + "prohibited" + ], + "value" : "🚯" + }, "🚱", + { + "keywords" : [ + "dry", + "non-drinking", + "non-potable", + "prohibited", + "water" + ], + "value" : "🚱" + }, "🚷", + { + "keywords" : [ + "forbidden", + "no", + "not", + "pedestrian", + "pedestrians", + "prohibited" + ], + "value" : "🚷" + }, "📵", + { + "value" : "📵", + "keywords" : [ + "cell", + "forbidden", + "mobile", + "no", + "not", + "phone", + "phones", + "prohibited", + "telephone" + ] + }, "🔞", + { + "keywords" : [ + "18", + "age", + "eighteen", + "forbidden", + "no", + "not", + "one", + "prohibited", + "restriction", + "underage" + ], + "value" : "🔞" + }, "☢️", + { + "value" : "☢️", + "keywords" : [ + "radioactive", + "sign" + ] + }, "☣️", + { + "keywords" : [ + "biohazard", + "sign" + ], + "value" : "☣️" + }, "⬆️", + { + "keywords" : [ + "arrow", + "cardinal", + "direction", + "north", + "up" + ], + "value" : "⬆️" + }, "↗️", + { + "keywords" : [ + "arrow", + "direction", + "intercardinal", + "northeast", + "up-right" + ], + "value" : "↗️" + }, "➡️", + { + "keywords" : [ + "arrow", + "cardinal", + "direction", + "east", + "right" + ], + "value" : "➡️" + }, "↘️", + { + "keywords" : [ + "arrow", + "direction", + "down-right", + "intercardinal", + "southeast" + ], + "value" : "↘️" + }, "⬇️", + { + "value" : "⬇️", + "keywords" : [ + "arrow", + "cardinal", + "direction", + "down", + "south" + ] + }, "↙️", + { + "value" : "↙️", + "keywords" : [ + "arrow", + "direction", + "down-left", + "intercardinal", + "southwest" + ] + }, "⬅️", + { + "value" : "⬅️", + "keywords" : [ + "arrow", + "cardinal", + "direction", + "left", + "west" + ] + }, "↖️", + { + "value" : "↖️", + "keywords" : [ + "arrow", + "direction", + "intercardinal", + "northwest", + "up-left" + ] + }, "↕️", + { + "value" : "↕️", + "keywords" : [ + "arrow", + "up-down" + ] + }, "↔️", + { + "keywords" : [ + "arrow", + "left-right" + ], + "value" : "↔️" + }, "↩️", + { + "keywords" : [ + "arrow", + "curving", + "left", + "right" + ], + "value" : "↩️" + }, "↪️", + { + "value" : "↪️", + "keywords" : [ + "arrow", + "curving", + "left", + "right" + ] + }, "⤴️", + { + "keywords" : [ + "arrow", + "curving", + "right", + "up" + ], + "value" : "⤴️" + }, "⤵️", + { + "value" : "⤵️", + "keywords" : [ + "arrow", + "curving", + "down", + "right" + ] + }, "🔃", + { + "keywords" : [ + "arrow", + "arrows", + "clockwise", + "refresh", + "reload", + "vertical" + ], + "value" : "🔃" + }, "🔄", + { + "value" : "🔄", + "keywords" : [ + "again", + "anticlockwise", + "arrow", + "arrows", + "button", + "counterclockwise", + "deja", + "vu", + "refresh", + "rewindershins" + ] + }, "🔙", + { + "value" : "🔙", + "keywords" : [ + "arrow", + "BACK" + ] + }, "🔚", + { + "keywords" : [ + "arrow", + "END" + ], + "value" : "🔚" + }, "🔛", + { + "keywords" : [ + "arrow", + "mark", + "ON!" + ], + "value" : "🔛" + }, "🔜", + { + "keywords" : [ + "arrow", + "brb", + "omw", + "SOON" + ], + "value" : "🔜" + }, "🔝", + { + "value" : "🔝", + "keywords" : [ + "arrow", + "homie", + "TOP", + "up" + ] + }, "🛐", + { + "value" : "🛐", + "keywords" : [ + "place", + "pray", + "religion", + "worship" + ] + }, "⚛️", + { + "value" : "⚛️", + "keywords" : [ + "atheist", + "atom", + "symbol" + ] + }, "🕉️", + { + "value" : "🕉️", + "keywords" : [ + "Hindu", + "om", + "religion" + ] + }, "✡️", + { + "value" : "✡️", + "keywords" : [ + "David", + "Jew", + "Jewish", + "judaism", + "religion", + "star" + ] + }, "☸️", + { + "keywords" : [ + "Buddhist", + "dharma", + "religion", + "wheel" + ], + "value" : "☸️" + }, "☯️", + { + "value" : "☯️", + "keywords" : [ + "difficult", + "lives", + "religion", + "tao", + "taoist", + "total", + "yang", + "yin", + "yinyang" + ] + }, "✝️", + { + "keywords" : [ + "christ", + "Christian", + "cross", + "latin", + "religion" + ], + "value" : "✝️" + }, "☦️", + { + "value" : "☦️", + "keywords" : [ + "Christian", + "cross", + "orthodox", + "religion" + ] + }, "☪️", + { + "value" : "☪️", + "keywords" : [ + "crescent", + "islam", + "Muslim", + "ramadan", + "religion", + "star" + ] + }, "☮️", + { + "value" : "☮️", + "keywords" : [ + "healing", + "peace", + "peaceful", + "symbol" + ] + }, "🕎", + { + "keywords" : [ + "candelabrum", + "candlestick", + "hanukkah", + "jewish", + "judaism", + "menorah", + "religion" + ], + "value" : "🕎" + }, "🔯", + { + "keywords" : [ + "dotted", + "fortune", + "jewish", + "judaism", + "six-pointed", + "star" + ], + "value" : "🔯" + }, "🪯", + { + "value" : "🪯", + "keywords" : [ + "Deg", + "Fateh", + "Khalsa", + "Khanda", + "religion", + "Sikh", + "Sikhism", + "Tegh" + ] + }, "♈", + { + "keywords" : [ + "Aries", + "horoscope", + "ram", + "zodiac" + ], + "value" : "♈" + }, "♉", + { + "keywords" : [ + "bull", + "horoscope", + "ox", + "Taurus", + "zodiac" + ], + "value" : "♉" + }, "♊", + { + "keywords" : [ + "Gemini", + "horoscope", + "twins", + "zodiac" + ], + "value" : "♊" + }, "♋", + { + "keywords" : [ + "Cancer", + "crab", + "horoscope", + "zodiac" + ], + "value" : "♋" + }, "♌", + { + "value" : "♌", + "keywords" : [ + "horoscope", + "Leo", + "lion", + "zodiac" + ] + }, "♍", + { + "value" : "♍", + "keywords" : [ + "horoscope", + "Virgo", + "zodiac" + ] + }, "♎", + { + "value" : "♎", + "keywords" : [ + "balance", + "horoscope", + "justice", + "Libra", + "scales", + "zodiac" + ] + }, "♏", + { + "keywords" : [ + "horoscope", + "Scorpio", + "scorpion", + "Scorpius", + "zodiac" + ], + "value" : "♏" + }, "♐", + { + "value" : "♐", + "keywords" : [ + "archer", + "horoscope", + "Sagittarius", + "zodiac" + ] + }, "♑", + { + "value" : "♑", + "keywords" : [ + "Capricorn", + "goat", + "horoscope", + "zodiac" + ] + }, "♒", + { + "value" : "♒", + "keywords" : [ + "Aquarius", + "bearer", + "horoscope", + "water", + "zodiac" + ] + }, "♓", + { + "keywords" : [ + "fish", + "horoscope", + "Pisces", + "zodiac" + ], + "value" : "♓" + }, "⛎", + { + "keywords" : [ + "bearer", + "Ophiuchus", + "serpent", + "snake", + "zodiac" + ], + "value" : "⛎" + }, "🔀", + { + "value" : "🔀", + "keywords" : [ + "arrow", + "button", + "crossed", + "shuffle", + "tracks" + ] + }, "🔁", + { + "value" : "🔁", + "keywords" : [ + "arrow", + "button", + "clockwise", + "repeat" + ] + }, "🔂", + { + "keywords" : [ + "arrow", + "button", + "clockwise", + "once", + "repeat", + "single" + ], + "value" : "🔂" + }, "▶️", + { + "value" : "▶️", + "keywords" : [ + "arrow", + "button", + "play", + "right", + "triangle" + ] + }, "⏩", + { + "value" : "⏩", + "keywords" : [ + "arrow", + "button", + "double", + "fast", + "fast-forward", + "forward" + ] + }, "⏭️", + { + "value" : "⏭️", + "keywords" : [ + "arrow", + "button", + "next", + "scene", + "track", + "triangle" + ] + }, "⏯️", + { + "value" : "⏯️", + "keywords" : [ + "arrow", + "button", + "pause", + "play", + "right", + "triangle" + ] + }, "◀️", + { + "value" : "◀️", + "keywords" : [ + "arrow", + "button", + "left", + "reverse", + "triangle" + ] + }, "⏪", + { + "keywords" : [ + "arrow", + "button", + "double", + "fast", + "reverse", + "rewind" + ], + "value" : "⏪" + }, "⏮️", + { + "value" : "⏮️", + "keywords" : [ + "arrow", + "button", + "last", + "previous", + "scene", + "track", + "triangle" + ] + }, "🔼", + { + "keywords" : [ + "arrow", + "button", + "red", + "up", + "upwards" + ], + "value" : "🔼" + }, "⏫", + { + "value" : "⏫", + "keywords" : [ + "arrow", + "button", + "double", + "fast", + "up" + ] + }, "🔽", + { + "value" : "🔽", + "keywords" : [ + "arrow", + "button", + "down", + "downwards", + "red" + ] + }, "⏬", + { + "value" : "⏬", + "keywords" : [ + "arrow", + "button", + "double", + "down", + "fast" + ] + }, "⏸️", + { + "value" : "⏸️", + "keywords" : [ + "bar", + "button", + "double", + "pause", + "vertical" + ] + }, "⏹️", + { + "keywords" : [ + "button", + "square", + "stop" + ], + "value" : "⏹️" + }, "⏺️", + { + "value" : "⏺️", + "keywords" : [ + "button", + "circle", + "record" + ] + }, "⏏️", + { + "value" : "⏏️", + "keywords" : [ + "button", + "eject" + ] + }, "🎦", + { + "value" : "🎦", + "keywords" : [ + "camera", + "cinema", + "film", + "movie" + ] + }, "🔅", + { + "keywords" : [ + "brightness", + "button", + "dim", + "low" + ], + "value" : "🔅" + }, "🔆", + { + "value" : "🔆", + "keywords" : [ + "bright", + "brightness", + "button", + "light" + ] + }, "📶", + { + "value" : "📶", + "keywords" : [ + "antenna", + "bar", + "bars", + "cell", + "communication", + "mobile", + "phone", + "signal", + "telephone" + ] + }, "🛜", + { + "keywords" : [ + "broadband", + "computer", + "connectivity", + "hotspot", + "internet", + "network", + "router", + "smartphone", + "wi-fi", + "wifi", + "wireless", + "wlan" + ], + "value" : "🛜" + }, "📳", + { + "value" : "📳", + "keywords" : [ + "cell", + "communication", + "mobile", + "mode", + "phone", + "telephone", + "vibration" + ] + }, "📴", + { + "value" : "📴", + "keywords" : [ + "cell", + "mobile", + "off", + "phone", + "telephone" + ] + }, "♀️", + { + "keywords" : [ + "female", + "sign", + "woman" + ], + "value" : "♀️" + }, "♂️", + { + "value" : "♂️", + "keywords" : [ + "male", + "man", + "sign" + ] + }, "⚧️", + { + "value" : "⚧️", + "keywords" : [ + "symbol", + "transgender" + ] + }, "✖️", + { + "keywords" : [ + "×", + "cancel", + "multiplication", + "multiply", + "sign", + "x" + ], + "value" : "✖️" + }, "➕", + { + "value" : "➕", + "keywords" : [ + "+", + "plus" + ] + }, "➖", + { + "value" : "➖", + "keywords" : [ + "-", + "−", + "heavy", + "math", + "minus", + "sign" + ] + }, "➗", + { + "keywords" : [ + "÷", + "divide", + "division", + "heavy", + "math", + "sign" + ], + "value" : "➗" + }, "🟰", + { + "value" : "🟰", + "keywords" : [ + "answer", + "equal", + "equality", + "equals", + "heavy", + "math", + "sign" + ] + }, "♾️", + { + "keywords" : [ + "forever", + "infinity", + "unbounded", + "universal" + ], + "value" : "♾️" + }, "‼️", + { + "value" : "‼️", + "keywords" : [ + "!", + "!!", + "bangbang", + "double", + "exclamation", + "mark", + "punctuation" + ] + }, "⁉️", + { + "value" : "⁉️", + "keywords" : [ + "!", + "!?", + "?", + "exclamation", + "interrobang", + "mark", + "punctuation", + "question" + ] + }, "❓", + { + "value" : "❓", + "keywords" : [ + "?", + "mark", + "punctuation", + "question", + "red" + ] + }, "❔", + { + "value" : "❔", + "keywords" : [ + "?", + "mark", + "outlined", + "punctuation", + "question", + "white" + ] + }, "❕", + { + "keywords" : [ + "!", + "exclamation", + "mark", + "outlined", + "punctuation", + "white" + ], + "value" : "❕" + }, "❗", + { + "keywords" : [ + "!", + "exclamation", + "mark", + "punctuation", + "red" + ], + "value" : "❗" + }, "〰️", + { + "keywords" : [ + "dash", + "punctuation", + "wavy" + ], + "value" : "〰️" + }, "💱", + { + "keywords" : [ + "bank", + "currency", + "exchange", + "money" + ], + "value" : "💱" + }, "💲", + { + "keywords" : [ + "billion", + "cash", + "charge", + "currency", + "dollar", + "heavy", + "million", + "money", + "pay", + "sign" + ], + "value" : "💲" + }, "⚕️", + { + "keywords" : [ + "aesculapius", + "medical", + "medicine", + "staff", + "symbol" + ], + "value" : "⚕️" + }, "♻️", + { + "value" : "♻️", + "keywords" : [ + "recycle", + "recycling", + "symbol" + ] + }, "⚜️", + { + "keywords" : [ + "fleur-de-lis", + "knights" + ], + "value" : "⚜️" + }, "🔱", + { + "value" : "🔱", + "keywords" : [ + "anchor", + "emblem", + "poseidon", + "ship", + "tool", + "trident" + ] + }, "📛", + { + "keywords" : [ + "badge", + "name" + ], + "value" : "📛" + }, "🔰", + { + "value" : "🔰", + "keywords" : [ + "beginner", + "chevron", + "green", + "Japanese", + "leaf", + "symbol", + "tool", + "yellow" + ] + }, "⭕", + { + "keywords" : [ + "circle", + "heavy", + "hollow", + "large", + "o", + "red" + ], + "value" : "⭕" + }, "✅", + { + "value" : "✅", + "keywords" : [ + "✓", + "button", + "check", + "checked", + "checkmark", + "complete", + "completed", + "done", + "fixed", + "mark", + "tick" + ] + }, "☑️", + { + "keywords" : [ + "✓", + "ballot", + "box", + "check", + "checked", + "done", + "off", + "tick" + ], + "value" : "☑️" + }, "✔️", + { + "value" : "✔️", + "keywords" : [ + "✓", + "check", + "checked", + "checkmark", + "done", + "heavy", + "mark", + "tick" + ] + }, "❌", + { + "value" : "❌", + "keywords" : [ + "×", + "cancel", + "cross", + "mark", + "multiplication", + "multiply", + "x" + ] + }, "❎", + { + "keywords" : [ + "×", + "button", + "cross", + "mark", + "multiplication", + "multiply", + "square", + "x" + ], + "value" : "❎" + }, "➰", + { + "value" : "➰", + "keywords" : [ + "curl", + "curly", + "loop" + ] + }, "➿", + { + "keywords" : [ + "curl", + "curly", + "double", + "loop" + ], + "value" : "➿" + }, "〽️", + { + "value" : "〽️", + "keywords" : [ + "alternation", + "mark", + "part" + ] + }, "✳️", + { + "value" : "✳️", + "keywords" : [ + "*", + "asterisk", + "eight-spoked" + ] + }, "✴️", + { + "keywords" : [ + "*", + "eight-pointed", + "star" + ], + "value" : "✴️" + }, "❇️", + { + "keywords" : [ + "*", + "sparkle" + ], + "value" : "❇️" + }, "©️", + { + "keywords" : [ + "C", + "copyright" + ], + "value" : "©️" + }, "®️", + { + "value" : "®️", + "keywords" : [ + "R", + "registered" + ] + }, "™️", + { + "value" : "™️", + "keywords" : [ + "mark", + "TM", + "trade", + "trademark" + ] + }, "#️⃣", + { + "keywords" : [ + "keycap", + "keycap: #" + ], + "value" : "#️⃣" + }, "*️⃣", + { + "value" : "*️⃣", + "keywords" : [ + "keycap", + "keycap: *" + ] + }, "0️⃣", + { + "keywords" : [ + "keycap", + "keycap: 0" + ], + "value" : "0️⃣" + }, "1️⃣", + { + "value" : "1️⃣", + "keywords" : [ + "keycap", + "keycap: 1" + ] + }, "2️⃣", + { + "value" : "2️⃣", + "keywords" : [ + "keycap", + "keycap: 2" + ] + }, "3️⃣", + { + "value" : "3️⃣", + "keywords" : [ + "keycap", + "keycap: 3" + ] + }, "4️⃣", + { + "keywords" : [ + "keycap", + "keycap: 4" + ], + "value" : "4️⃣" + }, "5️⃣", + { + "value" : "5️⃣", + "keywords" : [ + "keycap", + "keycap: 5" + ] + }, "6️⃣", + { + "value" : "6️⃣", + "keywords" : [ + "keycap", + "keycap: 6" + ] + }, "7️⃣", + { + "keywords" : [ + "keycap", + "keycap: 7" + ], + "value" : "7️⃣" + }, "8️⃣", + { + "value" : "8️⃣", + "keywords" : [ + "keycap", + "keycap: 8" + ] + }, "9️⃣", + { + "value" : "9️⃣", + "keywords" : [ + "keycap", + "keycap: 9" + ] + }, "🔟", + { + "value" : "🔟", + "keywords" : [ + "keycap", + "keycap: 10" + ] + }, "🔠", + { + "value" : "🔠", + "keywords" : [ + "ABCD", + "input", + "latin", + "letters", + "uppercase" + ] + }, "🔡", + { + "value" : "🔡", + "keywords" : [ + "abcd", + "input", + "latin", + "letters", + "lowercase" + ] + }, "🔢", + { + "keywords" : [ + "1234", + "input", + "numbers" + ], + "value" : "🔢" + }, "🔣", + { + "keywords" : [ + "&", + "%", + "♪", + "〒", + "input", + "symbols" + ], + "value" : "🔣" + }, "🔤", + { + "value" : "🔤", + "keywords" : [ + "abc", + "alphabet", + "input", + "latin", + "letters" + ] + }, "🅰️", + { + "keywords" : [ + "blood", + "button", + "type" + ], + "value" : "🅰️" + }, "🆎", + { + "value" : "🆎", + "keywords" : [ + "AB", + "blood", + "button", + "type" + ] + }, "🅱️", + { + "keywords" : [ + "B", + "blood", + "button", + "type" + ], + "value" : "🅱️" + }, "🆑", + { + "keywords" : [ + "button", + "CL" + ], + "value" : "🆑" + }, "🆒", + { + "value" : "🆒", + "keywords" : [ + "button", + "COOL" + ] + }, "🆓", + { + "value" : "🆓", + "keywords" : [ + "button", + "FREE" + ] + }, "ℹ️", + { + "value" : "ℹ️", + "keywords" : [ + "I", + "information" + ] + }, "🆔", + { + "value" : "🆔", + "keywords" : [ + "button", + "ID", + "identity" + ] + }, "Ⓜ️", + { + "value" : "Ⓜ️", + "keywords" : [ + "circle", + "circled", + "M" + ] + }, "🆕", + { + "value" : "🆕", + "keywords" : [ + "button", + "NEW" + ] + }, "🆖", + { + "value" : "🆖", + "keywords" : [ + "button", + "NG" + ] + }, "🅾️", + { + "value" : "🅾️", + "keywords" : [ + "blood", + "button", + "O", + "type" + ] + }, "🆗", + { + "keywords" : [ + "button", + "OK", + "okay" + ], + "value" : "🆗" + }, "🅿️", + { + "value" : "🅿️", + "keywords" : [ + "button", + "P", + "parking" + ] + }, "🆘", + { + "value" : "🆘", + "keywords" : [ + "button", + "help", + "SOS" + ] + }, "🆙", + { + "keywords" : [ + "button", + "mark", + "UP", + "UP!" + ], + "value" : "🆙" + }, "🆚", + { + "keywords" : [ + "button", + "versus", + "VS" + ], + "value" : "🆚" + }, "🈁", + { + "value" : "🈁", + "keywords" : [ + "button", + "here", + "Japanese", + "katakana" + ] + }, "🈂️", + { + "keywords" : [ + "button", + "charge", + "Japanese", + "katakana", + "service" + ], + "value" : "🈂️" + }, "🈷️", + { + "keywords" : [ + "amount", + "button", + "ideograph", + "Japanese", + "monthly" + ], + "value" : "🈷️" + }, "🈶", + { + "value" : "🈶", + "keywords" : [ + "button", + "charge", + "free", + "ideograph", + "Japanese", + "not" + ] + }, "🈯", + { + "value" : "🈯", + "keywords" : [ + "button", + "ideograph", + "Japanese", + "reserved" + ] + }, "🉐", + { + "value" : "🉐", + "keywords" : [ + "bargain", + "button", + "ideograph", + "Japanese" + ] + }, "🈹", + { + "value" : "🈹", + "keywords" : [ + "button", + "discount", + "ideograph", + "Japanese" + ] + }, "🈚", + { + "keywords" : [ + "button", + "charge", + "free", + "ideograph", + "Japanese" + ], + "value" : "🈚" + }, "🈲", + { + "value" : "🈲", + "keywords" : [ + "button", + "ideograph", + "Japanese", + "prohibited" + ] + }, "🉑", + { + "keywords" : [ + "acceptable", + "button", + "ideograph", + "Japanese" + ], + "value" : "🉑" + }, "🈸", + { + "value" : "🈸", + "keywords" : [ + "application", + "button", + "ideograph", + "Japanese" + ] + }, "🈴", + { + "value" : "🈴", + "keywords" : [ + "button", + "grade", + "ideograph", + "Japanese", + "passing" + ] + }, "🈳", + { + "value" : "🈳", + "keywords" : [ + "button", + "ideograph", + "Japanese", + "vacancy" + ] + }, "㊗️", + { + "keywords" : [ + "button", + "congratulations", + "ideograph", + "Japanese" + ], + "value" : "㊗️" + }, "㊙️", + { + "value" : "㊙️", + "keywords" : [ + "button", + "ideograph", + "Japanese", + "secret" + ] + }, "🈺", + { + "value" : "🈺", + "keywords" : [ + "business", + "button", + "ideograph", + "Japanese", + "open" + ] + }, "🈵", + { + "value" : "🈵", + "keywords" : [ + "button", + "ideograph", + "Japanese", + "no", + "vacancy" + ] + }, "🔴", + { + "value" : "🔴", + "keywords" : [ + "circle", + "geometric", + "red" + ] + }, "🟠", + { + "value" : "🟠", + "keywords" : [ + "circle", + "orange" + ] + }, "🟡", + { + "keywords" : [ + "circle", + "yellow" + ], + "value" : "🟡" + }, "🟢", + { + "keywords" : [ + "circle", + "green" + ], + "value" : "🟢" + }, "🔵", + { + "value" : "🔵", + "keywords" : [ + "blue", + "circle", + "geometric" + ] + }, "🟣", + { + "keywords" : [ + "circle", + "purple" + ], + "value" : "🟣" + }, "🟤", + { + "value" : "🟤", + "keywords" : [ + "brown", + "circle" + ] + }, "⚫", + { + "value" : "⚫", + "keywords" : [ + "black", + "circle", + "geometric" + ] + }, "⚪", + { + "value" : "⚪", + "keywords" : [ + "circle", + "geometric", + "white" + ] + }, "🟥", + { + "keywords" : [ + "card", + "penalty", + "red", + "square" + ], + "value" : "🟥" + }, "🟧", + { + "keywords" : [ + "orange", + "square" + ], + "value" : "🟧" + }, "🟨", + { + "value" : "🟨", + "keywords" : [ + "card", + "penalty", + "square", + "yellow" + ] + }, "🟩", + { + "keywords" : [ + "green", + "square" + ], + "value" : "🟩" + }, "🟦", + { + "keywords" : [ + "blue", + "square" + ], + "value" : "🟦" + }, "🟪", + { + "value" : "🟪", + "keywords" : [ + "purple", + "square" + ] + }, "🟫", + { + "value" : "🟫", + "keywords" : [ + "brown", + "square" + ] + }, "⬛", + { + "value" : "⬛", + "keywords" : [ + "black", + "geometric", + "large", + "square" + ] + }, "⬜", + { + "keywords" : [ + "geometric", + "large", + "square", + "white" + ], + "value" : "⬜" + }, "◼️", + { + "value" : "◼️", + "keywords" : [ + "black", + "geometric", + "medium", + "square" + ] + }, "◻️", + { + "keywords" : [ + "geometric", + "medium", + "square", + "white" + ], + "value" : "◻️" + }, "◾", + { + "keywords" : [ + "black", + "geometric", + "medium-small", + "square" + ], + "value" : "◾" + }, "◽", + { + "value" : "◽", + "keywords" : [ + "geometric", + "medium-small", + "square", + "white" + ] + }, "▪️", + { + "keywords" : [ + "black", + "geometric", + "small", + "square" + ], + "value" : "▪️" + }, "▫️", + { + "value" : "▫️", + "keywords" : [ + "geometric", + "small", + "square", + "white" + ] + }, "🔶", + { + "keywords" : [ + "diamond", + "geometric", + "large", + "orange" + ], + "value" : "🔶" + }, "🔷", + { + "keywords" : [ + "blue", + "diamond", + "geometric", + "large" + ], + "value" : "🔷" + }, "🔸", + { + "keywords" : [ + "diamond", + "geometric", + "orange", + "small" + ], + "value" : "🔸" + }, "🔹", + { + "value" : "🔹", + "keywords" : [ + "blue", + "diamond", + "geometric", + "small" + ] + }, "🔺", + { + "keywords" : [ + "geometric", + "pointed", + "red", + "triangle", + "up" + ], + "value" : "🔺" + }, "🔻", + { + "value" : "🔻", + "keywords" : [ + "down", + "geometric", + "pointed", + "red", + "triangle" + ] + }, "💠", + { + "keywords" : [ + "comic", + "diamond", + "dot", + "geometric" + ], + "value" : "💠" + }, "🔘", + { + "value" : "🔘", + "keywords" : [ + "button", + "geometric", + "radio" + ] + }, "🔳", - "🔲" + { + "value" : "🔳", + "keywords" : [ + "button", + "geometric", + "outlined", + "square", + "white" + ] + }, + "🔲", + { + "keywords" : [ + "black", + "button", + "geometric", + "square" + ], + "value" : "🔲" + } ] }, { + "appleCategory" : "smileysAndPeople", "name" : "People & Body", - "values" : [ + "emojis" : [ "👋", + { + "keywords" : [ + "bye", + "cya", + "g2g", + "greetings", + "gtg", + "hand", + "hello", + "hey", + "hi", + "later", + "outtie", + "ttfn", + "ttyl", + "wave", + "yo", + "you" + ], + "value" : "👋" + }, "👋🏻", + { + "value" : "👋🏻", + "keywords" : [ + "hand", + "light skin tone", + "wave", + "waving", + "waving hand: light skin tone" + ] + }, "👋🏼", + { + "value" : "👋🏼", + "keywords" : [ + "hand", + "medium-light skin tone", + "wave", + "waving", + "waving hand: medium-light skin tone" + ] + }, "👋🏽", + { + "keywords" : [ + "hand", + "medium skin tone", + "wave", + "waving", + "waving hand: medium skin tone" + ], + "value" : "👋🏽" + }, "👋🏾", + { + "keywords" : [ + "hand", + "medium-dark skin tone", + "wave", + "waving", + "waving hand: medium-dark skin tone" + ], + "value" : "👋🏾" + }, "👋🏿", + { + "keywords" : [ + "dark skin tone", + "hand", + "wave", + "waving", + "waving hand: dark skin tone" + ], + "value" : "👋🏿" + }, "🤚", + { + "keywords" : [ + "back", + "backhand", + "hand", + "raised" + ], + "value" : "🤚" + }, "🤚🏻", + { + "keywords" : [ + "backhand", + "light skin tone", + "raised", + "raised back of hand", + "raised back of hand: light skin tone" + ], + "value" : "🤚🏻" + }, "🤚🏼", + { + "keywords" : [ + "backhand", + "medium-light skin tone", + "raised", + "raised back of hand", + "raised back of hand: medium-light skin tone" + ], + "value" : "🤚🏼" + }, "🤚🏽", + { + "value" : "🤚🏽", + "keywords" : [ + "backhand", + "medium skin tone", + "raised", + "raised back of hand", + "raised back of hand: medium skin tone" + ] + }, "🤚🏾", + { + "keywords" : [ + "backhand", + "medium-dark skin tone", + "raised", + "raised back of hand", + "raised back of hand: medium-dark skin tone" + ], + "value" : "🤚🏾" + }, "🤚🏿", + { + "value" : "🤚🏿", + "keywords" : [ + "backhand", + "dark skin tone", + "raised", + "raised back of hand", + "raised back of hand: dark skin tone" + ] + }, "🖐️", + { + "keywords" : [ + "finger", + "fingers", + "hand", + "raised", + "splayed", + "stop" + ], + "value" : "🖐️" + }, "🖐🏻", + { + "value" : "🖐🏻", + "keywords" : [ + "finger", + "hand", + "hand with fingers splayed", + "hand with fingers splayed: light skin tone", + "light skin tone", + "splayed" + ] + }, "🖐🏼", + { + "value" : "🖐🏼", + "keywords" : [ + "finger", + "hand", + "hand with fingers splayed", + "hand with fingers splayed: medium-light skin tone", + "medium-light skin tone", + "splayed" + ] + }, "🖐🏽", + { + "keywords" : [ + "finger", + "hand", + "hand with fingers splayed", + "hand with fingers splayed: medium skin tone", + "medium skin tone", + "splayed" + ], + "value" : "🖐🏽" + }, "🖐🏾", + { + "keywords" : [ + "finger", + "hand", + "hand with fingers splayed", + "hand with fingers splayed: medium-dark skin tone", + "medium-dark skin tone", + "splayed" + ], + "value" : "🖐🏾" + }, "🖐🏿", + { + "value" : "🖐🏿", + "keywords" : [ + "dark skin tone", + "finger", + "hand", + "hand with fingers splayed", + "hand with fingers splayed: dark skin tone", + "splayed" + ] + }, "✋", + { + "value" : "✋", + "keywords" : [ + "5", + "five", + "hand", + "high", + "raised", + "stop" + ] + }, "✋🏻", + { + "value" : "✋🏻", + "keywords" : [ + "hand", + "high 5", + "high five", + "light skin tone", + "raised hand", + "raised hand: light skin tone" + ] + }, "✋🏼", + { + "value" : "✋🏼", + "keywords" : [ + "hand", + "high 5", + "high five", + "medium-light skin tone", + "raised hand", + "raised hand: medium-light skin tone" + ] + }, "✋🏽", + { + "value" : "✋🏽", + "keywords" : [ + "hand", + "high 5", + "high five", + "medium skin tone", + "raised hand", + "raised hand: medium skin tone" + ] + }, "✋🏾", + { + "value" : "✋🏾", + "keywords" : [ + "hand", + "high 5", + "high five", + "medium-dark skin tone", + "raised hand", + "raised hand: medium-dark skin tone" + ] + }, "✋🏿", + { + "value" : "✋🏿", + "keywords" : [ + "dark skin tone", + "hand", + "high 5", + "high five", + "raised hand", + "raised hand: dark skin tone" + ] + }, "🖖", + { + "keywords" : [ + "finger", + "hand", + "hands", + "salute" + ], + "value" : "🖖" + }, "🖖🏻", + { + "keywords" : [ + "finger", + "hand", + "light skin tone", + "spock", + "vulcan", + "vulcan salute", + "vulcan salute: light skin tone" + ], + "value" : "🖖🏻" + }, "🖖🏼", + { + "keywords" : [ + "finger", + "hand", + "medium-light skin tone", + "spock", + "vulcan", + "vulcan salute", + "vulcan salute: medium-light skin tone" + ], + "value" : "🖖🏼" + }, "🖖🏽", + { + "value" : "🖖🏽", + "keywords" : [ + "finger", + "hand", + "medium skin tone", + "spock", + "vulcan", + "vulcan salute", + "vulcan salute: medium skin tone" + ] + }, "🖖🏾", + { + "value" : "🖖🏾", + "keywords" : [ + "finger", + "hand", + "medium-dark skin tone", + "spock", + "vulcan", + "vulcan salute", + "vulcan salute: medium-dark skin tone" + ] + }, "🖖🏿", + { + "keywords" : [ + "dark skin tone", + "finger", + "hand", + "spock", + "vulcan", + "vulcan salute", + "vulcan salute: dark skin tone" + ], + "value" : "🖖🏿" + }, "🫱", + { + "keywords" : [ + "hand", + "handshake", + "hold", + "reach", + "right", + "rightward", + "rightwards", + "shake" + ], + "value" : "🫱" + }, "🫱🏻", + { + "keywords" : [ + "hand", + "light skin tone", + "right", + "rightward", + "rightwards hand", + "rightwards hand: light skin tone" + ], + "value" : "🫱🏻" + }, "🫱🏼", + { + "value" : "🫱🏼", + "keywords" : [ + "hand", + "medium-light skin tone", + "right", + "rightward", + "rightwards hand", + "rightwards hand: medium-light skin tone" + ] + }, "🫱🏽", + { + "keywords" : [ + "hand", + "medium skin tone", + "right", + "rightward", + "rightwards hand", + "rightwards hand: medium skin tone" + ], + "value" : "🫱🏽" + }, "🫱🏾", + { + "keywords" : [ + "hand", + "medium-dark skin tone", + "right", + "rightward", + "rightwards hand", + "rightwards hand: medium-dark skin tone" + ], + "value" : "🫱🏾" + }, "🫱🏿", + { + "keywords" : [ + "dark skin tone", + "hand", + "right", + "rightward", + "rightwards hand", + "rightwards hand: dark skin tone" + ], + "value" : "🫱🏿" + }, "🫲", + { + "value" : "🫲", + "keywords" : [ + "hand", + "handshake", + "hold", + "left", + "leftward", + "leftwards", + "reach", + "shake" + ] + }, "🫲🏻", + { + "keywords" : [ + "hand", + "left", + "leftward", + "leftwards hand", + "leftwards hand: light skin tone", + "light skin tone" + ], + "value" : "🫲🏻" + }, "🫲🏼", + { + "keywords" : [ + "hand", + "left", + "leftward", + "leftwards hand", + "leftwards hand: medium-light skin tone", + "medium-light skin tone" + ], + "value" : "🫲🏼" + }, "🫲🏽", + { + "value" : "🫲🏽", + "keywords" : [ + "hand", + "left", + "leftward", + "leftwards hand", + "leftwards hand: medium skin tone", + "medium skin tone" + ] + }, "🫲🏾", + { + "value" : "🫲🏾", + "keywords" : [ + "hand", + "left", + "leftward", + "leftwards hand", + "leftwards hand: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "🫲🏿", + { + "value" : "🫲🏿", + "keywords" : [ + "dark skin tone", + "hand", + "left", + "leftward", + "leftwards hand", + "leftwards hand: dark skin tone" + ] + }, "🫳", + { + "value" : "🫳", + "keywords" : [ + "dismiss", + "down", + "drop", + "dropped", + "hand", + "palm", + "pick", + "shoo", + "up" + ] + }, "🫳🏻", + { + "keywords" : [ + "dismiss", + "drop", + "light skin tone", + "palm down hand", + "palm down hand: light skin tone", + "shoo" + ], + "value" : "🫳🏻" + }, "🫳🏼", + { + "value" : "🫳🏼", + "keywords" : [ + "dismiss", + "drop", + "medium-light skin tone", + "palm down hand", + "palm down hand: medium-light skin tone", + "shoo" + ] + }, "🫳🏽", + { + "value" : "🫳🏽", + "keywords" : [ + "dismiss", + "drop", + "medium skin tone", + "palm down hand", + "palm down hand: medium skin tone", + "shoo" + ] + }, "🫳🏾", + { + "value" : "🫳🏾", + "keywords" : [ + "dismiss", + "drop", + "medium-dark skin tone", + "palm down hand", + "palm down hand: medium-dark skin tone", + "shoo" + ] + }, "🫳🏿", + { + "keywords" : [ + "dark skin tone", + "dismiss", + "drop", + "palm down hand", + "palm down hand: dark skin tone", + "shoo" + ], + "value" : "🫳🏿" + }, "🫴", + { + "keywords" : [ + "beckon", + "catch", + "come", + "hand", + "hold", + "know", + "lift", + "me", + "offer", + "palm", + "tell" + ], + "value" : "🫴" + }, "🫴🏻", + { + "value" : "🫴🏻", + "keywords" : [ + "beckon", + "catch", + "come", + "light skin tone", + "offer", + "palm up hand", + "palm up hand: light skin tone" + ] + }, "🫴🏼", + { + "keywords" : [ + "beckon", + "catch", + "come", + "medium-light skin tone", + "offer", + "palm up hand", + "palm up hand: medium-light skin tone" + ], + "value" : "🫴🏼" + }, "🫴🏽", + { + "keywords" : [ + "beckon", + "catch", + "come", + "medium skin tone", + "offer", + "palm up hand", + "palm up hand: medium skin tone" + ], + "value" : "🫴🏽" + }, "🫴🏾", + { + "keywords" : [ + "beckon", + "catch", + "come", + "medium-dark skin tone", + "offer", + "palm up hand", + "palm up hand: medium-dark skin tone" + ], + "value" : "🫴🏾" + }, "🫴🏿", + { + "value" : "🫴🏿", + "keywords" : [ + "beckon", + "catch", + "come", + "dark skin tone", + "offer", + "palm up hand", + "palm up hand: dark skin tone" + ] + }, "🫷", + { + "keywords" : [ + "block", + "five", + "halt", + "hand", + "high", + "hold", + "leftward", + "leftwards", + "pause", + "push", + "pushing", + "refuse", + "slap", + "stop", + "wait" + ], + "value" : "🫷" + }, "🫷🏻", + { + "value" : "🫷🏻", + "keywords" : [ + "high five", + "leftward", + "leftwards pushing hand", + "leftwards pushing hand: light skin tone", + "light skin tone", + "push", + "refuse", + "stop", + "wait" + ] + }, "🫷🏼", + { + "keywords" : [ + "high five", + "leftward", + "leftwards pushing hand", + "leftwards pushing hand: medium-light skin tone", + "medium-light skin tone", + "push", + "refuse", + "stop", + "wait" + ], + "value" : "🫷🏼" + }, "🫷🏽", + { + "keywords" : [ + "high five", + "leftward", + "leftwards pushing hand", + "leftwards pushing hand: medium skin tone", + "medium skin tone", + "push", + "refuse", + "stop", + "wait" + ], + "value" : "🫷🏽" + }, "🫷🏾", + { + "value" : "🫷🏾", + "keywords" : [ + "high five", + "leftward", + "leftwards pushing hand", + "leftwards pushing hand: medium-dark skin tone", + "medium-dark skin tone", + "push", + "refuse", + "stop", + "wait" + ] + }, "🫷🏿", + { + "value" : "🫷🏿", + "keywords" : [ + "dark skin tone", + "high five", + "leftward", + "leftwards pushing hand", + "leftwards pushing hand: dark skin tone", + "push", + "refuse", + "stop", + "wait" + ] + }, "🫸", + { + "keywords" : [ + "block", + "five", + "halt", + "hand", + "high", + "hold", + "pause", + "push", + "pushing", + "refuse", + "rightward", + "rightwards", + "slap", + "stop", + "wait" + ], + "value" : "🫸" + }, "🫸🏻", + { + "keywords" : [ + "high five", + "light skin tone", + "push", + "refuse", + "rightward", + "rightwards pushing hand", + "rightwards pushing hand: light skin tone", + "stop", + "wait" + ], + "value" : "🫸🏻" + }, "🫸🏼", + { + "keywords" : [ + "high five", + "medium-light skin tone", + "push", + "refuse", + "rightward", + "rightwards pushing hand", + "rightwards pushing hand: medium-light skin tone", + "stop", + "wait" + ], + "value" : "🫸🏼" + }, "🫸🏽", + { + "value" : "🫸🏽", + "keywords" : [ + "high five", + "medium skin tone", + "push", + "refuse", + "rightward", + "rightwards pushing hand", + "rightwards pushing hand: medium skin tone", + "stop", + "wait" + ] + }, "🫸🏾", + { + "keywords" : [ + "high five", + "medium-dark skin tone", + "push", + "refuse", + "rightward", + "rightwards pushing hand", + "rightwards pushing hand: medium-dark skin tone", + "stop", + "wait" + ], + "value" : "🫸🏾" + }, "🫸🏿", + { + "keywords" : [ + "dark skin tone", + "high five", + "push", + "refuse", + "rightward", + "rightwards pushing hand", + "rightwards pushing hand: dark skin tone", + "stop", + "wait" + ], + "value" : "🫸🏿" + }, "👌", + { + "value" : "👌", + "keywords" : [ + "awesome", + "bet", + "dope", + "fleek", + "fosho", + "got", + "gotcha", + "hand", + "legit", + "OK", + "okay", + "pinch", + "rad", + "sure", + "sweet", + "three" + ] + }, "👌🏻", + { + "keywords" : [ + "hand", + "light skin tone", + "OK", + "OK hand: light skin tone" + ], + "value" : "👌🏻" + }, "👌🏼", + { + "value" : "👌🏼", + "keywords" : [ + "hand", + "medium-light skin tone", + "OK", + "OK hand: medium-light skin tone" + ] + }, "👌🏽", + { + "value" : "👌🏽", + "keywords" : [ + "hand", + "medium skin tone", + "OK", + "OK hand: medium skin tone" + ] + }, "👌🏾", + { + "keywords" : [ + "hand", + "medium-dark skin tone", + "OK", + "OK hand: medium-dark skin tone" + ], + "value" : "👌🏾" + }, "👌🏿", + { + "keywords" : [ + "dark skin tone", + "hand", + "OK", + "OK hand: dark skin tone" + ], + "value" : "👌🏿" + }, "🤌", + { + "value" : "🤌", + "keywords" : [ + "fingers", + "gesture", + "hand", + "hold", + "huh", + "interrogation", + "patience", + "pinched", + "relax", + "sarcastic", + "ugh", + "what", + "zip" + ] + }, "🤌🏻", + { + "keywords" : [ + "fingers", + "hand gesture", + "interrogation", + "light skin tone", + "pinched", + "pinched fingers: light skin tone", + "sarcastic" + ], + "value" : "🤌🏻" + }, "🤌🏼", + { + "value" : "🤌🏼", + "keywords" : [ + "fingers", + "hand gesture", + "interrogation", + "medium-light skin tone", + "pinched", + "pinched fingers: medium-light skin tone", + "sarcastic" + ] + }, "🤌🏽", + { + "value" : "🤌🏽", + "keywords" : [ + "fingers", + "hand gesture", + "interrogation", + "medium skin tone", + "pinched", + "pinched fingers: medium skin tone", + "sarcastic" + ] + }, "🤌🏾", + { + "keywords" : [ + "fingers", + "hand gesture", + "interrogation", + "medium-dark skin tone", + "pinched", + "pinched fingers: medium-dark skin tone", + "sarcastic" + ], + "value" : "🤌🏾" + }, "🤌🏿", + { + "value" : "🤌🏿", + "keywords" : [ + "dark skin tone", + "fingers", + "hand gesture", + "interrogation", + "pinched", + "pinched fingers: dark skin tone", + "sarcastic" + ] + }, "🤏", + { + "value" : "🤏", + "keywords" : [ + "amount", + "bit", + "fingers", + "hand", + "little", + "pinching", + "small", + "sort" + ] + }, "🤏🏻", + { + "keywords" : [ + "light skin tone", + "pinching hand", + "pinching hand: light skin tone", + "small amount" + ], + "value" : "🤏🏻" + }, "🤏🏼", + { + "keywords" : [ + "medium-light skin tone", + "pinching hand", + "pinching hand: medium-light skin tone", + "small amount" + ], + "value" : "🤏🏼" + }, "🤏🏽", + { + "value" : "🤏🏽", + "keywords" : [ + "medium skin tone", + "pinching hand", + "pinching hand: medium skin tone", + "small amount" + ] + }, "🤏🏾", + { + "keywords" : [ + "medium-dark skin tone", + "pinching hand", + "pinching hand: medium-dark skin tone", + "small amount" + ], + "value" : "🤏🏾" + }, "🤏🏿", + { + "keywords" : [ + "dark skin tone", + "pinching hand", + "pinching hand: dark skin tone", + "small amount" + ], + "value" : "🤏🏿" + }, "✌️", + { + "value" : "✌️", + "keywords" : [ + "hand", + "peace", + "v", + "victory" + ] + }, "✌🏻", + { + "value" : "✌🏻", + "keywords" : [ + "hand", + "light skin tone", + "v", + "victory", + "victory hand: light skin tone" + ] + }, "✌🏼", + { + "keywords" : [ + "hand", + "medium-light skin tone", + "v", + "victory", + "victory hand: medium-light skin tone" + ], + "value" : "✌🏼" + }, "✌🏽", + { + "keywords" : [ + "hand", + "medium skin tone", + "v", + "victory", + "victory hand: medium skin tone" + ], + "value" : "✌🏽" + }, "✌🏾", + { + "value" : "✌🏾", + "keywords" : [ + "hand", + "medium-dark skin tone", + "v", + "victory", + "victory hand: medium-dark skin tone" + ] + }, "✌🏿", + { + "value" : "✌🏿", + "keywords" : [ + "dark skin tone", + "hand", + "v", + "victory", + "victory hand: dark skin tone" + ] + }, "🤞", + { + "keywords" : [ + "cross", + "crossed", + "finger", + "fingers", + "hand", + "luck" + ], + "value" : "🤞" + }, "🤞🏻", + { + "value" : "🤞🏻", + "keywords" : [ + "cross", + "crossed fingers", + "crossed fingers: light skin tone", + "finger", + "hand", + "light skin tone", + "luck" + ] + }, "🤞🏼", + { + "keywords" : [ + "cross", + "crossed fingers", + "crossed fingers: medium-light skin tone", + "finger", + "hand", + "luck", + "medium-light skin tone" + ], + "value" : "🤞🏼" + }, "🤞🏽", + { + "value" : "🤞🏽", + "keywords" : [ + "cross", + "crossed fingers", + "crossed fingers: medium skin tone", + "finger", + "hand", + "luck", + "medium skin tone" + ] + }, "🤞🏾", + { + "keywords" : [ + "cross", + "crossed fingers", + "crossed fingers: medium-dark skin tone", + "finger", + "hand", + "luck", + "medium-dark skin tone" + ], + "value" : "🤞🏾" + }, "🤞🏿", + { + "value" : "🤞🏿", + "keywords" : [ + "cross", + "crossed fingers", + "crossed fingers: dark skin tone", + "dark skin tone", + "finger", + "hand", + "luck" + ] + }, "🫰", + { + "keywords" : [ + "<3", + "crossed", + "expensive", + "finger", + "hand", + "heart", + "index", + "love", + "money", + "snap", + "thumb" + ], + "value" : "🫰" + }, "🫰🏻", + { + "keywords" : [ + "expensive", + "hand with index finger and thumb crossed", + "hand with index finger and thumb crossed: light skin tone", + "heart", + "light skin tone", + "love", + "money", + "snap" + ], + "value" : "🫰🏻" + }, "🫰🏼", + { + "keywords" : [ + "expensive", + "hand with index finger and thumb crossed", + "hand with index finger and thumb crossed: medium-light skin tone", + "heart", + "love", + "medium-light skin tone", + "money", + "snap" + ], + "value" : "🫰🏼" + }, "🫰🏽", + { + "value" : "🫰🏽", + "keywords" : [ + "expensive", + "hand with index finger and thumb crossed", + "hand with index finger and thumb crossed: medium skin tone", + "heart", + "love", + "medium skin tone", + "money", + "snap" + ] + }, "🫰🏾", + { + "keywords" : [ + "expensive", + "hand with index finger and thumb crossed", + "hand with index finger and thumb crossed: medium-dark skin tone", + "heart", + "love", + "medium-dark skin tone", + "money", + "snap" + ], + "value" : "🫰🏾" + }, "🫰🏿", + { + "value" : "🫰🏿", + "keywords" : [ + "dark skin tone", + "expensive", + "hand with index finger and thumb crossed", + "hand with index finger and thumb crossed: dark skin tone", + "heart", + "love", + "money", + "snap" + ] + }, "🤟", + { + "keywords" : [ + "fingers", + "gesture", + "hand", + "ILY", + "love", + "love-you", + "three", + "you" + ], + "value" : "🤟" + }, "🤟🏻", + { + "keywords" : [ + "hand", + "ILY", + "light skin tone", + "love-you gesture", + "love-you gesture: light skin tone" + ], + "value" : "🤟🏻" + }, "🤟🏼", + { + "keywords" : [ + "hand", + "ILY", + "love-you gesture", + "love-you gesture: medium-light skin tone", + "medium-light skin tone" + ], + "value" : "🤟🏼" + }, "🤟🏽", + { + "keywords" : [ + "hand", + "ILY", + "love-you gesture", + "love-you gesture: medium skin tone", + "medium skin tone" + ], + "value" : "🤟🏽" + }, "🤟🏾", + { + "value" : "🤟🏾", + "keywords" : [ + "hand", + "ILY", + "love-you gesture", + "love-you gesture: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "🤟🏿", + { + "keywords" : [ + "dark skin tone", + "hand", + "ILY", + "love-you gesture", + "love-you gesture: dark skin tone" + ], + "value" : "🤟🏿" + }, "🤘", + { + "value" : "🤘", + "keywords" : [ + "finger", + "hand", + "horns", + "rock-on", + "sign" + ] + }, "🤘🏻", + { + "keywords" : [ + "finger", + "hand", + "horns", + "light skin tone", + "rock-on", + "sign of the horns", + "sign of the horns: light skin tone" + ], + "value" : "🤘🏻" + }, "🤘🏼", + { + "keywords" : [ + "finger", + "hand", + "horns", + "medium-light skin tone", + "rock-on", + "sign of the horns", + "sign of the horns: medium-light skin tone" + ], + "value" : "🤘🏼" + }, "🤘🏽", + { + "value" : "🤘🏽", + "keywords" : [ + "finger", + "hand", + "horns", + "medium skin tone", + "rock-on", + "sign of the horns", + "sign of the horns: medium skin tone" + ] + }, "🤘🏾", + { + "value" : "🤘🏾", + "keywords" : [ + "finger", + "hand", + "horns", + "medium-dark skin tone", + "rock-on", + "sign of the horns", + "sign of the horns: medium-dark skin tone" + ] + }, "🤘🏿", + { + "value" : "🤘🏿", + "keywords" : [ + "dark skin tone", + "finger", + "hand", + "horns", + "rock-on", + "sign of the horns", + "sign of the horns: dark skin tone" + ] + }, "🤙", + { + "value" : "🤙", + "keywords" : [ + "call", + "hand", + "hang", + "loose", + "me", + "Shaka" + ] + }, "🤙🏻", + { + "keywords" : [ + "call", + "call me hand", + "call me hand: light skin tone", + "hand", + "hang loose", + "light skin tone", + "Shaka" + ], + "value" : "🤙🏻" + }, "🤙🏼", + { + "value" : "🤙🏼", + "keywords" : [ + "call", + "call me hand", + "call me hand: medium-light skin tone", + "hand", + "hang loose", + "medium-light skin tone", + "Shaka" + ] + }, "🤙🏽", + { + "keywords" : [ + "call", + "call me hand", + "call me hand: medium skin tone", + "hand", + "hang loose", + "medium skin tone", + "Shaka" + ], + "value" : "🤙🏽" + }, "🤙🏾", + { + "keywords" : [ + "call", + "call me hand", + "call me hand: medium-dark skin tone", + "hand", + "hang loose", + "medium-dark skin tone", + "Shaka" + ], + "value" : "🤙🏾" + }, "🤙🏿", + { + "value" : "🤙🏿", + "keywords" : [ + "call", + "call me hand", + "call me hand: dark skin tone", + "dark skin tone", + "hand", + "hang loose", + "Shaka" + ] + }, "👈", + { + "value" : "👈", + "keywords" : [ + "backhand", + "finger", + "hand", + "index", + "left", + "point", + "pointing" + ] + }, "👈🏻", + { + "keywords" : [ + "backhand", + "backhand index pointing left", + "backhand index pointing left: light skin tone", + "finger", + "hand", + "index", + "light skin tone", + "point" + ], + "value" : "👈🏻" + }, "👈🏼", + { + "value" : "👈🏼", + "keywords" : [ + "backhand", + "backhand index pointing left", + "backhand index pointing left: medium-light skin tone", + "finger", + "hand", + "index", + "medium-light skin tone", + "point" + ] + }, "👈🏽", + { + "value" : "👈🏽", + "keywords" : [ + "backhand", + "backhand index pointing left", + "backhand index pointing left: medium skin tone", + "finger", + "hand", + "index", + "medium skin tone", + "point" + ] + }, "👈🏾", + { + "value" : "👈🏾", + "keywords" : [ + "backhand", + "backhand index pointing left", + "backhand index pointing left: medium-dark skin tone", + "finger", + "hand", + "index", + "medium-dark skin tone", + "point" + ] + }, "👈🏿", + { + "keywords" : [ + "backhand", + "backhand index pointing left", + "backhand index pointing left: dark skin tone", + "dark skin tone", + "finger", + "hand", + "index", + "point" + ], + "value" : "👈🏿" + }, "👉", + { + "value" : "👉", + "keywords" : [ + "backhand", + "finger", + "hand", + "index", + "point", + "pointing", + "right" + ] + }, "👉🏻", + { + "value" : "👉🏻", + "keywords" : [ + "backhand", + "backhand index pointing right", + "backhand index pointing right: light skin tone", + "finger", + "hand", + "index", + "light skin tone", + "point" + ] + }, "👉🏼", + { + "keywords" : [ + "backhand", + "backhand index pointing right", + "backhand index pointing right: medium-light skin tone", + "finger", + "hand", + "index", + "medium-light skin tone", + "point" + ], + "value" : "👉🏼" + }, "👉🏽", + { + "keywords" : [ + "backhand", + "backhand index pointing right", + "backhand index pointing right: medium skin tone", + "finger", + "hand", + "index", + "medium skin tone", + "point" + ], + "value" : "👉🏽" + }, "👉🏾", + { + "value" : "👉🏾", + "keywords" : [ + "backhand", + "backhand index pointing right", + "backhand index pointing right: medium-dark skin tone", + "finger", + "hand", + "index", + "medium-dark skin tone", + "point" + ] + }, "👉🏿", + { + "value" : "👉🏿", + "keywords" : [ + "backhand", + "backhand index pointing right", + "backhand index pointing right: dark skin tone", + "dark skin tone", + "finger", + "hand", + "index", + "point" + ] + }, "👆", + { + "keywords" : [ + "backhand", + "finger", + "hand", + "index", + "point", + "pointing", + "up" + ], + "value" : "👆" + }, "👆🏻", + { + "value" : "👆🏻", + "keywords" : [ + "backhand", + "backhand index pointing up", + "backhand index pointing up: light skin tone", + "finger", + "hand", + "light skin tone", + "point", + "up" + ] + }, "👆🏼", + { + "value" : "👆🏼", + "keywords" : [ + "backhand", + "backhand index pointing up", + "backhand index pointing up: medium-light skin tone", + "finger", + "hand", + "medium-light skin tone", + "point", + "up" + ] + }, "👆🏽", + { + "value" : "👆🏽", + "keywords" : [ + "backhand", + "backhand index pointing up", + "backhand index pointing up: medium skin tone", + "finger", + "hand", + "medium skin tone", + "point", + "up" + ] + }, "👆🏾", + { + "keywords" : [ + "backhand", + "backhand index pointing up", + "backhand index pointing up: medium-dark skin tone", + "finger", + "hand", + "medium-dark skin tone", + "point", + "up" + ], + "value" : "👆🏾" + }, "👆🏿", + { + "value" : "👆🏿", + "keywords" : [ + "backhand", + "backhand index pointing up", + "backhand index pointing up: dark skin tone", + "dark skin tone", + "finger", + "hand", + "point", + "up" + ] + }, "🖕", + { + "value" : "🖕", + "keywords" : [ + "finger", + "hand", + "middle" + ] + }, "🖕🏻", + { + "value" : "🖕🏻", + "keywords" : [ + "finger", + "hand", + "light skin tone", + "middle finger", + "middle finger: light skin tone" + ] + }, "🖕🏼", + { + "keywords" : [ + "finger", + "hand", + "medium-light skin tone", + "middle finger", + "middle finger: medium-light skin tone" + ], + "value" : "🖕🏼" + }, "🖕🏽", + { + "keywords" : [ + "finger", + "hand", + "medium skin tone", + "middle finger", + "middle finger: medium skin tone" + ], + "value" : "🖕🏽" + }, "🖕🏾", + { + "keywords" : [ + "finger", + "hand", + "medium-dark skin tone", + "middle finger", + "middle finger: medium-dark skin tone" + ], + "value" : "🖕🏾" + }, "🖕🏿", + { + "value" : "🖕🏿", + "keywords" : [ + "dark skin tone", + "finger", + "hand", + "middle finger", + "middle finger: dark skin tone" + ] + }, "👇", + { + "keywords" : [ + "backhand", + "down", + "finger", + "hand", + "index", + "point", + "pointing" + ], + "value" : "👇" + }, "👇🏻", + { + "keywords" : [ + "backhand", + "backhand index pointing down", + "backhand index pointing down: light skin tone", + "down", + "finger", + "hand", + "light skin tone", + "point" + ], + "value" : "👇🏻" + }, "👇🏼", + { + "keywords" : [ + "backhand", + "backhand index pointing down", + "backhand index pointing down: medium-light skin tone", + "down", + "finger", + "hand", + "medium-light skin tone", + "point" + ], + "value" : "👇🏼" + }, "👇🏽", + { + "value" : "👇🏽", + "keywords" : [ + "backhand", + "backhand index pointing down", + "backhand index pointing down: medium skin tone", + "down", + "finger", + "hand", + "medium skin tone", + "point" + ] + }, "👇🏾", + { + "keywords" : [ + "backhand", + "backhand index pointing down", + "backhand index pointing down: medium-dark skin tone", + "down", + "finger", + "hand", + "medium-dark skin tone", + "point" + ], + "value" : "👇🏾" + }, "👇🏿", + { + "value" : "👇🏿", + "keywords" : [ + "backhand", + "backhand index pointing down", + "backhand index pointing down: dark skin tone", + "dark skin tone", + "down", + "finger", + "hand", + "point" + ] + }, "☝️", + { + "value" : "☝️", + "keywords" : [ + "finger", + "hand", + "index", + "point", + "pointing", + "this", + "up" + ] + }, "☝🏻", + { + "keywords" : [ + "finger", + "hand", + "index", + "index pointing up", + "index pointing up: light skin tone", + "light skin tone", + "point", + "up" + ], + "value" : "☝🏻" + }, "☝🏼", + { + "keywords" : [ + "finger", + "hand", + "index", + "index pointing up", + "index pointing up: medium-light skin tone", + "medium-light skin tone", + "point", + "up" + ], + "value" : "☝🏼" + }, "☝🏽", + { + "value" : "☝🏽", + "keywords" : [ + "finger", + "hand", + "index", + "index pointing up", + "index pointing up: medium skin tone", + "medium skin tone", + "point", + "up" + ] + }, "☝🏾", + { + "value" : "☝🏾", + "keywords" : [ + "finger", + "hand", + "index", + "index pointing up", + "index pointing up: medium-dark skin tone", + "medium-dark skin tone", + "point", + "up" + ] + }, "☝🏿", + { + "value" : "☝🏿", + "keywords" : [ + "dark skin tone", + "finger", + "hand", + "index", + "index pointing up", + "index pointing up: dark skin tone", + "point", + "up" + ] + }, "🫵", + { + "keywords" : [ + "at", + "finger", + "hand", + "index", + "pointing", + "poke", + "viewer", + "you" + ], + "value" : "🫵" + }, "🫵🏻", + { + "value" : "🫵🏻", + "keywords" : [ + "index pointing at the viewer", + "index pointing at the viewer: light skin tone", + "light skin tone", + "point", + "you" + ] + }, "🫵🏼", + { + "value" : "🫵🏼", + "keywords" : [ + "index pointing at the viewer", + "index pointing at the viewer: medium-light skin tone", + "medium-light skin tone", + "point", + "you" + ] + }, "🫵🏽", + { + "value" : "🫵🏽", + "keywords" : [ + "index pointing at the viewer", + "index pointing at the viewer: medium skin tone", + "medium skin tone", + "point", + "you" + ] + }, "🫵🏾", + { + "value" : "🫵🏾", + "keywords" : [ + "index pointing at the viewer", + "index pointing at the viewer: medium-dark skin tone", + "medium-dark skin tone", + "point", + "you" + ] + }, "🫵🏿", + { + "keywords" : [ + "dark skin tone", + "index pointing at the viewer", + "index pointing at the viewer: dark skin tone", + "point", + "you" + ], + "value" : "🫵🏿" + }, "👍", + { + "value" : "👍", + "keywords" : [ + "+1", + "good", + "hand", + "like", + "thumb", + "up", + "yes" + ] + }, "👍🏻", + { + "keywords" : [ + "+1", + "hand", + "light skin tone", + "thumb", + "thumbs up", + "thumbs up: light skin tone", + "up" + ], + "value" : "👍🏻" + }, "👍🏼", + { + "keywords" : [ + "+1", + "hand", + "medium-light skin tone", + "thumb", + "thumbs up", + "thumbs up: medium-light skin tone", + "up" + ], + "value" : "👍🏼" + }, "👍🏽", + { + "value" : "👍🏽", + "keywords" : [ + "+1", + "hand", + "medium skin tone", + "thumb", + "thumbs up", + "thumbs up: medium skin tone", + "up" + ] + }, "👍🏾", + { + "value" : "👍🏾", + "keywords" : [ + "+1", + "hand", + "medium-dark skin tone", + "thumb", + "thumbs up", + "thumbs up: medium-dark skin tone", + "up" + ] + }, "👍🏿", + { + "keywords" : [ + "+1", + "dark skin tone", + "hand", + "thumb", + "thumbs up", + "thumbs up: dark skin tone", + "up" + ], + "value" : "👍🏿" + }, "👎", + { + "keywords" : [ + "-1", + "bad", + "dislike", + "down", + "good", + "hand", + "no", + "nope", + "thumb", + "thumbs" + ], + "value" : "👎" + }, "👎🏻", + { + "value" : "👎🏻", + "keywords" : [ + "-1", + "down", + "hand", + "light skin tone", + "thumb", + "thumbs down", + "thumbs down: light skin tone" + ] + }, "👎🏼", + { + "value" : "👎🏼", + "keywords" : [ + "-1", + "down", + "hand", + "medium-light skin tone", + "thumb", + "thumbs down", + "thumbs down: medium-light skin tone" + ] + }, "👎🏽", + { + "value" : "👎🏽", + "keywords" : [ + "-1", + "down", + "hand", + "medium skin tone", + "thumb", + "thumbs down", + "thumbs down: medium skin tone" + ] + }, "👎🏾", + { + "keywords" : [ + "-1", + "down", + "hand", + "medium-dark skin tone", + "thumb", + "thumbs down", + "thumbs down: medium-dark skin tone" + ], + "value" : "👎🏾" + }, "👎🏿", + { + "value" : "👎🏿", + "keywords" : [ + "-1", + "dark skin tone", + "down", + "hand", + "thumb", + "thumbs down", + "thumbs down: dark skin tone" + ] + }, "✊", + { + "keywords" : [ + "clenched", + "fist", + "hand", + "punch", + "raised", + "solidarity" + ], + "value" : "✊" + }, "✊🏻", + { + "value" : "✊🏻", + "keywords" : [ + "clenched", + "fist", + "hand", + "light skin tone", + "punch", + "raised fist", + "raised fist: light skin tone" + ] + }, "✊🏼", + { + "value" : "✊🏼", + "keywords" : [ + "clenched", + "fist", + "hand", + "medium-light skin tone", + "punch", + "raised fist", + "raised fist: medium-light skin tone" + ] + }, "✊🏽", + { + "value" : "✊🏽", + "keywords" : [ + "clenched", + "fist", + "hand", + "medium skin tone", + "punch", + "raised fist", + "raised fist: medium skin tone" + ] + }, "✊🏾", + { + "value" : "✊🏾", + "keywords" : [ + "clenched", + "fist", + "hand", + "medium-dark skin tone", + "punch", + "raised fist", + "raised fist: medium-dark skin tone" + ] + }, "✊🏿", + { + "keywords" : [ + "clenched", + "dark skin tone", + "fist", + "hand", + "punch", + "raised fist", + "raised fist: dark skin tone" + ], + "value" : "✊🏿" + }, "👊", + { + "value" : "👊", + "keywords" : [ + "absolutely", + "agree", + "boom", + "bro", + "bruh", + "bump", + "clenched", + "correct", + "fist", + "hand", + "knuckle", + "oncoming", + "pound", + "punch", + "rock", + "ttyl" + ] + }, "👊🏻", + { + "value" : "👊🏻", + "keywords" : [ + "clenched", + "fist", + "hand", + "light skin tone", + "oncoming fist", + "oncoming fist: light skin tone", + "punch" + ] + }, "👊🏼", + { + "value" : "👊🏼", + "keywords" : [ + "clenched", + "fist", + "hand", + "medium-light skin tone", + "oncoming fist", + "oncoming fist: medium-light skin tone", + "punch" + ] + }, "👊🏽", + { + "value" : "👊🏽", + "keywords" : [ + "clenched", + "fist", + "hand", + "medium skin tone", + "oncoming fist", + "oncoming fist: medium skin tone", + "punch" + ] + }, "👊🏾", + { + "keywords" : [ + "clenched", + "fist", + "hand", + "medium-dark skin tone", + "oncoming fist", + "oncoming fist: medium-dark skin tone", + "punch" + ], + "value" : "👊🏾" + }, "👊🏿", + { + "keywords" : [ + "clenched", + "dark skin tone", + "fist", + "hand", + "oncoming fist", + "oncoming fist: dark skin tone", + "punch" + ], + "value" : "👊🏿" + }, "🤛", + { + "keywords" : [ + "fist", + "left-facing", + "leftwards" + ], + "value" : "🤛" + }, "🤛🏻", + { + "keywords" : [ + "fist", + "left-facing fist", + "left-facing fist: light skin tone", + "leftwards", + "light skin tone" + ], + "value" : "🤛🏻" + }, "🤛🏼", + { + "value" : "🤛🏼", + "keywords" : [ + "fist", + "left-facing fist", + "left-facing fist: medium-light skin tone", + "leftwards", + "medium-light skin tone" + ] + }, "🤛🏽", + { + "value" : "🤛🏽", + "keywords" : [ + "fist", + "left-facing fist", + "left-facing fist: medium skin tone", + "leftwards", + "medium skin tone" + ] + }, "🤛🏾", + { + "value" : "🤛🏾", + "keywords" : [ + "fist", + "left-facing fist", + "left-facing fist: medium-dark skin tone", + "leftwards", + "medium-dark skin tone" + ] + }, "🤛🏿", + { + "value" : "🤛🏿", + "keywords" : [ + "dark skin tone", + "fist", + "left-facing fist", + "left-facing fist: dark skin tone", + "leftwards" + ] + }, "🤜", + { + "value" : "🤜", + "keywords" : [ + "fist", + "right-facing", + "rightwards" + ] + }, "🤜🏻", + { + "value" : "🤜🏻", + "keywords" : [ + "fist", + "light skin tone", + "right-facing fist", + "right-facing fist: light skin tone", + "rightwards" + ] + }, "🤜🏼", + { + "value" : "🤜🏼", + "keywords" : [ + "fist", + "medium-light skin tone", + "right-facing fist", + "right-facing fist: medium-light skin tone", + "rightwards" + ] + }, "🤜🏽", + { + "value" : "🤜🏽", + "keywords" : [ + "fist", + "medium skin tone", + "right-facing fist", + "right-facing fist: medium skin tone", + "rightwards" + ] + }, "🤜🏾", + { + "value" : "🤜🏾", + "keywords" : [ + "fist", + "medium-dark skin tone", + "right-facing fist", + "right-facing fist: medium-dark skin tone", + "rightwards" + ] + }, "🤜🏿", + { + "value" : "🤜🏿", + "keywords" : [ + "dark skin tone", + "fist", + "right-facing fist", + "right-facing fist: dark skin tone", + "rightwards" + ] + }, "👏", + { + "value" : "👏", + "keywords" : [ + "applause", + "approval", + "awesome", + "clap", + "congrats", + "congratulations", + "excited", + "good", + "great", + "hand", + "homie", + "job", + "nice", + "prayed", + "well", + "yay" + ] + }, "👏🏻", + { + "keywords" : [ + "clap", + "clapping hands", + "clapping hands: light skin tone", + "hand", + "light skin tone" + ], + "value" : "👏🏻" + }, "👏🏼", + { + "value" : "👏🏼", + "keywords" : [ + "clap", + "clapping hands", + "clapping hands: medium-light skin tone", + "hand", + "medium-light skin tone" + ] + }, "👏🏽", + { + "value" : "👏🏽", + "keywords" : [ + "clap", + "clapping hands", + "clapping hands: medium skin tone", + "hand", + "medium skin tone" + ] + }, "👏🏾", + { + "value" : "👏🏾", + "keywords" : [ + "clap", + "clapping hands", + "clapping hands: medium-dark skin tone", + "hand", + "medium-dark skin tone" + ] + }, "👏🏿", + { + "value" : "👏🏿", + "keywords" : [ + "clap", + "clapping hands", + "clapping hands: dark skin tone", + "dark skin tone", + "hand" + ] + }, "🙌", + { + "keywords" : [ + "celebration", + "gesture", + "hand", + "hands", + "hooray", + "praise", + "raised", + "raising" + ], + "value" : "🙌" + }, "🙌🏻", + { + "keywords" : [ + "celebration", + "gesture", + "hand", + "hooray", + "light skin tone", + "raised", + "raising hands", + "raising hands: light skin tone" + ], + "value" : "🙌🏻" + }, "🙌🏼", + { + "value" : "🙌🏼", + "keywords" : [ + "celebration", + "gesture", + "hand", + "hooray", + "medium-light skin tone", + "raised", + "raising hands", + "raising hands: medium-light skin tone" + ] + }, "🙌🏽", + { + "value" : "🙌🏽", + "keywords" : [ + "celebration", + "gesture", + "hand", + "hooray", + "medium skin tone", + "raised", + "raising hands", + "raising hands: medium skin tone" + ] + }, "🙌🏾", + { + "value" : "🙌🏾", + "keywords" : [ + "celebration", + "gesture", + "hand", + "hooray", + "medium-dark skin tone", + "raised", + "raising hands", + "raising hands: medium-dark skin tone" + ] + }, "🙌🏿", + { + "keywords" : [ + "celebration", + "dark skin tone", + "gesture", + "hand", + "hooray", + "raised", + "raising hands", + "raising hands: dark skin tone" + ], + "value" : "🙌🏿" + }, "🫶", + { + "value" : "🫶", + "keywords" : [ + "<3", + "hands", + "heart", + "love", + "you" + ] + }, "🫶🏻", + { + "keywords" : [ + "heart hands", + "heart hands: light skin tone", + "light skin tone", + "love" + ], + "value" : "🫶🏻" + }, "🫶🏼", + { + "keywords" : [ + "heart hands", + "heart hands: medium-light skin tone", + "love", + "medium-light skin tone" + ], + "value" : "🫶🏼" + }, "🫶🏽", + { + "value" : "🫶🏽", + "keywords" : [ + "heart hands", + "heart hands: medium skin tone", + "love", + "medium skin tone" + ] + }, "🫶🏾", + { + "keywords" : [ + "heart hands", + "heart hands: medium-dark skin tone", + "love", + "medium-dark skin tone" + ], + "value" : "🫶🏾" + }, "🫶🏿", + { + "value" : "🫶🏿", + "keywords" : [ + "dark skin tone", + "heart hands", + "heart hands: dark skin tone", + "love" + ] + }, "👐", + { + "value" : "👐", + "keywords" : [ + "hand", + "hands", + "hug", + "jazz", + "open", + "swerve" + ] + }, "👐🏻", + { + "keywords" : [ + "hand", + "light skin tone", + "open", + "open hands", + "open hands: light skin tone" + ], + "value" : "👐🏻" + }, "👐🏼", + { + "value" : "👐🏼", + "keywords" : [ + "hand", + "medium-light skin tone", + "open", + "open hands", + "open hands: medium-light skin tone" + ] + }, "👐🏽", + { + "value" : "👐🏽", + "keywords" : [ + "hand", + "medium skin tone", + "open", + "open hands", + "open hands: medium skin tone" + ] + }, "👐🏾", + { + "keywords" : [ + "hand", + "medium-dark skin tone", + "open", + "open hands", + "open hands: medium-dark skin tone" + ], + "value" : "👐🏾" + }, "👐🏿", + { + "keywords" : [ + "dark skin tone", + "hand", + "open", + "open hands", + "open hands: dark skin tone" + ], + "value" : "👐🏿" + }, "🤲", + { + "keywords" : [ + "cupped", + "dua", + "hands", + "palms", + "pray", + "prayer", + "together", + "up", + "wish" + ], + "value" : "🤲" + }, "🤲🏻", + { + "value" : "🤲🏻", + "keywords" : [ + "light skin tone", + "palms up together", + "palms up together: light skin tone", + "prayer" + ] + }, "🤲🏼", + { + "value" : "🤲🏼", + "keywords" : [ + "medium-light skin tone", + "palms up together", + "palms up together: medium-light skin tone", + "prayer" + ] + }, "🤲🏽", + { + "keywords" : [ + "medium skin tone", + "palms up together", + "palms up together: medium skin tone", + "prayer" + ], + "value" : "🤲🏽" + }, "🤲🏾", + { + "keywords" : [ + "medium-dark skin tone", + "palms up together", + "palms up together: medium-dark skin tone", + "prayer" + ], + "value" : "🤲🏾" + }, "🤲🏿", + { + "value" : "🤲🏿", + "keywords" : [ + "dark skin tone", + "palms up together", + "palms up together: dark skin tone", + "prayer" + ] + }, "🤝", + { + "value" : "🤝", + "keywords" : [ + "agreement", + "deal", + "hand", + "handshake", + "meeting", + "shake" + ] + }, "🤝🏻", + { + "value" : "🤝🏻", + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: light skin tone", + "light skin tone", + "meeting", + "shake" + ] + }, "🤝🏼", + { + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: medium-light skin tone", + "medium-light skin tone", + "meeting", + "shake" + ], + "value" : "🤝🏼" + }, "🤝🏽", + { + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: medium skin tone", + "medium skin tone", + "meeting", + "shake" + ], + "value" : "🤝🏽" + }, "🤝🏾", + { + "value" : "🤝🏾", + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: medium-dark skin tone", + "medium-dark skin tone", + "meeting", + "shake" + ] + }, "🤝🏿", + { + "keywords" : [ + "agreement", + "dark skin tone", + "hand", + "handshake", + "handshake: dark skin tone", + "meeting", + "shake" + ], + "value" : "🤝🏿" + }, "🫱🏻‍🫲🏼", + { + "value" : "🫱🏻‍🫲🏼", + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: light skin tone, medium-light skin tone", + "light skin tone", + "medium-light skin tone", + "meeting", + "shake" + ] + }, "🫱🏻‍🫲🏽", + { + "value" : "🫱🏻‍🫲🏽", + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: light skin tone, medium skin tone", + "light skin tone", + "medium skin tone", + "meeting", + "shake" + ] + }, "🫱🏻‍🫲🏾", + { + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: light skin tone, medium-dark skin tone", + "light skin tone", + "medium-dark skin tone", + "meeting", + "shake" + ], + "value" : "🫱🏻‍🫲🏾" + }, "🫱🏻‍🫲🏿", + { + "value" : "🫱🏻‍🫲🏿", + "keywords" : [ + "agreement", + "dark skin tone", + "hand", + "handshake", + "handshake: light skin tone, dark skin tone", + "light skin tone", + "meeting", + "shake" + ] + }, "🫱🏼‍🫲🏻", + { + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: medium-light skin tone, light skin tone", + "light skin tone", + "medium-light skin tone", + "meeting", + "shake" + ], + "value" : "🫱🏼‍🫲🏻" + }, "🫱🏼‍🫲🏽", + { + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: medium-light skin tone, medium skin tone", + "medium skin tone", + "medium-light skin tone", + "meeting", + "shake" + ], + "value" : "🫱🏼‍🫲🏽" + }, "🫱🏼‍🫲🏾", + { + "value" : "🫱🏼‍🫲🏾", + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: medium-light skin tone, medium-dark skin tone", + "medium-dark skin tone", + "medium-light skin tone", + "meeting", + "shake" + ] + }, "🫱🏼‍🫲🏿", + { + "value" : "🫱🏼‍🫲🏿", + "keywords" : [ + "agreement", + "dark skin tone", + "hand", + "handshake", + "handshake: medium-light skin tone, dark skin tone", + "medium-light skin tone", + "meeting", + "shake" + ] + }, "🫱🏽‍🫲🏻", + { + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: medium skin tone, light skin tone", + "light skin tone", + "medium skin tone", + "meeting", + "shake" + ], + "value" : "🫱🏽‍🫲🏻" + }, "🫱🏽‍🫲🏼", + { + "value" : "🫱🏽‍🫲🏼", + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: medium skin tone, medium-light skin tone", + "medium skin tone", + "medium-light skin tone", + "meeting", + "shake" + ] + }, "🫱🏽‍🫲🏾", + { + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: medium skin tone, medium-dark skin tone", + "medium skin tone", + "medium-dark skin tone", + "meeting", + "shake" + ], + "value" : "🫱🏽‍🫲🏾" + }, "🫱🏽‍🫲🏿", + { + "keywords" : [ + "agreement", + "dark skin tone", + "hand", + "handshake", + "handshake: medium skin tone, dark skin tone", + "medium skin tone", + "meeting", + "shake" + ], + "value" : "🫱🏽‍🫲🏿" + }, "🫱🏾‍🫲🏻", + { + "value" : "🫱🏾‍🫲🏻", + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: medium-dark skin tone, light skin tone", + "light skin tone", + "medium-dark skin tone", + "meeting", + "shake" + ] + }, "🫱🏾‍🫲🏼", + { + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: medium-dark skin tone, medium-light skin tone", + "medium-dark skin tone", + "medium-light skin tone", + "meeting", + "shake" + ], + "value" : "🫱🏾‍🫲🏼" + }, "🫱🏾‍🫲🏽", + { + "value" : "🫱🏾‍🫲🏽", + "keywords" : [ + "agreement", + "hand", + "handshake", + "handshake: medium-dark skin tone, medium skin tone", + "medium skin tone", + "medium-dark skin tone", + "meeting", + "shake" + ] + }, "🫱🏾‍🫲🏿", + { + "value" : "🫱🏾‍🫲🏿", + "keywords" : [ + "agreement", + "dark skin tone", + "hand", + "handshake", + "handshake: medium-dark skin tone, dark skin tone", + "medium-dark skin tone", + "meeting", + "shake" + ] + }, "🫱🏿‍🫲🏻", + { + "value" : "🫱🏿‍🫲🏻", + "keywords" : [ + "agreement", + "dark skin tone", + "hand", + "handshake", + "handshake: dark skin tone, light skin tone", + "light skin tone", + "meeting", + "shake" + ] + }, "🫱🏿‍🫲🏼", + { + "value" : "🫱🏿‍🫲🏼", + "keywords" : [ + "agreement", + "dark skin tone", + "hand", + "handshake", + "handshake: dark skin tone, medium-light skin tone", + "medium-light skin tone", + "meeting", + "shake" + ] + }, "🫱🏿‍🫲🏽", + { + "value" : "🫱🏿‍🫲🏽", + "keywords" : [ + "agreement", + "dark skin tone", + "hand", + "handshake", + "handshake: dark skin tone, medium skin tone", + "medium skin tone", + "meeting", + "shake" + ] + }, "🫱🏿‍🫲🏾", + { + "keywords" : [ + "agreement", + "dark skin tone", + "hand", + "handshake", + "handshake: dark skin tone, medium-dark skin tone", + "medium-dark skin tone", + "meeting", + "shake" + ], + "value" : "🫱🏿‍🫲🏾" + }, "🙏", + { + "value" : "🙏", + "keywords" : [ + "appreciate", + "ask", + "beg", + "blessed", + "bow", + "cmon", + "five", + "folded", + "gesture", + "hand", + "high", + "please", + "pray", + "thanks", + "thx" + ] + }, "🙏🏻", + { + "keywords" : [ + "ask", + "folded hands", + "folded hands: light skin tone", + "hand", + "high 5", + "high five", + "light skin tone", + "please", + "pray", + "thanks" + ], + "value" : "🙏🏻" + }, "🙏🏼", + { + "value" : "🙏🏼", + "keywords" : [ + "ask", + "folded hands", + "folded hands: medium-light skin tone", + "hand", + "high 5", + "high five", + "medium-light skin tone", + "please", + "pray", + "thanks" + ] + }, "🙏🏽", + { + "keywords" : [ + "ask", + "folded hands", + "folded hands: medium skin tone", + "hand", + "high 5", + "high five", + "medium skin tone", + "please", + "pray", + "thanks" + ], + "value" : "🙏🏽" + }, "🙏🏾", + { + "keywords" : [ + "ask", + "folded hands", + "folded hands: medium-dark skin tone", + "hand", + "high 5", + "high five", + "medium-dark skin tone", + "please", + "pray", + "thanks" + ], + "value" : "🙏🏾" + }, "🙏🏿", + { + "keywords" : [ + "ask", + "dark skin tone", + "folded hands", + "folded hands: dark skin tone", + "hand", + "high 5", + "high five", + "please", + "pray", + "thanks" + ], + "value" : "🙏🏿" + }, "✍️", + { + "value" : "✍️", + "keywords" : [ + "hand", + "write", + "writing" + ] + }, "✍🏻", + { + "value" : "✍🏻", + "keywords" : [ + "hand", + "light skin tone", + "write", + "writing hand", + "writing hand: light skin tone" + ] + }, "✍🏼", + { + "value" : "✍🏼", + "keywords" : [ + "hand", + "medium-light skin tone", + "write", + "writing hand", + "writing hand: medium-light skin tone" + ] + }, "✍🏽", + { + "value" : "✍🏽", + "keywords" : [ + "hand", + "medium skin tone", + "write", + "writing hand", + "writing hand: medium skin tone" + ] + }, "✍🏾", + { + "keywords" : [ + "hand", + "medium-dark skin tone", + "write", + "writing hand", + "writing hand: medium-dark skin tone" + ], + "value" : "✍🏾" + }, "✍🏿", + { + "keywords" : [ + "dark skin tone", + "hand", + "write", + "writing hand", + "writing hand: dark skin tone" + ], + "value" : "✍🏿" + }, "💅", + { + "value" : "💅", + "keywords" : [ + "bored", + "care", + "cosmetics", + "done", + "makeup", + "manicure", + "nail", + "polish", + "whatever" + ] + }, "💅🏻", + { + "value" : "💅🏻", + "keywords" : [ + "care", + "cosmetics", + "light skin tone", + "manicure", + "nail", + "nail polish: light skin tone", + "polish" + ] + }, "💅🏼", + { + "keywords" : [ + "care", + "cosmetics", + "manicure", + "medium-light skin tone", + "nail", + "nail polish: medium-light skin tone", + "polish" + ], + "value" : "💅🏼" + }, "💅🏽", + { + "value" : "💅🏽", + "keywords" : [ + "care", + "cosmetics", + "manicure", + "medium skin tone", + "nail", + "nail polish: medium skin tone", + "polish" + ] + }, "💅🏾", + { + "value" : "💅🏾", + "keywords" : [ + "care", + "cosmetics", + "manicure", + "medium-dark skin tone", + "nail", + "nail polish: medium-dark skin tone", + "polish" + ] + }, "💅🏿", + { + "keywords" : [ + "care", + "cosmetics", + "dark skin tone", + "manicure", + "nail", + "nail polish: dark skin tone", + "polish" + ], + "value" : "💅🏿" + }, "🤳", + { + "value" : "🤳", + "keywords" : [ + "camera", + "phone", + "selfie" + ] + }, "🤳🏻", + { + "keywords" : [ + "camera", + "light skin tone", + "phone", + "selfie", + "selfie: light skin tone" + ], + "value" : "🤳🏻" + }, "🤳🏼", + { + "value" : "🤳🏼", + "keywords" : [ + "camera", + "medium-light skin tone", + "phone", + "selfie", + "selfie: medium-light skin tone" + ] + }, "🤳🏽", + { + "keywords" : [ + "camera", + "medium skin tone", + "phone", + "selfie", + "selfie: medium skin tone" + ], + "value" : "🤳🏽" + }, "🤳🏾", + { + "value" : "🤳🏾", + "keywords" : [ + "camera", + "medium-dark skin tone", + "phone", + "selfie", + "selfie: medium-dark skin tone" + ] + }, "🤳🏿", + { + "keywords" : [ + "camera", + "dark skin tone", + "phone", + "selfie", + "selfie: dark skin tone" + ], + "value" : "🤳🏿" + }, "💪", + { + "value" : "💪", + "keywords" : [ + "arm", + "beast", + "bench", + "biceps", + "bodybuilder", + "bro", + "curls", + "flex", + "gains", + "gym", + "jacked", + "muscle", + "press", + "ripped", + "strong", + "weightlift" + ] + }, "💪🏻", + { + "keywords" : [ + "biceps", + "comic", + "flex", + "flexed biceps", + "flexed biceps: light skin tone", + "light skin tone", + "muscle" + ], + "value" : "💪🏻" + }, "💪🏼", + { + "value" : "💪🏼", + "keywords" : [ + "biceps", + "comic", + "flex", + "flexed biceps", + "flexed biceps: medium-light skin tone", + "medium-light skin tone", + "muscle" + ] + }, "💪🏽", + { + "value" : "💪🏽", + "keywords" : [ + "biceps", + "comic", + "flex", + "flexed biceps", + "flexed biceps: medium skin tone", + "medium skin tone", + "muscle" + ] + }, "💪🏾", + { + "value" : "💪🏾", + "keywords" : [ + "biceps", + "comic", + "flex", + "flexed biceps", + "flexed biceps: medium-dark skin tone", + "medium-dark skin tone", + "muscle" + ] + }, "💪🏿", + { + "keywords" : [ + "biceps", + "comic", + "dark skin tone", + "flex", + "flexed biceps", + "flexed biceps: dark skin tone", + "muscle" + ], + "value" : "💪🏿" + }, "🦾", + { + "keywords" : [ + "accessibility", + "arm", + "mechanical", + "prosthetic" + ], + "value" : "🦾" + }, "🦿", + { + "value" : "🦿", + "keywords" : [ + "accessibility", + "leg", + "mechanical", + "prosthetic" + ] + }, "🦵", + { + "value" : "🦵", + "keywords" : [ + "bent", + "foot", + "kick", + "knee", + "leg", + "limb" + ] + }, "🦵🏻", + { + "keywords" : [ + "kick", + "leg", + "leg: light skin tone", + "light skin tone", + "limb" + ], + "value" : "🦵🏻" + }, "🦵🏼", + { + "value" : "🦵🏼", + "keywords" : [ + "kick", + "leg", + "leg: medium-light skin tone", + "limb", + "medium-light skin tone" + ] + }, "🦵🏽", + { + "keywords" : [ + "kick", + "leg", + "leg: medium skin tone", + "limb", + "medium skin tone" + ], + "value" : "🦵🏽" + }, "🦵🏾", + { + "keywords" : [ + "kick", + "leg", + "leg: medium-dark skin tone", + "limb", + "medium-dark skin tone" + ], + "value" : "🦵🏾" + }, "🦵🏿", + { + "value" : "🦵🏿", + "keywords" : [ + "dark skin tone", + "kick", + "leg", + "leg: dark skin tone", + "limb" + ] + }, "🦶", + { + "keywords" : [ + "ankle", + "feet", + "foot", + "kick", + "stomp" + ], + "value" : "🦶" + }, "🦶🏻", + { + "value" : "🦶🏻", + "keywords" : [ + "foot", + "foot: light skin tone", + "kick", + "light skin tone", + "stomp" + ] + }, "🦶🏼", + { + "value" : "🦶🏼", + "keywords" : [ + "foot", + "foot: medium-light skin tone", + "kick", + "medium-light skin tone", + "stomp" + ] + }, "🦶🏽", + { + "value" : "🦶🏽", + "keywords" : [ + "foot", + "foot: medium skin tone", + "kick", + "medium skin tone", + "stomp" + ] + }, "🦶🏾", + { + "keywords" : [ + "foot", + "foot: medium-dark skin tone", + "kick", + "medium-dark skin tone", + "stomp" + ], + "value" : "🦶🏾" + }, "🦶🏿", + { + "keywords" : [ + "dark skin tone", + "foot", + "foot: dark skin tone", + "kick", + "stomp" + ], + "value" : "🦶🏿" + }, "👂", + { + "value" : "👂", + "keywords" : [ + "body", + "ear", + "ears", + "hear", + "hearing", + "listen", + "listening", + "sound" + ] + }, "👂🏻", + { + "value" : "👂🏻", + "keywords" : [ + "body", + "ear", + "ear: light skin tone", + "light skin tone" + ] + }, "👂🏼", + { + "keywords" : [ + "body", + "ear", + "ear: medium-light skin tone", + "medium-light skin tone" + ], + "value" : "👂🏼" + }, "👂🏽", + { + "keywords" : [ + "body", + "ear", + "ear: medium skin tone", + "medium skin tone" + ], + "value" : "👂🏽" + }, "👂🏾", + { + "value" : "👂🏾", + "keywords" : [ + "body", + "ear", + "ear: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "👂🏿", + { + "keywords" : [ + "body", + "dark skin tone", + "ear", + "ear: dark skin tone" + ], + "value" : "👂🏿" + }, "🦻", + { + "keywords" : [ + "accessibility", + "aid", + "ear", + "hard", + "hearing" + ], + "value" : "🦻" + }, "🦻🏻", + { + "keywords" : [ + "accessibility", + "ear with hearing aid", + "ear with hearing aid: light skin tone", + "hard of hearing", + "light skin tone" + ], + "value" : "🦻🏻" + }, "🦻🏼", + { + "value" : "🦻🏼", + "keywords" : [ + "accessibility", + "ear with hearing aid", + "ear with hearing aid: medium-light skin tone", + "hard of hearing", + "medium-light skin tone" + ] + }, "🦻🏽", + { + "keywords" : [ + "accessibility", + "ear with hearing aid", + "ear with hearing aid: medium skin tone", + "hard of hearing", + "medium skin tone" + ], + "value" : "🦻🏽" + }, "🦻🏾", + { + "value" : "🦻🏾", + "keywords" : [ + "accessibility", + "ear with hearing aid", + "ear with hearing aid: medium-dark skin tone", + "hard of hearing", + "medium-dark skin tone" + ] + }, "🦻🏿", + { + "value" : "🦻🏿", + "keywords" : [ + "accessibility", + "dark skin tone", + "ear with hearing aid", + "ear with hearing aid: dark skin tone", + "hard of hearing" + ] + }, "👃", + { + "keywords" : [ + "body", + "nose", + "noses", + "nosey", + "odor", + "smell", + "smells" + ], + "value" : "👃" + }, "👃🏻", + { + "value" : "👃🏻", + "keywords" : [ + "body", + "light skin tone", + "nose", + "nose: light skin tone" + ] + }, "👃🏼", + { + "value" : "👃🏼", + "keywords" : [ + "body", + "medium-light skin tone", + "nose", + "nose: medium-light skin tone" + ] + }, "👃🏽", + { + "value" : "👃🏽", + "keywords" : [ + "body", + "medium skin tone", + "nose", + "nose: medium skin tone" + ] + }, "👃🏾", + { + "value" : "👃🏾", + "keywords" : [ + "body", + "medium-dark skin tone", + "nose", + "nose: medium-dark skin tone" + ] + }, "👃🏿", + { + "value" : "👃🏿", + "keywords" : [ + "body", + "dark skin tone", + "nose", + "nose: dark skin tone" + ] + }, "🧠", + { + "keywords" : [ + "brain", + "intelligent", + "smart" + ], + "value" : "🧠" + }, "🫀", + { + "keywords" : [ + "anatomical", + "beat", + "cardiology", + "heart", + "heartbeat", + "organ", + "pulse", + "real", + "red" + ], + "value" : "🫀" + }, "🫁", + { + "keywords" : [ + "breath", + "breathe", + "exhalation", + "inhalation", + "lung", + "lungs", + "organ", + "respiration" + ], + "value" : "🫁" + }, "🦷", + { + "value" : "🦷", + "keywords" : [ + "dentist", + "pearly", + "teeth", + "tooth", + "white" + ] + }, "🦴", + { + "value" : "🦴", + "keywords" : [ + "bone", + "bones", + "dog", + "skeleton", + "wishbone" + ] + }, "👀", + { + "value" : "👀", + "keywords" : [ + "body", + "eye", + "eyes", + "face", + "googly", + "look", + "looking", + "omg", + "peep", + "see", + "seeing" + ] + }, "👁️", + { + "value" : "👁️", + "keywords" : [ + "1", + "body", + "eye", + "one" + ] + }, "👅", + { + "value" : "👅", + "keywords" : [ + "body", + "lick", + "slurp", + "tongue" + ] + }, "👄", + { + "keywords" : [ + "beauty", + "body", + "kiss", + "kissing", + "lips", + "lipstick", + "mouth" + ], + "value" : "👄" + }, "🫦", + { + "keywords" : [ + "anxious", + "bite", + "biting", + "fear", + "flirt", + "flirting", + "kiss", + "lip", + "lipstick", + "nervous", + "sexy", + "uncomfortable", + "worried", + "worry" + ], + "value" : "🫦" + }, "👶", + { + "value" : "👶", + "keywords" : [ + "babies", + "baby", + "children", + "goo", + "infant", + "newborn", + "pregnant", + "young" + ] + }, "👶🏻", + { + "keywords" : [ + "baby", + "baby: light skin tone", + "light skin tone", + "young" + ], + "value" : "👶🏻" + }, "👶🏼", + { + "keywords" : [ + "baby", + "baby: medium-light skin tone", + "medium-light skin tone", + "young" + ], + "value" : "👶🏼" + }, "👶🏽", + { + "value" : "👶🏽", + "keywords" : [ + "baby", + "baby: medium skin tone", + "medium skin tone", + "young" + ] + }, "👶🏾", + { + "value" : "👶🏾", + "keywords" : [ + "baby", + "baby: medium-dark skin tone", + "medium-dark skin tone", + "young" + ] + }, "👶🏿", + { + "value" : "👶🏿", + "keywords" : [ + "baby", + "baby: dark skin tone", + "dark skin tone", + "young" + ] + }, "🧒", + { + "value" : "🧒", + "keywords" : [ + "bright-eyed", + "child", + "grandchild", + "kid", + "young", + "younger" + ] + }, "🧒🏻", + { + "value" : "🧒🏻", + "keywords" : [ + "child", + "child: light skin tone", + "gender-neutral", + "light skin tone", + "unspecified gender", + "young" + ] + }, "🧒🏼", + { + "keywords" : [ + "child", + "child: medium-light skin tone", + "gender-neutral", + "medium-light skin tone", + "unspecified gender", + "young" + ], + "value" : "🧒🏼" + }, "🧒🏽", + { + "keywords" : [ + "child", + "child: medium skin tone", + "gender-neutral", + "medium skin tone", + "unspecified gender", + "young" + ], + "value" : "🧒🏽" + }, "🧒🏾", + { + "keywords" : [ + "child", + "child: medium-dark skin tone", + "gender-neutral", + "medium-dark skin tone", + "unspecified gender", + "young" + ], + "value" : "🧒🏾" + }, "🧒🏿", + { + "keywords" : [ + "child", + "child: dark skin tone", + "dark skin tone", + "gender-neutral", + "unspecified gender", + "young" + ], + "value" : "🧒🏿" + }, "👦", + { + "value" : "👦", + "keywords" : [ + "boy", + "bright-eyed", + "child", + "grandson", + "kid", + "son", + "young", + "younger" + ] + }, "👦🏻", + { + "keywords" : [ + "boy", + "boy: light skin tone", + "light skin tone", + "young" + ], + "value" : "👦🏻" + }, "👦🏼", + { + "value" : "👦🏼", + "keywords" : [ + "boy", + "boy: medium-light skin tone", + "medium-light skin tone", + "young" + ] + }, "👦🏽", + { + "keywords" : [ + "boy", + "boy: medium skin tone", + "medium skin tone", + "young" + ], + "value" : "👦🏽" + }, "👦🏾", + { + "keywords" : [ + "boy", + "boy: medium-dark skin tone", + "medium-dark skin tone", + "young" + ], + "value" : "👦🏾" + }, "👦🏿", + { + "keywords" : [ + "boy", + "boy: dark skin tone", + "dark skin tone", + "young" + ], + "value" : "👦🏿" + }, "👧", + { + "value" : "👧", + "keywords" : [ + "bright-eyed", + "child", + "daughter", + "girl", + "granddaughter", + "kid", + "Virgo", + "young", + "younger", + "zodiac" + ] + }, "👧🏻", + { + "keywords" : [ + "girl", + "girl: light skin tone", + "light skin tone", + "Virgo", + "young", + "zodiac" + ], + "value" : "👧🏻" + }, "👧🏼", + { + "keywords" : [ + "girl", + "girl: medium-light skin tone", + "medium-light skin tone", + "Virgo", + "young", + "zodiac" + ], + "value" : "👧🏼" + }, "👧🏽", + { + "keywords" : [ + "girl", + "girl: medium skin tone", + "medium skin tone", + "Virgo", + "young", + "zodiac" + ], + "value" : "👧🏽" + }, "👧🏾", + { + "keywords" : [ + "girl", + "girl: medium-dark skin tone", + "medium-dark skin tone", + "Virgo", + "young", + "zodiac" + ], + "value" : "👧🏾" + }, "👧🏿", + { + "keywords" : [ + "dark skin tone", + "girl", + "girl: dark skin tone", + "Virgo", + "young", + "zodiac" + ], + "value" : "👧🏿" + }, "🧑", + { + "keywords" : [ + "adult", + "person" + ], + "value" : "🧑" + }, "🧑🏻", + { + "keywords" : [ + "adult", + "gender-neutral", + "light skin tone", + "person", + "person: light skin tone", + "unspecified gender" + ], + "value" : "🧑🏻" + }, "🧑🏼", + { + "value" : "🧑🏼", + "keywords" : [ + "adult", + "gender-neutral", + "medium-light skin tone", + "person", + "person: medium-light skin tone", + "unspecified gender" + ] + }, "🧑🏽", + { + "value" : "🧑🏽", + "keywords" : [ + "adult", + "gender-neutral", + "medium skin tone", + "person", + "person: medium skin tone", + "unspecified gender" + ] + }, "🧑🏾", + { + "keywords" : [ + "adult", + "gender-neutral", + "medium-dark skin tone", + "person", + "person: medium-dark skin tone", + "unspecified gender" + ], + "value" : "🧑🏾" + }, "🧑🏿", + { + "value" : "🧑🏿", + "keywords" : [ + "adult", + "dark skin tone", + "gender-neutral", + "person", + "person: dark skin tone", + "unspecified gender" + ] + }, "👱", + { + "keywords" : [ + "blond", + "blond-haired", + "human", + "person" + ], + "value" : "👱" + }, "👱🏻", + { + "value" : "👱🏻", + "keywords" : [ + "blond", + "blond-haired person", + "hair", + "light skin tone", + "person: blond hair", + "person: light skin tone, blond hair" + ] + }, "👱🏼", + { + "keywords" : [ + "blond", + "blond-haired person", + "hair", + "medium-light skin tone", + "person: blond hair", + "person: medium-light skin tone, blond hair" + ], + "value" : "👱🏼" + }, "👱🏽", + { + "value" : "👱🏽", + "keywords" : [ + "blond", + "blond-haired person", + "hair", + "medium skin tone", + "person: blond hair", + "person: medium skin tone, blond hair" + ] + }, "👱🏾", + { + "value" : "👱🏾", + "keywords" : [ + "blond", + "blond-haired person", + "hair", + "medium-dark skin tone", + "person: blond hair", + "person: medium-dark skin tone, blond hair" + ] + }, "👱🏿", + { + "value" : "👱🏿", + "keywords" : [ + "blond", + "blond-haired person", + "dark skin tone", + "hair", + "person: blond hair", + "person: dark skin tone, blond hair" + ] + }, "👨", + { + "keywords" : [ + "adult", + "bro", + "man" + ], + "value" : "👨" + }, "👨🏻", + { + "value" : "👨🏻", + "keywords" : [ + "adult", + "light skin tone", + "man", + "man: light skin tone" + ] + }, "👨🏼", + { + "value" : "👨🏼", + "keywords" : [ + "adult", + "man", + "man: medium-light skin tone", + "medium-light skin tone" + ] + }, "👨🏽", + { + "value" : "👨🏽", + "keywords" : [ + "adult", + "man", + "man: medium skin tone", + "medium skin tone" + ] + }, "👨🏾", + { + "value" : "👨🏾", + "keywords" : [ + "adult", + "man", + "man: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "👨🏿", + { + "keywords" : [ + "adult", + "dark skin tone", + "man", + "man: dark skin tone" + ], + "value" : "👨🏿" + }, "🧔", + { + "value" : "🧔", + "keywords" : [ + "beard", + "bearded", + "person", + "whiskers" + ] + }, "🧔🏻", + { + "value" : "🧔🏻", + "keywords" : [ + "beard", + "light skin tone", + "person", + "person: beard", + "person: light skin tone, beard" + ] + }, "🧔🏼", + { + "keywords" : [ + "beard", + "medium-light skin tone", + "person", + "person: beard", + "person: medium-light skin tone, beard" + ], + "value" : "🧔🏼" + }, "🧔🏽", + { + "value" : "🧔🏽", + "keywords" : [ + "beard", + "medium skin tone", + "person", + "person: beard", + "person: medium skin tone, beard" + ] + }, "🧔🏾", + { + "keywords" : [ + "beard", + "medium-dark skin tone", + "person", + "person: beard", + "person: medium-dark skin tone, beard" + ], + "value" : "🧔🏾" + }, "🧔🏿", + { + "value" : "🧔🏿", + "keywords" : [ + "beard", + "dark skin tone", + "person", + "person: beard", + "person: dark skin tone, beard" + ] + }, "🧔‍♂️", + { + "value" : "🧔‍♂️", + "keywords" : [ + "beard", + "bearded", + "man", + "whiskers" + ] + }, "🧔🏻‍♂️", + { + "keywords" : [ + "beard", + "light skin tone", + "man", + "man: beard", + "man: light skin tone, beard" + ], + "value" : "🧔🏻‍♂️" + }, "🧔🏼‍♂️", + { + "value" : "🧔🏼‍♂️", + "keywords" : [ + "beard", + "man", + "man: beard", + "man: medium-light skin tone, beard", + "medium-light skin tone" + ] + }, "🧔🏽‍♂️", + { + "value" : "🧔🏽‍♂️", + "keywords" : [ + "beard", + "man", + "man: beard", + "man: medium skin tone, beard", + "medium skin tone" + ] + }, "🧔🏾‍♂️", + { + "keywords" : [ + "beard", + "man", + "man: beard", + "man: medium-dark skin tone, beard", + "medium-dark skin tone" + ], + "value" : "🧔🏾‍♂️" + }, "🧔🏿‍♂️", + { + "keywords" : [ + "beard", + "dark skin tone", + "man", + "man: beard", + "man: dark skin tone, beard" + ], + "value" : "🧔🏿‍♂️" + }, "🧔‍♀️", + { + "keywords" : [ + "beard", + "bearded", + "whiskers", + "woman" + ], + "value" : "🧔‍♀️" + }, "🧔🏻‍♀️", + { + "keywords" : [ + "beard", + "light skin tone", + "woman", + "woman: beard", + "woman: light skin tone, beard" + ], + "value" : "🧔🏻‍♀️" + }, "🧔🏼‍♀️", + { + "value" : "🧔🏼‍♀️", + "keywords" : [ + "beard", + "medium-light skin tone", + "woman", + "woman: beard", + "woman: medium-light skin tone, beard" + ] + }, "🧔🏽‍♀️", + { + "value" : "🧔🏽‍♀️", + "keywords" : [ + "beard", + "medium skin tone", + "woman", + "woman: beard", + "woman: medium skin tone, beard" + ] + }, "🧔🏾‍♀️", + { + "keywords" : [ + "beard", + "medium-dark skin tone", + "woman", + "woman: beard", + "woman: medium-dark skin tone, beard" + ], + "value" : "🧔🏾‍♀️" + }, "🧔🏿‍♀️", + { + "value" : "🧔🏿‍♀️", + "keywords" : [ + "beard", + "dark skin tone", + "woman", + "woman: beard", + "woman: dark skin tone, beard" + ] + }, "👨‍🦰", + { + "value" : "👨‍🦰", + "keywords" : [ + "adult", + "man", + "man: red hair", + "red hair" + ] + }, "👨🏻‍🦰", + { + "keywords" : [ + "adult", + "light skin tone", + "man", + "man: light skin tone, red hair", + "red hair" + ], + "value" : "👨🏻‍🦰" + }, "👨🏼‍🦰", + { + "value" : "👨🏼‍🦰", + "keywords" : [ + "adult", + "man", + "man: medium-light skin tone, red hair", + "medium-light skin tone", + "red hair" + ] + }, "👨🏽‍🦰", + { + "keywords" : [ + "adult", + "man", + "man: medium skin tone, red hair", + "medium skin tone", + "red hair" + ], + "value" : "👨🏽‍🦰" + }, "👨🏾‍🦰", + { + "keywords" : [ + "adult", + "man", + "man: medium-dark skin tone, red hair", + "medium-dark skin tone", + "red hair" + ], + "value" : "👨🏾‍🦰" + }, "👨🏿‍🦰", + { + "value" : "👨🏿‍🦰", + "keywords" : [ + "adult", + "dark skin tone", + "man", + "man: dark skin tone, red hair", + "red hair" + ] + }, "👨‍🦱", + { + "keywords" : [ + "adult", + "curly hair", + "man", + "man: curly hair" + ], + "value" : "👨‍🦱" + }, "👨🏻‍🦱", + { + "value" : "👨🏻‍🦱", + "keywords" : [ + "adult", + "curly hair", + "light skin tone", + "man", + "man: light skin tone, curly hair" + ] + }, "👨🏼‍🦱", + { + "value" : "👨🏼‍🦱", + "keywords" : [ + "adult", + "curly hair", + "man", + "man: medium-light skin tone, curly hair", + "medium-light skin tone" + ] + }, "👨🏽‍🦱", + { + "value" : "👨🏽‍🦱", + "keywords" : [ + "adult", + "curly hair", + "man", + "man: medium skin tone, curly hair", + "medium skin tone" + ] + }, "👨🏾‍🦱", + { + "value" : "👨🏾‍🦱", + "keywords" : [ + "adult", + "curly hair", + "man", + "man: medium-dark skin tone, curly hair", + "medium-dark skin tone" + ] + }, "👨🏿‍🦱", + { + "value" : "👨🏿‍🦱", + "keywords" : [ + "adult", + "curly hair", + "dark skin tone", + "man", + "man: dark skin tone, curly hair" + ] + }, "👨‍🦳", + { + "keywords" : [ + "adult", + "man", + "man: white hair", + "white hair" + ], + "value" : "👨‍🦳" + }, "👨🏻‍🦳", + { + "value" : "👨🏻‍🦳", + "keywords" : [ + "adult", + "light skin tone", + "man", + "man: light skin tone, white hair", + "white hair" + ] + }, "👨🏼‍🦳", + { + "value" : "👨🏼‍🦳", + "keywords" : [ + "adult", + "man", + "man: medium-light skin tone, white hair", + "medium-light skin tone", + "white hair" + ] + }, "👨🏽‍🦳", + { + "value" : "👨🏽‍🦳", + "keywords" : [ + "adult", + "man", + "man: medium skin tone, white hair", + "medium skin tone", + "white hair" + ] + }, "👨🏾‍🦳", + { + "keywords" : [ + "adult", + "man", + "man: medium-dark skin tone, white hair", + "medium-dark skin tone", + "white hair" + ], + "value" : "👨🏾‍🦳" + }, "👨🏿‍🦳", + { + "keywords" : [ + "adult", + "dark skin tone", + "man", + "man: dark skin tone, white hair", + "white hair" + ], + "value" : "👨🏿‍🦳" + }, "👨‍🦲", + { + "keywords" : [ + "adult", + "bald", + "man", + "man: bald" + ], + "value" : "👨‍🦲" + }, "👨🏻‍🦲", + { + "value" : "👨🏻‍🦲", + "keywords" : [ + "adult", + "bald", + "light skin tone", + "man", + "man: light skin tone, bald" + ] + }, "👨🏼‍🦲", + { + "keywords" : [ + "adult", + "bald", + "man", + "man: medium-light skin tone, bald", + "medium-light skin tone" + ], + "value" : "👨🏼‍🦲" + }, "👨🏽‍🦲", + { + "value" : "👨🏽‍🦲", + "keywords" : [ + "adult", + "bald", + "man", + "man: medium skin tone, bald", + "medium skin tone" + ] + }, "👨🏾‍🦲", + { + "value" : "👨🏾‍🦲", + "keywords" : [ + "adult", + "bald", + "man", + "man: medium-dark skin tone, bald", + "medium-dark skin tone" + ] + }, "👨🏿‍🦲", + { + "keywords" : [ + "adult", + "bald", + "dark skin tone", + "man", + "man: dark skin tone, bald" + ], + "value" : "👨🏿‍🦲" + }, "👩", + { + "value" : "👩", + "keywords" : [ + "adult", + "lady", + "woman" + ] + }, "👩🏻", + { + "keywords" : [ + "adult", + "light skin tone", + "woman", + "woman: light skin tone" + ], + "value" : "👩🏻" + }, "👩🏼", + { + "value" : "👩🏼", + "keywords" : [ + "adult", + "medium-light skin tone", + "woman", + "woman: medium-light skin tone" + ] + }, "👩🏽", + { + "keywords" : [ + "adult", + "medium skin tone", + "woman", + "woman: medium skin tone" + ], + "value" : "👩🏽" + }, "👩🏾", + { + "value" : "👩🏾", + "keywords" : [ + "adult", + "medium-dark skin tone", + "woman", + "woman: medium-dark skin tone" + ] + }, "👩🏿", + { + "keywords" : [ + "adult", + "dark skin tone", + "woman", + "woman: dark skin tone" + ], + "value" : "👩🏿" + }, "👩‍🦰", + { + "keywords" : [ + "adult", + "red hair", + "woman", + "woman: red hair" + ], + "value" : "👩‍🦰" + }, "👩🏻‍🦰", + { + "value" : "👩🏻‍🦰", + "keywords" : [ + "adult", + "light skin tone", + "red hair", + "woman", + "woman: light skin tone, red hair" + ] + }, "👩🏼‍🦰", + { + "keywords" : [ + "adult", + "medium-light skin tone", + "red hair", + "woman", + "woman: medium-light skin tone, red hair" + ], + "value" : "👩🏼‍🦰" + }, "👩🏽‍🦰", + { + "value" : "👩🏽‍🦰", + "keywords" : [ + "adult", + "medium skin tone", + "red hair", + "woman", + "woman: medium skin tone, red hair" + ] + }, "👩🏾‍🦰", + { + "value" : "👩🏾‍🦰", + "keywords" : [ + "adult", + "medium-dark skin tone", + "red hair", + "woman", + "woman: medium-dark skin tone, red hair" + ] + }, "👩🏿‍🦰", + { + "value" : "👩🏿‍🦰", + "keywords" : [ + "adult", + "dark skin tone", + "red hair", + "woman", + "woman: dark skin tone, red hair" + ] + }, "🧑‍🦰", + { + "value" : "🧑‍🦰", + "keywords" : [ + "adult", + "gender-neutral", + "person", + "person: red hair", + "red hair", + "unspecified gender" + ] + }, "🧑🏻‍🦰", + { + "keywords" : [ + "adult", + "gender-neutral", + "light skin tone", + "person", + "person: light skin tone, red hair", + "red hair", + "unspecified gender" + ], + "value" : "🧑🏻‍🦰" + }, "🧑🏼‍🦰", + { + "keywords" : [ + "adult", + "gender-neutral", + "medium-light skin tone", + "person", + "person: medium-light skin tone, red hair", + "red hair", + "unspecified gender" + ], + "value" : "🧑🏼‍🦰" + }, "🧑🏽‍🦰", + { + "value" : "🧑🏽‍🦰", + "keywords" : [ + "adult", + "gender-neutral", + "medium skin tone", + "person", + "person: medium skin tone, red hair", + "red hair", + "unspecified gender" + ] + }, "🧑🏾‍🦰", + { + "value" : "🧑🏾‍🦰", + "keywords" : [ + "adult", + "gender-neutral", + "medium-dark skin tone", + "person", + "person: medium-dark skin tone, red hair", + "red hair", + "unspecified gender" + ] + }, "🧑🏿‍🦰", + { + "value" : "🧑🏿‍🦰", + "keywords" : [ + "adult", + "dark skin tone", + "gender-neutral", + "person", + "person: dark skin tone, red hair", + "red hair", + "unspecified gender" + ] + }, "👩‍🦱", + { + "value" : "👩‍🦱", + "keywords" : [ + "adult", + "curly hair", + "woman", + "woman: curly hair" + ] + }, "👩🏻‍🦱", + { + "value" : "👩🏻‍🦱", + "keywords" : [ + "adult", + "curly hair", + "light skin tone", + "woman", + "woman: light skin tone, curly hair" + ] + }, "👩🏼‍🦱", + { + "value" : "👩🏼‍🦱", + "keywords" : [ + "adult", + "curly hair", + "medium-light skin tone", + "woman", + "woman: medium-light skin tone, curly hair" + ] + }, "👩🏽‍🦱", + { + "keywords" : [ + "adult", + "curly hair", + "medium skin tone", + "woman", + "woman: medium skin tone, curly hair" + ], + "value" : "👩🏽‍🦱" + }, "👩🏾‍🦱", + { + "value" : "👩🏾‍🦱", + "keywords" : [ + "adult", + "curly hair", + "medium-dark skin tone", + "woman", + "woman: medium-dark skin tone, curly hair" + ] + }, "👩🏿‍🦱", + { + "keywords" : [ + "adult", + "curly hair", + "dark skin tone", + "woman", + "woman: dark skin tone, curly hair" + ], + "value" : "👩🏿‍🦱" + }, "🧑‍🦱", + { + "value" : "🧑‍🦱", + "keywords" : [ + "adult", + "curly hair", + "gender-neutral", + "person", + "person: curly hair", + "unspecified gender" + ] + }, "🧑🏻‍🦱", + { + "value" : "🧑🏻‍🦱", + "keywords" : [ + "adult", + "curly hair", + "gender-neutral", + "light skin tone", + "person", + "person: light skin tone, curly hair", + "unspecified gender" + ] + }, "🧑🏼‍🦱", + { + "value" : "🧑🏼‍🦱", + "keywords" : [ + "adult", + "curly hair", + "gender-neutral", + "medium-light skin tone", + "person", + "person: medium-light skin tone, curly hair", + "unspecified gender" + ] + }, "🧑🏽‍🦱", + { + "keywords" : [ + "adult", + "curly hair", + "gender-neutral", + "medium skin tone", + "person", + "person: medium skin tone, curly hair", + "unspecified gender" + ], + "value" : "🧑🏽‍🦱" + }, "🧑🏾‍🦱", + { + "value" : "🧑🏾‍🦱", + "keywords" : [ + "adult", + "curly hair", + "gender-neutral", + "medium-dark skin tone", + "person", + "person: medium-dark skin tone, curly hair", + "unspecified gender" + ] + }, "🧑🏿‍🦱", + { + "keywords" : [ + "adult", + "curly hair", + "dark skin tone", + "gender-neutral", + "person", + "person: dark skin tone, curly hair", + "unspecified gender" + ], + "value" : "🧑🏿‍🦱" + }, "👩‍🦳", + { + "value" : "👩‍🦳", + "keywords" : [ + "adult", + "white hair", + "woman", + "woman: white hair" + ] + }, "👩🏻‍🦳", + { + "value" : "👩🏻‍🦳", + "keywords" : [ + "adult", + "light skin tone", + "white hair", + "woman", + "woman: light skin tone, white hair" + ] + }, "👩🏼‍🦳", + { + "value" : "👩🏼‍🦳", + "keywords" : [ + "adult", + "medium-light skin tone", + "white hair", + "woman", + "woman: medium-light skin tone, white hair" + ] + }, "👩🏽‍🦳", + { + "value" : "👩🏽‍🦳", + "keywords" : [ + "adult", + "medium skin tone", + "white hair", + "woman", + "woman: medium skin tone, white hair" + ] + }, "👩🏾‍🦳", + { + "keywords" : [ + "adult", + "medium-dark skin tone", + "white hair", + "woman", + "woman: medium-dark skin tone, white hair" + ], + "value" : "👩🏾‍🦳" + }, "👩🏿‍🦳", + { + "value" : "👩🏿‍🦳", + "keywords" : [ + "adult", + "dark skin tone", + "white hair", + "woman", + "woman: dark skin tone, white hair" + ] + }, "🧑‍🦳", + { + "keywords" : [ + "adult", + "gender-neutral", + "person", + "person: white hair", + "unspecified gender", + "white hair" + ], + "value" : "🧑‍🦳" + }, "🧑🏻‍🦳", + { + "keywords" : [ + "adult", + "gender-neutral", + "light skin tone", + "person", + "person: light skin tone, white hair", + "unspecified gender", + "white hair" + ], + "value" : "🧑🏻‍🦳" + }, "🧑🏼‍🦳", + { + "value" : "🧑🏼‍🦳", + "keywords" : [ + "adult", + "gender-neutral", + "medium-light skin tone", + "person", + "person: medium-light skin tone, white hair", + "unspecified gender", + "white hair" + ] + }, "🧑🏽‍🦳", + { + "keywords" : [ + "adult", + "gender-neutral", + "medium skin tone", + "person", + "person: medium skin tone, white hair", + "unspecified gender", + "white hair" + ], + "value" : "🧑🏽‍🦳" + }, "🧑🏾‍🦳", + { + "value" : "🧑🏾‍🦳", + "keywords" : [ + "adult", + "gender-neutral", + "medium-dark skin tone", + "person", + "person: medium-dark skin tone, white hair", + "unspecified gender", + "white hair" + ] + }, "🧑🏿‍🦳", + { + "value" : "🧑🏿‍🦳", + "keywords" : [ + "adult", + "dark skin tone", + "gender-neutral", + "person", + "person: dark skin tone, white hair", + "unspecified gender", + "white hair" + ] + }, "👩‍🦲", + { + "value" : "👩‍🦲", + "keywords" : [ + "adult", + "bald", + "woman", + "woman: bald" + ] + }, "👩🏻‍🦲", + { + "value" : "👩🏻‍🦲", + "keywords" : [ + "adult", + "bald", + "light skin tone", + "woman", + "woman: light skin tone, bald" + ] + }, "👩🏼‍🦲", + { + "value" : "👩🏼‍🦲", + "keywords" : [ + "adult", + "bald", + "medium-light skin tone", + "woman", + "woman: medium-light skin tone, bald" + ] + }, "👩🏽‍🦲", + { + "value" : "👩🏽‍🦲", + "keywords" : [ + "adult", + "bald", + "medium skin tone", + "woman", + "woman: medium skin tone, bald" + ] + }, "👩🏾‍🦲", + { + "value" : "👩🏾‍🦲", + "keywords" : [ + "adult", + "bald", + "medium-dark skin tone", + "woman", + "woman: medium-dark skin tone, bald" + ] + }, "👩🏿‍🦲", + { + "value" : "👩🏿‍🦲", + "keywords" : [ + "adult", + "bald", + "dark skin tone", + "woman", + "woman: dark skin tone, bald" + ] + }, "🧑‍🦲", + { + "keywords" : [ + "adult", + "bald", + "gender-neutral", + "person", + "person: bald", + "unspecified gender" + ], + "value" : "🧑‍🦲" + }, "🧑🏻‍🦲", + { + "value" : "🧑🏻‍🦲", + "keywords" : [ + "adult", + "bald", + "gender-neutral", + "light skin tone", + "person", + "person: light skin tone, bald", + "unspecified gender" + ] + }, "🧑🏼‍🦲", + { + "value" : "🧑🏼‍🦲", + "keywords" : [ + "adult", + "bald", + "gender-neutral", + "medium-light skin tone", + "person", + "person: medium-light skin tone, bald", + "unspecified gender" + ] + }, "🧑🏽‍🦲", + { + "value" : "🧑🏽‍🦲", + "keywords" : [ + "adult", + "bald", + "gender-neutral", + "medium skin tone", + "person", + "person: medium skin tone, bald", + "unspecified gender" + ] + }, "🧑🏾‍🦲", + { + "keywords" : [ + "adult", + "bald", + "gender-neutral", + "medium-dark skin tone", + "person", + "person: medium-dark skin tone, bald", + "unspecified gender" + ], + "value" : "🧑🏾‍🦲" + }, "🧑🏿‍🦲", + { + "value" : "🧑🏿‍🦲", + "keywords" : [ + "adult", + "bald", + "dark skin tone", + "gender-neutral", + "person", + "person: dark skin tone, bald", + "unspecified gender" + ] + }, "👱‍♀️", + { + "value" : "👱‍♀️", + "keywords" : [ + "blond", + "blond-haired", + "blonde", + "hair", + "woman" + ] + }, "👱🏻‍♀️", + { + "value" : "👱🏻‍♀️", + "keywords" : [ + "blond hair", + "blond-haired woman", + "blonde", + "hair", + "light skin tone", + "woman", + "woman: blond hair", + "woman: light skin tone, blond hair" + ] + }, "👱🏼‍♀️", + { + "value" : "👱🏼‍♀️", + "keywords" : [ + "blond hair", + "blond-haired woman", + "blonde", + "hair", + "medium-light skin tone", + "woman", + "woman: blond hair", + "woman: medium-light skin tone, blond hair" + ] + }, "👱🏽‍♀️", + { + "keywords" : [ + "blond hair", + "blond-haired woman", + "blonde", + "hair", + "medium skin tone", + "woman", + "woman: blond hair", + "woman: medium skin tone, blond hair" + ], + "value" : "👱🏽‍♀️" + }, "👱🏾‍♀️", + { + "value" : "👱🏾‍♀️", + "keywords" : [ + "blond hair", + "blond-haired woman", + "blonde", + "hair", + "medium-dark skin tone", + "woman", + "woman: blond hair", + "woman: medium-dark skin tone, blond hair" + ] + }, "👱🏿‍♀️", + { + "keywords" : [ + "blond hair", + "blond-haired woman", + "blonde", + "dark skin tone", + "hair", + "woman", + "woman: blond hair", + "woman: dark skin tone, blond hair" + ], + "value" : "👱🏿‍♀️" + }, "👱‍♂️", + { + "value" : "👱‍♂️", + "keywords" : [ + "blond", + "blond-haired", + "hair", + "man" + ] + }, "👱🏻‍♂️", + { + "keywords" : [ + "blond", + "blond-haired man", + "hair", + "light skin tone", + "man", + "man: blond hair", + "man: light skin tone, blond hair" + ], + "value" : "👱🏻‍♂️" + }, "👱🏼‍♂️", + { + "keywords" : [ + "blond", + "blond-haired man", + "hair", + "man", + "man: blond hair", + "man: medium-light skin tone, blond hair", + "medium-light skin tone" + ], + "value" : "👱🏼‍♂️" + }, "👱🏽‍♂️", + { + "value" : "👱🏽‍♂️", + "keywords" : [ + "blond", + "blond-haired man", + "hair", + "man", + "man: blond hair", + "man: medium skin tone, blond hair", + "medium skin tone" + ] + }, "👱🏾‍♂️", + { + "value" : "👱🏾‍♂️", + "keywords" : [ + "blond", + "blond-haired man", + "hair", + "man", + "man: blond hair", + "man: medium-dark skin tone, blond hair", + "medium-dark skin tone" + ] + }, "👱🏿‍♂️", + { + "value" : "👱🏿‍♂️", + "keywords" : [ + "blond", + "blond-haired man", + "dark skin tone", + "hair", + "man", + "man: blond hair", + "man: dark skin tone, blond hair" + ] + }, "🧓", + { + "value" : "🧓", + "keywords" : [ + "adult", + "elderly", + "grandparent", + "old", + "person", + "wise" + ] + }, "🧓🏻", + { + "keywords" : [ + "adult", + "gender-neutral", + "light skin tone", + "old", + "older person", + "older person: light skin tone", + "unspecified gender" + ], + "value" : "🧓🏻" + }, "🧓🏼", + { + "value" : "🧓🏼", + "keywords" : [ + "adult", + "gender-neutral", + "medium-light skin tone", + "old", + "older person", + "older person: medium-light skin tone", + "unspecified gender" + ] + }, "🧓🏽", + { + "value" : "🧓🏽", + "keywords" : [ + "adult", + "gender-neutral", + "medium skin tone", + "old", + "older person", + "older person: medium skin tone", + "unspecified gender" + ] + }, "🧓🏾", + { + "value" : "🧓🏾", + "keywords" : [ + "adult", + "gender-neutral", + "medium-dark skin tone", + "old", + "older person", + "older person: medium-dark skin tone", + "unspecified gender" + ] + }, "🧓🏿", + { + "value" : "🧓🏿", + "keywords" : [ + "adult", + "dark skin tone", + "gender-neutral", + "old", + "older person", + "older person: dark skin tone", + "unspecified gender" + ] + }, "👴", + { + "value" : "👴", + "keywords" : [ + "adult", + "bald", + "elderly", + "gramps", + "grandfather", + "grandpa", + "man", + "old", + "wise" + ] + }, "👴🏻", + { + "keywords" : [ + "adult", + "light skin tone", + "man", + "old", + "old man: light skin tone" + ], + "value" : "👴🏻" + }, "👴🏼", + { + "keywords" : [ + "adult", + "man", + "medium-light skin tone", + "old", + "old man: medium-light skin tone" + ], + "value" : "👴🏼" + }, "👴🏽", + { + "keywords" : [ + "adult", + "man", + "medium skin tone", + "old", + "old man: medium skin tone" + ], + "value" : "👴🏽" + }, "👴🏾", + { + "value" : "👴🏾", + "keywords" : [ + "adult", + "man", + "medium-dark skin tone", + "old", + "old man: medium-dark skin tone" + ] + }, "👴🏿", + { + "value" : "👴🏿", + "keywords" : [ + "adult", + "dark skin tone", + "man", + "old", + "old man: dark skin tone" + ] + }, "👵", + { + "value" : "👵", + "keywords" : [ + "adult", + "elderly", + "grandma", + "grandmother", + "granny", + "lady", + "old", + "wise", + "woman" + ] + }, "👵🏻", + { + "value" : "👵🏻", + "keywords" : [ + "adult", + "light skin tone", + "old", + "old woman: light skin tone", + "woman" + ] + }, "👵🏼", + { + "value" : "👵🏼", + "keywords" : [ + "adult", + "medium-light skin tone", + "old", + "old woman: medium-light skin tone", + "woman" + ] + }, "👵🏽", + { + "value" : "👵🏽", + "keywords" : [ + "adult", + "medium skin tone", + "old", + "old woman: medium skin tone", + "woman" + ] + }, "👵🏾", + { + "keywords" : [ + "adult", + "medium-dark skin tone", + "old", + "old woman: medium-dark skin tone", + "woman" + ], + "value" : "👵🏾" + }, "👵🏿", + { + "value" : "👵🏿", + "keywords" : [ + "adult", + "dark skin tone", + "old", + "old woman: dark skin tone", + "woman" + ] + }, "🙍", + { + "value" : "🙍", + "keywords" : [ + "annoyed", + "disappointed", + "disgruntled", + "disturbed", + "frown", + "frowning", + "frustrated", + "gesture", + "irritated", + "person", + "upset" + ] + }, "🙍🏻", + { + "keywords" : [ + "frown", + "gesture", + "light skin tone", + "person frowning", + "person frowning: light skin tone" + ], + "value" : "🙍🏻" + }, "🙍🏼", + { + "value" : "🙍🏼", + "keywords" : [ + "frown", + "gesture", + "medium-light skin tone", + "person frowning", + "person frowning: medium-light skin tone" + ] + }, "🙍🏽", + { + "keywords" : [ + "frown", + "gesture", + "medium skin tone", + "person frowning", + "person frowning: medium skin tone" + ], + "value" : "🙍🏽" + }, "🙍🏾", + { + "value" : "🙍🏾", + "keywords" : [ + "frown", + "gesture", + "medium-dark skin tone", + "person frowning", + "person frowning: medium-dark skin tone" + ] + }, "🙍🏿", + { + "keywords" : [ + "dark skin tone", + "frown", + "gesture", + "person frowning", + "person frowning: dark skin tone" + ], + "value" : "🙍🏿" + }, "🙍‍♂️", + { + "value" : "🙍‍♂️", + "keywords" : [ + "annoyed", + "disappointed", + "disgruntled", + "disturbed", + "frown", + "frowning", + "frustrated", + "gesture", + "irritated", + "man", + "upset" + ] + }, "🙍🏻‍♂️", + { + "value" : "🙍🏻‍♂️", + "keywords" : [ + "frowning", + "gesture", + "light skin tone", + "man", + "man frowning: light skin tone" + ] + }, "🙍🏼‍♂️", + { + "value" : "🙍🏼‍♂️", + "keywords" : [ + "frowning", + "gesture", + "man", + "man frowning: medium-light skin tone", + "medium-light skin tone" + ] + }, "🙍🏽‍♂️", + { + "keywords" : [ + "frowning", + "gesture", + "man", + "man frowning: medium skin tone", + "medium skin tone" + ], + "value" : "🙍🏽‍♂️" + }, "🙍🏾‍♂️", + { + "value" : "🙍🏾‍♂️", + "keywords" : [ + "frowning", + "gesture", + "man", + "man frowning: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "🙍🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "frowning", + "gesture", + "man", + "man frowning: dark skin tone" + ], + "value" : "🙍🏿‍♂️" + }, "🙍‍♀️", + { + "value" : "🙍‍♀️", + "keywords" : [ + "annoyed", + "disappointed", + "disgruntled", + "disturbed", + "frown", + "frowning", + "frustrated", + "gesture", + "irritated", + "upset", + "woman" + ] + }, "🙍🏻‍♀️", + { + "value" : "🙍🏻‍♀️", + "keywords" : [ + "frowning", + "gesture", + "light skin tone", + "woman", + "woman frowning: light skin tone" + ] + }, "🙍🏼‍♀️", + { + "value" : "🙍🏼‍♀️", + "keywords" : [ + "frowning", + "gesture", + "medium-light skin tone", + "woman", + "woman frowning: medium-light skin tone" + ] + }, "🙍🏽‍♀️", + { + "value" : "🙍🏽‍♀️", + "keywords" : [ + "frowning", + "gesture", + "medium skin tone", + "woman", + "woman frowning: medium skin tone" + ] + }, "🙍🏾‍♀️", + { + "value" : "🙍🏾‍♀️", + "keywords" : [ + "frowning", + "gesture", + "medium-dark skin tone", + "woman", + "woman frowning: medium-dark skin tone" + ] + }, "🙍🏿‍♀️", + { + "value" : "🙍🏿‍♀️", + "keywords" : [ + "dark skin tone", + "frowning", + "gesture", + "woman", + "woman frowning: dark skin tone" + ] + }, "🙎", + { + "keywords" : [ + "disappointed", + "downtrodden", + "frown", + "grimace", + "person", + "pouting", + "scowl", + "sulk", + "upset", + "whine" + ], + "value" : "🙎" + }, "🙎🏻", + { + "value" : "🙎🏻", + "keywords" : [ + "gesture", + "light skin tone", + "person pouting", + "person pouting: light skin tone", + "pouting" + ] + }, "🙎🏼", + { + "value" : "🙎🏼", + "keywords" : [ + "gesture", + "medium-light skin tone", + "person pouting", + "person pouting: medium-light skin tone", + "pouting" + ] + }, "🙎🏽", + { + "keywords" : [ + "gesture", + "medium skin tone", + "person pouting", + "person pouting: medium skin tone", + "pouting" + ], + "value" : "🙎🏽" + }, "🙎🏾", + { + "keywords" : [ + "gesture", + "medium-dark skin tone", + "person pouting", + "person pouting: medium-dark skin tone", + "pouting" + ], + "value" : "🙎🏾" + }, "🙎🏿", + { + "keywords" : [ + "dark skin tone", + "gesture", + "person pouting", + "person pouting: dark skin tone", + "pouting" + ], + "value" : "🙎🏿" + }, "🙎‍♂️", + { + "value" : "🙎‍♂️", + "keywords" : [ + "disappointed", + "downtrodden", + "frown", + "grimace", + "man", + "pouting", + "scowl", + "sulk", + "upset", + "whine" + ] + }, "🙎🏻‍♂️", + { + "value" : "🙎🏻‍♂️", + "keywords" : [ + "gesture", + "light skin tone", + "man", + "man pouting: light skin tone", + "pouting" + ] + }, "🙎🏼‍♂️", + { + "keywords" : [ + "gesture", + "man", + "man pouting: medium-light skin tone", + "medium-light skin tone", + "pouting" + ], + "value" : "🙎🏼‍♂️" + }, "🙎🏽‍♂️", + { + "value" : "🙎🏽‍♂️", + "keywords" : [ + "gesture", + "man", + "man pouting: medium skin tone", + "medium skin tone", + "pouting" + ] + }, "🙎🏾‍♂️", + { + "keywords" : [ + "gesture", + "man", + "man pouting: medium-dark skin tone", + "medium-dark skin tone", + "pouting" + ], + "value" : "🙎🏾‍♂️" + }, "🙎🏿‍♂️", + { + "value" : "🙎🏿‍♂️", + "keywords" : [ + "dark skin tone", + "gesture", + "man", + "man pouting: dark skin tone", + "pouting" + ] + }, "🙎‍♀️", + { + "value" : "🙎‍♀️", + "keywords" : [ + "disappointed", + "downtrodden", + "frown", + "grimace", + "pouting", + "scowl", + "sulk", + "upset", + "whine", + "woman" + ] + }, "🙎🏻‍♀️", + { + "value" : "🙎🏻‍♀️", + "keywords" : [ + "gesture", + "light skin tone", + "pouting", + "woman", + "woman pouting: light skin tone" + ] + }, "🙎🏼‍♀️", + { + "keywords" : [ + "gesture", + "medium-light skin tone", + "pouting", + "woman", + "woman pouting: medium-light skin tone" + ], + "value" : "🙎🏼‍♀️" + }, "🙎🏽‍♀️", + { + "keywords" : [ + "gesture", + "medium skin tone", + "pouting", + "woman", + "woman pouting: medium skin tone" + ], + "value" : "🙎🏽‍♀️" + }, "🙎🏾‍♀️", + { + "keywords" : [ + "gesture", + "medium-dark skin tone", + "pouting", + "woman", + "woman pouting: medium-dark skin tone" + ], + "value" : "🙎🏾‍♀️" + }, "🙎🏿‍♀️", + { + "value" : "🙎🏿‍♀️", + "keywords" : [ + "dark skin tone", + "gesture", + "pouting", + "woman", + "woman pouting: dark skin tone" + ] + }, "🙅", + { + "value" : "🙅", + "keywords" : [ + "forbidden", + "gesture", + "hand", + "NO", + "not", + "person", + "prohibit" + ] + }, "🙅🏻", + { + "value" : "🙅🏻", + "keywords" : [ + "forbidden", + "gesture", + "hand", + "light skin tone", + "person gesturing NO", + "person gesturing NO: light skin tone", + "prohibited" + ] + }, "🙅🏼", + { + "keywords" : [ + "forbidden", + "gesture", + "hand", + "medium-light skin tone", + "person gesturing NO", + "person gesturing NO: medium-light skin tone", + "prohibited" + ], + "value" : "🙅🏼" + }, "🙅🏽", + { + "keywords" : [ + "forbidden", + "gesture", + "hand", + "medium skin tone", + "person gesturing NO", + "person gesturing NO: medium skin tone", + "prohibited" + ], + "value" : "🙅🏽" + }, "🙅🏾", + { + "keywords" : [ + "forbidden", + "gesture", + "hand", + "medium-dark skin tone", + "person gesturing NO", + "person gesturing NO: medium-dark skin tone", + "prohibited" + ], + "value" : "🙅🏾" + }, "🙅🏿", + { + "keywords" : [ + "dark skin tone", + "forbidden", + "gesture", + "hand", + "person gesturing NO", + "person gesturing NO: dark skin tone", + "prohibited" + ], + "value" : "🙅🏿" + }, "🙅‍♂️", + { + "keywords" : [ + "forbidden", + "gesture", + "hand", + "man", + "NO", + "not", + "prohibit" + ], + "value" : "🙅‍♂️" + }, "🙅🏻‍♂️", + { + "keywords" : [ + "forbidden", + "gesture", + "hand", + "light skin tone", + "man", + "man gesturing NO", + "man gesturing NO: light skin tone", + "prohibited" + ], + "value" : "🙅🏻‍♂️" + }, "🙅🏼‍♂️", + { + "value" : "🙅🏼‍♂️", + "keywords" : [ + "forbidden", + "gesture", + "hand", + "man", + "man gesturing NO", + "man gesturing NO: medium-light skin tone", + "medium-light skin tone", + "prohibited" + ] + }, "🙅🏽‍♂️", + { + "value" : "🙅🏽‍♂️", + "keywords" : [ + "forbidden", + "gesture", + "hand", + "man", + "man gesturing NO", + "man gesturing NO: medium skin tone", + "medium skin tone", + "prohibited" + ] + }, "🙅🏾‍♂️", + { + "value" : "🙅🏾‍♂️", + "keywords" : [ + "forbidden", + "gesture", + "hand", + "man", + "man gesturing NO", + "man gesturing NO: medium-dark skin tone", + "medium-dark skin tone", + "prohibited" + ] + }, "🙅🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "forbidden", + "gesture", + "hand", + "man", + "man gesturing NO", + "man gesturing NO: dark skin tone", + "prohibited" + ], + "value" : "🙅🏿‍♂️" + }, "🙅‍♀️", + { + "value" : "🙅‍♀️", + "keywords" : [ + "forbidden", + "gesture", + "hand", + "NO", + "not", + "prohibit", + "woman" + ] + }, "🙅🏻‍♀️", + { + "keywords" : [ + "forbidden", + "gesture", + "hand", + "light skin tone", + "prohibited", + "woman", + "woman gesturing NO", + "woman gesturing NO: light skin tone" + ], + "value" : "🙅🏻‍♀️" + }, "🙅🏼‍♀️", + { + "value" : "🙅🏼‍♀️", + "keywords" : [ + "forbidden", + "gesture", + "hand", + "medium-light skin tone", + "prohibited", + "woman", + "woman gesturing NO", + "woman gesturing NO: medium-light skin tone" + ] + }, "🙅🏽‍♀️", + { + "value" : "🙅🏽‍♀️", + "keywords" : [ + "forbidden", + "gesture", + "hand", + "medium skin tone", + "prohibited", + "woman", + "woman gesturing NO", + "woman gesturing NO: medium skin tone" + ] + }, "🙅🏾‍♀️", + { + "value" : "🙅🏾‍♀️", + "keywords" : [ + "forbidden", + "gesture", + "hand", + "medium-dark skin tone", + "prohibited", + "woman", + "woman gesturing NO", + "woman gesturing NO: medium-dark skin tone" + ] + }, "🙅🏿‍♀️", + { + "keywords" : [ + "dark skin tone", + "forbidden", + "gesture", + "hand", + "prohibited", + "woman", + "woman gesturing NO", + "woman gesturing NO: dark skin tone" + ], + "value" : "🙅🏿‍♀️" + }, "🙆", + { + "keywords" : [ + "exercise", + "gesture", + "gesturing", + "hand", + "OK", + "omg", + "person" + ], + "value" : "🙆" + }, "🙆🏻", + { + "keywords" : [ + "gesture", + "hand", + "light skin tone", + "OK", + "person gesturing OK", + "person gesturing OK: light skin tone" + ], + "value" : "🙆🏻" + }, "🙆🏼", + { + "value" : "🙆🏼", + "keywords" : [ + "gesture", + "hand", + "medium-light skin tone", + "OK", + "person gesturing OK", + "person gesturing OK: medium-light skin tone" + ] + }, "🙆🏽", + { + "keywords" : [ + "gesture", + "hand", + "medium skin tone", + "OK", + "person gesturing OK", + "person gesturing OK: medium skin tone" + ], + "value" : "🙆🏽" + }, "🙆🏾", + { + "keywords" : [ + "gesture", + "hand", + "medium-dark skin tone", + "OK", + "person gesturing OK", + "person gesturing OK: medium-dark skin tone" + ], + "value" : "🙆🏾" + }, "🙆🏿", + { + "value" : "🙆🏿", + "keywords" : [ + "dark skin tone", + "gesture", + "hand", + "OK", + "person gesturing OK", + "person gesturing OK: dark skin tone" + ] + }, "🙆‍♂️", + { + "value" : "🙆‍♂️", + "keywords" : [ + "exercise", + "gesture", + "gesturing", + "hand", + "man", + "OK", + "omg" + ] + }, "🙆🏻‍♂️", + { + "keywords" : [ + "gesture", + "hand", + "light skin tone", + "man", + "man gesturing OK", + "man gesturing OK: light skin tone", + "OK" + ], + "value" : "🙆🏻‍♂️" + }, "🙆🏼‍♂️", + { + "keywords" : [ + "gesture", + "hand", + "man", + "man gesturing OK", + "man gesturing OK: medium-light skin tone", + "medium-light skin tone", + "OK" + ], + "value" : "🙆🏼‍♂️" + }, "🙆🏽‍♂️", + { + "value" : "🙆🏽‍♂️", + "keywords" : [ + "gesture", + "hand", + "man", + "man gesturing OK", + "man gesturing OK: medium skin tone", + "medium skin tone", + "OK" + ] + }, "🙆🏾‍♂️", + { + "value" : "🙆🏾‍♂️", + "keywords" : [ + "gesture", + "hand", + "man", + "man gesturing OK", + "man gesturing OK: medium-dark skin tone", + "medium-dark skin tone", + "OK" + ] + }, "🙆🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "gesture", + "hand", + "man", + "man gesturing OK", + "man gesturing OK: dark skin tone", + "OK" + ], + "value" : "🙆🏿‍♂️" + }, "🙆‍♀️", + { + "keywords" : [ + "exercise", + "gesture", + "gesturing", + "hand", + "OK", + "omg", + "woman" + ], + "value" : "🙆‍♀️" + }, "🙆🏻‍♀️", + { + "value" : "🙆🏻‍♀️", + "keywords" : [ + "gesture", + "hand", + "light skin tone", + "OK", + "woman", + "woman gesturing OK", + "woman gesturing OK: light skin tone" + ] + }, "🙆🏼‍♀️", + { + "value" : "🙆🏼‍♀️", + "keywords" : [ + "gesture", + "hand", + "medium-light skin tone", + "OK", + "woman", + "woman gesturing OK", + "woman gesturing OK: medium-light skin tone" + ] + }, "🙆🏽‍♀️", + { + "value" : "🙆🏽‍♀️", + "keywords" : [ + "gesture", + "hand", + "medium skin tone", + "OK", + "woman", + "woman gesturing OK", + "woman gesturing OK: medium skin tone" + ] + }, "🙆🏾‍♀️", + { + "keywords" : [ + "gesture", + "hand", + "medium-dark skin tone", + "OK", + "woman", + "woman gesturing OK", + "woman gesturing OK: medium-dark skin tone" + ], + "value" : "🙆🏾‍♀️" + }, "🙆🏿‍♀️", + { + "keywords" : [ + "dark skin tone", + "gesture", + "hand", + "OK", + "woman", + "woman gesturing OK", + "woman gesturing OK: dark skin tone" + ], + "value" : "🙆🏿‍♀️" + }, "💁", + { + "value" : "💁", + "keywords" : [ + "fetch", + "flick", + "flip", + "gossip", + "hand", + "person", + "sarcasm", + "sarcastic", + "sassy", + "seriously", + "tipping", + "whatever" + ] + }, "💁🏻", + { + "keywords" : [ + "hand", + "help", + "information", + "light skin tone", + "person tipping hand", + "person tipping hand: light skin tone", + "sassy", + "tipping" + ], + "value" : "💁🏻" + }, "💁🏼", + { + "keywords" : [ + "hand", + "help", + "information", + "medium-light skin tone", + "person tipping hand", + "person tipping hand: medium-light skin tone", + "sassy", + "tipping" + ], + "value" : "💁🏼" + }, "💁🏽", + { + "value" : "💁🏽", + "keywords" : [ + "hand", + "help", + "information", + "medium skin tone", + "person tipping hand", + "person tipping hand: medium skin tone", + "sassy", + "tipping" + ] + }, "💁🏾", + { + "keywords" : [ + "hand", + "help", + "information", + "medium-dark skin tone", + "person tipping hand", + "person tipping hand: medium-dark skin tone", + "sassy", + "tipping" + ], + "value" : "💁🏾" + }, "💁🏿", + { + "value" : "💁🏿", + "keywords" : [ + "dark skin tone", + "hand", + "help", + "information", + "person tipping hand", + "person tipping hand: dark skin tone", + "sassy", + "tipping" + ] + }, "💁‍♂️", + { + "value" : "💁‍♂️", + "keywords" : [ + "fetch", + "flick", + "flip", + "gossip", + "hand", + "man", + "sarcasm", + "sarcastic", + "sassy", + "seriously", + "tipping", + "whatever" + ] + }, "💁🏻‍♂️", + { + "value" : "💁🏻‍♂️", + "keywords" : [ + "light skin tone", + "man", + "man tipping hand", + "man tipping hand: light skin tone", + "sassy", + "tipping hand" + ] + }, "💁🏼‍♂️", + { + "value" : "💁🏼‍♂️", + "keywords" : [ + "man", + "man tipping hand", + "man tipping hand: medium-light skin tone", + "medium-light skin tone", + "sassy", + "tipping hand" + ] + }, "💁🏽‍♂️", + { + "value" : "💁🏽‍♂️", + "keywords" : [ + "man", + "man tipping hand", + "man tipping hand: medium skin tone", + "medium skin tone", + "sassy", + "tipping hand" + ] + }, "💁🏾‍♂️", + { + "value" : "💁🏾‍♂️", + "keywords" : [ + "man", + "man tipping hand", + "man tipping hand: medium-dark skin tone", + "medium-dark skin tone", + "sassy", + "tipping hand" + ] + }, "💁🏿‍♂️", + { + "value" : "💁🏿‍♂️", + "keywords" : [ + "dark skin tone", + "man", + "man tipping hand", + "man tipping hand: dark skin tone", + "sassy", + "tipping hand" + ] + }, "💁‍♀️", + { + "keywords" : [ + "fetch", + "flick", + "flip", + "gossip", + "hand", + "sarcasm", + "sarcastic", + "sassy", + "seriously", + "tipping", + "whatever", + "woman" + ], + "value" : "💁‍♀️" + }, "💁🏻‍♀️", + { + "keywords" : [ + "light skin tone", + "sassy", + "tipping hand", + "woman", + "woman tipping hand", + "woman tipping hand: light skin tone" + ], + "value" : "💁🏻‍♀️" + }, "💁🏼‍♀️", + { + "value" : "💁🏼‍♀️", + "keywords" : [ + "medium-light skin tone", + "sassy", + "tipping hand", + "woman", + "woman tipping hand", + "woman tipping hand: medium-light skin tone" + ] + }, "💁🏽‍♀️", + { + "keywords" : [ + "medium skin tone", + "sassy", + "tipping hand", + "woman", + "woman tipping hand", + "woman tipping hand: medium skin tone" + ], + "value" : "💁🏽‍♀️" + }, "💁🏾‍♀️", + { + "value" : "💁🏾‍♀️", + "keywords" : [ + "medium-dark skin tone", + "sassy", + "tipping hand", + "woman", + "woman tipping hand", + "woman tipping hand: medium-dark skin tone" + ] + }, "💁🏿‍♀️", + { + "value" : "💁🏿‍♀️", + "keywords" : [ + "dark skin tone", + "sassy", + "tipping hand", + "woman", + "woman tipping hand", + "woman tipping hand: dark skin tone" + ] + }, "🙋", + { + "value" : "🙋", + "keywords" : [ + "gesture", + "hand", + "here", + "know", + "me", + "person", + "pick", + "question", + "raise", + "raising" + ] + }, "🙋🏻", + { + "keywords" : [ + "gesture", + "hand", + "happy", + "light skin tone", + "person raising hand", + "person raising hand: light skin tone", + "raised" + ], + "value" : "🙋🏻" + }, "🙋🏼", + { + "value" : "🙋🏼", + "keywords" : [ + "gesture", + "hand", + "happy", + "medium-light skin tone", + "person raising hand", + "person raising hand: medium-light skin tone", + "raised" + ] + }, "🙋🏽", + { + "value" : "🙋🏽", + "keywords" : [ + "gesture", + "hand", + "happy", + "medium skin tone", + "person raising hand", + "person raising hand: medium skin tone", + "raised" + ] + }, "🙋🏾", + { + "value" : "🙋🏾", + "keywords" : [ + "gesture", + "hand", + "happy", + "medium-dark skin tone", + "person raising hand", + "person raising hand: medium-dark skin tone", + "raised" + ] + }, "🙋🏿", + { + "value" : "🙋🏿", + "keywords" : [ + "dark skin tone", + "gesture", + "hand", + "happy", + "person raising hand", + "person raising hand: dark skin tone", + "raised" + ] + }, "🙋‍♂️", + { + "value" : "🙋‍♂️", + "keywords" : [ + "gesture", + "hand", + "here", + "know", + "man", + "me", + "pick", + "question", + "raise", + "raising" + ] + }, "🙋🏻‍♂️", + { + "keywords" : [ + "gesture", + "light skin tone", + "man", + "man raising hand", + "man raising hand: light skin tone", + "raising hand" + ], + "value" : "🙋🏻‍♂️" + }, "🙋🏼‍♂️", + { + "keywords" : [ + "gesture", + "man", + "man raising hand", + "man raising hand: medium-light skin tone", + "medium-light skin tone", + "raising hand" + ], + "value" : "🙋🏼‍♂️" + }, "🙋🏽‍♂️", + { + "value" : "🙋🏽‍♂️", + "keywords" : [ + "gesture", + "man", + "man raising hand", + "man raising hand: medium skin tone", + "medium skin tone", + "raising hand" + ] + }, "🙋🏾‍♂️", + { + "keywords" : [ + "gesture", + "man", + "man raising hand", + "man raising hand: medium-dark skin tone", + "medium-dark skin tone", + "raising hand" + ], + "value" : "🙋🏾‍♂️" + }, "🙋🏿‍♂️", + { + "value" : "🙋🏿‍♂️", + "keywords" : [ + "dark skin tone", + "gesture", + "man", + "man raising hand", + "man raising hand: dark skin tone", + "raising hand" + ] + }, "🙋‍♀️", + { + "value" : "🙋‍♀️", + "keywords" : [ + "gesture", + "hand", + "here", + "know", + "me", + "pick", + "question", + "raise", + "raising", + "woman" + ] + }, "🙋🏻‍♀️", + { + "value" : "🙋🏻‍♀️", + "keywords" : [ + "gesture", + "light skin tone", + "raising hand", + "woman", + "woman raising hand", + "woman raising hand: light skin tone" + ] + }, "🙋🏼‍♀️", + { + "value" : "🙋🏼‍♀️", + "keywords" : [ + "gesture", + "medium-light skin tone", + "raising hand", + "woman", + "woman raising hand", + "woman raising hand: medium-light skin tone" + ] + }, "🙋🏽‍♀️", + { + "keywords" : [ + "gesture", + "medium skin tone", + "raising hand", + "woman", + "woman raising hand", + "woman raising hand: medium skin tone" + ], + "value" : "🙋🏽‍♀️" + }, "🙋🏾‍♀️", + { + "keywords" : [ + "gesture", + "medium-dark skin tone", + "raising hand", + "woman", + "woman raising hand", + "woman raising hand: medium-dark skin tone" + ], + "value" : "🙋🏾‍♀️" + }, "🙋🏿‍♀️", + { + "value" : "🙋🏿‍♀️", + "keywords" : [ + "dark skin tone", + "gesture", + "raising hand", + "woman", + "woman raising hand", + "woman raising hand: dark skin tone" + ] + }, "🧏", + { + "keywords" : [ + "accessibility", + "deaf", + "ear", + "gesture", + "hear", + "person" + ], + "value" : "🧏" + }, "🧏🏻", + { + "value" : "🧏🏻", + "keywords" : [ + "accessibility", + "deaf", + "deaf person", + "deaf person: light skin tone", + "ear", + "hear", + "light skin tone" + ] + }, "🧏🏼", + { + "value" : "🧏🏼", + "keywords" : [ + "accessibility", + "deaf", + "deaf person", + "deaf person: medium-light skin tone", + "ear", + "hear", + "medium-light skin tone" + ] + }, "🧏🏽", + { + "value" : "🧏🏽", + "keywords" : [ + "accessibility", + "deaf", + "deaf person", + "deaf person: medium skin tone", + "ear", + "hear", + "medium skin tone" + ] + }, "🧏🏾", + { + "value" : "🧏🏾", + "keywords" : [ + "accessibility", + "deaf", + "deaf person", + "deaf person: medium-dark skin tone", + "ear", + "hear", + "medium-dark skin tone" + ] + }, "🧏🏿", + { + "value" : "🧏🏿", + "keywords" : [ + "accessibility", + "dark skin tone", + "deaf", + "deaf person", + "deaf person: dark skin tone", + "ear", + "hear" + ] + }, "🧏‍♂️", + { + "value" : "🧏‍♂️", + "keywords" : [ + "accessibility", + "deaf", + "ear", + "gesture", + "hear", + "man" + ] + }, "🧏🏻‍♂️", + { + "keywords" : [ + "deaf", + "deaf man: light skin tone", + "light skin tone", + "man" + ], + "value" : "🧏🏻‍♂️" + }, "🧏🏼‍♂️", + { + "keywords" : [ + "deaf", + "deaf man: medium-light skin tone", + "man", + "medium-light skin tone" + ], + "value" : "🧏🏼‍♂️" + }, "🧏🏽‍♂️", + { + "keywords" : [ + "deaf", + "deaf man: medium skin tone", + "man", + "medium skin tone" + ], + "value" : "🧏🏽‍♂️" + }, "🧏🏾‍♂️", + { + "value" : "🧏🏾‍♂️", + "keywords" : [ + "deaf", + "deaf man: medium-dark skin tone", + "man", + "medium-dark skin tone" + ] + }, "🧏🏿‍♂️", + { + "value" : "🧏🏿‍♂️", + "keywords" : [ + "dark skin tone", + "deaf", + "deaf man: dark skin tone", + "man" + ] + }, "🧏‍♀️", + { + "value" : "🧏‍♀️", + "keywords" : [ + "accessibility", + "deaf", + "ear", + "gesture", + "hear", + "woman" + ] + }, "🧏🏻‍♀️", + { + "keywords" : [ + "deaf", + "deaf woman: light skin tone", + "light skin tone", + "woman" + ], + "value" : "🧏🏻‍♀️" + }, "🧏🏼‍♀️", + { + "value" : "🧏🏼‍♀️", + "keywords" : [ + "deaf", + "deaf woman: medium-light skin tone", + "medium-light skin tone", + "woman" + ] + }, "🧏🏽‍♀️", + { + "keywords" : [ + "deaf", + "deaf woman: medium skin tone", + "medium skin tone", + "woman" + ], + "value" : "🧏🏽‍♀️" + }, "🧏🏾‍♀️", + { + "value" : "🧏🏾‍♀️", + "keywords" : [ + "deaf", + "deaf woman: medium-dark skin tone", + "medium-dark skin tone", + "woman" + ] + }, "🧏🏿‍♀️", + { + "value" : "🧏🏿‍♀️", + "keywords" : [ + "dark skin tone", + "deaf", + "deaf woman: dark skin tone", + "woman" + ] + }, "🙇", + { + "keywords" : [ + "apology", + "ask", + "beg", + "bow", + "bowing", + "favor", + "forgive", + "gesture", + "meditate", + "meditation", + "person", + "pity", + "regret", + "sorry" + ], + "value" : "🙇" + }, "🙇🏻", + { + "value" : "🙇🏻", + "keywords" : [ + "apology", + "bow", + "gesture", + "light skin tone", + "person bowing", + "person bowing: light skin tone", + "sorry" + ] + }, "🙇🏼", + { + "value" : "🙇🏼", + "keywords" : [ + "apology", + "bow", + "gesture", + "medium-light skin tone", + "person bowing", + "person bowing: medium-light skin tone", + "sorry" + ] + }, "🙇🏽", + { + "value" : "🙇🏽", + "keywords" : [ + "apology", + "bow", + "gesture", + "medium skin tone", + "person bowing", + "person bowing: medium skin tone", + "sorry" + ] + }, "🙇🏾", + { + "keywords" : [ + "apology", + "bow", + "gesture", + "medium-dark skin tone", + "person bowing", + "person bowing: medium-dark skin tone", + "sorry" + ], + "value" : "🙇🏾" + }, "🙇🏿", + { + "value" : "🙇🏿", + "keywords" : [ + "apology", + "bow", + "dark skin tone", + "gesture", + "person bowing", + "person bowing: dark skin tone", + "sorry" + ] + }, "🙇‍♂️", + { + "value" : "🙇‍♂️", + "keywords" : [ + "apology", + "ask", + "beg", + "bow", + "bowing", + "favor", + "forgive", + "gesture", + "man", + "meditate", + "meditation", + "pity", + "regret", + "sorry" + ] + }, "🙇🏻‍♂️", + { + "value" : "🙇🏻‍♂️", + "keywords" : [ + "apology", + "bowing", + "favor", + "gesture", + "light skin tone", + "man", + "man bowing: light skin tone", + "sorry" + ] + }, "🙇🏼‍♂️", + { + "value" : "🙇🏼‍♂️", + "keywords" : [ + "apology", + "bowing", + "favor", + "gesture", + "man", + "man bowing: medium-light skin tone", + "medium-light skin tone", + "sorry" + ] + }, "🙇🏽‍♂️", + { + "value" : "🙇🏽‍♂️", + "keywords" : [ + "apology", + "bowing", + "favor", + "gesture", + "man", + "man bowing: medium skin tone", + "medium skin tone", + "sorry" + ] + }, "🙇🏾‍♂️", + { + "value" : "🙇🏾‍♂️", + "keywords" : [ + "apology", + "bowing", + "favor", + "gesture", + "man", + "man bowing: medium-dark skin tone", + "medium-dark skin tone", + "sorry" + ] + }, "🙇🏿‍♂️", + { + "value" : "🙇🏿‍♂️", + "keywords" : [ + "apology", + "bowing", + "dark skin tone", + "favor", + "gesture", + "man", + "man bowing: dark skin tone", + "sorry" + ] + }, "🙇‍♀️", + { + "value" : "🙇‍♀️", + "keywords" : [ + "apology", + "ask", + "beg", + "bow", + "bowing", + "favor", + "forgive", + "gesture", + "meditate", + "meditation", + "pity", + "regret", + "sorry", + "woman" + ] + }, "🙇🏻‍♀️", + { + "value" : "🙇🏻‍♀️", + "keywords" : [ + "apology", + "bowing", + "favor", + "gesture", + "light skin tone", + "sorry", + "woman", + "woman bowing: light skin tone" + ] + }, "🙇🏼‍♀️", + { + "value" : "🙇🏼‍♀️", + "keywords" : [ + "apology", + "bowing", + "favor", + "gesture", + "medium-light skin tone", + "sorry", + "woman", + "woman bowing: medium-light skin tone" + ] + }, "🙇🏽‍♀️", + { + "keywords" : [ + "apology", + "bowing", + "favor", + "gesture", + "medium skin tone", + "sorry", + "woman", + "woman bowing: medium skin tone" + ], + "value" : "🙇🏽‍♀️" + }, "🙇🏾‍♀️", + { + "keywords" : [ + "apology", + "bowing", + "favor", + "gesture", + "medium-dark skin tone", + "sorry", + "woman", + "woman bowing: medium-dark skin tone" + ], + "value" : "🙇🏾‍♀️" + }, "🙇🏿‍♀️", + { + "keywords" : [ + "apology", + "bowing", + "dark skin tone", + "favor", + "gesture", + "sorry", + "woman", + "woman bowing: dark skin tone" + ], + "value" : "🙇🏿‍♀️" + }, "🤦", + { + "value" : "🤦", + "keywords" : [ + "again", + "bewilder", + "disbelief", + "exasperation", + "facepalm", + "no", + "not", + "oh", + "omg", + "person", + "shock", + "smh" + ] + }, "🤦🏻", + { + "keywords" : [ + "disbelief", + "exasperation", + "face", + "light skin tone", + "palm", + "person facepalming", + "person facepalming: light skin tone" + ], + "value" : "🤦🏻" + }, "🤦🏼", + { + "value" : "🤦🏼", + "keywords" : [ + "disbelief", + "exasperation", + "face", + "medium-light skin tone", + "palm", + "person facepalming", + "person facepalming: medium-light skin tone" + ] + }, "🤦🏽", + { + "keywords" : [ + "disbelief", + "exasperation", + "face", + "medium skin tone", + "palm", + "person facepalming", + "person facepalming: medium skin tone" + ], + "value" : "🤦🏽" + }, "🤦🏾", + { + "value" : "🤦🏾", + "keywords" : [ + "disbelief", + "exasperation", + "face", + "medium-dark skin tone", + "palm", + "person facepalming", + "person facepalming: medium-dark skin tone" + ] + }, "🤦🏿", + { + "keywords" : [ + "dark skin tone", + "disbelief", + "exasperation", + "face", + "palm", + "person facepalming", + "person facepalming: dark skin tone" + ], + "value" : "🤦🏿" + }, "🤦‍♂️", + { + "keywords" : [ + "again", + "bewilder", + "disbelief", + "exasperation", + "facepalm", + "man", + "no", + "not", + "oh", + "omg", + "shock", + "smh" + ], + "value" : "🤦‍♂️" + }, "🤦🏻‍♂️", + { + "keywords" : [ + "disbelief", + "exasperation", + "facepalm", + "light skin tone", + "man", + "man facepalming", + "man facepalming: light skin tone" + ], + "value" : "🤦🏻‍♂️" + }, "🤦🏼‍♂️", + { + "value" : "🤦🏼‍♂️", + "keywords" : [ + "disbelief", + "exasperation", + "facepalm", + "man", + "man facepalming", + "man facepalming: medium-light skin tone", + "medium-light skin tone" + ] + }, "🤦🏽‍♂️", + { + "value" : "🤦🏽‍♂️", + "keywords" : [ + "disbelief", + "exasperation", + "facepalm", + "man", + "man facepalming", + "man facepalming: medium skin tone", + "medium skin tone" + ] + }, "🤦🏾‍♂️", + { + "value" : "🤦🏾‍♂️", + "keywords" : [ + "disbelief", + "exasperation", + "facepalm", + "man", + "man facepalming", + "man facepalming: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "🤦🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "disbelief", + "exasperation", + "facepalm", + "man", + "man facepalming", + "man facepalming: dark skin tone" + ], + "value" : "🤦🏿‍♂️" + }, "🤦‍♀️", + { + "value" : "🤦‍♀️", + "keywords" : [ + "again", + "bewilder", + "disbelief", + "exasperation", + "facepalm", + "no", + "not", + "oh", + "omg", + "shock", + "smh", + "woman" + ] + }, "🤦🏻‍♀️", + { + "value" : "🤦🏻‍♀️", + "keywords" : [ + "disbelief", + "exasperation", + "facepalm", + "light skin tone", + "woman", + "woman facepalming", + "woman facepalming: light skin tone" + ] + }, "🤦🏼‍♀️", + { + "keywords" : [ + "disbelief", + "exasperation", + "facepalm", + "medium-light skin tone", + "woman", + "woman facepalming", + "woman facepalming: medium-light skin tone" + ], + "value" : "🤦🏼‍♀️" + }, "🤦🏽‍♀️", + { + "value" : "🤦🏽‍♀️", + "keywords" : [ + "disbelief", + "exasperation", + "facepalm", + "medium skin tone", + "woman", + "woman facepalming", + "woman facepalming: medium skin tone" + ] + }, "🤦🏾‍♀️", + { + "keywords" : [ + "disbelief", + "exasperation", + "facepalm", + "medium-dark skin tone", + "woman", + "woman facepalming", + "woman facepalming: medium-dark skin tone" + ], + "value" : "🤦🏾‍♀️" + }, "🤦🏿‍♀️", + { + "keywords" : [ + "dark skin tone", + "disbelief", + "exasperation", + "facepalm", + "woman", + "woman facepalming", + "woman facepalming: dark skin tone" + ], + "value" : "🤦🏿‍♀️" + }, "🤷", + { + "value" : "🤷", + "keywords" : [ + "doubt", + "dunno", + "guess", + "idk", + "ignorance", + "indifference", + "knows", + "maybe", + "person", + "shrug", + "shrugging", + "whatever", + "who" + ] + }, "🤷🏻", + { + "value" : "🤷🏻", + "keywords" : [ + "doubt", + "ignorance", + "indifference", + "light skin tone", + "person shrugging", + "person shrugging: light skin tone", + "shrug" + ] + }, "🤷🏼", + { + "value" : "🤷🏼", + "keywords" : [ + "doubt", + "ignorance", + "indifference", + "medium-light skin tone", + "person shrugging", + "person shrugging: medium-light skin tone", + "shrug" + ] + }, "🤷🏽", + { + "keywords" : [ + "doubt", + "ignorance", + "indifference", + "medium skin tone", + "person shrugging", + "person shrugging: medium skin tone", + "shrug" + ], + "value" : "🤷🏽" + }, "🤷🏾", + { + "keywords" : [ + "doubt", + "ignorance", + "indifference", + "medium-dark skin tone", + "person shrugging", + "person shrugging: medium-dark skin tone", + "shrug" + ], + "value" : "🤷🏾" + }, "🤷🏿", + { + "value" : "🤷🏿", + "keywords" : [ + "dark skin tone", + "doubt", + "ignorance", + "indifference", + "person shrugging", + "person shrugging: dark skin tone", + "shrug" + ] + }, "🤷‍♂️", + { + "value" : "🤷‍♂️", + "keywords" : [ + "doubt", + "dunno", + "guess", + "idk", + "ignorance", + "indifference", + "knows", + "man", + "maybe", + "shrug", + "shrugging", + "whatever", + "who" + ] + }, "🤷🏻‍♂️", + { + "value" : "🤷🏻‍♂️", + "keywords" : [ + "doubt", + "ignorance", + "indifference", + "light skin tone", + "man", + "man shrugging", + "man shrugging: light skin tone", + "shrug" + ] + }, "🤷🏼‍♂️", + { + "value" : "🤷🏼‍♂️", + "keywords" : [ + "doubt", + "ignorance", + "indifference", + "man", + "man shrugging", + "man shrugging: medium-light skin tone", + "medium-light skin tone", + "shrug" + ] + }, "🤷🏽‍♂️", + { + "value" : "🤷🏽‍♂️", + "keywords" : [ + "doubt", + "ignorance", + "indifference", + "man", + "man shrugging", + "man shrugging: medium skin tone", + "medium skin tone", + "shrug" + ] + }, "🤷🏾‍♂️", + { + "keywords" : [ + "doubt", + "ignorance", + "indifference", + "man", + "man shrugging", + "man shrugging: medium-dark skin tone", + "medium-dark skin tone", + "shrug" + ], + "value" : "🤷🏾‍♂️" + }, "🤷🏿‍♂️", + { + "value" : "🤷🏿‍♂️", + "keywords" : [ + "dark skin tone", + "doubt", + "ignorance", + "indifference", + "man", + "man shrugging", + "man shrugging: dark skin tone", + "shrug" + ] + }, "🤷‍♀️", + { + "keywords" : [ + "doubt", + "dunno", + "guess", + "idk", + "ignorance", + "indifference", + "knows", + "maybe", + "shrug", + "shrugging", + "whatever", + "who", + "woman" + ], + "value" : "🤷‍♀️" + }, "🤷🏻‍♀️", + { + "value" : "🤷🏻‍♀️", + "keywords" : [ + "doubt", + "ignorance", + "indifference", + "light skin tone", + "shrug", + "woman", + "woman shrugging", + "woman shrugging: light skin tone" + ] + }, "🤷🏼‍♀️", + { + "value" : "🤷🏼‍♀️", + "keywords" : [ + "doubt", + "ignorance", + "indifference", + "medium-light skin tone", + "shrug", + "woman", + "woman shrugging", + "woman shrugging: medium-light skin tone" + ] + }, "🤷🏽‍♀️", + { + "value" : "🤷🏽‍♀️", + "keywords" : [ + "doubt", + "ignorance", + "indifference", + "medium skin tone", + "shrug", + "woman", + "woman shrugging", + "woman shrugging: medium skin tone" + ] + }, "🤷🏾‍♀️", + { + "keywords" : [ + "doubt", + "ignorance", + "indifference", + "medium-dark skin tone", + "shrug", + "woman", + "woman shrugging", + "woman shrugging: medium-dark skin tone" + ], + "value" : "🤷🏾‍♀️" + }, "🤷🏿‍♀️", + { + "keywords" : [ + "dark skin tone", + "doubt", + "ignorance", + "indifference", + "shrug", + "woman", + "woman shrugging", + "woman shrugging: dark skin tone" + ], + "value" : "🤷🏿‍♀️" + }, "🧑‍⚕️", + { + "value" : "🧑‍⚕️", + "keywords" : [ + "doctor", + "health", + "healthcare", + "nurse", + "therapist", + "worker" + ] + }, "🧑🏻‍⚕️", + { + "value" : "🧑🏻‍⚕️", + "keywords" : [ + "doctor", + "health worker", + "health worker: light skin tone", + "healthcare", + "light skin tone", + "nurse", + "therapist" + ] + }, "🧑🏼‍⚕️", + { + "keywords" : [ + "doctor", + "health worker", + "health worker: medium-light skin tone", + "healthcare", + "medium-light skin tone", + "nurse", + "therapist" + ], + "value" : "🧑🏼‍⚕️" + }, "🧑🏽‍⚕️", + { + "keywords" : [ + "doctor", + "health worker", + "health worker: medium skin tone", + "healthcare", + "medium skin tone", + "nurse", + "therapist" + ], + "value" : "🧑🏽‍⚕️" + }, "🧑🏾‍⚕️", + { + "keywords" : [ + "doctor", + "health worker", + "health worker: medium-dark skin tone", + "healthcare", + "medium-dark skin tone", + "nurse", + "therapist" + ], + "value" : "🧑🏾‍⚕️" + }, "🧑🏿‍⚕️", + { + "value" : "🧑🏿‍⚕️", + "keywords" : [ + "dark skin tone", + "doctor", + "health worker", + "health worker: dark skin tone", + "healthcare", + "nurse", + "therapist" + ] + }, "👨‍⚕️", + { + "keywords" : [ + "doctor", + "health", + "healthcare", + "man", + "nurse", + "therapist", + "worker" + ], + "value" : "👨‍⚕️" + }, "👨🏻‍⚕️", + { + "value" : "👨🏻‍⚕️", + "keywords" : [ + "doctor", + "healthcare", + "light skin tone", + "man", + "man health worker", + "man health worker: light skin tone", + "nurse", + "therapist" + ] + }, "👨🏼‍⚕️", + { + "keywords" : [ + "doctor", + "healthcare", + "man", + "man health worker", + "man health worker: medium-light skin tone", + "medium-light skin tone", + "nurse", + "therapist" + ], + "value" : "👨🏼‍⚕️" + }, "👨🏽‍⚕️", + { + "value" : "👨🏽‍⚕️", + "keywords" : [ + "doctor", + "healthcare", + "man", + "man health worker", + "man health worker: medium skin tone", + "medium skin tone", + "nurse", + "therapist" + ] + }, "👨🏾‍⚕️", + { + "value" : "👨🏾‍⚕️", + "keywords" : [ + "doctor", + "healthcare", + "man", + "man health worker", + "man health worker: medium-dark skin tone", + "medium-dark skin tone", + "nurse", + "therapist" + ] + }, "👨🏿‍⚕️", + { + "keywords" : [ + "dark skin tone", + "doctor", + "healthcare", + "man", + "man health worker", + "man health worker: dark skin tone", + "nurse", + "therapist" + ], + "value" : "👨🏿‍⚕️" + }, "👩‍⚕️", + { + "value" : "👩‍⚕️", + "keywords" : [ + "doctor", + "health", + "healthcare", + "nurse", + "therapist", + "woman", + "worker" + ] + }, "👩🏻‍⚕️", + { + "value" : "👩🏻‍⚕️", + "keywords" : [ + "doctor", + "healthcare", + "light skin tone", + "nurse", + "therapist", + "woman", + "woman health worker", + "woman health worker: light skin tone" + ] + }, "👩🏼‍⚕️", + { + "value" : "👩🏼‍⚕️", + "keywords" : [ + "doctor", + "healthcare", + "medium-light skin tone", + "nurse", + "therapist", + "woman", + "woman health worker", + "woman health worker: medium-light skin tone" + ] + }, "👩🏽‍⚕️", + { + "value" : "👩🏽‍⚕️", + "keywords" : [ + "doctor", + "healthcare", + "medium skin tone", + "nurse", + "therapist", + "woman", + "woman health worker", + "woman health worker: medium skin tone" + ] + }, "👩🏾‍⚕️", + { + "value" : "👩🏾‍⚕️", + "keywords" : [ + "doctor", + "healthcare", + "medium-dark skin tone", + "nurse", + "therapist", + "woman", + "woman health worker", + "woman health worker: medium-dark skin tone" + ] + }, "👩🏿‍⚕️", + { + "keywords" : [ + "dark skin tone", + "doctor", + "healthcare", + "nurse", + "therapist", + "woman", + "woman health worker", + "woman health worker: dark skin tone" + ], + "value" : "👩🏿‍⚕️" + }, "🧑‍🎓", + { + "value" : "🧑‍🎓", + "keywords" : [ + "graduate", + "student" + ] + }, "🧑🏻‍🎓", + { + "keywords" : [ + "graduate", + "light skin tone", + "student", + "student: light skin tone" + ], + "value" : "🧑🏻‍🎓" + }, "🧑🏼‍🎓", + { + "value" : "🧑🏼‍🎓", + "keywords" : [ + "graduate", + "medium-light skin tone", + "student", + "student: medium-light skin tone" + ] + }, "🧑🏽‍🎓", + { + "keywords" : [ + "graduate", + "medium skin tone", + "student", + "student: medium skin tone" + ], + "value" : "🧑🏽‍🎓" + }, "🧑🏾‍🎓", + { + "value" : "🧑🏾‍🎓", + "keywords" : [ + "graduate", + "medium-dark skin tone", + "student", + "student: medium-dark skin tone" + ] + }, "🧑🏿‍🎓", + { + "value" : "🧑🏿‍🎓", + "keywords" : [ + "dark skin tone", + "graduate", + "student", + "student: dark skin tone" + ] + }, "👨‍🎓", + { + "value" : "👨‍🎓", + "keywords" : [ + "graduate", + "man", + "student" + ] + }, "👨🏻‍🎓", + { + "value" : "👨🏻‍🎓", + "keywords" : [ + "graduate", + "light skin tone", + "man", + "man student: light skin tone", + "student" + ] + }, "👨🏼‍🎓", + { + "value" : "👨🏼‍🎓", + "keywords" : [ + "graduate", + "man", + "man student: medium-light skin tone", + "medium-light skin tone", + "student" + ] + }, "👨🏽‍🎓", + { + "keywords" : [ + "graduate", + "man", + "man student: medium skin tone", + "medium skin tone", + "student" + ], + "value" : "👨🏽‍🎓" + }, "👨🏾‍🎓", + { + "value" : "👨🏾‍🎓", + "keywords" : [ + "graduate", + "man", + "man student: medium-dark skin tone", + "medium-dark skin tone", + "student" + ] + }, "👨🏿‍🎓", + { + "keywords" : [ + "dark skin tone", + "graduate", + "man", + "man student: dark skin tone", + "student" + ], + "value" : "👨🏿‍🎓" + }, "👩‍🎓", + { + "keywords" : [ + "graduate", + "student", + "woman" + ], + "value" : "👩‍🎓" + }, "👩🏻‍🎓", + { + "value" : "👩🏻‍🎓", + "keywords" : [ + "graduate", + "light skin tone", + "student", + "woman", + "woman student: light skin tone" + ] + }, "👩🏼‍🎓", + { + "keywords" : [ + "graduate", + "medium-light skin tone", + "student", + "woman", + "woman student: medium-light skin tone" + ], + "value" : "👩🏼‍🎓" + }, "👩🏽‍🎓", + { + "value" : "👩🏽‍🎓", + "keywords" : [ + "graduate", + "medium skin tone", + "student", + "woman", + "woman student: medium skin tone" + ] + }, "👩🏾‍🎓", + { + "value" : "👩🏾‍🎓", + "keywords" : [ + "graduate", + "medium-dark skin tone", + "student", + "woman", + "woman student: medium-dark skin tone" + ] + }, "👩🏿‍🎓", + { + "keywords" : [ + "dark skin tone", + "graduate", + "student", + "woman", + "woman student: dark skin tone" + ], + "value" : "👩🏿‍🎓" + }, "🧑‍🏫", + { + "keywords" : [ + "instructor", + "lecturer", + "professor", + "teacher" + ], + "value" : "🧑‍🏫" + }, "🧑🏻‍🏫", + { + "keywords" : [ + "instructor", + "lecturer", + "light skin tone", + "professor", + "teacher", + "teacher: light skin tone" + ], + "value" : "🧑🏻‍🏫" + }, "🧑🏼‍🏫", + { + "value" : "🧑🏼‍🏫", + "keywords" : [ + "instructor", + "lecturer", + "medium-light skin tone", + "professor", + "teacher", + "teacher: medium-light skin tone" + ] + }, "🧑🏽‍🏫", + { + "keywords" : [ + "instructor", + "lecturer", + "medium skin tone", + "professor", + "teacher", + "teacher: medium skin tone" + ], + "value" : "🧑🏽‍🏫" + }, "🧑🏾‍🏫", + { + "value" : "🧑🏾‍🏫", + "keywords" : [ + "instructor", + "lecturer", + "medium-dark skin tone", + "professor", + "teacher", + "teacher: medium-dark skin tone" + ] + }, "🧑🏿‍🏫", + { + "keywords" : [ + "dark skin tone", + "instructor", + "lecturer", + "professor", + "teacher", + "teacher: dark skin tone" + ], + "value" : "🧑🏿‍🏫" + }, "👨‍🏫", + { + "value" : "👨‍🏫", + "keywords" : [ + "instructor", + "lecturer", + "man", + "professor", + "teacher" + ] + }, "👨🏻‍🏫", + { + "value" : "👨🏻‍🏫", + "keywords" : [ + "instructor", + "lecturer", + "light skin tone", + "man", + "man teacher: light skin tone", + "professor", + "teacher" + ] + }, "👨🏼‍🏫", + { + "value" : "👨🏼‍🏫", + "keywords" : [ + "instructor", + "lecturer", + "man", + "man teacher: medium-light skin tone", + "medium-light skin tone", + "professor", + "teacher" + ] + }, "👨🏽‍🏫", + { + "value" : "👨🏽‍🏫", + "keywords" : [ + "instructor", + "lecturer", + "man", + "man teacher: medium skin tone", + "medium skin tone", + "professor", + "teacher" + ] + }, "👨🏾‍🏫", + { + "value" : "👨🏾‍🏫", + "keywords" : [ + "instructor", + "lecturer", + "man", + "man teacher: medium-dark skin tone", + "medium-dark skin tone", + "professor", + "teacher" + ] + }, "👨🏿‍🏫", + { + "value" : "👨🏿‍🏫", + "keywords" : [ + "dark skin tone", + "instructor", + "lecturer", + "man", + "man teacher: dark skin tone", + "professor", + "teacher" + ] + }, "👩‍🏫", + { + "value" : "👩‍🏫", + "keywords" : [ + "instructor", + "lecturer", + "professor", + "teacher", + "woman" + ] + }, "👩🏻‍🏫", + { + "keywords" : [ + "instructor", + "lecturer", + "light skin tone", + "professor", + "teacher", + "woman", + "woman teacher: light skin tone" + ], + "value" : "👩🏻‍🏫" + }, "👩🏼‍🏫", + { + "keywords" : [ + "instructor", + "lecturer", + "medium-light skin tone", + "professor", + "teacher", + "woman", + "woman teacher: medium-light skin tone" + ], + "value" : "👩🏼‍🏫" + }, "👩🏽‍🏫", + { + "keywords" : [ + "instructor", + "lecturer", + "medium skin tone", + "professor", + "teacher", + "woman", + "woman teacher: medium skin tone" + ], + "value" : "👩🏽‍🏫" + }, "👩🏾‍🏫", + { + "keywords" : [ + "instructor", + "lecturer", + "medium-dark skin tone", + "professor", + "teacher", + "woman", + "woman teacher: medium-dark skin tone" + ], + "value" : "👩🏾‍🏫" + }, "👩🏿‍🏫", + { + "value" : "👩🏿‍🏫", + "keywords" : [ + "dark skin tone", + "instructor", + "lecturer", + "professor", + "teacher", + "woman", + "woman teacher: dark skin tone" + ] + }, "🧑‍⚖️", + { + "keywords" : [ + "judge", + "justice", + "law", + "scales" + ], + "value" : "🧑‍⚖️" + }, "🧑🏻‍⚖️", + { + "value" : "🧑🏻‍⚖️", + "keywords" : [ + "judge", + "judge: light skin tone", + "justice", + "law", + "light skin tone", + "scales" + ] + }, "🧑🏼‍⚖️", + { + "keywords" : [ + "judge", + "judge: medium-light skin tone", + "justice", + "law", + "medium-light skin tone", + "scales" + ], + "value" : "🧑🏼‍⚖️" + }, "🧑🏽‍⚖️", + { + "value" : "🧑🏽‍⚖️", + "keywords" : [ + "judge", + "judge: medium skin tone", + "justice", + "law", + "medium skin tone", + "scales" + ] + }, "🧑🏾‍⚖️", + { + "value" : "🧑🏾‍⚖️", + "keywords" : [ + "judge", + "judge: medium-dark skin tone", + "justice", + "law", + "medium-dark skin tone", + "scales" + ] + }, "🧑🏿‍⚖️", + { + "value" : "🧑🏿‍⚖️", + "keywords" : [ + "dark skin tone", + "judge", + "judge: dark skin tone", + "justice", + "law", + "scales" + ] + }, "👨‍⚖️", + { + "value" : "👨‍⚖️", + "keywords" : [ + "judge", + "justice", + "law", + "man", + "scales" + ] + }, "👨🏻‍⚖️", + { + "keywords" : [ + "judge", + "justice", + "law", + "light skin tone", + "man", + "man judge: light skin tone", + "scales" + ], + "value" : "👨🏻‍⚖️" + }, "👨🏼‍⚖️", + { + "value" : "👨🏼‍⚖️", + "keywords" : [ + "judge", + "justice", + "law", + "man", + "man judge: medium-light skin tone", + "medium-light skin tone", + "scales" + ] + }, "👨🏽‍⚖️", + { + "keywords" : [ + "judge", + "justice", + "law", + "man", + "man judge: medium skin tone", + "medium skin tone", + "scales" + ], + "value" : "👨🏽‍⚖️" + }, "👨🏾‍⚖️", + { + "keywords" : [ + "judge", + "justice", + "law", + "man", + "man judge: medium-dark skin tone", + "medium-dark skin tone", + "scales" + ], + "value" : "👨🏾‍⚖️" + }, "👨🏿‍⚖️", + { + "keywords" : [ + "dark skin tone", + "judge", + "justice", + "law", + "man", + "man judge: dark skin tone", + "scales" + ], + "value" : "👨🏿‍⚖️" + }, "👩‍⚖️", + { + "value" : "👩‍⚖️", + "keywords" : [ + "judge", + "justice", + "law", + "scales", + "woman" + ] + }, "👩🏻‍⚖️", + { + "keywords" : [ + "judge", + "justice", + "law", + "light skin tone", + "scales", + "woman", + "woman judge: light skin tone" + ], + "value" : "👩🏻‍⚖️" + }, "👩🏼‍⚖️", + { + "value" : "👩🏼‍⚖️", + "keywords" : [ + "judge", + "justice", + "law", + "medium-light skin tone", + "scales", + "woman", + "woman judge: medium-light skin tone" + ] + }, "👩🏽‍⚖️", + { + "value" : "👩🏽‍⚖️", + "keywords" : [ + "judge", + "justice", + "law", + "medium skin tone", + "scales", + "woman", + "woman judge: medium skin tone" + ] + }, "👩🏾‍⚖️", + { + "value" : "👩🏾‍⚖️", + "keywords" : [ + "judge", + "justice", + "law", + "medium-dark skin tone", + "scales", + "woman", + "woman judge: medium-dark skin tone" + ] + }, "👩🏿‍⚖️", + { + "keywords" : [ + "dark skin tone", + "judge", + "justice", + "law", + "scales", + "woman", + "woman judge: dark skin tone" + ], + "value" : "👩🏿‍⚖️" + }, "🧑‍🌾", + { + "value" : "🧑‍🌾", + "keywords" : [ + "farmer", + "gardener", + "rancher" + ] + }, "🧑🏻‍🌾", + { + "keywords" : [ + "farmer", + "farmer: light skin tone", + "gardener", + "light skin tone", + "rancher" + ], + "value" : "🧑🏻‍🌾" + }, "🧑🏼‍🌾", + { + "value" : "🧑🏼‍🌾", + "keywords" : [ + "farmer", + "farmer: medium-light skin tone", + "gardener", + "medium-light skin tone", + "rancher" + ] + }, "🧑🏽‍🌾", + { + "keywords" : [ + "farmer", + "farmer: medium skin tone", + "gardener", + "medium skin tone", + "rancher" + ], + "value" : "🧑🏽‍🌾" + }, "🧑🏾‍🌾", + { + "keywords" : [ + "farmer", + "farmer: medium-dark skin tone", + "gardener", + "medium-dark skin tone", + "rancher" + ], + "value" : "🧑🏾‍🌾" + }, "🧑🏿‍🌾", + { + "keywords" : [ + "dark skin tone", + "farmer", + "farmer: dark skin tone", + "gardener", + "rancher" + ], + "value" : "🧑🏿‍🌾" + }, "👨‍🌾", + { + "keywords" : [ + "farmer", + "gardener", + "man", + "rancher" + ], + "value" : "👨‍🌾" + }, "👨🏻‍🌾", + { + "value" : "👨🏻‍🌾", + "keywords" : [ + "farmer", + "gardener", + "light skin tone", + "man", + "man farmer: light skin tone", + "rancher" + ] + }, "👨🏼‍🌾", + { + "keywords" : [ + "farmer", + "gardener", + "man", + "man farmer: medium-light skin tone", + "medium-light skin tone", + "rancher" + ], + "value" : "👨🏼‍🌾" + }, "👨🏽‍🌾", + { + "keywords" : [ + "farmer", + "gardener", + "man", + "man farmer: medium skin tone", + "medium skin tone", + "rancher" + ], + "value" : "👨🏽‍🌾" + }, "👨🏾‍🌾", + { + "keywords" : [ + "farmer", + "gardener", + "man", + "man farmer: medium-dark skin tone", + "medium-dark skin tone", + "rancher" + ], + "value" : "👨🏾‍🌾" + }, "👨🏿‍🌾", + { + "value" : "👨🏿‍🌾", + "keywords" : [ + "dark skin tone", + "farmer", + "gardener", + "man", + "man farmer: dark skin tone", + "rancher" + ] + }, "👩‍🌾", + { + "keywords" : [ + "farmer", + "gardener", + "rancher", + "woman" + ], + "value" : "👩‍🌾" + }, "👩🏻‍🌾", + { + "keywords" : [ + "farmer", + "gardener", + "light skin tone", + "rancher", + "woman", + "woman farmer: light skin tone" + ], + "value" : "👩🏻‍🌾" + }, "👩🏼‍🌾", + { + "value" : "👩🏼‍🌾", + "keywords" : [ + "farmer", + "gardener", + "medium-light skin tone", + "rancher", + "woman", + "woman farmer: medium-light skin tone" + ] + }, "👩🏽‍🌾", + { + "value" : "👩🏽‍🌾", + "keywords" : [ + "farmer", + "gardener", + "medium skin tone", + "rancher", + "woman", + "woman farmer: medium skin tone" + ] + }, "👩🏾‍🌾", + { + "keywords" : [ + "farmer", + "gardener", + "medium-dark skin tone", + "rancher", + "woman", + "woman farmer: medium-dark skin tone" + ], + "value" : "👩🏾‍🌾" + }, "👩🏿‍🌾", + { + "keywords" : [ + "dark skin tone", + "farmer", + "gardener", + "rancher", + "woman", + "woman farmer: dark skin tone" + ], + "value" : "👩🏿‍🌾" + }, "🧑‍🍳", + { + "keywords" : [ + "chef", + "cook" + ], + "value" : "🧑‍🍳" + }, "🧑🏻‍🍳", + { + "keywords" : [ + "chef", + "cook", + "cook: light skin tone", + "light skin tone" + ], + "value" : "🧑🏻‍🍳" + }, "🧑🏼‍🍳", + { + "keywords" : [ + "chef", + "cook", + "cook: medium-light skin tone", + "medium-light skin tone" + ], + "value" : "🧑🏼‍🍳" + }, "🧑🏽‍🍳", + { + "value" : "🧑🏽‍🍳", + "keywords" : [ + "chef", + "cook", + "cook: medium skin tone", + "medium skin tone" + ] + }, "🧑🏾‍🍳", + { + "value" : "🧑🏾‍🍳", + "keywords" : [ + "chef", + "cook", + "cook: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "🧑🏿‍🍳", + { + "value" : "🧑🏿‍🍳", + "keywords" : [ + "chef", + "cook", + "cook: dark skin tone", + "dark skin tone" + ] + }, "👨‍🍳", + { + "keywords" : [ + "chef", + "cook", + "man" + ], + "value" : "👨‍🍳" + }, "👨🏻‍🍳", + { + "value" : "👨🏻‍🍳", + "keywords" : [ + "chef", + "cook", + "light skin tone", + "man", + "man cook: light skin tone" + ] + }, "👨🏼‍🍳", + { + "value" : "👨🏼‍🍳", + "keywords" : [ + "chef", + "cook", + "man", + "man cook: medium-light skin tone", + "medium-light skin tone" + ] + }, "👨🏽‍🍳", + { + "keywords" : [ + "chef", + "cook", + "man", + "man cook: medium skin tone", + "medium skin tone" + ], + "value" : "👨🏽‍🍳" + }, "👨🏾‍🍳", + { + "value" : "👨🏾‍🍳", + "keywords" : [ + "chef", + "cook", + "man", + "man cook: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "👨🏿‍🍳", + { + "keywords" : [ + "chef", + "cook", + "dark skin tone", + "man", + "man cook: dark skin tone" + ], + "value" : "👨🏿‍🍳" + }, "👩‍🍳", + { + "keywords" : [ + "chef", + "cook", + "woman" + ], + "value" : "👩‍🍳" + }, "👩🏻‍🍳", + { + "keywords" : [ + "chef", + "cook", + "light skin tone", + "woman", + "woman cook: light skin tone" + ], + "value" : "👩🏻‍🍳" + }, "👩🏼‍🍳", + { + "value" : "👩🏼‍🍳", + "keywords" : [ + "chef", + "cook", + "medium-light skin tone", + "woman", + "woman cook: medium-light skin tone" + ] + }, "👩🏽‍🍳", + { + "keywords" : [ + "chef", + "cook", + "medium skin tone", + "woman", + "woman cook: medium skin tone" + ], + "value" : "👩🏽‍🍳" + }, "👩🏾‍🍳", + { + "value" : "👩🏾‍🍳", + "keywords" : [ + "chef", + "cook", + "medium-dark skin tone", + "woman", + "woman cook: medium-dark skin tone" + ] + }, "👩🏿‍🍳", + { + "value" : "👩🏿‍🍳", + "keywords" : [ + "chef", + "cook", + "dark skin tone", + "woman", + "woman cook: dark skin tone" + ] + }, "🧑‍🔧", + { + "keywords" : [ + "electrician", + "mechanic", + "plumber", + "tradesperson" + ], + "value" : "🧑‍🔧" + }, "🧑🏻‍🔧", + { + "value" : "🧑🏻‍🔧", + "keywords" : [ + "electrician", + "light skin tone", + "mechanic", + "mechanic: light skin tone", + "plumber", + "tradesperson" + ] + }, "🧑🏼‍🔧", + { + "keywords" : [ + "electrician", + "mechanic", + "mechanic: medium-light skin tone", + "medium-light skin tone", + "plumber", + "tradesperson" + ], + "value" : "🧑🏼‍🔧" + }, "🧑🏽‍🔧", + { + "keywords" : [ + "electrician", + "mechanic", + "mechanic: medium skin tone", + "medium skin tone", + "plumber", + "tradesperson" + ], + "value" : "🧑🏽‍🔧" + }, "🧑🏾‍🔧", + { + "value" : "🧑🏾‍🔧", + "keywords" : [ + "electrician", + "mechanic", + "mechanic: medium-dark skin tone", + "medium-dark skin tone", + "plumber", + "tradesperson" + ] + }, "🧑🏿‍🔧", + { + "keywords" : [ + "dark skin tone", + "electrician", + "mechanic", + "mechanic: dark skin tone", + "plumber", + "tradesperson" + ], + "value" : "🧑🏿‍🔧" + }, "👨‍🔧", + { + "keywords" : [ + "electrician", + "man", + "mechanic", + "plumber", + "tradesperson" + ], + "value" : "👨‍🔧" + }, "👨🏻‍🔧", + { + "value" : "👨🏻‍🔧", + "keywords" : [ + "electrician", + "light skin tone", + "man", + "man mechanic: light skin tone", + "mechanic", + "plumber", + "tradesperson" + ] + }, "👨🏼‍🔧", + { + "value" : "👨🏼‍🔧", + "keywords" : [ + "electrician", + "man", + "man mechanic: medium-light skin tone", + "mechanic", + "medium-light skin tone", + "plumber", + "tradesperson" + ] + }, "👨🏽‍🔧", + { + "keywords" : [ + "electrician", + "man", + "man mechanic: medium skin tone", + "mechanic", + "medium skin tone", + "plumber", + "tradesperson" + ], + "value" : "👨🏽‍🔧" + }, "👨🏾‍🔧", + { + "keywords" : [ + "electrician", + "man", + "man mechanic: medium-dark skin tone", + "mechanic", + "medium-dark skin tone", + "plumber", + "tradesperson" + ], + "value" : "👨🏾‍🔧" + }, "👨🏿‍🔧", + { + "value" : "👨🏿‍🔧", + "keywords" : [ + "dark skin tone", + "electrician", + "man", + "man mechanic: dark skin tone", + "mechanic", + "plumber", + "tradesperson" + ] + }, "👩‍🔧", + { + "keywords" : [ + "electrician", + "mechanic", + "plumber", + "tradesperson", + "woman" + ], + "value" : "👩‍🔧" + }, "👩🏻‍🔧", + { + "keywords" : [ + "electrician", + "light skin tone", + "mechanic", + "plumber", + "tradesperson", + "woman", + "woman mechanic: light skin tone" + ], + "value" : "👩🏻‍🔧" + }, "👩🏼‍🔧", + { + "keywords" : [ + "electrician", + "mechanic", + "medium-light skin tone", + "plumber", + "tradesperson", + "woman", + "woman mechanic: medium-light skin tone" + ], + "value" : "👩🏼‍🔧" + }, "👩🏽‍🔧", + { + "value" : "👩🏽‍🔧", + "keywords" : [ + "electrician", + "mechanic", + "medium skin tone", + "plumber", + "tradesperson", + "woman", + "woman mechanic: medium skin tone" + ] + }, "👩🏾‍🔧", + { + "keywords" : [ + "electrician", + "mechanic", + "medium-dark skin tone", + "plumber", + "tradesperson", + "woman", + "woman mechanic: medium-dark skin tone" + ], + "value" : "👩🏾‍🔧" + }, "👩🏿‍🔧", + { + "keywords" : [ + "dark skin tone", + "electrician", + "mechanic", + "plumber", + "tradesperson", + "woman", + "woman mechanic: dark skin tone" + ], + "value" : "👩🏿‍🔧" + }, "🧑‍🏭", + { + "value" : "🧑‍🏭", + "keywords" : [ + "assembly", + "factory", + "industrial", + "worker" + ] + }, "🧑🏻‍🏭", + { + "value" : "🧑🏻‍🏭", + "keywords" : [ + "assembly", + "factory", + "factory worker: light skin tone", + "industrial", + "light skin tone", + "worker" + ] + }, "🧑🏼‍🏭", + { + "keywords" : [ + "assembly", + "factory", + "factory worker: medium-light skin tone", + "industrial", + "medium-light skin tone", + "worker" + ], + "value" : "🧑🏼‍🏭" + }, "🧑🏽‍🏭", + { + "keywords" : [ + "assembly", + "factory", + "factory worker: medium skin tone", + "industrial", + "medium skin tone", + "worker" + ], + "value" : "🧑🏽‍🏭" + }, "🧑🏾‍🏭", + { + "keywords" : [ + "assembly", + "factory", + "factory worker: medium-dark skin tone", + "industrial", + "medium-dark skin tone", + "worker" + ], + "value" : "🧑🏾‍🏭" + }, "🧑🏿‍🏭", + { + "keywords" : [ + "assembly", + "dark skin tone", + "factory", + "factory worker: dark skin tone", + "industrial", + "worker" + ], + "value" : "🧑🏿‍🏭" + }, "👨‍🏭", + { + "keywords" : [ + "assembly", + "factory", + "industrial", + "man", + "worker" + ], + "value" : "👨‍🏭" + }, "👨🏻‍🏭", + { + "value" : "👨🏻‍🏭", + "keywords" : [ + "assembly", + "factory", + "industrial", + "light skin tone", + "man", + "man factory worker: light skin tone", + "worker" + ] + }, "👨🏼‍🏭", + { + "value" : "👨🏼‍🏭", + "keywords" : [ + "assembly", + "factory", + "industrial", + "man", + "man factory worker: medium-light skin tone", + "medium-light skin tone", + "worker" + ] + }, "👨🏽‍🏭", + { + "value" : "👨🏽‍🏭", + "keywords" : [ + "assembly", + "factory", + "industrial", + "man", + "man factory worker: medium skin tone", + "medium skin tone", + "worker" + ] + }, "👨🏾‍🏭", + { + "value" : "👨🏾‍🏭", + "keywords" : [ + "assembly", + "factory", + "industrial", + "man", + "man factory worker: medium-dark skin tone", + "medium-dark skin tone", + "worker" + ] + }, "👨🏿‍🏭", + { + "keywords" : [ + "assembly", + "dark skin tone", + "factory", + "industrial", + "man", + "man factory worker: dark skin tone", + "worker" + ], + "value" : "👨🏿‍🏭" + }, "👩‍🏭", + { + "value" : "👩‍🏭", + "keywords" : [ + "assembly", + "factory", + "industrial", + "woman", + "worker" + ] + }, "👩🏻‍🏭", + { + "value" : "👩🏻‍🏭", + "keywords" : [ + "assembly", + "factory", + "industrial", + "light skin tone", + "woman", + "woman factory worker: light skin tone", + "worker" + ] + }, "👩🏼‍🏭", + { + "value" : "👩🏼‍🏭", + "keywords" : [ + "assembly", + "factory", + "industrial", + "medium-light skin tone", + "woman", + "woman factory worker: medium-light skin tone", + "worker" + ] + }, "👩🏽‍🏭", + { + "keywords" : [ + "assembly", + "factory", + "industrial", + "medium skin tone", + "woman", + "woman factory worker: medium skin tone", + "worker" + ], + "value" : "👩🏽‍🏭" + }, "👩🏾‍🏭", + { + "value" : "👩🏾‍🏭", + "keywords" : [ + "assembly", + "factory", + "industrial", + "medium-dark skin tone", + "woman", + "woman factory worker: medium-dark skin tone", + "worker" + ] + }, "👩🏿‍🏭", + { + "keywords" : [ + "assembly", + "dark skin tone", + "factory", + "industrial", + "woman", + "woman factory worker: dark skin tone", + "worker" + ], + "value" : "👩🏿‍🏭" + }, "🧑‍💼", + { + "value" : "🧑‍💼", + "keywords" : [ + "architect", + "business", + "manager", + "office", + "white-collar", + "worker" + ] + }, "🧑🏻‍💼", + { + "keywords" : [ + "architect", + "business", + "light skin tone", + "manager", + "office worker", + "office worker: light skin tone", + "white-collar" + ], + "value" : "🧑🏻‍💼" + }, "🧑🏼‍💼", + { + "value" : "🧑🏼‍💼", + "keywords" : [ + "architect", + "business", + "manager", + "medium-light skin tone", + "office worker", + "office worker: medium-light skin tone", + "white-collar" + ] + }, "🧑🏽‍💼", + { + "value" : "🧑🏽‍💼", + "keywords" : [ + "architect", + "business", + "manager", + "medium skin tone", + "office worker", + "office worker: medium skin tone", + "white-collar" + ] + }, "🧑🏾‍💼", + { + "value" : "🧑🏾‍💼", + "keywords" : [ + "architect", + "business", + "manager", + "medium-dark skin tone", + "office worker", + "office worker: medium-dark skin tone", + "white-collar" + ] + }, "🧑🏿‍💼", + { + "keywords" : [ + "architect", + "business", + "dark skin tone", + "manager", + "office worker", + "office worker: dark skin tone", + "white-collar" + ], + "value" : "🧑🏿‍💼" + }, "👨‍💼", + { + "keywords" : [ + "architect", + "business", + "man", + "manager", + "office", + "white-collar", + "worker" + ], + "value" : "👨‍💼" + }, "👨🏻‍💼", + { + "keywords" : [ + "architect", + "business", + "light skin tone", + "man", + "man office worker", + "man office worker: light skin tone", + "manager", + "white-collar" + ], + "value" : "👨🏻‍💼" + }, "👨🏼‍💼", + { + "value" : "👨🏼‍💼", + "keywords" : [ + "architect", + "business", + "man", + "man office worker", + "man office worker: medium-light skin tone", + "manager", + "medium-light skin tone", + "white-collar" + ] + }, "👨🏽‍💼", + { + "value" : "👨🏽‍💼", + "keywords" : [ + "architect", + "business", + "man", + "man office worker", + "man office worker: medium skin tone", + "manager", + "medium skin tone", + "white-collar" + ] + }, "👨🏾‍💼", + { + "value" : "👨🏾‍💼", + "keywords" : [ + "architect", + "business", + "man", + "man office worker", + "man office worker: medium-dark skin tone", + "manager", + "medium-dark skin tone", + "white-collar" + ] + }, "👨🏿‍💼", + { + "value" : "👨🏿‍💼", + "keywords" : [ + "architect", + "business", + "dark skin tone", + "man", + "man office worker", + "man office worker: dark skin tone", + "manager", + "white-collar" + ] + }, "👩‍💼", + { + "value" : "👩‍💼", + "keywords" : [ + "architect", + "business", + "manager", + "office", + "white-collar", + "woman", + "worker" + ] + }, "👩🏻‍💼", + { + "value" : "👩🏻‍💼", + "keywords" : [ + "architect", + "business", + "light skin tone", + "manager", + "white-collar", + "woman", + "woman office worker", + "woman office worker: light skin tone" + ] + }, "👩🏼‍💼", + { + "keywords" : [ + "architect", + "business", + "manager", + "medium-light skin tone", + "white-collar", + "woman", + "woman office worker", + "woman office worker: medium-light skin tone" + ], + "value" : "👩🏼‍💼" + }, "👩🏽‍💼", + { + "value" : "👩🏽‍💼", + "keywords" : [ + "architect", + "business", + "manager", + "medium skin tone", + "white-collar", + "woman", + "woman office worker", + "woman office worker: medium skin tone" + ] + }, "👩🏾‍💼", + { + "value" : "👩🏾‍💼", + "keywords" : [ + "architect", + "business", + "manager", + "medium-dark skin tone", + "white-collar", + "woman", + "woman office worker", + "woman office worker: medium-dark skin tone" + ] + }, "👩🏿‍💼", + { + "value" : "👩🏿‍💼", + "keywords" : [ + "architect", + "business", + "dark skin tone", + "manager", + "white-collar", + "woman", + "woman office worker", + "woman office worker: dark skin tone" + ] + }, "🧑‍🔬", + { + "keywords" : [ + "biologist", + "chemist", + "engineer", + "mathematician", + "physicist", + "scientist" + ], + "value" : "🧑‍🔬" + }, "🧑🏻‍🔬", + { + "value" : "🧑🏻‍🔬", + "keywords" : [ + "biologist", + "chemist", + "engineer", + "light skin tone", + "physicist", + "scientist", + "scientist: light skin tone" + ] + }, "🧑🏼‍🔬", + { + "keywords" : [ + "biologist", + "chemist", + "engineer", + "medium-light skin tone", + "physicist", + "scientist", + "scientist: medium-light skin tone" + ], + "value" : "🧑🏼‍🔬" + }, "🧑🏽‍🔬", + { + "keywords" : [ + "biologist", + "chemist", + "engineer", + "medium skin tone", + "physicist", + "scientist", + "scientist: medium skin tone" + ], + "value" : "🧑🏽‍🔬" + }, "🧑🏾‍🔬", + { + "keywords" : [ + "biologist", + "chemist", + "engineer", + "medium-dark skin tone", + "physicist", + "scientist", + "scientist: medium-dark skin tone" + ], + "value" : "🧑🏾‍🔬" + }, "🧑🏿‍🔬", + { + "value" : "🧑🏿‍🔬", + "keywords" : [ + "biologist", + "chemist", + "dark skin tone", + "engineer", + "physicist", + "scientist", + "scientist: dark skin tone" + ] + }, "👨‍🔬", + { + "value" : "👨‍🔬", + "keywords" : [ + "biologist", + "chemist", + "engineer", + "man", + "mathematician", + "physicist", + "scientist" + ] + }, "👨🏻‍🔬", + { + "keywords" : [ + "biologist", + "chemist", + "engineer", + "light skin tone", + "man", + "man scientist: light skin tone", + "physicist", + "scientist" + ], + "value" : "👨🏻‍🔬" + }, "👨🏼‍🔬", + { + "keywords" : [ + "biologist", + "chemist", + "engineer", + "man", + "man scientist: medium-light skin tone", + "medium-light skin tone", + "physicist", + "scientist" + ], + "value" : "👨🏼‍🔬" + }, "👨🏽‍🔬", + { + "value" : "👨🏽‍🔬", + "keywords" : [ + "biologist", + "chemist", + "engineer", + "man", + "man scientist: medium skin tone", + "medium skin tone", + "physicist", + "scientist" + ] + }, "👨🏾‍🔬", + { + "value" : "👨🏾‍🔬", + "keywords" : [ + "biologist", + "chemist", + "engineer", + "man", + "man scientist: medium-dark skin tone", + "medium-dark skin tone", + "physicist", + "scientist" + ] + }, "👨🏿‍🔬", + { + "keywords" : [ + "biologist", + "chemist", + "dark skin tone", + "engineer", + "man", + "man scientist: dark skin tone", + "physicist", + "scientist" + ], + "value" : "👨🏿‍🔬" + }, "👩‍🔬", + { + "value" : "👩‍🔬", + "keywords" : [ + "biologist", + "chemist", + "engineer", + "mathematician", + "physicist", + "scientist", + "woman" + ] + }, "👩🏻‍🔬", + { + "value" : "👩🏻‍🔬", + "keywords" : [ + "biologist", + "chemist", + "engineer", + "light skin tone", + "physicist", + "scientist", + "woman", + "woman scientist: light skin tone" + ] + }, "👩🏼‍🔬", + { + "value" : "👩🏼‍🔬", + "keywords" : [ + "biologist", + "chemist", + "engineer", + "medium-light skin tone", + "physicist", + "scientist", + "woman", + "woman scientist: medium-light skin tone" + ] + }, "👩🏽‍🔬", + { + "value" : "👩🏽‍🔬", + "keywords" : [ + "biologist", + "chemist", + "engineer", + "medium skin tone", + "physicist", + "scientist", + "woman", + "woman scientist: medium skin tone" + ] + }, "👩🏾‍🔬", + { + "keywords" : [ + "biologist", + "chemist", + "engineer", + "medium-dark skin tone", + "physicist", + "scientist", + "woman", + "woman scientist: medium-dark skin tone" + ], + "value" : "👩🏾‍🔬" + }, "👩🏿‍🔬", + { + "keywords" : [ + "biologist", + "chemist", + "dark skin tone", + "engineer", + "physicist", + "scientist", + "woman", + "woman scientist: dark skin tone" + ], + "value" : "👩🏿‍🔬" + }, "🧑‍💻", + { + "value" : "🧑‍💻", + "keywords" : [ + "coder", + "computer", + "developer", + "inventor", + "software", + "technologist" + ] + }, "🧑🏻‍💻", + { + "value" : "🧑🏻‍💻", + "keywords" : [ + "coder", + "developer", + "inventor", + "light skin tone", + "software", + "technologist", + "technologist: light skin tone" + ] + }, "🧑🏼‍💻", + { + "keywords" : [ + "coder", + "developer", + "inventor", + "medium-light skin tone", + "software", + "technologist", + "technologist: medium-light skin tone" + ], + "value" : "🧑🏼‍💻" + }, "🧑🏽‍💻", + { + "keywords" : [ + "coder", + "developer", + "inventor", + "medium skin tone", + "software", + "technologist", + "technologist: medium skin tone" + ], + "value" : "🧑🏽‍💻" + }, "🧑🏾‍💻", + { + "value" : "🧑🏾‍💻", + "keywords" : [ + "coder", + "developer", + "inventor", + "medium-dark skin tone", + "software", + "technologist", + "technologist: medium-dark skin tone" + ] + }, "🧑🏿‍💻", + { + "keywords" : [ + "coder", + "dark skin tone", + "developer", + "inventor", + "software", + "technologist", + "technologist: dark skin tone" + ], + "value" : "🧑🏿‍💻" + }, "👨‍💻", + { + "keywords" : [ + "coder", + "computer", + "developer", + "inventor", + "man", + "software", + "technologist" + ], + "value" : "👨‍💻" + }, "👨🏻‍💻", + { + "keywords" : [ + "coder", + "developer", + "inventor", + "light skin tone", + "man", + "man technologist: light skin tone", + "software", + "technologist" + ], + "value" : "👨🏻‍💻" + }, "👨🏼‍💻", + { + "keywords" : [ + "coder", + "developer", + "inventor", + "man", + "man technologist: medium-light skin tone", + "medium-light skin tone", + "software", + "technologist" + ], + "value" : "👨🏼‍💻" + }, "👨🏽‍💻", + { + "keywords" : [ + "coder", + "developer", + "inventor", + "man", + "man technologist: medium skin tone", + "medium skin tone", + "software", + "technologist" + ], + "value" : "👨🏽‍💻" + }, "👨🏾‍💻", + { + "keywords" : [ + "coder", + "developer", + "inventor", + "man", + "man technologist: medium-dark skin tone", + "medium-dark skin tone", + "software", + "technologist" + ], + "value" : "👨🏾‍💻" + }, "👨🏿‍💻", + { + "keywords" : [ + "coder", + "dark skin tone", + "developer", + "inventor", + "man", + "man technologist: dark skin tone", + "software", + "technologist" + ], + "value" : "👨🏿‍💻" + }, "👩‍💻", + { + "value" : "👩‍💻", + "keywords" : [ + "coder", + "computer", + "developer", + "inventor", + "software", + "technologist", + "woman" + ] + }, "👩🏻‍💻", + { + "value" : "👩🏻‍💻", + "keywords" : [ + "coder", + "developer", + "inventor", + "light skin tone", + "software", + "technologist", + "woman", + "woman technologist: light skin tone" + ] + }, "👩🏼‍💻", + { + "value" : "👩🏼‍💻", + "keywords" : [ + "coder", + "developer", + "inventor", + "medium-light skin tone", + "software", + "technologist", + "woman", + "woman technologist: medium-light skin tone" + ] + }, "👩🏽‍💻", + { + "value" : "👩🏽‍💻", + "keywords" : [ + "coder", + "developer", + "inventor", + "medium skin tone", + "software", + "technologist", + "woman", + "woman technologist: medium skin tone" + ] + }, "👩🏾‍💻", + { + "value" : "👩🏾‍💻", + "keywords" : [ + "coder", + "developer", + "inventor", + "medium-dark skin tone", + "software", + "technologist", + "woman", + "woman technologist: medium-dark skin tone" + ] + }, "👩🏿‍💻", + { + "value" : "👩🏿‍💻", + "keywords" : [ + "coder", + "dark skin tone", + "developer", + "inventor", + "software", + "technologist", + "woman", + "woman technologist: dark skin tone" + ] + }, "🧑‍🎤", + { + "value" : "🧑‍🎤", + "keywords" : [ + "actor", + "entertainer", + "rock", + "rockstar", + "singer", + "star" + ] + }, "🧑🏻‍🎤", + { + "keywords" : [ + "actor", + "entertainer", + "light skin tone", + "rock", + "singer", + "singer: light skin tone", + "star" + ], + "value" : "🧑🏻‍🎤" + }, "🧑🏼‍🎤", + { + "value" : "🧑🏼‍🎤", + "keywords" : [ + "actor", + "entertainer", + "medium-light skin tone", + "rock", + "singer", + "singer: medium-light skin tone", + "star" + ] + }, "🧑🏽‍🎤", + { + "value" : "🧑🏽‍🎤", + "keywords" : [ + "actor", + "entertainer", + "medium skin tone", + "rock", + "singer", + "singer: medium skin tone", + "star" + ] + }, "🧑🏾‍🎤", + { + "keywords" : [ + "actor", + "entertainer", + "medium-dark skin tone", + "rock", + "singer", + "singer: medium-dark skin tone", + "star" + ], + "value" : "🧑🏾‍🎤" + }, "🧑🏿‍🎤", + { + "keywords" : [ + "actor", + "dark skin tone", + "entertainer", + "rock", + "singer", + "singer: dark skin tone", + "star" + ], + "value" : "🧑🏿‍🎤" + }, "👨‍🎤", + { + "keywords" : [ + "actor", + "entertainer", + "man", + "rock", + "rockstar", + "singer", + "star" + ], + "value" : "👨‍🎤" + }, "👨🏻‍🎤", + { + "keywords" : [ + "actor", + "entertainer", + "light skin tone", + "man", + "man singer: light skin tone", + "rock", + "singer", + "star" + ], + "value" : "👨🏻‍🎤" + }, "👨🏼‍🎤", + { + "value" : "👨🏼‍🎤", + "keywords" : [ + "actor", + "entertainer", + "man", + "man singer: medium-light skin tone", + "medium-light skin tone", + "rock", + "singer", + "star" + ] + }, "👨🏽‍🎤", + { + "value" : "👨🏽‍🎤", + "keywords" : [ + "actor", + "entertainer", + "man", + "man singer: medium skin tone", + "medium skin tone", + "rock", + "singer", + "star" + ] + }, "👨🏾‍🎤", + { + "value" : "👨🏾‍🎤", + "keywords" : [ + "actor", + "entertainer", + "man", + "man singer: medium-dark skin tone", + "medium-dark skin tone", + "rock", + "singer", + "star" + ] + }, "👨🏿‍🎤", + { + "keywords" : [ + "actor", + "dark skin tone", + "entertainer", + "man", + "man singer: dark skin tone", + "rock", + "singer", + "star" + ], + "value" : "👨🏿‍🎤" + }, "👩‍🎤", + { + "value" : "👩‍🎤", + "keywords" : [ + "actor", + "entertainer", + "rock", + "rockstar", + "singer", + "star", + "woman" + ] + }, "👩🏻‍🎤", + { + "keywords" : [ + "actor", + "entertainer", + "light skin tone", + "rock", + "singer", + "star", + "woman", + "woman singer: light skin tone" + ], + "value" : "👩🏻‍🎤" + }, "👩🏼‍🎤", + { + "keywords" : [ + "actor", + "entertainer", + "medium-light skin tone", + "rock", + "singer", + "star", + "woman", + "woman singer: medium-light skin tone" + ], + "value" : "👩🏼‍🎤" + }, "👩🏽‍🎤", + { + "value" : "👩🏽‍🎤", + "keywords" : [ + "actor", + "entertainer", + "medium skin tone", + "rock", + "singer", + "star", + "woman", + "woman singer: medium skin tone" + ] + }, "👩🏾‍🎤", + { + "keywords" : [ + "actor", + "entertainer", + "medium-dark skin tone", + "rock", + "singer", + "star", + "woman", + "woman singer: medium-dark skin tone" + ], + "value" : "👩🏾‍🎤" + }, "👩🏿‍🎤", + { + "value" : "👩🏿‍🎤", + "keywords" : [ + "actor", + "dark skin tone", + "entertainer", + "rock", + "singer", + "star", + "woman", + "woman singer: dark skin tone" + ] + }, "🧑‍🎨", + { + "value" : "🧑‍🎨", + "keywords" : [ + "artist", + "palette" + ] + }, "🧑🏻‍🎨", + { + "keywords" : [ + "artist", + "artist: light skin tone", + "light skin tone", + "palette" + ], + "value" : "🧑🏻‍🎨" + }, "🧑🏼‍🎨", + { + "keywords" : [ + "artist", + "artist: medium-light skin tone", + "medium-light skin tone", + "palette" + ], + "value" : "🧑🏼‍🎨" + }, "🧑🏽‍🎨", + { + "value" : "🧑🏽‍🎨", + "keywords" : [ + "artist", + "artist: medium skin tone", + "medium skin tone", + "palette" + ] + }, "🧑🏾‍🎨", + { + "keywords" : [ + "artist", + "artist: medium-dark skin tone", + "medium-dark skin tone", + "palette" + ], + "value" : "🧑🏾‍🎨" + }, "🧑🏿‍🎨", + { + "keywords" : [ + "artist", + "artist: dark skin tone", + "dark skin tone", + "palette" + ], + "value" : "🧑🏿‍🎨" + }, "👨‍🎨", + { + "keywords" : [ + "artist", + "man", + "palette" + ], + "value" : "👨‍🎨" + }, "👨🏻‍🎨", + { + "value" : "👨🏻‍🎨", + "keywords" : [ + "artist", + "light skin tone", + "man", + "man artist: light skin tone", + "palette" + ] + }, "👨🏼‍🎨", + { + "value" : "👨🏼‍🎨", + "keywords" : [ + "artist", + "man", + "man artist: medium-light skin tone", + "medium-light skin tone", + "palette" + ] + }, "👨🏽‍🎨", + { + "keywords" : [ + "artist", + "man", + "man artist: medium skin tone", + "medium skin tone", + "palette" + ], + "value" : "👨🏽‍🎨" + }, "👨🏾‍🎨", + { + "value" : "👨🏾‍🎨", + "keywords" : [ + "artist", + "man", + "man artist: medium-dark skin tone", + "medium-dark skin tone", + "palette" + ] + }, "👨🏿‍🎨", + { + "value" : "👨🏿‍🎨", + "keywords" : [ + "artist", + "dark skin tone", + "man", + "man artist: dark skin tone", + "palette" + ] + }, "👩‍🎨", + { + "value" : "👩‍🎨", + "keywords" : [ + "artist", + "palette", + "woman" + ] + }, "👩🏻‍🎨", + { + "value" : "👩🏻‍🎨", + "keywords" : [ + "artist", + "light skin tone", + "palette", + "woman", + "woman artist: light skin tone" + ] + }, "👩🏼‍🎨", + { + "value" : "👩🏼‍🎨", + "keywords" : [ + "artist", + "medium-light skin tone", + "palette", + "woman", + "woman artist: medium-light skin tone" + ] + }, "👩🏽‍🎨", + { + "keywords" : [ + "artist", + "medium skin tone", + "palette", + "woman", + "woman artist: medium skin tone" + ], + "value" : "👩🏽‍🎨" + }, "👩🏾‍🎨", + { + "keywords" : [ + "artist", + "medium-dark skin tone", + "palette", + "woman", + "woman artist: medium-dark skin tone" + ], + "value" : "👩🏾‍🎨" + }, "👩🏿‍🎨", + { + "keywords" : [ + "artist", + "dark skin tone", + "palette", + "woman", + "woman artist: dark skin tone" + ], + "value" : "👩🏿‍🎨" + }, "🧑‍✈️", + { + "keywords" : [ + "pilot", + "plane" + ], + "value" : "🧑‍✈️" + }, "🧑🏻‍✈️", + { + "value" : "🧑🏻‍✈️", + "keywords" : [ + "light skin tone", + "pilot", + "pilot: light skin tone", + "plane" + ] + }, "🧑🏼‍✈️", + { + "value" : "🧑🏼‍✈️", + "keywords" : [ + "medium-light skin tone", + "pilot", + "pilot: medium-light skin tone", + "plane" + ] + }, "🧑🏽‍✈️", + { + "keywords" : [ + "medium skin tone", + "pilot", + "pilot: medium skin tone", + "plane" + ], + "value" : "🧑🏽‍✈️" + }, "🧑🏾‍✈️", + { + "value" : "🧑🏾‍✈️", + "keywords" : [ + "medium-dark skin tone", + "pilot", + "pilot: medium-dark skin tone", + "plane" + ] + }, "🧑🏿‍✈️", + { + "value" : "🧑🏿‍✈️", + "keywords" : [ + "dark skin tone", + "pilot", + "pilot: dark skin tone", + "plane" + ] + }, "👨‍✈️", + { + "value" : "👨‍✈️", + "keywords" : [ + "man", + "pilot", + "plane" + ] + }, "👨🏻‍✈️", + { + "value" : "👨🏻‍✈️", + "keywords" : [ + "light skin tone", + "man", + "man pilot: light skin tone", + "pilot", + "plane" + ] + }, "👨🏼‍✈️", + { + "keywords" : [ + "man", + "man pilot: medium-light skin tone", + "medium-light skin tone", + "pilot", + "plane" + ], + "value" : "👨🏼‍✈️" + }, "👨🏽‍✈️", + { + "value" : "👨🏽‍✈️", + "keywords" : [ + "man", + "man pilot: medium skin tone", + "medium skin tone", + "pilot", + "plane" + ] + }, "👨🏾‍✈️", + { + "keywords" : [ + "man", + "man pilot: medium-dark skin tone", + "medium-dark skin tone", + "pilot", + "plane" + ], + "value" : "👨🏾‍✈️" + }, "👨🏿‍✈️", + { + "keywords" : [ + "dark skin tone", + "man", + "man pilot: dark skin tone", + "pilot", + "plane" + ], + "value" : "👨🏿‍✈️" + }, "👩‍✈️", + { + "keywords" : [ + "pilot", + "plane", + "woman" + ], + "value" : "👩‍✈️" + }, "👩🏻‍✈️", + { + "value" : "👩🏻‍✈️", + "keywords" : [ + "light skin tone", + "pilot", + "plane", + "woman", + "woman pilot: light skin tone" + ] + }, "👩🏼‍✈️", + { + "value" : "👩🏼‍✈️", + "keywords" : [ + "medium-light skin tone", + "pilot", + "plane", + "woman", + "woman pilot: medium-light skin tone" + ] + }, "👩🏽‍✈️", + { + "keywords" : [ + "medium skin tone", + "pilot", + "plane", + "woman", + "woman pilot: medium skin tone" + ], + "value" : "👩🏽‍✈️" + }, "👩🏾‍✈️", + { + "keywords" : [ + "medium-dark skin tone", + "pilot", + "plane", + "woman", + "woman pilot: medium-dark skin tone" + ], + "value" : "👩🏾‍✈️" + }, "👩🏿‍✈️", + { + "value" : "👩🏿‍✈️", + "keywords" : [ + "dark skin tone", + "pilot", + "plane", + "woman", + "woman pilot: dark skin tone" + ] + }, "🧑‍🚀", + { + "value" : "🧑‍🚀", + "keywords" : [ + "astronaut", + "rocket", + "space" + ] + }, "🧑🏻‍🚀", + { + "value" : "🧑🏻‍🚀", + "keywords" : [ + "astronaut", + "astronaut: light skin tone", + "light skin tone", + "rocket" + ] + }, "🧑🏼‍🚀", + { + "keywords" : [ + "astronaut", + "astronaut: medium-light skin tone", + "medium-light skin tone", + "rocket" + ], + "value" : "🧑🏼‍🚀" + }, "🧑🏽‍🚀", + { + "value" : "🧑🏽‍🚀", + "keywords" : [ + "astronaut", + "astronaut: medium skin tone", + "medium skin tone", + "rocket" + ] + }, "🧑🏾‍🚀", + { + "value" : "🧑🏾‍🚀", + "keywords" : [ + "astronaut", + "astronaut: medium-dark skin tone", + "medium-dark skin tone", + "rocket" + ] + }, "🧑🏿‍🚀", + { + "value" : "🧑🏿‍🚀", + "keywords" : [ + "astronaut", + "astronaut: dark skin tone", + "dark skin tone", + "rocket" + ] + }, "👨‍🚀", + { + "value" : "👨‍🚀", + "keywords" : [ + "astronaut", + "man", + "rocket", + "space" + ] + }, "👨🏻‍🚀", + { + "keywords" : [ + "astronaut", + "light skin tone", + "man", + "man astronaut: light skin tone", + "rocket" + ], + "value" : "👨🏻‍🚀" + }, "👨🏼‍🚀", + { + "value" : "👨🏼‍🚀", + "keywords" : [ + "astronaut", + "man", + "man astronaut: medium-light skin tone", + "medium-light skin tone", + "rocket" + ] + }, "👨🏽‍🚀", + { + "keywords" : [ + "astronaut", + "man", + "man astronaut: medium skin tone", + "medium skin tone", + "rocket" + ], + "value" : "👨🏽‍🚀" + }, "👨🏾‍🚀", + { + "keywords" : [ + "astronaut", + "man", + "man astronaut: medium-dark skin tone", + "medium-dark skin tone", + "rocket" + ], + "value" : "👨🏾‍🚀" + }, "👨🏿‍🚀", + { + "value" : "👨🏿‍🚀", + "keywords" : [ + "astronaut", + "dark skin tone", + "man", + "man astronaut: dark skin tone", + "rocket" + ] + }, "👩‍🚀", + { + "value" : "👩‍🚀", + "keywords" : [ + "astronaut", + "rocket", + "space", + "woman" + ] + }, "👩🏻‍🚀", + { + "keywords" : [ + "astronaut", + "light skin tone", + "rocket", + "woman", + "woman astronaut: light skin tone" + ], + "value" : "👩🏻‍🚀" + }, "👩🏼‍🚀", + { + "value" : "👩🏼‍🚀", + "keywords" : [ + "astronaut", + "medium-light skin tone", + "rocket", + "woman", + "woman astronaut: medium-light skin tone" + ] + }, "👩🏽‍🚀", + { + "keywords" : [ + "astronaut", + "medium skin tone", + "rocket", + "woman", + "woman astronaut: medium skin tone" + ], + "value" : "👩🏽‍🚀" + }, "👩🏾‍🚀", + { + "value" : "👩🏾‍🚀", + "keywords" : [ + "astronaut", + "medium-dark skin tone", + "rocket", + "woman", + "woman astronaut: medium-dark skin tone" + ] + }, "👩🏿‍🚀", + { + "keywords" : [ + "astronaut", + "dark skin tone", + "rocket", + "woman", + "woman astronaut: dark skin tone" + ], + "value" : "👩🏿‍🚀" + }, "🧑‍🚒", + { + "keywords" : [ + "fire", + "firefighter", + "firetruck" + ], + "value" : "🧑‍🚒" + }, "🧑🏻‍🚒", + { + "value" : "🧑🏻‍🚒", + "keywords" : [ + "fire", + "firefighter", + "firefighter: light skin tone", + "firetruck", + "light skin tone" + ] + }, "🧑🏼‍🚒", + { + "value" : "🧑🏼‍🚒", + "keywords" : [ + "fire", + "firefighter", + "firefighter: medium-light skin tone", + "firetruck", + "medium-light skin tone" + ] + }, "🧑🏽‍🚒", + { + "value" : "🧑🏽‍🚒", + "keywords" : [ + "fire", + "firefighter", + "firefighter: medium skin tone", + "firetruck", + "medium skin tone" + ] + }, "🧑🏾‍🚒", + { + "value" : "🧑🏾‍🚒", + "keywords" : [ + "fire", + "firefighter", + "firefighter: medium-dark skin tone", + "firetruck", + "medium-dark skin tone" + ] + }, "🧑🏿‍🚒", + { + "value" : "🧑🏿‍🚒", + "keywords" : [ + "dark skin tone", + "fire", + "firefighter", + "firefighter: dark skin tone", + "firetruck" + ] + }, "👨‍🚒", + { + "keywords" : [ + "fire", + "firefighter", + "firetruck", + "man" + ], + "value" : "👨‍🚒" + }, "👨🏻‍🚒", + { + "keywords" : [ + "firefighter", + "firetruck", + "light skin tone", + "man", + "man firefighter: light skin tone" + ], + "value" : "👨🏻‍🚒" + }, "👨🏼‍🚒", + { + "value" : "👨🏼‍🚒", + "keywords" : [ + "firefighter", + "firetruck", + "man", + "man firefighter: medium-light skin tone", + "medium-light skin tone" + ] + }, "👨🏽‍🚒", + { + "keywords" : [ + "firefighter", + "firetruck", + "man", + "man firefighter: medium skin tone", + "medium skin tone" + ], + "value" : "👨🏽‍🚒" + }, "👨🏾‍🚒", + { + "value" : "👨🏾‍🚒", + "keywords" : [ + "firefighter", + "firetruck", + "man", + "man firefighter: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "👨🏿‍🚒", + { + "value" : "👨🏿‍🚒", + "keywords" : [ + "dark skin tone", + "firefighter", + "firetruck", + "man", + "man firefighter: dark skin tone" + ] + }, "👩‍🚒", + { + "keywords" : [ + "fire", + "firefighter", + "firetruck", + "woman" + ], + "value" : "👩‍🚒" + }, "👩🏻‍🚒", + { + "value" : "👩🏻‍🚒", + "keywords" : [ + "firefighter", + "firetruck", + "light skin tone", + "woman", + "woman firefighter: light skin tone" + ] + }, "👩🏼‍🚒", + { + "value" : "👩🏼‍🚒", + "keywords" : [ + "firefighter", + "firetruck", + "medium-light skin tone", + "woman", + "woman firefighter: medium-light skin tone" + ] + }, "👩🏽‍🚒", + { + "keywords" : [ + "firefighter", + "firetruck", + "medium skin tone", + "woman", + "woman firefighter: medium skin tone" + ], + "value" : "👩🏽‍🚒" + }, "👩🏾‍🚒", + { + "value" : "👩🏾‍🚒", + "keywords" : [ + "firefighter", + "firetruck", + "medium-dark skin tone", + "woman", + "woman firefighter: medium-dark skin tone" + ] + }, "👩🏿‍🚒", + { + "value" : "👩🏿‍🚒", + "keywords" : [ + "dark skin tone", + "firefighter", + "firetruck", + "woman", + "woman firefighter: dark skin tone" + ] + }, "👮", + { + "keywords" : [ + "apprehend", + "arrest", + "citation", + "cop", + "law", + "officer", + "over", + "police", + "pulled", + "undercover" + ], + "value" : "👮" + }, "👮🏻", + { + "value" : "👮🏻", + "keywords" : [ + "cop", + "light skin tone", + "officer", + "police", + "police officer: light skin tone" + ] + }, "👮🏼", + { + "keywords" : [ + "cop", + "medium-light skin tone", + "officer", + "police", + "police officer: medium-light skin tone" + ], + "value" : "👮🏼" + }, "👮🏽", + { + "keywords" : [ + "cop", + "medium skin tone", + "officer", + "police", + "police officer: medium skin tone" + ], + "value" : "👮🏽" + }, "👮🏾", + { + "keywords" : [ + "cop", + "medium-dark skin tone", + "officer", + "police", + "police officer: medium-dark skin tone" + ], + "value" : "👮🏾" + }, "👮🏿", + { + "value" : "👮🏿", + "keywords" : [ + "cop", + "dark skin tone", + "officer", + "police", + "police officer: dark skin tone" + ] + }, "👮‍♂️", + { + "keywords" : [ + "apprehend", + "arrest", + "citation", + "cop", + "law", + "man", + "officer", + "over", + "police", + "pulled", + "undercover" + ], + "value" : "👮‍♂️" + }, "👮🏻‍♂️", + { + "value" : "👮🏻‍♂️", + "keywords" : [ + "cop", + "light skin tone", + "man", + "man police officer: light skin tone", + "officer", + "police" + ] + }, "👮🏼‍♂️", + { + "value" : "👮🏼‍♂️", + "keywords" : [ + "cop", + "man", + "man police officer: medium-light skin tone", + "medium-light skin tone", + "officer", + "police" + ] + }, "👮🏽‍♂️", + { + "value" : "👮🏽‍♂️", + "keywords" : [ + "cop", + "man", + "man police officer: medium skin tone", + "medium skin tone", + "officer", + "police" + ] + }, "👮🏾‍♂️", + { + "keywords" : [ + "cop", + "man", + "man police officer: medium-dark skin tone", + "medium-dark skin tone", + "officer", + "police" + ], + "value" : "👮🏾‍♂️" + }, "👮🏿‍♂️", + { + "keywords" : [ + "cop", + "dark skin tone", + "man", + "man police officer: dark skin tone", + "officer", + "police" + ], + "value" : "👮🏿‍♂️" + }, "👮‍♀️", + { + "value" : "👮‍♀️", + "keywords" : [ + "apprehend", + "arrest", + "citation", + "cop", + "law", + "officer", + "over", + "police", + "pulled", + "undercover", + "woman" + ] + }, "👮🏻‍♀️", + { + "keywords" : [ + "cop", + "light skin tone", + "officer", + "police", + "woman", + "woman police officer: light skin tone" + ], + "value" : "👮🏻‍♀️" + }, "👮🏼‍♀️", + { + "keywords" : [ + "cop", + "medium-light skin tone", + "officer", + "police", + "woman", + "woman police officer: medium-light skin tone" + ], + "value" : "👮🏼‍♀️" + }, "👮🏽‍♀️", + { + "value" : "👮🏽‍♀️", + "keywords" : [ + "cop", + "medium skin tone", + "officer", + "police", + "woman", + "woman police officer: medium skin tone" + ] + }, "👮🏾‍♀️", + { + "keywords" : [ + "cop", + "medium-dark skin tone", + "officer", + "police", + "woman", + "woman police officer: medium-dark skin tone" + ], + "value" : "👮🏾‍♀️" + }, "👮🏿‍♀️", + { + "value" : "👮🏿‍♀️", + "keywords" : [ + "cop", + "dark skin tone", + "officer", + "police", + "woman", + "woman police officer: dark skin tone" + ] + }, "🕵️", + { + "value" : "🕵️", + "keywords" : [ + "detective", + "sleuth", + "spy" + ] + }, "🕵🏻", + { + "value" : "🕵🏻", + "keywords" : [ + "detective", + "detective: light skin tone", + "light skin tone", + "sleuth", + "spy" + ] + }, "🕵🏼", + { + "keywords" : [ + "detective", + "detective: medium-light skin tone", + "medium-light skin tone", + "sleuth", + "spy" + ], + "value" : "🕵🏼" + }, "🕵🏽", + { + "value" : "🕵🏽", + "keywords" : [ + "detective", + "detective: medium skin tone", + "medium skin tone", + "sleuth", + "spy" + ] + }, "🕵🏾", + { + "keywords" : [ + "detective", + "detective: medium-dark skin tone", + "medium-dark skin tone", + "sleuth", + "spy" + ], + "value" : "🕵🏾" + }, "🕵🏿", + { + "value" : "🕵🏿", + "keywords" : [ + "dark skin tone", + "detective", + "detective: dark skin tone", + "sleuth", + "spy" + ] + }, "🕵️‍♂️", + { + "keywords" : [ + "detective", + "man", + "sleuth", + "spy" + ], + "value" : "🕵️‍♂️" + }, "🕵🏻‍♂️", + { + "value" : "🕵🏻‍♂️", + "keywords" : [ + "detective", + "light skin tone", + "man", + "man detective: light skin tone", + "sleuth", + "spy" + ] + }, "🕵🏼‍♂️", + { + "keywords" : [ + "detective", + "man", + "man detective: medium-light skin tone", + "medium-light skin tone", + "sleuth", + "spy" + ], + "value" : "🕵🏼‍♂️" + }, "🕵🏽‍♂️", + { + "value" : "🕵🏽‍♂️", + "keywords" : [ + "detective", + "man", + "man detective: medium skin tone", + "medium skin tone", + "sleuth", + "spy" + ] + }, "🕵🏾‍♂️", + { + "value" : "🕵🏾‍♂️", + "keywords" : [ + "detective", + "man", + "man detective: medium-dark skin tone", + "medium-dark skin tone", + "sleuth", + "spy" + ] + }, "🕵🏿‍♂️", + { + "value" : "🕵🏿‍♂️", + "keywords" : [ + "dark skin tone", + "detective", + "man", + "man detective: dark skin tone", + "sleuth", + "spy" + ] + }, "🕵️‍♀️", + { + "value" : "🕵️‍♀️", + "keywords" : [ + "detective", + "sleuth", + "spy", + "woman" + ] + }, "🕵🏻‍♀️", + { + "keywords" : [ + "detective", + "light skin tone", + "sleuth", + "spy", + "woman", + "woman detective: light skin tone" + ], + "value" : "🕵🏻‍♀️" + }, "🕵🏼‍♀️", + { + "value" : "🕵🏼‍♀️", + "keywords" : [ + "detective", + "medium-light skin tone", + "sleuth", + "spy", + "woman", + "woman detective: medium-light skin tone" + ] + }, "🕵🏽‍♀️", + { + "keywords" : [ + "detective", + "medium skin tone", + "sleuth", + "spy", + "woman", + "woman detective: medium skin tone" + ], + "value" : "🕵🏽‍♀️" + }, "🕵🏾‍♀️", + { + "value" : "🕵🏾‍♀️", + "keywords" : [ + "detective", + "medium-dark skin tone", + "sleuth", + "spy", + "woman", + "woman detective: medium-dark skin tone" + ] + }, "🕵🏿‍♀️", + { + "value" : "🕵🏿‍♀️", + "keywords" : [ + "dark skin tone", + "detective", + "sleuth", + "spy", + "woman", + "woman detective: dark skin tone" + ] + }, "💂", + { + "keywords" : [ + "buckingham", + "guard", + "helmet", + "london", + "palace" + ], + "value" : "💂" + }, "💂🏻", + { + "value" : "💂🏻", + "keywords" : [ + "guard", + "guard: light skin tone", + "light skin tone" + ] + }, "💂🏼", + { + "value" : "💂🏼", + "keywords" : [ + "guard", + "guard: medium-light skin tone", + "medium-light skin tone" + ] + }, "💂🏽", + { + "keywords" : [ + "guard", + "guard: medium skin tone", + "medium skin tone" + ], + "value" : "💂🏽" + }, "💂🏾", + { + "keywords" : [ + "guard", + "guard: medium-dark skin tone", + "medium-dark skin tone" + ], + "value" : "💂🏾" + }, "💂🏿", + { + "value" : "💂🏿", + "keywords" : [ + "dark skin tone", + "guard", + "guard: dark skin tone" + ] + }, "💂‍♂️", + { + "value" : "💂‍♂️", + "keywords" : [ + "buckingham", + "guard", + "helmet", + "london", + "man", + "palace" + ] + }, "💂🏻‍♂️", + { + "value" : "💂🏻‍♂️", + "keywords" : [ + "guard", + "light skin tone", + "man", + "man guard: light skin tone" + ] + }, "💂🏼‍♂️", + { + "value" : "💂🏼‍♂️", + "keywords" : [ + "guard", + "man", + "man guard: medium-light skin tone", + "medium-light skin tone" + ] + }, "💂🏽‍♂️", + { + "value" : "💂🏽‍♂️", + "keywords" : [ + "guard", + "man", + "man guard: medium skin tone", + "medium skin tone" + ] + }, "💂🏾‍♂️", + { + "value" : "💂🏾‍♂️", + "keywords" : [ + "guard", + "man", + "man guard: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "💂🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "guard", + "man", + "man guard: dark skin tone" + ], + "value" : "💂🏿‍♂️" + }, "💂‍♀️", + { + "value" : "💂‍♀️", + "keywords" : [ + "buckingham", + "guard", + "helmet", + "london", + "palace", + "woman" + ] + }, "💂🏻‍♀️", + { + "value" : "💂🏻‍♀️", + "keywords" : [ + "guard", + "light skin tone", + "woman", + "woman guard: light skin tone" + ] + }, "💂🏼‍♀️", + { + "keywords" : [ + "guard", + "medium-light skin tone", + "woman", + "woman guard: medium-light skin tone" + ], + "value" : "💂🏼‍♀️" + }, "💂🏽‍♀️", + { + "value" : "💂🏽‍♀️", + "keywords" : [ + "guard", + "medium skin tone", + "woman", + "woman guard: medium skin tone" + ] + }, "💂🏾‍♀️", + { + "value" : "💂🏾‍♀️", + "keywords" : [ + "guard", + "medium-dark skin tone", + "woman", + "woman guard: medium-dark skin tone" + ] + }, "💂🏿‍♀️", + { + "keywords" : [ + "dark skin tone", + "guard", + "woman", + "woman guard: dark skin tone" + ], + "value" : "💂🏿‍♀️" + }, "🥷", + { + "value" : "🥷", + "keywords" : [ + "assassin", + "fight", + "fighter", + "hidden", + "ninja", + "person", + "secret", + "skills", + "sly", + "soldier", + "stealth", + "war" + ] + }, "🥷🏻", + { + "keywords" : [ + "fighter", + "hidden", + "light skin tone", + "ninja", + "ninja: light skin tone", + "stealth" + ], + "value" : "🥷🏻" + }, "🥷🏼", + { + "value" : "🥷🏼", + "keywords" : [ + "fighter", + "hidden", + "medium-light skin tone", + "ninja", + "ninja: medium-light skin tone", + "stealth" + ] + }, "🥷🏽", + { + "value" : "🥷🏽", + "keywords" : [ + "fighter", + "hidden", + "medium skin tone", + "ninja", + "ninja: medium skin tone", + "stealth" + ] + }, "🥷🏾", + { + "value" : "🥷🏾", + "keywords" : [ + "fighter", + "hidden", + "medium-dark skin tone", + "ninja", + "ninja: medium-dark skin tone", + "stealth" + ] + }, "🥷🏿", + { + "keywords" : [ + "dark skin tone", + "fighter", + "hidden", + "ninja", + "ninja: dark skin tone", + "stealth" + ], + "value" : "🥷🏿" + }, "👷", + { + "value" : "👷", + "keywords" : [ + "build", + "construction", + "fix", + "hardhat", + "hat", + "man", + "person", + "rebuild", + "remodel", + "repair", + "work", + "worker" + ] + }, "👷🏻", + { + "keywords" : [ + "construction", + "construction worker: light skin tone", + "hat", + "light skin tone", + "worker" + ], + "value" : "👷🏻" + }, "👷🏼", + { + "value" : "👷🏼", + "keywords" : [ + "construction", + "construction worker: medium-light skin tone", + "hat", + "medium-light skin tone", + "worker" + ] + }, "👷🏽", + { + "value" : "👷🏽", + "keywords" : [ + "construction", + "construction worker: medium skin tone", + "hat", + "medium skin tone", + "worker" + ] + }, "👷🏾", + { + "keywords" : [ + "construction", + "construction worker: medium-dark skin tone", + "hat", + "medium-dark skin tone", + "worker" + ], + "value" : "👷🏾" + }, "👷🏿", + { + "value" : "👷🏿", + "keywords" : [ + "construction", + "construction worker: dark skin tone", + "dark skin tone", + "hat", + "worker" + ] + }, "👷‍♂️", + { + "value" : "👷‍♂️", + "keywords" : [ + "build", + "construction", + "fix", + "hardhat", + "hat", + "man", + "rebuild", + "remodel", + "repair", + "work", + "worker" + ] + }, "👷🏻‍♂️", + { + "value" : "👷🏻‍♂️", + "keywords" : [ + "construction", + "light skin tone", + "man", + "man construction worker: light skin tone", + "worker" + ] + }, "👷🏼‍♂️", + { + "keywords" : [ + "construction", + "man", + "man construction worker: medium-light skin tone", + "medium-light skin tone", + "worker" + ], + "value" : "👷🏼‍♂️" + }, "👷🏽‍♂️", + { + "value" : "👷🏽‍♂️", + "keywords" : [ + "construction", + "man", + "man construction worker: medium skin tone", + "medium skin tone", + "worker" + ] + }, "👷🏾‍♂️", + { + "value" : "👷🏾‍♂️", + "keywords" : [ + "construction", + "man", + "man construction worker: medium-dark skin tone", + "medium-dark skin tone", + "worker" + ] + }, "👷🏿‍♂️", + { + "value" : "👷🏿‍♂️", + "keywords" : [ + "construction", + "dark skin tone", + "man", + "man construction worker: dark skin tone", + "worker" + ] + }, "👷‍♀️", + { + "keywords" : [ + "build", + "construction", + "fix", + "hardhat", + "hat", + "man", + "rebuild", + "remodel", + "repair", + "woman", + "work", + "worker" + ], + "value" : "👷‍♀️" + }, "👷🏻‍♀️", + { + "keywords" : [ + "construction", + "light skin tone", + "woman", + "woman construction worker: light skin tone", + "worker" + ], + "value" : "👷🏻‍♀️" + }, "👷🏼‍♀️", + { + "value" : "👷🏼‍♀️", + "keywords" : [ + "construction", + "medium-light skin tone", + "woman", + "woman construction worker: medium-light skin tone", + "worker" + ] + }, "👷🏽‍♀️", + { + "value" : "👷🏽‍♀️", + "keywords" : [ + "construction", + "medium skin tone", + "woman", + "woman construction worker: medium skin tone", + "worker" + ] + }, "👷🏾‍♀️", + { + "value" : "👷🏾‍♀️", + "keywords" : [ + "construction", + "medium-dark skin tone", + "woman", + "woman construction worker: medium-dark skin tone", + "worker" + ] + }, "👷🏿‍♀️", + { + "keywords" : [ + "construction", + "dark skin tone", + "woman", + "woman construction worker: dark skin tone", + "worker" + ], + "value" : "👷🏿‍♀️" + }, "🫅", + { + "value" : "🫅", + "keywords" : [ + "crown", + "monarch", + "noble", + "person", + "regal", + "royal", + "royalty" + ] + }, "🫅🏻", + { + "value" : "🫅🏻", + "keywords" : [ + "light skin tone", + "monarch", + "noble", + "person with crown", + "person with crown: light skin tone", + "regal", + "royalty" + ] + }, "🫅🏼", + { + "keywords" : [ + "medium-light skin tone", + "monarch", + "noble", + "person with crown", + "person with crown: medium-light skin tone", + "regal", + "royalty" + ], + "value" : "🫅🏼" + }, "🫅🏽", + { + "value" : "🫅🏽", + "keywords" : [ + "medium skin tone", + "monarch", + "noble", + "person with crown", + "person with crown: medium skin tone", + "regal", + "royalty" + ] + }, "🫅🏾", + { + "value" : "🫅🏾", + "keywords" : [ + "medium-dark skin tone", + "monarch", + "noble", + "person with crown", + "person with crown: medium-dark skin tone", + "regal", + "royalty" + ] + }, "🫅🏿", + { + "value" : "🫅🏿", + "keywords" : [ + "dark skin tone", + "monarch", + "noble", + "person with crown", + "person with crown: dark skin tone", + "regal", + "royalty" + ] + }, "🤴", + { + "value" : "🤴", + "keywords" : [ + "crown", + "fairy", + "fairytale", + "fantasy", + "king", + "prince", + "royal", + "royalty", + "tale" + ] + }, "🤴🏻", + { + "keywords" : [ + "light skin tone", + "prince", + "prince: light skin tone" + ], + "value" : "🤴🏻" + }, "🤴🏼", + { + "keywords" : [ + "medium-light skin tone", + "prince", + "prince: medium-light skin tone" + ], + "value" : "🤴🏼" + }, "🤴🏽", + { + "value" : "🤴🏽", + "keywords" : [ + "medium skin tone", + "prince", + "prince: medium skin tone" + ] + }, "🤴🏾", + { + "keywords" : [ + "medium-dark skin tone", + "prince", + "prince: medium-dark skin tone" + ], + "value" : "🤴🏾" + }, "🤴🏿", + { + "value" : "🤴🏿", + "keywords" : [ + "dark skin tone", + "prince", + "prince: dark skin tone" + ] + }, "👸", + { + "keywords" : [ + "crown", + "fairy", + "fairytale", + "fantasy", + "princess", + "queen", + "royal", + "royalty", + "tale" + ], + "value" : "👸" + }, "👸🏻", + { + "value" : "👸🏻", + "keywords" : [ + "fairy tale", + "fantasy", + "light skin tone", + "princess", + "princess: light skin tone" + ] + }, "👸🏼", + { + "value" : "👸🏼", + "keywords" : [ + "fairy tale", + "fantasy", + "medium-light skin tone", + "princess", + "princess: medium-light skin tone" + ] + }, "👸🏽", + { + "value" : "👸🏽", + "keywords" : [ + "fairy tale", + "fantasy", + "medium skin tone", + "princess", + "princess: medium skin tone" + ] + }, "👸🏾", + { + "value" : "👸🏾", + "keywords" : [ + "fairy tale", + "fantasy", + "medium-dark skin tone", + "princess", + "princess: medium-dark skin tone" + ] + }, "👸🏿", + { + "value" : "👸🏿", + "keywords" : [ + "dark skin tone", + "fairy tale", + "fantasy", + "princess", + "princess: dark skin tone" + ] + }, "👳", + { + "value" : "👳", + "keywords" : [ + "person", + "turban", + "wearing" + ] + }, "👳🏻", + { + "keywords" : [ + "light skin tone", + "person wearing turban", + "person wearing turban: light skin tone", + "turban" + ], + "value" : "👳🏻" + }, "👳🏼", + { + "value" : "👳🏼", + "keywords" : [ + "medium-light skin tone", + "person wearing turban", + "person wearing turban: medium-light skin tone", + "turban" + ] + }, "👳🏽", + { + "value" : "👳🏽", + "keywords" : [ + "medium skin tone", + "person wearing turban", + "person wearing turban: medium skin tone", + "turban" + ] + }, "👳🏾", + { + "value" : "👳🏾", + "keywords" : [ + "medium-dark skin tone", + "person wearing turban", + "person wearing turban: medium-dark skin tone", + "turban" + ] + }, "👳🏿", + { + "value" : "👳🏿", + "keywords" : [ + "dark skin tone", + "person wearing turban", + "person wearing turban: dark skin tone", + "turban" + ] + }, "👳‍♂️", + { + "value" : "👳‍♂️", + "keywords" : [ + "man", + "turban", + "wearing" + ] + }, "👳🏻‍♂️", + { + "value" : "👳🏻‍♂️", + "keywords" : [ + "light skin tone", + "man", + "man wearing turban", + "man wearing turban: light skin tone", + "turban" + ] + }, "👳🏼‍♂️", + { + "keywords" : [ + "man", + "man wearing turban", + "man wearing turban: medium-light skin tone", + "medium-light skin tone", + "turban" + ], + "value" : "👳🏼‍♂️" + }, "👳🏽‍♂️", + { + "keywords" : [ + "man", + "man wearing turban", + "man wearing turban: medium skin tone", + "medium skin tone", + "turban" + ], + "value" : "👳🏽‍♂️" + }, "👳🏾‍♂️", + { + "value" : "👳🏾‍♂️", + "keywords" : [ + "man", + "man wearing turban", + "man wearing turban: medium-dark skin tone", + "medium-dark skin tone", + "turban" + ] + }, "👳🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "man", + "man wearing turban", + "man wearing turban: dark skin tone", + "turban" + ], + "value" : "👳🏿‍♂️" + }, "👳‍♀️", + { + "value" : "👳‍♀️", + "keywords" : [ + "turban", + "wearing", + "woman" + ] + }, "👳🏻‍♀️", + { + "value" : "👳🏻‍♀️", + "keywords" : [ + "light skin tone", + "turban", + "woman", + "woman wearing turban", + "woman wearing turban: light skin tone" + ] + }, "👳🏼‍♀️", + { + "keywords" : [ + "medium-light skin tone", + "turban", + "woman", + "woman wearing turban", + "woman wearing turban: medium-light skin tone" + ], + "value" : "👳🏼‍♀️" + }, "👳🏽‍♀️", + { + "value" : "👳🏽‍♀️", + "keywords" : [ + "medium skin tone", + "turban", + "woman", + "woman wearing turban", + "woman wearing turban: medium skin tone" + ] + }, "👳🏾‍♀️", + { + "value" : "👳🏾‍♀️", + "keywords" : [ + "medium-dark skin tone", + "turban", + "woman", + "woman wearing turban", + "woman wearing turban: medium-dark skin tone" + ] + }, "👳🏿‍♀️", + { + "value" : "👳🏿‍♀️", + "keywords" : [ + "dark skin tone", + "turban", + "woman", + "woman wearing turban", + "woman wearing turban: dark skin tone" + ] + }, "👲", + { + "value" : "👲", + "keywords" : [ + "cap", + "Chinese", + "gua", + "guapi", + "hat", + "mao", + "person", + "pi", + "skullcap" + ] + }, "👲🏻", + { + "value" : "👲🏻", + "keywords" : [ + "cap", + "gua pi mao", + "hat", + "light skin tone", + "person", + "person with skullcap", + "person with skullcap: light skin tone", + "skullcap" + ] + }, "👲🏼", + { + "value" : "👲🏼", + "keywords" : [ + "cap", + "gua pi mao", + "hat", + "medium-light skin tone", + "person", + "person with skullcap", + "person with skullcap: medium-light skin tone", + "skullcap" + ] + }, "👲🏽", + { + "keywords" : [ + "cap", + "gua pi mao", + "hat", + "medium skin tone", + "person", + "person with skullcap", + "person with skullcap: medium skin tone", + "skullcap" + ], + "value" : "👲🏽" + }, "👲🏾", + { + "keywords" : [ + "cap", + "gua pi mao", + "hat", + "medium-dark skin tone", + "person", + "person with skullcap", + "person with skullcap: medium-dark skin tone", + "skullcap" + ], + "value" : "👲🏾" + }, "👲🏿", + { + "keywords" : [ + "cap", + "dark skin tone", + "gua pi mao", + "hat", + "person", + "person with skullcap", + "person with skullcap: dark skin tone", + "skullcap" + ], + "value" : "👲🏿" + }, "🧕", + { + "keywords" : [ + "bandana", + "head", + "headscarf", + "hijab", + "kerchief", + "mantilla", + "tichel", + "woman" + ], + "value" : "🧕" + }, "🧕🏻", + { + "value" : "🧕🏻", + "keywords" : [ + "headscarf", + "hijab", + "light skin tone", + "mantilla", + "tichel", + "woman with headscarf", + "woman with headscarf: light skin tone" + ] + }, "🧕🏼", + { + "keywords" : [ + "headscarf", + "hijab", + "mantilla", + "medium-light skin tone", + "tichel", + "woman with headscarf", + "woman with headscarf: medium-light skin tone" + ], + "value" : "🧕🏼" + }, "🧕🏽", + { + "value" : "🧕🏽", + "keywords" : [ + "headscarf", + "hijab", + "mantilla", + "medium skin tone", + "tichel", + "woman with headscarf", + "woman with headscarf: medium skin tone" + ] + }, "🧕🏾", + { + "keywords" : [ + "headscarf", + "hijab", + "mantilla", + "medium-dark skin tone", + "tichel", + "woman with headscarf", + "woman with headscarf: medium-dark skin tone" + ], + "value" : "🧕🏾" + }, "🧕🏿", + { + "value" : "🧕🏿", + "keywords" : [ + "dark skin tone", + "headscarf", + "hijab", + "mantilla", + "tichel", + "woman with headscarf", + "woman with headscarf: dark skin tone" + ] + }, "🤵", + { + "keywords" : [ + "formal", + "person", + "tuxedo", + "wedding" + ], + "value" : "🤵" + }, "🤵🏻", + { + "value" : "🤵🏻", + "keywords" : [ + "groom", + "light skin tone", + "person", + "person in tuxedo", + "person in tuxedo: light skin tone", + "tuxedo" + ] + }, "🤵🏼", + { + "keywords" : [ + "groom", + "medium-light skin tone", + "person", + "person in tuxedo", + "person in tuxedo: medium-light skin tone", + "tuxedo" + ], + "value" : "🤵🏼" + }, "🤵🏽", + { + "value" : "🤵🏽", + "keywords" : [ + "groom", + "medium skin tone", + "person", + "person in tuxedo", + "person in tuxedo: medium skin tone", + "tuxedo" + ] + }, "🤵🏾", + { + "keywords" : [ + "groom", + "medium-dark skin tone", + "person", + "person in tuxedo", + "person in tuxedo: medium-dark skin tone", + "tuxedo" + ], + "value" : "🤵🏾" + }, "🤵🏿", + { + "keywords" : [ + "dark skin tone", + "groom", + "person", + "person in tuxedo", + "person in tuxedo: dark skin tone", + "tuxedo" + ], + "value" : "🤵🏿" + }, "🤵‍♂️", + { + "keywords" : [ + "formal", + "groom", + "man", + "tuxedo", + "wedding" + ], + "value" : "🤵‍♂️" + }, "🤵🏻‍♂️", + { + "value" : "🤵🏻‍♂️", + "keywords" : [ + "light skin tone", + "man", + "man in tuxedo", + "man in tuxedo: light skin tone", + "tuxedo" + ] + }, "🤵🏼‍♂️", + { + "value" : "🤵🏼‍♂️", + "keywords" : [ + "man", + "man in tuxedo", + "man in tuxedo: medium-light skin tone", + "medium-light skin tone", + "tuxedo" + ] + }, "🤵🏽‍♂️", + { + "keywords" : [ + "man", + "man in tuxedo", + "man in tuxedo: medium skin tone", + "medium skin tone", + "tuxedo" + ], + "value" : "🤵🏽‍♂️" + }, "🤵🏾‍♂️", + { + "value" : "🤵🏾‍♂️", + "keywords" : [ + "man", + "man in tuxedo", + "man in tuxedo: medium-dark skin tone", + "medium-dark skin tone", + "tuxedo" + ] + }, "🤵🏿‍♂️", + { + "value" : "🤵🏿‍♂️", + "keywords" : [ + "dark skin tone", + "man", + "man in tuxedo", + "man in tuxedo: dark skin tone", + "tuxedo" + ] + }, "🤵‍♀️", + { + "keywords" : [ + "formal", + "tuxedo", + "wedding", + "woman" + ], + "value" : "🤵‍♀️" + }, "🤵🏻‍♀️", + { + "value" : "🤵🏻‍♀️", + "keywords" : [ + "light skin tone", + "tuxedo", + "woman", + "woman in tuxedo", + "woman in tuxedo: light skin tone" + ] + }, "🤵🏼‍♀️", + { + "value" : "🤵🏼‍♀️", + "keywords" : [ + "medium-light skin tone", + "tuxedo", + "woman", + "woman in tuxedo", + "woman in tuxedo: medium-light skin tone" + ] + }, "🤵🏽‍♀️", + { + "value" : "🤵🏽‍♀️", + "keywords" : [ + "medium skin tone", + "tuxedo", + "woman", + "woman in tuxedo", + "woman in tuxedo: medium skin tone" + ] + }, "🤵🏾‍♀️", + { + "value" : "🤵🏾‍♀️", + "keywords" : [ + "medium-dark skin tone", + "tuxedo", + "woman", + "woman in tuxedo", + "woman in tuxedo: medium-dark skin tone" + ] + }, "🤵🏿‍♀️", + { + "value" : "🤵🏿‍♀️", + "keywords" : [ + "dark skin tone", + "tuxedo", + "woman", + "woman in tuxedo", + "woman in tuxedo: dark skin tone" + ] + }, "👰", + { + "keywords" : [ + "person", + "veil", + "wedding" + ], + "value" : "👰" + }, "👰🏻", + { + "value" : "👰🏻", + "keywords" : [ + "bride", + "light skin tone", + "person", + "person with veil", + "person with veil: light skin tone", + "veil", + "wedding" + ] + }, "👰🏼", + { + "value" : "👰🏼", + "keywords" : [ + "bride", + "medium-light skin tone", + "person", + "person with veil", + "person with veil: medium-light skin tone", + "veil", + "wedding" + ] + }, "👰🏽", + { + "keywords" : [ + "bride", + "medium skin tone", + "person", + "person with veil", + "person with veil: medium skin tone", + "veil", + "wedding" + ], + "value" : "👰🏽" + }, "👰🏾", + { + "keywords" : [ + "bride", + "medium-dark skin tone", + "person", + "person with veil", + "person with veil: medium-dark skin tone", + "veil", + "wedding" + ], + "value" : "👰🏾" + }, "👰🏿", + { + "keywords" : [ + "bride", + "dark skin tone", + "person", + "person with veil", + "person with veil: dark skin tone", + "veil", + "wedding" + ], + "value" : "👰🏿" + }, "👰‍♂️", + { + "value" : "👰‍♂️", + "keywords" : [ + "man", + "veil", + "wedding" + ] + }, "👰🏻‍♂️", + { + "value" : "👰🏻‍♂️", + "keywords" : [ + "light skin tone", + "man", + "man with veil", + "man with veil: light skin tone", + "veil" + ] + }, "👰🏼‍♂️", + { + "keywords" : [ + "man", + "man with veil", + "man with veil: medium-light skin tone", + "medium-light skin tone", + "veil" + ], + "value" : "👰🏼‍♂️" + }, "👰🏽‍♂️", + { + "value" : "👰🏽‍♂️", + "keywords" : [ + "man", + "man with veil", + "man with veil: medium skin tone", + "medium skin tone", + "veil" + ] + }, "👰🏾‍♂️", + { + "value" : "👰🏾‍♂️", + "keywords" : [ + "man", + "man with veil", + "man with veil: medium-dark skin tone", + "medium-dark skin tone", + "veil" + ] + }, "👰🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "man", + "man with veil", + "man with veil: dark skin tone", + "veil" + ], + "value" : "👰🏿‍♂️" + }, "👰‍♀️", + { + "keywords" : [ + "bride", + "veil", + "wedding", + "woman" + ], + "value" : "👰‍♀️" + }, "👰🏻‍♀️", + { + "keywords" : [ + "light skin tone", + "veil", + "woman", + "woman with veil", + "woman with veil: light skin tone" + ], + "value" : "👰🏻‍♀️" + }, "👰🏼‍♀️", + { + "keywords" : [ + "medium-light skin tone", + "veil", + "woman", + "woman with veil", + "woman with veil: medium-light skin tone" + ], + "value" : "👰🏼‍♀️" + }, "👰🏽‍♀️", + { + "keywords" : [ + "medium skin tone", + "veil", + "woman", + "woman with veil", + "woman with veil: medium skin tone" + ], + "value" : "👰🏽‍♀️" + }, "👰🏾‍♀️", + { + "value" : "👰🏾‍♀️", + "keywords" : [ + "medium-dark skin tone", + "veil", + "woman", + "woman with veil", + "woman with veil: medium-dark skin tone" + ] + }, "👰🏿‍♀️", + { + "value" : "👰🏿‍♀️", + "keywords" : [ + "dark skin tone", + "veil", + "woman", + "woman with veil", + "woman with veil: dark skin tone" + ] + }, "🤰", + { + "value" : "🤰", + "keywords" : [ + "pregnant", + "woman" + ] + }, "🤰🏻", + { + "value" : "🤰🏻", + "keywords" : [ + "light skin tone", + "pregnant", + "pregnant woman: light skin tone", + "woman" + ] + }, "🤰🏼", + { + "value" : "🤰🏼", + "keywords" : [ + "medium-light skin tone", + "pregnant", + "pregnant woman: medium-light skin tone", + "woman" + ] + }, "🤰🏽", + { + "keywords" : [ + "medium skin tone", + "pregnant", + "pregnant woman: medium skin tone", + "woman" + ], + "value" : "🤰🏽" + }, "🤰🏾", + { + "value" : "🤰🏾", + "keywords" : [ + "medium-dark skin tone", + "pregnant", + "pregnant woman: medium-dark skin tone", + "woman" + ] + }, "🤰🏿", + { + "value" : "🤰🏿", + "keywords" : [ + "dark skin tone", + "pregnant", + "pregnant woman: dark skin tone", + "woman" + ] + }, "🫃", + { + "value" : "🫃", + "keywords" : [ + "belly", + "bloated", + "full", + "man", + "overeat", + "pregnant" + ] + }, "🫃🏻", + { + "value" : "🫃🏻", + "keywords" : [ + "belly", + "bloated", + "full", + "light skin tone", + "pregnant", + "pregnant man", + "pregnant man: light skin tone" + ] + }, "🫃🏼", + { + "keywords" : [ + "belly", + "bloated", + "full", + "medium-light skin tone", + "pregnant", + "pregnant man", + "pregnant man: medium-light skin tone" + ], + "value" : "🫃🏼" + }, "🫃🏽", + { + "value" : "🫃🏽", + "keywords" : [ + "belly", + "bloated", + "full", + "medium skin tone", + "pregnant", + "pregnant man", + "pregnant man: medium skin tone" + ] + }, "🫃🏾", + { + "keywords" : [ + "belly", + "bloated", + "full", + "medium-dark skin tone", + "pregnant", + "pregnant man", + "pregnant man: medium-dark skin tone" + ], + "value" : "🫃🏾" + }, "🫃🏿", + { + "keywords" : [ + "belly", + "bloated", + "dark skin tone", + "full", + "pregnant", + "pregnant man", + "pregnant man: dark skin tone" + ], + "value" : "🫃🏿" + }, "🫄", + { + "value" : "🫄", + "keywords" : [ + "belly", + "bloated", + "full", + "overeat", + "person", + "pregnant", + "stuffed" + ] + }, "🫄🏻", + { + "value" : "🫄🏻", + "keywords" : [ + "belly", + "bloated", + "full", + "light skin tone", + "pregnant", + "pregnant person", + "pregnant person: light skin tone" + ] + }, "🫄🏼", + { + "keywords" : [ + "belly", + "bloated", + "full", + "medium-light skin tone", + "pregnant", + "pregnant person", + "pregnant person: medium-light skin tone" + ], + "value" : "🫄🏼" + }, "🫄🏽", + { + "keywords" : [ + "belly", + "bloated", + "full", + "medium skin tone", + "pregnant", + "pregnant person", + "pregnant person: medium skin tone" + ], + "value" : "🫄🏽" + }, "🫄🏾", + { + "keywords" : [ + "belly", + "bloated", + "full", + "medium-dark skin tone", + "pregnant", + "pregnant person", + "pregnant person: medium-dark skin tone" + ], + "value" : "🫄🏾" + }, "🫄🏿", + { + "value" : "🫄🏿", + "keywords" : [ + "belly", + "bloated", + "dark skin tone", + "full", + "pregnant", + "pregnant person", + "pregnant person: dark skin tone" + ] + }, "🤱", + { + "value" : "🤱", + "keywords" : [ + "baby", + "breast", + "breast-feeding", + "feeding", + "mom", + "mother", + "nursing", + "woman" + ] + }, "🤱🏻", + { + "value" : "🤱🏻", + "keywords" : [ + "baby", + "breast", + "breast-feeding", + "breast-feeding: light skin tone", + "light skin tone", + "nursing" + ] + }, "🤱🏼", + { + "value" : "🤱🏼", + "keywords" : [ + "baby", + "breast", + "breast-feeding", + "breast-feeding: medium-light skin tone", + "medium-light skin tone", + "nursing" + ] + }, "🤱🏽", + { + "value" : "🤱🏽", + "keywords" : [ + "baby", + "breast", + "breast-feeding", + "breast-feeding: medium skin tone", + "medium skin tone", + "nursing" + ] + }, "🤱🏾", + { + "value" : "🤱🏾", + "keywords" : [ + "baby", + "breast", + "breast-feeding", + "breast-feeding: medium-dark skin tone", + "medium-dark skin tone", + "nursing" + ] + }, "🤱🏿", + { + "value" : "🤱🏿", + "keywords" : [ + "baby", + "breast", + "breast-feeding", + "breast-feeding: dark skin tone", + "dark skin tone", + "nursing" + ] + }, "👩‍🍼", + { + "keywords" : [ + "baby", + "feed", + "feeding", + "mom", + "mother", + "nanny", + "newborn", + "nursing", + "woman" + ], + "value" : "👩‍🍼" + }, "👩🏻‍🍼", + { + "keywords" : [ + "baby", + "feeding", + "light skin tone", + "nursing", + "woman", + "woman feeding baby: light skin tone" + ], + "value" : "👩🏻‍🍼" + }, "👩🏼‍🍼", + { + "value" : "👩🏼‍🍼", + "keywords" : [ + "baby", + "feeding", + "medium-light skin tone", + "nursing", + "woman", + "woman feeding baby: medium-light skin tone" + ] + }, "👩🏽‍🍼", + { + "value" : "👩🏽‍🍼", + "keywords" : [ + "baby", + "feeding", + "medium skin tone", + "nursing", + "woman", + "woman feeding baby: medium skin tone" + ] + }, "👩🏾‍🍼", + { + "value" : "👩🏾‍🍼", + "keywords" : [ + "baby", + "feeding", + "medium-dark skin tone", + "nursing", + "woman", + "woman feeding baby: medium-dark skin tone" + ] + }, "👩🏿‍🍼", + { + "value" : "👩🏿‍🍼", + "keywords" : [ + "baby", + "dark skin tone", + "feeding", + "nursing", + "woman", + "woman feeding baby: dark skin tone" + ] + }, "👨‍🍼", + { + "keywords" : [ + "baby", + "dad", + "father", + "feed", + "feeding", + "man", + "nanny", + "newborn", + "nursing" + ], + "value" : "👨‍🍼" + }, "👨🏻‍🍼", + { + "value" : "👨🏻‍🍼", + "keywords" : [ + "baby", + "feeding", + "light skin tone", + "man", + "man feeding baby: light skin tone", + "nursing" + ] + }, "👨🏼‍🍼", + { + "value" : "👨🏼‍🍼", + "keywords" : [ + "baby", + "feeding", + "man", + "man feeding baby: medium-light skin tone", + "medium-light skin tone", + "nursing" + ] + }, "👨🏽‍🍼", + { + "value" : "👨🏽‍🍼", + "keywords" : [ + "baby", + "feeding", + "man", + "man feeding baby: medium skin tone", + "medium skin tone", + "nursing" + ] + }, "👨🏾‍🍼", + { + "value" : "👨🏾‍🍼", + "keywords" : [ + "baby", + "feeding", + "man", + "man feeding baby: medium-dark skin tone", + "medium-dark skin tone", + "nursing" + ] + }, "👨🏿‍🍼", + { + "keywords" : [ + "baby", + "dark skin tone", + "feeding", + "man", + "man feeding baby: dark skin tone", + "nursing" + ], + "value" : "👨🏿‍🍼" + }, "🧑‍🍼", + { + "keywords" : [ + "baby", + "feed", + "feeding", + "nanny", + "newborn", + "nursing", + "parent" + ], + "value" : "🧑‍🍼" + }, "🧑🏻‍🍼", + { + "keywords" : [ + "baby", + "feeding", + "light skin tone", + "nursing", + "person", + "person feeding baby: light skin tone" + ], + "value" : "🧑🏻‍🍼" + }, "🧑🏼‍🍼", + { + "value" : "🧑🏼‍🍼", + "keywords" : [ + "baby", + "feeding", + "medium-light skin tone", + "nursing", + "person", + "person feeding baby: medium-light skin tone" + ] + }, "🧑🏽‍🍼", + { + "value" : "🧑🏽‍🍼", + "keywords" : [ + "baby", + "feeding", + "medium skin tone", + "nursing", + "person", + "person feeding baby: medium skin tone" + ] + }, "🧑🏾‍🍼", + { + "keywords" : [ + "baby", + "feeding", + "medium-dark skin tone", + "nursing", + "person", + "person feeding baby: medium-dark skin tone" + ], + "value" : "🧑🏾‍🍼" + }, "🧑🏿‍🍼", + { + "value" : "🧑🏿‍🍼", + "keywords" : [ + "baby", + "dark skin tone", + "feeding", + "nursing", + "person", + "person feeding baby: dark skin tone" + ] + }, "👼", + { + "value" : "👼", + "keywords" : [ + "angel", + "baby", + "church", + "face", + "fairy", + "fairytale", + "fantasy", + "tale" + ] + }, "👼🏻", + { + "value" : "👼🏻", + "keywords" : [ + "angel", + "baby", + "baby angel: light skin tone", + "face", + "fairy tale", + "fantasy", + "light skin tone" + ] + }, "👼🏼", + { + "keywords" : [ + "angel", + "baby", + "baby angel: medium-light skin tone", + "face", + "fairy tale", + "fantasy", + "medium-light skin tone" + ], + "value" : "👼🏼" + }, "👼🏽", + { + "value" : "👼🏽", + "keywords" : [ + "angel", + "baby", + "baby angel: medium skin tone", + "face", + "fairy tale", + "fantasy", + "medium skin tone" + ] + }, "👼🏾", + { + "value" : "👼🏾", + "keywords" : [ + "angel", + "baby", + "baby angel: medium-dark skin tone", + "face", + "fairy tale", + "fantasy", + "medium-dark skin tone" + ] + }, "👼🏿", + { + "value" : "👼🏿", + "keywords" : [ + "angel", + "baby", + "baby angel: dark skin tone", + "dark skin tone", + "face", + "fairy tale", + "fantasy" + ] + }, "🎅", + { + "keywords" : [ + "celebration", + "Christmas", + "claus", + "fairy", + "fantasy", + "father", + "holiday", + "merry", + "santa", + "tale", + "xmas" + ], + "value" : "🎅" + }, "🎅🏻", + { + "value" : "🎅🏻", + "keywords" : [ + "celebration", + "Christmas", + "claus", + "father", + "light skin tone", + "santa", + "Santa Claus: light skin tone" + ] + }, "🎅🏼", + { + "value" : "🎅🏼", + "keywords" : [ + "celebration", + "Christmas", + "claus", + "father", + "medium-light skin tone", + "santa", + "Santa Claus: medium-light skin tone" + ] + }, "🎅🏽", + { + "value" : "🎅🏽", + "keywords" : [ + "celebration", + "Christmas", + "claus", + "father", + "medium skin tone", + "santa", + "Santa Claus: medium skin tone" + ] + }, "🎅🏾", + { + "value" : "🎅🏾", + "keywords" : [ + "celebration", + "Christmas", + "claus", + "father", + "medium-dark skin tone", + "santa", + "Santa Claus: medium-dark skin tone" + ] + }, "🎅🏿", + { + "value" : "🎅🏿", + "keywords" : [ + "celebration", + "Christmas", + "claus", + "dark skin tone", + "father", + "santa", + "Santa Claus: dark skin tone" + ] + }, "🤶", + { + "value" : "🤶", + "keywords" : [ + "celebration", + "Christmas", + "claus", + "fairy", + "fantasy", + "holiday", + "merry", + "mother", + "Mrs", + "santa", + "tale", + "xmas" + ] + }, "🤶🏻", + { + "keywords" : [ + "celebration", + "Christmas", + "claus", + "light skin tone", + "mother", + "Mrs.", + "Mrs. Claus: light skin tone" + ], + "value" : "🤶🏻" + }, "🤶🏼", + { + "value" : "🤶🏼", + "keywords" : [ + "celebration", + "Christmas", + "claus", + "medium-light skin tone", + "mother", + "Mrs.", + "Mrs. Claus: medium-light skin tone" + ] + }, "🤶🏽", + { + "value" : "🤶🏽", + "keywords" : [ + "celebration", + "Christmas", + "claus", + "medium skin tone", + "mother", + "Mrs.", + "Mrs. Claus: medium skin tone" + ] + }, "🤶🏾", + { + "keywords" : [ + "celebration", + "Christmas", + "claus", + "medium-dark skin tone", + "mother", + "Mrs.", + "Mrs. Claus: medium-dark skin tone" + ], + "value" : "🤶🏾" + }, "🤶🏿", + { + "keywords" : [ + "celebration", + "Christmas", + "claus", + "dark skin tone", + "mother", + "Mrs.", + "Mrs. Claus: dark skin tone" + ], + "value" : "🤶🏿" + }, "🧑‍🎄", + { + "value" : "🧑‍🎄", + "keywords" : [ + "celebration", + "Christmas", + "claus", + "fairy", + "fantasy", + "holiday", + "merry", + "Mx", + "santa", + "tale", + "xmas" + ] + }, "🧑🏻‍🎄", + { + "keywords" : [ + "christmas", + "claus", + "light skin tone", + "mx claus", + "mx claus: light skin tone" + ], + "value" : "🧑🏻‍🎄" + }, "🧑🏼‍🎄", + { + "keywords" : [ + "christmas", + "claus", + "medium-light skin tone", + "mx claus", + "mx claus: medium-light skin tone" + ], + "value" : "🧑🏼‍🎄" + }, "🧑🏽‍🎄", + { + "value" : "🧑🏽‍🎄", + "keywords" : [ + "christmas", + "claus", + "medium skin tone", + "mx claus", + "mx claus: medium skin tone" + ] + }, "🧑🏾‍🎄", + { + "value" : "🧑🏾‍🎄", + "keywords" : [ + "christmas", + "claus", + "medium-dark skin tone", + "mx claus", + "mx claus: medium-dark skin tone" + ] + }, "🧑🏿‍🎄", + { + "value" : "🧑🏿‍🎄", + "keywords" : [ + "christmas", + "claus", + "dark skin tone", + "mx claus", + "mx claus: dark skin tone" + ] + }, "🦸", + { + "value" : "🦸", + "keywords" : [ + "good", + "hero", + "superhero", + "superpower" + ] + }, "🦸🏻", + { + "keywords" : [ + "good", + "hero", + "heroine", + "light skin tone", + "superhero", + "superhero: light skin tone", + "superpower" + ], + "value" : "🦸🏻" + }, "🦸🏼", + { + "value" : "🦸🏼", + "keywords" : [ + "good", + "hero", + "heroine", + "medium-light skin tone", + "superhero", + "superhero: medium-light skin tone", + "superpower" + ] + }, "🦸🏽", + { + "value" : "🦸🏽", + "keywords" : [ + "good", + "hero", + "heroine", + "medium skin tone", + "superhero", + "superhero: medium skin tone", + "superpower" + ] + }, "🦸🏾", + { + "value" : "🦸🏾", + "keywords" : [ + "good", + "hero", + "heroine", + "medium-dark skin tone", + "superhero", + "superhero: medium-dark skin tone", + "superpower" + ] + }, "🦸🏿", + { + "value" : "🦸🏿", + "keywords" : [ + "dark skin tone", + "good", + "hero", + "heroine", + "superhero", + "superhero: dark skin tone", + "superpower" + ] + }, "🦸‍♂️", + { + "keywords" : [ + "good", + "hero", + "man", + "superhero", + "superpower" + ], + "value" : "🦸‍♂️" + }, "🦸🏻‍♂️", + { + "value" : "🦸🏻‍♂️", + "keywords" : [ + "good", + "hero", + "light skin tone", + "man", + "man superhero", + "man superhero: light skin tone", + "superpower" + ] + }, "🦸🏼‍♂️", + { + "value" : "🦸🏼‍♂️", + "keywords" : [ + "good", + "hero", + "man", + "man superhero", + "man superhero: medium-light skin tone", + "medium-light skin tone", + "superpower" + ] + }, "🦸🏽‍♂️", + { + "keywords" : [ + "good", + "hero", + "man", + "man superhero", + "man superhero: medium skin tone", + "medium skin tone", + "superpower" + ], + "value" : "🦸🏽‍♂️" + }, "🦸🏾‍♂️", + { + "keywords" : [ + "good", + "hero", + "man", + "man superhero", + "man superhero: medium-dark skin tone", + "medium-dark skin tone", + "superpower" + ], + "value" : "🦸🏾‍♂️" + }, "🦸🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "good", + "hero", + "man", + "man superhero", + "man superhero: dark skin tone", + "superpower" + ], + "value" : "🦸🏿‍♂️" + }, "🦸‍♀️", + { + "value" : "🦸‍♀️", + "keywords" : [ + "good", + "hero", + "heroine", + "superhero", + "superpower", + "woman" + ] + }, "🦸🏻‍♀️", + { + "value" : "🦸🏻‍♀️", + "keywords" : [ + "good", + "hero", + "heroine", + "light skin tone", + "superpower", + "woman", + "woman superhero", + "woman superhero: light skin tone" + ] + }, "🦸🏼‍♀️", + { + "keywords" : [ + "good", + "hero", + "heroine", + "medium-light skin tone", + "superpower", + "woman", + "woman superhero", + "woman superhero: medium-light skin tone" + ], + "value" : "🦸🏼‍♀️" + }, "🦸🏽‍♀️", + { + "keywords" : [ + "good", + "hero", + "heroine", + "medium skin tone", + "superpower", + "woman", + "woman superhero", + "woman superhero: medium skin tone" + ], + "value" : "🦸🏽‍♀️" + }, "🦸🏾‍♀️", + { + "value" : "🦸🏾‍♀️", + "keywords" : [ + "good", + "hero", + "heroine", + "medium-dark skin tone", + "superpower", + "woman", + "woman superhero", + "woman superhero: medium-dark skin tone" + ] + }, "🦸🏿‍♀️", + { + "value" : "🦸🏿‍♀️", + "keywords" : [ + "dark skin tone", + "good", + "hero", + "heroine", + "superpower", + "woman", + "woman superhero", + "woman superhero: dark skin tone" + ] + }, "🦹", + { + "value" : "🦹", + "keywords" : [ + "bad", + "criminal", + "evil", + "superpower", + "supervillain", + "villain" + ] + }, "🦹🏻", + { + "keywords" : [ + "criminal", + "evil", + "light skin tone", + "superpower", + "supervillain", + "supervillain: light skin tone", + "villain" + ], + "value" : "🦹🏻" + }, "🦹🏼", + { + "value" : "🦹🏼", + "keywords" : [ + "criminal", + "evil", + "medium-light skin tone", + "superpower", + "supervillain", + "supervillain: medium-light skin tone", + "villain" + ] + }, "🦹🏽", + { + "keywords" : [ + "criminal", + "evil", + "medium skin tone", + "superpower", + "supervillain", + "supervillain: medium skin tone", + "villain" + ], + "value" : "🦹🏽" + }, "🦹🏾", + { + "keywords" : [ + "criminal", + "evil", + "medium-dark skin tone", + "superpower", + "supervillain", + "supervillain: medium-dark skin tone", + "villain" + ], + "value" : "🦹🏾" + }, "🦹🏿", + { + "value" : "🦹🏿", + "keywords" : [ + "criminal", + "dark skin tone", + "evil", + "superpower", + "supervillain", + "supervillain: dark skin tone", + "villain" + ] + }, "🦹‍♂️", + { + "value" : "🦹‍♂️", + "keywords" : [ + "bad", + "criminal", + "evil", + "man", + "superpower", + "supervillain", + "villain" + ] + }, "🦹🏻‍♂️", + { + "value" : "🦹🏻‍♂️", + "keywords" : [ + "criminal", + "evil", + "light skin tone", + "man", + "man supervillain", + "man supervillain: light skin tone", + "superpower", + "villain" + ] + }, "🦹🏼‍♂️", + { + "value" : "🦹🏼‍♂️", + "keywords" : [ + "criminal", + "evil", + "man", + "man supervillain", + "man supervillain: medium-light skin tone", + "medium-light skin tone", + "superpower", + "villain" + ] + }, "🦹🏽‍♂️", + { + "keywords" : [ + "criminal", + "evil", + "man", + "man supervillain", + "man supervillain: medium skin tone", + "medium skin tone", + "superpower", + "villain" + ], + "value" : "🦹🏽‍♂️" + }, "🦹🏾‍♂️", + { + "value" : "🦹🏾‍♂️", + "keywords" : [ + "criminal", + "evil", + "man", + "man supervillain", + "man supervillain: medium-dark skin tone", + "medium-dark skin tone", + "superpower", + "villain" + ] + }, "🦹🏿‍♂️", + { + "keywords" : [ + "criminal", + "dark skin tone", + "evil", + "man", + "man supervillain", + "man supervillain: dark skin tone", + "superpower", + "villain" + ], + "value" : "🦹🏿‍♂️" + }, "🦹‍♀️", + { + "value" : "🦹‍♀️", + "keywords" : [ + "bad", + "criminal", + "evil", + "superpower", + "supervillain", + "villain", + "woman" + ] + }, "🦹🏻‍♀️", + { + "keywords" : [ + "criminal", + "evil", + "light skin tone", + "superpower", + "villain", + "woman", + "woman supervillain", + "woman supervillain: light skin tone" + ], + "value" : "🦹🏻‍♀️" + }, "🦹🏼‍♀️", + { + "value" : "🦹🏼‍♀️", + "keywords" : [ + "criminal", + "evil", + "medium-light skin tone", + "superpower", + "villain", + "woman", + "woman supervillain", + "woman supervillain: medium-light skin tone" + ] + }, "🦹🏽‍♀️", + { + "value" : "🦹🏽‍♀️", + "keywords" : [ + "criminal", + "evil", + "medium skin tone", + "superpower", + "villain", + "woman", + "woman supervillain", + "woman supervillain: medium skin tone" + ] + }, "🦹🏾‍♀️", + { + "value" : "🦹🏾‍♀️", + "keywords" : [ + "criminal", + "evil", + "medium-dark skin tone", + "superpower", + "villain", + "woman", + "woman supervillain", + "woman supervillain: medium-dark skin tone" + ] + }, "🦹🏿‍♀️", + { + "value" : "🦹🏿‍♀️", + "keywords" : [ + "criminal", + "dark skin tone", + "evil", + "superpower", + "villain", + "woman", + "woman supervillain", + "woman supervillain: dark skin tone" + ] + }, "🧙", + { + "keywords" : [ + "fantasy", + "mage", + "magic", + "play", + "sorcerer", + "sorceress", + "sorcery", + "spell", + "summon", + "witch", + "wizard" + ], + "value" : "🧙" + }, "🧙🏻", + { + "value" : "🧙🏻", + "keywords" : [ + "light skin tone", + "mage", + "mage: light skin tone", + "sorcerer", + "sorceress", + "witch", + "wizard" + ] + }, "🧙🏼", + { + "value" : "🧙🏼", + "keywords" : [ + "mage", + "mage: medium-light skin tone", + "medium-light skin tone", + "sorcerer", + "sorceress", + "witch", + "wizard" + ] + }, "🧙🏽", + { + "keywords" : [ + "mage", + "mage: medium skin tone", + "medium skin tone", + "sorcerer", + "sorceress", + "witch", + "wizard" + ], + "value" : "🧙🏽" + }, "🧙🏾", + { + "value" : "🧙🏾", + "keywords" : [ + "mage", + "mage: medium-dark skin tone", + "medium-dark skin tone", + "sorcerer", + "sorceress", + "witch", + "wizard" + ] + }, "🧙🏿", + { + "value" : "🧙🏿", + "keywords" : [ + "dark skin tone", + "mage", + "mage: dark skin tone", + "sorcerer", + "sorceress", + "witch", + "wizard" + ] + }, "🧙‍♂️", + { + "value" : "🧙‍♂️", + "keywords" : [ + "fantasy", + "mage", + "magic", + "man", + "play", + "sorcerer", + "sorceress", + "sorcery", + "spell", + "summon", + "witch", + "wizard" + ] + }, "🧙🏻‍♂️", + { + "keywords" : [ + "light skin tone", + "man mage", + "man mage: light skin tone", + "sorcerer", + "wizard" + ], + "value" : "🧙🏻‍♂️" + }, "🧙🏼‍♂️", + { + "keywords" : [ + "man mage", + "man mage: medium-light skin tone", + "medium-light skin tone", + "sorcerer", + "wizard" + ], + "value" : "🧙🏼‍♂️" + }, "🧙🏽‍♂️", + { + "value" : "🧙🏽‍♂️", + "keywords" : [ + "man mage", + "man mage: medium skin tone", + "medium skin tone", + "sorcerer", + "wizard" + ] + }, "🧙🏾‍♂️", + { + "value" : "🧙🏾‍♂️", + "keywords" : [ + "man mage", + "man mage: medium-dark skin tone", + "medium-dark skin tone", + "sorcerer", + "wizard" + ] + }, "🧙🏿‍♂️", + { + "value" : "🧙🏿‍♂️", + "keywords" : [ + "dark skin tone", + "man mage", + "man mage: dark skin tone", + "sorcerer", + "wizard" + ] + }, "🧙‍♀️", + { + "value" : "🧙‍♀️", + "keywords" : [ + "fantasy", + "mage", + "magic", + "play", + "sorcerer", + "sorceress", + "sorcery", + "spell", + "summon", + "witch", + "wizard", + "woman" + ] + }, "🧙🏻‍♀️", + { + "value" : "🧙🏻‍♀️", + "keywords" : [ + "light skin tone", + "sorceress", + "witch", + "woman mage", + "woman mage: light skin tone" + ] + }, "🧙🏼‍♀️", + { + "keywords" : [ + "medium-light skin tone", + "sorceress", + "witch", + "woman mage", + "woman mage: medium-light skin tone" + ], + "value" : "🧙🏼‍♀️" + }, "🧙🏽‍♀️", + { + "value" : "🧙🏽‍♀️", + "keywords" : [ + "medium skin tone", + "sorceress", + "witch", + "woman mage", + "woman mage: medium skin tone" + ] + }, "🧙🏾‍♀️", + { + "keywords" : [ + "medium-dark skin tone", + "sorceress", + "witch", + "woman mage", + "woman mage: medium-dark skin tone" + ], + "value" : "🧙🏾‍♀️" + }, "🧙🏿‍♀️", + { + "value" : "🧙🏿‍♀️", + "keywords" : [ + "dark skin tone", + "sorceress", + "witch", + "woman mage", + "woman mage: dark skin tone" + ] + }, "🧚", + { + "value" : "🧚", + "keywords" : [ + "fairy", + "fairytale", + "fantasy", + "myth", + "person", + "pixie", + "tale", + "wings" + ] + }, "🧚🏻", + { + "value" : "🧚🏻", + "keywords" : [ + "fairy", + "fairy: light skin tone", + "light skin tone", + "Oberon", + "Puck", + "Titania" + ] + }, "🧚🏼", + { + "keywords" : [ + "fairy", + "fairy: medium-light skin tone", + "medium-light skin tone", + "Oberon", + "Puck", + "Titania" + ], + "value" : "🧚🏼" + }, "🧚🏽", + { + "value" : "🧚🏽", + "keywords" : [ + "fairy", + "fairy: medium skin tone", + "medium skin tone", + "Oberon", + "Puck", + "Titania" + ] + }, "🧚🏾", + { + "value" : "🧚🏾", + "keywords" : [ + "fairy", + "fairy: medium-dark skin tone", + "medium-dark skin tone", + "Oberon", + "Puck", + "Titania" + ] + }, "🧚🏿", + { + "keywords" : [ + "dark skin tone", + "fairy", + "fairy: dark skin tone", + "Oberon", + "Puck", + "Titania" + ], + "value" : "🧚🏿" + }, "🧚‍♂️", + { + "keywords" : [ + "fairy", + "fairytale", + "fantasy", + "man", + "myth", + "Oberon", + "person", + "pixie", + "Puck", + "tale", + "wings" + ], + "value" : "🧚‍♂️" + }, "🧚🏻‍♂️", + { + "keywords" : [ + "light skin tone", + "man fairy", + "man fairy: light skin tone", + "Oberon", + "Puck" + ], + "value" : "🧚🏻‍♂️" + }, "🧚🏼‍♂️", + { + "value" : "🧚🏼‍♂️", + "keywords" : [ + "man fairy", + "man fairy: medium-light skin tone", + "medium-light skin tone", + "Oberon", + "Puck" + ] + }, "🧚🏽‍♂️", + { + "keywords" : [ + "man fairy", + "man fairy: medium skin tone", + "medium skin tone", + "Oberon", + "Puck" + ], + "value" : "🧚🏽‍♂️" + }, "🧚🏾‍♂️", + { + "value" : "🧚🏾‍♂️", + "keywords" : [ + "man fairy", + "man fairy: medium-dark skin tone", + "medium-dark skin tone", + "Oberon", + "Puck" + ] + }, "🧚🏿‍♂️", + { + "value" : "🧚🏿‍♂️", + "keywords" : [ + "dark skin tone", + "man fairy", + "man fairy: dark skin tone", + "Oberon", + "Puck" + ] + }, "🧚‍♀️", + { + "value" : "🧚‍♀️", + "keywords" : [ + "fairy", + "fairytale", + "fantasy", + "myth", + "person", + "pixie", + "tale", + "Titania", + "wings", + "woman" + ] + }, "🧚🏻‍♀️", + { + "keywords" : [ + "light skin tone", + "Titania", + "woman fairy", + "woman fairy: light skin tone" + ], + "value" : "🧚🏻‍♀️" + }, "🧚🏼‍♀️", + { + "value" : "🧚🏼‍♀️", + "keywords" : [ + "medium-light skin tone", + "Titania", + "woman fairy", + "woman fairy: medium-light skin tone" + ] + }, "🧚🏽‍♀️", + { + "keywords" : [ + "medium skin tone", + "Titania", + "woman fairy", + "woman fairy: medium skin tone" + ], + "value" : "🧚🏽‍♀️" + }, "🧚🏾‍♀️", + { + "keywords" : [ + "medium-dark skin tone", + "Titania", + "woman fairy", + "woman fairy: medium-dark skin tone" + ], + "value" : "🧚🏾‍♀️" + }, "🧚🏿‍♀️", + { + "keywords" : [ + "dark skin tone", + "Titania", + "woman fairy", + "woman fairy: dark skin tone" + ], + "value" : "🧚🏿‍♀️" + }, "🧛", + { + "keywords" : [ + "blood", + "fangs", + "halloween", + "scary", + "supernatural", + "teeth", + "undead", + "vampire", + "Dracula" + ], + "value" : "🧛" + }, "🧛🏻", + { + "keywords" : [ + "Dracula", + "light skin tone", + "undead", + "vampire", + "vampire: light skin tone" + ], + "value" : "🧛🏻" + }, "🧛🏼", + { + "value" : "🧛🏼", + "keywords" : [ + "Dracula", + "medium-light skin tone", + "undead", + "vampire", + "vampire: medium-light skin tone" + ] + }, "🧛🏽", + { + "value" : "🧛🏽", + "keywords" : [ + "Dracula", + "medium skin tone", + "undead", + "vampire", + "vampire: medium skin tone" + ] + }, "🧛🏾", + { + "keywords" : [ + "Dracula", + "medium-dark skin tone", + "undead", + "vampire", + "vampire: medium-dark skin tone" + ], + "value" : "🧛🏾" + }, "🧛🏿", + { + "keywords" : [ + "dark skin tone", + "Dracula", + "undead", + "vampire", + "vampire: dark skin tone" + ], + "value" : "🧛🏿" + }, "🧛‍♂️", + { + "keywords" : [ + "blood", + "fangs", + "halloween", + "man", + "scary", + "supernatural", + "teeth", + "undead", + "vampire" + ], + "value" : "🧛‍♂️" + }, "🧛🏻‍♂️", + { + "keywords" : [ + "Dracula", + "light skin tone", + "man vampire", + "man vampire: light skin tone", + "undead" + ], + "value" : "🧛🏻‍♂️" + }, "🧛🏼‍♂️", + { + "value" : "🧛🏼‍♂️", + "keywords" : [ + "Dracula", + "man vampire", + "man vampire: medium-light skin tone", + "medium-light skin tone", + "undead" + ] + }, "🧛🏽‍♂️", + { + "keywords" : [ + "Dracula", + "man vampire", + "man vampire: medium skin tone", + "medium skin tone", + "undead" + ], + "value" : "🧛🏽‍♂️" + }, "🧛🏾‍♂️", + { + "value" : "🧛🏾‍♂️", + "keywords" : [ + "Dracula", + "man vampire", + "man vampire: medium-dark skin tone", + "medium-dark skin tone", + "undead" + ] + }, "🧛🏿‍♂️", + { + "value" : "🧛🏿‍♂️", + "keywords" : [ + "dark skin tone", + "Dracula", + "man vampire", + "man vampire: dark skin tone", + "undead" + ] + }, "🧛‍♀️", + { + "value" : "🧛‍♀️", + "keywords" : [ + "blood", + "fangs", + "halloween", + "scary", + "supernatural", + "teeth", + "undead", + "vampire", + "woman" + ] + }, "🧛🏻‍♀️", + { + "value" : "🧛🏻‍♀️", + "keywords" : [ + "light skin tone", + "undead", + "woman vampire", + "woman vampire: light skin tone" + ] + }, "🧛🏼‍♀️", + { + "keywords" : [ + "medium-light skin tone", + "undead", + "woman vampire", + "woman vampire: medium-light skin tone" + ], + "value" : "🧛🏼‍♀️" + }, "🧛🏽‍♀️", + { + "keywords" : [ + "medium skin tone", + "undead", + "woman vampire", + "woman vampire: medium skin tone" + ], + "value" : "🧛🏽‍♀️" + }, "🧛🏾‍♀️", + { + "keywords" : [ + "medium-dark skin tone", + "undead", + "woman vampire", + "woman vampire: medium-dark skin tone" + ], + "value" : "🧛🏾‍♀️" + }, "🧛🏿‍♀️", + { + "value" : "🧛🏿‍♀️", + "keywords" : [ + "dark skin tone", + "undead", + "woman vampire", + "woman vampire: dark skin tone" + ] + }, "🧜", + { + "keywords" : [ + "creature", + "fairytale", + "folklore", + "merperson", + "ocean", + "sea", + "siren", + "trident" + ], + "value" : "🧜" + }, "🧜🏻", + { + "value" : "🧜🏻", + "keywords" : [ + "light skin tone", + "mermaid", + "merman", + "merperson", + "merperson: light skin tone", + "merwoman" + ] + }, "🧜🏼", + { + "keywords" : [ + "medium-light skin tone", + "mermaid", + "merman", + "merperson", + "merperson: medium-light skin tone", + "merwoman" + ], + "value" : "🧜🏼" + }, "🧜🏽", + { + "keywords" : [ + "medium skin tone", + "mermaid", + "merman", + "merperson", + "merperson: medium skin tone", + "merwoman" + ], + "value" : "🧜🏽" + }, "🧜🏾", + { + "value" : "🧜🏾", + "keywords" : [ + "medium-dark skin tone", + "mermaid", + "merman", + "merperson", + "merperson: medium-dark skin tone", + "merwoman" + ] + }, "🧜🏿", + { + "value" : "🧜🏿", + "keywords" : [ + "dark skin tone", + "mermaid", + "merman", + "merperson", + "merperson: dark skin tone", + "merwoman" + ] + }, "🧜‍♂️", + { + "keywords" : [ + "creature", + "fairytale", + "folklore", + "merman", + "Neptune", + "ocean", + "Poseidon", + "sea", + "siren", + "trident", + "Triton" + ], + "value" : "🧜‍♂️" + }, "🧜🏻‍♂️", + { + "keywords" : [ + "light skin tone", + "merman", + "merman: light skin tone", + "Triton" + ], + "value" : "🧜🏻‍♂️" + }, "🧜🏼‍♂️", + { + "keywords" : [ + "medium-light skin tone", + "merman", + "merman: medium-light skin tone", + "Triton" + ], + "value" : "🧜🏼‍♂️" + }, "🧜🏽‍♂️", + { + "value" : "🧜🏽‍♂️", + "keywords" : [ + "medium skin tone", + "merman", + "merman: medium skin tone", + "Triton" + ] + }, "🧜🏾‍♂️", + { + "value" : "🧜🏾‍♂️", + "keywords" : [ + "medium-dark skin tone", + "merman", + "merman: medium-dark skin tone", + "Triton" + ] + }, "🧜🏿‍♂️", + { + "value" : "🧜🏿‍♂️", + "keywords" : [ + "dark skin tone", + "merman", + "merman: dark skin tone", + "Triton" + ] + }, "🧜‍♀️", + { + "value" : "🧜‍♀️", + "keywords" : [ + "creature", + "fairytale", + "folklore", + "mermaid", + "merwoman", + "ocean", + "sea", + "siren", + "trident" + ] + }, "🧜🏻‍♀️", + { + "keywords" : [ + "light skin tone", + "mermaid", + "mermaid: light skin tone", + "merwoman" + ], + "value" : "🧜🏻‍♀️" + }, "🧜🏼‍♀️", + { + "keywords" : [ + "medium-light skin tone", + "mermaid", + "mermaid: medium-light skin tone", + "merwoman" + ], + "value" : "🧜🏼‍♀️" + }, "🧜🏽‍♀️", + { + "value" : "🧜🏽‍♀️", + "keywords" : [ + "medium skin tone", + "mermaid", + "mermaid: medium skin tone", + "merwoman" + ] + }, "🧜🏾‍♀️", + { + "value" : "🧜🏾‍♀️", + "keywords" : [ + "medium-dark skin tone", + "mermaid", + "mermaid: medium-dark skin tone", + "merwoman" + ] + }, "🧜🏿‍♀️", + { + "value" : "🧜🏿‍♀️", + "keywords" : [ + "dark skin tone", + "mermaid", + "mermaid: dark skin tone", + "merwoman" + ] + }, "🧝", + { + "value" : "🧝", + "keywords" : [ + "elf", + "elves", + "enchantment", + "fantasy", + "folklore", + "magic", + "magical", + "myth" + ] + }, "🧝🏻", + { + "keywords" : [ + "elf", + "elf: light skin tone", + "light skin tone", + "magical" + ], + "value" : "🧝🏻" + }, "🧝🏼", + { + "value" : "🧝🏼", + "keywords" : [ + "elf", + "elf: medium-light skin tone", + "magical", + "medium-light skin tone" + ] + }, "🧝🏽", + { + "value" : "🧝🏽", + "keywords" : [ + "elf", + "elf: medium skin tone", + "magical", + "medium skin tone" + ] + }, "🧝🏾", + { + "keywords" : [ + "elf", + "elf: medium-dark skin tone", + "magical", + "medium-dark skin tone" + ], + "value" : "🧝🏾" + }, "🧝🏿", + { + "value" : "🧝🏿", + "keywords" : [ + "dark skin tone", + "elf", + "elf: dark skin tone", + "magical" + ] + }, "🧝‍♂️", + { + "value" : "🧝‍♂️", + "keywords" : [ + "elf", + "elves", + "enchantment", + "fantasy", + "folklore", + "magic", + "magical", + "man", + "myth" + ] + }, "🧝🏻‍♂️", + { + "value" : "🧝🏻‍♂️", + "keywords" : [ + "light skin tone", + "magical", + "man elf", + "man elf: light skin tone" + ] + }, "🧝🏼‍♂️", + { + "keywords" : [ + "magical", + "man elf", + "man elf: medium-light skin tone", + "medium-light skin tone" + ], + "value" : "🧝🏼‍♂️" + }, "🧝🏽‍♂️", + { + "keywords" : [ + "magical", + "man elf", + "man elf: medium skin tone", + "medium skin tone" + ], + "value" : "🧝🏽‍♂️" + }, "🧝🏾‍♂️", + { + "keywords" : [ + "magical", + "man elf", + "man elf: medium-dark skin tone", + "medium-dark skin tone" + ], + "value" : "🧝🏾‍♂️" + }, "🧝🏿‍♂️", + { + "value" : "🧝🏿‍♂️", + "keywords" : [ + "dark skin tone", + "magical", + "man elf", + "man elf: dark skin tone" + ] + }, "🧝‍♀️", + { + "keywords" : [ + "elf", + "elves", + "enchantment", + "fantasy", + "folklore", + "magic", + "magical", + "myth", + "woman" + ], + "value" : "🧝‍♀️" + }, "🧝🏻‍♀️", + { + "keywords" : [ + "light skin tone", + "magical", + "woman elf", + "woman elf: light skin tone" + ], + "value" : "🧝🏻‍♀️" + }, "🧝🏼‍♀️", + { + "value" : "🧝🏼‍♀️", + "keywords" : [ + "magical", + "medium-light skin tone", + "woman elf", + "woman elf: medium-light skin tone" + ] + }, "🧝🏽‍♀️", + { + "keywords" : [ + "magical", + "medium skin tone", + "woman elf", + "woman elf: medium skin tone" + ], + "value" : "🧝🏽‍♀️" + }, "🧝🏾‍♀️", + { + "keywords" : [ + "magical", + "medium-dark skin tone", + "woman elf", + "woman elf: medium-dark skin tone" + ], + "value" : "🧝🏾‍♀️" + }, "🧝🏿‍♀️", + { + "value" : "🧝🏿‍♀️", + "keywords" : [ + "dark skin tone", + "magical", + "woman elf", + "woman elf: dark skin tone" + ] + }, "🧞", + { + "value" : "🧞", + "keywords" : [ + "djinn", + "fantasy", + "genie", + "jinn", + "lamp", + "myth", + "rub", + "wishes" + ] + }, "🧞‍♂️", + { + "value" : "🧞‍♂️", + "keywords" : [ + "djinn", + "fantasy", + "genie", + "jinn", + "lamp", + "man", + "myth", + "rub", + "wishes" + ] + }, "🧞‍♀️", + { + "keywords" : [ + "djinn", + "fantasy", + "genie", + "jinn", + "lamp", + "myth", + "rub", + "wishes", + "woman" + ], + "value" : "🧞‍♀️" + }, "🧟", + { + "keywords" : [ + "apocalypse", + "dead", + "halloween", + "horror", + "scary", + "undead", + "walking", + "zombie" + ], + "value" : "🧟" + }, "🧟‍♂️", + { + "value" : "🧟‍♂️", + "keywords" : [ + "apocalypse", + "dead", + "halloween", + "horror", + "man", + "scary", + "undead", + "walking", + "zombie" + ] + }, "🧟‍♀️", + { + "value" : "🧟‍♀️", + "keywords" : [ + "apocalypse", + "dead", + "halloween", + "horror", + "scary", + "undead", + "walking", + "woman", + "zombie" + ] + }, "🧌", + { + "keywords" : [ + "fairy", + "fantasy", + "monster", + "tale", + "troll", + "trolling" + ], + "value" : "🧌" + }, "💆", + { + "value" : "💆", + "keywords" : [ + "face", + "getting", + "headache", + "massage", + "person", + "relax", + "relaxing", + "salon", + "soothe", + "spa", + "tension", + "therapy", + "treatment" + ] + }, "💆🏻", + { + "value" : "💆🏻", + "keywords" : [ + "face", + "light skin tone", + "massage", + "person getting massage", + "person getting massage: light skin tone", + "salon" + ] + }, "💆🏼", + { + "keywords" : [ + "face", + "massage", + "medium-light skin tone", + "person getting massage", + "person getting massage: medium-light skin tone", + "salon" + ], + "value" : "💆🏼" + }, "💆🏽", + { + "keywords" : [ + "face", + "massage", + "medium skin tone", + "person getting massage", + "person getting massage: medium skin tone", + "salon" + ], + "value" : "💆🏽" + }, "💆🏾", + { + "keywords" : [ + "face", + "massage", + "medium-dark skin tone", + "person getting massage", + "person getting massage: medium-dark skin tone", + "salon" + ], + "value" : "💆🏾" + }, "💆🏿", + { + "keywords" : [ + "dark skin tone", + "face", + "massage", + "person getting massage", + "person getting massage: dark skin tone", + "salon" + ], + "value" : "💆🏿" + }, "💆‍♂️", + { + "keywords" : [ + "face", + "getting", + "headache", + "man", + "massage", + "relax", + "relaxing", + "salon", + "soothe", + "spa", + "tension", + "therapy", + "treatment" + ], + "value" : "💆‍♂️" + }, "💆🏻‍♂️", + { + "keywords" : [ + "face", + "light skin tone", + "man", + "man getting massage", + "man getting massage: light skin tone", + "massage" + ], + "value" : "💆🏻‍♂️" + }, "💆🏼‍♂️", + { + "keywords" : [ + "face", + "man", + "man getting massage", + "man getting massage: medium-light skin tone", + "massage", + "medium-light skin tone" + ], + "value" : "💆🏼‍♂️" + }, "💆🏽‍♂️", + { + "keywords" : [ + "face", + "man", + "man getting massage", + "man getting massage: medium skin tone", + "massage", + "medium skin tone" + ], + "value" : "💆🏽‍♂️" + }, "💆🏾‍♂️", + { + "value" : "💆🏾‍♂️", + "keywords" : [ + "face", + "man", + "man getting massage", + "man getting massage: medium-dark skin tone", + "massage", + "medium-dark skin tone" + ] + }, "💆🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "face", + "man", + "man getting massage", + "man getting massage: dark skin tone", + "massage" + ], + "value" : "💆🏿‍♂️" + }, "💆‍♀️", + { + "value" : "💆‍♀️", + "keywords" : [ + "face", + "getting", + "headache", + "massage", + "relax", + "relaxing", + "salon", + "soothe", + "spa", + "tension", + "therapy", + "treatment", + "woman" + ] + }, "💆🏻‍♀️", + { + "keywords" : [ + "face", + "light skin tone", + "massage", + "woman", + "woman getting massage", + "woman getting massage: light skin tone" + ], + "value" : "💆🏻‍♀️" + }, "💆🏼‍♀️", + { + "keywords" : [ + "face", + "massage", + "medium-light skin tone", + "woman", + "woman getting massage", + "woman getting massage: medium-light skin tone" + ], + "value" : "💆🏼‍♀️" + }, "💆🏽‍♀️", + { + "value" : "💆🏽‍♀️", + "keywords" : [ + "face", + "massage", + "medium skin tone", + "woman", + "woman getting massage", + "woman getting massage: medium skin tone" + ] + }, "💆🏾‍♀️", + { + "value" : "💆🏾‍♀️", + "keywords" : [ + "face", + "massage", + "medium-dark skin tone", + "woman", + "woman getting massage", + "woman getting massage: medium-dark skin tone" + ] + }, "💆🏿‍♀️", + { + "keywords" : [ + "dark skin tone", + "face", + "massage", + "woman", + "woman getting massage", + "woman getting massage: dark skin tone" + ], + "value" : "💆🏿‍♀️" + }, "💇", + { + "keywords" : [ + "barber", + "beauty", + "chop", + "cosmetology", + "cut", + "groom", + "hair", + "haircut", + "parlor", + "person", + "shears", + "style" + ], + "value" : "💇" + }, "💇🏻", + { + "value" : "💇🏻", + "keywords" : [ + "barber", + "beauty", + "haircut", + "light skin tone", + "parlor", + "person getting haircut", + "person getting haircut: light skin tone" + ] + }, "💇🏼", + { + "keywords" : [ + "barber", + "beauty", + "haircut", + "medium-light skin tone", + "parlor", + "person getting haircut", + "person getting haircut: medium-light skin tone" + ], + "value" : "💇🏼" + }, "💇🏽", + { + "keywords" : [ + "barber", + "beauty", + "haircut", + "medium skin tone", + "parlor", + "person getting haircut", + "person getting haircut: medium skin tone" + ], + "value" : "💇🏽" + }, "💇🏾", + { + "keywords" : [ + "barber", + "beauty", + "haircut", + "medium-dark skin tone", + "parlor", + "person getting haircut", + "person getting haircut: medium-dark skin tone" + ], + "value" : "💇🏾" + }, "💇🏿", + { + "keywords" : [ + "barber", + "beauty", + "dark skin tone", + "haircut", + "parlor", + "person getting haircut", + "person getting haircut: dark skin tone" + ], + "value" : "💇🏿" + }, "💇‍♂️", + { + "keywords" : [ + "barber", + "beauty", + "chop", + "cosmetology", + "cut", + "groom", + "hair", + "haircut", + "man", + "parlor", + "person", + "shears", + "style" + ], + "value" : "💇‍♂️" + }, "💇🏻‍♂️", + { + "keywords" : [ + "haircut", + "light skin tone", + "man", + "man getting haircut", + "man getting haircut: light skin tone" + ], + "value" : "💇🏻‍♂️" + }, "💇🏼‍♂️", + { + "keywords" : [ + "haircut", + "man", + "man getting haircut", + "man getting haircut: medium-light skin tone", + "medium-light skin tone" + ], + "value" : "💇🏼‍♂️" + }, "💇🏽‍♂️", + { + "keywords" : [ + "haircut", + "man", + "man getting haircut", + "man getting haircut: medium skin tone", + "medium skin tone" + ], + "value" : "💇🏽‍♂️" + }, "💇🏾‍♂️", + { + "keywords" : [ + "haircut", + "man", + "man getting haircut", + "man getting haircut: medium-dark skin tone", + "medium-dark skin tone" + ], + "value" : "💇🏾‍♂️" + }, "💇🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "haircut", + "man", + "man getting haircut", + "man getting haircut: dark skin tone" + ], + "value" : "💇🏿‍♂️" + }, "💇‍♀️", + { + "value" : "💇‍♀️", + "keywords" : [ + "barber", + "beauty", + "chop", + "cosmetology", + "cut", + "groom", + "hair", + "haircut", + "parlor", + "person", + "shears", + "style", + "woman" + ] + }, "💇🏻‍♀️", + { + "keywords" : [ + "haircut", + "light skin tone", + "woman", + "woman getting haircut", + "woman getting haircut: light skin tone" + ], + "value" : "💇🏻‍♀️" + }, "💇🏼‍♀️", + { + "keywords" : [ + "haircut", + "medium-light skin tone", + "woman", + "woman getting haircut", + "woman getting haircut: medium-light skin tone" + ], + "value" : "💇🏼‍♀️" + }, "💇🏽‍♀️", + { + "keywords" : [ + "haircut", + "medium skin tone", + "woman", + "woman getting haircut", + "woman getting haircut: medium skin tone" + ], + "value" : "💇🏽‍♀️" + }, "💇🏾‍♀️", + { + "value" : "💇🏾‍♀️", + "keywords" : [ + "haircut", + "medium-dark skin tone", + "woman", + "woman getting haircut", + "woman getting haircut: medium-dark skin tone" + ] + }, "💇🏿‍♀️", + { + "value" : "💇🏿‍♀️", + "keywords" : [ + "dark skin tone", + "haircut", + "woman", + "woman getting haircut", + "woman getting haircut: dark skin tone" + ] + }, "🚶", + { + "value" : "🚶", + "keywords" : [ + "amble", + "gait", + "hike", + "man", + "pace", + "pedestrian", + "person", + "stride", + "stroll", + "walk", + "walking" + ] + }, "🚶🏻", + { + "value" : "🚶🏻", + "keywords" : [ + "hike", + "light skin tone", + "person walking", + "person walking: light skin tone", + "walk", + "walking" + ] + }, "🚶🏼", + { + "keywords" : [ + "hike", + "medium-light skin tone", + "person walking", + "person walking: medium-light skin tone", + "walk", + "walking" + ], + "value" : "🚶🏼" + }, "🚶🏽", + { + "value" : "🚶🏽", + "keywords" : [ + "hike", + "medium skin tone", + "person walking", + "person walking: medium skin tone", + "walk", + "walking" + ] + }, "🚶🏾", + { + "value" : "🚶🏾", + "keywords" : [ + "hike", + "medium-dark skin tone", + "person walking", + "person walking: medium-dark skin tone", + "walk", + "walking" + ] + }, "🚶🏿", + { + "keywords" : [ + "dark skin tone", + "hike", + "person walking", + "person walking: dark skin tone", + "walk", + "walking" + ], + "value" : "🚶🏿" + }, "🚶‍♂️", + { + "value" : "🚶‍♂️", + "keywords" : [ + "amble", + "gait", + "hike", + "man", + "pace", + "pedestrian", + "stride", + "stroll", + "walk", + "walking" + ] + }, "🚶🏻‍♂️", + { + "keywords" : [ + "hike", + "light skin tone", + "man", + "man walking", + "man walking: light skin tone", + "walk" + ], + "value" : "🚶🏻‍♂️" + }, "🚶🏼‍♂️", + { + "value" : "🚶🏼‍♂️", + "keywords" : [ + "hike", + "man", + "man walking", + "man walking: medium-light skin tone", + "medium-light skin tone", + "walk" + ] + }, "🚶🏽‍♂️", + { + "value" : "🚶🏽‍♂️", + "keywords" : [ + "hike", + "man", + "man walking", + "man walking: medium skin tone", + "medium skin tone", + "walk" + ] + }, "🚶🏾‍♂️", + { + "keywords" : [ + "hike", + "man", + "man walking", + "man walking: medium-dark skin tone", + "medium-dark skin tone", + "walk" + ], + "value" : "🚶🏾‍♂️" + }, "🚶🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "hike", + "man", + "man walking", + "man walking: dark skin tone", + "walk" + ], + "value" : "🚶🏿‍♂️" + }, "🚶‍♀️", + { + "value" : "🚶‍♀️", + "keywords" : [ + "amble", + "gait", + "hike", + "man", + "pace", + "pedestrian", + "stride", + "stroll", + "walk", + "walking", + "woman" + ] + }, "🚶🏻‍♀️", + { + "keywords" : [ + "hike", + "light skin tone", + "walk", + "woman", + "woman walking", + "woman walking: light skin tone" + ], + "value" : "🚶🏻‍♀️" + }, "🚶🏼‍♀️", + { + "value" : "🚶🏼‍♀️", + "keywords" : [ + "hike", + "medium-light skin tone", + "walk", + "woman", + "woman walking", + "woman walking: medium-light skin tone" + ] + }, "🚶🏽‍♀️", + { + "value" : "🚶🏽‍♀️", + "keywords" : [ + "hike", + "medium skin tone", + "walk", + "woman", + "woman walking", + "woman walking: medium skin tone" + ] + }, "🚶🏾‍♀️", + { + "value" : "🚶🏾‍♀️", + "keywords" : [ + "hike", + "medium-dark skin tone", + "walk", + "woman", + "woman walking", + "woman walking: medium-dark skin tone" + ] + }, "🚶🏿‍♀️", + { + "value" : "🚶🏿‍♀️", + "keywords" : [ + "dark skin tone", + "hike", + "walk", + "woman", + "woman walking", + "woman walking: dark skin tone" + ] + }, "🧍", + { + "value" : "🧍", + "keywords" : [ + "person", + "stand", + "standing" + ] + }, "🧍🏻", + { + "keywords" : [ + "light skin tone", + "person standing", + "person standing: light skin tone", + "stand", + "standing" + ], + "value" : "🧍🏻" + }, "🧍🏼", + { + "value" : "🧍🏼", + "keywords" : [ + "medium-light skin tone", + "person standing", + "person standing: medium-light skin tone", + "stand", + "standing" + ] + }, "🧍🏽", + { + "keywords" : [ + "medium skin tone", + "person standing", + "person standing: medium skin tone", + "stand", + "standing" + ], + "value" : "🧍🏽" + }, "🧍🏾", + { + "value" : "🧍🏾", + "keywords" : [ + "medium-dark skin tone", + "person standing", + "person standing: medium-dark skin tone", + "stand", + "standing" + ] + }, "🧍🏿", + { + "value" : "🧍🏿", + "keywords" : [ + "dark skin tone", + "person standing", + "person standing: dark skin tone", + "stand", + "standing" + ] + }, "🧍‍♂️", + { + "value" : "🧍‍♂️", + "keywords" : [ + "man", + "stand", + "standing" + ] + }, "🧍🏻‍♂️", + { + "value" : "🧍🏻‍♂️", + "keywords" : [ + "light skin tone", + "man", + "man standing: light skin tone", + "standing" + ] + }, "🧍🏼‍♂️", + { + "value" : "🧍🏼‍♂️", + "keywords" : [ + "man", + "man standing: medium-light skin tone", + "medium-light skin tone", + "standing" + ] + }, "🧍🏽‍♂️", + { + "value" : "🧍🏽‍♂️", + "keywords" : [ + "man", + "man standing: medium skin tone", + "medium skin tone", + "standing" + ] + }, "🧍🏾‍♂️", + { + "keywords" : [ + "man", + "man standing: medium-dark skin tone", + "medium-dark skin tone", + "standing" + ], + "value" : "🧍🏾‍♂️" + }, "🧍🏿‍♂️", + { + "value" : "🧍🏿‍♂️", + "keywords" : [ + "dark skin tone", + "man", + "man standing: dark skin tone", + "standing" + ] + }, "🧍‍♀️", + { + "value" : "🧍‍♀️", + "keywords" : [ + "stand", + "standing", + "woman" + ] + }, "🧍🏻‍♀️", + { + "value" : "🧍🏻‍♀️", + "keywords" : [ + "light skin tone", + "standing", + "woman", + "woman standing: light skin tone" + ] + }, "🧍🏼‍♀️", + { + "value" : "🧍🏼‍♀️", + "keywords" : [ + "medium-light skin tone", + "standing", + "woman", + "woman standing: medium-light skin tone" + ] + }, "🧍🏽‍♀️", + { + "value" : "🧍🏽‍♀️", + "keywords" : [ + "medium skin tone", + "standing", + "woman", + "woman standing: medium skin tone" + ] + }, "🧍🏾‍♀️", + { + "value" : "🧍🏾‍♀️", + "keywords" : [ + "medium-dark skin tone", + "standing", + "woman", + "woman standing: medium-dark skin tone" + ] + }, "🧍🏿‍♀️", + { + "value" : "🧍🏿‍♀️", + "keywords" : [ + "dark skin tone", + "standing", + "woman", + "woman standing: dark skin tone" + ] + }, "🧎", + { + "value" : "🧎", + "keywords" : [ + "kneel", + "kneeling", + "knees", + "person" + ] + }, "🧎🏻", + { + "value" : "🧎🏻", + "keywords" : [ + "kneel", + "kneeling", + "light skin tone", + "person kneeling", + "person kneeling: light skin tone" + ] + }, "🧎🏼", + { + "value" : "🧎🏼", + "keywords" : [ + "kneel", + "kneeling", + "medium-light skin tone", + "person kneeling", + "person kneeling: medium-light skin tone" + ] + }, "🧎🏽", + { + "keywords" : [ + "kneel", + "kneeling", + "medium skin tone", + "person kneeling", + "person kneeling: medium skin tone" + ], + "value" : "🧎🏽" + }, "🧎🏾", + { + "keywords" : [ + "kneel", + "kneeling", + "medium-dark skin tone", + "person kneeling", + "person kneeling: medium-dark skin tone" + ], + "value" : "🧎🏾" + }, "🧎🏿", + { + "keywords" : [ + "dark skin tone", + "kneel", + "kneeling", + "person kneeling", + "person kneeling: dark skin tone" + ], + "value" : "🧎🏿" + }, "🧎‍♂️", + { + "keywords" : [ + "kneel", + "kneeling", + "knees", + "man" + ], + "value" : "🧎‍♂️" + }, "🧎🏻‍♂️", + { + "value" : "🧎🏻‍♂️", + "keywords" : [ + "kneeling", + "light skin tone", + "man", + "man kneeling: light skin tone" + ] + }, "🧎🏼‍♂️", + { + "value" : "🧎🏼‍♂️", + "keywords" : [ + "kneeling", + "man", + "man kneeling: medium-light skin tone", + "medium-light skin tone" + ] + }, "🧎🏽‍♂️", + { + "keywords" : [ + "kneeling", + "man", + "man kneeling: medium skin tone", + "medium skin tone" + ], + "value" : "🧎🏽‍♂️" + }, "🧎🏾‍♂️", + { + "keywords" : [ + "kneeling", + "man", + "man kneeling: medium-dark skin tone", + "medium-dark skin tone" + ], + "value" : "🧎🏾‍♂️" + }, "🧎🏿‍♂️", + { + "value" : "🧎🏿‍♂️", + "keywords" : [ + "dark skin tone", + "kneeling", + "man", + "man kneeling: dark skin tone" + ] + }, "🧎‍♀️", + { + "keywords" : [ + "kneel", + "kneeling", + "knees", + "woman" + ], + "value" : "🧎‍♀️" + }, "🧎🏻‍♀️", + { + "keywords" : [ + "kneeling", + "light skin tone", + "woman", + "woman kneeling: light skin tone" + ], + "value" : "🧎🏻‍♀️" + }, "🧎🏼‍♀️", + { + "value" : "🧎🏼‍♀️", + "keywords" : [ + "kneeling", + "medium-light skin tone", + "woman", + "woman kneeling: medium-light skin tone" + ] + }, "🧎🏽‍♀️", + { + "keywords" : [ + "kneeling", + "medium skin tone", + "woman", + "woman kneeling: medium skin tone" + ], + "value" : "🧎🏽‍♀️" + }, "🧎🏾‍♀️", + { + "value" : "🧎🏾‍♀️", + "keywords" : [ + "kneeling", + "medium-dark skin tone", + "woman", + "woman kneeling: medium-dark skin tone" + ] + }, "🧎🏿‍♀️", + { + "value" : "🧎🏿‍♀️", + "keywords" : [ + "dark skin tone", + "kneeling", + "woman", + "woman kneeling: dark skin tone" + ] + }, "🧑‍🦯", + { + "value" : "🧑‍🦯", + "keywords" : [ + "accessibility", + "blind", + "cane", + "person", + "probing", + "white" + ] + }, "🧑🏻‍🦯", + { + "keywords" : [ + "accessibility", + "blind", + "light skin tone", + "person with white cane", + "person with white cane: light skin tone" + ], + "value" : "🧑🏻‍🦯" + }, "🧑🏼‍🦯", + { + "keywords" : [ + "accessibility", + "blind", + "medium-light skin tone", + "person with white cane", + "person with white cane: medium-light skin tone" + ], + "value" : "🧑🏼‍🦯" + }, "🧑🏽‍🦯", + { + "value" : "🧑🏽‍🦯", + "keywords" : [ + "accessibility", + "blind", + "medium skin tone", + "person with white cane", + "person with white cane: medium skin tone" + ] + }, "🧑🏾‍🦯", + { + "keywords" : [ + "accessibility", + "blind", + "medium-dark skin tone", + "person with white cane", + "person with white cane: medium-dark skin tone" + ], + "value" : "🧑🏾‍🦯" + }, "🧑🏿‍🦯", + { + "keywords" : [ + "accessibility", + "blind", + "dark skin tone", + "person with white cane", + "person with white cane: dark skin tone" + ], + "value" : "🧑🏿‍🦯" + }, "👨‍🦯", + { + "keywords" : [ + "accessibility", + "blind", + "cane", + "man", + "probing", + "white" + ], + "value" : "👨‍🦯" + }, "👨🏻‍🦯", + { + "value" : "👨🏻‍🦯", + "keywords" : [ + "accessibility", + "blind", + "light skin tone", + "man", + "man with white cane", + "man with white cane: light skin tone" + ] + }, "👨🏼‍🦯", + { + "value" : "👨🏼‍🦯", + "keywords" : [ + "accessibility", + "blind", + "man", + "man with white cane", + "man with white cane: medium-light skin tone", + "medium-light skin tone" + ] + }, "👨🏽‍🦯", + { + "keywords" : [ + "accessibility", + "blind", + "man", + "man with white cane", + "man with white cane: medium skin tone", + "medium skin tone" + ], + "value" : "👨🏽‍🦯" + }, "👨🏾‍🦯", + { + "keywords" : [ + "accessibility", + "blind", + "man", + "man with white cane", + "man with white cane: medium-dark skin tone", + "medium-dark skin tone" + ], + "value" : "👨🏾‍🦯" + }, "👨🏿‍🦯", + { + "value" : "👨🏿‍🦯", + "keywords" : [ + "accessibility", + "blind", + "dark skin tone", + "man", + "man with white cane", + "man with white cane: dark skin tone" + ] + }, "👩‍🦯", + { + "keywords" : [ + "accessibility", + "blind", + "cane", + "probing", + "white", + "woman" + ], + "value" : "👩‍🦯" + }, "👩🏻‍🦯", + { + "value" : "👩🏻‍🦯", + "keywords" : [ + "accessibility", + "blind", + "light skin tone", + "woman", + "woman with white cane", + "woman with white cane: light skin tone" + ] + }, "👩🏼‍🦯", + { + "keywords" : [ + "accessibility", + "blind", + "medium-light skin tone", + "woman", + "woman with white cane", + "woman with white cane: medium-light skin tone" + ], + "value" : "👩🏼‍🦯" + }, "👩🏽‍🦯", + { + "value" : "👩🏽‍🦯", + "keywords" : [ + "accessibility", + "blind", + "medium skin tone", + "woman", + "woman with white cane", + "woman with white cane: medium skin tone" + ] + }, "👩🏾‍🦯", + { + "keywords" : [ + "accessibility", + "blind", + "medium-dark skin tone", + "woman", + "woman with white cane", + "woman with white cane: medium-dark skin tone" + ], + "value" : "👩🏾‍🦯" + }, "👩🏿‍🦯", + { + "keywords" : [ + "accessibility", + "blind", + "dark skin tone", + "woman", + "woman with white cane", + "woman with white cane: dark skin tone" + ], + "value" : "👩🏿‍🦯" + }, "🧑‍🦼", + { + "value" : "🧑‍🦼", + "keywords" : [ + "accessibility", + "motorized", + "person", + "wheelchair" + ] + }, "🧑🏻‍🦼", + { + "keywords" : [ + "accessibility", + "light skin tone", + "person in motorized wheelchair", + "person in motorized wheelchair: light skin tone", + "wheelchair" + ], + "value" : "🧑🏻‍🦼" + }, "🧑🏼‍🦼", + { + "keywords" : [ + "accessibility", + "medium-light skin tone", + "person in motorized wheelchair", + "person in motorized wheelchair: medium-light skin tone", + "wheelchair" + ], + "value" : "🧑🏼‍🦼" + }, "🧑🏽‍🦼", + { + "keywords" : [ + "accessibility", + "medium skin tone", + "person in motorized wheelchair", + "person in motorized wheelchair: medium skin tone", + "wheelchair" + ], + "value" : "🧑🏽‍🦼" + }, "🧑🏾‍🦼", + { + "value" : "🧑🏾‍🦼", + "keywords" : [ + "accessibility", + "medium-dark skin tone", + "person in motorized wheelchair", + "person in motorized wheelchair: medium-dark skin tone", + "wheelchair" + ] + }, "🧑🏿‍🦼", + { + "keywords" : [ + "accessibility", + "dark skin tone", + "person in motorized wheelchair", + "person in motorized wheelchair: dark skin tone", + "wheelchair" + ], + "value" : "🧑🏿‍🦼" + }, "👨‍🦼", + { + "keywords" : [ + "accessibility", + "man", + "motorized", + "wheelchair" + ], + "value" : "👨‍🦼" + }, "👨🏻‍🦼", + { + "keywords" : [ + "accessibility", + "light skin tone", + "man", + "man in motorized wheelchair", + "man in motorized wheelchair: light skin tone", + "wheelchair" + ], + "value" : "👨🏻‍🦼" + }, "👨🏼‍🦼", + { + "keywords" : [ + "accessibility", + "man", + "man in motorized wheelchair", + "man in motorized wheelchair: medium-light skin tone", + "medium-light skin tone", + "wheelchair" + ], + "value" : "👨🏼‍🦼" + }, "👨🏽‍🦼", + { + "value" : "👨🏽‍🦼", + "keywords" : [ + "accessibility", + "man", + "man in motorized wheelchair", + "man in motorized wheelchair: medium skin tone", + "medium skin tone", + "wheelchair" + ] + }, "👨🏾‍🦼", + { + "value" : "👨🏾‍🦼", + "keywords" : [ + "accessibility", + "man", + "man in motorized wheelchair", + "man in motorized wheelchair: medium-dark skin tone", + "medium-dark skin tone", + "wheelchair" + ] + }, "👨🏿‍🦼", + { + "keywords" : [ + "accessibility", + "dark skin tone", + "man", + "man in motorized wheelchair", + "man in motorized wheelchair: dark skin tone", + "wheelchair" + ], + "value" : "👨🏿‍🦼" + }, "👩‍🦼", + { + "value" : "👩‍🦼", + "keywords" : [ + "accessibility", + "motorized", + "wheelchair", + "woman" + ] + }, "👩🏻‍🦼", + { + "keywords" : [ + "accessibility", + "light skin tone", + "wheelchair", + "woman", + "woman in motorized wheelchair", + "woman in motorized wheelchair: light skin tone" + ], + "value" : "👩🏻‍🦼" + }, "👩🏼‍🦼", + { + "keywords" : [ + "accessibility", + "medium-light skin tone", + "wheelchair", + "woman", + "woman in motorized wheelchair", + "woman in motorized wheelchair: medium-light skin tone" + ], + "value" : "👩🏼‍🦼" + }, "👩🏽‍🦼", + { + "keywords" : [ + "accessibility", + "medium skin tone", + "wheelchair", + "woman", + "woman in motorized wheelchair", + "woman in motorized wheelchair: medium skin tone" + ], + "value" : "👩🏽‍🦼" + }, "👩🏾‍🦼", + { + "value" : "👩🏾‍🦼", + "keywords" : [ + "accessibility", + "medium-dark skin tone", + "wheelchair", + "woman", + "woman in motorized wheelchair", + "woman in motorized wheelchair: medium-dark skin tone" + ] + }, "👩🏿‍🦼", + { + "value" : "👩🏿‍🦼", + "keywords" : [ + "accessibility", + "dark skin tone", + "wheelchair", + "woman", + "woman in motorized wheelchair", + "woman in motorized wheelchair: dark skin tone" + ] + }, "🧑‍🦽", + { + "keywords" : [ + "accessibility", + "manual", + "person", + "wheelchair" + ], + "value" : "🧑‍🦽" + }, "🧑🏻‍🦽", + { + "value" : "🧑🏻‍🦽", + "keywords" : [ + "accessibility", + "light skin tone", + "person in manual wheelchair", + "person in manual wheelchair: light skin tone", + "wheelchair" + ] + }, "🧑🏼‍🦽", + { + "keywords" : [ + "accessibility", + "medium-light skin tone", + "person in manual wheelchair", + "person in manual wheelchair: medium-light skin tone", + "wheelchair" + ], + "value" : "🧑🏼‍🦽" + }, "🧑🏽‍🦽", + { + "keywords" : [ + "accessibility", + "medium skin tone", + "person in manual wheelchair", + "person in manual wheelchair: medium skin tone", + "wheelchair" + ], + "value" : "🧑🏽‍🦽" + }, "🧑🏾‍🦽", + { + "keywords" : [ + "accessibility", + "medium-dark skin tone", + "person in manual wheelchair", + "person in manual wheelchair: medium-dark skin tone", + "wheelchair" + ], + "value" : "🧑🏾‍🦽" + }, "🧑🏿‍🦽", + { + "keywords" : [ + "accessibility", + "dark skin tone", + "person in manual wheelchair", + "person in manual wheelchair: dark skin tone", + "wheelchair" + ], + "value" : "🧑🏿‍🦽" + }, "👨‍🦽", + { + "value" : "👨‍🦽", + "keywords" : [ + "accessibility", + "man", + "manual", + "wheelchair" + ] + }, "👨🏻‍🦽", + { + "keywords" : [ + "accessibility", + "light skin tone", + "man", + "man in manual wheelchair", + "man in manual wheelchair: light skin tone", + "wheelchair" + ], + "value" : "👨🏻‍🦽" + }, "👨🏼‍🦽", + { + "value" : "👨🏼‍🦽", + "keywords" : [ + "accessibility", + "man", + "man in manual wheelchair", + "man in manual wheelchair: medium-light skin tone", + "medium-light skin tone", + "wheelchair" + ] + }, "👨🏽‍🦽", + { + "keywords" : [ + "accessibility", + "man", + "man in manual wheelchair", + "man in manual wheelchair: medium skin tone", + "medium skin tone", + "wheelchair" + ], + "value" : "👨🏽‍🦽" + }, "👨🏾‍🦽", + { + "value" : "👨🏾‍🦽", + "keywords" : [ + "accessibility", + "man", + "man in manual wheelchair", + "man in manual wheelchair: medium-dark skin tone", + "medium-dark skin tone", + "wheelchair" + ] + }, "👨🏿‍🦽", + { + "value" : "👨🏿‍🦽", + "keywords" : [ + "accessibility", + "dark skin tone", + "man", + "man in manual wheelchair", + "man in manual wheelchair: dark skin tone", + "wheelchair" + ] + }, "👩‍🦽", + { + "value" : "👩‍🦽", + "keywords" : [ + "accessibility", + "manual", + "wheelchair", + "woman" + ] + }, "👩🏻‍🦽", + { + "keywords" : [ + "accessibility", + "light skin tone", + "wheelchair", + "woman", + "woman in manual wheelchair", + "woman in manual wheelchair: light skin tone" + ], + "value" : "👩🏻‍🦽" + }, "👩🏼‍🦽", + { + "keywords" : [ + "accessibility", + "medium-light skin tone", + "wheelchair", + "woman", + "woman in manual wheelchair", + "woman in manual wheelchair: medium-light skin tone" + ], + "value" : "👩🏼‍🦽" + }, "👩🏽‍🦽", + { + "keywords" : [ + "accessibility", + "medium skin tone", + "wheelchair", + "woman", + "woman in manual wheelchair", + "woman in manual wheelchair: medium skin tone" + ], + "value" : "👩🏽‍🦽" + }, "👩🏾‍🦽", + { + "keywords" : [ + "accessibility", + "medium-dark skin tone", + "wheelchair", + "woman", + "woman in manual wheelchair", + "woman in manual wheelchair: medium-dark skin tone" + ], + "value" : "👩🏾‍🦽" + }, "👩🏿‍🦽", + { + "keywords" : [ + "accessibility", + "dark skin tone", + "wheelchair", + "woman", + "woman in manual wheelchair", + "woman in manual wheelchair: dark skin tone" + ], + "value" : "👩🏿‍🦽" + }, "🏃", + { + "value" : "🏃", + "keywords" : [ + "fast", + "hurry", + "marathon", + "move", + "person", + "quick", + "race", + "racing", + "run", + "rush", + "speed" + ] + }, "🏃🏻", + { + "keywords" : [ + "light skin tone", + "marathon", + "person running", + "person running: light skin tone", + "running" + ], + "value" : "🏃🏻" + }, "🏃🏼", + { + "value" : "🏃🏼", + "keywords" : [ + "marathon", + "medium-light skin tone", + "person running", + "person running: medium-light skin tone", + "running" + ] + }, "🏃🏽", + { + "value" : "🏃🏽", + "keywords" : [ + "marathon", + "medium skin tone", + "person running", + "person running: medium skin tone", + "running" + ] + }, "🏃🏾", + { + "value" : "🏃🏾", + "keywords" : [ + "marathon", + "medium-dark skin tone", + "person running", + "person running: medium-dark skin tone", + "running" + ] + }, "🏃🏿", + { + "keywords" : [ + "dark skin tone", + "marathon", + "person running", + "person running: dark skin tone", + "running" + ], + "value" : "🏃🏿" + }, "🏃‍♂️", + { + "keywords" : [ + "fast", + "hurry", + "man", + "marathon", + "move", + "quick", + "race", + "racing", + "run", + "rush", + "speed" + ], + "value" : "🏃‍♂️" + }, "🏃🏻‍♂️", + { + "value" : "🏃🏻‍♂️", + "keywords" : [ + "light skin tone", + "man", + "man running: light skin tone", + "marathon", + "racing", + "running" + ] + }, "🏃🏼‍♂️", + { + "value" : "🏃🏼‍♂️", + "keywords" : [ + "man", + "man running: medium-light skin tone", + "marathon", + "medium-light skin tone", + "racing", + "running" + ] + }, "🏃🏽‍♂️", + { + "keywords" : [ + "man", + "man running: medium skin tone", + "marathon", + "medium skin tone", + "racing", + "running" + ], + "value" : "🏃🏽‍♂️" + }, "🏃🏾‍♂️", + { + "value" : "🏃🏾‍♂️", + "keywords" : [ + "man", + "man running: medium-dark skin tone", + "marathon", + "medium-dark skin tone", + "racing", + "running" + ] + }, "🏃🏿‍♂️", + { + "value" : "🏃🏿‍♂️", + "keywords" : [ + "dark skin tone", + "man", + "man running: dark skin tone", + "marathon", + "racing", + "running" + ] + }, "🏃‍♀️", + { + "value" : "🏃‍♀️", + "keywords" : [ + "fast", + "hurry", + "marathon", + "move", + "quick", + "race", + "racing", + "run", + "rush", + "speed", + "woman" + ] + }, "🏃🏻‍♀️", + { + "keywords" : [ + "light skin tone", + "marathon", + "racing", + "running", + "woman", + "woman running: light skin tone" + ], + "value" : "🏃🏻‍♀️" + }, "🏃🏼‍♀️", + { + "value" : "🏃🏼‍♀️", + "keywords" : [ + "marathon", + "medium-light skin tone", + "racing", + "running", + "woman", + "woman running: medium-light skin tone" + ] + }, "🏃🏽‍♀️", + { + "keywords" : [ + "marathon", + "medium skin tone", + "racing", + "running", + "woman", + "woman running: medium skin tone" + ], + "value" : "🏃🏽‍♀️" + }, "🏃🏾‍♀️", + { + "value" : "🏃🏾‍♀️", + "keywords" : [ + "marathon", + "medium-dark skin tone", + "racing", + "running", + "woman", + "woman running: medium-dark skin tone" + ] + }, "🏃🏿‍♀️", + { + "value" : "🏃🏿‍♀️", + "keywords" : [ + "dark skin tone", + "marathon", + "racing", + "running", + "woman", + "woman running: dark skin tone" + ] + }, "💃", + { + "value" : "💃", + "keywords" : [ + "dance", + "dancer", + "dancing", + "elegant", + "festive", + "flair", + "flamenco", + "groove", + "let’s", + "salsa", + "tango", + "woman" + ] + }, "💃🏻", + { + "keywords" : [ + "dance", + "dancing", + "light skin tone", + "woman", + "woman dancing: light skin tone" + ], + "value" : "💃🏻" + }, "💃🏼", + { + "value" : "💃🏼", + "keywords" : [ + "dance", + "dancing", + "medium-light skin tone", + "woman", + "woman dancing: medium-light skin tone" + ] + }, "💃🏽", + { + "keywords" : [ + "dance", + "dancing", + "medium skin tone", + "woman", + "woman dancing: medium skin tone" + ], + "value" : "💃🏽" + }, "💃🏾", + { + "value" : "💃🏾", + "keywords" : [ + "dance", + "dancing", + "medium-dark skin tone", + "woman", + "woman dancing: medium-dark skin tone" + ] + }, "💃🏿", + { + "keywords" : [ + "dance", + "dancing", + "dark skin tone", + "woman", + "woman dancing: dark skin tone" + ], + "value" : "💃🏿" + }, "🕺", + { + "keywords" : [ + "dance", + "dancer", + "dancing", + "elegant", + "festive", + "flair", + "flamenco", + "groove", + "let’s", + "man", + "salsa", + "tango" + ], + "value" : "🕺" + }, "🕺🏻", + { + "value" : "🕺🏻", + "keywords" : [ + "dance", + "dancing", + "light skin tone", + "man", + "man dancing: light skin tone" + ] + }, "🕺🏼", + { + "value" : "🕺🏼", + "keywords" : [ + "dance", + "dancing", + "man", + "man dancing: medium-light skin tone", + "medium-light skin tone" + ] + }, "🕺🏽", + { + "value" : "🕺🏽", + "keywords" : [ + "dance", + "dancing", + "man", + "man dancing: medium skin tone", + "medium skin tone" + ] + }, "🕺🏾", + { + "keywords" : [ + "dance", + "dancing", + "man", + "man dancing: medium-dark skin tone", + "medium-dark skin tone" + ], + "value" : "🕺🏾" + }, "🕺🏿", + { + "keywords" : [ + "dance", + "dancing", + "dark skin tone", + "man", + "man dancing: dark skin tone" + ], + "value" : "🕺🏿" + }, "🕴️", + { + "value" : "🕴️", + "keywords" : [ + "business", + "levitating", + "person", + "suit" + ] + }, "🕴🏻", + { + "value" : "🕴🏻", + "keywords" : [ + "business", + "light skin tone", + "person", + "person in suit levitating", + "person in suit levitating: light skin tone", + "suit" + ] + }, "🕴🏼", + { + "value" : "🕴🏼", + "keywords" : [ + "business", + "medium-light skin tone", + "person", + "person in suit levitating", + "person in suit levitating: medium-light skin tone", + "suit" + ] + }, "🕴🏽", + { + "value" : "🕴🏽", + "keywords" : [ + "business", + "medium skin tone", + "person", + "person in suit levitating", + "person in suit levitating: medium skin tone", + "suit" + ] + }, "🕴🏾", + { + "keywords" : [ + "business", + "medium-dark skin tone", + "person", + "person in suit levitating", + "person in suit levitating: medium-dark skin tone", + "suit" + ], + "value" : "🕴🏾" + }, "🕴🏿", + { + "value" : "🕴🏿", + "keywords" : [ + "business", + "dark skin tone", + "person", + "person in suit levitating", + "person in suit levitating: dark skin tone", + "suit" + ] + }, "👯", + { + "keywords" : [ + "bestie", + "bff", + "bunny", + "counterpart", + "dancer", + "double", + "ear", + "identical", + "pair", + "party", + "partying", + "people", + "soulmate", + "twin", + "twinsies" + ], + "value" : "👯" + }, "👯‍♂️", + { + "value" : "👯‍♂️", + "keywords" : [ + "bestie", + "bff", + "bunny", + "counterpart", + "dancer", + "double", + "ear", + "identical", + "men", + "pair", + "party", + "partying", + "people", + "soulmate", + "twin", + "twinsies" + ] + }, "👯‍♀️", + { + "value" : "👯‍♀️", + "keywords" : [ + "bestie", + "bff", + "bunny", + "counterpart", + "dancer", + "double", + "ear", + "identical", + "pair", + "party", + "partying", + "people", + "soulmate", + "twin", + "twinsies", + "women" + ] + }, "🧖", + { + "keywords" : [ + "day", + "luxurious", + "pamper", + "person", + "relax", + "room", + "sauna", + "spa", + "steam", + "steambath", + "unwind" + ], + "value" : "🧖" + }, "🧖🏻", + { + "value" : "🧖🏻", + "keywords" : [ + "light skin tone", + "person in steamy room", + "person in steamy room: light skin tone", + "sauna", + "steam room" + ] + }, "🧖🏼", + { + "value" : "🧖🏼", + "keywords" : [ + "medium-light skin tone", + "person in steamy room", + "person in steamy room: medium-light skin tone", + "sauna", + "steam room" + ] + }, "🧖🏽", + { + "keywords" : [ + "medium skin tone", + "person in steamy room", + "person in steamy room: medium skin tone", + "sauna", + "steam room" + ], + "value" : "🧖🏽" + }, "🧖🏾", + { + "keywords" : [ + "medium-dark skin tone", + "person in steamy room", + "person in steamy room: medium-dark skin tone", + "sauna", + "steam room" + ], + "value" : "🧖🏾" + }, "🧖🏿", + { + "keywords" : [ + "dark skin tone", + "person in steamy room", + "person in steamy room: dark skin tone", + "sauna", + "steam room" + ], + "value" : "🧖🏿" + }, "🧖‍♂️", + { + "value" : "🧖‍♂️", + "keywords" : [ + "day", + "luxurious", + "man", + "pamper", + "relax", + "room", + "sauna", + "spa", + "steam", + "steambath", + "unwind" + ] + }, "🧖🏻‍♂️", + { + "keywords" : [ + "light skin tone", + "man in steamy room", + "man in steamy room: light skin tone", + "sauna", + "steam room" + ], + "value" : "🧖🏻‍♂️" + }, "🧖🏼‍♂️", + { + "value" : "🧖🏼‍♂️", + "keywords" : [ + "man in steamy room", + "man in steamy room: medium-light skin tone", + "medium-light skin tone", + "sauna", + "steam room" + ] + }, "🧖🏽‍♂️", + { + "keywords" : [ + "man in steamy room", + "man in steamy room: medium skin tone", + "medium skin tone", + "sauna", + "steam room" + ], + "value" : "🧖🏽‍♂️" + }, "🧖🏾‍♂️", + { + "keywords" : [ + "man in steamy room", + "man in steamy room: medium-dark skin tone", + "medium-dark skin tone", + "sauna", + "steam room" + ], + "value" : "🧖🏾‍♂️" + }, "🧖🏿‍♂️", + { + "value" : "🧖🏿‍♂️", + "keywords" : [ + "dark skin tone", + "man in steamy room", + "man in steamy room: dark skin tone", + "sauna", + "steam room" + ] + }, "🧖‍♀️", + { + "keywords" : [ + "day", + "luxurious", + "pamper", + "relax", + "room", + "sauna", + "spa", + "steam", + "steambath", + "unwind", + "woman" + ], + "value" : "🧖‍♀️" + }, "🧖🏻‍♀️", + { + "value" : "🧖🏻‍♀️", + "keywords" : [ + "light skin tone", + "sauna", + "steam room", + "woman in steamy room", + "woman in steamy room: light skin tone" + ] + }, "🧖🏼‍♀️", + { + "keywords" : [ + "medium-light skin tone", + "sauna", + "steam room", + "woman in steamy room", + "woman in steamy room: medium-light skin tone" + ], + "value" : "🧖🏼‍♀️" + }, "🧖🏽‍♀️", + { + "value" : "🧖🏽‍♀️", + "keywords" : [ + "medium skin tone", + "sauna", + "steam room", + "woman in steamy room", + "woman in steamy room: medium skin tone" + ] + }, "🧖🏾‍♀️", + { + "keywords" : [ + "medium-dark skin tone", + "sauna", + "steam room", + "woman in steamy room", + "woman in steamy room: medium-dark skin tone" + ], + "value" : "🧖🏾‍♀️" + }, "🧖🏿‍♀️", + { + "value" : "🧖🏿‍♀️", + "keywords" : [ + "dark skin tone", + "sauna", + "steam room", + "woman in steamy room", + "woman in steamy room: dark skin tone" + ] + }, "🧗", + { + "keywords" : [ + "climb", + "climber", + "climbing", + "mountain", + "person", + "rock", + "scale", + "up" + ], + "value" : "🧗" + }, "🧗🏻", + { + "value" : "🧗🏻", + "keywords" : [ + "climber", + "light skin tone", + "person climbing", + "person climbing: light skin tone" + ] + }, "🧗🏼", + { + "value" : "🧗🏼", + "keywords" : [ + "climber", + "medium-light skin tone", + "person climbing", + "person climbing: medium-light skin tone" + ] + }, "🧗🏽", + { + "value" : "🧗🏽", + "keywords" : [ + "climber", + "medium skin tone", + "person climbing", + "person climbing: medium skin tone" + ] + }, "🧗🏾", + { + "value" : "🧗🏾", + "keywords" : [ + "climber", + "medium-dark skin tone", + "person climbing", + "person climbing: medium-dark skin tone" + ] + }, "🧗🏿", + { + "keywords" : [ + "climber", + "dark skin tone", + "person climbing", + "person climbing: dark skin tone" + ], + "value" : "🧗🏿" + }, "🧗‍♂️", + { + "keywords" : [ + "climb", + "climber", + "climbing", + "man", + "mountain", + "rock", + "scale", + "up" + ], + "value" : "🧗‍♂️" + }, "🧗🏻‍♂️", + { + "value" : "🧗🏻‍♂️", + "keywords" : [ + "climber", + "light skin tone", + "man climbing", + "man climbing: light skin tone" + ] + }, "🧗🏼‍♂️", + { + "keywords" : [ + "climber", + "man climbing", + "man climbing: medium-light skin tone", + "medium-light skin tone" + ], + "value" : "🧗🏼‍♂️" + }, "🧗🏽‍♂️", + { + "value" : "🧗🏽‍♂️", + "keywords" : [ + "climber", + "man climbing", + "man climbing: medium skin tone", + "medium skin tone" + ] + }, "🧗🏾‍♂️", + { + "value" : "🧗🏾‍♂️", + "keywords" : [ + "climber", + "man climbing", + "man climbing: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "🧗🏿‍♂️", + { + "keywords" : [ + "climber", + "dark skin tone", + "man climbing", + "man climbing: dark skin tone" + ], + "value" : "🧗🏿‍♂️" + }, "🧗‍♀️", + { + "value" : "🧗‍♀️", + "keywords" : [ + "climb", + "climber", + "climbing", + "mountain", + "rock", + "scale", + "up", + "woman" + ] + }, "🧗🏻‍♀️", + { + "value" : "🧗🏻‍♀️", + "keywords" : [ + "climber", + "light skin tone", + "woman climbing", + "woman climbing: light skin tone" + ] + }, "🧗🏼‍♀️", + { + "keywords" : [ + "climber", + "medium-light skin tone", + "woman climbing", + "woman climbing: medium-light skin tone" + ], + "value" : "🧗🏼‍♀️" + }, "🧗🏽‍♀️", + { + "keywords" : [ + "climber", + "medium skin tone", + "woman climbing", + "woman climbing: medium skin tone" + ], + "value" : "🧗🏽‍♀️" + }, "🧗🏾‍♀️", + { + "value" : "🧗🏾‍♀️", + "keywords" : [ + "climber", + "medium-dark skin tone", + "woman climbing", + "woman climbing: medium-dark skin tone" + ] + }, "🧗🏿‍♀️", + { + "value" : "🧗🏿‍♀️", + "keywords" : [ + "climber", + "dark skin tone", + "woman climbing", + "woman climbing: dark skin tone" + ] + }, "🤺", + { + "keywords" : [ + "fencer", + "fencing", + "person", + "sword" + ], + "value" : "🤺" + }, "🏇", + { + "value" : "🏇", + "keywords" : [ + "horse", + "jockey", + "racehorse", + "racing", + "riding", + "sport" + ] + }, "🏇🏻", + { + "keywords" : [ + "horse", + "horse racing: light skin tone", + "jockey", + "light skin tone", + "racehorse", + "racing" + ], + "value" : "🏇🏻" + }, "🏇🏼", + { + "value" : "🏇🏼", + "keywords" : [ + "horse", + "horse racing: medium-light skin tone", + "jockey", + "medium-light skin tone", + "racehorse", + "racing" + ] + }, "🏇🏽", + { + "value" : "🏇🏽", + "keywords" : [ + "horse", + "horse racing: medium skin tone", + "jockey", + "medium skin tone", + "racehorse", + "racing" + ] + }, "🏇🏾", + { + "keywords" : [ + "horse", + "horse racing: medium-dark skin tone", + "jockey", + "medium-dark skin tone", + "racehorse", + "racing" + ], + "value" : "🏇🏾" + }, "🏇🏿", + { + "keywords" : [ + "dark skin tone", + "horse", + "horse racing: dark skin tone", + "jockey", + "racehorse", + "racing" + ], + "value" : "🏇🏿" + }, "⛷️", + { + "value" : "⛷️", + "keywords" : [ + "ski", + "skier", + "snow" + ] + }, "🏂", + { + "keywords" : [ + "ski", + "snow", + "snowboard", + "snowboarder", + "sport" + ], + "value" : "🏂" + }, "🏂🏻", + { + "keywords" : [ + "light skin tone", + "ski", + "snow", + "snowboard", + "snowboarder", + "snowboarder: light skin tone" + ], + "value" : "🏂🏻" + }, "🏂🏼", + { + "value" : "🏂🏼", + "keywords" : [ + "medium-light skin tone", + "ski", + "snow", + "snowboard", + "snowboarder", + "snowboarder: medium-light skin tone" + ] + }, "🏂🏽", + { + "value" : "🏂🏽", + "keywords" : [ + "medium skin tone", + "ski", + "snow", + "snowboard", + "snowboarder", + "snowboarder: medium skin tone" + ] + }, "🏂🏾", + { + "value" : "🏂🏾", + "keywords" : [ + "medium-dark skin tone", + "ski", + "snow", + "snowboard", + "snowboarder", + "snowboarder: medium-dark skin tone" + ] + }, "🏂🏿", + { + "keywords" : [ + "dark skin tone", + "ski", + "snow", + "snowboard", + "snowboarder", + "snowboarder: dark skin tone" + ], + "value" : "🏂🏿" + }, "🏌️", + { + "value" : "🏌️", + "keywords" : [ + "ball", + "birdie", + "caddy", + "driving", + "golf", + "golfing", + "green", + "person", + "pga", + "putt", + "range", + "tee" + ] + }, "🏌🏻", + { + "keywords" : [ + "ball", + "golf", + "light skin tone", + "person golfing", + "person golfing: light skin tone" + ], + "value" : "🏌🏻" + }, "🏌🏼", + { + "keywords" : [ + "ball", + "golf", + "medium-light skin tone", + "person golfing", + "person golfing: medium-light skin tone" + ], + "value" : "🏌🏼" + }, "🏌🏽", + { + "value" : "🏌🏽", + "keywords" : [ + "ball", + "golf", + "medium skin tone", + "person golfing", + "person golfing: medium skin tone" + ] + }, "🏌🏾", + { + "keywords" : [ + "ball", + "golf", + "medium-dark skin tone", + "person golfing", + "person golfing: medium-dark skin tone" + ], + "value" : "🏌🏾" + }, "🏌🏿", + { + "keywords" : [ + "ball", + "dark skin tone", + "golf", + "person golfing", + "person golfing: dark skin tone" + ], + "value" : "🏌🏿" + }, "🏌️‍♂️", + { + "value" : "🏌️‍♂️", + "keywords" : [ + "ball", + "birdie", + "caddy", + "driving", + "golf", + "golfing", + "green", + "man", + "pga", + "putt", + "range", + "tee" + ] + }, "🏌🏻‍♂️", + { + "value" : "🏌🏻‍♂️", + "keywords" : [ + "golf", + "light skin tone", + "man", + "man golfing", + "man golfing: light skin tone" + ] + }, "🏌🏼‍♂️", + { + "value" : "🏌🏼‍♂️", + "keywords" : [ + "golf", + "man", + "man golfing", + "man golfing: medium-light skin tone", + "medium-light skin tone" + ] + }, "🏌🏽‍♂️", + { + "value" : "🏌🏽‍♂️", + "keywords" : [ + "golf", + "man", + "man golfing", + "man golfing: medium skin tone", + "medium skin tone" + ] + }, "🏌🏾‍♂️", + { + "value" : "🏌🏾‍♂️", + "keywords" : [ + "golf", + "man", + "man golfing", + "man golfing: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "🏌🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "golf", + "man", + "man golfing", + "man golfing: dark skin tone" + ], + "value" : "🏌🏿‍♂️" + }, "🏌️‍♀️", + { + "keywords" : [ + "ball", + "birdie", + "caddy", + "driving", + "golf", + "golfing", + "green", + "pga", + "putt", + "range", + "tee", + "woman" + ], + "value" : "🏌️‍♀️" + }, "🏌🏻‍♀️", + { + "keywords" : [ + "golf", + "light skin tone", + "woman", + "woman golfing", + "woman golfing: light skin tone" + ], + "value" : "🏌🏻‍♀️" + }, "🏌🏼‍♀️", + { + "keywords" : [ + "golf", + "medium-light skin tone", + "woman", + "woman golfing", + "woman golfing: medium-light skin tone" + ], + "value" : "🏌🏼‍♀️" + }, "🏌🏽‍♀️", + { + "value" : "🏌🏽‍♀️", + "keywords" : [ + "golf", + "medium skin tone", + "woman", + "woman golfing", + "woman golfing: medium skin tone" + ] + }, "🏌🏾‍♀️", + { + "keywords" : [ + "golf", + "medium-dark skin tone", + "woman", + "woman golfing", + "woman golfing: medium-dark skin tone" + ], + "value" : "🏌🏾‍♀️" + }, "🏌🏿‍♀️", + { + "value" : "🏌🏿‍♀️", + "keywords" : [ + "dark skin tone", + "golf", + "woman", + "woman golfing", + "woman golfing: dark skin tone" + ] + }, "🏄", + { + "keywords" : [ + "beach", + "ocean", + "person", + "sport", + "surf", + "surfer", + "surfing", + "swell", + "waves" + ], + "value" : "🏄" + }, "🏄🏻", + { + "value" : "🏄🏻", + "keywords" : [ + "light skin tone", + "person surfing", + "person surfing: light skin tone", + "surfing" + ] + }, "🏄🏼", + { + "value" : "🏄🏼", + "keywords" : [ + "medium-light skin tone", + "person surfing", + "person surfing: medium-light skin tone", + "surfing" + ] + }, "🏄🏽", + { + "keywords" : [ + "medium skin tone", + "person surfing", + "person surfing: medium skin tone", + "surfing" + ], + "value" : "🏄🏽" + }, "🏄🏾", + { + "keywords" : [ + "medium-dark skin tone", + "person surfing", + "person surfing: medium-dark skin tone", + "surfing" + ], + "value" : "🏄🏾" + }, "🏄🏿", + { + "value" : "🏄🏿", + "keywords" : [ + "dark skin tone", + "person surfing", + "person surfing: dark skin tone", + "surfing" + ] + }, "🏄‍♂️", + { + "value" : "🏄‍♂️", + "keywords" : [ + "beach", + "man", + "ocean", + "sport", + "surf", + "surfer", + "surfing", + "swell", + "waves" + ] + }, "🏄🏻‍♂️", + { + "value" : "🏄🏻‍♂️", + "keywords" : [ + "light skin tone", + "man", + "man surfing: light skin tone", + "surfing" + ] + }, "🏄🏼‍♂️", + { + "value" : "🏄🏼‍♂️", + "keywords" : [ + "man", + "man surfing: medium-light skin tone", + "medium-light skin tone", + "surfing" + ] + }, "🏄🏽‍♂️", + { + "value" : "🏄🏽‍♂️", + "keywords" : [ + "man", + "man surfing: medium skin tone", + "medium skin tone", + "surfing" + ] + }, "🏄🏾‍♂️", + { + "keywords" : [ + "man", + "man surfing: medium-dark skin tone", + "medium-dark skin tone", + "surfing" + ], + "value" : "🏄🏾‍♂️" + }, "🏄🏿‍♂️", + { + "value" : "🏄🏿‍♂️", + "keywords" : [ + "dark skin tone", + "man", + "man surfing: dark skin tone", + "surfing" + ] + }, "🏄‍♀️", + { + "keywords" : [ + "beach", + "ocean", + "person", + "sport", + "surf", + "surfer", + "surfing", + "swell", + "waves" + ], + "value" : "🏄‍♀️" + }, "🏄🏻‍♀️", + { + "value" : "🏄🏻‍♀️", + "keywords" : [ + "light skin tone", + "surfing", + "woman", + "woman surfing: light skin tone" + ] + }, "🏄🏼‍♀️", + { + "value" : "🏄🏼‍♀️", + "keywords" : [ + "medium-light skin tone", + "surfing", + "woman", + "woman surfing: medium-light skin tone" + ] + }, "🏄🏽‍♀️", + { + "keywords" : [ + "medium skin tone", + "surfing", + "woman", + "woman surfing: medium skin tone" + ], + "value" : "🏄🏽‍♀️" + }, "🏄🏾‍♀️", + { + "value" : "🏄🏾‍♀️", + "keywords" : [ + "medium-dark skin tone", + "surfing", + "woman", + "woman surfing: medium-dark skin tone" + ] + }, "🏄🏿‍♀️", + { + "keywords" : [ + "dark skin tone", + "surfing", + "woman", + "woman surfing: dark skin tone" + ], + "value" : "🏄🏿‍♀️" + }, "🚣", + { + "value" : "🚣", + "keywords" : [ + "boat", + "canoe", + "cruise", + "fishing", + "lake", + "oar", + "paddle", + "person", + "raft", + "river", + "row", + "rowboat", + "rowing" + ] + }, "🚣🏻", + { + "keywords" : [ + "boat", + "light skin tone", + "person rowing boat", + "person rowing boat: light skin tone", + "rowboat" + ], + "value" : "🚣🏻" + }, "🚣🏼", + { + "value" : "🚣🏼", + "keywords" : [ + "boat", + "medium-light skin tone", + "person rowing boat", + "person rowing boat: medium-light skin tone", + "rowboat" + ] + }, "🚣🏽", + { + "keywords" : [ + "boat", + "medium skin tone", + "person rowing boat", + "person rowing boat: medium skin tone", + "rowboat" + ], + "value" : "🚣🏽" + }, "🚣🏾", + { + "value" : "🚣🏾", + "keywords" : [ + "boat", + "medium-dark skin tone", + "person rowing boat", + "person rowing boat: medium-dark skin tone", + "rowboat" + ] + }, "🚣🏿", + { + "value" : "🚣🏿", + "keywords" : [ + "boat", + "dark skin tone", + "person rowing boat", + "person rowing boat: dark skin tone", + "rowboat" + ] + }, "🚣‍♂️", + { + "value" : "🚣‍♂️", + "keywords" : [ + "boat", + "canoe", + "cruise", + "fishing", + "lake", + "man", + "oar", + "paddle", + "raft", + "river", + "row", + "rowboat", + "rowing" + ] + }, "🚣🏻‍♂️", + { + "keywords" : [ + "boat", + "light skin tone", + "man", + "man rowing boat", + "man rowing boat: light skin tone", + "rowboat" + ], + "value" : "🚣🏻‍♂️" + }, "🚣🏼‍♂️", + { + "value" : "🚣🏼‍♂️", + "keywords" : [ + "boat", + "man", + "man rowing boat", + "man rowing boat: medium-light skin tone", + "medium-light skin tone", + "rowboat" + ] + }, "🚣🏽‍♂️", + { + "keywords" : [ + "boat", + "man", + "man rowing boat", + "man rowing boat: medium skin tone", + "medium skin tone", + "rowboat" + ], + "value" : "🚣🏽‍♂️" + }, "🚣🏾‍♂️", + { + "value" : "🚣🏾‍♂️", + "keywords" : [ + "boat", + "man", + "man rowing boat", + "man rowing boat: medium-dark skin tone", + "medium-dark skin tone", + "rowboat" + ] + }, "🚣🏿‍♂️", + { + "keywords" : [ + "boat", + "dark skin tone", + "man", + "man rowing boat", + "man rowing boat: dark skin tone", + "rowboat" + ], + "value" : "🚣🏿‍♂️" + }, "🚣‍♀️", + { + "keywords" : [ + "boat", + "canoe", + "cruise", + "fishing", + "lake", + "oar", + "paddle", + "raft", + "river", + "row", + "rowboat", + "rowing", + "woman" + ], + "value" : "🚣‍♀️" + }, "🚣🏻‍♀️", + { + "keywords" : [ + "boat", + "light skin tone", + "rowboat", + "woman", + "woman rowing boat", + "woman rowing boat: light skin tone" + ], + "value" : "🚣🏻‍♀️" + }, "🚣🏼‍♀️", + { + "value" : "🚣🏼‍♀️", + "keywords" : [ + "boat", + "medium-light skin tone", + "rowboat", + "woman", + "woman rowing boat", + "woman rowing boat: medium-light skin tone" + ] + }, "🚣🏽‍♀️", + { + "keywords" : [ + "boat", + "medium skin tone", + "rowboat", + "woman", + "woman rowing boat", + "woman rowing boat: medium skin tone" + ], + "value" : "🚣🏽‍♀️" + }, "🚣🏾‍♀️", + { + "value" : "🚣🏾‍♀️", + "keywords" : [ + "boat", + "medium-dark skin tone", + "rowboat", + "woman", + "woman rowing boat", + "woman rowing boat: medium-dark skin tone" + ] + }, "🚣🏿‍♀️", + { + "keywords" : [ + "boat", + "dark skin tone", + "rowboat", + "woman", + "woman rowing boat", + "woman rowing boat: dark skin tone" + ], + "value" : "🚣🏿‍♀️" + }, "🏊", + { + "value" : "🏊", + "keywords" : [ + "freestyle", + "person", + "sport", + "swim", + "swimmer", + "swimming", + "triathlon" + ] + }, "🏊🏻", + { + "keywords" : [ + "light skin tone", + "person swimming", + "person swimming: light skin tone", + "swim" + ], + "value" : "🏊🏻" + }, "🏊🏼", + { + "keywords" : [ + "medium-light skin tone", + "person swimming", + "person swimming: medium-light skin tone", + "swim" + ], + "value" : "🏊🏼" + }, "🏊🏽", + { + "value" : "🏊🏽", + "keywords" : [ + "medium skin tone", + "person swimming", + "person swimming: medium skin tone", + "swim" + ] + }, "🏊🏾", + { + "keywords" : [ + "medium-dark skin tone", + "person swimming", + "person swimming: medium-dark skin tone", + "swim" + ], + "value" : "🏊🏾" + }, "🏊🏿", + { + "keywords" : [ + "dark skin tone", + "person swimming", + "person swimming: dark skin tone", + "swim" + ], + "value" : "🏊🏿" + }, "🏊‍♂️", + { + "value" : "🏊‍♂️", + "keywords" : [ + "freestyle", + "man", + "sport", + "swim", + "swimmer", + "swimming", + "triathlon" + ] + }, "🏊🏻‍♂️", + { + "keywords" : [ + "light skin tone", + "man", + "man swimming", + "man swimming: light skin tone", + "swim" + ], + "value" : "🏊🏻‍♂️" + }, "🏊🏼‍♂️", + { + "value" : "🏊🏼‍♂️", + "keywords" : [ + "man", + "man swimming", + "man swimming: medium-light skin tone", + "medium-light skin tone", + "swim" + ] + }, "🏊🏽‍♂️", + { + "value" : "🏊🏽‍♂️", + "keywords" : [ + "man", + "man swimming", + "man swimming: medium skin tone", + "medium skin tone", + "swim" + ] + }, "🏊🏾‍♂️", + { + "keywords" : [ + "man", + "man swimming", + "man swimming: medium-dark skin tone", + "medium-dark skin tone", + "swim" + ], + "value" : "🏊🏾‍♂️" + }, "🏊🏿‍♂️", + { + "value" : "🏊🏿‍♂️", + "keywords" : [ + "dark skin tone", + "man", + "man swimming", + "man swimming: dark skin tone", + "swim" + ] + }, "🏊‍♀️", + { + "keywords" : [ + "freestyle", + "man", + "sport", + "swim", + "swimmer", + "swimming", + "triathlon" + ], + "value" : "🏊‍♀️" + }, "🏊🏻‍♀️", + { + "keywords" : [ + "light skin tone", + "swim", + "woman", + "woman swimming", + "woman swimming: light skin tone" + ], + "value" : "🏊🏻‍♀️" + }, "🏊🏼‍♀️", + { + "keywords" : [ + "medium-light skin tone", + "swim", + "woman", + "woman swimming", + "woman swimming: medium-light skin tone" + ], + "value" : "🏊🏼‍♀️" + }, "🏊🏽‍♀️", + { + "keywords" : [ + "medium skin tone", + "swim", + "woman", + "woman swimming", + "woman swimming: medium skin tone" + ], + "value" : "🏊🏽‍♀️" + }, "🏊🏾‍♀️", + { + "value" : "🏊🏾‍♀️", + "keywords" : [ + "medium-dark skin tone", + "swim", + "woman", + "woman swimming", + "woman swimming: medium-dark skin tone" + ] + }, "🏊🏿‍♀️", + { + "value" : "🏊🏿‍♀️", + "keywords" : [ + "dark skin tone", + "swim", + "woman", + "woman swimming", + "woman swimming: dark skin tone" + ] + }, "⛹️", + { + "keywords" : [ + "athletic", + "ball", + "basketball", + "bouncing", + "championship", + "dribble", + "net", + "person", + "player", + "throw" + ], + "value" : "⛹️" + }, "⛹🏻", + { + "keywords" : [ + "ball", + "light skin tone", + "person bouncing ball", + "person bouncing ball: light skin tone" + ], + "value" : "⛹🏻" + }, "⛹🏼", + { + "keywords" : [ + "ball", + "medium-light skin tone", + "person bouncing ball", + "person bouncing ball: medium-light skin tone" + ], + "value" : "⛹🏼" + }, "⛹🏽", + { + "value" : "⛹🏽", + "keywords" : [ + "ball", + "medium skin tone", + "person bouncing ball", + "person bouncing ball: medium skin tone" + ] + }, "⛹🏾", + { + "value" : "⛹🏾", + "keywords" : [ + "ball", + "medium-dark skin tone", + "person bouncing ball", + "person bouncing ball: medium-dark skin tone" + ] + }, "⛹🏿", + { + "keywords" : [ + "ball", + "dark skin tone", + "person bouncing ball", + "person bouncing ball: dark skin tone" + ], + "value" : "⛹🏿" + }, "⛹️‍♂️", + { + "keywords" : [ + "athletic", + "ball", + "basketball", + "bouncing", + "championship", + "dribble", + "man", + "net", + "player", + "throw" + ], + "value" : "⛹️‍♂️" + }, "⛹🏻‍♂️", + { + "value" : "⛹🏻‍♂️", + "keywords" : [ + "ball", + "light skin tone", + "man", + "man bouncing ball", + "man bouncing ball: light skin tone" + ] + }, "⛹🏼‍♂️", + { + "keywords" : [ + "ball", + "man", + "man bouncing ball", + "man bouncing ball: medium-light skin tone", + "medium-light skin tone" + ], + "value" : "⛹🏼‍♂️" + }, "⛹🏽‍♂️", + { + "value" : "⛹🏽‍♂️", + "keywords" : [ + "ball", + "man", + "man bouncing ball", + "man bouncing ball: medium skin tone", + "medium skin tone" + ] + }, "⛹🏾‍♂️", + { + "value" : "⛹🏾‍♂️", + "keywords" : [ + "ball", + "man", + "man bouncing ball", + "man bouncing ball: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "⛹🏿‍♂️", + { + "keywords" : [ + "ball", + "dark skin tone", + "man", + "man bouncing ball", + "man bouncing ball: dark skin tone" + ], + "value" : "⛹🏿‍♂️" + }, "⛹️‍♀️", + { + "keywords" : [ + "athletic", + "ball", + "basketball", + "bouncing", + "championship", + "dribble", + "net", + "player", + "throw", + "woman" + ], + "value" : "⛹️‍♀️" + }, "⛹🏻‍♀️", + { + "value" : "⛹🏻‍♀️", + "keywords" : [ + "ball", + "light skin tone", + "woman", + "woman bouncing ball", + "woman bouncing ball: light skin tone" + ] + }, "⛹🏼‍♀️", + { + "value" : "⛹🏼‍♀️", + "keywords" : [ + "ball", + "medium-light skin tone", + "woman", + "woman bouncing ball", + "woman bouncing ball: medium-light skin tone" + ] + }, "⛹🏽‍♀️", + { + "value" : "⛹🏽‍♀️", + "keywords" : [ + "ball", + "medium skin tone", + "woman", + "woman bouncing ball", + "woman bouncing ball: medium skin tone" + ] + }, "⛹🏾‍♀️", + { + "value" : "⛹🏾‍♀️", + "keywords" : [ + "ball", + "medium-dark skin tone", + "woman", + "woman bouncing ball", + "woman bouncing ball: medium-dark skin tone" + ] + }, "⛹🏿‍♀️", + { + "keywords" : [ + "ball", + "dark skin tone", + "woman", + "woman bouncing ball", + "woman bouncing ball: dark skin tone" + ], + "value" : "⛹🏿‍♀️" + }, "🏋️", + { + "value" : "🏋️", + "keywords" : [ + "barbell", + "bodybuilder", + "deadlift", + "lifter", + "lifting", + "person", + "powerlifting", + "weight", + "weightlifter", + "weights", + "workout" + ] + }, "🏋🏻", + { + "value" : "🏋🏻", + "keywords" : [ + "lifter", + "light skin tone", + "person lifting weights", + "person lifting weights: light skin tone", + "weight" + ] + }, "🏋🏼", + { + "keywords" : [ + "lifter", + "medium-light skin tone", + "person lifting weights", + "person lifting weights: medium-light skin tone", + "weight" + ], + "value" : "🏋🏼" + }, "🏋🏽", + { + "keywords" : [ + "lifter", + "medium skin tone", + "person lifting weights", + "person lifting weights: medium skin tone", + "weight" + ], + "value" : "🏋🏽" + }, "🏋🏾", + { + "keywords" : [ + "lifter", + "medium-dark skin tone", + "person lifting weights", + "person lifting weights: medium-dark skin tone", + "weight" + ], + "value" : "🏋🏾" + }, "🏋🏿", + { + "keywords" : [ + "dark skin tone", + "lifter", + "person lifting weights", + "person lifting weights: dark skin tone", + "weight" + ], + "value" : "🏋🏿" + }, "🏋️‍♂️", + { + "value" : "🏋️‍♂️", + "keywords" : [ + "barbell", + "bodybuilder", + "deadlift", + "lifter", + "lifting", + "man", + "powerlifting", + "weight", + "weightlifter", + "weights", + "workout" + ] + }, "🏋🏻‍♂️", + { + "value" : "🏋🏻‍♂️", + "keywords" : [ + "light skin tone", + "man", + "man lifting weights", + "man lifting weights: light skin tone", + "weight lifter" + ] + }, "🏋🏼‍♂️", + { + "value" : "🏋🏼‍♂️", + "keywords" : [ + "man", + "man lifting weights", + "man lifting weights: medium-light skin tone", + "medium-light skin tone", + "weight lifter" + ] + }, "🏋🏽‍♂️", + { + "value" : "🏋🏽‍♂️", + "keywords" : [ + "man", + "man lifting weights", + "man lifting weights: medium skin tone", + "medium skin tone", + "weight lifter" + ] + }, "🏋🏾‍♂️", + { + "keywords" : [ + "man", + "man lifting weights", + "man lifting weights: medium-dark skin tone", + "medium-dark skin tone", + "weight lifter" + ], + "value" : "🏋🏾‍♂️" + }, "🏋🏿‍♂️", + { + "value" : "🏋🏿‍♂️", + "keywords" : [ + "dark skin tone", + "man", + "man lifting weights", + "man lifting weights: dark skin tone", + "weight lifter" + ] + }, "🏋️‍♀️", + { + "value" : "🏋️‍♀️", + "keywords" : [ + "barbell", + "bodybuilder", + "deadlift", + "lifter", + "lifting", + "powerlifting", + "weight", + "weightlifter", + "weights", + "woman", + "workout" + ] + }, "🏋🏻‍♀️", + { + "value" : "🏋🏻‍♀️", + "keywords" : [ + "light skin tone", + "weight lifter", + "woman", + "woman lifting weights", + "woman lifting weights: light skin tone" + ] + }, "🏋🏼‍♀️", + { + "keywords" : [ + "medium-light skin tone", + "weight lifter", + "woman", + "woman lifting weights", + "woman lifting weights: medium-light skin tone" + ], + "value" : "🏋🏼‍♀️" + }, "🏋🏽‍♀️", + { + "keywords" : [ + "medium skin tone", + "weight lifter", + "woman", + "woman lifting weights", + "woman lifting weights: medium skin tone" + ], + "value" : "🏋🏽‍♀️" + }, "🏋🏾‍♀️", + { + "value" : "🏋🏾‍♀️", + "keywords" : [ + "medium-dark skin tone", + "weight lifter", + "woman", + "woman lifting weights", + "woman lifting weights: medium-dark skin tone" + ] + }, "🏋🏿‍♀️", + { + "value" : "🏋🏿‍♀️", + "keywords" : [ + "dark skin tone", + "weight lifter", + "woman", + "woman lifting weights", + "woman lifting weights: dark skin tone" + ] + }, "🚴", + { + "value" : "🚴", + "keywords" : [ + "bicycle", + "bicyclist", + "bike", + "biking", + "cycle", + "cyclist", + "person", + "riding", + "sport" + ] + }, "🚴🏻", + { + "value" : "🚴🏻", + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "light skin tone", + "person biking", + "person biking: light skin tone" + ] + }, "🚴🏼", + { + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "medium-light skin tone", + "person biking", + "person biking: medium-light skin tone" + ], + "value" : "🚴🏼" + }, "🚴🏽", + { + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "medium skin tone", + "person biking", + "person biking: medium skin tone" + ], + "value" : "🚴🏽" + }, "🚴🏾", + { + "value" : "🚴🏾", + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "medium-dark skin tone", + "person biking", + "person biking: medium-dark skin tone" + ] + }, "🚴🏿", + { + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "dark skin tone", + "person biking", + "person biking: dark skin tone" + ], + "value" : "🚴🏿" + }, "🚴‍♂️", + { + "value" : "🚴‍♂️", + "keywords" : [ + "bicycle", + "bicyclist", + "bike", + "biking", + "cycle", + "cyclist", + "man", + "riding", + "sport" + ] + }, "🚴🏻‍♂️", + { + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "light skin tone", + "man", + "man biking: light skin tone" + ], + "value" : "🚴🏻‍♂️" + }, "🚴🏼‍♂️", + { + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "man", + "man biking: medium-light skin tone", + "medium-light skin tone" + ], + "value" : "🚴🏼‍♂️" + }, "🚴🏽‍♂️", + { + "value" : "🚴🏽‍♂️", + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "man", + "man biking: medium skin tone", + "medium skin tone" + ] + }, "🚴🏾‍♂️", + { + "value" : "🚴🏾‍♂️", + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "man", + "man biking: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "🚴🏿‍♂️", + { + "value" : "🚴🏿‍♂️", + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "dark skin tone", + "man", + "man biking: dark skin tone" + ] + }, "🚴‍♀️", + { + "value" : "🚴‍♀️", + "keywords" : [ + "bicycle", + "bicyclist", + "bike", + "biking", + "cycle", + "cyclist", + "riding", + "sport", + "woman" + ] + }, "🚴🏻‍♀️", + { + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "light skin tone", + "woman", + "woman biking: light skin tone" + ], + "value" : "🚴🏻‍♀️" + }, "🚴🏼‍♀️", + { + "value" : "🚴🏼‍♀️", + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "medium-light skin tone", + "woman", + "woman biking: medium-light skin tone" + ] + }, "🚴🏽‍♀️", + { + "value" : "🚴🏽‍♀️", + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "medium skin tone", + "woman", + "woman biking: medium skin tone" + ] + }, "🚴🏾‍♀️", + { + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "medium-dark skin tone", + "woman", + "woman biking: medium-dark skin tone" + ], + "value" : "🚴🏾‍♀️" + }, "🚴🏿‍♀️", + { + "value" : "🚴🏿‍♀️", + "keywords" : [ + "bicycle", + "biking", + "cyclist", + "dark skin tone", + "woman", + "woman biking: dark skin tone" + ] + }, "🚵", + { + "value" : "🚵", + "keywords" : [ + "bicycle", + "bicyclist", + "bike", + "biking", + "cycle", + "cyclist", + "mountain", + "person", + "riding", + "sport" + ] + }, "🚵🏻", + { + "value" : "🚵🏻", + "keywords" : [ + "bicycle", + "bicyclist", + "bike", + "cyclist", + "light skin tone", + "mountain", + "person mountain biking", + "person mountain biking: light skin tone" + ] + }, "🚵🏼", + { + "keywords" : [ + "bicycle", + "bicyclist", + "bike", + "cyclist", + "medium-light skin tone", + "mountain", + "person mountain biking", + "person mountain biking: medium-light skin tone" + ], + "value" : "🚵🏼" + }, "🚵🏽", + { + "value" : "🚵🏽", + "keywords" : [ + "bicycle", + "bicyclist", + "bike", + "cyclist", + "medium skin tone", + "mountain", + "person mountain biking", + "person mountain biking: medium skin tone" + ] + }, "🚵🏾", + { + "value" : "🚵🏾", + "keywords" : [ + "bicycle", + "bicyclist", + "bike", + "cyclist", + "medium-dark skin tone", + "mountain", + "person mountain biking", + "person mountain biking: medium-dark skin tone" + ] + }, "🚵🏿", + { + "value" : "🚵🏿", + "keywords" : [ + "bicycle", + "bicyclist", + "bike", + "cyclist", + "dark skin tone", + "mountain", + "person mountain biking", + "person mountain biking: dark skin tone" + ] + }, "🚵‍♂️", + { + "value" : "🚵‍♂️", + "keywords" : [ + "bicycle", + "bicyclist", + "bike", + "biking", + "cycle", + "cyclist", + "man", + "mountain", + "riding", + "sport" + ] + }, "🚵🏻‍♂️", + { + "keywords" : [ + "bicycle", + "bike", + "cyclist", + "light skin tone", + "man", + "man mountain biking", + "man mountain biking: light skin tone", + "mountain" + ], + "value" : "🚵🏻‍♂️" + }, "🚵🏼‍♂️", + { + "value" : "🚵🏼‍♂️", + "keywords" : [ + "bicycle", + "bike", + "cyclist", + "man", + "man mountain biking", + "man mountain biking: medium-light skin tone", + "medium-light skin tone", + "mountain" + ] + }, "🚵🏽‍♂️", + { + "keywords" : [ + "bicycle", + "bike", + "cyclist", + "man", + "man mountain biking", + "man mountain biking: medium skin tone", + "medium skin tone", + "mountain" + ], + "value" : "🚵🏽‍♂️" + }, "🚵🏾‍♂️", + { + "value" : "🚵🏾‍♂️", + "keywords" : [ + "bicycle", + "bike", + "cyclist", + "man", + "man mountain biking", + "man mountain biking: medium-dark skin tone", + "medium-dark skin tone", + "mountain" + ] + }, "🚵🏿‍♂️", + { + "value" : "🚵🏿‍♂️", + "keywords" : [ + "bicycle", + "bike", + "cyclist", + "dark skin tone", + "man", + "man mountain biking", + "man mountain biking: dark skin tone", + "mountain" + ] + }, "🚵‍♀️", + { + "value" : "🚵‍♀️", + "keywords" : [ + "bicycle", + "bicyclist", + "bike", + "biking", + "cycle", + "cyclist", + "mountain", + "riding", + "sport", + "woman" + ] + }, "🚵🏻‍♀️", + { + "keywords" : [ + "bicycle", + "bike", + "biking", + "cyclist", + "light skin tone", + "mountain", + "woman", + "woman mountain biking: light skin tone" + ], + "value" : "🚵🏻‍♀️" + }, "🚵🏼‍♀️", + { + "keywords" : [ + "bicycle", + "bike", + "biking", + "cyclist", + "medium-light skin tone", + "mountain", + "woman", + "woman mountain biking: medium-light skin tone" + ], + "value" : "🚵🏼‍♀️" + }, "🚵🏽‍♀️", + { + "value" : "🚵🏽‍♀️", + "keywords" : [ + "bicycle", + "bike", + "biking", + "cyclist", + "medium skin tone", + "mountain", + "woman", + "woman mountain biking: medium skin tone" + ] + }, "🚵🏾‍♀️", + { + "keywords" : [ + "bicycle", + "bike", + "biking", + "cyclist", + "medium-dark skin tone", + "mountain", + "woman", + "woman mountain biking: medium-dark skin tone" + ], + "value" : "🚵🏾‍♀️" + }, "🚵🏿‍♀️", + { + "keywords" : [ + "bicycle", + "bike", + "biking", + "cyclist", + "dark skin tone", + "mountain", + "woman", + "woman mountain biking: dark skin tone" + ], + "value" : "🚵🏿‍♀️" + }, "🤸", + { + "keywords" : [ + "active", + "cartwheel", + "cartwheeling", + "excited", + "flip", + "gymnastics", + "happy", + "person", + "somersault" + ], + "value" : "🤸" + }, "🤸🏻", + { + "keywords" : [ + "cartwheel", + "gymnastics", + "light skin tone", + "person cartwheeling", + "person cartwheeling: light skin tone" + ], + "value" : "🤸🏻" + }, "🤸🏼", + { + "keywords" : [ + "cartwheel", + "gymnastics", + "medium-light skin tone", + "person cartwheeling", + "person cartwheeling: medium-light skin tone" + ], + "value" : "🤸🏼" + }, "🤸🏽", + { + "keywords" : [ + "cartwheel", + "gymnastics", + "medium skin tone", + "person cartwheeling", + "person cartwheeling: medium skin tone" + ], + "value" : "🤸🏽" + }, "🤸🏾", + { + "value" : "🤸🏾", + "keywords" : [ + "cartwheel", + "gymnastics", + "medium-dark skin tone", + "person cartwheeling", + "person cartwheeling: medium-dark skin tone" + ] + }, "🤸🏿", + { + "value" : "🤸🏿", + "keywords" : [ + "cartwheel", + "dark skin tone", + "gymnastics", + "person cartwheeling", + "person cartwheeling: dark skin tone" + ] + }, "🤸‍♂️", + { + "keywords" : [ + "active", + "cartwheel", + "cartwheeling", + "excited", + "flip", + "gymnastics", + "happy", + "man", + "somersault" + ], + "value" : "🤸‍♂️" + }, "🤸🏻‍♂️", + { + "value" : "🤸🏻‍♂️", + "keywords" : [ + "cartwheel", + "gymnastics", + "light skin tone", + "man", + "man cartwheeling", + "man cartwheeling: light skin tone" + ] + }, "🤸🏼‍♂️", + { + "keywords" : [ + "cartwheel", + "gymnastics", + "man", + "man cartwheeling", + "man cartwheeling: medium-light skin tone", + "medium-light skin tone" + ], + "value" : "🤸🏼‍♂️" + }, "🤸🏽‍♂️", + { + "value" : "🤸🏽‍♂️", + "keywords" : [ + "cartwheel", + "gymnastics", + "man", + "man cartwheeling", + "man cartwheeling: medium skin tone", + "medium skin tone" + ] + }, "🤸🏾‍♂️", + { + "keywords" : [ + "cartwheel", + "gymnastics", + "man", + "man cartwheeling", + "man cartwheeling: medium-dark skin tone", + "medium-dark skin tone" + ], + "value" : "🤸🏾‍♂️" + }, "🤸🏿‍♂️", + { + "keywords" : [ + "cartwheel", + "dark skin tone", + "gymnastics", + "man", + "man cartwheeling", + "man cartwheeling: dark skin tone" + ], + "value" : "🤸🏿‍♂️" + }, "🤸‍♀️", + { + "value" : "🤸‍♀️", + "keywords" : [ + "active", + "cartwheel", + "cartwheeling", + "excited", + "flip", + "gymnastics", + "happy", + "somersault", + "woman" + ] + }, "🤸🏻‍♀️", + { + "value" : "🤸🏻‍♀️", + "keywords" : [ + "cartwheel", + "gymnastics", + "light skin tone", + "woman", + "woman cartwheeling", + "woman cartwheeling: light skin tone" + ] + }, "🤸🏼‍♀️", + { + "value" : "🤸🏼‍♀️", + "keywords" : [ + "cartwheel", + "gymnastics", + "medium-light skin tone", + "woman", + "woman cartwheeling", + "woman cartwheeling: medium-light skin tone" + ] + }, "🤸🏽‍♀️", + { + "value" : "🤸🏽‍♀️", + "keywords" : [ + "cartwheel", + "gymnastics", + "medium skin tone", + "woman", + "woman cartwheeling", + "woman cartwheeling: medium skin tone" + ] + }, "🤸🏾‍♀️", + { + "keywords" : [ + "cartwheel", + "gymnastics", + "medium-dark skin tone", + "woman", + "woman cartwheeling", + "woman cartwheeling: medium-dark skin tone" + ], + "value" : "🤸🏾‍♀️" + }, "🤸🏿‍♀️", + { + "value" : "🤸🏿‍♀️", + "keywords" : [ + "cartwheel", + "dark skin tone", + "gymnastics", + "woman", + "woman cartwheeling", + "woman cartwheeling: dark skin tone" + ] + }, "🤼", + { + "keywords" : [ + "combat", + "duel", + "grapple", + "people", + "ring", + "tournament", + "wrestle", + "wrestling" + ], + "value" : "🤼" + }, "🤼‍♂️", + { + "value" : "🤼‍♂️", + "keywords" : [ + "combat", + "duel", + "grapple", + "men", + "ring", + "tournament", + "wrestle", + "wrestling" + ] + }, "🤼‍♀️", + { + "keywords" : [ + "combat", + "duel", + "grapple", + "ring", + "tournament", + "women", + "wrestle", + "wrestling" + ], + "value" : "🤼‍♀️" + }, "🤽", + { + "value" : "🤽", + "keywords" : [ + "person", + "playing", + "polo", + "sport", + "swimming", + "water", + "waterpolo" + ] + }, "🤽🏻", + { + "keywords" : [ + "light skin tone", + "person playing water polo", + "person playing water polo: light skin tone", + "polo", + "water" + ], + "value" : "🤽🏻" + }, "🤽🏼", + { + "keywords" : [ + "medium-light skin tone", + "person playing water polo", + "person playing water polo: medium-light skin tone", + "polo", + "water" + ], + "value" : "🤽🏼" + }, "🤽🏽", + { + "value" : "🤽🏽", + "keywords" : [ + "medium skin tone", + "person playing water polo", + "person playing water polo: medium skin tone", + "polo", + "water" + ] + }, "🤽🏾", + { + "value" : "🤽🏾", + "keywords" : [ + "medium-dark skin tone", + "person playing water polo", + "person playing water polo: medium-dark skin tone", + "polo", + "water" + ] + }, "🤽🏿", + { + "value" : "🤽🏿", + "keywords" : [ + "dark skin tone", + "person playing water polo", + "person playing water polo: dark skin tone", + "polo", + "water" + ] + }, "🤽‍♂️", + { + "value" : "🤽‍♂️", + "keywords" : [ + "man", + "playing", + "polo", + "sport", + "swimming", + "water", + "waterpolo" + ] + }, "🤽🏻‍♂️", + { + "value" : "🤽🏻‍♂️", + "keywords" : [ + "light skin tone", + "man", + "man playing water polo", + "man playing water polo: light skin tone", + "water polo" + ] + }, "🤽🏼‍♂️", + { + "value" : "🤽🏼‍♂️", + "keywords" : [ + "man", + "man playing water polo", + "man playing water polo: medium-light skin tone", + "medium-light skin tone", + "water polo" + ] + }, "🤽🏽‍♂️", + { + "keywords" : [ + "man", + "man playing water polo", + "man playing water polo: medium skin tone", + "medium skin tone", + "water polo" + ], + "value" : "🤽🏽‍♂️" + }, "🤽🏾‍♂️", + { + "value" : "🤽🏾‍♂️", + "keywords" : [ + "man", + "man playing water polo", + "man playing water polo: medium-dark skin tone", + "medium-dark skin tone", + "water polo" + ] + }, "🤽🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "man", + "man playing water polo", + "man playing water polo: dark skin tone", + "water polo" + ], + "value" : "🤽🏿‍♂️" + }, "🤽‍♀️", + { + "keywords" : [ + "playing", + "polo", + "sport", + "swimming", + "water", + "waterpolo", + "woman" + ], + "value" : "🤽‍♀️" + }, "🤽🏻‍♀️", + { + "value" : "🤽🏻‍♀️", + "keywords" : [ + "light skin tone", + "water polo", + "woman", + "woman playing water polo", + "woman playing water polo: light skin tone" + ] + }, "🤽🏼‍♀️", + { + "value" : "🤽🏼‍♀️", + "keywords" : [ + "medium-light skin tone", + "water polo", + "woman", + "woman playing water polo", + "woman playing water polo: medium-light skin tone" + ] + }, "🤽🏽‍♀️", + { + "keywords" : [ + "medium skin tone", + "water polo", + "woman", + "woman playing water polo", + "woman playing water polo: medium skin tone" + ], + "value" : "🤽🏽‍♀️" + }, "🤽🏾‍♀️", + { + "value" : "🤽🏾‍♀️", + "keywords" : [ + "medium-dark skin tone", + "water polo", + "woman", + "woman playing water polo", + "woman playing water polo: medium-dark skin tone" + ] + }, "🤽🏿‍♀️", + { + "keywords" : [ + "dark skin tone", + "water polo", + "woman", + "woman playing water polo", + "woman playing water polo: dark skin tone" + ], + "value" : "🤽🏿‍♀️" + }, "🤾", + { + "keywords" : [ + "athletics", + "ball", + "catch", + "chuck", + "handball", + "hurl", + "lob", + "person", + "pitch", + "playing", + "sport", + "throw", + "toss" + ], + "value" : "🤾" + }, "🤾🏻", + { + "value" : "🤾🏻", + "keywords" : [ + "ball", + "handball", + "light skin tone", + "person playing handball", + "person playing handball: light skin tone" + ] + }, "🤾🏼", + { + "value" : "🤾🏼", + "keywords" : [ + "ball", + "handball", + "medium-light skin tone", + "person playing handball", + "person playing handball: medium-light skin tone" + ] + }, "🤾🏽", + { + "value" : "🤾🏽", + "keywords" : [ + "ball", + "handball", + "medium skin tone", + "person playing handball", + "person playing handball: medium skin tone" + ] + }, "🤾🏾", + { + "value" : "🤾🏾", + "keywords" : [ + "ball", + "handball", + "medium-dark skin tone", + "person playing handball", + "person playing handball: medium-dark skin tone" + ] + }, "🤾🏿", + { + "keywords" : [ + "ball", + "dark skin tone", + "handball", + "person playing handball", + "person playing handball: dark skin tone" + ], + "value" : "🤾🏿" + }, "🤾‍♂️", + { + "keywords" : [ + "athletics", + "ball", + "catch", + "chuck", + "handball", + "hurl", + "lob", + "man", + "pitch", + "playing", + "sport", + "throw", + "toss" + ], + "value" : "🤾‍♂️" + }, "🤾🏻‍♂️", + { + "keywords" : [ + "handball", + "light skin tone", + "man", + "man playing handball", + "man playing handball: light skin tone" + ], + "value" : "🤾🏻‍♂️" + }, "🤾🏼‍♂️", + { + "keywords" : [ + "handball", + "man", + "man playing handball", + "man playing handball: medium-light skin tone", + "medium-light skin tone" + ], + "value" : "🤾🏼‍♂️" + }, "🤾🏽‍♂️", + { + "keywords" : [ + "handball", + "man", + "man playing handball", + "man playing handball: medium skin tone", + "medium skin tone" + ], + "value" : "🤾🏽‍♂️" + }, "🤾🏾‍♂️", + { + "keywords" : [ + "handball", + "man", + "man playing handball", + "man playing handball: medium-dark skin tone", + "medium-dark skin tone" + ], + "value" : "🤾🏾‍♂️" + }, "🤾🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "handball", + "man", + "man playing handball", + "man playing handball: dark skin tone" + ], + "value" : "🤾🏿‍♂️" + }, "🤾‍♀️", + { + "value" : "🤾‍♀️", + "keywords" : [ + "athletics", + "ball", + "catch", + "chuck", + "handball", + "hurl", + "lob", + "pitch", + "playing", + "sport", + "throw", + "toss", + "woman" + ] + }, "🤾🏻‍♀️", + { + "value" : "🤾🏻‍♀️", + "keywords" : [ + "handball", + "light skin tone", + "woman", + "woman playing handball", + "woman playing handball: light skin tone" + ] + }, "🤾🏼‍♀️", + { + "value" : "🤾🏼‍♀️", + "keywords" : [ + "handball", + "medium-light skin tone", + "woman", + "woman playing handball", + "woman playing handball: medium-light skin tone" + ] + }, "🤾🏽‍♀️", + { + "value" : "🤾🏽‍♀️", + "keywords" : [ + "handball", + "medium skin tone", + "woman", + "woman playing handball", + "woman playing handball: medium skin tone" + ] + }, "🤾🏾‍♀️", + { + "keywords" : [ + "handball", + "medium-dark skin tone", + "woman", + "woman playing handball", + "woman playing handball: medium-dark skin tone" + ], + "value" : "🤾🏾‍♀️" + }, "🤾🏿‍♀️", + { + "keywords" : [ + "dark skin tone", + "handball", + "woman", + "woman playing handball", + "woman playing handball: dark skin tone" + ], + "value" : "🤾🏿‍♀️" + }, "🤹", + { + "value" : "🤹", + "keywords" : [ + "act", + "balance", + "balancing", + "handle", + "juggle", + "juggling", + "manage", + "multitask", + "person", + "skill" + ] + }, "🤹🏻", + { + "value" : "🤹🏻", + "keywords" : [ + "balance", + "juggle", + "light skin tone", + "multitask", + "person juggling", + "person juggling: light skin tone", + "skill" + ] + }, "🤹🏼", + { + "keywords" : [ + "balance", + "juggle", + "medium-light skin tone", + "multitask", + "person juggling", + "person juggling: medium-light skin tone", + "skill" + ], + "value" : "🤹🏼" + }, "🤹🏽", + { + "keywords" : [ + "balance", + "juggle", + "medium skin tone", + "multitask", + "person juggling", + "person juggling: medium skin tone", + "skill" + ], + "value" : "🤹🏽" + }, "🤹🏾", + { + "value" : "🤹🏾", + "keywords" : [ + "balance", + "juggle", + "medium-dark skin tone", + "multitask", + "person juggling", + "person juggling: medium-dark skin tone", + "skill" + ] + }, "🤹🏿", + { + "keywords" : [ + "balance", + "dark skin tone", + "juggle", + "multitask", + "person juggling", + "person juggling: dark skin tone", + "skill" + ], + "value" : "🤹🏿" + }, "🤹‍♂️", + { + "value" : "🤹‍♂️", + "keywords" : [ + "act", + "balance", + "balancing", + "handle", + "juggle", + "juggling", + "man", + "manage", + "multitask", + "skill" + ] + }, "🤹🏻‍♂️", + { + "value" : "🤹🏻‍♂️", + "keywords" : [ + "juggling", + "light skin tone", + "man", + "man juggling: light skin tone", + "multitask" + ] + }, "🤹🏼‍♂️", + { + "keywords" : [ + "juggling", + "man", + "man juggling: medium-light skin tone", + "medium-light skin tone", + "multitask" + ], + "value" : "🤹🏼‍♂️" + }, "🤹🏽‍♂️", + { + "value" : "🤹🏽‍♂️", + "keywords" : [ + "juggling", + "man", + "man juggling: medium skin tone", + "medium skin tone", + "multitask" + ] + }, "🤹🏾‍♂️", + { + "value" : "🤹🏾‍♂️", + "keywords" : [ + "juggling", + "man", + "man juggling: medium-dark skin tone", + "medium-dark skin tone", + "multitask" + ] + }, "🤹🏿‍♂️", + { + "value" : "🤹🏿‍♂️", + "keywords" : [ + "dark skin tone", + "juggling", + "man", + "man juggling: dark skin tone", + "multitask" + ] + }, "🤹‍♀️", + { + "keywords" : [ + "act", + "balance", + "balancing", + "handle", + "juggle", + "juggling", + "manage", + "multitask", + "skill", + "woman" + ], + "value" : "🤹‍♀️" + }, "🤹🏻‍♀️", + { + "keywords" : [ + "juggling", + "light skin tone", + "multitask", + "woman", + "woman juggling: light skin tone" + ], + "value" : "🤹🏻‍♀️" + }, "🤹🏼‍♀️", + { + "keywords" : [ + "juggling", + "medium-light skin tone", + "multitask", + "woman", + "woman juggling: medium-light skin tone" + ], + "value" : "🤹🏼‍♀️" + }, "🤹🏽‍♀️", + { + "value" : "🤹🏽‍♀️", + "keywords" : [ + "juggling", + "medium skin tone", + "multitask", + "woman", + "woman juggling: medium skin tone" + ] + }, "🤹🏾‍♀️", + { + "value" : "🤹🏾‍♀️", + "keywords" : [ + "juggling", + "medium-dark skin tone", + "multitask", + "woman", + "woman juggling: medium-dark skin tone" + ] + }, "🤹🏿‍♀️", + { + "keywords" : [ + "dark skin tone", + "juggling", + "multitask", + "woman", + "woman juggling: dark skin tone" + ], + "value" : "🤹🏿‍♀️" + }, "🧘", + { + "value" : "🧘", + "keywords" : [ + "cross", + "legged", + "legs", + "lotus", + "meditation", + "peace", + "person", + "position", + "relax", + "serenity", + "yoga", + "yogi", + "zen" + ] + }, "🧘🏻", + { + "value" : "🧘🏻", + "keywords" : [ + "light skin tone", + "meditation", + "person in lotus position", + "person in lotus position: light skin tone", + "yoga" + ] + }, "🧘🏼", + { + "keywords" : [ + "meditation", + "medium-light skin tone", + "person in lotus position", + "person in lotus position: medium-light skin tone", + "yoga" + ], + "value" : "🧘🏼" + }, "🧘🏽", + { + "value" : "🧘🏽", + "keywords" : [ + "meditation", + "medium skin tone", + "person in lotus position", + "person in lotus position: medium skin tone", + "yoga" + ] + }, "🧘🏾", + { + "keywords" : [ + "meditation", + "medium-dark skin tone", + "person in lotus position", + "person in lotus position: medium-dark skin tone", + "yoga" + ], + "value" : "🧘🏾" + }, "🧘🏿", + { + "value" : "🧘🏿", + "keywords" : [ + "dark skin tone", + "meditation", + "person in lotus position", + "person in lotus position: dark skin tone", + "yoga" + ] + }, "🧘‍♂️", + { + "value" : "🧘‍♂️", + "keywords" : [ + "cross", + "legged", + "legs", + "lotus", + "man", + "meditation", + "peace", + "position", + "relax", + "serenity", + "yoga", + "yogi", + "zen" + ] + }, "🧘🏻‍♂️", + { + "keywords" : [ + "light skin tone", + "man in lotus position", + "man in lotus position: light skin tone", + "meditation", + "yoga" + ], + "value" : "🧘🏻‍♂️" + }, "🧘🏼‍♂️", + { + "keywords" : [ + "man in lotus position", + "man in lotus position: medium-light skin tone", + "meditation", + "medium-light skin tone", + "yoga" + ], + "value" : "🧘🏼‍♂️" + }, "🧘🏽‍♂️", + { + "value" : "🧘🏽‍♂️", + "keywords" : [ + "man in lotus position", + "man in lotus position: medium skin tone", + "meditation", + "medium skin tone", + "yoga" + ] + }, "🧘🏾‍♂️", + { + "value" : "🧘🏾‍♂️", + "keywords" : [ + "man in lotus position", + "man in lotus position: medium-dark skin tone", + "meditation", + "medium-dark skin tone", + "yoga" + ] + }, "🧘🏿‍♂️", + { + "keywords" : [ + "dark skin tone", + "man in lotus position", + "man in lotus position: dark skin tone", + "meditation", + "yoga" + ], + "value" : "🧘🏿‍♂️" + }, "🧘‍♀️", + { + "keywords" : [ + "cross", + "legged", + "legs", + "lotus", + "meditation", + "peace", + "position", + "relax", + "serenity", + "woman", + "yoga", + "yogi", + "zen" + ], + "value" : "🧘‍♀️" + }, "🧘🏻‍♀️", + { + "value" : "🧘🏻‍♀️", + "keywords" : [ + "light skin tone", + "meditation", + "woman in lotus position", + "woman in lotus position: light skin tone", + "yoga" + ] + }, "🧘🏼‍♀️", + { + "value" : "🧘🏼‍♀️", + "keywords" : [ + "meditation", + "medium-light skin tone", + "woman in lotus position", + "woman in lotus position: medium-light skin tone", + "yoga" + ] + }, "🧘🏽‍♀️", + { + "keywords" : [ + "meditation", + "medium skin tone", + "woman in lotus position", + "woman in lotus position: medium skin tone", + "yoga" + ], + "value" : "🧘🏽‍♀️" + }, "🧘🏾‍♀️", + { + "keywords" : [ + "meditation", + "medium-dark skin tone", + "woman in lotus position", + "woman in lotus position: medium-dark skin tone", + "yoga" + ], + "value" : "🧘🏾‍♀️" + }, "🧘🏿‍♀️", + { + "value" : "🧘🏿‍♀️", + "keywords" : [ + "dark skin tone", + "meditation", + "woman in lotus position", + "woman in lotus position: dark skin tone", + "yoga" + ] + }, "🛀", + { + "keywords" : [ + "bath", + "bathtub", + "person", + "taking", + "tub" + ], + "value" : "🛀" + }, "🛀🏻", + { + "keywords" : [ + "bath", + "bathtub", + "light skin tone", + "person taking bath", + "person taking bath: light skin tone" + ], + "value" : "🛀🏻" + }, "🛀🏼", + { + "keywords" : [ + "bath", + "bathtub", + "medium-light skin tone", + "person taking bath", + "person taking bath: medium-light skin tone" + ], + "value" : "🛀🏼" + }, "🛀🏽", + { + "keywords" : [ + "bath", + "bathtub", + "medium skin tone", + "person taking bath", + "person taking bath: medium skin tone" + ], + "value" : "🛀🏽" + }, "🛀🏾", + { + "value" : "🛀🏾", + "keywords" : [ + "bath", + "bathtub", + "medium-dark skin tone", + "person taking bath", + "person taking bath: medium-dark skin tone" + ] + }, "🛀🏿", + { + "value" : "🛀🏿", + "keywords" : [ + "bath", + "bathtub", + "dark skin tone", + "person taking bath", + "person taking bath: dark skin tone" + ] + }, "🛌", + { + "keywords" : [ + "bed", + "bedtime", + "good", + "goodnight", + "hotel", + "nap", + "night", + "person", + "sleep", + "tired", + "zzz" + ], + "value" : "🛌" + }, "🛌🏻", + { + "value" : "🛌🏻", + "keywords" : [ + "good night", + "hotel", + "light skin tone", + "person in bed", + "person in bed: light skin tone", + "sleep" + ] + }, "🛌🏼", + { + "keywords" : [ + "good night", + "hotel", + "medium-light skin tone", + "person in bed", + "person in bed: medium-light skin tone", + "sleep" + ], + "value" : "🛌🏼" + }, "🛌🏽", + { + "keywords" : [ + "good night", + "hotel", + "medium skin tone", + "person in bed", + "person in bed: medium skin tone", + "sleep" + ], + "value" : "🛌🏽" + }, "🛌🏾", + { + "value" : "🛌🏾", + "keywords" : [ + "good night", + "hotel", + "medium-dark skin tone", + "person in bed", + "person in bed: medium-dark skin tone", + "sleep" + ] + }, "🛌🏿", + { + "keywords" : [ + "dark skin tone", + "good night", + "hotel", + "person in bed", + "person in bed: dark skin tone", + "sleep" + ], + "value" : "🛌🏿" + }, "🧑‍🤝‍🧑", + { + "keywords" : [ + "bae", + "bestie", + "bff", + "couple", + "dating", + "flirt", + "friends", + "hand", + "hold", + "people", + "twins" + ], + "value" : "🧑‍🤝‍🧑" + }, "🧑🏻‍🤝‍🧑🏻", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "people holding hands", + "people holding hands: light skin tone", + "person" + ], + "value" : "🧑🏻‍🤝‍🧑🏻" + }, "🧑🏻‍🤝‍🧑🏼", + { + "value" : "🧑🏻‍🤝‍🧑🏼", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "medium-light skin tone", + "people holding hands", + "people holding hands: light skin tone, medium-light skin tone", + "person" + ] + }, "🧑🏻‍🤝‍🧑🏽", + { + "value" : "🧑🏻‍🤝‍🧑🏽", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "medium skin tone", + "people holding hands", + "people holding hands: light skin tone, medium skin tone", + "person" + ] + }, "🧑🏻‍🤝‍🧑🏾", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "medium-dark skin tone", + "people holding hands", + "people holding hands: light skin tone, medium-dark skin tone", + "person" + ], + "value" : "🧑🏻‍🤝‍🧑🏾" + }, "🧑🏻‍🤝‍🧑🏿", + { + "value" : "🧑🏻‍🤝‍🧑🏿", + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "light skin tone", + "people holding hands", + "people holding hands: light skin tone, dark skin tone", + "person" + ] + }, "🧑🏼‍🤝‍🧑🏻", + { + "value" : "🧑🏼‍🤝‍🧑🏻", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "medium-light skin tone", + "people holding hands", + "people holding hands: medium-light skin tone, light skin tone", + "person" + ] + }, "🧑🏼‍🤝‍🧑🏼", + { + "value" : "🧑🏼‍🤝‍🧑🏼", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "medium-light skin tone", + "people holding hands", + "people holding hands: medium-light skin tone", + "person" + ] + }, "🧑🏼‍🤝‍🧑🏽", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "medium skin tone", + "medium-light skin tone", + "people holding hands", + "people holding hands: medium-light skin tone, medium skin tone", + "person" + ], + "value" : "🧑🏼‍🤝‍🧑🏽" + }, "🧑🏼‍🤝‍🧑🏾", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "medium-dark skin tone", + "medium-light skin tone", + "people holding hands", + "people holding hands: medium-light skin tone, medium-dark skin tone", + "person" + ], + "value" : "🧑🏼‍🤝‍🧑🏾" + }, "🧑🏼‍🤝‍🧑🏿", + { + "value" : "🧑🏼‍🤝‍🧑🏿", + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "medium-light skin tone", + "people holding hands", + "people holding hands: medium-light skin tone, dark skin tone", + "person" + ] + }, "🧑🏽‍🤝‍🧑🏻", + { + "value" : "🧑🏽‍🤝‍🧑🏻", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "medium skin tone", + "people holding hands", + "people holding hands: medium skin tone, light skin tone", + "person" + ] + }, "🧑🏽‍🤝‍🧑🏼", + { + "value" : "🧑🏽‍🤝‍🧑🏼", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "medium skin tone", + "medium-light skin tone", + "people holding hands", + "people holding hands: medium skin tone, medium-light skin tone", + "person" + ] + }, "🧑🏽‍🤝‍🧑🏽", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "medium skin tone", + "people holding hands", + "people holding hands: medium skin tone", + "person" + ], + "value" : "🧑🏽‍🤝‍🧑🏽" + }, "🧑🏽‍🤝‍🧑🏾", + { + "value" : "🧑🏽‍🤝‍🧑🏾", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "medium skin tone", + "medium-dark skin tone", + "people holding hands", + "people holding hands: medium skin tone, medium-dark skin tone", + "person" + ] + }, "🧑🏽‍🤝‍🧑🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "medium skin tone", + "people holding hands", + "people holding hands: medium skin tone, dark skin tone", + "person" + ], + "value" : "🧑🏽‍🤝‍🧑🏿" + }, "🧑🏾‍🤝‍🧑🏻", + { + "value" : "🧑🏾‍🤝‍🧑🏻", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "medium-dark skin tone", + "people holding hands", + "people holding hands: medium-dark skin tone, light skin tone", + "person" + ] + }, "🧑🏾‍🤝‍🧑🏼", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "medium-dark skin tone", + "medium-light skin tone", + "people holding hands", + "people holding hands: medium-dark skin tone, medium-light skin tone", + "person" + ], + "value" : "🧑🏾‍🤝‍🧑🏼" + }, "🧑🏾‍🤝‍🧑🏽", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "medium skin tone", + "medium-dark skin tone", + "people holding hands", + "people holding hands: medium-dark skin tone, medium skin tone", + "person" + ], + "value" : "🧑🏾‍🤝‍🧑🏽" + }, "🧑🏾‍🤝‍🧑🏾", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "medium-dark skin tone", + "people holding hands", + "people holding hands: medium-dark skin tone", + "person" + ], + "value" : "🧑🏾‍🤝‍🧑🏾" + }, "🧑🏾‍🤝‍🧑🏿", + { + "value" : "🧑🏾‍🤝‍🧑🏿", + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "medium-dark skin tone", + "people holding hands", + "people holding hands: medium-dark skin tone, dark skin tone", + "person" + ] + }, "🧑🏿‍🤝‍🧑🏻", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "light skin tone", + "people holding hands", + "people holding hands: dark skin tone, light skin tone", + "person" + ], + "value" : "🧑🏿‍🤝‍🧑🏻" + }, "🧑🏿‍🤝‍🧑🏼", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "medium-light skin tone", + "people holding hands", + "people holding hands: dark skin tone, medium-light skin tone", + "person" + ], + "value" : "🧑🏿‍🤝‍🧑🏼" + }, "🧑🏿‍🤝‍🧑🏽", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "medium skin tone", + "people holding hands", + "people holding hands: dark skin tone, medium skin tone", + "person" + ], + "value" : "🧑🏿‍🤝‍🧑🏽" + }, "🧑🏿‍🤝‍🧑🏾", + { + "value" : "🧑🏿‍🤝‍🧑🏾", + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "medium-dark skin tone", + "people holding hands", + "people holding hands: dark skin tone, medium-dark skin tone", + "person" + ] + }, "🧑🏿‍🤝‍🧑🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "people holding hands", + "people holding hands: dark skin tone", + "person" + ], + "value" : "🧑🏿‍🤝‍🧑🏿" + }, "👭", + { + "value" : "👭", + "keywords" : [ + "bae", + "bestie", + "bff", + "couple", + "dating", + "flirt", + "friends", + "girls", + "hand", + "hold", + "sisters", + "twins", + "women" + ] + }, "👭🏻", + { + "value" : "👭🏻", + "keywords" : [ + "couple", + "hand", + "holding hands", + "light skin tone", + "women", + "women holding hands", + "women holding hands: light skin tone" + ] + }, "👩🏻‍🤝‍👩🏼", + { + "keywords" : [ + "couple", + "hand", + "holding hands", + "light skin tone", + "medium-light skin tone", + "women", + "women holding hands", + "women holding hands: light skin tone, medium-light skin tone" + ], + "value" : "👩🏻‍🤝‍👩🏼" + }, "👩🏻‍🤝‍👩🏽", + { + "value" : "👩🏻‍🤝‍👩🏽", + "keywords" : [ + "couple", + "hand", + "holding hands", + "light skin tone", + "medium skin tone", + "women", + "women holding hands", + "women holding hands: light skin tone, medium skin tone" + ] + }, "👩🏻‍🤝‍👩🏾", + { + "keywords" : [ + "couple", + "hand", + "holding hands", + "light skin tone", + "medium-dark skin tone", + "women", + "women holding hands", + "women holding hands: light skin tone, medium-dark skin tone" + ], + "value" : "👩🏻‍🤝‍👩🏾" + }, "👩🏻‍🤝‍👩🏿", + { + "value" : "👩🏻‍🤝‍👩🏿", + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "holding hands", + "light skin tone", + "women", + "women holding hands", + "women holding hands: light skin tone, dark skin tone" + ] + }, "👩🏼‍🤝‍👩🏻", + { + "value" : "👩🏼‍🤝‍👩🏻", + "keywords" : [ + "couple", + "hand", + "holding hands", + "light skin tone", + "medium-light skin tone", + "women", + "women holding hands", + "women holding hands: medium-light skin tone, light skin tone" + ] + }, "👭🏼", + { + "value" : "👭🏼", + "keywords" : [ + "couple", + "hand", + "holding hands", + "medium-light skin tone", + "women", + "women holding hands", + "women holding hands: medium-light skin tone" + ] + }, "👩🏼‍🤝‍👩🏽", + { + "keywords" : [ + "couple", + "hand", + "holding hands", + "medium skin tone", + "medium-light skin tone", + "women", + "women holding hands", + "women holding hands: medium-light skin tone, medium skin tone" + ], + "value" : "👩🏼‍🤝‍👩🏽" + }, "👩🏼‍🤝‍👩🏾", + { + "keywords" : [ + "couple", + "hand", + "holding hands", + "medium-dark skin tone", + "medium-light skin tone", + "women", + "women holding hands", + "women holding hands: medium-light skin tone, medium-dark skin tone" + ], + "value" : "👩🏼‍🤝‍👩🏾" + }, "👩🏼‍🤝‍👩🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "holding hands", + "medium-light skin tone", + "women", + "women holding hands", + "women holding hands: medium-light skin tone, dark skin tone" + ], + "value" : "👩🏼‍🤝‍👩🏿" + }, "👩🏽‍🤝‍👩🏻", + { + "keywords" : [ + "couple", + "hand", + "holding hands", + "light skin tone", + "medium skin tone", + "women", + "women holding hands", + "women holding hands: medium skin tone, light skin tone" + ], + "value" : "👩🏽‍🤝‍👩🏻" + }, "👩🏽‍🤝‍👩🏼", + { + "keywords" : [ + "couple", + "hand", + "holding hands", + "medium skin tone", + "medium-light skin tone", + "women", + "women holding hands", + "women holding hands: medium skin tone, medium-light skin tone" + ], + "value" : "👩🏽‍🤝‍👩🏼" + }, "👭🏽", + { + "keywords" : [ + "couple", + "hand", + "holding hands", + "medium skin tone", + "women", + "women holding hands", + "women holding hands: medium skin tone" + ], + "value" : "👭🏽" + }, "👩🏽‍🤝‍👩🏾", + { + "value" : "👩🏽‍🤝‍👩🏾", + "keywords" : [ + "couple", + "hand", + "holding hands", + "medium skin tone", + "medium-dark skin tone", + "women", + "women holding hands", + "women holding hands: medium skin tone, medium-dark skin tone" + ] + }, "👩🏽‍🤝‍👩🏿", + { + "value" : "👩🏽‍🤝‍👩🏿", + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "holding hands", + "medium skin tone", + "women", + "women holding hands", + "women holding hands: medium skin tone, dark skin tone" + ] + }, "👩🏾‍🤝‍👩🏻", + { + "value" : "👩🏾‍🤝‍👩🏻", + "keywords" : [ + "couple", + "hand", + "holding hands", + "light skin tone", + "medium-dark skin tone", + "women", + "women holding hands", + "women holding hands: medium-dark skin tone, light skin tone" + ] + }, "👩🏾‍🤝‍👩🏼", + { + "keywords" : [ + "couple", + "hand", + "holding hands", + "medium-dark skin tone", + "medium-light skin tone", + "women", + "women holding hands", + "women holding hands: medium-dark skin tone, medium-light skin tone" + ], + "value" : "👩🏾‍🤝‍👩🏼" + }, "👩🏾‍🤝‍👩🏽", + { + "value" : "👩🏾‍🤝‍👩🏽", + "keywords" : [ + "couple", + "hand", + "holding hands", + "medium skin tone", + "medium-dark skin tone", + "women", + "women holding hands", + "women holding hands: medium-dark skin tone, medium skin tone" + ] + }, "👭🏾", + { + "value" : "👭🏾", + "keywords" : [ + "couple", + "hand", + "holding hands", + "medium-dark skin tone", + "women", + "women holding hands", + "women holding hands: medium-dark skin tone" + ] + }, "👩🏾‍🤝‍👩🏿", + { + "value" : "👩🏾‍🤝‍👩🏿", + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "holding hands", + "medium-dark skin tone", + "women", + "women holding hands", + "women holding hands: medium-dark skin tone, dark skin tone" + ] + }, "👩🏿‍🤝‍👩🏻", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "holding hands", + "light skin tone", + "women", + "women holding hands", + "women holding hands: dark skin tone, light skin tone" + ], + "value" : "👩🏿‍🤝‍👩🏻" + }, "👩🏿‍🤝‍👩🏼", + { + "value" : "👩🏿‍🤝‍👩🏼", + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "holding hands", + "medium-light skin tone", + "women", + "women holding hands", + "women holding hands: dark skin tone, medium-light skin tone" + ] + }, "👩🏿‍🤝‍👩🏽", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "holding hands", + "medium skin tone", + "women", + "women holding hands", + "women holding hands: dark skin tone, medium skin tone" + ], + "value" : "👩🏿‍🤝‍👩🏽" + }, "👩🏿‍🤝‍👩🏾", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "holding hands", + "medium-dark skin tone", + "women", + "women holding hands", + "women holding hands: dark skin tone, medium-dark skin tone" + ], + "value" : "👩🏿‍🤝‍👩🏾" + }, "👭🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "holding hands", + "women", + "women holding hands", + "women holding hands: dark skin tone" + ], + "value" : "👭🏿" + }, "👫", + { + "keywords" : [ + "bae", + "bestie", + "bff", + "couple", + "dating", + "flirt", + "friends", + "hand", + "hold", + "man", + "twins", + "woman" + ], + "value" : "👫" + }, "👫🏻", + { + "value" : "👫🏻", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "man", + "woman", + "woman and man holding hands", + "woman and man holding hands: light skin tone" + ] + }, "👩🏻‍🤝‍👨🏼", + { + "value" : "👩🏻‍🤝‍👨🏼", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "man", + "medium-light skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: light skin tone, medium-light skin tone" + ] + }, "👩🏻‍🤝‍👨🏽", + { + "value" : "👩🏻‍🤝‍👨🏽", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "man", + "medium skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: light skin tone, medium skin tone" + ] + }, "👩🏻‍🤝‍👨🏾", + { + "value" : "👩🏻‍🤝‍👨🏾", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "man", + "medium-dark skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: light skin tone, medium-dark skin tone" + ] + }, "👩🏻‍🤝‍👨🏿", + { + "value" : "👩🏻‍🤝‍👨🏿", + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "light skin tone", + "man", + "woman", + "woman and man holding hands", + "woman and man holding hands: light skin tone, dark skin tone" + ] + }, "👩🏼‍🤝‍👨🏻", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "man", + "medium-light skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium-light skin tone, light skin tone" + ], + "value" : "👩🏼‍🤝‍👨🏻" + }, "👫🏼", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "man", + "medium-light skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium-light skin tone" + ], + "value" : "👫🏼" + }, "👩🏼‍🤝‍👨🏽", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "man", + "medium skin tone", + "medium-light skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium-light skin tone, medium skin tone" + ], + "value" : "👩🏼‍🤝‍👨🏽" + }, "👩🏼‍🤝‍👨🏾", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "man", + "medium-dark skin tone", + "medium-light skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium-light skin tone, medium-dark skin tone" + ], + "value" : "👩🏼‍🤝‍👨🏾" + }, "👩🏼‍🤝‍👨🏿", + { + "value" : "👩🏼‍🤝‍👨🏿", + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "man", + "medium-light skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium-light skin tone, dark skin tone" + ] + }, "👩🏽‍🤝‍👨🏻", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "man", + "medium skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium skin tone, light skin tone" + ], + "value" : "👩🏽‍🤝‍👨🏻" + }, "👩🏽‍🤝‍👨🏼", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "man", + "medium skin tone", + "medium-light skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium skin tone, medium-light skin tone" + ], + "value" : "👩🏽‍🤝‍👨🏼" + }, "👫🏽", + { + "value" : "👫🏽", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "man", + "medium skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium skin tone" + ] + }, "👩🏽‍🤝‍👨🏾", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "man", + "medium skin tone", + "medium-dark skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium skin tone, medium-dark skin tone" + ], + "value" : "👩🏽‍🤝‍👨🏾" + }, "👩🏽‍🤝‍👨🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "man", + "medium skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium skin tone, dark skin tone" + ], + "value" : "👩🏽‍🤝‍👨🏿" + }, "👩🏾‍🤝‍👨🏻", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "light skin tone", + "man", + "medium-dark skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium-dark skin tone, light skin tone" + ], + "value" : "👩🏾‍🤝‍👨🏻" + }, "👩🏾‍🤝‍👨🏼", + { + "value" : "👩🏾‍🤝‍👨🏼", + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "man", + "medium-dark skin tone", + "medium-light skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium-dark skin tone, medium-light skin tone" + ] + }, "👩🏾‍🤝‍👨🏽", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "man", + "medium skin tone", + "medium-dark skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium-dark skin tone, medium skin tone" + ], + "value" : "👩🏾‍🤝‍👨🏽" + }, "👫🏾", + { + "keywords" : [ + "couple", + "hand", + "hold", + "holding hands", + "man", + "medium-dark skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium-dark skin tone" + ], + "value" : "👫🏾" + }, "👩🏾‍🤝‍👨🏿", + { + "value" : "👩🏾‍🤝‍👨🏿", + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "man", + "medium-dark skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: medium-dark skin tone, dark skin tone" + ] + }, "👩🏿‍🤝‍👨🏻", + { + "value" : "👩🏿‍🤝‍👨🏻", + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "light skin tone", + "man", + "woman", + "woman and man holding hands", + "woman and man holding hands: dark skin tone, light skin tone" + ] + }, "👩🏿‍🤝‍👨🏼", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "man", + "medium-light skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: dark skin tone, medium-light skin tone" + ], + "value" : "👩🏿‍🤝‍👨🏼" + }, "👩🏿‍🤝‍👨🏽", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "man", + "medium skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: dark skin tone, medium skin tone" + ], + "value" : "👩🏿‍🤝‍👨🏽" + }, "👩🏿‍🤝‍👨🏾", + { + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "man", + "medium-dark skin tone", + "woman", + "woman and man holding hands", + "woman and man holding hands: dark skin tone, medium-dark skin tone" + ], + "value" : "👩🏿‍🤝‍👨🏾" + }, "👫🏿", + { + "value" : "👫🏿", + "keywords" : [ + "couple", + "dark skin tone", + "hand", + "hold", + "holding hands", + "man", + "woman", + "woman and man holding hands", + "woman and man holding hands: dark skin tone" + ] + }, "👬", + { + "keywords" : [ + "bae", + "bestie", + "bff", + "boys", + "brothers", + "couple", + "dating", + "flirt", + "friends", + "hand", + "hold", + "men", + "twins" + ], + "value" : "👬" + }, "👬🏻", + { + "value" : "👬🏻", + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "light skin tone", + "man", + "men", + "men holding hands", + "men holding hands: light skin tone", + "twins", + "zodiac" + ] + }, "👨🏻‍🤝‍👨🏼", + { + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "light skin tone", + "man", + "medium-light skin tone", + "men", + "men holding hands", + "men holding hands: light skin tone, medium-light skin tone", + "twins", + "zodiac" + ], + "value" : "👨🏻‍🤝‍👨🏼" + }, "👨🏻‍🤝‍👨🏽", + { + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "light skin tone", + "man", + "medium skin tone", + "men", + "men holding hands", + "men holding hands: light skin tone, medium skin tone", + "twins", + "zodiac" + ], + "value" : "👨🏻‍🤝‍👨🏽" + }, "👨🏻‍🤝‍👨🏾", + { + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "light skin tone", + "man", + "medium-dark skin tone", + "men", + "men holding hands", + "men holding hands: light skin tone, medium-dark skin tone", + "twins", + "zodiac" + ], + "value" : "👨🏻‍🤝‍👨🏾" + }, "👨🏻‍🤝‍👨🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "Gemini", + "holding hands", + "light skin tone", + "man", + "men", + "men holding hands", + "men holding hands: light skin tone, dark skin tone", + "twins", + "zodiac" + ], + "value" : "👨🏻‍🤝‍👨🏿" + }, "👨🏼‍🤝‍👨🏻", + { + "value" : "👨🏼‍🤝‍👨🏻", + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "light skin tone", + "man", + "medium-light skin tone", + "men", + "men holding hands", + "men holding hands: medium-light skin tone, light skin tone", + "twins", + "zodiac" + ] + }, "👬🏼", + { + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "man", + "medium-light skin tone", + "men", + "men holding hands", + "men holding hands: medium-light skin tone", + "twins", + "zodiac" + ], + "value" : "👬🏼" + }, "👨🏼‍🤝‍👨🏽", + { + "value" : "👨🏼‍🤝‍👨🏽", + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "man", + "medium skin tone", + "medium-light skin tone", + "men", + "men holding hands", + "men holding hands: medium-light skin tone, medium skin tone", + "twins", + "zodiac" + ] + }, "👨🏼‍🤝‍👨🏾", + { + "value" : "👨🏼‍🤝‍👨🏾", + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "man", + "medium-dark skin tone", + "medium-light skin tone", + "men", + "men holding hands", + "men holding hands: medium-light skin tone, medium-dark skin tone", + "twins", + "zodiac" + ] + }, "👨🏼‍🤝‍👨🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "Gemini", + "holding hands", + "man", + "medium-light skin tone", + "men", + "men holding hands", + "men holding hands: medium-light skin tone, dark skin tone", + "twins", + "zodiac" + ], + "value" : "👨🏼‍🤝‍👨🏿" + }, "👨🏽‍🤝‍👨🏻", + { + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "light skin tone", + "man", + "medium skin tone", + "men", + "men holding hands", + "men holding hands: medium skin tone, light skin tone", + "twins", + "zodiac" + ], + "value" : "👨🏽‍🤝‍👨🏻" + }, "👨🏽‍🤝‍👨🏼", + { + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "man", + "medium skin tone", + "medium-light skin tone", + "men", + "men holding hands", + "men holding hands: medium skin tone, medium-light skin tone", + "twins", + "zodiac" + ], + "value" : "👨🏽‍🤝‍👨🏼" + }, "👬🏽", + { + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "man", + "medium skin tone", + "men", + "men holding hands", + "men holding hands: medium skin tone", + "twins", + "zodiac" + ], + "value" : "👬🏽" + }, "👨🏽‍🤝‍👨🏾", + { + "value" : "👨🏽‍🤝‍👨🏾", + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "man", + "medium skin tone", + "medium-dark skin tone", + "men", + "men holding hands", + "men holding hands: medium skin tone, medium-dark skin tone", + "twins", + "zodiac" + ] + }, "👨🏽‍🤝‍👨🏿", + { + "value" : "👨🏽‍🤝‍👨🏿", + "keywords" : [ + "couple", + "dark skin tone", + "Gemini", + "holding hands", + "man", + "medium skin tone", + "men", + "men holding hands", + "men holding hands: medium skin tone, dark skin tone", + "twins", + "zodiac" + ] + }, "👨🏾‍🤝‍👨🏻", + { + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "light skin tone", + "man", + "medium-dark skin tone", + "men", + "men holding hands", + "men holding hands: medium-dark skin tone, light skin tone", + "twins", + "zodiac" + ], + "value" : "👨🏾‍🤝‍👨🏻" + }, "👨🏾‍🤝‍👨🏼", + { + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "man", + "medium-dark skin tone", + "medium-light skin tone", + "men", + "men holding hands", + "men holding hands: medium-dark skin tone, medium-light skin tone", + "twins", + "zodiac" + ], + "value" : "👨🏾‍🤝‍👨🏼" + }, "👨🏾‍🤝‍👨🏽", + { + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "man", + "medium skin tone", + "medium-dark skin tone", + "men", + "men holding hands", + "men holding hands: medium-dark skin tone, medium skin tone", + "twins", + "zodiac" + ], + "value" : "👨🏾‍🤝‍👨🏽" + }, "👬🏾", + { + "value" : "👬🏾", + "keywords" : [ + "couple", + "Gemini", + "holding hands", + "man", + "medium-dark skin tone", + "men", + "men holding hands", + "men holding hands: medium-dark skin tone", + "twins", + "zodiac" + ] + }, "👨🏾‍🤝‍👨🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "Gemini", + "holding hands", + "man", + "medium-dark skin tone", + "men", + "men holding hands", + "men holding hands: medium-dark skin tone, dark skin tone", + "twins", + "zodiac" + ], + "value" : "👨🏾‍🤝‍👨🏿" + }, "👨🏿‍🤝‍👨🏻", + { + "keywords" : [ + "couple", + "dark skin tone", + "Gemini", + "holding hands", + "light skin tone", + "man", + "men", + "men holding hands", + "men holding hands: dark skin tone, light skin tone", + "twins", + "zodiac" + ], + "value" : "👨🏿‍🤝‍👨🏻" + }, "👨🏿‍🤝‍👨🏼", + { + "value" : "👨🏿‍🤝‍👨🏼", + "keywords" : [ + "couple", + "dark skin tone", + "Gemini", + "holding hands", + "man", + "medium-light skin tone", + "men", + "men holding hands", + "men holding hands: dark skin tone, medium-light skin tone", + "twins", + "zodiac" + ] + }, "👨🏿‍🤝‍👨🏽", + { + "value" : "👨🏿‍🤝‍👨🏽", + "keywords" : [ + "couple", + "dark skin tone", + "Gemini", + "holding hands", + "man", + "medium skin tone", + "men", + "men holding hands", + "men holding hands: dark skin tone, medium skin tone", + "twins", + "zodiac" + ] + }, "👨🏿‍🤝‍👨🏾", + { + "keywords" : [ + "couple", + "dark skin tone", + "Gemini", + "holding hands", + "man", + "medium-dark skin tone", + "men", + "men holding hands", + "men holding hands: dark skin tone, medium-dark skin tone", + "twins", + "zodiac" + ], + "value" : "👨🏿‍🤝‍👨🏾" + }, "👬🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "Gemini", + "holding hands", + "man", + "men", + "men holding hands", + "men holding hands: dark skin tone", + "twins", + "zodiac" + ], + "value" : "👬🏿" + }, "💏", + { + "value" : "💏", + "keywords" : [ + "anniversary", + "babe", + "bae", + "couple", + "date", + "dating", + "heart", + "kiss", + "love", + "mwah", + "person", + "romance", + "together", + "xoxo" + ] + }, "💏🏻", + { + "value" : "💏🏻", + "keywords" : [ + "couple", + "kiss", + "kiss: light skin tone", + "light skin tone" + ] + }, "💏🏼", + { + "value" : "💏🏼", + "keywords" : [ + "couple", + "kiss", + "kiss: medium-light skin tone", + "medium-light skin tone" + ] + }, "💏🏽", + { + "keywords" : [ + "couple", + "kiss", + "kiss: medium skin tone", + "medium skin tone" + ], + "value" : "💏🏽" + }, "💏🏾", + { + "value" : "💏🏾", + "keywords" : [ + "couple", + "kiss", + "kiss: medium-dark skin tone", + "medium-dark skin tone" + ] + }, "💏🏿", + { + "value" : "💏🏿", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: dark skin tone" + ] + }, "🧑🏻‍❤️‍💋‍🧑🏼", + { + "value" : "🧑🏻‍❤️‍💋‍🧑🏼", + "keywords" : [ + "couple", + "kiss", + "kiss: person, person, light skin tone, medium-light skin tone", + "light skin tone", + "medium-light skin tone", + "person" + ] + }, "🧑🏻‍❤️‍💋‍🧑🏽", + { + "keywords" : [ + "couple", + "kiss", + "kiss: person, person, light skin tone, medium skin tone", + "light skin tone", + "medium skin tone", + "person" + ], + "value" : "🧑🏻‍❤️‍💋‍🧑🏽" + }, "🧑🏻‍❤️‍💋‍🧑🏾", + { + "value" : "🧑🏻‍❤️‍💋‍🧑🏾", + "keywords" : [ + "couple", + "kiss", + "kiss: person, person, light skin tone, medium-dark skin tone", + "light skin tone", + "medium-dark skin tone", + "person" + ] + }, "🧑🏻‍❤️‍💋‍🧑🏿", + { + "value" : "🧑🏻‍❤️‍💋‍🧑🏿", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: person, person, light skin tone, dark skin tone", + "light skin tone", + "person" + ] + }, "🧑🏼‍❤️‍💋‍🧑🏻", + { + "value" : "🧑🏼‍❤️‍💋‍🧑🏻", + "keywords" : [ + "couple", + "kiss", + "kiss: person, person, medium-light skin tone, light skin tone", + "light skin tone", + "medium-light skin tone", + "person" + ] + }, "🧑🏼‍❤️‍💋‍🧑🏽", + { + "keywords" : [ + "couple", + "kiss", + "kiss: person, person, medium-light skin tone, medium skin tone", + "medium skin tone", + "medium-light skin tone", + "person" + ], + "value" : "🧑🏼‍❤️‍💋‍🧑🏽" + }, "🧑🏼‍❤️‍💋‍🧑🏾", + { + "value" : "🧑🏼‍❤️‍💋‍🧑🏾", + "keywords" : [ + "couple", + "kiss", + "kiss: person, person, medium-light skin tone, medium-dark skin tone", + "medium-dark skin tone", + "medium-light skin tone", + "person" + ] + }, "🧑🏼‍❤️‍💋‍🧑🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: person, person, medium-light skin tone, dark skin tone", + "medium-light skin tone", + "person" + ], + "value" : "🧑🏼‍❤️‍💋‍🧑🏿" + }, "🧑🏽‍❤️‍💋‍🧑🏻", + { + "keywords" : [ + "couple", + "kiss", + "kiss: person, person, medium skin tone, light skin tone", + "light skin tone", + "medium skin tone", + "person" + ], + "value" : "🧑🏽‍❤️‍💋‍🧑🏻" + }, "🧑🏽‍❤️‍💋‍🧑🏼", + { + "keywords" : [ + "couple", + "kiss", + "kiss: person, person, medium skin tone, medium-light skin tone", + "medium skin tone", + "medium-light skin tone", + "person" + ], + "value" : "🧑🏽‍❤️‍💋‍🧑🏼" + }, "🧑🏽‍❤️‍💋‍🧑🏾", + { + "keywords" : [ + "couple", + "kiss", + "kiss: person, person, medium skin tone, medium-dark skin tone", + "medium skin tone", + "medium-dark skin tone", + "person" + ], + "value" : "🧑🏽‍❤️‍💋‍🧑🏾" + }, "🧑🏽‍❤️‍💋‍🧑🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: person, person, medium skin tone, dark skin tone", + "medium skin tone", + "person" + ], + "value" : "🧑🏽‍❤️‍💋‍🧑🏿" + }, "🧑🏾‍❤️‍💋‍🧑🏻", + { + "value" : "🧑🏾‍❤️‍💋‍🧑🏻", + "keywords" : [ + "couple", + "kiss", + "kiss: person, person, medium-dark skin tone, light skin tone", + "light skin tone", + "medium-dark skin tone", + "person" + ] + }, "🧑🏾‍❤️‍💋‍🧑🏼", + { + "keywords" : [ + "couple", + "kiss", + "kiss: person, person, medium-dark skin tone, medium-light skin tone", + "medium-dark skin tone", + "medium-light skin tone", + "person" + ], + "value" : "🧑🏾‍❤️‍💋‍🧑🏼" + }, "🧑🏾‍❤️‍💋‍🧑🏽", + { + "value" : "🧑🏾‍❤️‍💋‍🧑🏽", + "keywords" : [ + "couple", + "kiss", + "kiss: person, person, medium-dark skin tone, medium skin tone", + "medium skin tone", + "medium-dark skin tone", + "person" + ] + }, "🧑🏾‍❤️‍💋‍🧑🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: person, person, medium-dark skin tone, dark skin tone", + "medium-dark skin tone", + "person" + ], + "value" : "🧑🏾‍❤️‍💋‍🧑🏿" + }, "🧑🏿‍❤️‍💋‍🧑🏻", + { + "value" : "🧑🏿‍❤️‍💋‍🧑🏻", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: person, person, dark skin tone, light skin tone", + "light skin tone", + "person" + ] + }, "🧑🏿‍❤️‍💋‍🧑🏼", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: person, person, dark skin tone, medium-light skin tone", + "medium-light skin tone", + "person" + ], + "value" : "🧑🏿‍❤️‍💋‍🧑🏼" + }, "🧑🏿‍❤️‍💋‍🧑🏽", + { + "value" : "🧑🏿‍❤️‍💋‍🧑🏽", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: person, person, dark skin tone, medium skin tone", + "medium skin tone", + "person" + ] + }, "🧑🏿‍❤️‍💋‍🧑🏾", + { + "value" : "🧑🏿‍❤️‍💋‍🧑🏾", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: person, person, dark skin tone, medium-dark skin tone", + "medium-dark skin tone", + "person" + ] + }, "👩‍❤️‍💋‍👨", + { + "value" : "👩‍❤️‍💋‍👨", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man", + "man", + "woman" + ] + }, "👩🏻‍❤️‍💋‍👨🏻", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, light skin tone", + "light skin tone", + "man", + "woman" + ], + "value" : "👩🏻‍❤️‍💋‍👨🏻" + }, "👩🏻‍❤️‍💋‍👨🏼", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, light skin tone, medium-light skin tone", + "light skin tone", + "man", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏻‍❤️‍💋‍👨🏼" + }, "👩🏻‍❤️‍💋‍👨🏽", + { + "value" : "👩🏻‍❤️‍💋‍👨🏽", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, light skin tone, medium skin tone", + "light skin tone", + "man", + "medium skin tone", + "woman" + ] + }, "👩🏻‍❤️‍💋‍👨🏾", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, light skin tone, medium-dark skin tone", + "light skin tone", + "man", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏻‍❤️‍💋‍👨🏾" + }, "👩🏻‍❤️‍💋‍👨🏿", + { + "value" : "👩🏻‍❤️‍💋‍👨🏿", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, man, light skin tone, dark skin tone", + "light skin tone", + "man", + "woman" + ] + }, "👩🏼‍❤️‍💋‍👨🏻", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, medium-light skin tone, light skin tone", + "light skin tone", + "man", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏼‍❤️‍💋‍👨🏻" + }, "👩🏼‍❤️‍💋‍👨🏼", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, medium-light skin tone", + "man", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏼‍❤️‍💋‍👨🏼" + }, "👩🏼‍❤️‍💋‍👨🏽", + { + "value" : "👩🏼‍❤️‍💋‍👨🏽", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, medium-light skin tone, medium skin tone", + "man", + "medium skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏼‍❤️‍💋‍👨🏾", + { + "value" : "👩🏼‍❤️‍💋‍👨🏾", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, medium-light skin tone, medium-dark skin tone", + "man", + "medium-dark skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏼‍❤️‍💋‍👨🏿", + { + "value" : "👩🏼‍❤️‍💋‍👨🏿", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, man, medium-light skin tone, dark skin tone", + "man", + "medium-light skin tone", + "woman" + ] + }, "👩🏽‍❤️‍💋‍👨🏻", + { + "value" : "👩🏽‍❤️‍💋‍👨🏻", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, medium skin tone, light skin tone", + "light skin tone", + "man", + "medium skin tone", + "woman" + ] + }, "👩🏽‍❤️‍💋‍👨🏼", + { + "value" : "👩🏽‍❤️‍💋‍👨🏼", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, medium skin tone, medium-light skin tone", + "man", + "medium skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏽‍❤️‍💋‍👨🏽", + { + "value" : "👩🏽‍❤️‍💋‍👨🏽", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, medium skin tone", + "man", + "medium skin tone", + "woman" + ] + }, "👩🏽‍❤️‍💋‍👨🏾", + { + "value" : "👩🏽‍❤️‍💋‍👨🏾", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, medium skin tone, medium-dark skin tone", + "man", + "medium skin tone", + "medium-dark skin tone", + "woman" + ] + }, "👩🏽‍❤️‍💋‍👨🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, man, medium skin tone, dark skin tone", + "man", + "medium skin tone", + "woman" + ], + "value" : "👩🏽‍❤️‍💋‍👨🏿" + }, "👩🏾‍❤️‍💋‍👨🏻", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, medium-dark skin tone, light skin tone", + "light skin tone", + "man", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏾‍❤️‍💋‍👨🏻" + }, "👩🏾‍❤️‍💋‍👨🏼", + { + "value" : "👩🏾‍❤️‍💋‍👨🏼", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, medium-dark skin tone, medium-light skin tone", + "man", + "medium-dark skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏾‍❤️‍💋‍👨🏽", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, medium-dark skin tone, medium skin tone", + "man", + "medium skin tone", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏾‍❤️‍💋‍👨🏽" + }, "👩🏾‍❤️‍💋‍👨🏾", + { + "value" : "👩🏾‍❤️‍💋‍👨🏾", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, man, medium-dark skin tone", + "man", + "medium-dark skin tone", + "woman" + ] + }, "👩🏾‍❤️‍💋‍👨🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, man, medium-dark skin tone, dark skin tone", + "man", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏾‍❤️‍💋‍👨🏿" + }, "👩🏿‍❤️‍💋‍👨🏻", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, man, dark skin tone, light skin tone", + "light skin tone", + "man", + "woman" + ], + "value" : "👩🏿‍❤️‍💋‍👨🏻" + }, "👩🏿‍❤️‍💋‍👨🏼", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, man, dark skin tone, medium-light skin tone", + "man", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏿‍❤️‍💋‍👨🏼" + }, "👩🏿‍❤️‍💋‍👨🏽", + { + "value" : "👩🏿‍❤️‍💋‍👨🏽", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, man, dark skin tone, medium skin tone", + "man", + "medium skin tone", + "woman" + ] + }, "👩🏿‍❤️‍💋‍👨🏾", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, man, dark skin tone, medium-dark skin tone", + "man", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏿‍❤️‍💋‍👨🏾" + }, "👩🏿‍❤️‍💋‍👨🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, man, dark skin tone", + "man", + "woman" + ], + "value" : "👩🏿‍❤️‍💋‍👨🏿" + }, "👨‍❤️‍💋‍👨", + { + "keywords" : [ + "couple", + "kiss", + "kiss: man, man", + "man" + ], + "value" : "👨‍❤️‍💋‍👨" + }, "👨🏻‍❤️‍💋‍👨🏻", + { + "value" : "👨🏻‍❤️‍💋‍👨🏻", + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, light skin tone", + "light skin tone", + "man" + ] + }, "👨🏻‍❤️‍💋‍👨🏼", + { + "value" : "👨🏻‍❤️‍💋‍👨🏼", + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, light skin tone, medium-light skin tone", + "light skin tone", + "man", + "medium-light skin tone" + ] + }, "👨🏻‍❤️‍💋‍👨🏽", + { + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, light skin tone, medium skin tone", + "light skin tone", + "man", + "medium skin tone" + ], + "value" : "👨🏻‍❤️‍💋‍👨🏽" + }, "👨🏻‍❤️‍💋‍👨🏾", + { + "value" : "👨🏻‍❤️‍💋‍👨🏾", + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, light skin tone, medium-dark skin tone", + "light skin tone", + "man", + "medium-dark skin tone" + ] + }, "👨🏻‍❤️‍💋‍👨🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: man, man, light skin tone, dark skin tone", + "light skin tone", + "man" + ], + "value" : "👨🏻‍❤️‍💋‍👨🏿" + }, "👨🏼‍❤️‍💋‍👨🏻", + { + "value" : "👨🏼‍❤️‍💋‍👨🏻", + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, medium-light skin tone, light skin tone", + "light skin tone", + "man", + "medium-light skin tone" + ] + }, "👨🏼‍❤️‍💋‍👨🏼", + { + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, medium-light skin tone", + "man", + "medium-light skin tone" + ], + "value" : "👨🏼‍❤️‍💋‍👨🏼" + }, "👨🏼‍❤️‍💋‍👨🏽", + { + "value" : "👨🏼‍❤️‍💋‍👨🏽", + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, medium-light skin tone, medium skin tone", + "man", + "medium skin tone", + "medium-light skin tone" + ] + }, "👨🏼‍❤️‍💋‍👨🏾", + { + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, medium-light skin tone, medium-dark skin tone", + "man", + "medium-dark skin tone", + "medium-light skin tone" + ], + "value" : "👨🏼‍❤️‍💋‍👨🏾" + }, "👨🏼‍❤️‍💋‍👨🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: man, man, medium-light skin tone, dark skin tone", + "man", + "medium-light skin tone" + ], + "value" : "👨🏼‍❤️‍💋‍👨🏿" + }, "👨🏽‍❤️‍💋‍👨🏻", + { + "value" : "👨🏽‍❤️‍💋‍👨🏻", + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, medium skin tone, light skin tone", + "light skin tone", + "man", + "medium skin tone" + ] + }, "👨🏽‍❤️‍💋‍👨🏼", + { + "value" : "👨🏽‍❤️‍💋‍👨🏼", + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, medium skin tone, medium-light skin tone", + "man", + "medium skin tone", + "medium-light skin tone" + ] + }, "👨🏽‍❤️‍💋‍👨🏽", + { + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, medium skin tone", + "man", + "medium skin tone" + ], + "value" : "👨🏽‍❤️‍💋‍👨🏽" + }, "👨🏽‍❤️‍💋‍👨🏾", + { + "value" : "👨🏽‍❤️‍💋‍👨🏾", + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, medium skin tone, medium-dark skin tone", + "man", + "medium skin tone", + "medium-dark skin tone" + ] + }, "👨🏽‍❤️‍💋‍👨🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: man, man, medium skin tone, dark skin tone", + "man", + "medium skin tone" + ], + "value" : "👨🏽‍❤️‍💋‍👨🏿" + }, "👨🏾‍❤️‍💋‍👨🏻", + { + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, medium-dark skin tone, light skin tone", + "light skin tone", + "man", + "medium-dark skin tone" + ], + "value" : "👨🏾‍❤️‍💋‍👨🏻" + }, "👨🏾‍❤️‍💋‍👨🏼", + { + "value" : "👨🏾‍❤️‍💋‍👨🏼", + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, medium-dark skin tone, medium-light skin tone", + "man", + "medium-dark skin tone", + "medium-light skin tone" + ] + }, "👨🏾‍❤️‍💋‍👨🏽", + { + "value" : "👨🏾‍❤️‍💋‍👨🏽", + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, medium-dark skin tone, medium skin tone", + "man", + "medium skin tone", + "medium-dark skin tone" + ] + }, "👨🏾‍❤️‍💋‍👨🏾", + { + "value" : "👨🏾‍❤️‍💋‍👨🏾", + "keywords" : [ + "couple", + "kiss", + "kiss: man, man, medium-dark skin tone", + "man", + "medium-dark skin tone" + ] + }, "👨🏾‍❤️‍💋‍👨🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: man, man, medium-dark skin tone, dark skin tone", + "man", + "medium-dark skin tone" + ], + "value" : "👨🏾‍❤️‍💋‍👨🏿" + }, "👨🏿‍❤️‍💋‍👨🏻", + { + "value" : "👨🏿‍❤️‍💋‍👨🏻", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: man, man, dark skin tone, light skin tone", + "light skin tone", + "man" + ] + }, "👨🏿‍❤️‍💋‍👨🏼", + { + "value" : "👨🏿‍❤️‍💋‍👨🏼", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: man, man, dark skin tone, medium-light skin tone", + "man", + "medium-light skin tone" + ] + }, "👨🏿‍❤️‍💋‍👨🏽", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: man, man, dark skin tone, medium skin tone", + "man", + "medium skin tone" + ], + "value" : "👨🏿‍❤️‍💋‍👨🏽" + }, "👨🏿‍❤️‍💋‍👨🏾", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: man, man, dark skin tone, medium-dark skin tone", + "man", + "medium-dark skin tone" + ], + "value" : "👨🏿‍❤️‍💋‍👨🏾" + }, "👨🏿‍❤️‍💋‍👨🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: man, man, dark skin tone", + "man" + ], + "value" : "👨🏿‍❤️‍💋‍👨🏿" + }, "👩‍❤️‍💋‍👩", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman", + "woman" + ], + "value" : "👩‍❤️‍💋‍👩" + }, "👩🏻‍❤️‍💋‍👩🏻", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, light skin tone", + "light skin tone", + "woman" + ], + "value" : "👩🏻‍❤️‍💋‍👩🏻" + }, "👩🏻‍❤️‍💋‍👩🏼", + { + "value" : "👩🏻‍❤️‍💋‍👩🏼", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, light skin tone, medium-light skin tone", + "light skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏻‍❤️‍💋‍👩🏽", + { + "value" : "👩🏻‍❤️‍💋‍👩🏽", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, light skin tone, medium skin tone", + "light skin tone", + "medium skin tone", + "woman" + ] + }, "👩🏻‍❤️‍💋‍👩🏾", + { + "value" : "👩🏻‍❤️‍💋‍👩🏾", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, light skin tone, medium-dark skin tone", + "light skin tone", + "medium-dark skin tone", + "woman" + ] + }, "👩🏻‍❤️‍💋‍👩🏿", + { + "value" : "👩🏻‍❤️‍💋‍👩🏿", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, woman, light skin tone, dark skin tone", + "light skin tone", + "woman" + ] + }, "👩🏼‍❤️‍💋‍👩🏻", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, medium-light skin tone, light skin tone", + "light skin tone", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏼‍❤️‍💋‍👩🏻" + }, "👩🏼‍❤️‍💋‍👩🏼", + { + "value" : "👩🏼‍❤️‍💋‍👩🏼", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, medium-light skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏼‍❤️‍💋‍👩🏽", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, medium-light skin tone, medium skin tone", + "medium skin tone", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏼‍❤️‍💋‍👩🏽" + }, "👩🏼‍❤️‍💋‍👩🏾", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, medium-light skin tone, medium-dark skin tone", + "medium-dark skin tone", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏼‍❤️‍💋‍👩🏾" + }, "👩🏼‍❤️‍💋‍👩🏿", + { + "value" : "👩🏼‍❤️‍💋‍👩🏿", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, woman, medium-light skin tone, dark skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏽‍❤️‍💋‍👩🏻", + { + "value" : "👩🏽‍❤️‍💋‍👩🏻", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, medium skin tone, light skin tone", + "light skin tone", + "medium skin tone", + "woman" + ] + }, "👩🏽‍❤️‍💋‍👩🏼", + { + "value" : "👩🏽‍❤️‍💋‍👩🏼", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, medium skin tone, medium-light skin tone", + "medium skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏽‍❤️‍💋‍👩🏽", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, medium skin tone", + "medium skin tone", + "woman" + ], + "value" : "👩🏽‍❤️‍💋‍👩🏽" + }, "👩🏽‍❤️‍💋‍👩🏾", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, medium skin tone, medium-dark skin tone", + "medium skin tone", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏽‍❤️‍💋‍👩🏾" + }, "👩🏽‍❤️‍💋‍👩🏿", + { + "value" : "👩🏽‍❤️‍💋‍👩🏿", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, woman, medium skin tone, dark skin tone", + "medium skin tone", + "woman" + ] + }, "👩🏾‍❤️‍💋‍👩🏻", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, medium-dark skin tone, light skin tone", + "light skin tone", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏾‍❤️‍💋‍👩🏻" + }, "👩🏾‍❤️‍💋‍👩🏼", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, medium-dark skin tone, medium-light skin tone", + "medium-dark skin tone", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏾‍❤️‍💋‍👩🏼" + }, "👩🏾‍❤️‍💋‍👩🏽", + { + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, medium-dark skin tone, medium skin tone", + "medium skin tone", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏾‍❤️‍💋‍👩🏽" + }, "👩🏾‍❤️‍💋‍👩🏾", + { + "value" : "👩🏾‍❤️‍💋‍👩🏾", + "keywords" : [ + "couple", + "kiss", + "kiss: woman, woman, medium-dark skin tone", + "medium-dark skin tone", + "woman" + ] + }, "👩🏾‍❤️‍💋‍👩🏿", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, woman, medium-dark skin tone, dark skin tone", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏾‍❤️‍💋‍👩🏿" + }, "👩🏿‍❤️‍💋‍👩🏻", + { + "value" : "👩🏿‍❤️‍💋‍👩🏻", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, woman, dark skin tone, light skin tone", + "light skin tone", + "woman" + ] + }, "👩🏿‍❤️‍💋‍👩🏼", + { + "value" : "👩🏿‍❤️‍💋‍👩🏼", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, woman, dark skin tone, medium-light skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏿‍❤️‍💋‍👩🏽", + { + "value" : "👩🏿‍❤️‍💋‍👩🏽", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, woman, dark skin tone, medium skin tone", + "medium skin tone", + "woman" + ] + }, "👩🏿‍❤️‍💋‍👩🏾", + { + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, woman, dark skin tone, medium-dark skin tone", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏿‍❤️‍💋‍👩🏾" + }, "👩🏿‍❤️‍💋‍👩🏿", + { + "value" : "👩🏿‍❤️‍💋‍👩🏿", + "keywords" : [ + "couple", + "dark skin tone", + "kiss", + "kiss: woman, woman, dark skin tone", + "woman" + ] + }, "💑", + { + "keywords" : [ + "anniversary", + "babe", + "bae", + "couple", + "dating", + "heart", + "kiss", + "love", + "person", + "relationship", + "romance", + "together", + "you" + ], + "value" : "💑" + }, "💑🏻", + { + "value" : "💑🏻", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: light skin tone", + "light skin tone", + "love" + ] + }, "💑🏼", + { + "value" : "💑🏼", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: medium-light skin tone", + "love", + "medium-light skin tone" + ] + }, "💑🏽", + { + "value" : "💑🏽", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: medium skin tone", + "love", + "medium skin tone" + ] + }, "💑🏾", + { + "value" : "💑🏾", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: medium-dark skin tone", + "love", + "medium-dark skin tone" + ] + }, "💑🏿", + { + "value" : "💑🏿", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: dark skin tone", + "dark skin tone", + "love" + ] + }, "🧑🏻‍❤️‍🧑🏼", + { + "value" : "🧑🏻‍❤️‍🧑🏼", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, light skin tone, medium-light skin tone", + "light skin tone", + "love", + "medium-light skin tone", + "person" + ] + }, "🧑🏻‍❤️‍🧑🏽", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, light skin tone, medium skin tone", + "light skin tone", + "love", + "medium skin tone", + "person" + ], + "value" : "🧑🏻‍❤️‍🧑🏽" + }, "🧑🏻‍❤️‍🧑🏾", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, light skin tone, medium-dark skin tone", + "light skin tone", + "love", + "medium-dark skin tone", + "person" + ], + "value" : "🧑🏻‍❤️‍🧑🏾" + }, "🧑🏻‍❤️‍🧑🏿", + { + "value" : "🧑🏻‍❤️‍🧑🏿", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, light skin tone, dark skin tone", + "dark skin tone", + "light skin tone", + "love", + "person" + ] + }, "🧑🏼‍❤️‍🧑🏻", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, medium-light skin tone, light skin tone", + "light skin tone", + "love", + "medium-light skin tone", + "person" + ], + "value" : "🧑🏼‍❤️‍🧑🏻" + }, "🧑🏼‍❤️‍🧑🏽", + { + "value" : "🧑🏼‍❤️‍🧑🏽", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, medium-light skin tone, medium skin tone", + "love", + "medium skin tone", + "medium-light skin tone", + "person" + ] + }, "🧑🏼‍❤️‍🧑🏾", + { + "value" : "🧑🏼‍❤️‍🧑🏾", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, medium-light skin tone, medium-dark skin tone", + "love", + "medium-dark skin tone", + "medium-light skin tone", + "person" + ] + }, "🧑🏼‍❤️‍🧑🏿", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, medium-light skin tone, dark skin tone", + "dark skin tone", + "love", + "medium-light skin tone", + "person" + ], + "value" : "🧑🏼‍❤️‍🧑🏿" + }, "🧑🏽‍❤️‍🧑🏻", + { + "value" : "🧑🏽‍❤️‍🧑🏻", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, medium skin tone, light skin tone", + "light skin tone", + "love", + "medium skin tone", + "person" + ] + }, "🧑🏽‍❤️‍🧑🏼", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, medium skin tone, medium-light skin tone", + "love", + "medium skin tone", + "medium-light skin tone", + "person" + ], + "value" : "🧑🏽‍❤️‍🧑🏼" + }, "🧑🏽‍❤️‍🧑🏾", + { + "value" : "🧑🏽‍❤️‍🧑🏾", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, medium skin tone, medium-dark skin tone", + "love", + "medium skin tone", + "medium-dark skin tone", + "person" + ] + }, "🧑🏽‍❤️‍🧑🏿", + { + "value" : "🧑🏽‍❤️‍🧑🏿", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, medium skin tone, dark skin tone", + "dark skin tone", + "love", + "medium skin tone", + "person" + ] + }, "🧑🏾‍❤️‍🧑🏻", + { + "value" : "🧑🏾‍❤️‍🧑🏻", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, medium-dark skin tone, light skin tone", + "light skin tone", + "love", + "medium-dark skin tone", + "person" + ] + }, "🧑🏾‍❤️‍🧑🏼", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, medium-dark skin tone, medium-light skin tone", + "love", + "medium-dark skin tone", + "medium-light skin tone", + "person" + ], + "value" : "🧑🏾‍❤️‍🧑🏼" + }, "🧑🏾‍❤️‍🧑🏽", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, medium-dark skin tone, medium skin tone", + "love", + "medium skin tone", + "medium-dark skin tone", + "person" + ], + "value" : "🧑🏾‍❤️‍🧑🏽" + }, "🧑🏾‍❤️‍🧑🏿", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, medium-dark skin tone, dark skin tone", + "dark skin tone", + "love", + "medium-dark skin tone", + "person" + ], + "value" : "🧑🏾‍❤️‍🧑🏿" + }, "🧑🏿‍❤️‍🧑🏻", + { + "value" : "🧑🏿‍❤️‍🧑🏻", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, dark skin tone, light skin tone", + "dark skin tone", + "light skin tone", + "love", + "person" + ] + }, "🧑🏿‍❤️‍🧑🏼", + { + "value" : "🧑🏿‍❤️‍🧑🏼", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, dark skin tone, medium-light skin tone", + "dark skin tone", + "love", + "medium-light skin tone", + "person" + ] + }, "🧑🏿‍❤️‍🧑🏽", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, dark skin tone, medium skin tone", + "dark skin tone", + "love", + "medium skin tone", + "person" + ], + "value" : "🧑🏿‍❤️‍🧑🏽" + }, "🧑🏿‍❤️‍🧑🏾", + { + "value" : "🧑🏿‍❤️‍🧑🏾", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: person, person, dark skin tone, medium-dark skin tone", + "dark skin tone", + "love", + "medium-dark skin tone", + "person" + ] + }, "👩‍❤️‍👨", + { + "value" : "👩‍❤️‍👨", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man", + "love", + "man", + "woman" + ] + }, "👩🏻‍❤️‍👨🏻", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, light skin tone", + "light skin tone", + "love", + "man", + "woman" + ], + "value" : "👩🏻‍❤️‍👨🏻" + }, "👩🏻‍❤️‍👨🏼", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, light skin tone, medium-light skin tone", + "light skin tone", + "love", + "man", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏻‍❤️‍👨🏼" + }, "👩🏻‍❤️‍👨🏽", + { + "value" : "👩🏻‍❤️‍👨🏽", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, light skin tone, medium skin tone", + "light skin tone", + "love", + "man", + "medium skin tone", + "woman" + ] + }, "👩🏻‍❤️‍👨🏾", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, light skin tone, medium-dark skin tone", + "light skin tone", + "love", + "man", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏻‍❤️‍👨🏾" + }, "👩🏻‍❤️‍👨🏿", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, light skin tone, dark skin tone", + "dark skin tone", + "light skin tone", + "love", + "man", + "woman" + ], + "value" : "👩🏻‍❤️‍👨🏿" + }, "👩🏼‍❤️‍👨🏻", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium-light skin tone, light skin tone", + "light skin tone", + "love", + "man", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏼‍❤️‍👨🏻" + }, "👩🏼‍❤️‍👨🏼", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium-light skin tone", + "love", + "man", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏼‍❤️‍👨🏼" + }, "👩🏼‍❤️‍👨🏽", + { + "value" : "👩🏼‍❤️‍👨🏽", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium-light skin tone, medium skin tone", + "love", + "man", + "medium skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏼‍❤️‍👨🏾", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium-light skin tone, medium-dark skin tone", + "love", + "man", + "medium-dark skin tone", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏼‍❤️‍👨🏾" + }, "👩🏼‍❤️‍👨🏿", + { + "value" : "👩🏼‍❤️‍👨🏿", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium-light skin tone, dark skin tone", + "dark skin tone", + "love", + "man", + "medium-light skin tone", + "woman" + ] + }, "👩🏽‍❤️‍👨🏻", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium skin tone, light skin tone", + "light skin tone", + "love", + "man", + "medium skin tone", + "woman" + ], + "value" : "👩🏽‍❤️‍👨🏻" + }, "👩🏽‍❤️‍👨🏼", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium skin tone, medium-light skin tone", + "love", + "man", + "medium skin tone", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏽‍❤️‍👨🏼" + }, "👩🏽‍❤️‍👨🏽", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium skin tone", + "love", + "man", + "medium skin tone", + "woman" + ], + "value" : "👩🏽‍❤️‍👨🏽" + }, "👩🏽‍❤️‍👨🏾", + { + "value" : "👩🏽‍❤️‍👨🏾", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium skin tone, medium-dark skin tone", + "love", + "man", + "medium skin tone", + "medium-dark skin tone", + "woman" + ] + }, "👩🏽‍❤️‍👨🏿", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium skin tone, dark skin tone", + "dark skin tone", + "love", + "man", + "medium skin tone", + "woman" + ], + "value" : "👩🏽‍❤️‍👨🏿" + }, "👩🏾‍❤️‍👨🏻", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium-dark skin tone, light skin tone", + "light skin tone", + "love", + "man", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏾‍❤️‍👨🏻" + }, "👩🏾‍❤️‍👨🏼", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium-dark skin tone, medium-light skin tone", + "love", + "man", + "medium-dark skin tone", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏾‍❤️‍👨🏼" + }, "👩🏾‍❤️‍👨🏽", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium-dark skin tone, medium skin tone", + "love", + "man", + "medium skin tone", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏾‍❤️‍👨🏽" + }, "👩🏾‍❤️‍👨🏾", + { + "value" : "👩🏾‍❤️‍👨🏾", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium-dark skin tone", + "love", + "man", + "medium-dark skin tone", + "woman" + ] + }, "👩🏾‍❤️‍👨🏿", + { + "value" : "👩🏾‍❤️‍👨🏿", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, medium-dark skin tone, dark skin tone", + "dark skin tone", + "love", + "man", + "medium-dark skin tone", + "woman" + ] + }, "👩🏿‍❤️‍👨🏻", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, dark skin tone, light skin tone", + "dark skin tone", + "light skin tone", + "love", + "man", + "woman" + ], + "value" : "👩🏿‍❤️‍👨🏻" + }, "👩🏿‍❤️‍👨🏼", + { + "value" : "👩🏿‍❤️‍👨🏼", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, dark skin tone, medium-light skin tone", + "dark skin tone", + "love", + "man", + "medium-light skin tone", + "woman" + ] + }, "👩🏿‍❤️‍👨🏽", + { + "value" : "👩🏿‍❤️‍👨🏽", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, dark skin tone, medium skin tone", + "dark skin tone", + "love", + "man", + "medium skin tone", + "woman" + ] + }, "👩🏿‍❤️‍👨🏾", + { + "value" : "👩🏿‍❤️‍👨🏾", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, dark skin tone, medium-dark skin tone", + "dark skin tone", + "love", + "man", + "medium-dark skin tone", + "woman" + ] + }, "👩🏿‍❤️‍👨🏿", + { + "value" : "👩🏿‍❤️‍👨🏿", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, man, dark skin tone", + "dark skin tone", + "love", + "man", + "woman" + ] + }, "👨‍❤️‍👨", + { + "value" : "👨‍❤️‍👨", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man", + "love", + "man" + ] + }, "👨🏻‍❤️‍👨🏻", + { + "value" : "👨🏻‍❤️‍👨🏻", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, light skin tone", + "light skin tone", + "love", + "man" + ] + }, "👨🏻‍❤️‍👨🏼", + { + "value" : "👨🏻‍❤️‍👨🏼", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, light skin tone, medium-light skin tone", + "light skin tone", + "love", + "man", + "medium-light skin tone" + ] + }, "👨🏻‍❤️‍👨🏽", + { + "value" : "👨🏻‍❤️‍👨🏽", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, light skin tone, medium skin tone", + "light skin tone", + "love", + "man", + "medium skin tone" + ] + }, "👨🏻‍❤️‍👨🏾", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, light skin tone, medium-dark skin tone", + "light skin tone", + "love", + "man", + "medium-dark skin tone" + ], + "value" : "👨🏻‍❤️‍👨🏾" + }, "👨🏻‍❤️‍👨🏿", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, light skin tone, dark skin tone", + "dark skin tone", + "light skin tone", + "love", + "man" + ], + "value" : "👨🏻‍❤️‍👨🏿" + }, "👨🏼‍❤️‍👨🏻", + { + "value" : "👨🏼‍❤️‍👨🏻", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium-light skin tone, light skin tone", + "light skin tone", + "love", + "man", + "medium-light skin tone" + ] + }, "👨🏼‍❤️‍👨🏼", + { + "value" : "👨🏼‍❤️‍👨🏼", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium-light skin tone", + "love", + "man", + "medium-light skin tone" + ] + }, "👨🏼‍❤️‍👨🏽", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium-light skin tone, medium skin tone", + "love", + "man", + "medium skin tone", + "medium-light skin tone" + ], + "value" : "👨🏼‍❤️‍👨🏽" + }, "👨🏼‍❤️‍👨🏾", + { + "value" : "👨🏼‍❤️‍👨🏾", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium-light skin tone, medium-dark skin tone", + "love", + "man", + "medium-dark skin tone", + "medium-light skin tone" + ] + }, "👨🏼‍❤️‍👨🏿", + { + "value" : "👨🏼‍❤️‍👨🏿", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium-light skin tone, dark skin tone", + "dark skin tone", + "love", + "man", + "medium-light skin tone" + ] + }, "👨🏽‍❤️‍👨🏻", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium skin tone, light skin tone", + "light skin tone", + "love", + "man", + "medium skin tone" + ], + "value" : "👨🏽‍❤️‍👨🏻" + }, "👨🏽‍❤️‍👨🏼", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium skin tone, medium-light skin tone", + "love", + "man", + "medium skin tone", + "medium-light skin tone" + ], + "value" : "👨🏽‍❤️‍👨🏼" + }, "👨🏽‍❤️‍👨🏽", + { + "value" : "👨🏽‍❤️‍👨🏽", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium skin tone", + "love", + "man", + "medium skin tone" + ] + }, "👨🏽‍❤️‍👨🏾", + { + "value" : "👨🏽‍❤️‍👨🏾", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium skin tone, medium-dark skin tone", + "love", + "man", + "medium skin tone", + "medium-dark skin tone" + ] + }, "👨🏽‍❤️‍👨🏿", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium skin tone, dark skin tone", + "dark skin tone", + "love", + "man", + "medium skin tone" + ], + "value" : "👨🏽‍❤️‍👨🏿" + }, "👨🏾‍❤️‍👨🏻", + { + "value" : "👨🏾‍❤️‍👨🏻", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium-dark skin tone, light skin tone", + "light skin tone", + "love", + "man", + "medium-dark skin tone" + ] + }, "👨🏾‍❤️‍👨🏼", + { + "value" : "👨🏾‍❤️‍👨🏼", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium-dark skin tone, medium-light skin tone", + "love", + "man", + "medium-dark skin tone", + "medium-light skin tone" + ] + }, "👨🏾‍❤️‍👨🏽", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium-dark skin tone, medium skin tone", + "love", + "man", + "medium skin tone", + "medium-dark skin tone" + ], + "value" : "👨🏾‍❤️‍👨🏽" + }, "👨🏾‍❤️‍👨🏾", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium-dark skin tone", + "love", + "man", + "medium-dark skin tone" + ], + "value" : "👨🏾‍❤️‍👨🏾" + }, "👨🏾‍❤️‍👨🏿", + { + "value" : "👨🏾‍❤️‍👨🏿", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, medium-dark skin tone, dark skin tone", + "dark skin tone", + "love", + "man", + "medium-dark skin tone" + ] + }, "👨🏿‍❤️‍👨🏻", + { + "value" : "👨🏿‍❤️‍👨🏻", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, dark skin tone, light skin tone", + "dark skin tone", + "light skin tone", + "love", + "man" + ] + }, "👨🏿‍❤️‍👨🏼", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, dark skin tone, medium-light skin tone", + "dark skin tone", + "love", + "man", + "medium-light skin tone" + ], + "value" : "👨🏿‍❤️‍👨🏼" + }, "👨🏿‍❤️‍👨🏽", + { + "value" : "👨🏿‍❤️‍👨🏽", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, dark skin tone, medium skin tone", + "dark skin tone", + "love", + "man", + "medium skin tone" + ] + }, "👨🏿‍❤️‍👨🏾", + { + "value" : "👨🏿‍❤️‍👨🏾", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, dark skin tone, medium-dark skin tone", + "dark skin tone", + "love", + "man", + "medium-dark skin tone" + ] + }, "👨🏿‍❤️‍👨🏿", + { + "value" : "👨🏿‍❤️‍👨🏿", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: man, man, dark skin tone", + "dark skin tone", + "love", + "man" + ] + }, "👩‍❤️‍👩", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman", + "love", + "woman" + ], + "value" : "👩‍❤️‍👩" + }, "👩🏻‍❤️‍👩🏻", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, light skin tone", + "light skin tone", + "love", + "woman" + ], + "value" : "👩🏻‍❤️‍👩🏻" + }, "👩🏻‍❤️‍👩🏼", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, light skin tone, medium-light skin tone", + "light skin tone", + "love", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏻‍❤️‍👩🏼" + }, "👩🏻‍❤️‍👩🏽", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, light skin tone, medium skin tone", + "light skin tone", + "love", + "medium skin tone", + "woman" + ], + "value" : "👩🏻‍❤️‍👩🏽" + }, "👩🏻‍❤️‍👩🏾", + { + "value" : "👩🏻‍❤️‍👩🏾", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, light skin tone, medium-dark skin tone", + "light skin tone", + "love", + "medium-dark skin tone", + "woman" + ] + }, "👩🏻‍❤️‍👩🏿", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, light skin tone, dark skin tone", + "dark skin tone", + "light skin tone", + "love", + "woman" + ], + "value" : "👩🏻‍❤️‍👩🏿" + }, "👩🏼‍❤️‍👩🏻", + { + "value" : "👩🏼‍❤️‍👩🏻", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium-light skin tone, light skin tone", + "light skin tone", + "love", + "medium-light skin tone", + "woman" + ] + }, "👩🏼‍❤️‍👩🏼", + { + "value" : "👩🏼‍❤️‍👩🏼", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium-light skin tone", + "love", + "medium-light skin tone", + "woman" + ] + }, "👩🏼‍❤️‍👩🏽", + { + "value" : "👩🏼‍❤️‍👩🏽", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium-light skin tone, medium skin tone", + "love", + "medium skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏼‍❤️‍👩🏾", + { + "value" : "👩🏼‍❤️‍👩🏾", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone", + "love", + "medium-dark skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏼‍❤️‍👩🏿", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium-light skin tone, dark skin tone", + "dark skin tone", + "love", + "medium-light skin tone", + "woman" + ], + "value" : "👩🏼‍❤️‍👩🏿" + }, "👩🏽‍❤️‍👩🏻", + { + "value" : "👩🏽‍❤️‍👩🏻", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium skin tone, light skin tone", + "light skin tone", + "love", + "medium skin tone", + "woman" + ] + }, "👩🏽‍❤️‍👩🏼", + { + "value" : "👩🏽‍❤️‍👩🏼", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium skin tone, medium-light skin tone", + "love", + "medium skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏽‍❤️‍👩🏽", + { + "value" : "👩🏽‍❤️‍👩🏽", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium skin tone", + "love", + "medium skin tone", + "woman" + ] + }, "👩🏽‍❤️‍👩🏾", + { + "value" : "👩🏽‍❤️‍👩🏾", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium skin tone, medium-dark skin tone", + "love", + "medium skin tone", + "medium-dark skin tone", + "woman" + ] + }, "👩🏽‍❤️‍👩🏿", + { + "value" : "👩🏽‍❤️‍👩🏿", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium skin tone, dark skin tone", + "dark skin tone", + "love", + "medium skin tone", + "woman" + ] + }, "👩🏾‍❤️‍👩🏻", + { + "value" : "👩🏾‍❤️‍👩🏻", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium-dark skin tone, light skin tone", + "light skin tone", + "love", + "medium-dark skin tone", + "woman" + ] + }, "👩🏾‍❤️‍👩🏼", + { + "value" : "👩🏾‍❤️‍👩🏼", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone", + "love", + "medium-dark skin tone", + "medium-light skin tone", + "woman" + ] + }, "👩🏾‍❤️‍👩🏽", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium-dark skin tone, medium skin tone", + "love", + "medium skin tone", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏾‍❤️‍👩🏽" + }, "👩🏾‍❤️‍👩🏾", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium-dark skin tone", + "love", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏾‍❤️‍👩🏾" + }, "👩🏾‍❤️‍👩🏿", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, medium-dark skin tone, dark skin tone", + "dark skin tone", + "love", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏾‍❤️‍👩🏿" + }, "👩🏿‍❤️‍👩🏻", + { + "value" : "👩🏿‍❤️‍👩🏻", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, dark skin tone, light skin tone", + "dark skin tone", + "light skin tone", + "love", + "woman" + ] + }, "👩🏿‍❤️‍👩🏼", + { + "value" : "👩🏿‍❤️‍👩🏼", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, dark skin tone, medium-light skin tone", + "dark skin tone", + "love", + "medium-light skin tone", + "woman" + ] + }, "👩🏿‍❤️‍👩🏽", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, dark skin tone, medium skin tone", + "dark skin tone", + "love", + "medium skin tone", + "woman" + ], + "value" : "👩🏿‍❤️‍👩🏽" + }, "👩🏿‍❤️‍👩🏾", + { + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, dark skin tone, medium-dark skin tone", + "dark skin tone", + "love", + "medium-dark skin tone", + "woman" + ], + "value" : "👩🏿‍❤️‍👩🏾" + }, "👩🏿‍❤️‍👩🏿", + { + "value" : "👩🏿‍❤️‍👩🏿", + "keywords" : [ + "couple", + "couple with heart", + "couple with heart: woman, woman, dark skin tone", + "dark skin tone", + "love", + "woman" + ] + }, "👪", + { + "keywords" : [ + "child", + "family" + ], + "value" : "👪" + }, "👨‍👩‍👦", + { + "value" : "👨‍👩‍👦", + "keywords" : [ + "boy", + "family", + "family: man, woman, boy", + "man", + "woman" + ] + }, "👨‍👩‍👧", + { + "keywords" : [ + "family", + "family: man, woman, girl", + "girl", + "man", + "woman" + ], + "value" : "👨‍👩‍👧" + }, "👨‍👩‍👧‍👦", + { + "keywords" : [ + "boy", + "family", + "family: man, woman, girl, boy", + "girl", + "man", + "woman" + ], + "value" : "👨‍👩‍👧‍👦" + }, "👨‍👩‍👦‍👦", + { + "value" : "👨‍👩‍👦‍👦", + "keywords" : [ + "boy", + "family", + "family: man, woman, boy, boy", + "man", + "woman" + ] + }, "👨‍👩‍👧‍👧", + { + "value" : "👨‍👩‍👧‍👧", + "keywords" : [ + "family", + "family: man, woman, girl, girl", + "girl", + "man", + "woman" + ] + }, "👨‍👨‍👦", + { + "keywords" : [ + "boy", + "family", + "family: man, man, boy", + "man" + ], + "value" : "👨‍👨‍👦" + }, "👨‍👨‍👧", + { + "value" : "👨‍👨‍👧", + "keywords" : [ + "family", + "family: man, man, girl", + "girl", + "man" + ] + }, "👨‍👨‍👧‍👦", + { + "keywords" : [ + "boy", + "family", + "family: man, man, girl, boy", + "girl", + "man" + ], + "value" : "👨‍👨‍👧‍👦" + }, "👨‍👨‍👦‍👦", + { + "value" : "👨‍👨‍👦‍👦", + "keywords" : [ + "boy", + "family", + "family: man, man, boy, boy", + "man" + ] + }, "👨‍👨‍👧‍👧", + { + "keywords" : [ + "family", + "family: man, man, girl, girl", + "girl", + "man" + ], + "value" : "👨‍👨‍👧‍👧" + }, "👩‍👩‍👦", + { + "keywords" : [ + "boy", + "family", + "family: woman, woman, boy", + "woman" + ], + "value" : "👩‍👩‍👦" + }, "👩‍👩‍👧", + { + "value" : "👩‍👩‍👧", + "keywords" : [ + "family", + "family: woman, woman, girl", + "girl", + "woman" + ] + }, "👩‍👩‍👧‍👦", + { + "keywords" : [ + "boy", + "family", + "family: woman, woman, girl, boy", + "girl", + "woman" + ], + "value" : "👩‍👩‍👧‍👦" + }, "👩‍👩‍👦‍👦", + { + "value" : "👩‍👩‍👦‍👦", + "keywords" : [ + "boy", + "family", + "family: woman, woman, boy, boy", + "woman" + ] + }, "👩‍👩‍👧‍👧", + { + "value" : "👩‍👩‍👧‍👧", + "keywords" : [ + "family", + "family: woman, woman, girl, girl", + "girl", + "woman" + ] + }, "👨‍👦", + { + "keywords" : [ + "boy", + "family", + "family: man, boy", + "man" + ], + "value" : "👨‍👦" + }, "👨‍👦‍👦", + { + "value" : "👨‍👦‍👦", + "keywords" : [ + "boy", + "family", + "family: man, boy, boy", + "man" + ] + }, "👨‍👧", + { + "keywords" : [ + "family", + "family: man, girl", + "girl", + "man" + ], + "value" : "👨‍👧" + }, "👨‍👧‍👦", + { + "value" : "👨‍👧‍👦", + "keywords" : [ + "boy", + "family", + "family: man, girl, boy", + "girl", + "man" + ] + }, "👨‍👧‍👧", + { + "keywords" : [ + "family", + "family: man, girl, girl", + "girl", + "man" + ], + "value" : "👨‍👧‍👧" + }, "👩‍👦", + { + "keywords" : [ + "boy", + "family", + "family: woman, boy", + "woman" + ], + "value" : "👩‍👦" + }, "👩‍👦‍👦", + { + "keywords" : [ + "boy", + "family", + "family: woman, boy, boy", + "woman" + ], + "value" : "👩‍👦‍👦" + }, "👩‍👧", + { + "keywords" : [ + "family", + "family: woman, girl", + "girl", + "woman" + ], + "value" : "👩‍👧" + }, "👩‍👧‍👦", + { + "keywords" : [ + "boy", + "family", + "family: woman, girl, boy", + "girl", + "woman" + ], + "value" : "👩‍👧‍👦" + }, "👩‍👧‍👧", + { + "keywords" : [ + "family", + "family: woman, girl, girl", + "girl", + "woman" + ], + "value" : "👩‍👧‍👧" + }, "🗣️", + { + "keywords" : [ + "face", + "head", + "silhouette", + "speak", + "speaking" + ], + "value" : "🗣️" + }, "👤", + { + "value" : "👤", + "keywords" : [ + "bust", + "mysterious", + "shadow", + "silhouette" + ] + }, "👥", + { + "keywords" : [ + "bff", + "bust", + "busts", + "everyone", + "friend", + "friends", + "people", + "silhouette" + ], + "value" : "👥" + }, "🫂", - "👣" + { + "value" : "🫂", + "keywords" : [ + "comfort", + "embrace", + "farewell", + "friendship", + "goodbye", + "hello", + "hug", + "hugging", + "love", + "people", + "thanks" + ] + }, + "👣", + { + "value" : "👣", + "keywords" : [ + "barefoot", + "clothing", + "footprint", + "footprints", + "omw", + "print", + "walk" + ] + } ] }, { - "name" : "Animals & Nature", - "values" : [ + "emojis" : [ "🐵", + { + "keywords" : [ + "animal", + "banana", + "face", + "monkey" + ], + "value" : "🐵" + }, "🐒", + { + "value" : "🐒", + "keywords" : [ + "animal", + "banana", + "monkey" + ] + }, "🦍", + { + "keywords" : [ + "animal", + "gorilla" + ], + "value" : "🦍" + }, "🦧", + { + "keywords" : [ + "animal", + "ape", + "monkey", + "orangutan" + ], + "value" : "🦧" + }, "🐶", + { + "keywords" : [ + "adorbs", + "animal", + "dog", + "face", + "pet", + "puppies", + "puppy" + ], + "value" : "🐶" + }, "🐕", + { + "value" : "🐕", + "keywords" : [ + "animal", + "animals", + "dog", + "dogs", + "pet" + ] + }, "🦮", + { + "keywords" : [ + "accessibility", + "animal", + "blind", + "dog", + "guide" + ], + "value" : "🦮" + }, "🐕‍🦺", + { + "value" : "🐕‍🦺", + "keywords" : [ + "accessibility", + "animal", + "assistance", + "dog", + "service" + ] + }, "🐩", + { + "value" : "🐩", + "keywords" : [ + "animal", + "dog", + "fluffy", + "poodle" + ] + }, "🐺", + { + "keywords" : [ + "animal", + "face", + "wolf" + ], + "value" : "🐺" + }, "🦊", + { + "value" : "🦊", + "keywords" : [ + "animal", + "face", + "fox" + ] + }, "🦝", + { + "value" : "🦝", + "keywords" : [ + "animal", + "curious", + "raccoon", + "sly" + ] + }, "🐱", + { + "keywords" : [ + "animal", + "cat", + "face", + "kitten", + "kitty", + "pet" + ], + "value" : "🐱" + }, "🐈", + { + "keywords" : [ + "animal", + "animals", + "cat", + "cats", + "kitten", + "pet" + ], + "value" : "🐈" + }, "🐈‍⬛", + { + "value" : "🐈‍⬛", + "keywords" : [ + "animal", + "black", + "cat", + "feline", + "halloween", + "meow", + "unlucky" + ] + }, "🦁", + { + "keywords" : [ + "alpha", + "animal", + "face", + "Leo", + "lion", + "mane", + "order", + "rawr", + "roar", + "safari", + "strong", + "zodiac" + ], + "value" : "🦁" + }, "🐯", + { + "value" : "🐯", + "keywords" : [ + "animal", + "big", + "cat", + "face", + "predator", + "tiger" + ] + }, "🐅", + { + "value" : "🐅", + "keywords" : [ + "animal", + "big", + "cat", + "predator", + "tiger", + "zoo" + ] + }, "🐆", + { + "value" : "🐆", + "keywords" : [ + "animal", + "big", + "cat", + "leopard", + "predator", + "zoo" + ] + }, "🐴", + { + "value" : "🐴", + "keywords" : [ + "animal", + "dressage", + "equine", + "face", + "farm", + "horse", + "horses" + ] + }, "🫎", + { + "value" : "🫎", + "keywords" : [ + "alces", + "animal", + "antlers", + "elk", + "mammal", + "moose" + ] + }, "🫏", + { + "keywords" : [ + "animal", + "ass", + "burro", + "donkey", + "hinny", + "mammal", + "mule", + "stubborn" + ], + "value" : "🫏" + }, "🐎", + { + "keywords" : [ + "animal", + "equestrian", + "farm", + "horse", + "racehorse", + "racing" + ], + "value" : "🐎" + }, "🦄", + { + "value" : "🦄", + "keywords" : [ + "face", + "unicorn" + ] + }, "🦓", + { + "keywords" : [ + "animal", + "stripe", + "zebra" + ], + "value" : "🦓" + }, "🦌", + { + "keywords" : [ + "animal", + "deer" + ], + "value" : "🦌" + }, "🦬", + { + "value" : "🦬", + "keywords" : [ + "animal", + "bison", + "buffalo", + "herd", + "wisent" + ] + }, "🐮", + { + "keywords" : [ + "animal", + "cow", + "face", + "farm", + "milk", + "moo" + ], + "value" : "🐮" + }, "🐂", + { + "keywords" : [ + "animal", + "animals", + "bull", + "farm", + "ox", + "Taurus", + "zodiac" + ], + "value" : "🐂" + }, "🐃", + { + "keywords" : [ + "animal", + "buffalo", + "water", + "zoo" + ], + "value" : "🐃" + }, "🐄", + { + "keywords" : [ + "animal", + "animals", + "cow", + "farm", + "milk", + "moo" + ], + "value" : "🐄" + }, "🐷", + { + "keywords" : [ + "animal", + "bacon", + "face", + "farm", + "pig", + "pork" + ], + "value" : "🐷" + }, "🐖", + { + "keywords" : [ + "animal", + "bacon", + "farm", + "pig", + "pork", + "sow" + ], + "value" : "🐖" + }, "🐗", + { + "keywords" : [ + "animal", + "boar", + "pig" + ], + "value" : "🐗" + }, "🐽", + { + "value" : "🐽", + "keywords" : [ + "animal", + "face", + "farm", + "nose", + "pig", + "smell", + "snout" + ] + }, "🐏", + { + "keywords" : [ + "animal", + "Aries", + "horns", + "male", + "ram", + "sheep", + "zodiac", + "zoo" + ], + "value" : "🐏" + }, "🐑", + { + "keywords" : [ + "animal", + "baa", + "ewe", + "farm", + "female", + "fluffy", + "lamb", + "sheep", + "wool" + ], + "value" : "🐑" + }, "🐐", + { + "value" : "🐐", + "keywords" : [ + "animal", + "Capricorn", + "farm", + "goat", + "milk", + "zodiac" + ] + }, "🐪", + { + "value" : "🐪", + "keywords" : [ + "animal", + "camel", + "desert", + "dromedary", + "hump", + "one" + ] + }, "🐫", + { + "keywords" : [ + "animal", + "bactrian", + "camel", + "desert", + "hump", + "two", + "two-hump" + ], + "value" : "🐫" + }, "🦙", + { + "keywords" : [ + "alpaca", + "animal", + "guanaco", + "llama", + "vicuña", + "wool" + ], + "value" : "🦙" + }, "🦒", + { + "keywords" : [ + "animal", + "giraffe", + "spots" + ], + "value" : "🦒" + }, "🐘", + { + "keywords" : [ + "animal", + "elephant" + ], + "value" : "🐘" + }, "🦣", + { + "value" : "🦣", + "keywords" : [ + "animal", + "extinction", + "large", + "mammoth", + "tusk", + "wooly" + ] + }, "🦏", + { + "keywords" : [ + "animal", + "rhinoceros" + ], + "value" : "🦏" + }, "🦛", + { + "value" : "🦛", + "keywords" : [ + "animal", + "hippo", + "hippopotamus" + ] + }, "🐭", + { + "value" : "🐭", + "keywords" : [ + "animal", + "face", + "mouse" + ] + }, "🐁", + { + "keywords" : [ + "animal", + "animals", + "mouse" + ], + "value" : "🐁" + }, "🐀", + { + "value" : "🐀", + "keywords" : [ + "animal", + "rat" + ] + }, "🐹", + { + "value" : "🐹", + "keywords" : [ + "animal", + "face", + "hamster", + "pet" + ] + }, "🐰", + { + "value" : "🐰", + "keywords" : [ + "animal", + "bunny", + "face", + "pet", + "rabbit" + ] + }, "🐇", + { + "value" : "🐇", + "keywords" : [ + "animal", + "bunny", + "pet", + "rabbit" + ] + }, "🐿️", + { + "keywords" : [ + "animal", + "chipmunk", + "squirrel" + ], + "value" : "🐿️" + }, "🦫", + { + "value" : "🦫", + "keywords" : [ + "animal", + "beaver", + "dam", + "teeth" + ] + }, "🦔", + { + "value" : "🦔", + "keywords" : [ + "animal", + "hedgehog", + "spiny" + ] + }, "🦇", + { + "value" : "🦇", + "keywords" : [ + "animal", + "bat", + "vampire" + ] + }, "🐻", + { + "keywords" : [ + "animal", + "bear", + "face", + "grizzly", + "growl", + "honey" + ], + "value" : "🐻" + }, "🐻‍❄️", + { + "keywords" : [ + "animal", + "arctic", + "bear", + "polar", + "white" + ], + "value" : "🐻‍❄️" + }, "🐨", + { + "value" : "🐨", + "keywords" : [ + "animal", + "australia", + "bear", + "down", + "face", + "koala", + "marsupial", + "under" + ] + }, "🐼", + { + "value" : "🐼", + "keywords" : [ + "animal", + "bamboo", + "face", + "panda" + ] + }, "🦥", + { + "value" : "🦥", + "keywords" : [ + "lazy", + "sloth", + "slow" + ] + }, "🦦", + { + "keywords" : [ + "animal", + "fishing", + "otter", + "playful" + ], + "value" : "🦦" + }, "🦨", + { + "value" : "🦨", + "keywords" : [ + "animal", + "skunk", + "stink" + ] + }, "🦘", + { + "value" : "🦘", + "keywords" : [ + "animal", + "joey", + "jump", + "kangaroo", + "marsupial" + ] + }, "🦡", + { + "keywords" : [ + "animal", + "badger", + "honey", + "pester" + ], + "value" : "🦡" + }, "🐾", + { + "value" : "🐾", + "keywords" : [ + "feet", + "paw", + "paws", + "print", + "prints" + ] + }, "🦃", + { + "keywords" : [ + "bird", + "gobble", + "thanksgiving", + "turkey" + ], + "value" : "🦃" + }, "🐔", + { + "keywords" : [ + "animal", + "bird", + "chicken", + "ornithology" + ], + "value" : "🐔" + }, "🐓", + { + "keywords" : [ + "animal", + "bird", + "ornithology", + "rooster" + ], + "value" : "🐓" + }, "🐣", + { + "value" : "🐣", + "keywords" : [ + "animal", + "baby", + "bird", + "chick", + "egg", + "hatching" + ] + }, "🐤", + { + "value" : "🐤", + "keywords" : [ + "animal", + "baby", + "bird", + "chick", + "ornithology" + ] + }, "🐥", + { + "value" : "🐥", + "keywords" : [ + "animal", + "baby", + "bird", + "chick", + "front-facing", + "newborn", + "ornithology" + ] + }, "🐦", + { + "value" : "🐦", + "keywords" : [ + "animal", + "bird", + "ornithology" + ] + }, "🐧", + { + "value" : "🐧", + "keywords" : [ + "animal", + "antarctica", + "bird", + "ornithology", + "penguin" + ] + }, "🕊️", + { + "keywords" : [ + "bird", + "dove", + "fly", + "ornithology", + "peace" + ], + "value" : "🕊️" + }, "🦅", + { + "value" : "🦅", + "keywords" : [ + "animal", + "bird", + "eagle", + "ornithology" + ] + }, "🦆", + { + "value" : "🦆", + "keywords" : [ + "animal", + "bird", + "duck", + "ornithology" + ] + }, "🦢", + { + "keywords" : [ + "animal", + "bird", + "cygnet", + "duckling", + "ornithology", + "swan", + "ugly" + ], + "value" : "🦢" + }, "🦉", + { + "value" : "🦉", + "keywords" : [ + "animal", + "bird", + "ornithology", + "owl", + "wise" + ] + }, "🦤", + { + "value" : "🦤", + "keywords" : [ + "animal", + "bird", + "dodo", + "extinction", + "large", + "ornithology" + ] + }, "🪶", + { + "keywords" : [ + "bird", + "feather", + "flight", + "light", + "plumage" + ], + "value" : "🪶" + }, "🦩", + { + "value" : "🦩", + "keywords" : [ + "animal", + "bird", + "flamboyant", + "flamingo", + "ornithology", + "tropical" + ] + }, "🦚", + { + "value" : "🦚", + "keywords" : [ + "animal", + "bird", + "colorful", + "ornithology", + "ostentatious", + "peacock", + "peahen", + "pretty", + "proud" + ] + }, "🦜", + { + "value" : "🦜", + "keywords" : [ + "animal", + "bird", + "ornithology", + "parrot", + "pirate", + "talk" + ] + }, "🪽", + { + "keywords" : [ + "angelic", + "ascend", + "aviation", + "bird", + "fly", + "flying", + "heavenly", + "mythology", + "soar", + "wing" + ], + "value" : "🪽" + }, "🐦‍⬛", + { + "value" : "🐦‍⬛", + "keywords" : [ + "animal", + "beak", + "bird", + "black", + "caw", + "corvid", + "crow", + "ornithology", + "raven", + "rook" + ] + }, "🪿", + { + "value" : "🪿", + "keywords" : [ + "animal", + "bird", + "duck", + "flock", + "fowl", + "gaggle", + "gander", + "geese", + "goose", + "honk", + "ornithology", + "silly" + ] + }, "🐸", + { + "value" : "🐸", + "keywords" : [ + "animal", + "face", + "frog" + ] + }, "🐊", + { + "value" : "🐊", + "keywords" : [ + "animal", + "crocodile", + "zoo" + ] + }, "🐢", + { + "keywords" : [ + "animal", + "terrapin", + "tortoise", + "turtle" + ], + "value" : "🐢" + }, "🦎", + { + "value" : "🦎", + "keywords" : [ + "animal", + "lizard", + "reptile" + ] + }, "🐍", + { + "value" : "🐍", + "keywords" : [ + "animal", + "bearer", + "Ophiuchus", + "serpent", + "snake", + "zodiac" + ] + }, "🐲", + { + "value" : "🐲", + "keywords" : [ + "animal", + "dragon", + "face", + "fairy", + "fairytale", + "tale" + ] + }, "🐉", + { + "value" : "🐉", + "keywords" : [ + "animal", + "dragon", + "fairy", + "fairytale", + "knights", + "tale" + ] + }, "🦕", + { + "keywords" : [ + "brachiosaurus", + "brontosaurus", + "dinosaur", + "diplodocus", + "sauropod" + ], + "value" : "🦕" + }, "🦖", + { + "keywords" : [ + "dinosaur", + "Rex", + "T", + "T-Rex", + "Tyrannosaurus" + ], + "value" : "🦖" + }, "🐳", + { + "keywords" : [ + "animal", + "beach", + "face", + "ocean", + "spouting", + "whale" + ], + "value" : "🐳" + }, "🐋", + { + "keywords" : [ + "animal", + "beach", + "ocean", + "whale" + ], + "value" : "🐋" + }, "🐬", + { + "keywords" : [ + "animal", + "beach", + "dolphin", + "flipper", + "ocean" + ], + "value" : "🐬" + }, "🦭", + { + "keywords" : [ + "animal", + "lion", + "ocean", + "sea", + "seal" + ], + "value" : "🦭" + }, "🐟", + { + "value" : "🐟", + "keywords" : [ + "animal", + "dinner", + "fish", + "fishes", + "fishing", + "Pisces", + "zodiac" + ] + }, "🐠", + { + "keywords" : [ + "animal", + "fish", + "fishes", + "tropical" + ], + "value" : "🐠" + }, "🐡", + { + "keywords" : [ + "animal", + "blowfish", + "fish" + ], + "value" : "🐡" + }, "🦈", + { + "value" : "🦈", + "keywords" : [ + "animal", + "fish", + "shark" + ] + }, "🐙", + { + "value" : "🐙", + "keywords" : [ + "animal", + "creature", + "ocean", + "octopus" + ] + }, "🐚", + { + "value" : "🐚", + "keywords" : [ + "animal", + "beach", + "conch", + "sea", + "shell", + "spiral" + ] + }, "🪸", + { + "value" : "🪸", + "keywords" : [ + "change", + "climate", + "coral", + "ocean", + "reef", + "sea" + ] + }, "🪼", + { + "value" : "🪼", + "keywords" : [ + "animal", + "aquarium", + "burn", + "invertebrate", + "jelly", + "jellyfish", + "life", + "marine", + "ocean", + "ouch", + "plankton", + "sea", + "sting", + "stinger", + "tentacles" + ] + }, "🐌", + { + "value" : "🐌", + "keywords" : [ + "animal", + "escargot", + "garden", + "nature", + "slug", + "snail" + ] + }, "🦋", + { + "value" : "🦋", + "keywords" : [ + "butterfly", + "insect", + "pretty" + ] + }, "🐛", + { + "value" : "🐛", + "keywords" : [ + "animal", + "bug", + "garden", + "insect" + ] + }, "🐜", + { + "value" : "🐜", + "keywords" : [ + "animal", + "ant", + "garden", + "insect" + ] + }, "🐝", + { + "keywords" : [ + "animal", + "bee", + "bumblebee", + "honey", + "honeybee", + "insect", + "nature", + "spring" + ], + "value" : "🐝" + }, "🪲", + { + "value" : "🪲", + "keywords" : [ + "animal", + "beetle", + "bug", + "insect" + ] + }, "🐞", + { + "value" : "🐞", + "keywords" : [ + "animal", + "beetle", + "garden", + "insect", + "lady", + "ladybird", + "ladybug", + "nature" + ] + }, "🦗", + { + "value" : "🦗", + "keywords" : [ + "animal", + "bug", + "cricket", + "grasshopper", + "insect", + "Orthoptera" + ] + }, "🪳", + { + "keywords" : [ + "animal", + "cockroach", + "insect", + "pest", + "roach" + ], + "value" : "🪳" + }, "🕷️", + { + "value" : "🕷️", + "keywords" : [ + "animal", + "insect", + "spider" + ] + }, "🕸️", + { + "value" : "🕸️", + "keywords" : [ + "spider", + "web" + ] + }, "🦂", + { + "keywords" : [ + "Scorpio", + "scorpion", + "Scorpius", + "zodiac" + ], + "value" : "🦂" + }, "🦟", + { + "keywords" : [ + "bite", + "disease", + "fever", + "insect", + "malaria", + "mosquito", + "pest", + "virus" + ], + "value" : "🦟" + }, "🪰", + { + "keywords" : [ + "animal", + "disease", + "fly", + "insect", + "maggot", + "pest", + "rotting" + ], + "value" : "🪰" + }, "🪱", + { + "keywords" : [ + "animal", + "annelid", + "earthworm", + "parasite", + "worm" + ], + "value" : "🪱" + }, "🦠", + { + "value" : "🦠", + "keywords" : [ + "amoeba", + "bacteria", + "microbe", + "science", + "virus" + ] + }, "💐", + { + "keywords" : [ + "anniversary", + "birthday", + "bouquet", + "date", + "flower", + "love", + "plant", + "romance" + ], + "value" : "💐" + }, "🌸", + { + "value" : "🌸", + "keywords" : [ + "blossom", + "cherry", + "flower", + "plant", + "spring", + "springtime" + ] + }, "💮", + { + "value" : "💮", + "keywords" : [ + "flower", + "white" + ] + }, "🪷", + { + "value" : "🪷", + "keywords" : [ + "beauty", + "Buddhism", + "calm", + "flower", + "Hinduism", + "lotus", + "peace", + "purity", + "serenity" + ] + }, "🏵️", + { + "value" : "🏵️", + "keywords" : [ + "plant", + "rosette" + ] + }, "🌹", + { + "keywords" : [ + "beauty", + "elegant", + "flower", + "love", + "plant", + "red", + "rose", + "valentine" + ], + "value" : "🌹" + }, "🥀", + { + "value" : "🥀", + "keywords" : [ + "dying", + "flower", + "wilted" + ] + }, "🌺", + { + "keywords" : [ + "flower", + "hibiscus", + "plant" + ], + "value" : "🌺" + }, "🌻", + { + "value" : "🌻", + "keywords" : [ + "flower", + "outdoors", + "plant", + "sun", + "sunflower" + ] + }, "🌼", + { + "value" : "🌼", + "keywords" : [ + "blossom", + "buttercup", + "dandelion", + "flower", + "plant" + ] + }, "🌷", + { + "keywords" : [ + "blossom", + "flower", + "growth", + "plant", + "tulip" + ], + "value" : "🌷" + }, "🪻", + { + "value" : "🪻", + "keywords" : [ + "bloom", + "bluebonnet", + "flower", + "hyacinth", + "indigo", + "lavender", + "lilac", + "lupine", + "plant", + "purple", + "shrub", + "snapdragon", + "spring", + "violet" + ] + }, "🌱", + { + "value" : "🌱", + "keywords" : [ + "plant", + "sapling", + "seedling", + "sprout", + "young" + ] + }, "🪴", + { + "keywords" : [ + "decor", + "grow", + "house", + "nurturing", + "plant", + "pot", + "potted" + ], + "value" : "🪴" + }, "🌲", + { + "value" : "🌲", + "keywords" : [ + "christmas", + "evergreen", + "forest", + "pine", + "tree" + ] + }, "🌳", + { + "value" : "🌳", + "keywords" : [ + "deciduous", + "forest", + "green", + "habitat", + "shedding", + "tree" + ] + }, "🌴", + { + "value" : "🌴", + "keywords" : [ + "beach", + "palm", + "plant", + "tree", + "tropical" + ] + }, "🌵", + { + "value" : "🌵", + "keywords" : [ + "cactus", + "desert", + "drought", + "nature", + "plant" + ] + }, "🌾", + { + "keywords" : [ + "ear", + "grain", + "grains", + "plant", + "rice", + "sheaf" + ], + "value" : "🌾" + }, "🌿", + { + "value" : "🌿", + "keywords" : [ + "herb", + "leaf", + "plant" + ] + }, "☘️", + { + "keywords" : [ + "irish", + "plant", + "shamrock" + ], + "value" : "☘️" + }, "🍀", + { + "value" : "🍀", + "keywords" : [ + "4", + "clover", + "four", + "four-leaf", + "irish", + "leaf", + "lucky", + "plant" + ] + }, "🍁", + { + "keywords" : [ + "falling", + "leaf", + "maple" + ], + "value" : "🍁" + }, "🍂", + { + "value" : "🍂", + "keywords" : [ + "autumn", + "fall", + "fallen", + "falling", + "leaf" + ] + }, "🍃", + { + "value" : "🍃", + "keywords" : [ + "blow", + "flutter", + "fluttering", + "leaf", + "wind" + ] + }, "🪹", + { + "value" : "🪹", + "keywords" : [ + "branch", + "empty", + "home", + "nest", + "nesting" + ] + }, "🪺", - "🍄" - ] + { + "value" : "🪺", + "keywords" : [ + "bird", + "branch", + "egg", + "eggs", + "nest", + "nesting" + ] + }, + "🍄", + { + "value" : "🍄", + "keywords" : [ + "fungus", + "mushroom", + "toadstool" + ] + } + ], + "appleCategory" : "animalsAndNature", + "name" : "Animals & Nature" }, { + "appleCategory" : "foodAndDrink", "name" : "Food & Drink", - "values" : [ + "emojis" : [ "🍇", + { + "value" : "🍇", + "keywords" : [ + "Dionysus", + "fruit", + "grape", + "grapes" + ] + }, "🍈", + { + "value" : "🍈", + "keywords" : [ + "cantaloupe", + "fruit", + "melon" + ] + }, "🍉", + { + "keywords" : [ + "fruit", + "watermelon" + ], + "value" : "🍉" + }, "🍊", + { + "value" : "🍊", + "keywords" : [ + "c", + "citrus", + "fruit", + "nectarine", + "orange", + "tangerine", + "vitamin" + ] + }, "🍋", + { + "value" : "🍋", + "keywords" : [ + "citrus", + "fruit", + "lemon", + "sour" + ] + }, "🍌", + { + "keywords" : [ + "banana", + "fruit", + "potassium" + ], + "value" : "🍌" + }, "🍍", + { + "value" : "🍍", + "keywords" : [ + "colada", + "fruit", + "pina", + "pineapple", + "tropical" + ] + }, "🥭", + { + "keywords" : [ + "food", + "fruit", + "mango", + "tropical" + ], + "value" : "🥭" + }, "🍎", + { + "value" : "🍎", + "keywords" : [ + "apple", + "diet", + "food", + "fruit", + "health", + "red", + "ripe" + ] + }, "🍏", + { + "keywords" : [ + "apple", + "fruit", + "green" + ], + "value" : "🍏" + }, "🍐", + { + "value" : "🍐", + "keywords" : [ + "fruit", + "pear" + ] + }, "🍑", + { + "value" : "🍑", + "keywords" : [ + "fruit", + "peach" + ] + }, "🍒", + { + "keywords" : [ + "berries", + "cherries", + "cherry", + "fruit", + "red" + ], + "value" : "🍒" + }, "🍓", + { + "value" : "🍓", + "keywords" : [ + "berry", + "fruit", + "strawberry" + ] + }, "🫐", + { + "value" : "🫐", + "keywords" : [ + "berries", + "berry", + "bilberry", + "blue", + "blueberries", + "blueberry", + "food", + "fruit" + ] + }, "🥝", + { + "value" : "🥝", + "keywords" : [ + "food", + "fruit", + "kiwi" + ] + }, "🍅", + { + "keywords" : [ + "food", + "fruit", + "tomato", + "vegetable" + ], + "value" : "🍅" + }, "🫒", + { + "keywords" : [ + "food", + "olive" + ], + "value" : "🫒" + }, "🥥", + { + "value" : "🥥", + "keywords" : [ + "coconut", + "colada", + "palm", + "piña" + ] + }, "🥑", + { + "keywords" : [ + "avocado", + "food", + "fruit" + ], + "value" : "🥑" + }, "🍆", + { + "value" : "🍆", + "keywords" : [ + "aubergine", + "eggplant", + "vegetable" + ] + }, "🥔", + { + "value" : "🥔", + "keywords" : [ + "food", + "potato", + "vegetable" + ] + }, "🥕", + { + "value" : "🥕", + "keywords" : [ + "carrot", + "food", + "vegetable" + ] + }, "🌽", + { + "keywords" : [ + "corn", + "crops", + "ear", + "farm", + "maize", + "maze" + ], + "value" : "🌽" + }, "🌶️", + { + "keywords" : [ + "hot", + "pepper" + ], + "value" : "🌶️" + }, "🫑", + { + "keywords" : [ + "bell", + "capsicum", + "food", + "pepper", + "vegetable" + ], + "value" : "🫑" + }, "🥒", + { + "keywords" : [ + "cucumber", + "food", + "pickle", + "vegetable" + ], + "value" : "🥒" + }, "🥬", + { + "keywords" : [ + "bok", + "burgers", + "cabbage", + "choy", + "green", + "kale", + "leafy", + "lettuce", + "salad" + ], + "value" : "🥬" + }, "🥦", + { + "value" : "🥦", + "keywords" : [ + "broccoli", + "cabbage", + "wild" + ] + }, "🧄", + { + "keywords" : [ + "flavoring", + "garlic" + ], + "value" : "🧄" + }, "🧅", + { + "value" : "🧅", + "keywords" : [ + "flavoring", + "onion" + ] + }, "🥜", + { + "keywords" : [ + "food", + "nut", + "peanut", + "peanuts", + "vegetable" + ], + "value" : "🥜" + }, "🫘", + { + "keywords" : [ + "beans", + "food", + "kidney", + "legume", + "small" + ], + "value" : "🫘" + }, "🌰", + { + "value" : "🌰", + "keywords" : [ + "almond", + "chestnut", + "plant" + ] + }, "🫚", + { + "keywords" : [ + "beer", + "ginger", + "health", + "herb", + "natural", + "root", + "spice" + ], + "value" : "🫚" + }, "🫛", + { + "keywords" : [ + "beans", + "beanstalk", + "edamame", + "legume", + "pea", + "pod", + "soybean", + "vegetable", + "veggie" + ], + "value" : "🫛" + }, "🍞", + { + "value" : "🍞", + "keywords" : [ + "bread", + "carbs", + "food", + "grain", + "loaf", + "restaurant", + "toast", + "wheat" + ] + }, "🥐", + { + "value" : "🥐", + "keywords" : [ + "bread", + "breakfast", + "crescent", + "croissant", + "food", + "french", + "roll" + ] + }, "🥖", + { + "keywords" : [ + "baguette", + "bread", + "food", + "french" + ], + "value" : "🥖" + }, "🫓", + { + "keywords" : [ + "arepa", + "bread", + "flatbread", + "food", + "gordita", + "lavash", + "naan", + "pita" + ], + "value" : "🫓" + }, "🥨", + { + "keywords" : [ + "convoluted", + "pretzel", + "twisted" + ], + "value" : "🥨" + }, "🥯", + { + "value" : "🥯", + "keywords" : [ + "bagel", + "bakery", + "bread", + "breakfast", + "schmear" + ] + }, "🥞", + { + "keywords" : [ + "breakfast", + "crêpe", + "food", + "hotcake", + "pancake", + "pancakes" + ], + "value" : "🥞" + }, "🧇", + { + "value" : "🧇", + "keywords" : [ + "breakfast", + "indecisive", + "iron", + "waffle" + ] + }, "🧀", + { + "keywords" : [ + "cheese", + "wedge" + ], + "value" : "🧀" + }, "🍖", + { + "keywords" : [ + "bone", + "meat" + ], + "value" : "🍖" + }, "🍗", + { + "value" : "🍗", + "keywords" : [ + "bone", + "chicken", + "drumstick", + "hungry", + "leg", + "poultry", + "turkey" + ] + }, "🥩", + { + "keywords" : [ + "chop", + "cut", + "lambchop", + "meat", + "porkchop", + "red", + "steak" + ], + "value" : "🥩" + }, "🥓", + { + "keywords" : [ + "bacon", + "breakfast", + "food", + "meat" + ], + "value" : "🥓" + }, "🍔", + { + "keywords" : [ + "burger", + "eat", + "fast", + "food", + "hamburger", + "hungry" + ], + "value" : "🍔" + }, "🍟", + { + "value" : "🍟", + "keywords" : [ + "fast", + "food", + "french", + "fries" + ] + }, "🍕", + { + "value" : "🍕", + "keywords" : [ + "cheese", + "food", + "hungry", + "pepperoni", + "pizza", + "slice" + ] + }, "🌭", + { + "value" : "🌭", + "keywords" : [ + "dog", + "frankfurter", + "hot", + "hotdog", + "sausage" + ] + }, "🥪", + { + "keywords" : [ + "bread", + "sandwich" + ], + "value" : "🥪" + }, "🌮", + { + "value" : "🌮", + "keywords" : [ + "mexican", + "taco" + ] + }, "🌯", + { + "keywords" : [ + "burrito", + "mexican", + "wrap" + ], + "value" : "🌯" + }, "🫔", + { + "keywords" : [ + "food", + "mexican", + "pamonha", + "tamale", + "wrapped" + ], + "value" : "🫔" + }, "🥙", + { + "value" : "🥙", + "keywords" : [ + "falafel", + "flatbread", + "food", + "gyro", + "kebab", + "stuffed" + ] + }, "🧆", + { + "value" : "🧆", + "keywords" : [ + "chickpea", + "falafel", + "meatball" + ] + }, "🥚", + { + "value" : "🥚", + "keywords" : [ + "breakfast", + "egg", + "food" + ] + }, "🍳", + { + "value" : "🍳", + "keywords" : [ + "breakfast", + "cooking", + "easy", + "egg", + "fry", + "frying", + "over", + "pan", + "restaurant", + "side", + "sunny", + "up" + ] + }, "🥘", + { + "value" : "🥘", + "keywords" : [ + "casserole", + "food", + "paella", + "pan", + "shallow" + ] + }, "🍲", + { + "value" : "🍲", + "keywords" : [ + "food", + "pot", + "soup", + "stew" + ] + }, "🫕", + { + "keywords" : [ + "cheese", + "chocolate", + "fondue", + "food", + "melted", + "pot", + "ski" + ], + "value" : "🫕" + }, "🥣", + { + "value" : "🥣", + "keywords" : [ + "bowl", + "breakfast", + "cereal", + "congee", + "oatmeal", + "porridge", + "spoon" + ] + }, "🥗", + { + "keywords" : [ + "food", + "green", + "salad" + ], + "value" : "🥗" + }, "🍿", + { + "keywords" : [ + "movie", + "popcorn", + "pop", + "corn" + ], + "value" : "🍿" + }, "🧈", + { + "value" : "🧈", + "keywords" : [ + "butter", + "dairy" + ] + }, "🧂", + { + "keywords" : [ + "condiment", + "flavor", + "mad", + "salt", + "salty", + "shaker", + "taste", + "upset" + ], + "value" : "🧂" + }, "🥫", + { + "keywords" : [ + "can", + "canned", + "food" + ], + "value" : "🥫" + }, "🍱", + { + "value" : "🍱", + "keywords" : [ + "bento", + "box", + "food" + ] + }, "🍘", + { + "keywords" : [ + "cracker", + "food", + "rice" + ], + "value" : "🍘" + }, "🍙", + { + "value" : "🍙", + "keywords" : [ + "ball", + "food", + "Japanese", + "rice" + ] + }, "🍚", + { + "value" : "🍚", + "keywords" : [ + "cooked", + "food", + "rice" + ] + }, "🍛", + { + "value" : "🍛", + "keywords" : [ + "curry", + "food", + "rice" + ] + }, "🍜", + { + "value" : "🍜", + "keywords" : [ + "bowl", + "chopsticks", + "food", + "noodle", + "pho", + "ramen", + "soup", + "steaming" + ] + }, "🍝", + { + "keywords" : [ + "food", + "meatballs", + "pasta", + "restaurant", + "spaghetti" + ], + "value" : "🍝" + }, "🍠", + { + "value" : "🍠", + "keywords" : [ + "food", + "potato", + "roasted", + "sweet" + ] + }, "🍢", + { + "value" : "🍢", + "keywords" : [ + "food", + "kebab", + "oden", + "restaurant", + "seafood", + "skewer", + "stick" + ] + }, "🍣", + { + "value" : "🍣", + "keywords" : [ + "food", + "sushi" + ] + }, "🍤", + { + "value" : "🍤", + "keywords" : [ + "fried", + "prawn", + "shrimp", + "tempura" + ] + }, "🍥", + { + "keywords" : [ + "cake", + "fish", + "food", + "pastry", + "restaurant", + "swirl" + ], + "value" : "🍥" + }, "🥮", + { + "keywords" : [ + "autumn", + "cake", + "festival", + "moon", + "yuèbǐng" + ], + "value" : "🥮" + }, "🍡", + { + "keywords" : [ + "dango", + "dessert", + "Japanese", + "skewer", + "stick", + "sweet" + ], + "value" : "🍡" + }, "🥟", + { + "value" : "🥟", + "keywords" : [ + "dumpling", + "empanada", + "gyōza", + "jiaozi", + "pierogi", + "potsticker" + ] + }, "🥠", + { + "keywords" : [ + "cookie", + "fortune", + "prophecy" + ], + "value" : "🥠" + }, "🥡", + { + "value" : "🥡", + "keywords" : [ + "box", + "chopsticks", + "delivery", + "food", + "oyster", + "pail", + "takeout" + ] + }, "🦀", + { + "keywords" : [ + "Cancer", + "crab", + "zodiac" + ], + "value" : "🦀" + }, "🦞", + { + "keywords" : [ + "animal", + "bisque", + "claws", + "lobster", + "seafood" + ], + "value" : "🦞" + }, "🦐", + { + "keywords" : [ + "food", + "shellfish", + "shrimp", + "small" + ], + "value" : "🦐" + }, "🦑", + { + "value" : "🦑", + "keywords" : [ + "animal", + "food", + "mollusk", + "squid" + ] + }, "🦪", + { + "value" : "🦪", + "keywords" : [ + "diving", + "oyster", + "pearl" + ] + }, "🍦", + { + "keywords" : [ + "cream", + "dessert", + "food", + "ice", + "icecream", + "restaurant", + "serve", + "soft", + "sweet" + ], + "value" : "🍦" + }, "🍧", + { + "value" : "🍧", + "keywords" : [ + "dessert", + "ice", + "restaurant", + "shaved", + "sweet" + ] + }, "🍨", + { + "value" : "🍨", + "keywords" : [ + "cream", + "dessert", + "food", + "ice", + "restaurant", + "sweet" + ] + }, "🍩", + { + "value" : "🍩", + "keywords" : [ + "breakfast", + "dessert", + "donut", + "doughnut", + "food", + "sweet" + ] + }, "🍪", + { + "value" : "🍪", + "keywords" : [ + "chip", + "chocolate", + "cookie", + "dessert", + "sweet" + ] + }, "🎂", + { + "value" : "🎂", + "keywords" : [ + "bday", + "birthday", + "cake", + "celebration", + "dessert", + "happy", + "pastry", + "sweet" + ] + }, "🍰", + { + "value" : "🍰", + "keywords" : [ + "cake", + "dessert", + "pastry", + "shortcake", + "slice", + "sweet" + ] + }, "🧁", + { + "keywords" : [ + "bakery", + "cupcake", + "dessert", + "sprinkles", + "sugar", + "sweet", + "treat" + ], + "value" : "🧁" + }, "🥧", + { + "keywords" : [ + "apple", + "filling", + "fruit", + "meat", + "pastry", + "pie", + "pumpkin", + "slice" + ], + "value" : "🥧" + }, "🍫", + { + "value" : "🍫", + "keywords" : [ + "bar", + "candy", + "chocolate", + "dessert", + "halloween", + "sweet", + "tooth" + ] + }, "🍬", + { + "keywords" : [ + "candy", + "cavities", + "dessert", + "halloween", + "restaurant", + "sweet", + "tooth", + "wrapper" + ], + "value" : "🍬" + }, "🍭", + { + "keywords" : [ + "candy", + "dessert", + "food", + "lollipop", + "restaurant", + "sweet" + ], + "value" : "🍭" + }, "🍮", + { + "keywords" : [ + "custard", + "dessert", + "pudding", + "sweet" + ], + "value" : "🍮" + }, "🍯", + { + "keywords" : [ + "barrel", + "bear", + "food", + "honey", + "honeypot", + "jar", + "pot", + "sweet" + ], + "value" : "🍯" + }, "🍼", + { + "value" : "🍼", + "keywords" : [ + "babies", + "baby", + "birth", + "born", + "bottle", + "drink", + "infant", + "milk", + "newborn" + ] + }, "🥛", + { + "value" : "🥛", + "keywords" : [ + "drink", + "glass", + "milk" + ] + }, "☕", + { + "value" : "☕", + "keywords" : [ + "beverage", + "cafe", + "caffeine", + "chai", + "coffee", + "drink", + "hot", + "morning", + "steaming", + "tea" + ] + }, "🫖", + { + "value" : "🫖", + "keywords" : [ + "brew", + "drink", + "food", + "pot", + "tea", + "teapot" + ] + }, "🍵", + { + "keywords" : [ + "beverage", + "cup", + "drink", + "handle", + "oolong", + "tea", + "teacup" + ], + "value" : "🍵" + }, "🍶", + { + "keywords" : [ + "bar", + "beverage", + "bottle", + "cup", + "drink", + "restaurant", + "sake" + ], + "value" : "🍶" + }, "🍾", + { + "keywords" : [ + "bar", + "bottle", + "cork", + "drink", + "popping" + ], + "value" : "🍾" + }, "🍷", + { + "value" : "🍷", + "keywords" : [ + "alcohol", + "bar", + "beverage", + "booze", + "club", + "drink", + "drinking", + "drinks", + "glass", + "restaurant", + "wine" + ] + }, "🍸", + { + "keywords" : [ + "alcohol", + "bar", + "booze", + "club", + "cocktail", + "drink", + "drinking", + "drinks", + "glass", + "mad", + "martini", + "men" + ], + "value" : "🍸" + }, "🍹", + { + "value" : "🍹", + "keywords" : [ + "alcohol", + "bar", + "booze", + "club", + "cocktail", + "drink", + "drinking", + "drinks", + "drunk", + "mai", + "party", + "tai", + "tropical", + "tropics" + ] + }, "🍺", + { + "value" : "🍺", + "keywords" : [ + "alcohol", + "ale", + "bar", + "beer", + "booze", + "drink", + "drinking", + "drinks", + "mug", + "octoberfest", + "oktoberfest", + "pint", + "stein", + "summer" + ] + }, "🍻", + { + "value" : "🍻", + "keywords" : [ + "alcohol", + "bar", + "beer", + "booze", + "bottoms", + "cheers", + "clink", + "clinking", + "drinking", + "drinks", + "mugs" + ] + }, "🥂", + { + "keywords" : [ + "celebrate", + "clink", + "clinking", + "drink", + "glass", + "glasses" + ], + "value" : "🥂" + }, "🥃", + { + "keywords" : [ + "glass", + "liquor", + "scotch", + "shot", + "tumbler", + "whiskey", + "whisky" + ], + "value" : "🥃" + }, "🫗", + { + "keywords" : [ + "accident", + "drink", + "empty", + "glass", + "liquid", + "oops", + "pour", + "pouring", + "spill", + "water" + ], + "value" : "🫗" + }, "🥤", + { + "value" : "🥤", + "keywords" : [ + "cup", + "drink", + "juice", + "malt", + "soda", + "soft", + "straw", + "water" + ] + }, "🧋", + { + "keywords" : [ + "boba", + "bubble", + "food", + "milk", + "pearl", + "tea" + ], + "value" : "🧋" + }, "🧃", + { + "keywords" : [ + "beverage", + "box", + "juice", + "straw", + "sweet" + ], + "value" : "🧃" + }, "🧉", + { + "value" : "🧉", + "keywords" : [ + "drink", + "mate" + ] + }, "🧊", + { + "value" : "🧊", + "keywords" : [ + "cold", + "cube", + "ice", + "iceberg" + ] + }, "🥢", + { + "keywords" : [ + "chopsticks", + "hashi", + "jeotgarak", + "kuaizi" + ], + "value" : "🥢" + }, "🍽️", + { + "value" : "🍽️", + "keywords" : [ + "cooking", + "dinner", + "eat", + "fork", + "knife", + "plate" + ] + }, "🍴", + { + "keywords" : [ + "breakfast", + "breaky", + "cooking", + "cutlery", + "delicious", + "dinner", + "eat", + "feed", + "food", + "fork", + "hungry", + "knife", + "lunch", + "restaurant", + "yum", + "yummy" + ], + "value" : "🍴" + }, "🥄", + { + "keywords" : [ + "eat", + "spoon", + "tableware" + ], + "value" : "🥄" + }, "🔪", + { + "value" : "🔪", + "keywords" : [ + "chef", + "cooking", + "hocho", + "kitchen", + "knife", + "tool", + "weapon" + ] + }, "🫙", - "🏺" + { + "keywords" : [ + "condiment", + "container", + "empty", + "jar", + "nothing", + "sauce", + "store" + ], + "value" : "🫙" + }, + "🏺", + { + "keywords" : [ + "amphora", + "Aquarius", + "cooking", + "drink", + "jug", + "tool", + "weapon", + "zodiac" + ], + "value" : "🏺" + } ] }, { - "name" : "Smileys & Emotion", - "values" : [ + "appleCategory" : "smileysAndPeople", + "emojis" : [ "😀", + { + "value" : "😀", + "keywords" : [ + "cheerful", + "cheery", + "face", + "grin", + "grinning", + "happy", + "laugh", + "nice", + "smile", + "smiling", + "teeth" + ] + }, "😃", + { + "value" : "😃", + "keywords" : [ + "awesome", + "big", + "eyes", + "face", + "grin", + "grinning", + "happy", + "mouth", + "open", + "smile", + "smiling", + "teeth", + "yay" + ] + }, "😄", + { + "value" : "😄", + "keywords" : [ + "eye", + "eyes", + "face", + "grin", + "grinning", + "happy", + "laugh", + "lol", + "mouth", + "open", + "smile", + "smiling" + ] + }, "😁", + { + "keywords" : [ + "beaming", + "eye", + "eyes", + "face", + "grin", + "grinning", + "happy", + "nice", + "smile", + "smiling", + "teeth" + ], + "value" : "😁" + }, "😆", + { + "value" : "😆", + "keywords" : [ + "closed", + "eyes", + "face", + "grinning", + "haha", + "hahaha", + "happy", + "laugh", + "lol", + "mouth", + "open", + "rofl", + "smile", + "smiling", + "squinting" + ] + }, "😅", + { + "value" : "😅", + "keywords" : [ + "cold", + "dejected", + "excited", + "face", + "grinning", + "mouth", + "nervous", + "open", + "smile", + "smiling", + "stress", + "stressed", + "sweat" + ] + }, "🤣", + { + "value" : "🤣", + "keywords" : [ + "crying", + "face", + "floor", + "funny", + "haha", + "happy", + "hehe", + "hilarious", + "joy", + "laugh", + "lmao", + "lol", + "rofl", + "roflmao", + "rolling", + "tear" + ] + }, "😂", + { + "keywords" : [ + "crying", + "face", + "feels", + "funny", + "haha", + "happy", + "hehe", + "hilarious", + "joy", + "laugh", + "lmao", + "lol", + "rofl", + "roflmao", + "tear" + ], + "value" : "😂" + }, "🙂", + { + "keywords" : [ + "face", + "happy", + "slightly", + "smile", + "smiling" + ], + "value" : "🙂" + }, "🙃", + { + "keywords" : [ + "face", + "hehe", + "smile", + "upside-down" + ], + "value" : "🙃" + }, "🫠", + { + "value" : "🫠", + "keywords" : [ + "disappear", + "dissolve", + "embarrassed", + "face", + "haha", + "heat", + "hot", + "liquid", + "lol", + "melt", + "melting", + "sarcasm", + "sarcastic" + ] + }, "😉", + { + "value" : "😉", + "keywords" : [ + "face", + "flirt", + "heartbreaker", + "sexy", + "slide", + "tease", + "wink", + "winking", + "winks" + ] + }, "😊", + { + "value" : "😊", + "keywords" : [ + "blush", + "eye", + "eyes", + "face", + "glad", + "satisfied", + "smile", + "smiling" + ] + }, "😇", + { + "value" : "😇", + "keywords" : [ + "angel", + "angelic", + "angels", + "blessed", + "face", + "fairy", + "fairytale", + "fantasy", + "halo", + "happy", + "innocent", + "peaceful", + "smile", + "smiling", + "spirit", + "tale" + ] + }, "🥰", + { + "value" : "🥰", + "keywords" : [ + "3", + "adore", + "crush", + "face", + "heart", + "hearts", + "ily", + "love", + "romance", + "smile", + "smiling", + "you" + ] + }, "😍", + { + "keywords" : [ + "143", + "bae", + "eye", + "face", + "feels", + "heart-eyes", + "hearts", + "ily", + "kisses", + "love", + "romance", + "romantic", + "smile", + "xoxo" + ], + "value" : "😍" + }, "🤩", + { + "value" : "🤩", + "keywords" : [ + "excited", + "eyes", + "face", + "grinning", + "smile", + "star", + "star-struck", + "starry-eyed", + "wow" + ] + }, "😘", + { + "keywords" : [ + "adorbs", + "bae", + "blowing", + "face", + "flirt", + "heart", + "ily", + "kiss", + "love", + "lover", + "miss", + "muah", + "romantic", + "smooch", + "xoxo", + "you" + ], + "value" : "😘" + }, "😗", + { + "value" : "😗", + "keywords" : [ + "143", + "date", + "dating", + "face", + "flirt", + "ily", + "kiss", + "love", + "smooch", + "smooches", + "xoxo", + "you" + ] + }, "☺️", + { + "value" : "☺️", + "keywords" : [ + "face", + "happy", + "outlined", + "relaxed", + "smile", + "smiling" + ] + }, "😚", + { + "value" : "😚", + "keywords" : [ + "143", + "bae", + "blush", + "closed", + "date", + "dating", + "eye", + "eyes", + "face", + "flirt", + "ily", + "kisses", + "kissing", + "smooches", + "xoxo" + ] + }, "😙", + { + "value" : "😙", + "keywords" : [ + "143", + "closed", + "date", + "dating", + "eye", + "eyes", + "face", + "flirt", + "ily", + "kiss", + "kisses", + "kissing", + "love", + "night", + "smile", + "smiling" + ] + }, "🥲", + { + "keywords" : [ + "face", + "glad", + "grateful", + "happy", + "joy", + "pain", + "proud", + "relieved", + "smile", + "smiley", + "smiling", + "tear", + "touched" + ], + "value" : "🥲" + }, "😋", + { + "value" : "😋", + "keywords" : [ + "delicious", + "eat", + "face", + "food", + "full", + "hungry", + "savor", + "smile", + "smiling", + "tasty", + "um", + "yum", + "yummy" + ] + }, "😛", + { + "keywords" : [ + "awesome", + "cool", + "face", + "nice", + "party", + "stuck-out", + "sweet", + "tongue" + ], + "value" : "😛" + }, "😜", + { + "keywords" : [ + "crazy", + "epic", + "eye", + "face", + "funny", + "joke", + "loopy", + "nutty", + "party", + "stuck-out", + "tongue", + "wacky", + "weirdo", + "wink", + "winking", + "yolo" + ], + "value" : "😜" + }, "🤪", + { + "value" : "🤪", + "keywords" : [ + "crazy", + "eye", + "eyes", + "face", + "goofy", + "large", + "small", + "zany" + ] + }, "😝", + { + "keywords" : [ + "closed", + "eye", + "eyes", + "face", + "gross", + "horrible", + "omg", + "squinting", + "stuck-out", + "taste", + "tongue", + "whatever", + "yolo" + ], + "value" : "😝" + }, "🤑", + { + "value" : "🤑", + "keywords" : [ + "face", + "money", + "money-mouth", + "mouth", + "paid" + ] + }, "🤗", + { + "value" : "🤗", + "keywords" : [ + "face", + "hands", + "hug", + "hugging", + "open", + "smiling" + ] + }, "🤭", + { + "keywords" : [ + "face", + "giggle", + "giggling", + "hand", + "mouth", + "oops", + "realization", + "secret", + "shock", + "sudden", + "surprise", + "whoops" + ], + "value" : "🤭" + }, "🫢", + { + "value" : "🫢", + "keywords" : [ + "amazement", + "awe", + "disbelief", + "embarrass", + "eyes", + "face", + "gasp", + "hand", + "mouth", + "omg", + "open", + "over", + "quiet", + "scared", + "shock", + "surprise" + ] + }, "🫣", + { + "value" : "🫣", + "keywords" : [ + "captivated", + "embarrass", + "eye", + "face", + "hide", + "hiding", + "peek", + "peeking", + "peep", + "scared", + "shy", + "stare" + ] + }, "🤫", + { + "keywords" : [ + "face", + "quiet", + "shh", + "shush", + "shushing" + ], + "value" : "🤫" + }, "🤔", + { + "value" : "🤔", + "keywords" : [ + "chin", + "consider", + "face", + "hmm", + "ponder", + "pondering", + "thinking", + "wondering" + ] + }, "🫡", + { + "keywords" : [ + "face", + "good", + "luck", + "ma’am", + "OK", + "respect", + "salute", + "saluting", + "sir", + "troops", + "yes" + ], + "value" : "🫡" + }, "🤐", + { + "keywords" : [ + "face", + "keep", + "mouth", + "quiet", + "secret", + "shut", + "zip", + "zipper", + "zipper-mouth" + ], + "value" : "🤐" + }, "🤨", + { + "value" : "🤨", + "keywords" : [ + "disapproval", + "disbelief", + "distrust", + "emoji", + "eyebrow", + "face", + "hmm", + "mild", + "raised", + "skepticism", + "skeptic", + "skeptical", + "surprise", + "what" + ] + }, "😐", + { + "value" : "😐", + "keywords" : [ + "awkward", + "blank", + "deadpan", + "expressionless", + "face", + "fine", + "jealous", + "meh", + "neutral", + "oh", + "shade", + "straight", + "unamused", + "unhappy", + "unimpressed", + "whatever" + ] + }, "😑", + { + "value" : "😑", + "keywords" : [ + "awkward", + "dead", + "expressionless", + "face", + "fine", + "inexpressive", + "jealous", + "meh", + "not", + "oh", + "omg", + "straight", + "uh", + "unhappy", + "unimpressed", + "whatever" + ] + }, "😶", + { + "keywords" : [ + "awkward", + "blank", + "expressionless", + "face", + "mouth", + "mouthless", + "mute", + "quiet", + "secret", + "silence", + "silent", + "speechless" + ], + "value" : "😶" + }, "🫥", + { + "keywords" : [ + "depressed", + "disappear", + "dotted", + "face", + "hidden", + "hide", + "introvert", + "invisible", + "line", + "meh", + "whatever", + "wtv" + ], + "value" : "🫥" + }, "😶‍🌫️", + { + "keywords" : [ + "absentminded", + "clouds", + "face", + "fog", + "head" + ], + "value" : "😶‍🌫️" + }, "😏", + { + "value" : "😏", + "keywords" : [ + "boss", + "dapper", + "face", + "flirt", + "homie", + "kidding", + "leer", + "shade", + "slick", + "sly", + "smirk", + "smug", + "snicker", + "suave", + "suspicious", + "swag" + ] + }, "😒", + { + "value" : "😒", + "keywords" : [ + "...", + "bored", + "face", + "fine", + "jealous", + "jel", + "jelly", + "pissed", + "smh", + "ugh", + "uhh", + "unamused", + "unhappy", + "weird", + "whatever" + ] + }, "🙄", + { + "keywords" : [ + "eyeroll", + "eyes", + "face", + "rolling", + "shade", + "ugh", + "whatever" + ], + "value" : "🙄" + }, "😬", + { + "value" : "😬", + "keywords" : [ + "awk", + "awkward", + "dentist", + "face", + "grimace", + "grimacing", + "grinning", + "smile", + "smiling" + ] + }, "😮‍💨", + { + "keywords" : [ + "blow", + "blowing", + "exhale", + "exhaling", + "exhausted", + "face", + "gasp", + "groan", + "relief", + "sigh", + "smiley", + "smoke", + "whisper", + "whistle" + ], + "value" : "😮‍💨" + }, "🤥", + { + "value" : "🤥", + "keywords" : [ + "face", + "liar", + "lie", + "lying", + "pinocchio" + ] + }, "🫨", + { + "value" : "🫨", + "keywords" : [ + "crazy", + "daze", + "earthquake", + "face", + "omg", + "panic", + "shaking", + "shock", + "surprise", + "vibrate", + "whoa", + "wow" + ] + }, "😌", + { + "value" : "😌", + "keywords" : [ + "calm", + "face", + "peace", + "relief", + "relieved", + "zen" + ] + }, "😔", + { + "value" : "😔", + "keywords" : [ + "awful", + "bored", + "dejected", + "died", + "disappointed", + "face", + "losing", + "lost", + "pensive", + "sad", + "sucks" + ] + }, "😪", + { + "value" : "😪", + "keywords" : [ + "crying", + "face", + "good", + "night", + "sad", + "sleep", + "sleeping", + "sleepy", + "tired" + ] + }, "🤤", + { + "keywords" : [ + "drooling", + "face" + ], + "value" : "🤤" + }, "😴", + { + "value" : "😴", + "keywords" : [ + "bed", + "bedtime", + "face", + "good", + "goodnight", + "nap", + "night", + "sleep", + "sleeping", + "tired", + "whatever", + "yawn", + "zzz" + ] + }, "😷", + { + "value" : "😷", + "keywords" : [ + "cold", + "dentist", + "dermatologist", + "doctor", + "dr", + "face", + "germs", + "mask", + "medical", + "medicine", + "sick" + ] + }, "🤒", + { + "keywords" : [ + "face", + "ill", + "sick", + "thermometer" + ], + "value" : "🤒" + }, "🤕", + { + "value" : "🤕", + "keywords" : [ + "bandage", + "face", + "head-bandage", + "hurt", + "injury", + "ouch" + ] + }, "🤢", + { + "value" : "🤢", + "keywords" : [ + "face", + "gross", + "nasty", + "nauseated", + "sick", + "vomit" + ] + }, "🤮", + { + "value" : "🤮", + "keywords" : [ + "barf", + "ew", + "face", + "gross", + "puke", + "sick", + "spew", + "throw", + "up", + "vomit", + "vomiting" + ] + }, "🤧", + { + "keywords" : [ + "face", + "fever", + "flu", + "gesundheit", + "sick", + "sneeze", + "sneezing" + ], + "value" : "🤧" + }, "🥵", + { + "value" : "🥵", + "keywords" : [ + "dying", + "face", + "feverish", + "heat", + "hot", + "panting", + "red-faced", + "stroke", + "sweating", + "tongue" + ] + }, "🥶", + { + "value" : "🥶", + "keywords" : [ + "blue", + "blue-faced", + "cold", + "face", + "freezing", + "frostbite", + "icicles", + "subzero", + "teeth" + ] + }, "🥴", + { + "keywords" : [ + "dizzy", + "drunk", + "eyes", + "face", + "intoxicated", + "mouth", + "tipsy", + "uneven", + "wavy", + "woozy" + ], + "value" : "🥴" + }, "😵", + { + "keywords" : [ + "crossed-out", + "dead", + "dizzy", + "eyes", + "face", + "feels", + "knocked", + "out", + "sick", + "tired" + ], + "value" : "😵" + }, "😵‍💫", + { + "value" : "😵‍💫", + "keywords" : [ + "confused", + "dizzy", + "eyes", + "face", + "hypnotized", + "omg", + "smiley", + "spiral", + "trouble", + "whoa", + "woah", + "woozy" + ] + }, "🤯", + { + "value" : "🤯", + "keywords" : [ + "blown", + "explode", + "exploding", + "head", + "mind", + "mindblown", + "no", + "shocked", + "way" + ] + }, "🤠", + { + "value" : "🤠", + "keywords" : [ + "cowboy", + "cowgirl", + "face", + "hat" + ] + }, "🥳", + { + "keywords" : [ + "bday", + "birthday", + "celebrate", + "celebration", + "excited", + "face", + "happy", + "hat", + "hooray", + "horn", + "party", + "partying" + ], + "value" : "🥳" + }, "🥸", + { + "keywords" : [ + "disguise", + "eyebrow", + "face", + "glasses", + "incognito", + "moustache", + "mustache", + "nose", + "person", + "spy", + "tache", + "tash" + ], + "value" : "🥸" + }, "😎", + { + "value" : "😎", + "keywords" : [ + "awesome", + "beach", + "bright", + "bro", + "chilling", + "cool", + "face", + "rad", + "relaxed", + "shades", + "slay", + "smile", + "style", + "sunglasses", + "swag", + "win" + ] + }, "🤓", + { + "value" : "🤓", + "keywords" : [ + "brainy", + "clever", + "expert", + "face", + "geek", + "gifted", + "glasses", + "intelligent", + "nerd", + "smart" + ] + }, "🧐", + { + "value" : "🧐", + "keywords" : [ + "classy", + "face", + "fancy", + "monocle", + "rich", + "stuffy", + "wealthy" + ] + }, "😕", + { + "keywords" : [ + "befuddled", + "confused", + "confusing", + "dunno", + "face", + "frown", + "hm", + "meh", + "not", + "sad", + "sorry", + "sure" + ], + "value" : "😕" + }, "🫤", + { + "value" : "🫤", + "keywords" : [ + "confused", + "confusion", + "diagonal", + "disappointed", + "doubt", + "doubtful", + "face", + "frustrated", + "frustration", + "meh", + "mouth", + "skeptical", + "unsure", + "whatever", + "wtv" + ] + }, "😟", + { + "keywords" : [ + "anxious", + "butterflies", + "face", + "nerves", + "nervous", + "sad", + "stress", + "stressed", + "surprised", + "worried", + "worry" + ], + "value" : "😟" + }, "🙁", + { + "keywords" : [ + "face", + "frown", + "frowning", + "sad", + "slightly" + ], + "value" : "🙁" + }, "☹️", + { + "keywords" : [ + "face", + "frown", + "frowning", + "sad" + ], + "value" : "☹️" + }, "😮", + { + "keywords" : [ + "believe", + "face", + "forgot", + "mouth", + "omg", + "open", + "shocked", + "surprised", + "sympathy", + "unbelievable", + "unreal", + "whoa", + "wow", + "you" + ], + "value" : "😮" + }, "😯", + { + "keywords" : [ + "epic", + "face", + "hushed", + "omg", + "stunned", + "surprised", + "whoa", + "woah" + ], + "value" : "😯" + }, "😲", + { + "value" : "😲", + "keywords" : [ + "astonished", + "cost", + "face", + "no", + "omg", + "shocked", + "totally", + "way" + ] + }, "😳", + { + "keywords" : [ + "amazed", + "awkward", + "crazy", + "dazed", + "dead", + "disbelief", + "embarrassed", + "face", + "flushed", + "geez", + "heat", + "hot", + "impressed", + "jeez", + "what", + "wow" + ], + "value" : "😳" + }, "🥺", + { + "value" : "🥺", + "keywords" : [ + "begging", + "big", + "eyes", + "face", + "mercy", + "not", + "pleading", + "please", + "pretty", + "puppy", + "sad", + "why" + ] + }, "🥹", + { + "value" : "🥹", + "keywords" : [ + "admiration", + "aww", + "back", + "cry", + "embarrassed", + "face", + "feelings", + "grateful", + "gratitude", + "holding", + "joy", + "please", + "proud", + "resist", + "sad", + "tears" + ] + }, "😦", + { + "value" : "😦", + "keywords" : [ + "caught", + "face", + "frown", + "frowning", + "guard", + "mouth", + "open", + "scared", + "scary", + "surprise", + "what", + "wow" + ] + }, "😧", + { + "value" : "😧", + "keywords" : [ + "anguished", + "face", + "forgot", + "scared", + "scary", + "stressed", + "surprise", + "unhappy", + "what", + "wow" + ] + }, "😨", + { + "keywords" : [ + "afraid", + "anxious", + "blame", + "face", + "fear", + "fearful", + "scared", + "worried" + ], + "value" : "😨" + }, "😰", + { + "value" : "😰", + "keywords" : [ + "anxious", + "blue", + "cold", + "eek", + "face", + "mouth", + "nervous", + "open", + "rushed", + "scared", + "sweat", + "yikes" + ] + }, "😥", + { + "value" : "😥", + "keywords" : [ + "anxious", + "call", + "close", + "complicated", + "disappointed", + "face", + "not", + "relieved", + "sad", + "sweat", + "time", + "whew" + ] + }, "😢", + { + "keywords" : [ + "awful", + "cry", + "crying", + "face", + "feels", + "miss", + "sad", + "tear", + "triste", + "unhappy" + ], + "value" : "😢" + }, "😭", + { + "value" : "😭", + "keywords" : [ + "bawling", + "cry", + "crying", + "face", + "loudly", + "sad", + "sob", + "tear", + "tears", + "unhappy" + ] + }, "😱", + { + "keywords" : [ + "epic", + "face", + "fear", + "fearful", + "munch", + "scared", + "scream", + "screamer", + "screaming", + "shocked", + "surprised", + "woah" + ], + "value" : "😱" + }, "😖", + { + "keywords" : [ + "annoyed", + "confounded", + "confused", + "cringe", + "distraught", + "face", + "feels", + "frustrated", + "mad", + "sad" + ], + "value" : "😖" + }, "😣", + { + "keywords" : [ + "concentrate", + "concentration", + "face", + "focus", + "headache", + "persevere", + "persevering" + ], + "value" : "😣" + }, "😞", + { + "keywords" : [ + "awful", + "blame", + "dejected", + "disappointed", + "face", + "fail", + "losing", + "sad", + "unhappy" + ], + "value" : "😞" + }, "😓", + { + "keywords" : [ + "close", + "cold", + "downcast", + "face", + "feels", + "headache", + "nervous", + "sad", + "scared", + "sweat", + "yikes" + ], + "value" : "😓" + }, "😩", + { + "keywords" : [ + "crying", + "face", + "fail", + "feels", + "hungry", + "mad", + "nooo", + "sad", + "sleepy", + "tired", + "unhappy", + "weary" + ], + "value" : "😩" + }, "😫", + { + "keywords" : [ + "cost", + "face", + "feels", + "nap", + "sad", + "sneeze", + "tired" + ], + "value" : "😫" + }, "🥱", + { + "value" : "🥱", + "keywords" : [ + "bedtime", + "bored", + "face", + "goodnight", + "nap", + "night", + "sleep", + "sleepy", + "tired", + "whatever", + "yawn", + "yawning", + "zzz" + ] + }, "😤", + { + "value" : "😤", + "keywords" : [ + "anger", + "angry", + "face", + "feels", + "fume", + "fuming", + "furious", + "fury", + "mad", + "nose", + "steam", + "triumph", + "unhappy", + "won" + ] + }, "😡", + { + "value" : "😡", + "keywords" : [ + "anger", + "angry", + "enraged", + "face", + "feels", + "mad", + "maddening", + "pouting", + "rage", + "red", + "shade", + "unhappy", + "upset" + ] + }, "😠", + { + "value" : "😠", + "keywords" : [ + "anger", + "angry", + "blame", + "face", + "feels", + "frustrated", + "mad", + "maddening", + "rage", + "shade", + "unhappy", + "upset" + ] + }, "🤬", + { + "keywords" : [ + "censor", + "cursing", + "cussing", + "face", + "mad", + "mouth", + "pissed", + "swearing", + "symbols" + ], + "value" : "🤬" + }, "😈", + { + "value" : "😈", + "keywords" : [ + "demon", + "devil", + "evil", + "face", + "fairy", + "fairytale", + "fantasy", + "horns", + "purple", + "shade", + "smile", + "smiling", + "tale" + ] + }, "👿", + { + "keywords" : [ + "angry", + "demon", + "devil", + "evil", + "face", + "fairy", + "fairytale", + "fantasy", + "horns", + "imp", + "mischievous", + "purple", + "shade", + "tale" + ], + "value" : "👿" + }, "💀", + { + "keywords" : [ + "body", + "dead", + "death", + "face", + "fairy", + "fairytale", + "i’m", + "lmao", + "monster", + "skull", + "tale", + "yolo" + ], + "value" : "💀" + }, "☠️", + { + "value" : "☠️", + "keywords" : [ + "bone", + "crossbones", + "dead", + "death", + "face", + "monster", + "skull" + ] + }, "💩", + { + "value" : "💩", + "keywords" : [ + "bs", + "comic", + "doo", + "dung", + "face", + "fml", + "monster", + "pile", + "poo", + "poop", + "smelly", + "smh", + "stink", + "stinks", + "stinky", + "turd" + ] + }, "🤡", + { + "value" : "🤡", + "keywords" : [ + "clown", + "face" + ] + }, "👹", + { + "value" : "👹", + "keywords" : [ + "creature", + "devil", + "face", + "fairy", + "fairytale", + "fantasy", + "mask", + "monster", + "ogre", + "scary", + "tale" + ] + }, "👺", + { + "keywords" : [ + "angry", + "creature", + "face", + "fairy", + "fairytale", + "fantasy", + "goblin", + "mask", + "mean", + "monster", + "tale" + ], + "value" : "👺" + }, "👻", + { + "value" : "👻", + "keywords" : [ + "boo", + "creature", + "excited", + "face", + "fairy", + "fairytale", + "fantasy", + "ghost", + "halloween", + "haunting", + "monster", + "scary", + "silly", + "tale" + ] + }, "👽", + { + "value" : "👽", + "keywords" : [ + "alien", + "creature", + "extraterrestrial", + "face", + "fairy", + "fairytale", + "fantasy", + "monster", + "space", + "tale", + "ufo" + ] + }, "👾", + { + "keywords" : [ + "alien", + "creature", + "extraterrestrial", + "face", + "fairy", + "fairytale", + "fantasy", + "game", + "gamer", + "games", + "monster", + "pixelated", + "space", + "tale", + "ufo" + ], + "value" : "👾" + }, "🤖", + { + "value" : "🤖", + "keywords" : [ + "face", + "monster", + "robot" + ] + }, "😺", + { + "keywords" : [ + "animal", + "cat", + "face", + "grinning", + "mouth", + "open", + "smile", + "smiling" + ], + "value" : "😺" + }, "😸", + { + "keywords" : [ + "animal", + "cat", + "eye", + "eyes", + "face", + "grin", + "grinning", + "smile", + "smiling" + ], + "value" : "😸" + }, "😹", + { + "keywords" : [ + "animal", + "cat", + "face", + "joy", + "laugh", + "laughing", + "lol", + "tear", + "tears" + ], + "value" : "😹" + }, "😻", + { + "keywords" : [ + "animal", + "cat", + "eye", + "face", + "heart", + "heart-eyes", + "love", + "smile", + "smiling" + ], + "value" : "😻" + }, "😼", + { + "keywords" : [ + "animal", + "cat", + "face", + "ironic", + "smile", + "wry" + ], + "value" : "😼" + }, "😽", + { + "keywords" : [ + "animal", + "cat", + "closed", + "eye", + "eyes", + "face", + "kiss", + "kissing" + ], + "value" : "😽" + }, "🙀", + { + "value" : "🙀", + "keywords" : [ + "animal", + "cat", + "face", + "oh", + "surprised", + "weary" + ] + }, "😿", + { + "value" : "😿", + "keywords" : [ + "animal", + "cat", + "cry", + "crying", + "face", + "sad", + "tear" + ] + }, "😾", + { + "keywords" : [ + "animal", + "cat", + "face", + "pouting" + ], + "value" : "😾" + }, "🙈", + { + "keywords" : [ + "embarrassed", + "evil", + "face", + "forbidden", + "forgot", + "gesture", + "hide", + "monkey", + "no", + "omg", + "prohibited", + "scared", + "secret", + "smh", + "watch" + ], + "value" : "🙈" + }, "🙉", + { + "keywords" : [ + "animal", + "ears", + "evil", + "face", + "forbidden", + "gesture", + "hear", + "listen", + "monkey", + "no", + "not", + "prohibited", + "secret", + "shh", + "tmi" + ], + "value" : "🙉" + }, "🙊", + { + "value" : "🙊", + "keywords" : [ + "animal", + "evil", + "face", + "forbidden", + "gesture", + "monkey", + "no", + "not", + "oops", + "prohibited", + "quiet", + "secret", + "speak", + "stealth" + ] + }, "💌", + { + "keywords" : [ + "heart", + "letter", + "love", + "mail", + "romance", + "valentine" + ], + "value" : "💌" + }, "💘", + { + "keywords" : [ + "143", + "adorbs", + "arrow", + "cupid", + "date", + "emotion", + "heart", + "ily", + "love", + "romance", + "valentine" + ], + "value" : "💘" + }, "💝", + { + "keywords" : [ + "143", + "anniversary", + "emotion", + "heart", + "ily", + "kisses", + "ribbon", + "valentine", + "xoxo" + ], + "value" : "💝" + }, "💖", + { + "value" : "💖", + "keywords" : [ + "143", + "emotion", + "excited", + "good", + "heart", + "ily", + "kisses", + "morning", + "night", + "sparkle", + "sparkling", + "xoxo" + ] + }, "💗", + { + "keywords" : [ + "143", + "emotion", + "excited", + "growing", + "heart", + "heartpulse", + "ily", + "kisses", + "muah", + "nervous", + "pulse", + "xoxo" + ], + "value" : "💗" + }, "💓", + { + "value" : "💓", + "keywords" : [ + "143", + "beating", + "cardio", + "emotion", + "heart", + "heartbeat", + "ily", + "love", + "pulsating", + "pulse" + ] + }, "💞", + { + "keywords" : [ + "143", + "adorbs", + "anniversary", + "emotion", + "heart", + "hearts", + "revolving" + ], + "value" : "💞" + }, "💕", + { + "value" : "💕", + "keywords" : [ + "143", + "anniversary", + "date", + "dating", + "emotion", + "heart", + "hearts", + "ily", + "kisses", + "love", + "loving", + "two", + "xoxo" + ] + }, "💟", + { + "value" : "💟", + "keywords" : [ + "143", + "decoration", + "emotion", + "heart", + "hearth", + "purple", + "white" + ] + }, "❣️", + { + "keywords" : [ + "exclamation", + "heart", + "heavy", + "mark", + "punctuation" + ], + "value" : "❣️" + }, "💔", + { + "value" : "💔", + "keywords" : [ + "break", + "broken", + "crushed", + "emotion", + "heart", + "heartbroken", + "lonely", + "sad" + ] + }, "❤️‍🔥", + { + "value" : "❤️‍🔥", + "keywords" : [ + "burn", + "fire", + "heart", + "love", + "lust", + "sacred" + ] + }, "❤️‍🩹", + { + "keywords" : [ + "healthier", + "heart", + "improving", + "mending", + "recovering", + "recuperating", + "well" + ], + "value" : "❤️‍🩹" + }, "❤️", + { + "value" : "❤️", + "keywords" : [ + "emotion", + "heart", + "love", + "red" + ] + }, "🩷", + { + "value" : "🩷", + "keywords" : [ + "143", + "adorable", + "cute", + "emotion", + "heart", + "ily", + "like", + "love", + "pink", + "special", + "sweet" + ] + }, "🧡", + { + "keywords" : [ + "143", + "heart", + "orange" + ], + "value" : "🧡" + }, "💛", + { + "value" : "💛", + "keywords" : [ + "143", + "cardiac", + "emotion", + "heart", + "ily", + "love", + "yellow" + ] + }, "💚", + { + "keywords" : [ + "143", + "emotion", + "green", + "heart", + "ily", + "love", + "romantic" + ], + "value" : "💚" + }, "💙", + { + "keywords" : [ + "143", + "blue", + "emotion", + "heart", + "ily", + "love", + "romance" + ], + "value" : "💙" + }, "🩵", + { + "value" : "🩵", + "keywords" : [ + "143", + "blue", + "cute", + "cyan", + "emotion", + "heart", + "ily", + "light", + "like", + "love", + "sky", + "special", + "teal" + ] + }, "💜", + { + "value" : "💜", + "keywords" : [ + "143", + "bestest", + "emotion", + "heart", + "ily", + "love", + "purple" + ] + }, "🤎", + { + "value" : "🤎", + "keywords" : [ + "143", + "brown", + "heart" + ] + }, "🖤", + { + "keywords" : [ + "black", + "evil", + "heart", + "wicked" + ], + "value" : "🖤" + }, "🩶", + { + "keywords" : [ + "143", + "emotion", + "gray", + "grey", + "heart", + "ily", + "love", + "silver", + "slate", + "special" + ], + "value" : "🩶" + }, "🤍", + { + "keywords" : [ + "143", + "heart", + "white" + ], + "value" : "🤍" + }, "💋", + { + "value" : "💋", + "keywords" : [ + "dating", + "emotion", + "heart", + "kiss", + "kissing", + "lips", + "mark", + "romance", + "sexy" + ] + }, "💯", + { + "value" : "💯", + "keywords" : [ + "100", + "a+", + "agree", + "clearly", + "definitely", + "faithful", + "fleek", + "full", + "hundred", + "keep", + "perfect", + "point", + "score", + "TRUE", + "truth", + "yup" + ] + }, "💢", + { + "value" : "💢", + "keywords" : [ + "anger", + "angry", + "comic", + "mad", + "symbol", + "upset" + ] + }, "💥", + { + "keywords" : [ + "bomb", + "boom", + "collide", + "collision", + "comic", + "explode" + ], + "value" : "💥" + }, "💫", + { + "keywords" : [ + "comic", + "dizzy", + "shining", + "shooting", + "star", + "stars" + ], + "value" : "💫" + }, "💦", + { + "value" : "💦", + "keywords" : [ + "comic", + "drip", + "droplet", + "droplets", + "drops", + "splashing", + "squirt", + "sweat", + "water", + "wet", + "work", + "workout" + ] + }, "💨", + { + "value" : "💨", + "keywords" : [ + "away", + "cloud", + "comic", + "dash", + "dashing", + "fart", + "fast", + "go", + "gone", + "gotta", + "running", + "smoke" + ] + }, "🕳️", + { + "keywords" : [ + "hole" + ], + "value" : "🕳️" + }, "💬", + { + "value" : "💬", + "keywords" : [ + "balloon", + "bubble", + "comic", + "dialog", + "message", + "sms", + "speech", + "talk", + "text", + "typing" + ] + }, "👁️‍🗨️", + { + "value" : "👁️‍🗨️", + "keywords" : [ + "balloon", + "bubble", + "eye", + "speech", + "witness" + ] + }, "🗨️", + { + "value" : "🗨️", + "keywords" : [ + "balloon", + "bubble", + "dialog", + "left", + "speech" + ] + }, "🗯️", + { + "keywords" : [ + "anger", + "angry", + "balloon", + "bubble", + "mad", + "right" + ], + "value" : "🗯️" + }, "💭", - "💤" - ] + { + "value" : "💭", + "keywords" : [ + "balloon", + "bubble", + "cartoon", + "cloud", + "comic", + "daydream", + "decisions", + "dream", + "idea", + "invent", + "invention", + "realize", + "think", + "thoughts", + "wonder" + ] + }, + "💤", + { + "keywords" : [ + "comic", + "good", + "goodnight", + "night", + "sleep", + "sleeping", + "sleepy", + "tired", + "zzz" + ], + "value" : "💤" + } + ], + "name" : "Smileys & Emotion" } ] \ No newline at end of file diff --git a/Sources/EmojiKit/Resources/emojis_v15.1.json b/Sources/EmojiKit/Resources/emojis_v15.1.json index f362b05..b3e5c79 100644 --- a/Sources/EmojiKit/Resources/emojis_v15.1.json +++ b/Sources/EmojiKit/Resources/emojis_v15.1.json @@ -1,7 +1,7 @@ [ { - "appleCategory" : "Flags", "name" : "Flags", + "appleCategory" : "flags", "emojis" : [ "🏁", { @@ -82,7 +82,6 @@ }, "🏳️‍⚧️", { - "value" : "🏳️‍⚧️", "keywords" : [ "blue", "flag", @@ -90,7 +89,8 @@ "pink", "transgender", "white" - ] + ], + "value" : "🏳️‍⚧️" }, "🏴‍☠️", { @@ -114,19 +114,19 @@ }, "🇦🇩", { + "value" : "🇦🇩", "keywords" : [ "flag", "flag: Andorra" - ], - "value" : "🇦🇩" + ] }, "🇦🇪", { - "value" : "🇦🇪", "keywords" : [ "flag", "flag: United Arab Emirates" - ] + ], + "value" : "🇦🇪" }, "🇦🇫", { @@ -138,35 +138,35 @@ }, "🇦🇬", { - "value" : "🇦🇬", "keywords" : [ "flag", "flag: Antigua&Barbuda" - ] + ], + "value" : "🇦🇬" }, "🇦🇮", { - "value" : "🇦🇮", "keywords" : [ "flag", "flag: Anguilla" - ] + ], + "value" : "🇦🇮" }, "🇦🇱", { + "value" : "🇦🇱", "keywords" : [ "flag", "flag: Albania" - ], - "value" : "🇦🇱" + ] }, "🇦🇲", { + "value" : "🇦🇲", "keywords" : [ "flag", "flag: Armenia" - ], - "value" : "🇦🇲" + ] }, "🇦🇴", { @@ -186,19 +186,19 @@ }, "🇦🇷", { + "value" : "🇦🇷", "keywords" : [ "flag", "flag: Argentina" - ], - "value" : "🇦🇷" + ] }, "🇦🇸", { - "value" : "🇦🇸", "keywords" : [ "flag", "flag: American Samoa" - ] + ], + "value" : "🇦🇸" }, "🇦🇹", { @@ -210,35 +210,35 @@ }, "🇦🇺", { + "value" : "🇦🇺", "keywords" : [ "flag", "flag: Australia" - ], - "value" : "🇦🇺" + ] }, "🇦🇼", { - "value" : "🇦🇼", "keywords" : [ "flag", "flag: Aruba" - ] + ], + "value" : "🇦🇼" }, "🇦🇽", { - "value" : "🇦🇽", "keywords" : [ "flag", "flag:Åland Islands" - ] + ], + "value" : "🇦🇽" }, "🇦🇿", { - "value" : "🇦🇿", "keywords" : [ "flag", "flag: Azerbaijan" - ] + ], + "value" : "🇦🇿" }, "🇧🇦", { @@ -258,11 +258,11 @@ }, "🇧🇩", { + "value" : "🇧🇩", "keywords" : [ "flag", "flag: Bangladesh" - ], - "value" : "🇧🇩" + ] }, "🇧🇪", { @@ -322,11 +322,11 @@ }, "🇧🇲", { - "value" : "🇧🇲", "keywords" : [ "flag", "flag: Bermuda" - ] + ], + "value" : "🇧🇲" }, "🇧🇳", { @@ -338,19 +338,19 @@ }, "🇧🇴", { - "value" : "🇧🇴", "keywords" : [ "flag", "flag: Bolivia" - ] + ], + "value" : "🇧🇴" }, "🇧🇶", { + "value" : "🇧🇶", "keywords" : [ "flag", "flag: Caribbean Netherlands" - ], - "value" : "🇧🇶" + ] }, "🇧🇷", { @@ -378,11 +378,11 @@ }, "🇧🇻", { - "value" : "🇧🇻", "keywords" : [ "flag", "flag: Bouvet Island" - ] + ], + "value" : "🇧🇻" }, "🇧🇼", { @@ -394,11 +394,11 @@ }, "🇧🇾", { + "value" : "🇧🇾", "keywords" : [ "flag", "flag: Belarus" - ], - "value" : "🇧🇾" + ] }, "🇧🇿", { @@ -418,11 +418,11 @@ }, "🇨🇨", { + "value" : "🇨🇨", "keywords" : [ "flag", "flag: Cocos (Keeling) Islands" - ], - "value" : "🇨🇨" + ] }, "🇨🇩", { @@ -442,19 +442,19 @@ }, "🇨🇬", { + "value" : "🇨🇬", "keywords" : [ "flag", "flag: Congo - Brazzaville" - ], - "value" : "🇨🇬" + ] }, "🇨🇭", { + "value" : "🇨🇭", "keywords" : [ "flag", "flag: Switzerland" - ], - "value" : "🇨🇭" + ] }, "🇨🇮", { @@ -466,11 +466,11 @@ }, "🇨🇰", { - "value" : "🇨🇰", "keywords" : [ "flag", "flag: Cook Islands" - ] + ], + "value" : "🇨🇰" }, "🇨🇱", { @@ -506,19 +506,19 @@ }, "🇨🇵", { - "value" : "🇨🇵", "keywords" : [ "flag", "flag: Clipperton Island" - ] + ], + "value" : "🇨🇵" }, "🇨🇷", { - "value" : "🇨🇷", "keywords" : [ "flag", "flag: Costa Rica" - ] + ], + "value" : "🇨🇷" }, "🇨🇺", { @@ -530,11 +530,11 @@ }, "🇨🇻", { + "value" : "🇨🇻", "keywords" : [ "flag", "flag: Cape Verde" - ], - "value" : "🇨🇻" + ] }, "🇨🇼", { @@ -554,11 +554,11 @@ }, "🇨🇾", { - "value" : "🇨🇾", "keywords" : [ "flag", "flag: Cyprus" - ] + ], + "value" : "🇨🇾" }, "🇨🇿", { @@ -578,11 +578,11 @@ }, "🇩🇬", { - "value" : "🇩🇬", "keywords" : [ "flag", "flag: Diego Garcia" - ] + ], + "value" : "🇩🇬" }, "🇩🇯", { @@ -594,27 +594,27 @@ }, "🇩🇰", { + "value" : "🇩🇰", "keywords" : [ "flag", "flag: Denmark" - ], - "value" : "🇩🇰" + ] }, "🇩🇲", { + "value" : "🇩🇲", "keywords" : [ "flag", "flag: Dominica" - ], - "value" : "🇩🇲" + ] }, "🇩🇴", { - "value" : "🇩🇴", "keywords" : [ "flag", "flag: Dominican Republic" - ] + ], + "value" : "🇩🇴" }, "🇩🇿", { @@ -626,27 +626,27 @@ }, "🇪🇦", { + "value" : "🇪🇦", "keywords" : [ "flag", "flag: Ceuta&Melilla" - ], - "value" : "🇪🇦" + ] }, "🇪🇨", { + "value" : "🇪🇨", "keywords" : [ "flag", "flag: Ecuador" - ], - "value" : "🇪🇨" + ] }, "🇪🇪", { - "value" : "🇪🇪", "keywords" : [ "flag", "flag: Estonia" - ] + ], + "value" : "🇪🇪" }, "🇪🇬", { @@ -706,11 +706,11 @@ }, "🇫🇯", { - "value" : "🇫🇯", "keywords" : [ "flag", "flag: Fiji" - ] + ], + "value" : "🇫🇯" }, "🇫🇰", { @@ -730,11 +730,11 @@ }, "🇫🇴", { - "value" : "🇫🇴", "keywords" : [ "flag", "flag: Faroe Islands" - ] + ], + "value" : "🇫🇴" }, "🇫🇷", { @@ -754,11 +754,11 @@ }, "🇬🇧", { + "value" : "🇬🇧", "keywords" : [ "flag", "flag: United Kingdom" - ], - "value" : "🇬🇧" + ] }, "🇬🇩", { @@ -770,19 +770,19 @@ }, "🇬🇪", { + "value" : "🇬🇪", "keywords" : [ "flag", "flag: Georgia" - ], - "value" : "🇬🇪" + ] }, "🇬🇫", { - "value" : "🇬🇫", "keywords" : [ "flag", "flag: French Guiana" - ] + ], + "value" : "🇬🇫" }, "🇬🇬", { @@ -794,43 +794,43 @@ }, "🇬🇭", { + "value" : "🇬🇭", "keywords" : [ "flag", "flag: Ghana" - ], - "value" : "🇬🇭" + ] }, "🇬🇮", { + "value" : "🇬🇮", "keywords" : [ "flag", "flag: Gibraltar" - ], - "value" : "🇬🇮" + ] }, "🇬🇱", { + "value" : "🇬🇱", "keywords" : [ "flag", "flag: Greenland" - ], - "value" : "🇬🇱" + ] }, "🇬🇲", { - "value" : "🇬🇲", "keywords" : [ "flag", "flag: Gambia" - ] + ], + "value" : "🇬🇲" }, "🇬🇳", { - "value" : "🇬🇳", "keywords" : [ "flag", "flag: Guinea" - ] + ], + "value" : "🇬🇳" }, "🇬🇵", { @@ -850,19 +850,19 @@ }, "🇬🇷", { - "value" : "🇬🇷", "keywords" : [ "flag", "flag: Greece" - ] + ], + "value" : "🇬🇷" }, "🇬🇸", { + "value" : "🇬🇸", "keywords" : [ "flag", "flag: South Georgia&South Sandwich Islands" - ], - "value" : "🇬🇸" + ] }, "🇬🇹", { @@ -890,11 +890,11 @@ }, "🇬🇾", { - "value" : "🇬🇾", "keywords" : [ "flag", "flag: Guyana" - ] + ], + "value" : "🇬🇾" }, "🇭🇰", { @@ -938,11 +938,11 @@ }, "🇭🇺", { - "value" : "🇭🇺", "keywords" : [ "flag", "flag: Hungary" - ] + ], + "value" : "🇭🇺" }, "🇮🇨", { @@ -954,11 +954,11 @@ }, "🇮🇩", { + "value" : "🇮🇩", "keywords" : [ "flag", "flag: Indonesia" - ], - "value" : "🇮🇩" + ] }, "🇮🇪", { @@ -986,35 +986,35 @@ }, "🇮🇳", { + "value" : "🇮🇳", "keywords" : [ "flag", "flag: India" - ], - "value" : "🇮🇳" + ] }, "🇮🇴", { - "value" : "🇮🇴", "keywords" : [ "flag", "flag: British Indian Ocean Territory" - ] + ], + "value" : "🇮🇴" }, "🇮🇶", { + "value" : "🇮🇶", "keywords" : [ "flag", "flag: Iraq" - ], - "value" : "🇮🇶" + ] }, "🇮🇷", { - "value" : "🇮🇷", "keywords" : [ "flag", "flag: Iran" - ] + ], + "value" : "🇮🇷" }, "🇮🇸", { @@ -1026,11 +1026,11 @@ }, "🇮🇹", { - "value" : "🇮🇹", "keywords" : [ "flag", "flag: Italy" - ] + ], + "value" : "🇮🇹" }, "🇯🇪", { @@ -1042,11 +1042,11 @@ }, "🇯🇲", { + "value" : "🇯🇲", "keywords" : [ "flag", "flag: Jamaica" - ], - "value" : "🇯🇲" + ] }, "🇯🇴", { @@ -1058,19 +1058,19 @@ }, "🇯🇵", { - "value" : "🇯🇵", "keywords" : [ "flag", "flag: Japan" - ] + ], + "value" : "🇯🇵" }, "🇰🇪", { - "value" : "🇰🇪", "keywords" : [ "flag", "flag: Kenya" - ] + ], + "value" : "🇰🇪" }, "🇰🇬", { @@ -1082,19 +1082,19 @@ }, "🇰🇭", { - "value" : "🇰🇭", "keywords" : [ "flag", "flag: Cambodia" - ] + ], + "value" : "🇰🇭" }, "🇰🇮", { - "value" : "🇰🇮", "keywords" : [ "flag", "flag: Kiribati" - ] + ], + "value" : "🇰🇮" }, "🇰🇲", { @@ -1106,19 +1106,19 @@ }, "🇰🇳", { - "value" : "🇰🇳", "keywords" : [ "flag", "flag: St. Kitts&Nevis" - ] + ], + "value" : "🇰🇳" }, "🇰🇵", { - "value" : "🇰🇵", "keywords" : [ "flag", "flag: North Korea" - ] + ], + "value" : "🇰🇵" }, "🇰🇷", { @@ -1130,11 +1130,11 @@ }, "🇰🇼", { - "value" : "🇰🇼", "keywords" : [ "flag", "flag: Kuwait" - ] + ], + "value" : "🇰🇼" }, "🇰🇾", { @@ -1154,11 +1154,11 @@ }, "🇱🇦", { - "value" : "🇱🇦", "keywords" : [ "flag", "flag: Laos" - ] + ], + "value" : "🇱🇦" }, "🇱🇧", { @@ -1178,27 +1178,27 @@ }, "🇱🇮", { - "value" : "🇱🇮", "keywords" : [ "flag", "flag: Liechtenstein" - ] + ], + "value" : "🇱🇮" }, "🇱🇰", { + "value" : "🇱🇰", "keywords" : [ "flag", "flag: Sri Lanka" - ], - "value" : "🇱🇰" + ] }, "🇱🇷", { + "value" : "🇱🇷", "keywords" : [ "flag", "flag: Liberia" - ], - "value" : "🇱🇷" + ] }, "🇱🇸", { @@ -1210,59 +1210,59 @@ }, "🇱🇹", { - "value" : "🇱🇹", "keywords" : [ "flag", "flag: Lithuania" - ] + ], + "value" : "🇱🇹" }, "🇱🇺", { + "value" : "🇱🇺", "keywords" : [ "flag", "flag: Luxembourg" - ], - "value" : "🇱🇺" + ] }, "🇱🇻", { - "value" : "🇱🇻", "keywords" : [ "flag", "flag: Latvia" - ] + ], + "value" : "🇱🇻" }, "🇱🇾", { - "value" : "🇱🇾", "keywords" : [ "flag", "flag: Libya" - ] + ], + "value" : "🇱🇾" }, "🇲🇦", { + "value" : "🇲🇦", "keywords" : [ "flag", "flag: Morocco" - ], - "value" : "🇲🇦" + ] }, "🇲🇨", { + "value" : "🇲🇨", "keywords" : [ "flag", "flag: Monaco" - ], - "value" : "🇲🇨" + ] }, "🇲🇩", { + "value" : "🇲🇩", "keywords" : [ "flag", "flag: Moldova" - ], - "value" : "🇲🇩" + ] }, "🇲🇪", { @@ -1274,11 +1274,11 @@ }, "🇲🇫", { + "value" : "🇲🇫", "keywords" : [ "flag", "flag: St. Martin" - ], - "value" : "🇲🇫" + ] }, "🇲🇬", { @@ -1290,11 +1290,11 @@ }, "🇲🇭", { - "value" : "🇲🇭", "keywords" : [ "flag", "flag: Marshall Islands" - ] + ], + "value" : "🇲🇭" }, "🇲🇰", { @@ -1322,11 +1322,11 @@ }, "🇲🇳", { + "value" : "🇲🇳", "keywords" : [ "flag", "flag: Mongolia" - ], - "value" : "🇲🇳" + ] }, "🇲🇴", { @@ -1362,27 +1362,27 @@ }, "🇲🇸", { + "value" : "🇲🇸", "keywords" : [ "flag", "flag: Montserrat" - ], - "value" : "🇲🇸" + ] }, "🇲🇹", { + "value" : "🇲🇹", "keywords" : [ "flag", "flag: Malta" - ], - "value" : "🇲🇹" + ] }, "🇲🇺", { + "value" : "🇲🇺", "keywords" : [ "flag", "flag: Mauritius" - ], - "value" : "🇲🇺" + ] }, "🇲🇻", { @@ -1394,35 +1394,35 @@ }, "🇲🇼", { - "value" : "🇲🇼", "keywords" : [ "flag", "flag: Malawi" - ] + ], + "value" : "🇲🇼" }, "🇲🇽", { + "value" : "🇲🇽", "keywords" : [ "flag", "flag: Mexico" - ], - "value" : "🇲🇽" + ] }, "🇲🇾", { - "value" : "🇲🇾", "keywords" : [ "flag", "flag: Malaysia" - ] + ], + "value" : "🇲🇾" }, "🇲🇿", { + "value" : "🇲🇿", "keywords" : [ "flag", "flag: Mozambique" - ], - "value" : "🇲🇿" + ] }, "🇳🇦", { @@ -1434,19 +1434,19 @@ }, "🇳🇨", { - "value" : "🇳🇨", "keywords" : [ "flag", "flag: New Caledonia" - ] + ], + "value" : "🇳🇨" }, "🇳🇪", { + "value" : "🇳🇪", "keywords" : [ "flag", "flag: Niger" - ], - "value" : "🇳🇪" + ] }, "🇳🇫", { @@ -1466,11 +1466,11 @@ }, "🇳🇮", { - "value" : "🇳🇮", "keywords" : [ "flag", "flag: Nicaragua" - ] + ], + "value" : "🇳🇮" }, "🇳🇱", { @@ -1490,11 +1490,11 @@ }, "🇳🇵", { - "value" : "🇳🇵", "keywords" : [ "flag", "flag: Nepal" - ] + ], + "value" : "🇳🇵" }, "🇳🇷", { @@ -1506,19 +1506,19 @@ }, "🇳🇺", { + "value" : "🇳🇺", "keywords" : [ "flag", "flag: Niue" - ], - "value" : "🇳🇺" + ] }, "🇳🇿", { - "value" : "🇳🇿", "keywords" : [ "flag", "flag: New Zealand" - ] + ], + "value" : "🇳🇿" }, "🇴🇲", { @@ -1578,11 +1578,11 @@ }, "🇵🇱", { + "value" : "🇵🇱", "keywords" : [ "flag", "flag: Poland" - ], - "value" : "🇵🇱" + ] }, "🇵🇲", { @@ -1602,27 +1602,27 @@ }, "🇵🇷", { + "value" : "🇵🇷", "keywords" : [ "flag", "flag: Puerto Rico" - ], - "value" : "🇵🇷" + ] }, "🇵🇸", { + "value" : "🇵🇸", "keywords" : [ "flag", "flag: Palestinian Territories" - ], - "value" : "🇵🇸" + ] }, "🇵🇹", { - "value" : "🇵🇹", "keywords" : [ "flag", "flag: Portugal" - ] + ], + "value" : "🇵🇹" }, "🇵🇼", { @@ -1634,19 +1634,19 @@ }, "🇵🇾", { + "value" : "🇵🇾", "keywords" : [ "flag", "flag: Paraguay" - ], - "value" : "🇵🇾" + ] }, "🇶🇦", { + "value" : "🇶🇦", "keywords" : [ "flag", "flag: Qatar" - ], - "value" : "🇶🇦" + ] }, "🇷🇪", { @@ -1658,27 +1658,27 @@ }, "🇷🇴", { - "value" : "🇷🇴", "keywords" : [ "flag", "flag: Romania" - ] + ], + "value" : "🇷🇴" }, "🇷🇸", { + "value" : "🇷🇸", "keywords" : [ "flag", "flag: Serbia" - ], - "value" : "🇷🇸" + ] }, "🇷🇺", { - "value" : "🇷🇺", "keywords" : [ "flag", "flag: Russia" - ] + ], + "value" : "🇷🇺" }, "🇷🇼", { @@ -1690,11 +1690,11 @@ }, "🇸🇦", { - "value" : "🇸🇦", "keywords" : [ "flag", "flag: Saudi Arabia" - ] + ], + "value" : "🇸🇦" }, "🇸🇧", { @@ -1706,11 +1706,11 @@ }, "🇸🇨", { + "value" : "🇸🇨", "keywords" : [ "flag", "flag: Seychelles" - ], - "value" : "🇸🇨" + ] }, "🇸🇩", { @@ -1722,51 +1722,51 @@ }, "🇸🇪", { - "value" : "🇸🇪", "keywords" : [ "flag", "flag: Sweden" - ] + ], + "value" : "🇸🇪" }, "🇸🇬", { - "value" : "🇸🇬", "keywords" : [ "flag", "flag: Singapore" - ] + ], + "value" : "🇸🇬" }, "🇸🇭", { - "value" : "🇸🇭", "keywords" : [ "flag", "flag: St. Helena" - ] + ], + "value" : "🇸🇭" }, "🇸🇮", { + "value" : "🇸🇮", "keywords" : [ "flag", "flag: Slovenia" - ], - "value" : "🇸🇮" + ] }, "🇸🇯", { + "value" : "🇸🇯", "keywords" : [ "flag", "flag: Svalbard&Jan Mayen" - ], - "value" : "🇸🇯" + ] }, "🇸🇰", { - "value" : "🇸🇰", "keywords" : [ "flag", "flag: Slovakia" - ] + ], + "value" : "🇸🇰" }, "🇸🇱", { @@ -1778,11 +1778,11 @@ }, "🇸🇲", { + "value" : "🇸🇲", "keywords" : [ "flag", "flag: San Marino" - ], - "value" : "🇸🇲" + ] }, "🇸🇳", { @@ -1794,35 +1794,35 @@ }, "🇸🇴", { + "value" : "🇸🇴", "keywords" : [ "flag", "flag: Somalia" - ], - "value" : "🇸🇴" + ] }, "🇸🇷", { + "value" : "🇸🇷", "keywords" : [ "flag", "flag: Suriname" - ], - "value" : "🇸🇷" + ] }, "🇸🇸", { - "value" : "🇸🇸", "keywords" : [ "flag", "flag: South Sudan" - ] + ], + "value" : "🇸🇸" }, "🇸🇹", { - "value" : "🇸🇹", "keywords" : [ "flag", "flag: São Tomé&Príncipe" - ] + ], + "value" : "🇸🇹" }, "🇸🇻", { @@ -1850,35 +1850,35 @@ }, "🇸🇿", { + "value" : "🇸🇿", "keywords" : [ "flag", "flag: Eswatini" - ], - "value" : "🇸🇿" + ] }, "🇹🇦", { + "value" : "🇹🇦", "keywords" : [ "flag", "flag: Tristan da Cunha" - ], - "value" : "🇹🇦" + ] }, "🇹🇨", { - "value" : "🇹🇨", "keywords" : [ "flag", "flag: Turks&Caicos Islands" - ] + ], + "value" : "🇹🇨" }, "🇹🇩", { + "value" : "🇹🇩", "keywords" : [ "flag", "flag: Chad" - ], - "value" : "🇹🇩" + ] }, "🇹🇫", { @@ -1930,19 +1930,19 @@ }, "🇹🇲", { - "value" : "🇹🇲", "keywords" : [ "flag", "flag: Turkmenistan" - ] + ], + "value" : "🇹🇲" }, "🇹🇳", { - "value" : "🇹🇳", "keywords" : [ "flag", "flag: Tunisia" - ] + ], + "value" : "🇹🇳" }, "🇹🇴", { @@ -1954,11 +1954,11 @@ }, "🇹🇷", { + "value" : "🇹🇷", "keywords" : [ "flag", "flag: Türkiye" - ], - "value" : "🇹🇷" + ] }, "🇹🇹", { @@ -1970,19 +1970,19 @@ }, "🇹🇻", { - "value" : "🇹🇻", "keywords" : [ "flag", "flag: Tuvalu" - ] + ], + "value" : "🇹🇻" }, "🇹🇼", { - "value" : "🇹🇼", "keywords" : [ "flag", "flag: Taiwan" - ] + ], + "value" : "🇹🇼" }, "🇹🇿", { @@ -2026,11 +2026,11 @@ }, "🇺🇸", { - "value" : "🇺🇸", "keywords" : [ "flag", "flag: United States" - ] + ], + "value" : "🇺🇸" }, "🇺🇾", { @@ -2050,11 +2050,11 @@ }, "🇻🇦", { + "value" : "🇻🇦", "keywords" : [ "flag", "flag: Vatican City" - ], - "value" : "🇻🇦" + ] }, "🇻🇨", { @@ -2066,19 +2066,19 @@ }, "🇻🇪", { - "value" : "🇻🇪", "keywords" : [ "flag", "flag: Venezuela" - ] + ], + "value" : "🇻🇪" }, "🇻🇬", { - "value" : "🇻🇬", "keywords" : [ "flag", "flag: British Virgin Islands" - ] + ], + "value" : "🇻🇬" }, "🇻🇮", { @@ -2090,19 +2090,19 @@ }, "🇻🇳", { - "value" : "🇻🇳", "keywords" : [ "flag", "flag: Vietnam" - ] + ], + "value" : "🇻🇳" }, "🇻🇺", { - "value" : "🇻🇺", "keywords" : [ "flag", "flag: Vanuatu" - ] + ], + "value" : "🇻🇺" }, "🇼🇫", { @@ -2114,19 +2114,19 @@ }, "🇼🇸", { - "value" : "🇼🇸", "keywords" : [ "flag", "flag: Samoa" - ] + ], + "value" : "🇼🇸" }, "🇽🇰", { + "value" : "🇽🇰", "keywords" : [ "flag", "flag: Kosovo" - ], - "value" : "🇽🇰" + ] }, "🇾🇪", { @@ -2138,35 +2138,35 @@ }, "🇾🇹", { - "value" : "🇾🇹", "keywords" : [ "flag", "flag: Mayotte" - ] + ], + "value" : "🇾🇹" }, "🇿🇦", { - "value" : "🇿🇦", "keywords" : [ "flag", "flag: South Africa" - ] + ], + "value" : "🇿🇦" }, "🇿🇲", { + "value" : "🇿🇲", "keywords" : [ "flag", "flag: Zambia" - ], - "value" : "🇿🇲" + ] }, "🇿🇼", { + "value" : "🇿🇼", "keywords" : [ "flag", "flag: Zimbabwe" - ], - "value" : "🇿🇼" + ] }, "🏴󠁧󠁢󠁥󠁮󠁧󠁿", { @@ -2186,15 +2186,16 @@ }, "🏴󠁧󠁢󠁷󠁬󠁳󠁿", { - "value" : "🏴󠁧󠁢󠁷󠁬󠁳󠁿", "keywords" : [ "flag", "flag: Wales" - ] + ], + "value" : "🏴󠁧󠁢󠁷󠁬󠁳󠁿" } ] }, { + "name" : "Activities", "emojis" : [ "🎃", { @@ -2230,17 +2231,18 @@ }, "🎇", { - "value" : "🎇", "keywords" : [ "boom", "celebration", "fireworks", "sparkle", "sparkler" - ] + ], + "value" : "🎇" }, "🧨", { + "value" : "🧨", "keywords" : [ "dynamite", "explosive", @@ -2251,33 +2253,31 @@ "pop", "popping", "spark" - ], - "value" : "🧨" + ] }, "✨", { + "value" : "✨", "keywords" : [ "*", "magic", "sparkle", "sparkles", "star" - ], - "value" : "✨" + ] }, "🎈", { - "value" : "🎈", "keywords" : [ "balloon", "birthday", "celebrate", "celebration" - ] + ], + "value" : "🎈" }, "🎉", { - "value" : "🎉", "keywords" : [ "awesome", "birthday", @@ -2289,7 +2289,8 @@ "popper", "tada", "woohoo" - ] + ], + "value" : "🎉" }, "🎊", { @@ -2316,7 +2317,6 @@ }, "🎍", { - "value" : "🎍", "keywords" : [ "bamboo", "celebration", @@ -2324,18 +2324,19 @@ "Japanese", "pine", "plant" - ] + ], + "value" : "🎍" }, "🎎", { + "value" : "🎎", "keywords" : [ "celebration", "doll", "dolls", "festival", "Japanese" - ], - "value" : "🎎" + ] }, "🎏", { @@ -2383,15 +2384,14 @@ }, "🎀", { - "value" : "🎀", "keywords" : [ "celebration", "ribbon" - ] + ], + "value" : "🎀" }, "🎁", { - "value" : "🎁", "keywords" : [ "birthday", "bow", @@ -2402,7 +2402,8 @@ "present", "surprise", "wrapped" - ] + ], + "value" : "🎁" }, "🎗️", { @@ -2415,12 +2416,12 @@ }, "🎟️", { - "value" : "🎟️", "keywords" : [ "admission", "ticket", "tickets" - ] + ], + "value" : "🎟️" }, "🎫", { @@ -2443,7 +2444,6 @@ }, "🏆", { - "value" : "🏆", "keywords" : [ "champion", "champs", @@ -2454,7 +2454,8 @@ "victory", "win", "winning" - ] + ], + "value" : "🏆" }, "🏅", { @@ -2469,14 +2470,14 @@ }, "🥇", { - "value" : "🥇", "keywords" : [ "1st", "first", "gold", "medal", "place" - ] + ], + "value" : "🥇" }, "🥈", { @@ -2502,14 +2503,14 @@ }, "⚽", { - "value" : "⚽", "keywords" : [ "ball", "football", "futbol", "soccer", "sport" - ] + ], + "value" : "⚽" }, "⚾", { @@ -2533,22 +2534,22 @@ }, "🏀", { + "value" : "🏀", "keywords" : [ "ball", "basketball", "hoop", "sport" - ], - "value" : "🏀" + ] }, "🏐", { - "value" : "🏐", "keywords" : [ "ball", "game", "volleyball" - ] + ], + "value" : "🏐" }, "🏈", { @@ -2564,23 +2565,23 @@ }, "🏉", { - "value" : "🏉", "keywords" : [ "ball", "football", "rugby", "sport" - ] + ], + "value" : "🏉" }, "🎾", { - "value" : "🎾", "keywords" : [ "ball", "racquet", "sport", "tennis" - ] + ], + "value" : "🎾" }, "🥏", { @@ -2593,14 +2594,14 @@ }, "🎳", { - "value" : "🎳", "keywords" : [ "ball", "bowling", "game", "sport", "strike" - ] + ], + "value" : "🎳" }, "🏏", { @@ -2614,14 +2615,14 @@ }, "🏑", { + "value" : "🏑", "keywords" : [ "ball", "field", "game", "hockey", "stick" - ], - "value" : "🏑" + ] }, "🏒", { @@ -2636,17 +2637,18 @@ }, "🥍", { - "value" : "🥍", "keywords" : [ "ball", "goal", "lacrosse", "sports", "stick" - ] + ], + "value" : "🥍" }, "🏓", { + "value" : "🏓", "keywords" : [ "ball", "bat", @@ -2657,8 +2659,7 @@ "pong", "table", "tennis" - ], - "value" : "🏓" + ] }, "🏸", { @@ -2693,11 +2694,11 @@ }, "🥅", { + "value" : "🥅", "keywords" : [ "goal", "net" - ], - "value" : "🥅" + ] }, "⛳", { @@ -2711,12 +2712,12 @@ }, "⛸️", { - "value" : "⛸️", "keywords" : [ "ice", "skate", "skating" - ] + ], + "value" : "⛸️" }, "🎣", { @@ -2751,16 +2752,17 @@ }, "🎿", { + "value" : "🎿", "keywords" : [ "ski", "skis", "snow", "sport" - ], - "value" : "🎿" + ] }, "🛷", { + "value" : "🛷", "keywords" : [ "luge", "sled", @@ -2768,18 +2770,17 @@ "sleigh", "snow", "toboggan" - ], - "value" : "🛷" + ] }, "🥌", { - "value" : "🥌", "keywords" : [ "curling", "game", "rock", "stone" - ] + ], + "value" : "🥌" }, "🎯", { @@ -2828,6 +2829,7 @@ }, "🎱", { + "value" : "🎱", "keywords" : [ "8", "8ball", @@ -2836,11 +2838,11 @@ "eight", "game", "pool" - ], - "value" : "🎱" + ] }, "🔮", { + "value" : "🔮", "keywords" : [ "ball", "crystal", @@ -2852,8 +2854,7 @@ "magic", "tale", "tool" - ], - "value" : "🔮" + ] }, "🪄", { @@ -2868,23 +2869,23 @@ }, "🎮", { - "value" : "🎮", "keywords" : [ "controller", "entertainment", "game", "video" - ] + ], + "value" : "🎮" }, "🕹️", { - "value" : "🕹️", "keywords" : [ "game", "joystick", "video", "videogame" - ] + ], + "value" : "🕹️" }, "🎰", { @@ -2901,13 +2902,13 @@ }, "🎲", { + "value" : "🎲", "keywords" : [ "dice", "die", "entertainment", "game" - ], - "value" : "🎲" + ] }, "🧩", { @@ -2922,6 +2923,7 @@ }, "🧸", { + "value" : "🧸", "keywords" : [ "bear", "plaything", @@ -2929,8 +2931,7 @@ "stuffed", "teddy", "toy" - ], - "value" : "🧸" + ] }, "🪅", { @@ -2951,7 +2952,6 @@ }, "🪩", { - "value" : "🪩", "keywords" : [ "ball", "dance", @@ -2959,7 +2959,8 @@ "glitter", "mirror", "party" - ] + ], + "value" : "🪩" }, "🪆", { @@ -2987,7 +2988,6 @@ }, "♥️", { - "value" : "♥️", "keywords" : [ "card", "emotion", @@ -2995,7 +2995,8 @@ "heart", "hearts", "suit" - ] + ], + "value" : "♥️" }, "♦️", { @@ -3050,6 +3051,7 @@ }, "🎴", { + "value" : "🎴", "keywords" : [ "card", "cards", @@ -3057,8 +3059,7 @@ "game", "Japanese", "playing" - ], - "value" : "🎴" + ] }, "🎭", { @@ -3090,6 +3091,7 @@ }, "🎨", { + "value" : "🎨", "keywords" : [ "art", "artist", @@ -3102,19 +3104,18 @@ "painter", "painting", "palette" - ], - "value" : "🎨" + ] }, "🧵", { + "value" : "🧵", "keywords" : [ "needle", "sewing", "spool", "string", "thread" - ], - "value" : "🧵" + ] }, "🪡", { @@ -3132,16 +3133,17 @@ }, "🧶", { - "value" : "🧶", "keywords" : [ "ball", "crochet", "knit", "yarn" - ] + ], + "value" : "🧶" }, "🪢", { + "value" : "🪢", "keywords" : [ "cord", "knot", @@ -3150,15 +3152,12 @@ "tie", "twine", "twist" - ], - "value" : "🪢" + ] } ], - "name" : "Activities", - "appleCategory" : "Activity" + "appleCategory" : "activity" }, { - "name" : "Component", "emojis" : [ "🏻", { @@ -3173,14 +3172,14 @@ }, "🏼", { - "value" : "🏼", "keywords" : [ "3", "medium-light", "skin", "tone", "type" - ] + ], + "value" : "🏼" }, "🏽", { @@ -3227,13 +3226,13 @@ }, "🦱", { + "value" : "🦱", "keywords" : [ "afro", "curly", "hair", "ringlets" - ], - "value" : "🦱" + ] }, "🦳", { @@ -3247,7 +3246,6 @@ }, "🦲", { - "value" : "🦲", "keywords" : [ "bald", "chemotherapy", @@ -3255,23 +3253,26 @@ "hairless", "no", "shaven" - ] + ], + "value" : "🦲" } - ] + ], + "name" : "Component" }, { + "appleCategory" : "objects", "name" : "Objects", "emojis" : [ "👓", { + "value" : "👓", "keywords" : [ "clothing", "eye", "eyeglasses", "eyewear", "glasses" - ], - "value" : "👓" + ] }, "🕶️", { @@ -3286,6 +3287,7 @@ }, "🥽", { + "value" : "🥽", "keywords" : [ "dive", "eye", @@ -3294,8 +3296,7 @@ "scuba", "swimming", "welding" - ], - "value" : "🥽" + ] }, "🥼", { @@ -3323,7 +3324,6 @@ }, "👔", { - "value" : "👔", "keywords" : [ "clothing", "employed", @@ -3331,11 +3331,11 @@ "serious", "shirt", "tie" - ] + ], + "value" : "👔" }, "👕", { - "value" : "👕", "keywords" : [ "blue", "casual", @@ -3348,7 +3348,8 @@ "t-shirt", "tshirt", "weekend" - ] + ], + "value" : "👕" }, "👖", { @@ -3380,11 +3381,11 @@ }, "🧤", { + "value" : "🧤", "keywords" : [ "gloves", "hand" - ], - "value" : "🧤" + ] }, "🧥", { @@ -3400,11 +3401,11 @@ }, "🧦", { + "value" : "🧦", "keywords" : [ "socks", "stocking" - ], - "value" : "🧦" + ] }, "👗", { @@ -3420,12 +3421,12 @@ }, "👘", { + "value" : "👘", "keywords" : [ "clothing", "comfortable", "kimono" - ], - "value" : "👘" + ] }, "🥻", { @@ -3438,17 +3439,16 @@ }, "🩱", { - "value" : "🩱", "keywords" : [ "bathing", "one-piece", "suit", "swimsuit" - ] + ], + "value" : "🩱" }, "🩲", { - "value" : "🩲", "keywords" : [ "bathing", "briefs", @@ -3456,7 +3456,8 @@ "suit", "swimsuit", "underwear" - ] + ], + "value" : "🩲" }, "🩳", { @@ -3472,6 +3473,7 @@ }, "👙", { + "value" : "👙", "keywords" : [ "bathing", "beach", @@ -3480,8 +3482,7 @@ "pool", "suit", "swim" - ], - "value" : "👙" + ] }, "👚", { @@ -3502,7 +3503,6 @@ }, "🪭", { - "value" : "🪭", "keywords" : [ "clack", "clap", @@ -3516,7 +3516,8 @@ "hand", "hot", "shy" - ] + ], + "value" : "🪭" }, "👛", { @@ -3534,7 +3535,6 @@ }, "👜", { - "value" : "👜", "keywords" : [ "bag", "clothes", @@ -3544,10 +3544,12 @@ "lady", "purse", "shopping" - ] + ], + "value" : "👜" }, "👝", { + "value" : "👝", "keywords" : [ "bag", "clothes", @@ -3557,21 +3559,21 @@ "handbag", "pouch", "purse" - ], - "value" : "👝" + ] }, "🛍️", { - "value" : "🛍️", "keywords" : [ "bag", "bags", "hotel", "shopping" - ] + ], + "value" : "🛍️" }, "🎒", { + "value" : "🎒", "keywords" : [ "backpack", "backpacking", @@ -3581,11 +3583,11 @@ "rucksack", "satchel", "school" - ], - "value" : "🎒" + ] }, "🩴", { + "value" : "🩴", "keywords" : [ "beach", "flip", @@ -3596,12 +3598,10 @@ "thong", "thongs", "zōri" - ], - "value" : "🩴" + ] }, "👞", { - "value" : "👞", "keywords" : [ "brown", "clothes", @@ -3614,7 +3614,8 @@ "shoe", "shoes", "shopping" - ] + ], + "value" : "👞" }, "👟", { @@ -3648,7 +3649,6 @@ }, "🥿", { - "value" : "🥿", "keywords" : [ "ballet", "comfy", @@ -3657,7 +3657,8 @@ "shoe", "slip-on", "slipper" - ] + ], + "value" : "🥿" }, "👠", { @@ -3714,14 +3715,14 @@ }, "🪮", { + "value" : "🪮", "keywords" : [ "Afro", "comb", "groom", "hair", "pick" - ], - "value" : "🪮" + ] }, "👑", { @@ -3740,7 +3741,6 @@ }, "👒", { - "value" : "👒", "keywords" : [ "clothes", "clothing", @@ -3750,11 +3750,11 @@ "party", "woman", "woman’s" - ] + ], + "value" : "👒" }, "🎩", { - "value" : "🎩", "keywords" : [ "clothes", "clothing", @@ -3764,7 +3764,8 @@ "magic", "top", "tophat" - ] + ], + "value" : "🎩" }, "🎓", { @@ -3793,6 +3794,7 @@ }, "🪖", { + "value" : "🪖", "keywords" : [ "army", "helmet", @@ -3800,12 +3802,10 @@ "soldier", "war", "warrior" - ], - "value" : "🪖" + ] }, "⛑️", { - "value" : "⛑️", "keywords" : [ "aid", "cross", @@ -3814,7 +3814,8 @@ "helmet", "rescue", "worker’s" - ] + ], + "value" : "⛑️" }, "📿", { @@ -3854,6 +3855,7 @@ }, "💎", { + "value" : "💎", "keywords" : [ "diamond", "engagement", @@ -3863,12 +3865,10 @@ "romance", "stone", "wedding" - ], - "value" : "💎" + ] }, "🔇", { - "value" : "🔇", "keywords" : [ "mute", "muted", @@ -3876,18 +3876,19 @@ "silent", "sound", "speaker" - ] + ], + "value" : "🔇" }, "🔈", { - "value" : "🔈", "keywords" : [ "low", "soft", "sound", "speaker", "volume" - ] + ], + "value" : "🔈" }, "🔉", { @@ -3901,6 +3902,7 @@ }, "🔊", { + "value" : "🔊", "keywords" : [ "high", "loud", @@ -3908,8 +3910,7 @@ "sound", "speaker", "volume" - ], - "value" : "🔊" + ] }, "📢", { @@ -3925,12 +3926,12 @@ }, "📣", { + "value" : "📣", "keywords" : [ "cheering", "megaphone", "sound" - ], - "value" : "📣" + ] }, "📯", { @@ -3953,7 +3954,6 @@ }, "🔕", { - "value" : "🔕", "keywords" : [ "bell", "forbidden", @@ -3965,38 +3965,39 @@ "silent", "slash", "sound" - ] + ], + "value" : "🔕" }, "🎼", { + "value" : "🎼", "keywords" : [ "music", "musical", "note", "score" - ], - "value" : "🎼" + ] }, "🎵", { + "value" : "🎵", "keywords" : [ "music", "musical", "note", "sound" - ], - "value" : "🎵" + ] }, "🎶", { + "value" : "🎶", "keywords" : [ "music", "musical", "note", "notes", "sound" - ], - "value" : "🎶" + ] }, "🎙️", { @@ -4019,12 +4020,12 @@ }, "🎛️", { + "value" : "🎛️", "keywords" : [ "control", "knobs", "music" - ], - "value" : "🎛️" + ] }, "🎤", { @@ -4040,12 +4041,12 @@ }, "🎧", { + "value" : "🎧", "keywords" : [ "earbud", "headphone", "sound" - ], - "value" : "🎧" + ] }, "📻", { @@ -4082,13 +4083,13 @@ }, "🎸", { + "value" : "🎸", "keywords" : [ "guitar", "instrument", "music", "strat" - ], - "value" : "🎸" + ] }, "🎹", { @@ -4139,7 +4140,6 @@ }, "🪘", { - "value" : "🪘", "keywords" : [ "beat", "conga", @@ -4147,7 +4147,8 @@ "instrument", "long", "rhythm" - ] + ], + "value" : "🪘" }, "🪇", { @@ -4211,11 +4212,11 @@ }, "☎️", { - "value" : "☎️", "keywords" : [ "phone", "telephone" - ] + ], + "value" : "☎️" }, "📞", { @@ -4247,10 +4248,10 @@ }, "🔋", { + "value" : "🔋", "keywords" : [ "battery" - ], - "value" : "🔋" + ] }, "🪫", { @@ -4275,23 +4276,23 @@ }, "💻", { - "value" : "💻", "keywords" : [ "computer", "laptop", "office", "pc", "personal" - ] + ], + "value" : "💻" }, "🖥️", { - "value" : "🖥️", "keywords" : [ "computer", "desktop", "monitor" - ] + ], + "value" : "🖥️" }, "🖨️", { @@ -4311,11 +4312,11 @@ }, "🖱️", { + "value" : "🖱️", "keywords" : [ "computer", "mouse" - ], - "value" : "🖱️" + ] }, "🖲️", { @@ -4327,13 +4328,13 @@ }, "💽", { - "value" : "💽", "keywords" : [ "computer", "disk", "minidisk", "optical" - ] + ], + "value" : "💽" }, "💾", { @@ -4370,16 +4371,15 @@ }, "🧮", { - "value" : "🧮", "keywords" : [ "abacus", "calculation", "calculator" - ] + ], + "value" : "🧮" }, "🎥", { - "value" : "🎥", "keywords" : [ "bollywood", "camera", @@ -4388,7 +4388,8 @@ "hollywood", "movie", "record" - ] + ], + "value" : "🎥" }, "🎞️", { @@ -4445,25 +4446,26 @@ }, "📸", { + "value" : "📸", "keywords" : [ "camera", "flash", "video" - ], - "value" : "📸" + ] }, "📹", { + "value" : "📹", "keywords" : [ "camcorder", "camera", "tbt", "video" - ], - "value" : "📹" + ] }, "📼", { + "value" : "📼", "keywords" : [ "old", "school", @@ -4472,12 +4474,10 @@ "vhs", "video", "videocassette" - ], - "value" : "📼" + ] }, "🔍", { - "value" : "🔍", "keywords" : [ "glass", "lab", @@ -4488,10 +4488,12 @@ "search", "tilted", "tool" - ] + ], + "value" : "🔍" }, "🔎", { + "value" : "🔎", "keywords" : [ "contact", "glass", @@ -4503,8 +4505,7 @@ "search", "tilted", "tool" - ], - "value" : "🔎" + ] }, "🕯️", { @@ -4516,25 +4517,25 @@ }, "💡", { + "value" : "💡", "keywords" : [ "bulb", "comic", "electric", "idea", "light" - ], - "value" : "💡" + ] }, "🔦", { + "value" : "🔦", "keywords" : [ "electric", "flashlight", "light", "tool", "torch" - ], - "value" : "🔦" + ] }, "🏮", { @@ -4550,16 +4551,17 @@ }, "🪔", { - "value" : "🪔", "keywords" : [ "diya", "lamp", "oil", "light" - ] + ], + "value" : "🪔" }, "📔", { + "value" : "📔", "keywords" : [ "book", "cover", @@ -4569,8 +4571,7 @@ "notebook", "school", "writing" - ], - "value" : "📔" + ] }, "📕", { @@ -4609,7 +4610,6 @@ }, "📘", { - "value" : "📘", "keywords" : [ "blue", "book", @@ -4617,7 +4617,8 @@ "fantasy", "library", "reading" - ] + ], + "value" : "📘" }, "📙", { @@ -4633,6 +4634,7 @@ }, "📚", { + "value" : "📚", "keywords" : [ "book", "books", @@ -4644,15 +4646,14 @@ "reading", "school", "study" - ], - "value" : "📚" + ] }, "📓", { + "value" : "📓", "keywords" : [ "notebook" - ], - "value" : "📓" + ] }, "📒", { @@ -4664,13 +4665,13 @@ }, "📃", { + "value" : "📃", "keywords" : [ "curl", "document", "page", "paper" - ], - "value" : "📃" + ] }, "📜", { @@ -4682,14 +4683,14 @@ }, "📄", { - "value" : "📄", "keywords" : [ "document", "facing", "page", "up", "paper" - ] + ], + "value" : "📄" }, "📰", { @@ -4724,19 +4725,19 @@ }, "🔖", { - "value" : "🔖", "keywords" : [ "bookmark", "mark" - ] + ], + "value" : "🔖" }, "🏷️", { + "value" : "🏷️", "keywords" : [ "label", "tag" - ], - "value" : "🏷️" + ] }, "💰", { @@ -4790,6 +4791,7 @@ }, "💵", { + "value" : "💵", "keywords" : [ "bank", "banknote", @@ -4798,11 +4800,11 @@ "dollar", "money", "note" - ], - "value" : "💵" + ] }, "💶", { + "value" : "💶", "keywords" : [ "100", "bank", @@ -4813,12 +4815,10 @@ "money", "note", "rich" - ], - "value" : "💶" + ] }, "💷", { - "value" : "💷", "keywords" : [ "bank", "banknote", @@ -4830,7 +4830,8 @@ "note", "pound", "pounds" - ] + ], + "value" : "💷" }, "💸", { @@ -4865,7 +4866,6 @@ }, "🧾", { - "value" : "🧾", "keywords" : [ "accounting", "bookkeeping", @@ -4873,10 +4873,12 @@ "invoice", "proof", "receipt" - ] + ], + "value" : "🧾" }, "💹", { + "value" : "💹", "keywords" : [ "bank", "chart", @@ -4890,8 +4892,7 @@ "trend", "upward", "yen" - ], - "value" : "💹" + ] }, "✉️", { @@ -4915,6 +4916,7 @@ }, "📨", { + "value" : "📨", "keywords" : [ "delivering", "e-mail", @@ -4925,12 +4927,10 @@ "mail", "receive", "sent" - ], - "value" : "📨" + ] }, "📩", { - "value" : "📩", "keywords" : [ "arrow", "communication", @@ -4943,10 +4943,12 @@ "outgoing", "send", "sent" - ] + ], + "value" : "📩" }, "📤", { + "value" : "📤", "keywords" : [ "box", "email", @@ -4955,12 +4957,10 @@ "outbox", "sent", "tray" - ], - "value" : "📤" + ] }, "📥", { - "value" : "📥", "keywords" : [ "box", "email", @@ -4970,7 +4970,8 @@ "receive", "tray", "zero" - ] + ], + "value" : "📥" }, "📦", { @@ -5035,12 +5036,12 @@ }, "📮", { + "value" : "📮", "keywords" : [ "mail", "mailbox", "postbox" - ], - "value" : "📮" + ] }, "🗳️", { @@ -5052,19 +5053,19 @@ }, "✏️", { + "value" : "✏️", "keywords" : [ "pencil" - ], - "value" : "✏️" + ] }, "✒️", { - "value" : "✒️", "keywords" : [ "black", "nib", "pen" - ] + ], + "value" : "✒️" }, "🖋️", { @@ -5084,11 +5085,11 @@ }, "🖌️", { + "value" : "🖌️", "keywords" : [ "paintbrush", "painting" - ], - "value" : "🖌️" + ] }, "🖍️", { @@ -5110,19 +5111,19 @@ }, "💼", { - "value" : "💼", "keywords" : [ "briefcase", "office" - ] + ], + "value" : "💼" }, "📁", { + "value" : "📁", "keywords" : [ "file", "folder" - ], - "value" : "📁" + ] }, "📂", { @@ -5205,6 +5206,7 @@ }, "📉", { + "value" : "📉", "keywords" : [ "chart", "data", @@ -5214,18 +5216,17 @@ "graph", "negative", "trend" - ], - "value" : "📉" + ] }, "📊", { + "value" : "📊", "keywords" : [ "bar", "chart", "data", "graph" - ], - "value" : "📊" + ] }, "📋", { @@ -5259,24 +5260,23 @@ }, "📎", { - "value" : "📎", "keywords" : [ "paperclip" - ] + ], + "value" : "📎" }, "🖇️", { + "value" : "🖇️", "keywords" : [ "link", "linked", "paperclip", "paperclips" - ], - "value" : "🖇️" + ] }, "📏", { - "value" : "📏", "keywords" : [ "angle", "edge", @@ -5284,7 +5284,8 @@ "ruler", "straight", "straightedge" - ] + ], + "value" : "📏" }, "📐", { @@ -5332,35 +5333,35 @@ }, "🗑️", { + "value" : "🗑️", "keywords" : [ "wastebasket", "trash", "can", "waste", "garbage" - ], - "value" : "🗑️" + ] }, "🔒", { + "value" : "🔒", "keywords" : [ "closed", "lock", "locked", "private" - ], - "value" : "🔒" + ] }, "🔓", { - "value" : "🔓", "keywords" : [ "cracked", "lock", "open", "unlock", "unlocked" - ] + ], + "value" : "🔓" }, "🔏", { @@ -5388,6 +5389,7 @@ }, "🔑", { + "value" : "🔑", "keywords" : [ "key", "keys", @@ -5395,18 +5397,17 @@ "major", "password", "unlock" - ], - "value" : "🔑" + ] }, "🗝️", { + "value" : "🗝️", "keywords" : [ "clue", "key", "lock", "old" - ], - "value" : "🗝️" + ] }, "🔨", { @@ -5443,12 +5444,12 @@ }, "⚒️", { - "value" : "⚒️", "keywords" : [ "hammer", "pick", "tool" - ] + ], + "value" : "⚒️" }, "🛠️", { @@ -5462,12 +5463,12 @@ }, "🗡️", { - "value" : "🗡️", "keywords" : [ "dagger", "knife", "weapon" - ] + ], + "value" : "🗡️" }, "⚔️", { @@ -5492,13 +5493,13 @@ }, "🪃", { - "value" : "🪃", "keywords" : [ "boomerang", "rebound", "repercussion", "weapon" - ] + ], + "value" : "🪃" }, "🏹", { @@ -5516,14 +5517,15 @@ }, "🛡️", { - "value" : "🛡️", "keywords" : [ "shield", "weapon" - ] + ], + "value" : "🛡️" }, "🪚", { + "value" : "🪚", "keywords" : [ "carpenter", "carpentry", @@ -5532,8 +5534,7 @@ "saw", "tool", "trim" - ], - "value" : "🪚" + ] }, "🔧", { @@ -5559,14 +5560,14 @@ }, "🔩", { + "value" : "🔩", "keywords" : [ "bolt", "home", "improvement", "nut", "tool" - ], - "value" : "🔩" + ] }, "⚙️", { @@ -5580,17 +5581,16 @@ }, "🗜️", { + "value" : "🗜️", "keywords" : [ "clamp", "compress", "tool", "vice" - ], - "value" : "🗜️" + ] }, "⚖️", { - "value" : "⚖️", "keywords" : [ "balance", "justice", @@ -5600,18 +5600,19 @@ "tool", "weight", "zodiac" - ] + ], + "value" : "⚖️" }, "🦯", { + "value" : "🦯", "keywords" : [ "accessibility", "blind", "cane", "probing", "white" - ], - "value" : "🦯" + ] }, "🔗", { @@ -5623,6 +5624,7 @@ }, "⛓️‍💥", { + "value" : "⛓️‍💥", "keywords" : [ "break", "breaking", @@ -5630,8 +5632,7 @@ "chain", "cuffs", "freedom" - ], - "value" : "⛓️‍💥" + ] }, "⛓️", { @@ -5668,7 +5669,6 @@ }, "🧲", { - "value" : "🧲", "keywords" : [ "attraction", "horseshoe", @@ -5678,17 +5678,18 @@ "positive", "shape", "u" - ] + ], + "value" : "🧲" }, "🪜", { - "value" : "🪜", "keywords" : [ "climb", "ladder", "rung", "step" - ] + ], + "value" : "🪜" }, "⚗️", { @@ -5714,7 +5715,6 @@ }, "🧫", { - "value" : "🧫", "keywords" : [ "bacteria", "biologist", @@ -5723,7 +5723,8 @@ "dish", "lab", "petri" - ] + ], + "value" : "🧫" }, "🧬", { @@ -5739,14 +5740,14 @@ }, "🔬", { - "value" : "🔬", "keywords" : [ "experiment", "lab", "microscope", "science", "tool" - ] + ], + "value" : "🔬" }, "🔭", { @@ -5761,7 +5762,6 @@ }, "📡", { - "value" : "📡", "keywords" : [ "aliens", "antenna", @@ -5769,10 +5769,12 @@ "dish", "satellite", "science" - ] + ], + "value" : "📡" }, "💉", { + "value" : "💉", "keywords" : [ "doctor", "flu", @@ -5783,8 +5785,7 @@ "syringe", "tool", "vaccination" - ], - "value" : "💉" + ] }, "🩸", { @@ -5815,11 +5816,11 @@ }, "🩹", { + "value" : "🩹", "keywords" : [ "adhesive", "bandage" - ], - "value" : "🩹" + ] }, "🩼", { @@ -5861,38 +5862,37 @@ }, "🚪", { + "value" : "🚪", "keywords" : [ "back", "closet", "door", "front" - ], - "value" : "🚪" + ] }, "🛗", { + "value" : "🛗", "keywords" : [ "accessibility", "elevator", "hoist", "lift" - ], - "value" : "🛗" + ] }, "🪞", { + "value" : "🪞", "keywords" : [ "makeup", "mirror", "reflection", "reflector", "speculum" - ], - "value" : "🪞" + ] }, "🪟", { - "value" : "🪟", "keywords" : [ "air", "frame", @@ -5901,7 +5901,8 @@ "transparent", "view", "window" - ] + ], + "value" : "🪟" }, "🛏️", { @@ -5923,12 +5924,12 @@ }, "🪑", { + "value" : "🪑", "keywords" : [ "chair", "seat", "sit" - ], - "value" : "🪑" + ] }, "🚽", { @@ -5940,6 +5941,7 @@ }, "🪠", { + "value" : "🪠", "keywords" : [ "cup", "force", @@ -5948,24 +5950,23 @@ "poop", "suction", "toilet" - ], - "value" : "🪠" + ] }, "🚿", { + "value" : "🚿", "keywords" : [ "shower", "water" - ], - "value" : "🚿" + ] }, "🛁", { - "value" : "🛁", "keywords" : [ "bath", "bathtub" - ] + ], + "value" : "🛁" }, "🪤", { @@ -5982,12 +5983,12 @@ }, "🪒", { + "value" : "🪒", "keywords" : [ "razor", "sharp", "shave" - ], - "value" : "🪒" + ] }, "🧴", { @@ -6002,57 +6003,58 @@ }, "🧷", { + "value" : "🧷", "keywords" : [ "diaper", "pin", "punk", "rock", "safety" - ], - "value" : "🧷" + ] }, "🧹", { + "value" : "🧹", "keywords" : [ "broom", "cleaning", "sweeping", "witch" - ], - "value" : "🧹" + ] }, "🧺", { - "value" : "🧺", "keywords" : [ "basket", "farming", "laundry", "picnic" - ] + ], + "value" : "🧺" }, "🧻", { - "value" : "🧻", "keywords" : [ "paper", "roll", "toilet", "towels" - ] + ], + "value" : "🧻" }, "🪣", { - "value" : "🪣", "keywords" : [ "bucket", "cask", "pail", "vat" - ] + ], + "value" : "🪣" }, "🧼", { + "value" : "🧼", "keywords" : [ "bar", "bathing", @@ -6061,8 +6063,7 @@ "lather", "soap", "soapdish" - ], - "value" : "🧼" + ] }, "🫧", { @@ -6080,7 +6081,6 @@ }, "🪥", { - "value" : "🪥", "keywords" : [ "bathroom", "brush", @@ -6090,7 +6090,8 @@ "teeth", "toiletry", "toothbrush" - ] + ], + "value" : "🪥" }, "🧽", { @@ -6115,20 +6116,20 @@ }, "🛒", { + "value" : "🛒", "keywords" : [ "cart", "shopping", "trolley" - ], - "value" : "🛒" + ] }, "🚬", { + "value" : "🚬", "keywords" : [ "cigarette", "smoking" - ], - "value" : "🚬" + ] }, "⚰️", { @@ -6142,7 +6143,6 @@ }, "🪦", { - "value" : "🪦", "keywords" : [ "cemetery", "dead", @@ -6153,7 +6153,8 @@ "rip", "tomb", "tombstone" - ] + ], + "value" : "🪦" }, "⚱️", { @@ -6167,6 +6168,7 @@ }, "🧿", { + "value" : "🧿", "keywords" : [ "amulet", "bead", @@ -6175,8 +6177,7 @@ "evil-eye", "nazar", "talisman" - ], - "value" : "🧿" + ] }, "🪬", { @@ -6197,6 +6198,7 @@ }, "🗿", { + "value" : "🗿", "keywords" : [ "face", "moai", @@ -6204,8 +6206,7 @@ "statue", "stoneface", "travel" - ], - "value" : "🗿" + ] }, "🪧", { @@ -6234,11 +6235,11 @@ ], "value" : "🪪" } - ], - "appleCategory" : "Objects" + ] }, { - "appleCategory" : "Travel & Places", + "name" : "Travel & Places", + "appleCategory" : "travelAndPlaces", "emojis" : [ "🌍", { @@ -6279,7 +6280,6 @@ }, "🌐", { - "value" : "🌐", "keywords" : [ "earth", "globe", @@ -6288,7 +6288,8 @@ "web", "world", "worldwide" - ] + ], + "value" : "🌐" }, "🗺️", { @@ -6300,49 +6301,49 @@ }, "🗾", { + "value" : "🗾", "keywords" : [ "Japan", "map" - ], - "value" : "🗾" + ] }, "🧭", { - "value" : "🧭", "keywords" : [ "compass", "direction", "magnetic", "navigation", "orienteering" - ] + ], + "value" : "🧭" }, "🏔️", { - "value" : "🏔️", "keywords" : [ "cold", "mountain", "snow", "snow-capped" - ] + ], + "value" : "🏔️" }, "⛰️", { + "value" : "⛰️", "keywords" : [ "mountain" - ], - "value" : "⛰️" + ] }, "🌋", { - "value" : "🌋", "keywords" : [ "eruption", "mountain", "nature", "volcano" - ] + ], + "value" : "🌋" }, "🗻", { @@ -6356,41 +6357,41 @@ }, "🏕️", { + "value" : "🏕️", "keywords" : [ "camping" - ], - "value" : "🏕️" + ] }, "🏖️", { + "value" : "🏖️", "keywords" : [ "beach", "umbrella" - ], - "value" : "🏖️" + ] }, "🏜️", { - "value" : "🏜️", "keywords" : [ "desert" - ] + ], + "value" : "🏜️" }, "🏝️", { - "value" : "🏝️", "keywords" : [ "desert", "island" - ] + ], + "value" : "🏝️" }, "🏞️", { + "value" : "🏞️", "keywords" : [ "national", "park" - ], - "value" : "🏞️" + ] }, "🏟️", { @@ -6418,17 +6419,18 @@ }, "🧱", { - "value" : "🧱", "keywords" : [ "brick", "bricks", "clay", "mortar", "wall" - ] + ], + "value" : "🧱" }, "🪨", { + "value" : "🪨", "keywords" : [ "boulder", "heavy", @@ -6436,8 +6438,7 @@ "solid", "stone", "tough" - ], - "value" : "🪨" + ] }, "🪵", { @@ -6451,7 +6452,6 @@ }, "🛖", { - "value" : "🛖", "keywords" : [ "home", "house", @@ -6459,7 +6459,8 @@ "roundhouse", "shelter", "yurt" - ] + ], + "value" : "🛖" }, "🏘️", { @@ -6471,16 +6472,15 @@ }, "🏚️", { + "value" : "🏚️", "keywords" : [ "derelict", "home", "house" - ], - "value" : "🏚️" + ] }, "🏠", { - "value" : "🏠", "keywords" : [ "building", "country", @@ -6493,10 +6493,12 @@ "suburban", "suburbia", "where" - ] + ], + "value" : "🏠" }, "🏡", { + "value" : "🏡", "keywords" : [ "building", "country", @@ -6510,39 +6512,38 @@ "suburban", "suburbia", "where" - ], - "value" : "🏡" + ] }, "🏢", { + "value" : "🏢", "keywords" : [ "building", "city", "cubical", "job", "office" - ], - "value" : "🏢" + ] }, "🏣", { + "value" : "🏣", "keywords" : [ "building", "Japanese", "office", "post" - ], - "value" : "🏣" + ] }, "🏤", { - "value" : "🏤", "keywords" : [ "building", "European", "office", "post" - ] + ], + "value" : "🏤" }, "🏥", { @@ -6581,22 +6582,22 @@ }, "🏪", { - "value" : "🏪", "keywords" : [ "24", "building", "convenience", "hours", "store" - ] + ], + "value" : "🏪" }, "🏫", { - "value" : "🏫", "keywords" : [ "building", "school" - ] + ], + "value" : "🏫" }, "🏬", { @@ -6646,15 +6647,14 @@ }, "🗼", { - "value" : "🗼", "keywords" : [ "Tokyo", "tower" - ] + ], + "value" : "🗼" }, "🗽", { - "value" : "🗽", "keywords" : [ "liberty", "Liberty", @@ -6664,10 +6664,12 @@ "statue", "Statue", "york" - ] + ], + "value" : "🗽" }, "⛪", { + "value" : "⛪", "keywords" : [ "bless", "chapel", @@ -6675,8 +6677,7 @@ "church", "cross", "religion" - ], - "value" : "⛪" + ] }, "🕌", { @@ -6732,18 +6733,18 @@ }, "⛲", { + "value" : "⛲", "keywords" : [ "fountain" - ], - "value" : "⛲" + ] }, "⛺", { + "value" : "⛺", "keywords" : [ "camping", "tent" - ], - "value" : "⛺" + ] }, "🌁", { @@ -6755,12 +6756,12 @@ }, "🌃", { + "value" : "🌃", "keywords" : [ "night", "star", "stars" - ], - "value" : "🌃" + ] }, "🏙️", { @@ -6808,13 +6809,13 @@ }, "🌇", { + "value" : "🌇", "keywords" : [ "building", "dusk", "sun", "sunset" - ], - "value" : "🌇" + ] }, "🌉", { @@ -6827,26 +6828,25 @@ }, "♨️", { - "value" : "♨️", "keywords" : [ "hot", "hotsprings", "springs", "steaming" - ] + ], + "value" : "♨️" }, "🎠", { - "value" : "🎠", "keywords" : [ "carousel", "entertainment", "horse" - ] + ], + "value" : "🎠" }, "🛝", { - "value" : "🛝", "keywords" : [ "amusement", "park", @@ -6856,33 +6856,33 @@ "slide", "sliding", "theme" - ] + ], + "value" : "🛝" }, "🎡", { + "value" : "🎡", "keywords" : [ "amusement", "ferris", "park", "theme", "wheel" - ], - "value" : "🎡" + ] }, "🎢", { + "value" : "🎢", "keywords" : [ "amusement", "coaster", "park", "roller", "theme" - ], - "value" : "🎢" + ] }, "💈", { - "value" : "💈", "keywords" : [ "barber", "cut", @@ -6890,7 +6890,8 @@ "haircut", "pole", "shave" - ] + ], + "value" : "💈" }, "🎪", { @@ -6929,17 +6930,18 @@ }, "🚄", { + "value" : "🚄", "keywords" : [ "high-speed", "railway", "shinkansen", "speed", "train" - ], - "value" : "🚄" + ] }, "🚅", { + "value" : "🚅", "keywords" : [ "bullet", "high-speed", @@ -6949,8 +6951,7 @@ "speed", "train", "travel" - ], - "value" : "🚅" + ] }, "🚆", { @@ -7019,14 +7020,14 @@ }, "🚋", { + "value" : "🚋", "keywords" : [ "bus", "car", "tram", "trolley", "trolleybus" - ], - "value" : "🚋" + ] }, "🚌", { @@ -7039,22 +7040,22 @@ }, "🚍", { - "value" : "🚍", "keywords" : [ "bus", "cars", "oncoming" - ] + ], + "value" : "🚍" }, "🚎", { + "value" : "🚎", "keywords" : [ "bus", "tram", "trolley", "trolleybus" - ], - "value" : "🚎" + ] }, "🚐", { @@ -7069,12 +7070,12 @@ }, "🚑", { + "value" : "🚑", "keywords" : [ "ambulance", "emergency", "vehicle" - ], - "value" : "🚑" + ] }, "🚒", { @@ -7087,26 +7088,27 @@ }, "🚓", { - "value" : "🚓", "keywords" : [ "5–0", "car", "cops", "patrol", "police" - ] + ], + "value" : "🚓" }, "🚔", { - "value" : "🚔", "keywords" : [ "car", "oncoming", "police" - ] + ], + "value" : "🚔" }, "🚕", { + "value" : "🚕", "keywords" : [ "cab", "cabbie", @@ -7115,12 +7117,10 @@ "taxi", "vehicle", "yellow" - ], - "value" : "🚕" + ] }, "🚖", { - "value" : "🚖", "keywords" : [ "cab", "cabbie", @@ -7130,20 +7130,22 @@ "oncoming", "taxi", "yellow" - ] + ], + "value" : "🚖" }, "🚗", { - "value" : "🚗", "keywords" : [ "automobile", "car", "driving", "vehicle" - ] + ], + "value" : "🚗" }, "🚘", { + "value" : "🚘", "keywords" : [ "automobile", "car", @@ -7151,11 +7153,11 @@ "drove", "oncoming", "vehicle" - ], - "value" : "🚘" + ] }, "🚙", { + "value" : "🚙", "keywords" : [ "car", "drive", @@ -7164,11 +7166,11 @@ "sportutility", "utility", "vehicle" - ], - "value" : "🚙" + ] }, "🛻", { + "value" : "🛻", "keywords" : [ "automobile", "car", @@ -7177,22 +7179,22 @@ "pickup", "transportation", "truck" - ], - "value" : "🛻" + ] }, "🚚", { + "value" : "🚚", "keywords" : [ "car", "delivery", "drive", "truck", "vehicle" - ], - "value" : "🚚" + ] }, "🚛", { + "value" : "🚛", "keywords" : [ "articulated", "car", @@ -7202,33 +7204,32 @@ "semi", "truck", "vehicle" - ], - "value" : "🚛" + ] }, "🚜", { - "value" : "🚜", "keywords" : [ "tractor", "vehicle" - ] + ], + "value" : "🚜" }, "🏎️", { - "value" : "🏎️", "keywords" : [ "car", "racing", "zoom" - ] + ], + "value" : "🏎️" }, "🏍️", { - "value" : "🏍️", "keywords" : [ "motorcycle", "racing" - ] + ], + "value" : "🏍️" }, "🛵", { @@ -7240,12 +7241,12 @@ }, "🦽", { + "value" : "🦽", "keywords" : [ "accessibility", "manual", "wheelchair" - ], - "value" : "🦽" + ] }, "🦼", { @@ -7283,11 +7284,11 @@ }, "🛴", { - "value" : "🛴", "keywords" : [ "kick", "scooter" - ] + ], + "value" : "🛴" }, "🛹", { @@ -7313,12 +7314,12 @@ }, "🚏", { + "value" : "🚏", "keywords" : [ "bus", "busstop", "stop" - ], - "value" : "🚏" + ] }, "🛣️", { @@ -7424,11 +7425,11 @@ }, "🚧", { - "value" : "🚧", "keywords" : [ "barrier", "construction" - ] + ], + "value" : "🚧" }, "⚓", { @@ -7441,6 +7442,7 @@ }, "🛟", { + "value" : "🛟", "keywords" : [ "buoy", "float", @@ -7453,12 +7455,10 @@ "save", "saver", "swim" - ], - "value" : "🛟" + ] }, "⛵", { - "value" : "⛵", "keywords" : [ "boat", "resort", @@ -7466,7 +7466,8 @@ "sailing", "sea", "yacht" - ] + ], + "value" : "⛵" }, "🛶", { @@ -7478,7 +7479,6 @@ }, "🚤", { - "value" : "🚤", "keywords" : [ "billionaire", "boat", @@ -7488,7 +7488,8 @@ "speedboat", "summer", "travel" - ] + ], + "value" : "🚤" }, "🛳️", { @@ -7576,32 +7577,32 @@ }, "🪂", { - "value" : "🪂", "keywords" : [ "hang-glide", "parachute", "parasail", "skydive" - ] + ], + "value" : "🪂" }, "💺", { - "value" : "💺", "keywords" : [ "chair", "seat" - ] + ], + "value" : "💺" }, "🚁", { - "value" : "🚁", "keywords" : [ "copter", "helicopter", "roflcopter", "travel", "vehicle" - ] + ], + "value" : "🚁" }, "🚟", { @@ -7613,7 +7614,6 @@ }, "🚠", { - "value" : "🚠", "keywords" : [ "cable", "cableway", @@ -7621,7 +7621,8 @@ "lift", "mountain", "ski" - ] + ], + "value" : "🚠" }, "🚡", { @@ -7637,26 +7638,25 @@ }, "🛰️", { - "value" : "🛰️", "keywords" : [ "satellite", "space" - ] + ], + "value" : "🛰️" }, "🚀", { - "value" : "🚀", "keywords" : [ "launch", "rocket", "rockets", "space", "travel" - ] + ], + "value" : "🚀" }, "🛸", { - "value" : "🛸", "keywords" : [ "aliens", "extra", @@ -7664,20 +7664,20 @@ "saucer", "terrestrial", "UFO" - ] + ], + "value" : "🛸" }, "🛎️", { - "value" : "🛎️", "keywords" : [ "bell", "bellhop", "hotel" - ] + ], + "value" : "🛎️" }, "🧳", { - "value" : "🧳", "keywords" : [ "bag", "luggage", @@ -7685,7 +7685,8 @@ "roller", "suitcase", "travel" - ] + ], + "value" : "🧳" }, "⌛", { @@ -7724,6 +7725,7 @@ }, "⏰", { + "value" : "⏰", "keywords" : [ "alarm", "clock", @@ -7732,8 +7734,7 @@ "late", "time", "waiting" - ], - "value" : "⏰" + ] }, "⏱️", { @@ -7746,11 +7747,11 @@ }, "⏲️", { + "value" : "⏲️", "keywords" : [ "clock", "timer" - ], - "value" : "⏲️" + ] }, "🕰️", { @@ -7763,6 +7764,7 @@ }, "🕛", { + "value" : "🕛", "keywords" : [ "12", "12:00", @@ -7770,12 +7772,10 @@ "o’clock", "time", "twelve" - ], - "value" : "🕛" + ] }, "🕧", { - "value" : "🕧", "keywords" : [ "12", "12:30", @@ -7785,7 +7785,8 @@ "time", "twelve", "twelve-thirty" - ] + ], + "value" : "🕧" }, "🕐", { @@ -7827,7 +7828,6 @@ }, "🕝", { - "value" : "🕝", "keywords" : [ "2", "2:30", @@ -7837,10 +7837,12 @@ "time", "two", "two-thirty" - ] + ], + "value" : "🕝" }, "🕒", { + "value" : "🕒", "keywords" : [ "3", "3:00", @@ -7848,11 +7850,11 @@ "o’clock", "three", "time" - ], - "value" : "🕒" + ] }, "🕞", { + "value" : "🕞", "keywords" : [ "3", "3:30", @@ -7862,8 +7864,7 @@ "three", "three-thirty", "time" - ], - "value" : "🕞" + ] }, "🕓", { @@ -7893,6 +7894,7 @@ }, "🕔", { + "value" : "🕔", "keywords" : [ "5", "5:00", @@ -7900,12 +7902,10 @@ "five", "o’clock", "time" - ], - "value" : "🕔" + ] }, "🕠", { - "value" : "🕠", "keywords" : [ "30", "5", @@ -7915,7 +7915,8 @@ "five-thirty", "thirty", "time" - ] + ], + "value" : "🕠" }, "🕕", { @@ -7931,7 +7932,6 @@ }, "🕡", { - "value" : "🕡", "keywords" : [ "30", "6", @@ -7940,7 +7940,8 @@ "six", "six-thirty", "thirty" - ] + ], + "value" : "🕡" }, "🕖", { @@ -7956,7 +7957,6 @@ }, "🕢", { - "value" : "🕢", "keywords" : [ "30", "7", @@ -7965,7 +7965,8 @@ "seven", "seven-thirty", "thirty" - ] + ], + "value" : "🕢" }, "🕗", { @@ -7995,7 +7996,6 @@ }, "🕘", { - "value" : "🕘", "keywords" : [ "9", "9:00", @@ -8003,7 +8003,8 @@ "nine", "o’clock", "time" - ] + ], + "value" : "🕘" }, "🕤", { @@ -8033,7 +8034,6 @@ }, "🕥", { - "value" : "🕥", "keywords" : [ "10", "10:30", @@ -8043,7 +8043,8 @@ "ten-thirty", "thirty", "time" - ] + ], + "value" : "🕥" }, "🕚", { @@ -8094,23 +8095,23 @@ }, "🌓", { + "value" : "🌓", "keywords" : [ "first", "moon", "quarter", "space" - ], - "value" : "🌓" + ] }, "🌔", { + "value" : "🌔", "keywords" : [ "gibbous", "moon", "space", "waxing" - ], - "value" : "🌔" + ] }, "🌕", { @@ -8143,13 +8144,13 @@ }, "🌘", { - "value" : "🌘", "keywords" : [ "crescent", "moon", "space", "waning" - ] + ], + "value" : "🌘" }, "🌙", { @@ -8163,35 +8164,35 @@ }, "🌚", { - "value" : "🌚", "keywords" : [ "face", "moon", "new", "space" - ] + ], + "value" : "🌚" }, "🌛", { + "value" : "🌛", "keywords" : [ "face", "first", "moon", "quarter", "space" - ], - "value" : "🌛" + ] }, "🌜", { + "value" : "🌜", "keywords" : [ "dreams", "face", "last", "moon", "quarter" - ], - "value" : "🌜" + ] }, "🌡️", { @@ -8251,17 +8252,18 @@ }, "⭐", { + "value" : "⭐", "keywords" : [ "astronomy", "medium", "star", "stars", "white" - ], - "value" : "⭐" + ] }, "🌟", { + "value" : "🌟", "keywords" : [ "glittery", "glow", @@ -8271,28 +8273,27 @@ "sparkle", "star", "win" - ], - "value" : "🌟" + ] }, "🌠", { - "value" : "🌠", "keywords" : [ "falling", "night", "shooting", "space", "star" - ] + ], + "value" : "🌠" }, "🌌", { - "value" : "🌌", "keywords" : [ "milky", "space", "way" - ] + ], + "value" : "🌌" }, "☁️", { @@ -8304,14 +8305,14 @@ }, "⛅", { - "value" : "⛅", "keywords" : [ "behind", "cloud", "cloudy", "sun", "weather" - ] + ], + "value" : "⛅" }, "⛈️", { @@ -8346,23 +8347,23 @@ }, "🌦️", { - "value" : "🌦️", "keywords" : [ "behind", "cloud", "rain", "sun", "weather" - ] + ], + "value" : "🌦️" }, "🌧️", { + "value" : "🌧️", "keywords" : [ "cloud", "rain", "weather" - ], - "value" : "🌧️" + ] }, "🌨️", { @@ -8385,22 +8386,22 @@ }, "🌪️", { - "value" : "🌪️", "keywords" : [ "cloud", "tornado", "weather", "whirlwind" - ] + ], + "value" : "🌪️" }, "🌫️", { - "value" : "🌫️", "keywords" : [ "cloud", "fog", "weather" - ] + ], + "value" : "🌫️" }, "🌬️", { @@ -8414,6 +8415,7 @@ }, "🌀", { + "value" : "🌀", "keywords" : [ "cyclone", "dizzy", @@ -8421,11 +8423,11 @@ "twister", "typhoon", "weather" - ], - "value" : "🌀" + ] }, "🌈", { + "value" : "🌈", "keywords" : [ "gay", "genderqueer", @@ -8443,31 +8445,29 @@ "trans", "transgender", "weather" - ], - "value" : "🌈" + ] }, "🌂", { - "value" : "🌂", "keywords" : [ "closed", "clothing", "rain", "umbrella" - ] + ], + "value" : "🌂" }, "☂️", { + "value" : "☂️", "keywords" : [ "clothing", "rain", "umbrella" - ], - "value" : "☂️" + ] }, "☔", { - "value" : "☔", "keywords" : [ "clothing", "drop", @@ -8475,7 +8475,8 @@ "rain", "umbrella", "weather" - ] + ], + "value" : "☔" }, "⛱️", { @@ -8505,13 +8506,13 @@ }, "❄️", { - "value" : "❄️", "keywords" : [ "cold", "snow", "snowflake", "weather" - ] + ], + "value" : "❄️" }, "☃️", { @@ -8535,11 +8536,11 @@ }, "☄️", { + "value" : "☄️", "keywords" : [ "comet", "space" - ], - "value" : "☄️" + ] }, "🔥", { @@ -8584,15 +8585,15 @@ "wave" ] } - ], - "name" : "Travel & Places" + ] }, { + "appleCategory" : "symbols", "name" : "Symbols", - "appleCategory" : "Symbols", "emojis" : [ "🏧", { + "value" : "🏧", "keywords" : [ "ATM", "automated", @@ -8601,18 +8602,17 @@ "money", "sign", "teller" - ], - "value" : "🏧" + ] }, "🚮", { + "value" : "🚮", "keywords" : [ "bin", "litter", "litterbin", "sign" - ], - "value" : "🚮" + ] }, "🚰", { @@ -8649,6 +8649,7 @@ }, "🚺", { + "value" : "🚺", "keywords" : [ "bathroom", "lavatory", @@ -8658,19 +8659,18 @@ "WC", "woman", "women’s" - ], - "value" : "🚺" + ] }, "🚻", { + "value" : "🚻", "keywords" : [ "bathroom", "lavatory", "restroom", "toilet", "WC" - ], - "value" : "🚻" + ] }, "🚼", { @@ -8683,7 +8683,6 @@ }, "🚾", { - "value" : "🚾", "keywords" : [ "bathroom", "closet", @@ -8692,15 +8691,16 @@ "toilet", "water", "WC" - ] + ], + "value" : "🚾" }, "🛂", { - "value" : "🛂", "keywords" : [ "control", "passport" - ] + ], + "value" : "🛂" }, "🛃", { @@ -8730,33 +8730,33 @@ }, "🛅", { - "value" : "🛅", "keywords" : [ "baggage", "case", "left", "locker", "luggage" - ] + ], + "value" : "🛅" }, "⚠️", { + "value" : "⚠️", "keywords" : [ "caution", "warning" - ], - "value" : "⚠️" + ] }, "🚸", { - "value" : "🚸", "keywords" : [ "child", "children", "crossing", "pedestrian", "traffic" - ] + ], + "value" : "🚸" }, "⛔", { @@ -8787,6 +8787,7 @@ }, "🚳", { + "value" : "🚳", "keywords" : [ "bicycle", "bicycles", @@ -8795,11 +8796,11 @@ "no", "not", "prohibited" - ], - "value" : "🚳" + ] }, "🚭", { + "value" : "🚭", "keywords" : [ "forbidden", "no", @@ -8807,11 +8808,11 @@ "prohibited", "smoke", "smoking" - ], - "value" : "🚭" + ] }, "🚯", { + "value" : "🚯", "keywords" : [ "forbidden", "litter", @@ -8819,23 +8820,21 @@ "no", "not", "prohibited" - ], - "value" : "🚯" + ] }, "🚱", { - "value" : "🚱", "keywords" : [ "dry", "non-drinking", "non-potable", "prohibited", "water" - ] + ], + "value" : "🚱" }, "🚷", { - "value" : "🚷", "keywords" : [ "forbidden", "no", @@ -8843,10 +8842,12 @@ "pedestrian", "pedestrians", "prohibited" - ] + ], + "value" : "🚷" }, "📵", { + "value" : "📵", "keywords" : [ "cell", "forbidden", @@ -8857,8 +8858,7 @@ "phones", "prohibited", "telephone" - ], - "value" : "📵" + ] }, "🔞", { @@ -8894,25 +8894,25 @@ }, "⬆️", { + "value" : "⬆️", "keywords" : [ "arrow", "cardinal", "direction", "north", "up" - ], - "value" : "⬆️" + ] }, "↗️", { + "value" : "↗️", "keywords" : [ "arrow", "direction", "intercardinal", "northeast", "up-right" - ], - "value" : "↗️" + ] }, "➡️", { @@ -8960,25 +8960,25 @@ }, "⬅️", { + "value" : "⬅️", "keywords" : [ "arrow", "cardinal", "direction", "left", "west" - ], - "value" : "⬅️" + ] }, "↖️", { + "value" : "↖️", "keywords" : [ "arrow", "direction", "intercardinal", "northwest", "up-left" - ], - "value" : "↖️" + ] }, "↕️", { @@ -8990,13 +8990,23 @@ }, "↔️", { - "value" : "↔️", "keywords" : [ "arrow", "left-right" - ] + ], + "value" : "↔️" }, "↩️", + { + "value" : "↩️", + "keywords" : [ + "arrow", + "curving", + "left", + "right" + ] + }, + "↪️", { "keywords" : [ "arrow", @@ -9004,17 +9014,7 @@ "left", "right" ], - "value" : "↩️" - }, - "↪️", - { - "value" : "↪️", - "keywords" : [ - "arrow", - "curving", - "left", - "right" - ] + "value" : "↪️" }, "⤴️", { @@ -9038,7 +9038,6 @@ }, "🔃", { - "value" : "🔃", "keywords" : [ "arrow", "arrows", @@ -9046,7 +9045,8 @@ "refresh", "reload", "vertical" - ] + ], + "value" : "🔃" }, "🔄", { @@ -9082,12 +9082,12 @@ }, "🔛", { + "value" : "🔛", "keywords" : [ "arrow", "mark", "ON!" - ], - "value" : "🔛" + ] }, "🔜", { @@ -9101,13 +9101,13 @@ }, "🔝", { + "value" : "🔝", "keywords" : [ "arrow", "homie", "TOP", "up" - ], - "value" : "🔝" + ] }, "🛐", { @@ -9130,12 +9130,12 @@ }, "🕉️", { - "value" : "🕉️", "keywords" : [ "Hindu", "om", "religion" - ] + ], + "value" : "🕉️" }, "✡️", { @@ -9161,6 +9161,7 @@ }, "☯️", { + "value" : "☯️", "keywords" : [ "difficult", "lives", @@ -9171,19 +9172,18 @@ "yang", "yin", "yinyang" - ], - "value" : "☯️" + ] }, "✝️", { + "value" : "✝️", "keywords" : [ "christ", "Christian", "cross", "latin", "religion" - ], - "value" : "✝️" + ] }, "☦️", { @@ -9197,6 +9197,7 @@ }, "☪️", { + "value" : "☪️", "keywords" : [ "crescent", "islam", @@ -9204,18 +9205,17 @@ "ramadan", "religion", "star" - ], - "value" : "☪️" + ] }, "☮️", { - "value" : "☮️", "keywords" : [ "healing", "peace", "peaceful", "symbol" - ] + ], + "value" : "☮️" }, "🕎", { @@ -9244,7 +9244,6 @@ }, "🪯", { - "value" : "🪯", "keywords" : [ "Deg", "Fateh", @@ -9254,17 +9253,18 @@ "Sikh", "Sikhism", "Tegh" - ] + ], + "value" : "🪯" }, "♈", { - "value" : "♈", "keywords" : [ "Aries", "horoscope", "ram", "zodiac" - ] + ], + "value" : "♈" }, "♉", { @@ -9279,13 +9279,13 @@ }, "♊", { - "value" : "♊", "keywords" : [ "Gemini", "horoscope", "twins", "zodiac" - ] + ], + "value" : "♊" }, "♋", { @@ -9299,13 +9299,13 @@ }, "♌", { - "value" : "♌", "keywords" : [ "horoscope", "Leo", "lion", "zodiac" - ] + ], + "value" : "♌" }, "♍", { @@ -9330,87 +9330,87 @@ }, "♏", { + "value" : "♏", "keywords" : [ "horoscope", "Scorpio", "scorpion", "Scorpius", "zodiac" - ], - "value" : "♏" + ] }, "♐", { - "value" : "♐", "keywords" : [ "archer", "horoscope", "Sagittarius", "zodiac" - ] + ], + "value" : "♐" }, "♑", { - "value" : "♑", "keywords" : [ "Capricorn", "goat", "horoscope", "zodiac" - ] + ], + "value" : "♑" }, "♒", { - "value" : "♒", "keywords" : [ "Aquarius", "bearer", "horoscope", "water", "zodiac" - ] + ], + "value" : "♒" }, "♓", { - "value" : "♓", "keywords" : [ "fish", "horoscope", "Pisces", "zodiac" - ] + ], + "value" : "♓" }, "⛎", { - "value" : "⛎", "keywords" : [ "bearer", "Ophiuchus", "serpent", "snake", "zodiac" - ] + ], + "value" : "⛎" }, "🔀", { - "value" : "🔀", "keywords" : [ "arrow", "button", "crossed", "shuffle", "tracks" - ] + ], + "value" : "🔀" }, "🔁", { - "value" : "🔁", "keywords" : [ "arrow", "button", "clockwise", "repeat" - ] + ], + "value" : "🔁" }, "🔂", { @@ -9426,14 +9426,14 @@ }, "▶️", { - "value" : "▶️", "keywords" : [ "arrow", "button", "play", "right", "triangle" - ] + ], + "value" : "▶️" }, "⏩", { @@ -9449,7 +9449,6 @@ }, "⏭️", { - "value" : "⏭️", "keywords" : [ "arrow", "button", @@ -9457,11 +9456,11 @@ "scene", "track", "triangle" - ] + ], + "value" : "⏭️" }, "⏯️", { - "value" : "⏯️", "keywords" : [ "arrow", "button", @@ -9469,18 +9468,19 @@ "play", "right", "triangle" - ] + ], + "value" : "⏯️" }, "◀️", { - "value" : "◀️", "keywords" : [ "arrow", "button", "left", "reverse", "triangle" - ] + ], + "value" : "◀️" }, "⏪", { @@ -9520,14 +9520,14 @@ }, "⏫", { - "value" : "⏫", "keywords" : [ "arrow", "button", "double", "fast", "up" - ] + ], + "value" : "⏫" }, "🔽", { @@ -9542,25 +9542,25 @@ }, "⏬", { - "value" : "⏬", "keywords" : [ "arrow", "button", "double", "down", "fast" - ] + ], + "value" : "⏬" }, "⏸️", { + "value" : "⏸️", "keywords" : [ "bar", "button", "double", "pause", "vertical" - ], - "value" : "⏸️" + ] }, "⏹️", { @@ -9582,11 +9582,11 @@ }, "⏏️", { - "value" : "⏏️", "keywords" : [ "button", "eject" - ] + ], + "value" : "⏏️" }, "🎦", { @@ -9610,13 +9610,13 @@ }, "🔆", { - "value" : "🔆", "keywords" : [ "bright", "brightness", "button", "light" - ] + ], + "value" : "🔆" }, "📶", { @@ -9635,6 +9635,7 @@ }, "🛜", { + "value" : "🛜", "keywords" : [ "broadband", "computer", @@ -9648,8 +9649,7 @@ "wifi", "wireless", "wlan" - ], - "value" : "🛜" + ] }, "📳", { @@ -9723,6 +9723,7 @@ }, "➖", { + "value" : "➖", "keywords" : [ "-", "−", @@ -9730,11 +9731,11 @@ "math", "minus", "sign" - ], - "value" : "➖" + ] }, "➗", { + "value" : "➗", "keywords" : [ "÷", "divide", @@ -9742,11 +9743,11 @@ "heavy", "math", "sign" - ], - "value" : "➗" + ] }, "🟰", { + "value" : "🟰", "keywords" : [ "answer", "equal", @@ -9755,8 +9756,7 @@ "heavy", "math", "sign" - ], - "value" : "🟰" + ] }, "♾️", { @@ -9770,7 +9770,6 @@ }, "‼️", { - "value" : "‼️", "keywords" : [ "!", "!!", @@ -9779,7 +9778,8 @@ "exclamation", "mark", "punctuation" - ] + ], + "value" : "‼️" }, "⁉️", { @@ -9843,22 +9843,22 @@ }, "〰️", { + "value" : "〰️", "keywords" : [ "dash", "punctuation", "wavy" - ], - "value" : "〰️" + ] }, "💱", { + "value" : "💱", "keywords" : [ "bank", "currency", "exchange", "money" - ], - "value" : "💱" + ] }, "💲", { @@ -9878,31 +9878,31 @@ }, "⚕️", { - "value" : "⚕️", "keywords" : [ "aesculapius", "medical", "medicine", "staff", "symbol" - ] + ], + "value" : "⚕️" }, "♻️", { - "value" : "♻️", "keywords" : [ "recycle", "recycling", "symbol" - ] + ], + "value" : "♻️" }, "⚜️", { - "value" : "⚜️", "keywords" : [ "fleur-de-lis", "knights" - ] + ], + "value" : "⚜️" }, "🔱", { @@ -9926,6 +9926,7 @@ }, "🔰", { + "value" : "🔰", "keywords" : [ "beginner", "chevron", @@ -9935,8 +9936,7 @@ "symbol", "tool", "yellow" - ], - "value" : "🔰" + ] }, "⭕", { @@ -9952,6 +9952,7 @@ }, "✅", { + "value" : "✅", "keywords" : [ "✓", "button", @@ -9964,11 +9965,11 @@ "fixed", "mark", "tick" - ], - "value" : "✅" + ] }, "☑️", { + "value" : "☑️", "keywords" : [ "✓", "ballot", @@ -9978,11 +9979,11 @@ "done", "off", "tick" - ], - "value" : "☑️" + ] }, "✔️", { + "value" : "✔️", "keywords" : [ "✓", "check", @@ -9992,8 +9993,7 @@ "heavy", "mark", "tick" - ], - "value" : "✔️" + ] }, "❌", { @@ -10033,13 +10033,13 @@ }, "➿", { - "value" : "➿", "keywords" : [ "curl", "curly", "double", "loop" - ] + ], + "value" : "➿" }, "〽️", { @@ -10052,45 +10052,45 @@ }, "✳️", { - "value" : "✳️", "keywords" : [ "*", "asterisk", "eight-spoked" - ] + ], + "value" : "✳️" }, "✴️", { - "value" : "✴️", "keywords" : [ "*", "eight-pointed", "star" - ] + ], + "value" : "✴️" }, "❇️", { - "value" : "❇️", "keywords" : [ "*", "sparkle" - ] + ], + "value" : "❇️" }, "©️", { - "value" : "©️", "keywords" : [ "C", "copyright" - ] + ], + "value" : "©️" }, "®️", { + "value" : "®️", "keywords" : [ "R", "registered" - ], - "value" : "®️" + ] }, "™️", { @@ -10112,19 +10112,19 @@ }, "*️⃣", { - "value" : "*️⃣", "keywords" : [ "keycap", "keycap: *" - ] + ], + "value" : "*️⃣" }, "0️⃣", { + "value" : "0️⃣", "keywords" : [ "keycap", "keycap: 0" - ], - "value" : "0️⃣" + ] }, "1️⃣", { @@ -10136,27 +10136,27 @@ }, "2️⃣", { + "value" : "2️⃣", "keywords" : [ "keycap", "keycap: 2" - ], - "value" : "2️⃣" + ] }, "3️⃣", { - "value" : "3️⃣", "keywords" : [ "keycap", "keycap: 3" - ] + ], + "value" : "3️⃣" }, "4️⃣", { - "value" : "4️⃣", "keywords" : [ "keycap", "keycap: 4" - ] + ], + "value" : "4️⃣" }, "5️⃣", { @@ -10168,19 +10168,19 @@ }, "6️⃣", { - "value" : "6️⃣", "keywords" : [ "keycap", "keycap: 6" - ] + ], + "value" : "6️⃣" }, "7️⃣", { - "value" : "7️⃣", "keywords" : [ "keycap", "keycap: 7" - ] + ], + "value" : "7️⃣" }, "8️⃣", { @@ -10192,53 +10192,54 @@ }, "9️⃣", { + "value" : "9️⃣", "keywords" : [ "keycap", "keycap: 9" - ], - "value" : "9️⃣" + ] }, "🔟", { + "value" : "🔟", "keywords" : [ "keycap", "keycap: 10" - ], - "value" : "🔟" + ] }, "🔠", { + "value" : "🔠", "keywords" : [ "ABCD", "input", "latin", "letters", "uppercase" - ], - "value" : "🔠" + ] }, "🔡", { - "value" : "🔡", "keywords" : [ "abcd", "input", "latin", "letters", "lowercase" - ] + ], + "value" : "🔡" }, "🔢", { + "value" : "🔢", "keywords" : [ "1234", "input", "numbers" - ], - "value" : "🔢" + ] }, "🔣", { + "value" : "🔣", "keywords" : [ "&", "%", @@ -10246,8 +10247,7 @@ "〒", "input", "symbols" - ], - "value" : "🔣" + ] }, "🔤", { @@ -10281,13 +10281,13 @@ }, "🅱️", { - "value" : "🅱️", "keywords" : [ "B", "blood", "button", "type" - ] + ], + "value" : "🅱️" }, "🆑", { @@ -10299,11 +10299,11 @@ }, "🆒", { - "value" : "🆒", "keywords" : [ "button", "COOL" - ] + ], + "value" : "🆒" }, "🆓", { @@ -10315,37 +10315,37 @@ }, "ℹ️", { - "value" : "ℹ️", "keywords" : [ "I", "information" - ] + ], + "value" : "ℹ️" }, "🆔", { - "value" : "🆔", "keywords" : [ "button", "ID", "identity" - ] + ], + "value" : "🆔" }, "Ⓜ️", { + "value" : "Ⓜ️", "keywords" : [ "circle", "circled", "M" - ], - "value" : "Ⓜ️" + ] }, "🆕", { - "value" : "🆕", "keywords" : [ "button", "NEW" - ] + ], + "value" : "🆕" }, "🆖", { @@ -10376,12 +10376,12 @@ }, "🅿️", { - "value" : "🅿️", "keywords" : [ "button", "P", "parking" - ] + ], + "value" : "🅿️" }, "🆘", { @@ -10423,14 +10423,14 @@ }, "🈂️", { + "value" : "🈂️", "keywords" : [ "button", "charge", "Japanese", "katakana", "service" - ], - "value" : "🈂️" + ] }, "🈷️", { @@ -10445,6 +10445,7 @@ }, "🈶", { + "value" : "🈶", "keywords" : [ "button", "charge", @@ -10452,38 +10453,37 @@ "ideograph", "Japanese", "not" - ], - "value" : "🈶" + ] }, "🈯", { + "value" : "🈯", "keywords" : [ "button", "ideograph", "Japanese", "reserved" - ], - "value" : "🈯" + ] }, "🉐", { - "value" : "🉐", "keywords" : [ "bargain", "button", "ideograph", "Japanese" - ] + ], + "value" : "🉐" }, "🈹", { + "value" : "🈹", "keywords" : [ "button", "discount", "ideograph", "Japanese" - ], - "value" : "🈹" + ] }, "🈚", { @@ -10498,13 +10498,13 @@ }, "🈲", { - "value" : "🈲", "keywords" : [ "button", "ideograph", "Japanese", "prohibited" - ] + ], + "value" : "🈲" }, "🉑", { @@ -10518,34 +10518,34 @@ }, "🈸", { - "value" : "🈸", "keywords" : [ "application", "button", "ideograph", "Japanese" - ] + ], + "value" : "🈸" }, "🈴", { + "value" : "🈴", "keywords" : [ "button", "grade", "ideograph", "Japanese", "passing" - ], - "value" : "🈴" + ] }, "🈳", { - "value" : "🈳", "keywords" : [ "button", "ideograph", "Japanese", "vacancy" - ] + ], + "value" : "🈳" }, "㊗️", { @@ -10569,14 +10569,14 @@ }, "🈺", { + "value" : "🈺", "keywords" : [ "business", "button", "ideograph", "Japanese", "open" - ], - "value" : "🈺" + ] }, "🈵", { @@ -10608,11 +10608,11 @@ }, "🟡", { - "value" : "🟡", "keywords" : [ "circle", "yellow" - ] + ], + "value" : "🟡" }, "🟢", { @@ -10633,11 +10633,11 @@ }, "🟣", { - "value" : "🟣", "keywords" : [ "circle", "purple" - ] + ], + "value" : "🟣" }, "🟤", { @@ -10649,12 +10649,12 @@ }, "⚫", { + "value" : "⚫", "keywords" : [ "black", "circle", "geometric" - ], - "value" : "⚫" + ] }, "⚪", { @@ -10667,13 +10667,13 @@ }, "🟥", { - "value" : "🟥", "keywords" : [ "card", "penalty", "red", "square" - ] + ], + "value" : "🟥" }, "🟧", { @@ -10685,13 +10685,13 @@ }, "🟨", { - "value" : "🟨", "keywords" : [ "card", "penalty", "square", "yellow" - ] + ], + "value" : "🟨" }, "🟩", { @@ -10703,27 +10703,27 @@ }, "🟦", { - "value" : "🟦", "keywords" : [ "blue", "square" - ] + ], + "value" : "🟦" }, "🟪", { - "value" : "🟪", "keywords" : [ "purple", "square" - ] + ], + "value" : "🟪" }, "🟫", { - "value" : "🟫", "keywords" : [ "brown", "square" - ] + ], + "value" : "🟫" }, "⬛", { @@ -10757,13 +10757,13 @@ }, "◻️", { - "value" : "◻️", "keywords" : [ "geometric", "medium", "square", "white" - ] + ], + "value" : "◻️" }, "◾", { @@ -10797,64 +10797,64 @@ }, "▫️", { - "value" : "▫️", "keywords" : [ "geometric", "small", "square", "white" - ] + ], + "value" : "▫️" }, "🔶", { + "value" : "🔶", "keywords" : [ "diamond", "geometric", "large", "orange" - ], - "value" : "🔶" + ] }, "🔷", { + "value" : "🔷", "keywords" : [ "blue", "diamond", "geometric", "large" - ], - "value" : "🔷" + ] }, "🔸", { + "value" : "🔸", "keywords" : [ "diamond", "geometric", "orange", "small" - ], - "value" : "🔸" + ] }, "🔹", { + "value" : "🔹", "keywords" : [ "blue", "diamond", "geometric", "small" - ], - "value" : "🔹" + ] }, "🔺", { - "value" : "🔺", "keywords" : [ "geometric", "pointed", "red", "triangle", "up" - ] + ], + "value" : "🔺" }, "🔻", { @@ -10869,33 +10869,33 @@ }, "💠", { + "value" : "💠", "keywords" : [ "comic", "diamond", "dot", "geometric" - ], - "value" : "💠" + ] }, "🔘", { + "value" : "🔘", "keywords" : [ "button", "geometric", "radio" - ], - "value" : "🔘" + ] }, "🔳", { + "value" : "🔳", "keywords" : [ "button", "geometric", "outlined", "square", "white" - ], - "value" : "🔳" + ] }, "🔲", { @@ -10911,7 +10911,6 @@ }, { "name" : "People & Body", - "appleCategory" : "Smileys & People", "emojis" : [ "👋", { @@ -10948,14 +10947,14 @@ }, "👋🏼", { - "value" : "👋🏼", "keywords" : [ "hand", "medium-light skin tone", "wave", "waving", "waving hand: medium-light skin tone" - ] + ], + "value" : "👋🏼" }, "👋🏽", { @@ -10970,14 +10969,14 @@ }, "👋🏾", { + "value" : "👋🏾", "keywords" : [ "hand", "medium-dark skin tone", "wave", "waving", "waving hand: medium-dark skin tone" - ], - "value" : "👋🏾" + ] }, "👋🏿", { @@ -11002,14 +11001,14 @@ }, "🤚🏻", { - "value" : "🤚🏻", "keywords" : [ "backhand", "light skin tone", "raised", "raised back of hand", "raised back of hand: light skin tone" - ] + ], + "value" : "🤚🏻" }, "🤚🏼", { @@ -11046,17 +11045,18 @@ }, "🤚🏿", { + "value" : "🤚🏿", "keywords" : [ "backhand", "dark skin tone", "raised", "raised back of hand", "raised back of hand: dark skin tone" - ], - "value" : "🤚🏿" + ] }, "🖐️", { + "value" : "🖐️", "keywords" : [ "finger", "fingers", @@ -11064,11 +11064,11 @@ "raised", "splayed", "stop" - ], - "value" : "🖐️" + ] }, "🖐🏻", { + "value" : "🖐🏻", "keywords" : [ "finger", "hand", @@ -11076,8 +11076,7 @@ "hand with fingers splayed: light skin tone", "light skin tone", "splayed" - ], - "value" : "🖐🏻" + ] }, "🖐🏼", { @@ -11093,7 +11092,6 @@ }, "🖐🏽", { - "value" : "🖐🏽", "keywords" : [ "finger", "hand", @@ -11101,10 +11099,12 @@ "hand with fingers splayed: medium skin tone", "medium skin tone", "splayed" - ] + ], + "value" : "🖐🏽" }, "🖐🏾", { + "value" : "🖐🏾", "keywords" : [ "finger", "hand", @@ -11112,8 +11112,7 @@ "hand with fingers splayed: medium-dark skin tone", "medium-dark skin tone", "splayed" - ], - "value" : "🖐🏾" + ] }, "🖐🏿", { @@ -11129,6 +11128,7 @@ }, "✋", { + "value" : "✋", "keywords" : [ "5", "five", @@ -11136,11 +11136,11 @@ "high", "raised", "stop" - ], - "value" : "✋" + ] }, "✋🏻", { + "value" : "✋🏻", "keywords" : [ "hand", "high 5", @@ -11148,12 +11148,10 @@ "light skin tone", "raised hand", "raised hand: light skin tone" - ], - "value" : "✋🏻" + ] }, "✋🏼", { - "value" : "✋🏼", "keywords" : [ "hand", "high 5", @@ -11161,11 +11159,11 @@ "medium-light skin tone", "raised hand", "raised hand: medium-light skin tone" - ] + ], + "value" : "✋🏼" }, "✋🏽", { - "value" : "✋🏽", "keywords" : [ "hand", "high 5", @@ -11173,7 +11171,8 @@ "medium skin tone", "raised hand", "raised hand: medium skin tone" - ] + ], + "value" : "✋🏽" }, "✋🏾", { @@ -11201,16 +11200,17 @@ }, "🖖", { + "value" : "🖖", "keywords" : [ "finger", "hand", "hands", "salute" - ], - "value" : "🖖" + ] }, "🖖🏻", { + "value" : "🖖🏻", "keywords" : [ "finger", "hand", @@ -11219,11 +11219,11 @@ "vulcan", "vulcan salute", "vulcan salute: light skin tone" - ], - "value" : "🖖🏻" + ] }, "🖖🏼", { + "value" : "🖖🏼", "keywords" : [ "finger", "hand", @@ -11232,8 +11232,7 @@ "vulcan", "vulcan salute", "vulcan salute: medium-light skin tone" - ], - "value" : "🖖🏼" + ] }, "🖖🏽", { @@ -11250,7 +11249,6 @@ }, "🖖🏾", { - "value" : "🖖🏾", "keywords" : [ "finger", "hand", @@ -11259,7 +11257,8 @@ "vulcan", "vulcan salute", "vulcan salute: medium-dark skin tone" - ] + ], + "value" : "🖖🏾" }, "🖖🏿", { @@ -11326,6 +11325,7 @@ }, "🫱🏾", { + "value" : "🫱🏾", "keywords" : [ "hand", "medium-dark skin tone", @@ -11333,12 +11333,10 @@ "rightward", "rightwards hand", "rightwards hand: medium-dark skin tone" - ], - "value" : "🫱🏾" + ] }, "🫱🏿", { - "value" : "🫱🏿", "keywords" : [ "dark skin tone", "hand", @@ -11346,7 +11344,8 @@ "rightward", "rightwards hand", "rightwards hand: dark skin tone" - ] + ], + "value" : "🫱🏿" }, "🫲", { @@ -11376,6 +11375,7 @@ }, "🫲🏼", { + "value" : "🫲🏼", "keywords" : [ "hand", "left", @@ -11383,12 +11383,10 @@ "leftwards hand", "leftwards hand: medium-light skin tone", "medium-light skin tone" - ], - "value" : "🫲🏼" + ] }, "🫲🏽", { - "value" : "🫲🏽", "keywords" : [ "hand", "left", @@ -11396,7 +11394,8 @@ "leftwards hand", "leftwards hand: medium skin tone", "medium skin tone" - ] + ], + "value" : "🫲🏽" }, "🫲🏾", { @@ -11439,6 +11438,7 @@ }, "🫳🏻", { + "value" : "🫳🏻", "keywords" : [ "dismiss", "drop", @@ -11446,8 +11446,7 @@ "palm down hand", "palm down hand: light skin tone", "shoo" - ], - "value" : "🫳🏻" + ] }, "🫳🏼", { @@ -11463,6 +11462,7 @@ }, "🫳🏽", { + "value" : "🫳🏽", "keywords" : [ "dismiss", "drop", @@ -11470,8 +11470,7 @@ "palm down hand", "palm down hand: medium skin tone", "shoo" - ], - "value" : "🫳🏽" + ] }, "🫳🏾", { @@ -11555,7 +11554,6 @@ }, "🫴🏾", { - "value" : "🫴🏾", "keywords" : [ "beckon", "catch", @@ -11564,10 +11562,12 @@ "offer", "palm up hand", "palm up hand: medium-dark skin tone" - ] + ], + "value" : "🫴🏾" }, "🫴🏿", { + "value" : "🫴🏿", "keywords" : [ "beckon", "catch", @@ -11576,11 +11576,11 @@ "offer", "palm up hand", "palm up hand: dark skin tone" - ], - "value" : "🫴🏿" + ] }, "🫷", { + "value" : "🫷", "keywords" : [ "block", "five", @@ -11597,11 +11597,11 @@ "slap", "stop", "wait" - ], - "value" : "🫷" + ] }, "🫷🏻", { + "value" : "🫷🏻", "keywords" : [ "high five", "leftward", @@ -11612,8 +11612,7 @@ "refuse", "stop", "wait" - ], - "value" : "🫷🏻" + ] }, "🫷🏼", { @@ -11632,6 +11631,7 @@ }, "🫷🏽", { + "value" : "🫷🏽", "keywords" : [ "high five", "leftward", @@ -11642,12 +11642,10 @@ "refuse", "stop", "wait" - ], - "value" : "🫷🏽" + ] }, "🫷🏾", { - "value" : "🫷🏾", "keywords" : [ "high five", "leftward", @@ -11658,11 +11656,11 @@ "refuse", "stop", "wait" - ] + ], + "value" : "🫷🏾" }, "🫷🏿", { - "value" : "🫷🏿", "keywords" : [ "dark skin tone", "high five", @@ -11673,7 +11671,8 @@ "refuse", "stop", "wait" - ] + ], + "value" : "🫷🏿" }, "🫸", { @@ -11698,7 +11697,6 @@ }, "🫸🏻", { - "value" : "🫸🏻", "keywords" : [ "high five", "light skin tone", @@ -11709,7 +11707,8 @@ "rightwards pushing hand: light skin tone", "stop", "wait" - ] + ], + "value" : "🫸🏻" }, "🫸🏼", { @@ -11743,7 +11742,6 @@ }, "🫸🏾", { - "value" : "🫸🏾", "keywords" : [ "high five", "medium-dark skin tone", @@ -11754,10 +11752,12 @@ "rightwards pushing hand: medium-dark skin tone", "stop", "wait" - ] + ], + "value" : "🫸🏾" }, "🫸🏿", { + "value" : "🫸🏿", "keywords" : [ "dark skin tone", "high five", @@ -11768,11 +11768,11 @@ "rightwards pushing hand: dark skin tone", "stop", "wait" - ], - "value" : "🫸🏿" + ] }, "👌", { + "value" : "👌", "keywords" : [ "awesome", "bet", @@ -11790,18 +11790,17 @@ "sure", "sweet", "three" - ], - "value" : "👌" + ] }, "👌🏻", { + "value" : "👌🏻", "keywords" : [ "hand", "light skin tone", "OK", "OK hand: light skin tone" - ], - "value" : "👌🏻" + ] }, "👌🏼", { @@ -11845,6 +11844,7 @@ }, "🤌", { + "value" : "🤌", "keywords" : [ "fingers", "gesture", @@ -11859,8 +11859,7 @@ "ugh", "what", "zip" - ], - "value" : "🤌" + ] }, "🤌🏻", { @@ -11916,6 +11915,7 @@ }, "🤌🏿", { + "value" : "🤌🏿", "keywords" : [ "dark skin tone", "fingers", @@ -11924,8 +11924,7 @@ "pinched", "pinched fingers: dark skin tone", "sarcastic" - ], - "value" : "🤌🏿" + ] }, "🤏", { @@ -12003,14 +12002,14 @@ }, "✌🏻", { - "value" : "✌🏻", "keywords" : [ "hand", "light skin tone", "v", "victory", "victory hand: light skin tone" - ] + ], + "value" : "✌🏻" }, "✌🏼", { @@ -12025,14 +12024,14 @@ }, "✌🏽", { + "value" : "✌🏽", "keywords" : [ "hand", "medium skin tone", "v", "victory", "victory hand: medium skin tone" - ], - "value" : "✌🏽" + ] }, "✌🏾", { @@ -12047,17 +12046,18 @@ }, "✌🏿", { + "value" : "✌🏿", "keywords" : [ "dark skin tone", "hand", "v", "victory", "victory hand: dark skin tone" - ], - "value" : "✌🏿" + ] }, "🤞", { + "value" : "🤞", "keywords" : [ "cross", "crossed", @@ -12065,11 +12065,11 @@ "fingers", "hand", "luck" - ], - "value" : "🤞" + ] }, "🤞🏻", { + "value" : "🤞🏻", "keywords" : [ "cross", "crossed fingers", @@ -12078,12 +12078,10 @@ "hand", "light skin tone", "luck" - ], - "value" : "🤞🏻" + ] }, "🤞🏼", { - "value" : "🤞🏼", "keywords" : [ "cross", "crossed fingers", @@ -12092,11 +12090,11 @@ "hand", "luck", "medium-light skin tone" - ] + ], + "value" : "🤞🏼" }, "🤞🏽", { - "value" : "🤞🏽", "keywords" : [ "cross", "crossed fingers", @@ -12105,10 +12103,12 @@ "hand", "luck", "medium skin tone" - ] + ], + "value" : "🤞🏽" }, "🤞🏾", { + "value" : "🤞🏾", "keywords" : [ "cross", "crossed fingers", @@ -12117,11 +12117,11 @@ "hand", "luck", "medium-dark skin tone" - ], - "value" : "🤞🏾" + ] }, "🤞🏿", { + "value" : "🤞🏿", "keywords" : [ "cross", "crossed fingers", @@ -12130,12 +12130,10 @@ "finger", "hand", "luck" - ], - "value" : "🤞🏿" + ] }, "🫰", { - "value" : "🫰", "keywords" : [ "<3", "crossed", @@ -12148,7 +12146,8 @@ "money", "snap", "thumb" - ] + ], + "value" : "🫰" }, "🫰🏻", { @@ -12208,7 +12207,6 @@ }, "🫰🏿", { - "value" : "🫰🏿", "keywords" : [ "dark skin tone", "expensive", @@ -12218,11 +12216,11 @@ "love", "money", "snap" - ] + ], + "value" : "🫰🏿" }, "🤟", { - "value" : "🤟", "keywords" : [ "fingers", "gesture", @@ -12232,18 +12230,19 @@ "love-you", "three", "you" - ] + ], + "value" : "🤟" }, "🤟🏻", { - "value" : "🤟🏻", "keywords" : [ "hand", "ILY", "light skin tone", "love-you gesture", "love-you gesture: light skin tone" - ] + ], + "value" : "🤟🏻" }, "🤟🏼", { @@ -12258,14 +12257,14 @@ }, "🤟🏽", { - "value" : "🤟🏽", "keywords" : [ "hand", "ILY", "love-you gesture", "love-you gesture: medium skin tone", "medium skin tone" - ] + ], + "value" : "🤟🏽" }, "🤟🏾", { @@ -12291,18 +12290,17 @@ }, "🤘", { - "value" : "🤘", "keywords" : [ "finger", "hand", "horns", "rock-on", "sign" - ] + ], + "value" : "🤘" }, "🤘🏻", { - "value" : "🤘🏻", "keywords" : [ "finger", "hand", @@ -12311,7 +12309,8 @@ "rock-on", "sign of the horns", "sign of the horns: light skin tone" - ] + ], + "value" : "🤘🏻" }, "🤘🏼", { @@ -12367,7 +12366,6 @@ }, "🤙", { - "value" : "🤙", "keywords" : [ "call", "hand", @@ -12375,7 +12373,8 @@ "loose", "me", "Shaka" - ] + ], + "value" : "🤙" }, "🤙🏻", { @@ -12418,6 +12417,7 @@ }, "🤙🏾", { + "value" : "🤙🏾", "keywords" : [ "call", "call me hand", @@ -12426,8 +12426,7 @@ "hang loose", "medium-dark skin tone", "Shaka" - ], - "value" : "🤙🏾" + ] }, "🤙🏿", { @@ -12485,6 +12484,7 @@ }, "👈🏽", { + "value" : "👈🏽", "keywords" : [ "backhand", "backhand index pointing left", @@ -12494,8 +12494,7 @@ "index", "medium skin tone", "point" - ], - "value" : "👈🏽" + ] }, "👈🏾", { @@ -12513,7 +12512,6 @@ }, "👈🏿", { - "value" : "👈🏿", "keywords" : [ "backhand", "backhand index pointing left", @@ -12523,10 +12521,12 @@ "hand", "index", "point" - ] + ], + "value" : "👈🏿" }, "👉", { + "value" : "👉", "keywords" : [ "backhand", "finger", @@ -12535,8 +12535,7 @@ "point", "pointing", "right" - ], - "value" : "👉" + ] }, "👉🏻", { @@ -12554,6 +12553,7 @@ }, "👉🏼", { + "value" : "👉🏼", "keywords" : [ "backhand", "backhand index pointing right", @@ -12563,12 +12563,10 @@ "index", "medium-light skin tone", "point" - ], - "value" : "👉🏼" + ] }, "👉🏽", { - "value" : "👉🏽", "keywords" : [ "backhand", "backhand index pointing right", @@ -12578,10 +12576,12 @@ "index", "medium skin tone", "point" - ] + ], + "value" : "👉🏽" }, "👉🏾", { + "value" : "👉🏾", "keywords" : [ "backhand", "backhand index pointing right", @@ -12591,12 +12591,10 @@ "index", "medium-dark skin tone", "point" - ], - "value" : "👉🏾" + ] }, "👉🏿", { - "value" : "👉🏿", "keywords" : [ "backhand", "backhand index pointing right", @@ -12606,7 +12604,8 @@ "hand", "index", "point" - ] + ], + "value" : "👉🏿" }, "👆", { @@ -12637,7 +12636,6 @@ }, "👆🏼", { - "value" : "👆🏼", "keywords" : [ "backhand", "backhand index pointing up", @@ -12647,10 +12645,12 @@ "medium-light skin tone", "point", "up" - ] + ], + "value" : "👆🏼" }, "👆🏽", { + "value" : "👆🏽", "keywords" : [ "backhand", "backhand index pointing up", @@ -12660,8 +12660,7 @@ "medium skin tone", "point", "up" - ], - "value" : "👆🏽" + ] }, "👆🏾", { @@ -12770,7 +12769,6 @@ }, "👇🏻", { - "value" : "👇🏻", "keywords" : [ "backhand", "backhand index pointing down", @@ -12780,11 +12778,11 @@ "hand", "light skin tone", "point" - ] + ], + "value" : "👇🏻" }, "👇🏼", { - "value" : "👇🏼", "keywords" : [ "backhand", "backhand index pointing down", @@ -12794,10 +12792,12 @@ "hand", "medium-light skin tone", "point" - ] + ], + "value" : "👇🏼" }, "👇🏽", { + "value" : "👇🏽", "keywords" : [ "backhand", "backhand index pointing down", @@ -12807,8 +12807,7 @@ "hand", "medium skin tone", "point" - ], - "value" : "👇🏽" + ] }, "👇🏾", { @@ -12826,6 +12825,7 @@ }, "👇🏿", { + "value" : "👇🏿", "keywords" : [ "backhand", "backhand index pointing down", @@ -12835,12 +12835,10 @@ "finger", "hand", "point" - ], - "value" : "👇🏿" + ] }, "☝️", { - "value" : "☝️", "keywords" : [ "finger", "hand", @@ -12849,7 +12847,8 @@ "pointing", "this", "up" - ] + ], + "value" : "☝️" }, "☝🏻", { @@ -12923,7 +12922,6 @@ }, "🫵", { - "value" : "🫵", "keywords" : [ "at", "finger", @@ -12933,51 +12931,52 @@ "poke", "viewer", "you" - ] + ], + "value" : "🫵" }, "🫵🏻", { - "value" : "🫵🏻", "keywords" : [ "index pointing at the viewer", "index pointing at the viewer: light skin tone", "light skin tone", "point", "you" - ] + ], + "value" : "🫵🏻" }, "🫵🏼", { - "value" : "🫵🏼", "keywords" : [ "index pointing at the viewer", "index pointing at the viewer: medium-light skin tone", "medium-light skin tone", "point", "you" - ] + ], + "value" : "🫵🏼" }, "🫵🏽", { + "value" : "🫵🏽", "keywords" : [ "index pointing at the viewer", "index pointing at the viewer: medium skin tone", "medium skin tone", "point", "you" - ], - "value" : "🫵🏽" + ] }, "🫵🏾", { - "value" : "🫵🏾", "keywords" : [ "index pointing at the viewer", "index pointing at the viewer: medium-dark skin tone", "medium-dark skin tone", "point", "you" - ] + ], + "value" : "🫵🏾" }, "🫵🏿", { @@ -12992,6 +12991,7 @@ }, "👍", { + "value" : "👍", "keywords" : [ "+1", "good", @@ -13000,8 +13000,7 @@ "thumb", "up", "yes" - ], - "value" : "👍" + ] }, "👍🏻", { @@ -13018,7 +13017,6 @@ }, "👍🏼", { - "value" : "👍🏼", "keywords" : [ "+1", "hand", @@ -13027,10 +13025,12 @@ "thumbs up", "thumbs up: medium-light skin tone", "up" - ] + ], + "value" : "👍🏼" }, "👍🏽", { + "value" : "👍🏽", "keywords" : [ "+1", "hand", @@ -13039,8 +13039,7 @@ "thumbs up", "thumbs up: medium skin tone", "up" - ], - "value" : "👍🏽" + ] }, "👍🏾", { @@ -13057,7 +13056,6 @@ }, "👍🏿", { - "value" : "👍🏿", "keywords" : [ "+1", "dark skin tone", @@ -13066,10 +13064,12 @@ "thumbs up", "thumbs up: dark skin tone", "up" - ] + ], + "value" : "👍🏿" }, "👎", { + "value" : "👎", "keywords" : [ "-1", "bad", @@ -13081,8 +13081,7 @@ "nope", "thumb", "thumbs" - ], - "value" : "👎" + ] }, "👎🏻", { @@ -13099,7 +13098,6 @@ }, "👎🏼", { - "value" : "👎🏼", "keywords" : [ "-1", "down", @@ -13108,7 +13106,8 @@ "thumb", "thumbs down", "thumbs down: medium-light skin tone" - ] + ], + "value" : "👎🏼" }, "👎🏽", { @@ -13138,6 +13137,7 @@ }, "👎🏿", { + "value" : "👎🏿", "keywords" : [ "-1", "dark skin tone", @@ -13146,11 +13146,11 @@ "thumb", "thumbs down", "thumbs down: dark skin tone" - ], - "value" : "👎🏿" + ] }, "✊", { + "value" : "✊", "keywords" : [ "clenched", "fist", @@ -13158,11 +13158,11 @@ "punch", "raised", "solidarity" - ], - "value" : "✊" + ] }, "✊🏻", { + "value" : "✊🏻", "keywords" : [ "clenched", "fist", @@ -13171,12 +13171,10 @@ "punch", "raised fist", "raised fist: light skin tone" - ], - "value" : "✊🏻" + ] }, "✊🏼", { - "value" : "✊🏼", "keywords" : [ "clenched", "fist", @@ -13185,11 +13183,11 @@ "punch", "raised fist", "raised fist: medium-light skin tone" - ] + ], + "value" : "✊🏼" }, "✊🏽", { - "value" : "✊🏽", "keywords" : [ "clenched", "fist", @@ -13198,7 +13196,8 @@ "punch", "raised fist", "raised fist: medium skin tone" - ] + ], + "value" : "✊🏽" }, "✊🏾", { @@ -13228,6 +13227,7 @@ }, "👊", { + "value" : "👊", "keywords" : [ "absolutely", "agree", @@ -13245,8 +13245,7 @@ "punch", "rock", "ttyl" - ], - "value" : "👊" + ] }, "👊🏻", { @@ -13263,7 +13262,6 @@ }, "👊🏼", { - "value" : "👊🏼", "keywords" : [ "clenched", "fist", @@ -13272,11 +13270,11 @@ "oncoming fist", "oncoming fist: medium-light skin tone", "punch" - ] + ], + "value" : "👊🏼" }, "👊🏽", { - "value" : "👊🏽", "keywords" : [ "clenched", "fist", @@ -13285,10 +13283,12 @@ "oncoming fist", "oncoming fist: medium skin tone", "punch" - ] + ], + "value" : "👊🏽" }, "👊🏾", { + "value" : "👊🏾", "keywords" : [ "clenched", "fist", @@ -13297,8 +13297,7 @@ "oncoming fist", "oncoming fist: medium-dark skin tone", "punch" - ], - "value" : "👊🏾" + ] }, "👊🏿", { @@ -13315,23 +13314,23 @@ }, "🤛", { + "value" : "🤛", "keywords" : [ "fist", "left-facing", "leftwards" - ], - "value" : "🤛" + ] }, "🤛🏻", { - "value" : "🤛🏻", "keywords" : [ "fist", "left-facing fist", "left-facing fist: light skin tone", "leftwards", "light skin tone" - ] + ], + "value" : "🤛🏻" }, "🤛🏼", { @@ -13346,25 +13345,25 @@ }, "🤛🏽", { - "value" : "🤛🏽", "keywords" : [ "fist", "left-facing fist", "left-facing fist: medium skin tone", "leftwards", "medium skin tone" - ] + ], + "value" : "🤛🏽" }, "🤛🏾", { + "value" : "🤛🏾", "keywords" : [ "fist", "left-facing fist", "left-facing fist: medium-dark skin tone", "leftwards", "medium-dark skin tone" - ], - "value" : "🤛🏾" + ] }, "🤛🏿", { @@ -13388,14 +13387,14 @@ }, "🤜🏻", { + "value" : "🤜🏻", "keywords" : [ "fist", "light skin tone", "right-facing fist", "right-facing fist: light skin tone", "rightwards" - ], - "value" : "🤜🏻" + ] }, "🤜🏼", { @@ -13421,14 +13420,14 @@ }, "🤜🏾", { + "value" : "🤜🏾", "keywords" : [ "fist", "medium-dark skin tone", "right-facing fist", "right-facing fist: medium-dark skin tone", "rightwards" - ], - "value" : "🤜🏾" + ] }, "🤜🏿", { @@ -13443,7 +13442,6 @@ }, "👏", { - "value" : "👏", "keywords" : [ "applause", "approval", @@ -13461,7 +13459,8 @@ "prayed", "well", "yay" - ] + ], + "value" : "👏" }, "👏🏻", { @@ -13487,36 +13486,36 @@ }, "👏🏽", { + "value" : "👏🏽", "keywords" : [ "clap", "clapping hands", "clapping hands: medium skin tone", "hand", "medium skin tone" - ], - "value" : "👏🏽" + ] }, "👏🏾", { - "value" : "👏🏾", "keywords" : [ "clap", "clapping hands", "clapping hands: medium-dark skin tone", "hand", "medium-dark skin tone" - ] + ], + "value" : "👏🏾" }, "👏🏿", { - "value" : "👏🏿", "keywords" : [ "clap", "clapping hands", "clapping hands: dark skin tone", "dark skin tone", "hand" - ] + ], + "value" : "👏🏿" }, "🙌", { @@ -13534,7 +13533,6 @@ }, "🙌🏻", { - "value" : "🙌🏻", "keywords" : [ "celebration", "gesture", @@ -13544,7 +13542,8 @@ "raised", "raising hands", "raising hands: light skin tone" - ] + ], + "value" : "🙌🏻" }, "🙌🏼", { @@ -13576,7 +13575,6 @@ }, "🙌🏾", { - "value" : "🙌🏾", "keywords" : [ "celebration", "gesture", @@ -13586,7 +13584,8 @@ "raised", "raising hands", "raising hands: medium-dark skin tone" - ] + ], + "value" : "🙌🏾" }, "🙌🏿", { @@ -13615,13 +13614,13 @@ }, "🫶🏻", { - "value" : "🫶🏻", "keywords" : [ "heart hands", "heart hands: light skin tone", "light skin tone", "love" - ] + ], + "value" : "🫶🏻" }, "🫶🏼", { @@ -13645,13 +13644,13 @@ }, "🫶🏾", { - "value" : "🫶🏾", "keywords" : [ "heart hands", "heart hands: medium-dark skin tone", "love", "medium-dark skin tone" - ] + ], + "value" : "🫶🏾" }, "🫶🏿", { @@ -13677,14 +13676,14 @@ }, "👐🏻", { - "value" : "👐🏻", "keywords" : [ "hand", "light skin tone", "open", "open hands", "open hands: light skin tone" - ] + ], + "value" : "👐🏻" }, "👐🏼", { @@ -13721,14 +13720,14 @@ }, "👐🏿", { + "value" : "👐🏿", "keywords" : [ "dark skin tone", "hand", "open", "open hands", "open hands: dark skin tone" - ], - "value" : "👐🏿" + ] }, "🤲", { @@ -13757,23 +13756,23 @@ }, "🤲🏼", { - "value" : "🤲🏼", "keywords" : [ "medium-light skin tone", "palms up together", "palms up together: medium-light skin tone", "prayer" - ] + ], + "value" : "🤲🏼" }, "🤲🏽", { - "value" : "🤲🏽", "keywords" : [ "medium skin tone", "palms up together", "palms up together: medium skin tone", "prayer" - ] + ], + "value" : "🤲🏽" }, "🤲🏾", { @@ -13797,7 +13796,6 @@ }, "🤝", { - "value" : "🤝", "keywords" : [ "agreement", "deal", @@ -13805,11 +13803,11 @@ "handshake", "meeting", "shake" - ] + ], + "value" : "🤝" }, "🤝🏻", { - "value" : "🤝🏻", "keywords" : [ "agreement", "hand", @@ -13818,7 +13816,8 @@ "light skin tone", "meeting", "shake" - ] + ], + "value" : "🤝🏻" }, "🤝🏼", { @@ -13835,6 +13834,7 @@ }, "🤝🏽", { + "value" : "🤝🏽", "keywords" : [ "agreement", "hand", @@ -13843,12 +13843,10 @@ "medium skin tone", "meeting", "shake" - ], - "value" : "🤝🏽" + ] }, "🤝🏾", { - "value" : "🤝🏾", "keywords" : [ "agreement", "hand", @@ -13857,7 +13855,8 @@ "medium-dark skin tone", "meeting", "shake" - ] + ], + "value" : "🤝🏾" }, "🤝🏿", { @@ -13888,6 +13887,7 @@ }, "🫱🏻‍🫲🏽", { + "value" : "🫱🏻‍🫲🏽", "keywords" : [ "agreement", "hand", @@ -13897,8 +13897,7 @@ "medium skin tone", "meeting", "shake" - ], - "value" : "🫱🏻‍🫲🏽" + ] }, "🫱🏻‍🫲🏾", { @@ -13916,6 +13915,7 @@ }, "🫱🏻‍🫲🏿", { + "value" : "🫱🏻‍🫲🏿", "keywords" : [ "agreement", "dark skin tone", @@ -13925,12 +13925,10 @@ "light skin tone", "meeting", "shake" - ], - "value" : "🫱🏻‍🫲🏿" + ] }, "🫱🏼‍🫲🏻", { - "value" : "🫱🏼‍🫲🏻", "keywords" : [ "agreement", "hand", @@ -13940,11 +13938,11 @@ "medium-light skin tone", "meeting", "shake" - ] + ], + "value" : "🫱🏼‍🫲🏻" }, "🫱🏼‍🫲🏽", { - "value" : "🫱🏼‍🫲🏽", "keywords" : [ "agreement", "hand", @@ -13954,7 +13952,8 @@ "medium-light skin tone", "meeting", "shake" - ] + ], + "value" : "🫱🏼‍🫲🏽" }, "🫱🏼‍🫲🏾", { @@ -13972,6 +13971,7 @@ }, "🫱🏼‍🫲🏿", { + "value" : "🫱🏼‍🫲🏿", "keywords" : [ "agreement", "dark skin tone", @@ -13981,11 +13981,11 @@ "medium-light skin tone", "meeting", "shake" - ], - "value" : "🫱🏼‍🫲🏿" + ] }, "🫱🏽‍🫲🏻", { + "value" : "🫱🏽‍🫲🏻", "keywords" : [ "agreement", "hand", @@ -13995,8 +13995,7 @@ "medium skin tone", "meeting", "shake" - ], - "value" : "🫱🏽‍🫲🏻" + ] }, "🫱🏽‍🫲🏼", { @@ -14014,6 +14013,7 @@ }, "🫱🏽‍🫲🏾", { + "value" : "🫱🏽‍🫲🏾", "keywords" : [ "agreement", "hand", @@ -14023,8 +14023,7 @@ "medium-dark skin tone", "meeting", "shake" - ], - "value" : "🫱🏽‍🫲🏾" + ] }, "🫱🏽‍🫲🏿", { @@ -14056,6 +14055,7 @@ }, "🫱🏾‍🫲🏼", { + "value" : "🫱🏾‍🫲🏼", "keywords" : [ "agreement", "hand", @@ -14065,12 +14065,10 @@ "medium-light skin tone", "meeting", "shake" - ], - "value" : "🫱🏾‍🫲🏼" + ] }, "🫱🏾‍🫲🏽", { - "value" : "🫱🏾‍🫲🏽", "keywords" : [ "agreement", "hand", @@ -14080,10 +14078,12 @@ "medium-dark skin tone", "meeting", "shake" - ] + ], + "value" : "🫱🏾‍🫲🏽" }, "🫱🏾‍🫲🏿", { + "value" : "🫱🏾‍🫲🏿", "keywords" : [ "agreement", "dark skin tone", @@ -14093,8 +14093,7 @@ "medium-dark skin tone", "meeting", "shake" - ], - "value" : "🫱🏾‍🫲🏿" + ] }, "🫱🏿‍🫲🏻", { @@ -14112,7 +14111,6 @@ }, "🫱🏿‍🫲🏼", { - "value" : "🫱🏿‍🫲🏼", "keywords" : [ "agreement", "dark skin tone", @@ -14122,11 +14120,11 @@ "medium-light skin tone", "meeting", "shake" - ] + ], + "value" : "🫱🏿‍🫲🏼" }, "🫱🏿‍🫲🏽", { - "value" : "🫱🏿‍🫲🏽", "keywords" : [ "agreement", "dark skin tone", @@ -14136,7 +14134,8 @@ "medium skin tone", "meeting", "shake" - ] + ], + "value" : "🫱🏿‍🫲🏽" }, "🫱🏿‍🫲🏾", { @@ -14154,6 +14153,7 @@ }, "🙏", { + "value" : "🙏", "keywords" : [ "appreciate", "ask", @@ -14170,12 +14170,10 @@ "pray", "thanks", "thx" - ], - "value" : "🙏" + ] }, "🙏🏻", { - "value" : "🙏🏻", "keywords" : [ "ask", "folded hands", @@ -14187,7 +14185,8 @@ "please", "pray", "thanks" - ] + ], + "value" : "🙏🏻" }, "🙏🏼", { @@ -14207,6 +14206,7 @@ }, "🙏🏽", { + "value" : "🙏🏽", "keywords" : [ "ask", "folded hands", @@ -14218,8 +14218,7 @@ "please", "pray", "thanks" - ], - "value" : "🙏🏽" + ] }, "🙏🏾", { @@ -14239,6 +14238,7 @@ }, "🙏🏿", { + "value" : "🙏🏿", "keywords" : [ "ask", "dark skin tone", @@ -14250,17 +14250,16 @@ "please", "pray", "thanks" - ], - "value" : "🙏🏿" + ] }, "✍️", { - "value" : "✍️", "keywords" : [ "hand", "write", "writing" - ] + ], + "value" : "✍️" }, "✍🏻", { @@ -14286,25 +14285,25 @@ }, "✍🏽", { - "value" : "✍🏽", "keywords" : [ "hand", "medium skin tone", "write", "writing hand", "writing hand: medium skin tone" - ] + ], + "value" : "✍🏽" }, "✍🏾", { + "value" : "✍🏾", "keywords" : [ "hand", "medium-dark skin tone", "write", "writing hand", "writing hand: medium-dark skin tone" - ], - "value" : "✍🏾" + ] }, "✍🏿", { @@ -14347,7 +14346,6 @@ }, "💅🏼", { - "value" : "💅🏼", "keywords" : [ "care", "cosmetics", @@ -14356,7 +14354,8 @@ "nail", "nail polish: medium-light skin tone", "polish" - ] + ], + "value" : "💅🏼" }, "💅🏽", { @@ -14373,6 +14372,7 @@ }, "💅🏾", { + "value" : "💅🏾", "keywords" : [ "care", "cosmetics", @@ -14381,8 +14381,7 @@ "nail", "nail polish: medium-dark skin tone", "polish" - ], - "value" : "💅🏾" + ] }, "💅🏿", { @@ -14408,14 +14407,14 @@ }, "🤳🏻", { + "value" : "🤳🏻", "keywords" : [ "camera", "light skin tone", "phone", "selfie", "selfie: light skin tone" - ], - "value" : "🤳🏻" + ] }, "🤳🏼", { @@ -14430,14 +14429,14 @@ }, "🤳🏽", { - "value" : "🤳🏽", "keywords" : [ "camera", "medium skin tone", "phone", "selfie", "selfie: medium skin tone" - ] + ], + "value" : "🤳🏽" }, "🤳🏾", { @@ -14498,7 +14497,6 @@ }, "💪🏼", { - "value" : "💪🏼", "keywords" : [ "biceps", "comic", @@ -14507,10 +14505,12 @@ "flexed biceps: medium-light skin tone", "medium-light skin tone", "muscle" - ] + ], + "value" : "💪🏼" }, "💪🏽", { + "value" : "💪🏽", "keywords" : [ "biceps", "comic", @@ -14519,8 +14519,7 @@ "flexed biceps: medium skin tone", "medium skin tone", "muscle" - ], - "value" : "💪🏽" + ] }, "💪🏾", { @@ -14537,6 +14536,7 @@ }, "💪🏿", { + "value" : "💪🏿", "keywords" : [ "biceps", "comic", @@ -14545,8 +14545,7 @@ "flexed biceps", "flexed biceps: dark skin tone", "muscle" - ], - "value" : "💪🏿" + ] }, "🦾", { @@ -14560,17 +14559,16 @@ }, "🦿", { - "value" : "🦿", "keywords" : [ "accessibility", "leg", "mechanical", "prosthetic" - ] + ], + "value" : "🦿" }, "🦵", { - "value" : "🦵", "keywords" : [ "bent", "foot", @@ -14578,7 +14576,8 @@ "knee", "leg", "limb" - ] + ], + "value" : "🦵" }, "🦵🏻", { @@ -14593,14 +14592,14 @@ }, "🦵🏼", { + "value" : "🦵🏼", "keywords" : [ "kick", "leg", "leg: medium-light skin tone", "limb", "medium-light skin tone" - ], - "value" : "🦵🏼" + ] }, "🦵🏽", { @@ -14615,25 +14614,25 @@ }, "🦵🏾", { + "value" : "🦵🏾", "keywords" : [ "kick", "leg", "leg: medium-dark skin tone", "limb", "medium-dark skin tone" - ], - "value" : "🦵🏾" + ] }, "🦵🏿", { + "value" : "🦵🏿", "keywords" : [ "dark skin tone", "kick", "leg", "leg: dark skin tone", "limb" - ], - "value" : "🦵🏿" + ] }, "🦶", { @@ -14681,28 +14680,29 @@ }, "🦶🏾", { + "value" : "🦶🏾", "keywords" : [ "foot", "foot: medium-dark skin tone", "kick", "medium-dark skin tone", "stomp" - ], - "value" : "🦶🏾" + ] }, "🦶🏿", { - "value" : "🦶🏿", "keywords" : [ "dark skin tone", "foot", "foot: dark skin tone", "kick", "stomp" - ] + ], + "value" : "🦶🏿" }, "👂", { + "value" : "👂", "keywords" : [ "body", "ear", @@ -14712,8 +14712,7 @@ "listen", "listening", "sound" - ], - "value" : "👂" + ] }, "👂🏻", { @@ -14767,14 +14766,14 @@ }, "🦻", { + "value" : "🦻", "keywords" : [ "accessibility", "aid", "ear", "hard", "hearing" - ], - "value" : "🦻" + ] }, "🦻🏻", { @@ -14789,14 +14788,14 @@ }, "🦻🏼", { - "value" : "🦻🏼", "keywords" : [ "accessibility", "ear with hearing aid", "ear with hearing aid: medium-light skin tone", "hard of hearing", "medium-light skin tone" - ] + ], + "value" : "🦻🏼" }, "🦻🏽", { @@ -14822,14 +14821,14 @@ }, "🦻🏿", { + "value" : "🦻🏿", "keywords" : [ "accessibility", "dark skin tone", "ear with hearing aid", "ear with hearing aid: dark skin tone", "hard of hearing" - ], - "value" : "🦻🏿" + ] }, "👃", { @@ -14886,26 +14885,25 @@ }, "👃🏿", { + "value" : "👃🏿", "keywords" : [ "body", "dark skin tone", "nose", "nose: dark skin tone" - ], - "value" : "👃🏿" + ] }, "🧠", { - "value" : "🧠", "keywords" : [ "brain", "intelligent", "smart" - ] + ], + "value" : "🧠" }, "🫀", { - "value" : "🫀", "keywords" : [ "anatomical", "beat", @@ -14916,10 +14914,12 @@ "pulse", "real", "red" - ] + ], + "value" : "🫀" }, "🫁", { + "value" : "🫁", "keywords" : [ "breath", "breathe", @@ -14929,34 +14929,32 @@ "lungs", "organ", "respiration" - ], - "value" : "🫁" + ] }, "🦷", { - "value" : "🦷", "keywords" : [ "dentist", "pearly", "teeth", "tooth", "white" - ] + ], + "value" : "🦷" }, "🦴", { + "value" : "🦴", "keywords" : [ "bone", "bones", "dog", "skeleton", "wishbone" - ], - "value" : "🦴" + ] }, "👀", { - "value" : "👀", "keywords" : [ "body", "eye", @@ -14969,7 +14967,8 @@ "peep", "see", "seeing" - ] + ], + "value" : "👀" }, "👁️", { @@ -15040,23 +15039,23 @@ }, "👶🏻", { - "value" : "👶🏻", "keywords" : [ "baby", "baby: light skin tone", "light skin tone", "young" - ] + ], + "value" : "👶🏻" }, "👶🏼", { + "value" : "👶🏼", "keywords" : [ "baby", "baby: medium-light skin tone", "medium-light skin tone", "young" - ], - "value" : "👶🏼" + ] }, "👶🏽", { @@ -15090,7 +15089,6 @@ }, "🧒", { - "value" : "🧒", "keywords" : [ "bright-eyed", "child", @@ -15098,7 +15096,8 @@ "kid", "young", "younger" - ] + ], + "value" : "🧒" }, "🧒🏻", { @@ -15114,7 +15113,6 @@ }, "🧒🏼", { - "value" : "🧒🏼", "keywords" : [ "child", "child: medium-light skin tone", @@ -15122,7 +15120,8 @@ "medium-light skin tone", "unspecified gender", "young" - ] + ], + "value" : "🧒🏼" }, "🧒🏽", { @@ -15162,7 +15161,6 @@ }, "👦", { - "value" : "👦", "keywords" : [ "boy", "bright-eyed", @@ -15172,60 +15170,62 @@ "son", "young", "younger" - ] + ], + "value" : "👦" }, "👦🏻", { + "value" : "👦🏻", "keywords" : [ "boy", "boy: light skin tone", "light skin tone", "young" - ], - "value" : "👦🏻" + ] }, "👦🏼", { - "value" : "👦🏼", "keywords" : [ "boy", "boy: medium-light skin tone", "medium-light skin tone", "young" - ] + ], + "value" : "👦🏼" }, "👦🏽", { - "value" : "👦🏽", "keywords" : [ "boy", "boy: medium skin tone", "medium skin tone", "young" - ] + ], + "value" : "👦🏽" }, "👦🏾", { - "value" : "👦🏾", "keywords" : [ "boy", "boy: medium-dark skin tone", "medium-dark skin tone", "young" - ] + ], + "value" : "👦🏾" }, "👦🏿", { - "value" : "👦🏿", "keywords" : [ "boy", "boy: dark skin tone", "dark skin tone", "young" - ] + ], + "value" : "👦🏿" }, "👧", { + "value" : "👧", "keywords" : [ "bright-eyed", "child", @@ -15237,8 +15237,7 @@ "young", "younger", "zodiac" - ], - "value" : "👧" + ] }, "👧🏻", { @@ -15266,7 +15265,6 @@ }, "👧🏽", { - "value" : "👧🏽", "keywords" : [ "girl", "girl: medium skin tone", @@ -15274,7 +15272,8 @@ "Virgo", "young", "zodiac" - ] + ], + "value" : "👧🏽" }, "👧🏾", { @@ -15290,6 +15289,7 @@ }, "👧🏿", { + "value" : "👧🏿", "keywords" : [ "dark skin tone", "girl", @@ -15297,19 +15297,19 @@ "Virgo", "young", "zodiac" - ], - "value" : "👧🏿" + ] }, "🧑", { - "value" : "🧑", "keywords" : [ "adult", "person" - ] + ], + "value" : "🧑" }, "🧑🏻", { + "value" : "🧑🏻", "keywords" : [ "adult", "gender-neutral", @@ -15317,8 +15317,7 @@ "person", "person: light skin tone", "unspecified gender" - ], - "value" : "🧑🏻" + ] }, "🧑🏼", { @@ -15334,6 +15333,7 @@ }, "🧑🏽", { + "value" : "🧑🏽", "keywords" : [ "adult", "gender-neutral", @@ -15341,8 +15341,7 @@ "person", "person: medium skin tone", "unspecified gender" - ], - "value" : "🧑🏽" + ] }, "🧑🏾", { @@ -15358,6 +15357,7 @@ }, "🧑🏿", { + "value" : "🧑🏿", "keywords" : [ "adult", "dark skin tone", @@ -15365,8 +15365,7 @@ "person", "person: dark skin tone", "unspecified gender" - ], - "value" : "🧑🏿" + ] }, "👱", { @@ -15380,6 +15379,7 @@ }, "👱🏻", { + "value" : "👱🏻", "keywords" : [ "blond", "blond-haired person", @@ -15387,8 +15387,7 @@ "light skin tone", "person: blond hair", "person: light skin tone, blond hair" - ], - "value" : "👱🏻" + ] }, "👱🏼", { @@ -15416,6 +15415,7 @@ }, "👱🏾", { + "value" : "👱🏾", "keywords" : [ "blond", "blond-haired person", @@ -15423,8 +15423,7 @@ "medium-dark skin tone", "person: blond hair", "person: medium-dark skin tone, blond hair" - ], - "value" : "👱🏾" + ] }, "👱🏿", { @@ -15469,13 +15468,13 @@ }, "👨🏽", { - "value" : "👨🏽", "keywords" : [ "adult", "man", "man: medium skin tone", "medium skin tone" - ] + ], + "value" : "👨🏽" }, "👨🏾", { @@ -15499,24 +15498,24 @@ }, "🧔", { + "value" : "🧔", "keywords" : [ "beard", "bearded", "person", "whiskers" - ], - "value" : "🧔" + ] }, "🧔🏻", { - "value" : "🧔🏻", "keywords" : [ "beard", "light skin tone", "person", "person: beard", "person: light skin tone, beard" - ] + ], + "value" : "🧔🏻" }, "🧔🏼", { @@ -15531,25 +15530,25 @@ }, "🧔🏽", { + "value" : "🧔🏽", "keywords" : [ "beard", "medium skin tone", "person", "person: beard", "person: medium skin tone, beard" - ], - "value" : "🧔🏽" + ] }, "🧔🏾", { - "value" : "🧔🏾", "keywords" : [ "beard", "medium-dark skin tone", "person", "person: beard", "person: medium-dark skin tone, beard" - ] + ], + "value" : "🧔🏾" }, "🧔🏿", { @@ -15585,68 +15584,68 @@ }, "🧔🏼‍♂️", { - "value" : "🧔🏼‍♂️", "keywords" : [ "beard", "man", "man: beard", "man: medium-light skin tone, beard", "medium-light skin tone" - ] + ], + "value" : "🧔🏼‍♂️" }, "🧔🏽‍♂️", { + "value" : "🧔🏽‍♂️", "keywords" : [ "beard", "man", "man: beard", "man: medium skin tone, beard", "medium skin tone" - ], - "value" : "🧔🏽‍♂️" + ] }, "🧔🏾‍♂️", { - "value" : "🧔🏾‍♂️", "keywords" : [ "beard", "man", "man: beard", "man: medium-dark skin tone, beard", "medium-dark skin tone" - ] + ], + "value" : "🧔🏾‍♂️" }, "🧔🏿‍♂️", { + "value" : "🧔🏿‍♂️", "keywords" : [ "beard", "dark skin tone", "man", "man: beard", "man: dark skin tone, beard" - ], - "value" : "🧔🏿‍♂️" + ] }, "🧔‍♀️", { - "value" : "🧔‍♀️", "keywords" : [ "beard", "bearded", "whiskers", "woman" - ] + ], + "value" : "🧔‍♀️" }, "🧔🏻‍♀️", { - "value" : "🧔🏻‍♀️", "keywords" : [ "beard", "light skin tone", "woman", "woman: beard", "woman: light skin tone, beard" - ] + ], + "value" : "🧔🏻‍♀️" }, "🧔🏼‍♀️", { @@ -15694,13 +15693,13 @@ }, "👨‍🦰", { + "value" : "👨‍🦰", "keywords" : [ "adult", "man", "man: red hair", "red hair" - ], - "value" : "👨‍🦰" + ] }, "👨🏻‍🦰", { @@ -15726,25 +15725,25 @@ }, "👨🏽‍🦰", { + "value" : "👨🏽‍🦰", "keywords" : [ "adult", "man", "man: medium skin tone, red hair", "medium skin tone", "red hair" - ], - "value" : "👨🏽‍🦰" + ] }, "👨🏾‍🦰", { + "value" : "👨🏾‍🦰", "keywords" : [ "adult", "man", "man: medium-dark skin tone, red hair", "medium-dark skin tone", "red hair" - ], - "value" : "👨🏾‍🦰" + ] }, "👨🏿‍🦰", { @@ -15791,14 +15790,14 @@ }, "👨🏽‍🦱", { + "value" : "👨🏽‍🦱", "keywords" : [ "adult", "curly hair", "man", "man: medium skin tone, curly hair", "medium skin tone" - ], - "value" : "👨🏽‍🦱" + ] }, "👨🏾‍🦱", { @@ -15813,24 +15812,24 @@ }, "👨🏿‍🦱", { + "value" : "👨🏿‍🦱", "keywords" : [ "adult", "curly hair", "dark skin tone", "man", "man: dark skin tone, curly hair" - ], - "value" : "👨🏿‍🦱" + ] }, "👨‍🦳", { - "value" : "👨‍🦳", "keywords" : [ "adult", "man", "man: white hair", "white hair" - ] + ], + "value" : "👨‍🦳" }, "👨🏻‍🦳", { @@ -15845,14 +15844,14 @@ }, "👨🏼‍🦳", { + "value" : "👨🏼‍🦳", "keywords" : [ "adult", "man", "man: medium-light skin tone, white hair", "medium-light skin tone", "white hair" - ], - "value" : "👨🏼‍🦳" + ] }, "👨🏽‍🦳", { @@ -15889,68 +15888,68 @@ }, "👨‍🦲", { - "value" : "👨‍🦲", "keywords" : [ "adult", "bald", "man", "man: bald" - ] + ], + "value" : "👨‍🦲" }, "👨🏻‍🦲", { - "value" : "👨🏻‍🦲", "keywords" : [ "adult", "bald", "light skin tone", "man", "man: light skin tone, bald" - ] + ], + "value" : "👨🏻‍🦲" }, "👨🏼‍🦲", { + "value" : "👨🏼‍🦲", "keywords" : [ "adult", "bald", "man", "man: medium-light skin tone, bald", "medium-light skin tone" - ], - "value" : "👨🏼‍🦲" + ] }, "👨🏽‍🦲", { + "value" : "👨🏽‍🦲", "keywords" : [ "adult", "bald", "man", "man: medium skin tone, bald", "medium skin tone" - ], - "value" : "👨🏽‍🦲" + ] }, "👨🏾‍🦲", { + "value" : "👨🏾‍🦲", "keywords" : [ "adult", "bald", "man", "man: medium-dark skin tone, bald", "medium-dark skin tone" - ], - "value" : "👨🏾‍🦲" + ] }, "👨🏿‍🦲", { + "value" : "👨🏿‍🦲", "keywords" : [ "adult", "bald", "dark skin tone", "man", "man: dark skin tone, bald" - ], - "value" : "👨🏿‍🦲" + ] }, "👩", { @@ -15973,23 +15972,23 @@ }, "👩🏼", { + "value" : "👩🏼", "keywords" : [ "adult", "medium-light skin tone", "woman", "woman: medium-light skin tone" - ], - "value" : "👩🏼" + ] }, "👩🏽", { + "value" : "👩🏽", "keywords" : [ "adult", "medium skin tone", "woman", "woman: medium skin tone" - ], - "value" : "👩🏽" + ] }, "👩🏾", { @@ -16045,14 +16044,14 @@ }, "👩🏽‍🦰", { + "value" : "👩🏽‍🦰", "keywords" : [ "adult", "medium skin tone", "red hair", "woman", "woman: medium skin tone, red hair" - ], - "value" : "👩🏽‍🦰" + ] }, "👩🏾‍🦰", { @@ -16103,6 +16102,7 @@ }, "🧑🏼‍🦰", { + "value" : "🧑🏼‍🦰", "keywords" : [ "adult", "gender-neutral", @@ -16111,12 +16111,10 @@ "person: medium-light skin tone, red hair", "red hair", "unspecified gender" - ], - "value" : "🧑🏼‍🦰" + ] }, "🧑🏽‍🦰", { - "value" : "🧑🏽‍🦰", "keywords" : [ "adult", "gender-neutral", @@ -16125,7 +16123,8 @@ "person: medium skin tone, red hair", "red hair", "unspecified gender" - ] + ], + "value" : "🧑🏽‍🦰" }, "🧑🏾‍🦰", { @@ -16187,14 +16186,14 @@ }, "👩🏽‍🦱", { - "value" : "👩🏽‍🦱", "keywords" : [ "adult", "curly hair", "medium skin tone", "woman", "woman: medium skin tone, curly hair" - ] + ], + "value" : "👩🏽‍🦱" }, "👩🏾‍🦱", { @@ -16220,6 +16219,7 @@ }, "🧑‍🦱", { + "value" : "🧑‍🦱", "keywords" : [ "adult", "curly hair", @@ -16227,8 +16227,7 @@ "person", "person: curly hair", "unspecified gender" - ], - "value" : "🧑‍🦱" + ] }, "🧑🏻‍🦱", { @@ -16258,6 +16257,7 @@ }, "🧑🏽‍🦱", { + "value" : "🧑🏽‍🦱", "keywords" : [ "adult", "curly hair", @@ -16266,12 +16266,10 @@ "person", "person: medium skin tone, curly hair", "unspecified gender" - ], - "value" : "🧑🏽‍🦱" + ] }, "🧑🏾‍🦱", { - "value" : "🧑🏾‍🦱", "keywords" : [ "adult", "curly hair", @@ -16280,7 +16278,8 @@ "person", "person: medium-dark skin tone, curly hair", "unspecified gender" - ] + ], + "value" : "🧑🏾‍🦱" }, "🧑🏿‍🦱", { @@ -16307,36 +16306,36 @@ }, "👩🏻‍🦳", { - "value" : "👩🏻‍🦳", "keywords" : [ "adult", "light skin tone", "white hair", "woman", "woman: light skin tone, white hair" - ] + ], + "value" : "👩🏻‍🦳" }, "👩🏼‍🦳", { + "value" : "👩🏼‍🦳", "keywords" : [ "adult", "medium-light skin tone", "white hair", "woman", "woman: medium-light skin tone, white hair" - ], - "value" : "👩🏼‍🦳" + ] }, "👩🏽‍🦳", { + "value" : "👩🏽‍🦳", "keywords" : [ "adult", "medium skin tone", "white hair", "woman", "woman: medium skin tone, white hair" - ], - "value" : "👩🏽‍🦳" + ] }, "👩🏾‍🦳", { @@ -16362,7 +16361,6 @@ }, "🧑‍🦳", { - "value" : "🧑‍🦳", "keywords" : [ "adult", "gender-neutral", @@ -16370,7 +16368,8 @@ "person: white hair", "unspecified gender", "white hair" - ] + ], + "value" : "🧑‍🦳" }, "🧑🏻‍🦳", { @@ -16482,14 +16481,14 @@ }, "👩🏾‍🦲", { + "value" : "👩🏾‍🦲", "keywords" : [ "adult", "bald", "medium-dark skin tone", "woman", "woman: medium-dark skin tone, bald" - ], - "value" : "👩🏾‍🦲" + ] }, "👩🏿‍🦲", { @@ -16529,7 +16528,6 @@ }, "🧑🏼‍🦲", { - "value" : "🧑🏼‍🦲", "keywords" : [ "adult", "bald", @@ -16538,11 +16536,11 @@ "person", "person: medium-light skin tone, bald", "unspecified gender" - ] + ], + "value" : "🧑🏼‍🦲" }, "🧑🏽‍🦲", { - "value" : "🧑🏽‍🦲", "keywords" : [ "adult", "bald", @@ -16551,7 +16549,8 @@ "person", "person: medium skin tone, bald", "unspecified gender" - ] + ], + "value" : "🧑🏽‍🦲" }, "🧑🏾‍🦲", { @@ -16581,18 +16580,17 @@ }, "👱‍♀️", { - "value" : "👱‍♀️", "keywords" : [ "blond", "blond-haired", "blonde", "hair", "woman" - ] + ], + "value" : "👱‍♀️" }, "👱🏻‍♀️", { - "value" : "👱🏻‍♀️", "keywords" : [ "blond hair", "blond-haired woman", @@ -16602,7 +16600,8 @@ "woman", "woman: blond hair", "woman: light skin tone, blond hair" - ] + ], + "value" : "👱🏻‍♀️" }, "👱🏼‍♀️", { @@ -16620,7 +16619,6 @@ }, "👱🏽‍♀️", { - "value" : "👱🏽‍♀️", "keywords" : [ "blond hair", "blond-haired woman", @@ -16630,7 +16628,8 @@ "woman", "woman: blond hair", "woman: medium skin tone, blond hair" - ] + ], + "value" : "👱🏽‍♀️" }, "👱🏾‍♀️", { @@ -16648,7 +16647,6 @@ }, "👱🏿‍♀️", { - "value" : "👱🏿‍♀️", "keywords" : [ "blond hair", "blond-haired woman", @@ -16658,7 +16656,8 @@ "woman", "woman: blond hair", "woman: dark skin tone, blond hair" - ] + ], + "value" : "👱🏿‍♀️" }, "👱‍♂️", { @@ -16672,7 +16671,6 @@ }, "👱🏻‍♂️", { - "value" : "👱🏻‍♂️", "keywords" : [ "blond", "blond-haired man", @@ -16681,10 +16679,12 @@ "man", "man: blond hair", "man: light skin tone, blond hair" - ] + ], + "value" : "👱🏻‍♂️" }, "👱🏼‍♂️", { + "value" : "👱🏼‍♂️", "keywords" : [ "blond", "blond-haired man", @@ -16693,8 +16693,7 @@ "man: blond hair", "man: medium-light skin tone, blond hair", "medium-light skin tone" - ], - "value" : "👱🏼‍♂️" + ] }, "👱🏽‍♂️", { @@ -16724,6 +16723,7 @@ }, "👱🏿‍♂️", { + "value" : "👱🏿‍♂️", "keywords" : [ "blond", "blond-haired man", @@ -16732,11 +16732,11 @@ "man", "man: blond hair", "man: dark skin tone, blond hair" - ], - "value" : "👱🏿‍♂️" + ] }, "🧓", { + "value" : "🧓", "keywords" : [ "adult", "elderly", @@ -16744,12 +16744,10 @@ "old", "person", "wise" - ], - "value" : "🧓" + ] }, "🧓🏻", { - "value" : "🧓🏻", "keywords" : [ "adult", "gender-neutral", @@ -16758,7 +16756,8 @@ "older person", "older person: light skin tone", "unspecified gender" - ] + ], + "value" : "🧓🏻" }, "🧓🏼", { @@ -16775,6 +16774,7 @@ }, "🧓🏽", { + "value" : "🧓🏽", "keywords" : [ "adult", "gender-neutral", @@ -16783,8 +16783,7 @@ "older person", "older person: medium skin tone", "unspecified gender" - ], - "value" : "🧓🏽" + ] }, "🧓🏾", { @@ -16801,7 +16800,6 @@ }, "🧓🏿", { - "value" : "🧓🏿", "keywords" : [ "adult", "dark skin tone", @@ -16810,7 +16808,8 @@ "older person", "older person: dark skin tone", "unspecified gender" - ] + ], + "value" : "🧓🏿" }, "👴", { @@ -16829,25 +16828,25 @@ }, "👴🏻", { - "value" : "👴🏻", "keywords" : [ "adult", "light skin tone", "man", "old", "old man: light skin tone" - ] + ], + "value" : "👴🏻" }, "👴🏼", { + "value" : "👴🏼", "keywords" : [ "adult", "man", "medium-light skin tone", "old", "old man: medium-light skin tone" - ], - "value" : "👴🏼" + ] }, "👴🏽", { @@ -16910,25 +16909,25 @@ }, "👵🏼", { + "value" : "👵🏼", "keywords" : [ "adult", "medium-light skin tone", "old", "old woman: medium-light skin tone", "woman" - ], - "value" : "👵🏼" + ] }, "👵🏽", { + "value" : "👵🏽", "keywords" : [ "adult", "medium skin tone", "old", "old woman: medium skin tone", "woman" - ], - "value" : "👵🏽" + ] }, "👵🏾", { @@ -16954,7 +16953,6 @@ }, "🙍", { - "value" : "🙍", "keywords" : [ "annoyed", "disappointed", @@ -16967,7 +16965,8 @@ "irritated", "person", "upset" - ] + ], + "value" : "🙍" }, "🙍🏻", { @@ -16982,51 +16981,50 @@ }, "🙍🏼", { - "value" : "🙍🏼", "keywords" : [ "frown", "gesture", "medium-light skin tone", "person frowning", "person frowning: medium-light skin tone" - ] + ], + "value" : "🙍🏼" }, "🙍🏽", { + "value" : "🙍🏽", "keywords" : [ "frown", "gesture", "medium skin tone", "person frowning", "person frowning: medium skin tone" - ], - "value" : "🙍🏽" + ] }, "🙍🏾", { + "value" : "🙍🏾", "keywords" : [ "frown", "gesture", "medium-dark skin tone", "person frowning", "person frowning: medium-dark skin tone" - ], - "value" : "🙍🏾" + ] }, "🙍🏿", { + "value" : "🙍🏿", "keywords" : [ "dark skin tone", "frown", "gesture", "person frowning", "person frowning: dark skin tone" - ], - "value" : "🙍🏿" + ] }, "🙍‍♂️", { - "value" : "🙍‍♂️", "keywords" : [ "annoyed", "disappointed", @@ -17039,18 +17037,19 @@ "irritated", "man", "upset" - ] + ], + "value" : "🙍‍♂️" }, "🙍🏻‍♂️", { + "value" : "🙍🏻‍♂️", "keywords" : [ "frowning", "gesture", "light skin tone", "man", "man frowning: light skin tone" - ], - "value" : "🙍🏻‍♂️" + ] }, "🙍🏼‍♂️", { @@ -17065,14 +17064,14 @@ }, "🙍🏽‍♂️", { + "value" : "🙍🏽‍♂️", "keywords" : [ "frowning", "gesture", "man", "man frowning: medium skin tone", "medium skin tone" - ], - "value" : "🙍🏽‍♂️" + ] }, "🙍🏾‍♂️", { @@ -17087,17 +17086,18 @@ }, "🙍🏿‍♂️", { + "value" : "🙍🏿‍♂️", "keywords" : [ "dark skin tone", "frowning", "gesture", "man", "man frowning: dark skin tone" - ], - "value" : "🙍🏿‍♂️" + ] }, "🙍‍♀️", { + "value" : "🙍‍♀️", "keywords" : [ "annoyed", "disappointed", @@ -17110,8 +17110,7 @@ "irritated", "upset", "woman" - ], - "value" : "🙍‍♀️" + ] }, "🙍🏻‍♀️", { @@ -17148,25 +17147,25 @@ }, "🙍🏾‍♀️", { + "value" : "🙍🏾‍♀️", "keywords" : [ "frowning", "gesture", "medium-dark skin tone", "woman", "woman frowning: medium-dark skin tone" - ], - "value" : "🙍🏾‍♀️" + ] }, "🙍🏿‍♀️", { + "value" : "🙍🏿‍♀️", "keywords" : [ "dark skin tone", "frowning", "gesture", "woman", "woman frowning: dark skin tone" - ], - "value" : "🙍🏿‍♀️" + ] }, "🙎", { @@ -17208,14 +17207,14 @@ }, "🙎🏽", { + "value" : "🙎🏽", "keywords" : [ "gesture", "medium skin tone", "person pouting", "person pouting: medium skin tone", "pouting" - ], - "value" : "🙎🏽" + ] }, "🙎🏾", { @@ -17241,6 +17240,7 @@ }, "🙎‍♂️", { + "value" : "🙎‍♂️", "keywords" : [ "disappointed", "downtrodden", @@ -17252,30 +17252,29 @@ "sulk", "upset", "whine" - ], - "value" : "🙎‍♂️" + ] }, "🙎🏻‍♂️", { - "value" : "🙎🏻‍♂️", "keywords" : [ "gesture", "light skin tone", "man", "man pouting: light skin tone", "pouting" - ] + ], + "value" : "🙎🏻‍♂️" }, "🙎🏼‍♂️", { - "value" : "🙎🏼‍♂️", "keywords" : [ "gesture", "man", "man pouting: medium-light skin tone", "medium-light skin tone", "pouting" - ] + ], + "value" : "🙎🏼‍♂️" }, "🙎🏽‍♂️", { @@ -17339,14 +17338,14 @@ }, "🙎🏼‍♀️", { + "value" : "🙎🏼‍♀️", "keywords" : [ "gesture", "medium-light skin tone", "pouting", "woman", "woman pouting: medium-light skin tone" - ], - "value" : "🙎🏼‍♀️" + ] }, "🙎🏽‍♀️", { @@ -17361,14 +17360,14 @@ }, "🙎🏾‍♀️", { - "value" : "🙎🏾‍♀️", "keywords" : [ "gesture", "medium-dark skin tone", "pouting", "woman", "woman pouting: medium-dark skin tone" - ] + ], + "value" : "🙎🏾‍♀️" }, "🙎🏿‍♀️", { @@ -17383,6 +17382,7 @@ }, "🙅", { + "value" : "🙅", "keywords" : [ "forbidden", "gesture", @@ -17391,8 +17391,7 @@ "not", "person", "prohibit" - ], - "value" : "🙅" + ] }, "🙅🏻", { @@ -17409,7 +17408,6 @@ }, "🙅🏼", { - "value" : "🙅🏼", "keywords" : [ "forbidden", "gesture", @@ -17418,11 +17416,11 @@ "person gesturing NO", "person gesturing NO: medium-light skin tone", "prohibited" - ] + ], + "value" : "🙅🏼" }, "🙅🏽", { - "value" : "🙅🏽", "keywords" : [ "forbidden", "gesture", @@ -17431,10 +17429,12 @@ "person gesturing NO", "person gesturing NO: medium skin tone", "prohibited" - ] + ], + "value" : "🙅🏽" }, "🙅🏾", { + "value" : "🙅🏾", "keywords" : [ "forbidden", "gesture", @@ -17443,8 +17443,7 @@ "person gesturing NO", "person gesturing NO: medium-dark skin tone", "prohibited" - ], - "value" : "🙅🏾" + ] }, "🙅🏿", { @@ -17488,7 +17487,6 @@ }, "🙅🏼‍♂️", { - "value" : "🙅🏼‍♂️", "keywords" : [ "forbidden", "gesture", @@ -17498,7 +17496,8 @@ "man gesturing NO: medium-light skin tone", "medium-light skin tone", "prohibited" - ] + ], + "value" : "🙅🏼‍♂️" }, "🙅🏽‍♂️", { @@ -17530,6 +17529,7 @@ }, "🙅🏿‍♂️", { + "value" : "🙅🏿‍♂️", "keywords" : [ "dark skin tone", "forbidden", @@ -17539,8 +17539,7 @@ "man gesturing NO", "man gesturing NO: dark skin tone", "prohibited" - ], - "value" : "🙅🏿‍♂️" + ] }, "🙅‍♀️", { @@ -17557,7 +17556,6 @@ }, "🙅🏻‍♀️", { - "value" : "🙅🏻‍♀️", "keywords" : [ "forbidden", "gesture", @@ -17567,7 +17565,8 @@ "woman", "woman gesturing NO", "woman gesturing NO: light skin tone" - ] + ], + "value" : "🙅🏻‍♀️" }, "🙅🏼‍♀️", { @@ -17585,6 +17584,7 @@ }, "🙅🏽‍♀️", { + "value" : "🙅🏽‍♀️", "keywords" : [ "forbidden", "gesture", @@ -17594,8 +17594,7 @@ "woman", "woman gesturing NO", "woman gesturing NO: medium skin tone" - ], - "value" : "🙅🏽‍♀️" + ] }, "🙅🏾‍♀️", { @@ -17613,7 +17612,6 @@ }, "🙅🏿‍♀️", { - "value" : "🙅🏿‍♀️", "keywords" : [ "dark skin tone", "forbidden", @@ -17623,11 +17621,11 @@ "woman", "woman gesturing NO", "woman gesturing NO: dark skin tone" - ] + ], + "value" : "🙅🏿‍♀️" }, "🙆", { - "value" : "🙆", "keywords" : [ "exercise", "gesture", @@ -17636,7 +17634,8 @@ "OK", "omg", "person" - ] + ], + "value" : "🙆" }, "🙆🏻", { @@ -17688,7 +17687,6 @@ }, "🙆🏿", { - "value" : "🙆🏿", "keywords" : [ "dark skin tone", "gesture", @@ -17696,7 +17694,8 @@ "OK", "person gesturing OK", "person gesturing OK: dark skin tone" - ] + ], + "value" : "🙆🏿" }, "🙆‍♂️", { @@ -17713,6 +17712,7 @@ }, "🙆🏻‍♂️", { + "value" : "🙆🏻‍♂️", "keywords" : [ "gesture", "hand", @@ -17721,8 +17721,7 @@ "man gesturing OK", "man gesturing OK: light skin tone", "OK" - ], - "value" : "🙆🏻‍♂️" + ] }, "🙆🏼‍♂️", { @@ -17739,6 +17738,7 @@ }, "🙆🏽‍♂️", { + "value" : "🙆🏽‍♂️", "keywords" : [ "gesture", "hand", @@ -17747,11 +17747,11 @@ "man gesturing OK: medium skin tone", "medium skin tone", "OK" - ], - "value" : "🙆🏽‍♂️" + ] }, "🙆🏾‍♂️", { + "value" : "🙆🏾‍♂️", "keywords" : [ "gesture", "hand", @@ -17760,12 +17760,10 @@ "man gesturing OK: medium-dark skin tone", "medium-dark skin tone", "OK" - ], - "value" : "🙆🏾‍♂️" + ] }, "🙆🏿‍♂️", { - "value" : "🙆🏿‍♂️", "keywords" : [ "dark skin tone", "gesture", @@ -17774,7 +17772,8 @@ "man gesturing OK", "man gesturing OK: dark skin tone", "OK" - ] + ], + "value" : "🙆🏿‍♂️" }, "🙆‍♀️", { @@ -17791,6 +17790,7 @@ }, "🙆🏻‍♀️", { + "value" : "🙆🏻‍♀️", "keywords" : [ "gesture", "hand", @@ -17799,8 +17799,7 @@ "woman", "woman gesturing OK", "woman gesturing OK: light skin tone" - ], - "value" : "🙆🏻‍♀️" + ] }, "🙆🏼‍♀️", { @@ -17830,6 +17829,7 @@ }, "🙆🏾‍♀️", { + "value" : "🙆🏾‍♀️", "keywords" : [ "gesture", "hand", @@ -17838,11 +17838,11 @@ "woman", "woman gesturing OK", "woman gesturing OK: medium-dark skin tone" - ], - "value" : "🙆🏾‍♀️" + ] }, "🙆🏿‍♀️", { + "value" : "🙆🏿‍♀️", "keywords" : [ "dark skin tone", "gesture", @@ -17851,12 +17851,10 @@ "woman", "woman gesturing OK", "woman gesturing OK: dark skin tone" - ], - "value" : "🙆🏿‍♀️" + ] }, "💁", { - "value" : "💁", "keywords" : [ "fetch", "flick", @@ -17870,7 +17868,8 @@ "seriously", "tipping", "whatever" - ] + ], + "value" : "💁" }, "💁🏻", { @@ -17888,7 +17887,6 @@ }, "💁🏼", { - "value" : "💁🏼", "keywords" : [ "hand", "help", @@ -17898,10 +17896,12 @@ "person tipping hand: medium-light skin tone", "sassy", "tipping" - ] + ], + "value" : "💁🏼" }, "💁🏽", { + "value" : "💁🏽", "keywords" : [ "hand", "help", @@ -17911,11 +17911,11 @@ "person tipping hand: medium skin tone", "sassy", "tipping" - ], - "value" : "💁🏽" + ] }, "💁🏾", { + "value" : "💁🏾", "keywords" : [ "hand", "help", @@ -17925,12 +17925,10 @@ "person tipping hand: medium-dark skin tone", "sassy", "tipping" - ], - "value" : "💁🏾" + ] }, "💁🏿", { - "value" : "💁🏿", "keywords" : [ "dark skin tone", "hand", @@ -17940,7 +17938,8 @@ "person tipping hand: dark skin tone", "sassy", "tipping" - ] + ], + "value" : "💁🏿" }, "💁‍♂️", { @@ -17998,6 +17997,7 @@ }, "💁🏾‍♂️", { + "value" : "💁🏾‍♂️", "keywords" : [ "man", "man tipping hand", @@ -18005,8 +18005,7 @@ "medium-dark skin tone", "sassy", "tipping hand" - ], - "value" : "💁🏾‍♂️" + ] }, "💁🏿‍♂️", { @@ -18022,6 +18021,7 @@ }, "💁‍♀️", { + "value" : "💁‍♀️", "keywords" : [ "fetch", "flick", @@ -18035,8 +18035,7 @@ "tipping", "whatever", "woman" - ], - "value" : "💁‍♀️" + ] }, "💁🏻‍♀️", { @@ -18052,6 +18051,7 @@ }, "💁🏼‍♀️", { + "value" : "💁🏼‍♀️", "keywords" : [ "medium-light skin tone", "sassy", @@ -18059,11 +18059,11 @@ "woman", "woman tipping hand", "woman tipping hand: medium-light skin tone" - ], - "value" : "💁🏼‍♀️" + ] }, "💁🏽‍♀️", { + "value" : "💁🏽‍♀️", "keywords" : [ "medium skin tone", "sassy", @@ -18071,8 +18071,7 @@ "woman", "woman tipping hand", "woman tipping hand: medium skin tone" - ], - "value" : "💁🏽‍♀️" + ] }, "💁🏾‍♀️", { @@ -18088,7 +18087,6 @@ }, "💁🏿‍♀️", { - "value" : "💁🏿‍♀️", "keywords" : [ "dark skin tone", "sassy", @@ -18096,7 +18094,8 @@ "woman", "woman tipping hand", "woman tipping hand: dark skin tone" - ] + ], + "value" : "💁🏿‍♀️" }, "🙋", { @@ -18116,7 +18115,6 @@ }, "🙋🏻", { - "value" : "🙋🏻", "keywords" : [ "gesture", "hand", @@ -18125,7 +18123,8 @@ "person raising hand", "person raising hand: light skin tone", "raised" - ] + ], + "value" : "🙋🏻" }, "🙋🏼", { @@ -18181,6 +18180,7 @@ }, "🙋‍♂️", { + "value" : "🙋‍♂️", "keywords" : [ "gesture", "hand", @@ -18192,8 +18192,7 @@ "question", "raise", "raising" - ], - "value" : "🙋‍♂️" + ] }, "🙋🏻‍♂️", { @@ -18221,7 +18220,6 @@ }, "🙋🏽‍♂️", { - "value" : "🙋🏽‍♂️", "keywords" : [ "gesture", "man", @@ -18229,7 +18227,8 @@ "man raising hand: medium skin tone", "medium skin tone", "raising hand" - ] + ], + "value" : "🙋🏽‍♂️" }, "🙋🏾‍♂️", { @@ -18285,7 +18284,6 @@ }, "🙋🏼‍♀️", { - "value" : "🙋🏼‍♀️", "keywords" : [ "gesture", "medium-light skin tone", @@ -18293,10 +18291,12 @@ "woman", "woman raising hand", "woman raising hand: medium-light skin tone" - ] + ], + "value" : "🙋🏼‍♀️" }, "🙋🏽‍♀️", { + "value" : "🙋🏽‍♀️", "keywords" : [ "gesture", "medium skin tone", @@ -18304,8 +18304,7 @@ "woman", "woman raising hand", "woman raising hand: medium skin tone" - ], - "value" : "🙋🏽‍♀️" + ] }, "🙋🏾‍♀️", { @@ -18321,7 +18320,6 @@ }, "🙋🏿‍♀️", { - "value" : "🙋🏿‍♀️", "keywords" : [ "dark skin tone", "gesture", @@ -18329,11 +18327,11 @@ "woman", "woman raising hand", "woman raising hand: dark skin tone" - ] + ], + "value" : "🙋🏿‍♀️" }, "🧏", { - "value" : "🧏", "keywords" : [ "accessibility", "deaf", @@ -18341,10 +18339,12 @@ "gesture", "hear", "person" - ] + ], + "value" : "🧏" }, "🧏🏻", { + "value" : "🧏🏻", "keywords" : [ "accessibility", "deaf", @@ -18353,11 +18353,11 @@ "ear", "hear", "light skin tone" - ], - "value" : "🧏🏻" + ] }, "🧏🏼", { + "value" : "🧏🏼", "keywords" : [ "accessibility", "deaf", @@ -18366,8 +18366,7 @@ "ear", "hear", "medium-light skin tone" - ], - "value" : "🧏🏼" + ] }, "🧏🏽", { @@ -18384,7 +18383,6 @@ }, "🧏🏾", { - "value" : "🧏🏾", "keywords" : [ "accessibility", "deaf", @@ -18393,7 +18391,8 @@ "ear", "hear", "medium-dark skin tone" - ] + ], + "value" : "🧏🏾" }, "🧏🏿", { @@ -18422,13 +18421,13 @@ }, "🧏🏻‍♂️", { - "value" : "🧏🏻‍♂️", "keywords" : [ "deaf", "deaf man: light skin tone", "light skin tone", "man" - ] + ], + "value" : "🧏🏻‍♂️" }, "🧏🏼‍♂️", { @@ -18452,26 +18451,27 @@ }, "🧏🏾‍♂️", { - "value" : "🧏🏾‍♂️", "keywords" : [ "deaf", "deaf man: medium-dark skin tone", "man", "medium-dark skin tone" - ] + ], + "value" : "🧏🏾‍♂️" }, "🧏🏿‍♂️", { + "value" : "🧏🏿‍♂️", "keywords" : [ "dark skin tone", "deaf", "deaf man: dark skin tone", "man" - ], - "value" : "🧏🏿‍♂️" + ] }, "🧏‍♀️", { + "value" : "🧏‍♀️", "keywords" : [ "accessibility", "deaf", @@ -18479,8 +18479,7 @@ "gesture", "hear", "woman" - ], - "value" : "🧏‍♀️" + ] }, "🧏🏻‍♀️", { @@ -18504,13 +18503,13 @@ }, "🧏🏽‍♀️", { + "value" : "🧏🏽‍♀️", "keywords" : [ "deaf", "deaf woman: medium skin tone", "medium skin tone", "woman" - ], - "value" : "🧏🏽‍♀️" + ] }, "🧏🏾‍♀️", { @@ -18524,16 +18523,17 @@ }, "🧏🏿‍♀️", { + "value" : "🧏🏿‍♀️", "keywords" : [ "dark skin tone", "deaf", "deaf woman: dark skin tone", "woman" - ], - "value" : "🧏🏿‍♀️" + ] }, "🙇", { + "value" : "🙇", "keywords" : [ "apology", "ask", @@ -18549,12 +18549,10 @@ "pity", "regret", "sorry" - ], - "value" : "🙇" + ] }, "🙇🏻", { - "value" : "🙇🏻", "keywords" : [ "apology", "bow", @@ -18563,7 +18561,8 @@ "person bowing", "person bowing: light skin tone", "sorry" - ] + ], + "value" : "🙇🏻" }, "🙇🏼", { @@ -18639,7 +18638,6 @@ }, "🙇🏻‍♂️", { - "value" : "🙇🏻‍♂️", "keywords" : [ "apology", "bowing", @@ -18649,10 +18647,12 @@ "man", "man bowing: light skin tone", "sorry" - ] + ], + "value" : "🙇🏻‍♂️" }, "🙇🏼‍♂️", { + "value" : "🙇🏼‍♂️", "keywords" : [ "apology", "bowing", @@ -18662,12 +18662,10 @@ "man bowing: medium-light skin tone", "medium-light skin tone", "sorry" - ], - "value" : "🙇🏼‍♂️" + ] }, "🙇🏽‍♂️", { - "value" : "🙇🏽‍♂️", "keywords" : [ "apology", "bowing", @@ -18677,11 +18675,11 @@ "man bowing: medium skin tone", "medium skin tone", "sorry" - ] + ], + "value" : "🙇🏽‍♂️" }, "🙇🏾‍♂️", { - "value" : "🙇🏾‍♂️", "keywords" : [ "apology", "bowing", @@ -18691,11 +18689,11 @@ "man bowing: medium-dark skin tone", "medium-dark skin tone", "sorry" - ] + ], + "value" : "🙇🏾‍♂️" }, "🙇🏿‍♂️", { - "value" : "🙇🏿‍♂️", "keywords" : [ "apology", "bowing", @@ -18705,7 +18703,8 @@ "man", "man bowing: dark skin tone", "sorry" - ] + ], + "value" : "🙇🏿‍♂️" }, "🙇‍♀️", { @@ -18729,6 +18728,7 @@ }, "🙇🏻‍♀️", { + "value" : "🙇🏻‍♀️", "keywords" : [ "apology", "bowing", @@ -18738,11 +18738,11 @@ "sorry", "woman", "woman bowing: light skin tone" - ], - "value" : "🙇🏻‍♀️" + ] }, "🙇🏼‍♀️", { + "value" : "🙇🏼‍♀️", "keywords" : [ "apology", "bowing", @@ -18752,11 +18752,11 @@ "sorry", "woman", "woman bowing: medium-light skin tone" - ], - "value" : "🙇🏼‍♀️" + ] }, "🙇🏽‍♀️", { + "value" : "🙇🏽‍♀️", "keywords" : [ "apology", "bowing", @@ -18766,12 +18766,10 @@ "sorry", "woman", "woman bowing: medium skin tone" - ], - "value" : "🙇🏽‍♀️" + ] }, "🙇🏾‍♀️", { - "value" : "🙇🏾‍♀️", "keywords" : [ "apology", "bowing", @@ -18781,7 +18779,8 @@ "sorry", "woman", "woman bowing: medium-dark skin tone" - ] + ], + "value" : "🙇🏾‍♀️" }, "🙇🏿‍♀️", { @@ -18799,7 +18798,6 @@ }, "🤦", { - "value" : "🤦", "keywords" : [ "again", "bewilder", @@ -18813,10 +18811,12 @@ "person", "shock", "smh" - ] + ], + "value" : "🤦" }, "🤦🏻", { + "value" : "🤦🏻", "keywords" : [ "disbelief", "exasperation", @@ -18825,8 +18825,7 @@ "palm", "person facepalming", "person facepalming: light skin tone" - ], - "value" : "🤦🏻" + ] }, "🤦🏼", { @@ -18856,7 +18855,6 @@ }, "🤦🏾", { - "value" : "🤦🏾", "keywords" : [ "disbelief", "exasperation", @@ -18865,10 +18863,12 @@ "palm", "person facepalming", "person facepalming: medium-dark skin tone" - ] + ], + "value" : "🤦🏾" }, "🤦🏿", { + "value" : "🤦🏿", "keywords" : [ "dark skin tone", "disbelief", @@ -18877,8 +18877,7 @@ "palm", "person facepalming", "person facepalming: dark skin tone" - ], - "value" : "🤦🏿" + ] }, "🤦‍♂️", { @@ -18900,7 +18899,6 @@ }, "🤦🏻‍♂️", { - "value" : "🤦🏻‍♂️", "keywords" : [ "disbelief", "exasperation", @@ -18909,10 +18907,12 @@ "man", "man facepalming", "man facepalming: light skin tone" - ] + ], + "value" : "🤦🏻‍♂️" }, "🤦🏼‍♂️", { + "value" : "🤦🏼‍♂️", "keywords" : [ "disbelief", "exasperation", @@ -18921,12 +18921,10 @@ "man facepalming", "man facepalming: medium-light skin tone", "medium-light skin tone" - ], - "value" : "🤦🏼‍♂️" + ] }, "🤦🏽‍♂️", { - "value" : "🤦🏽‍♂️", "keywords" : [ "disbelief", "exasperation", @@ -18935,7 +18933,8 @@ "man facepalming", "man facepalming: medium skin tone", "medium skin tone" - ] + ], + "value" : "🤦🏽‍♂️" }, "🤦🏾‍♂️", { @@ -18952,6 +18951,7 @@ }, "🤦🏿‍♂️", { + "value" : "🤦🏿‍♂️", "keywords" : [ "dark skin tone", "disbelief", @@ -18960,12 +18960,10 @@ "man", "man facepalming", "man facepalming: dark skin tone" - ], - "value" : "🤦🏿‍♂️" + ] }, "🤦‍♀️", { - "value" : "🤦‍♀️", "keywords" : [ "again", "bewilder", @@ -18979,7 +18977,8 @@ "shock", "smh", "woman" - ] + ], + "value" : "🤦‍♀️" }, "🤦🏻‍♀️", { @@ -18996,6 +18995,7 @@ }, "🤦🏼‍♀️", { + "value" : "🤦🏼‍♀️", "keywords" : [ "disbelief", "exasperation", @@ -19004,12 +19004,10 @@ "woman", "woman facepalming", "woman facepalming: medium-light skin tone" - ], - "value" : "🤦🏼‍♀️" + ] }, "🤦🏽‍♀️", { - "value" : "🤦🏽‍♀️", "keywords" : [ "disbelief", "exasperation", @@ -19018,11 +19016,11 @@ "woman", "woman facepalming", "woman facepalming: medium skin tone" - ] + ], + "value" : "🤦🏽‍♀️" }, "🤦🏾‍♀️", { - "value" : "🤦🏾‍♀️", "keywords" : [ "disbelief", "exasperation", @@ -19031,7 +19029,8 @@ "woman", "woman facepalming", "woman facepalming: medium-dark skin tone" - ] + ], + "value" : "🤦🏾‍♀️" }, "🤦🏿‍♀️", { @@ -19048,6 +19047,7 @@ }, "🤷", { + "value" : "🤷", "keywords" : [ "doubt", "dunno", @@ -19062,12 +19062,10 @@ "shrugging", "whatever", "who" - ], - "value" : "🤷" + ] }, "🤷🏻", { - "value" : "🤷🏻", "keywords" : [ "doubt", "ignorance", @@ -19076,10 +19074,12 @@ "person shrugging", "person shrugging: light skin tone", "shrug" - ] + ], + "value" : "🤷🏻" }, "🤷🏼", { + "value" : "🤷🏼", "keywords" : [ "doubt", "ignorance", @@ -19088,8 +19088,7 @@ "person shrugging", "person shrugging: medium-light skin tone", "shrug" - ], - "value" : "🤷🏼" + ] }, "🤷🏽", { @@ -19132,6 +19131,7 @@ }, "🤷‍♂️", { + "value" : "🤷‍♂️", "keywords" : [ "doubt", "dunno", @@ -19146,12 +19146,10 @@ "shrugging", "whatever", "who" - ], - "value" : "🤷‍♂️" + ] }, "🤷🏻‍♂️", { - "value" : "🤷🏻‍♂️", "keywords" : [ "doubt", "ignorance", @@ -19161,7 +19159,8 @@ "man shrugging", "man shrugging: light skin tone", "shrug" - ] + ], + "value" : "🤷🏻‍♂️" }, "🤷🏼‍♂️", { @@ -19179,7 +19178,6 @@ }, "🤷🏽‍♂️", { - "value" : "🤷🏽‍♂️", "keywords" : [ "doubt", "ignorance", @@ -19189,11 +19187,11 @@ "man shrugging: medium skin tone", "medium skin tone", "shrug" - ] + ], + "value" : "🤷🏽‍♂️" }, "🤷🏾‍♂️", { - "value" : "🤷🏾‍♂️", "keywords" : [ "doubt", "ignorance", @@ -19203,10 +19201,12 @@ "man shrugging: medium-dark skin tone", "medium-dark skin tone", "shrug" - ] + ], + "value" : "🤷🏾‍♂️" }, "🤷🏿‍♂️", { + "value" : "🤷🏿‍♂️", "keywords" : [ "dark skin tone", "doubt", @@ -19216,11 +19216,11 @@ "man shrugging", "man shrugging: dark skin tone", "shrug" - ], - "value" : "🤷🏿‍♂️" + ] }, "🤷‍♀️", { + "value" : "🤷‍♀️", "keywords" : [ "doubt", "dunno", @@ -19235,8 +19235,7 @@ "whatever", "who", "woman" - ], - "value" : "🤷‍♀️" + ] }, "🤷🏻‍♀️", { @@ -19254,6 +19253,7 @@ }, "🤷🏼‍♀️", { + "value" : "🤷🏼‍♀️", "keywords" : [ "doubt", "ignorance", @@ -19263,11 +19263,11 @@ "woman", "woman shrugging", "woman shrugging: medium-light skin tone" - ], - "value" : "🤷🏼‍♀️" + ] }, "🤷🏽‍♀️", { + "value" : "🤷🏽‍♀️", "keywords" : [ "doubt", "ignorance", @@ -19277,12 +19277,10 @@ "woman", "woman shrugging", "woman shrugging: medium skin tone" - ], - "value" : "🤷🏽‍♀️" + ] }, "🤷🏾‍♀️", { - "value" : "🤷🏾‍♀️", "keywords" : [ "doubt", "ignorance", @@ -19292,7 +19290,8 @@ "woman", "woman shrugging", "woman shrugging: medium-dark skin tone" - ] + ], + "value" : "🤷🏾‍♀️" }, "🤷🏿‍♀️", { @@ -19322,7 +19321,6 @@ }, "🧑🏻‍⚕️", { - "value" : "🧑🏻‍⚕️", "keywords" : [ "doctor", "health worker", @@ -19331,7 +19329,8 @@ "light skin tone", "nurse", "therapist" - ] + ], + "value" : "🧑🏻‍⚕️" }, "🧑🏼‍⚕️", { @@ -19348,7 +19347,6 @@ }, "🧑🏽‍⚕️", { - "value" : "🧑🏽‍⚕️", "keywords" : [ "doctor", "health worker", @@ -19357,7 +19355,8 @@ "medium skin tone", "nurse", "therapist" - ] + ], + "value" : "🧑🏽‍⚕️" }, "🧑🏾‍⚕️", { @@ -19374,7 +19373,6 @@ }, "🧑🏿‍⚕️", { - "value" : "🧑🏿‍⚕️", "keywords" : [ "dark skin tone", "doctor", @@ -19383,10 +19381,12 @@ "healthcare", "nurse", "therapist" - ] + ], + "value" : "🧑🏿‍⚕️" }, "👨‍⚕️", { + "value" : "👨‍⚕️", "keywords" : [ "doctor", "health", @@ -19395,12 +19395,10 @@ "nurse", "therapist", "worker" - ], - "value" : "👨‍⚕️" + ] }, "👨🏻‍⚕️", { - "value" : "👨🏻‍⚕️", "keywords" : [ "doctor", "healthcare", @@ -19410,10 +19408,12 @@ "man health worker: light skin tone", "nurse", "therapist" - ] + ], + "value" : "👨🏻‍⚕️" }, "👨🏼‍⚕️", { + "value" : "👨🏼‍⚕️", "keywords" : [ "doctor", "healthcare", @@ -19423,8 +19423,7 @@ "medium-light skin tone", "nurse", "therapist" - ], - "value" : "👨🏼‍⚕️" + ] }, "👨🏽‍⚕️", { @@ -19456,7 +19455,6 @@ }, "👨🏿‍⚕️", { - "value" : "👨🏿‍⚕️", "keywords" : [ "dark skin tone", "doctor", @@ -19466,7 +19464,8 @@ "man health worker: dark skin tone", "nurse", "therapist" - ] + ], + "value" : "👨🏿‍⚕️" }, "👩‍⚕️", { @@ -19483,7 +19482,6 @@ }, "👩🏻‍⚕️", { - "value" : "👩🏻‍⚕️", "keywords" : [ "doctor", "healthcare", @@ -19493,7 +19491,8 @@ "woman", "woman health worker", "woman health worker: light skin tone" - ] + ], + "value" : "👩🏻‍⚕️" }, "👩🏼‍⚕️", { @@ -19553,11 +19552,11 @@ }, "🧑‍🎓", { + "value" : "🧑‍🎓", "keywords" : [ "graduate", "student" - ], - "value" : "🧑‍🎓" + ] }, "🧑🏻‍🎓", { @@ -19591,13 +19590,13 @@ }, "🧑🏾‍🎓", { - "value" : "🧑🏾‍🎓", "keywords" : [ "graduate", "medium-dark skin tone", "student", "student: medium-dark skin tone" - ] + ], + "value" : "🧑🏾‍🎓" }, "🧑🏿‍🎓", { @@ -19631,14 +19630,14 @@ }, "👨🏼‍🎓", { + "value" : "👨🏼‍🎓", "keywords" : [ "graduate", "man", "man student: medium-light skin tone", "medium-light skin tone", "student" - ], - "value" : "👨🏼‍🎓" + ] }, "👨🏽‍🎓", { @@ -19653,25 +19652,25 @@ }, "👨🏾‍🎓", { + "value" : "👨🏾‍🎓", "keywords" : [ "graduate", "man", "man student: medium-dark skin tone", "medium-dark skin tone", "student" - ], - "value" : "👨🏾‍🎓" + ] }, "👨🏿‍🎓", { + "value" : "👨🏿‍🎓", "keywords" : [ "dark skin tone", "graduate", "man", "man student: dark skin tone", "student" - ], - "value" : "👨🏿‍🎓" + ] }, "👩‍🎓", { @@ -19684,25 +19683,25 @@ }, "👩🏻‍🎓", { - "value" : "👩🏻‍🎓", "keywords" : [ "graduate", "light skin tone", "student", "woman", "woman student: light skin tone" - ] + ], + "value" : "👩🏻‍🎓" }, "👩🏼‍🎓", { - "value" : "👩🏼‍🎓", "keywords" : [ "graduate", "medium-light skin tone", "student", "woman", "woman student: medium-light skin tone" - ] + ], + "value" : "👩🏼‍🎓" }, "👩🏽‍🎓", { @@ -19739,17 +19738,16 @@ }, "🧑‍🏫", { + "value" : "🧑‍🏫", "keywords" : [ "instructor", "lecturer", "professor", "teacher" - ], - "value" : "🧑‍🏫" + ] }, "🧑🏻‍🏫", { - "value" : "🧑🏻‍🏫", "keywords" : [ "instructor", "lecturer", @@ -19757,11 +19755,11 @@ "professor", "teacher", "teacher: light skin tone" - ] + ], + "value" : "🧑🏻‍🏫" }, "🧑🏼‍🏫", { - "value" : "🧑🏼‍🏫", "keywords" : [ "instructor", "lecturer", @@ -19769,11 +19767,11 @@ "professor", "teacher", "teacher: medium-light skin tone" - ] + ], + "value" : "🧑🏼‍🏫" }, "🧑🏽‍🏫", { - "value" : "🧑🏽‍🏫", "keywords" : [ "instructor", "lecturer", @@ -19781,7 +19779,8 @@ "professor", "teacher", "teacher: medium skin tone" - ] + ], + "value" : "🧑🏽‍🏫" }, "🧑🏾‍🏫", { @@ -19809,14 +19808,14 @@ }, "👨‍🏫", { - "value" : "👨‍🏫", "keywords" : [ "instructor", "lecturer", "man", "professor", "teacher" - ] + ], + "value" : "👨‍🏫" }, "👨🏻‍🏫", { @@ -19833,7 +19832,6 @@ }, "👨🏼‍🏫", { - "value" : "👨🏼‍🏫", "keywords" : [ "instructor", "lecturer", @@ -19842,7 +19840,8 @@ "medium-light skin tone", "professor", "teacher" - ] + ], + "value" : "👨🏼‍🏫" }, "👨🏽‍🏫", { @@ -19859,7 +19858,6 @@ }, "👨🏾‍🏫", { - "value" : "👨🏾‍🏫", "keywords" : [ "instructor", "lecturer", @@ -19868,10 +19866,12 @@ "medium-dark skin tone", "professor", "teacher" - ] + ], + "value" : "👨🏾‍🏫" }, "👨🏿‍🏫", { + "value" : "👨🏿‍🏫", "keywords" : [ "dark skin tone", "instructor", @@ -19880,8 +19880,7 @@ "man teacher: dark skin tone", "professor", "teacher" - ], - "value" : "👨🏿‍🏫" + ] }, "👩‍🏫", { @@ -19909,6 +19908,7 @@ }, "👩🏼‍🏫", { + "value" : "👩🏼‍🏫", "keywords" : [ "instructor", "lecturer", @@ -19917,8 +19917,7 @@ "teacher", "woman", "woman teacher: medium-light skin tone" - ], - "value" : "👩🏼‍🏫" + ] }, "👩🏽‍🏫", { @@ -19948,6 +19947,7 @@ }, "👩🏿‍🏫", { + "value" : "👩🏿‍🏫", "keywords" : [ "dark skin tone", "instructor", @@ -19956,18 +19956,17 @@ "teacher", "woman", "woman teacher: dark skin tone" - ], - "value" : "👩🏿‍🏫" + ] }, "🧑‍⚖️", { - "value" : "🧑‍⚖️", "keywords" : [ "judge", "justice", "law", "scales" - ] + ], + "value" : "🧑‍⚖️" }, "🧑🏻‍⚖️", { @@ -20007,6 +20006,7 @@ }, "🧑🏾‍⚖️", { + "value" : "🧑🏾‍⚖️", "keywords" : [ "judge", "judge: medium-dark skin tone", @@ -20014,8 +20014,7 @@ "law", "medium-dark skin tone", "scales" - ], - "value" : "🧑🏾‍⚖️" + ] }, "🧑🏿‍⚖️", { @@ -20031,17 +20030,18 @@ }, "👨‍⚖️", { - "value" : "👨‍⚖️", "keywords" : [ "judge", "justice", "law", "man", "scales" - ] + ], + "value" : "👨‍⚖️" }, "👨🏻‍⚖️", { + "value" : "👨🏻‍⚖️", "keywords" : [ "judge", "justice", @@ -20050,11 +20050,11 @@ "man", "man judge: light skin tone", "scales" - ], - "value" : "👨🏻‍⚖️" + ] }, "👨🏼‍⚖️", { + "value" : "👨🏼‍⚖️", "keywords" : [ "judge", "justice", @@ -20063,8 +20063,7 @@ "man judge: medium-light skin tone", "medium-light skin tone", "scales" - ], - "value" : "👨🏼‍⚖️" + ] }, "👨🏽‍⚖️", { @@ -20081,7 +20080,6 @@ }, "👨🏾‍⚖️", { - "value" : "👨🏾‍⚖️", "keywords" : [ "judge", "justice", @@ -20090,7 +20088,8 @@ "man judge: medium-dark skin tone", "medium-dark skin tone", "scales" - ] + ], + "value" : "👨🏾‍⚖️" }, "👨🏿‍⚖️", { @@ -20107,14 +20106,14 @@ }, "👩‍⚖️", { - "value" : "👩‍⚖️", "keywords" : [ "judge", "justice", "law", "scales", "woman" - ] + ], + "value" : "👩‍⚖️" }, "👩🏻‍⚖️", { @@ -20183,23 +20182,23 @@ }, "🧑‍🌾", { - "value" : "🧑‍🌾", "keywords" : [ "farmer", "gardener", "rancher" - ] + ], + "value" : "🧑‍🌾" }, "🧑🏻‍🌾", { + "value" : "🧑🏻‍🌾", "keywords" : [ "farmer", "farmer: light skin tone", "gardener", "light skin tone", "rancher" - ], - "value" : "🧑🏻‍🌾" + ] }, "🧑🏼‍🌾", { @@ -20214,14 +20213,14 @@ }, "🧑🏽‍🌾", { + "value" : "🧑🏽‍🌾", "keywords" : [ "farmer", "farmer: medium skin tone", "gardener", "medium skin tone", "rancher" - ], - "value" : "🧑🏽‍🌾" + ] }, "🧑🏾‍🌾", { @@ -20247,17 +20246,16 @@ }, "👨‍🌾", { - "value" : "👨‍🌾", "keywords" : [ "farmer", "gardener", "man", "rancher" - ] + ], + "value" : "👨‍🌾" }, "👨🏻‍🌾", { - "value" : "👨🏻‍🌾", "keywords" : [ "farmer", "gardener", @@ -20265,10 +20263,12 @@ "man", "man farmer: light skin tone", "rancher" - ] + ], + "value" : "👨🏻‍🌾" }, "👨🏼‍🌾", { + "value" : "👨🏼‍🌾", "keywords" : [ "farmer", "gardener", @@ -20276,11 +20276,11 @@ "man farmer: medium-light skin tone", "medium-light skin tone", "rancher" - ], - "value" : "👨🏼‍🌾" + ] }, "👨🏽‍🌾", { + "value" : "👨🏽‍🌾", "keywords" : [ "farmer", "gardener", @@ -20288,8 +20288,7 @@ "man farmer: medium skin tone", "medium skin tone", "rancher" - ], - "value" : "👨🏽‍🌾" + ] }, "👨🏾‍🌾", { @@ -20305,6 +20304,7 @@ }, "👨🏿‍🌾", { + "value" : "👨🏿‍🌾", "keywords" : [ "dark skin tone", "farmer", @@ -20312,18 +20312,17 @@ "man", "man farmer: dark skin tone", "rancher" - ], - "value" : "👨🏿‍🌾" + ] }, "👩‍🌾", { - "value" : "👩‍🌾", "keywords" : [ "farmer", "gardener", "rancher", "woman" - ] + ], + "value" : "👩‍🌾" }, "👩🏻‍🌾", { @@ -20339,6 +20338,7 @@ }, "👩🏼‍🌾", { + "value" : "👩🏼‍🌾", "keywords" : [ "farmer", "gardener", @@ -20346,11 +20346,11 @@ "rancher", "woman", "woman farmer: medium-light skin tone" - ], - "value" : "👩🏼‍🌾" + ] }, "👩🏽‍🌾", { + "value" : "👩🏽‍🌾", "keywords" : [ "farmer", "gardener", @@ -20358,12 +20358,10 @@ "rancher", "woman", "woman farmer: medium skin tone" - ], - "value" : "👩🏽‍🌾" + ] }, "👩🏾‍🌾", { - "value" : "👩🏾‍🌾", "keywords" : [ "farmer", "gardener", @@ -20371,11 +20369,11 @@ "rancher", "woman", "woman farmer: medium-dark skin tone" - ] + ], + "value" : "👩🏾‍🌾" }, "👩🏿‍🌾", { - "value" : "👩🏿‍🌾", "keywords" : [ "dark skin tone", "farmer", @@ -20383,25 +20381,26 @@ "rancher", "woman", "woman farmer: dark skin tone" - ] + ], + "value" : "👩🏿‍🌾" }, "🧑‍🍳", { + "value" : "🧑‍🍳", "keywords" : [ "chef", "cook" - ], - "value" : "🧑‍🍳" + ] }, "🧑🏻‍🍳", { - "value" : "🧑🏻‍🍳", "keywords" : [ "chef", "cook", "cook: light skin tone", "light skin tone" - ] + ], + "value" : "🧑🏻‍🍳" }, "🧑🏼‍🍳", { @@ -20425,13 +20424,13 @@ }, "🧑🏾‍🍳", { + "value" : "🧑🏾‍🍳", "keywords" : [ "chef", "cook", "cook: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "🧑🏾‍🍳" + ] }, "🧑🏿‍🍳", { @@ -20487,14 +20486,14 @@ }, "👨🏾‍🍳", { - "value" : "👨🏾‍🍳", "keywords" : [ "chef", "cook", "man", "man cook: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "👨🏾‍🍳" }, "👨🏿‍🍳", { @@ -20509,45 +20508,45 @@ }, "👩‍🍳", { - "value" : "👩‍🍳", "keywords" : [ "chef", "cook", "woman" - ] + ], + "value" : "👩‍🍳" }, "👩🏻‍🍳", { - "value" : "👩🏻‍🍳", "keywords" : [ "chef", "cook", "light skin tone", "woman", "woman cook: light skin tone" - ] + ], + "value" : "👩🏻‍🍳" }, "👩🏼‍🍳", { - "value" : "👩🏼‍🍳", "keywords" : [ "chef", "cook", "medium-light skin tone", "woman", "woman cook: medium-light skin tone" - ] + ], + "value" : "👩🏼‍🍳" }, "👩🏽‍🍳", { + "value" : "👩🏽‍🍳", "keywords" : [ "chef", "cook", "medium skin tone", "woman", "woman cook: medium skin tone" - ], - "value" : "👩🏽‍🍳" + ] }, "👩🏾‍🍳", { @@ -20562,14 +20561,14 @@ }, "👩🏿‍🍳", { + "value" : "👩🏿‍🍳", "keywords" : [ "chef", "cook", "dark skin tone", "woman", "woman cook: dark skin tone" - ], - "value" : "👩🏿‍🍳" + ] }, "🧑‍🔧", { @@ -20583,6 +20582,7 @@ }, "🧑🏻‍🔧", { + "value" : "🧑🏻‍🔧", "keywords" : [ "electrician", "light skin tone", @@ -20590,8 +20590,7 @@ "mechanic: light skin tone", "plumber", "tradesperson" - ], - "value" : "🧑🏻‍🔧" + ] }, "🧑🏼‍🔧", { @@ -20619,7 +20618,6 @@ }, "🧑🏾‍🔧", { - "value" : "🧑🏾‍🔧", "keywords" : [ "electrician", "mechanic", @@ -20627,11 +20625,11 @@ "medium-dark skin tone", "plumber", "tradesperson" - ] + ], + "value" : "🧑🏾‍🔧" }, "🧑🏿‍🔧", { - "value" : "🧑🏿‍🔧", "keywords" : [ "dark skin tone", "electrician", @@ -20639,21 +20637,23 @@ "mechanic: dark skin tone", "plumber", "tradesperson" - ] + ], + "value" : "🧑🏿‍🔧" }, "👨‍🔧", { - "value" : "👨‍🔧", "keywords" : [ "electrician", "man", "mechanic", "plumber", "tradesperson" - ] + ], + "value" : "👨‍🔧" }, "👨🏻‍🔧", { + "value" : "👨🏻‍🔧", "keywords" : [ "electrician", "light skin tone", @@ -20662,8 +20662,7 @@ "mechanic", "plumber", "tradesperson" - ], - "value" : "👨🏻‍🔧" + ] }, "👨🏼‍🔧", { @@ -20680,7 +20679,6 @@ }, "👨🏽‍🔧", { - "value" : "👨🏽‍🔧", "keywords" : [ "electrician", "man", @@ -20689,10 +20687,12 @@ "medium skin tone", "plumber", "tradesperson" - ] + ], + "value" : "👨🏽‍🔧" }, "👨🏾‍🔧", { + "value" : "👨🏾‍🔧", "keywords" : [ "electrician", "man", @@ -20701,12 +20701,10 @@ "medium-dark skin tone", "plumber", "tradesperson" - ], - "value" : "👨🏾‍🔧" + ] }, "👨🏿‍🔧", { - "value" : "👨🏿‍🔧", "keywords" : [ "dark skin tone", "electrician", @@ -20715,18 +20713,19 @@ "mechanic", "plumber", "tradesperson" - ] + ], + "value" : "👨🏿‍🔧" }, "👩‍🔧", { + "value" : "👩‍🔧", "keywords" : [ "electrician", "mechanic", "plumber", "tradesperson", "woman" - ], - "value" : "👩‍🔧" + ] }, "👩🏻‍🔧", { @@ -20756,7 +20755,6 @@ }, "👩🏽‍🔧", { - "value" : "👩🏽‍🔧", "keywords" : [ "electrician", "mechanic", @@ -20765,7 +20763,8 @@ "tradesperson", "woman", "woman mechanic: medium skin tone" - ] + ], + "value" : "👩🏽‍🔧" }, "👩🏾‍🔧", { @@ -20782,6 +20781,7 @@ }, "👩🏿‍🔧", { + "value" : "👩🏿‍🔧", "keywords" : [ "dark skin tone", "electrician", @@ -20790,21 +20790,21 @@ "tradesperson", "woman", "woman mechanic: dark skin tone" - ], - "value" : "👩🏿‍🔧" + ] }, "🧑‍🏭", { + "value" : "🧑‍🏭", "keywords" : [ "assembly", "factory", "industrial", "worker" - ], - "value" : "🧑‍🏭" + ] }, "🧑🏻‍🏭", { + "value" : "🧑🏻‍🏭", "keywords" : [ "assembly", "factory", @@ -20812,8 +20812,7 @@ "industrial", "light skin tone", "worker" - ], - "value" : "🧑🏻‍🏭" + ] }, "🧑🏼‍🏭", { @@ -20829,7 +20828,6 @@ }, "🧑🏽‍🏭", { - "value" : "🧑🏽‍🏭", "keywords" : [ "assembly", "factory", @@ -20837,7 +20835,8 @@ "industrial", "medium skin tone", "worker" - ] + ], + "value" : "🧑🏽‍🏭" }, "🧑🏾‍🏭", { @@ -20853,6 +20852,7 @@ }, "🧑🏿‍🏭", { + "value" : "🧑🏿‍🏭", "keywords" : [ "assembly", "dark skin tone", @@ -20860,22 +20860,22 @@ "factory worker: dark skin tone", "industrial", "worker" - ], - "value" : "🧑🏿‍🏭" + ] }, "👨‍🏭", { + "value" : "👨‍🏭", "keywords" : [ "assembly", "factory", "industrial", "man", "worker" - ], - "value" : "👨‍🏭" + ] }, "👨🏻‍🏭", { + "value" : "👨🏻‍🏭", "keywords" : [ "assembly", "factory", @@ -20884,8 +20884,7 @@ "man", "man factory worker: light skin tone", "worker" - ], - "value" : "👨🏻‍🏭" + ] }, "👨🏼‍🏭", { @@ -20902,6 +20901,7 @@ }, "👨🏽‍🏭", { + "value" : "👨🏽‍🏭", "keywords" : [ "assembly", "factory", @@ -20910,12 +20910,10 @@ "man factory worker: medium skin tone", "medium skin tone", "worker" - ], - "value" : "👨🏽‍🏭" + ] }, "👨🏾‍🏭", { - "value" : "👨🏾‍🏭", "keywords" : [ "assembly", "factory", @@ -20924,7 +20922,8 @@ "man factory worker: medium-dark skin tone", "medium-dark skin tone", "worker" - ] + ], + "value" : "👨🏾‍🏭" }, "👨🏿‍🏭", { @@ -21004,6 +21003,7 @@ }, "👩🏿‍🏭", { + "value" : "👩🏿‍🏭", "keywords" : [ "assembly", "dark skin tone", @@ -21012,8 +21012,7 @@ "woman", "woman factory worker: dark skin tone", "worker" - ], - "value" : "👩🏿‍🏭" + ] }, "🧑‍💼", { @@ -21068,7 +21067,6 @@ }, "🧑🏾‍💼", { - "value" : "🧑🏾‍💼", "keywords" : [ "architect", "business", @@ -21077,11 +21075,11 @@ "office worker", "office worker: medium-dark skin tone", "white-collar" - ] + ], + "value" : "🧑🏾‍💼" }, "🧑🏿‍💼", { - "value" : "🧑🏿‍💼", "keywords" : [ "architect", "business", @@ -21090,7 +21088,8 @@ "office worker", "office worker: dark skin tone", "white-collar" - ] + ], + "value" : "🧑🏿‍💼" }, "👨‍💼", { @@ -21149,6 +21148,7 @@ }, "👨🏾‍💼", { + "value" : "👨🏾‍💼", "keywords" : [ "architect", "business", @@ -21158,8 +21158,7 @@ "manager", "medium-dark skin tone", "white-collar" - ], - "value" : "👨🏾‍💼" + ] }, "👨🏿‍💼", { @@ -21190,7 +21189,6 @@ }, "👩🏻‍💼", { - "value" : "👩🏻‍💼", "keywords" : [ "architect", "business", @@ -21200,7 +21198,8 @@ "woman", "woman office worker", "woman office worker: light skin tone" - ] + ], + "value" : "👩🏻‍💼" }, "👩🏼‍💼", { @@ -21337,6 +21336,7 @@ }, "👨‍🔬", { + "value" : "👨‍🔬", "keywords" : [ "biologist", "chemist", @@ -21345,11 +21345,11 @@ "mathematician", "physicist", "scientist" - ], - "value" : "👨‍🔬" + ] }, "👨🏻‍🔬", { + "value" : "👨🏻‍🔬", "keywords" : [ "biologist", "chemist", @@ -21359,8 +21359,7 @@ "man scientist: light skin tone", "physicist", "scientist" - ], - "value" : "👨🏻‍🔬" + ] }, "👨🏼‍🔬", { @@ -21406,7 +21405,6 @@ }, "👨🏿‍🔬", { - "value" : "👨🏿‍🔬", "keywords" : [ "biologist", "chemist", @@ -21416,7 +21414,8 @@ "man scientist: dark skin tone", "physicist", "scientist" - ] + ], + "value" : "👨🏿‍🔬" }, "👩‍🔬", { @@ -21433,7 +21432,6 @@ }, "👩🏻‍🔬", { - "value" : "👩🏻‍🔬", "keywords" : [ "biologist", "chemist", @@ -21443,7 +21441,8 @@ "scientist", "woman", "woman scientist: light skin tone" - ] + ], + "value" : "👩🏻‍🔬" }, "👩🏼‍🔬", { @@ -21489,7 +21488,6 @@ }, "👩🏿‍🔬", { - "value" : "👩🏿‍🔬", "keywords" : [ "biologist", "chemist", @@ -21499,7 +21497,8 @@ "scientist", "woman", "woman scientist: dark skin tone" - ] + ], + "value" : "👩🏿‍🔬" }, "🧑‍💻", { @@ -21541,7 +21540,6 @@ }, "🧑🏽‍💻", { - "value" : "🧑🏽‍💻", "keywords" : [ "coder", "developer", @@ -21550,11 +21548,11 @@ "software", "technologist", "technologist: medium skin tone" - ] + ], + "value" : "🧑🏽‍💻" }, "🧑🏾‍💻", { - "value" : "🧑🏾‍💻", "keywords" : [ "coder", "developer", @@ -21563,7 +21561,8 @@ "software", "technologist", "technologist: medium-dark skin tone" - ] + ], + "value" : "🧑🏾‍💻" }, "🧑🏿‍💻", { @@ -21580,7 +21579,6 @@ }, "👨‍💻", { - "value" : "👨‍💻", "keywords" : [ "coder", "computer", @@ -21589,7 +21587,8 @@ "man", "software", "technologist" - ] + ], + "value" : "👨‍💻" }, "👨🏻‍💻", { @@ -21635,7 +21634,6 @@ }, "👨🏾‍💻", { - "value" : "👨🏾‍💻", "keywords" : [ "coder", "developer", @@ -21645,7 +21643,8 @@ "medium-dark skin tone", "software", "technologist" - ] + ], + "value" : "👨🏾‍💻" }, "👨🏿‍💻", { @@ -21690,6 +21689,7 @@ }, "👩🏼‍💻", { + "value" : "👩🏼‍💻", "keywords" : [ "coder", "developer", @@ -21699,11 +21699,11 @@ "technologist", "woman", "woman technologist: medium-light skin tone" - ], - "value" : "👩🏼‍💻" + ] }, "👩🏽‍💻", { + "value" : "👩🏽‍💻", "keywords" : [ "coder", "developer", @@ -21713,8 +21713,7 @@ "technologist", "woman", "woman technologist: medium skin tone" - ], - "value" : "👩🏽‍💻" + ] }, "👩🏾‍💻", { @@ -21732,6 +21731,7 @@ }, "👩🏿‍💻", { + "value" : "👩🏿‍💻", "keywords" : [ "coder", "dark skin tone", @@ -21741,11 +21741,11 @@ "technologist", "woman", "woman technologist: dark skin tone" - ], - "value" : "👩🏿‍💻" + ] }, "🧑‍🎤", { + "value" : "🧑‍🎤", "keywords" : [ "actor", "entertainer", @@ -21753,11 +21753,11 @@ "rockstar", "singer", "star" - ], - "value" : "🧑‍🎤" + ] }, "🧑🏻‍🎤", { + "value" : "🧑🏻‍🎤", "keywords" : [ "actor", "entertainer", @@ -21766,8 +21766,7 @@ "singer", "singer: light skin tone", "star" - ], - "value" : "🧑🏻‍🎤" + ] }, "🧑🏼‍🎤", { @@ -21797,7 +21796,6 @@ }, "🧑🏾‍🎤", { - "value" : "🧑🏾‍🎤", "keywords" : [ "actor", "entertainer", @@ -21806,11 +21804,11 @@ "singer", "singer: medium-dark skin tone", "star" - ] + ], + "value" : "🧑🏾‍🎤" }, "🧑🏿‍🎤", { - "value" : "🧑🏿‍🎤", "keywords" : [ "actor", "dark skin tone", @@ -21819,7 +21817,8 @@ "singer", "singer: dark skin tone", "star" - ] + ], + "value" : "🧑🏿‍🎤" }, "👨‍🎤", { @@ -21850,7 +21849,6 @@ }, "👨🏼‍🎤", { - "value" : "👨🏼‍🎤", "keywords" : [ "actor", "entertainer", @@ -21860,7 +21858,8 @@ "rock", "singer", "star" - ] + ], + "value" : "👨🏼‍🎤" }, "👨🏽‍🎤", { @@ -21892,7 +21891,6 @@ }, "👨🏿‍🎤", { - "value" : "👨🏿‍🎤", "keywords" : [ "actor", "dark skin tone", @@ -21902,7 +21900,8 @@ "rock", "singer", "star" - ] + ], + "value" : "👨🏿‍🎤" }, "👩‍🎤", { @@ -21933,7 +21932,6 @@ }, "👩🏼‍🎤", { - "value" : "👩🏼‍🎤", "keywords" : [ "actor", "entertainer", @@ -21943,11 +21941,11 @@ "star", "woman", "woman singer: medium-light skin tone" - ] + ], + "value" : "👩🏼‍🎤" }, "👩🏽‍🎤", { - "value" : "👩🏽‍🎤", "keywords" : [ "actor", "entertainer", @@ -21957,7 +21955,8 @@ "star", "woman", "woman singer: medium skin tone" - ] + ], + "value" : "👩🏽‍🎤" }, "👩🏾‍🎤", { @@ -21975,7 +21974,6 @@ }, "👩🏿‍🎤", { - "value" : "👩🏿‍🎤", "keywords" : [ "actor", "dark skin tone", @@ -21985,15 +21983,16 @@ "star", "woman", "woman singer: dark skin tone" - ] + ], + "value" : "👩🏿‍🎤" }, "🧑‍🎨", { - "value" : "🧑‍🎨", "keywords" : [ "artist", "palette" - ] + ], + "value" : "🧑‍🎨" }, "🧑🏻‍🎨", { @@ -22007,23 +22006,23 @@ }, "🧑🏼‍🎨", { + "value" : "🧑🏼‍🎨", "keywords" : [ "artist", "artist: medium-light skin tone", "medium-light skin tone", "palette" - ], - "value" : "🧑🏼‍🎨" + ] }, "🧑🏽‍🎨", { - "value" : "🧑🏽‍🎨", "keywords" : [ "artist", "artist: medium skin tone", "medium skin tone", "palette" - ] + ], + "value" : "🧑🏽‍🎨" }, "🧑🏾‍🎨", { @@ -22037,13 +22036,13 @@ }, "🧑🏿‍🎨", { + "value" : "🧑🏿‍🎨", "keywords" : [ "artist", "artist: dark skin tone", "dark skin tone", "palette" - ], - "value" : "🧑🏿‍🎨" + ] }, "👨‍🎨", { @@ -22078,78 +22077,78 @@ }, "👨🏽‍🎨", { + "value" : "👨🏽‍🎨", "keywords" : [ "artist", "man", "man artist: medium skin tone", "medium skin tone", "palette" - ], - "value" : "👨🏽‍🎨" + ] }, "👨🏾‍🎨", { - "value" : "👨🏾‍🎨", "keywords" : [ "artist", "man", "man artist: medium-dark skin tone", "medium-dark skin tone", "palette" - ] + ], + "value" : "👨🏾‍🎨" }, "👨🏿‍🎨", { - "value" : "👨🏿‍🎨", "keywords" : [ "artist", "dark skin tone", "man", "man artist: dark skin tone", "palette" - ] + ], + "value" : "👨🏿‍🎨" }, "👩‍🎨", { - "value" : "👩‍🎨", "keywords" : [ "artist", "palette", "woman" - ] + ], + "value" : "👩‍🎨" }, "👩🏻‍🎨", { + "value" : "👩🏻‍🎨", "keywords" : [ "artist", "light skin tone", "palette", "woman", "woman artist: light skin tone" - ], - "value" : "👩🏻‍🎨" + ] }, "👩🏼‍🎨", { - "value" : "👩🏼‍🎨", "keywords" : [ "artist", "medium-light skin tone", "palette", "woman", "woman artist: medium-light skin tone" - ] + ], + "value" : "👩🏼‍🎨" }, "👩🏽‍🎨", { - "value" : "👩🏽‍🎨", "keywords" : [ "artist", "medium skin tone", "palette", "woman", "woman artist: medium skin tone" - ] + ], + "value" : "👩🏽‍🎨" }, "👩🏾‍🎨", { @@ -22175,11 +22174,11 @@ }, "🧑‍✈️", { + "value" : "🧑‍✈️", "keywords" : [ "pilot", "plane" - ], - "value" : "🧑‍✈️" + ] }, "🧑🏻‍✈️", { @@ -22203,13 +22202,13 @@ }, "🧑🏽‍✈️", { - "value" : "🧑🏽‍✈️", "keywords" : [ "medium skin tone", "pilot", "pilot: medium skin tone", "plane" - ] + ], + "value" : "🧑🏽‍✈️" }, "🧑🏾‍✈️", { @@ -22223,13 +22222,13 @@ }, "🧑🏿‍✈️", { + "value" : "🧑🏿‍✈️", "keywords" : [ "dark skin tone", "pilot", "pilot: dark skin tone", "plane" - ], - "value" : "🧑🏿‍✈️" + ] }, "👨‍✈️", { @@ -22242,14 +22241,14 @@ }, "👨🏻‍✈️", { - "value" : "👨🏻‍✈️", "keywords" : [ "light skin tone", "man", "man pilot: light skin tone", "pilot", "plane" - ] + ], + "value" : "👨🏻‍✈️" }, "👨🏼‍✈️", { @@ -22264,14 +22263,14 @@ }, "👨🏽‍✈️", { + "value" : "👨🏽‍✈️", "keywords" : [ "man", "man pilot: medium skin tone", "medium skin tone", "pilot", "plane" - ], - "value" : "👨🏽‍✈️" + ] }, "👨🏾‍✈️", { @@ -22306,14 +22305,14 @@ }, "👩🏻‍✈️", { + "value" : "👩🏻‍✈️", "keywords" : [ "light skin tone", "pilot", "plane", "woman", "woman pilot: light skin tone" - ], - "value" : "👩🏻‍✈️" + ] }, "👩🏼‍✈️", { @@ -22350,14 +22349,14 @@ }, "👩🏿‍✈️", { - "value" : "👩🏿‍✈️", "keywords" : [ "dark skin tone", "pilot", "plane", "woman", "woman pilot: dark skin tone" - ] + ], + "value" : "👩🏿‍✈️" }, "🧑‍🚀", { @@ -22370,23 +22369,23 @@ }, "🧑🏻‍🚀", { - "value" : "🧑🏻‍🚀", "keywords" : [ "astronaut", "astronaut: light skin tone", "light skin tone", "rocket" - ] + ], + "value" : "🧑🏻‍🚀" }, "🧑🏼‍🚀", { + "value" : "🧑🏼‍🚀", "keywords" : [ "astronaut", "astronaut: medium-light skin tone", "medium-light skin tone", "rocket" - ], - "value" : "🧑🏼‍🚀" + ] }, "🧑🏽‍🚀", { @@ -22410,23 +22409,23 @@ }, "🧑🏿‍🚀", { - "value" : "🧑🏿‍🚀", "keywords" : [ "astronaut", "astronaut: dark skin tone", "dark skin tone", "rocket" - ] + ], + "value" : "🧑🏿‍🚀" }, "👨‍🚀", { - "value" : "👨‍🚀", "keywords" : [ "astronaut", "man", "rocket", "space" - ] + ], + "value" : "👨‍🚀" }, "👨🏻‍🚀", { @@ -22452,14 +22451,14 @@ }, "👨🏽‍🚀", { + "value" : "👨🏽‍🚀", "keywords" : [ "astronaut", "man", "man astronaut: medium skin tone", "medium skin tone", "rocket" - ], - "value" : "👨🏽‍🚀" + ] }, "👨🏾‍🚀", { @@ -22485,24 +22484,24 @@ }, "👩‍🚀", { - "value" : "👩‍🚀", "keywords" : [ "astronaut", "rocket", "space", "woman" - ] + ], + "value" : "👩‍🚀" }, "👩🏻‍🚀", { + "value" : "👩🏻‍🚀", "keywords" : [ "astronaut", "light skin tone", "rocket", "woman", "woman astronaut: light skin tone" - ], - "value" : "👩🏻‍🚀" + ] }, "👩🏼‍🚀", { @@ -22517,67 +22516,67 @@ }, "👩🏽‍🚀", { + "value" : "👩🏽‍🚀", "keywords" : [ "astronaut", "medium skin tone", "rocket", "woman", "woman astronaut: medium skin tone" - ], - "value" : "👩🏽‍🚀" + ] }, "👩🏾‍🚀", { - "value" : "👩🏾‍🚀", "keywords" : [ "astronaut", "medium-dark skin tone", "rocket", "woman", "woman astronaut: medium-dark skin tone" - ] + ], + "value" : "👩🏾‍🚀" }, "👩🏿‍🚀", { + "value" : "👩🏿‍🚀", "keywords" : [ "astronaut", "dark skin tone", "rocket", "woman", "woman astronaut: dark skin tone" - ], - "value" : "👩🏿‍🚀" + ] }, "🧑‍🚒", { + "value" : "🧑‍🚒", "keywords" : [ "fire", "firefighter", "firetruck" - ], - "value" : "🧑‍🚒" + ] }, "🧑🏻‍🚒", { - "value" : "🧑🏻‍🚒", "keywords" : [ "fire", "firefighter", "firefighter: light skin tone", "firetruck", "light skin tone" - ] + ], + "value" : "🧑🏻‍🚒" }, "🧑🏼‍🚒", { + "value" : "🧑🏼‍🚒", "keywords" : [ "fire", "firefighter", "firefighter: medium-light skin tone", "firetruck", "medium-light skin tone" - ], - "value" : "🧑🏼‍🚒" + ] }, "🧑🏽‍🚒", { @@ -22603,14 +22602,14 @@ }, "🧑🏿‍🚒", { + "value" : "🧑🏿‍🚒", "keywords" : [ "dark skin tone", "fire", "firefighter", "firefighter: dark skin tone", "firetruck" - ], - "value" : "🧑🏿‍🚒" + ] }, "👨‍🚒", { @@ -22646,25 +22645,25 @@ }, "👨🏽‍🚒", { - "value" : "👨🏽‍🚒", "keywords" : [ "firefighter", "firetruck", "man", "man firefighter: medium skin tone", "medium skin tone" - ] + ], + "value" : "👨🏽‍🚒" }, "👨🏾‍🚒", { + "value" : "👨🏾‍🚒", "keywords" : [ "firefighter", "firetruck", "man", "man firefighter: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "👨🏾‍🚒" + ] }, "👨🏿‍🚒", { @@ -22679,13 +22678,13 @@ }, "👩‍🚒", { - "value" : "👩‍🚒", "keywords" : [ "fire", "firefighter", "firetruck", "woman" - ] + ], + "value" : "👩‍🚒" }, "👩🏻‍🚒", { @@ -22722,28 +22721,29 @@ }, "👩🏾‍🚒", { - "value" : "👩🏾‍🚒", "keywords" : [ "firefighter", "firetruck", "medium-dark skin tone", "woman", "woman firefighter: medium-dark skin tone" - ] + ], + "value" : "👩🏾‍🚒" }, "👩🏿‍🚒", { + "value" : "👩🏿‍🚒", "keywords" : [ "dark skin tone", "firefighter", "firetruck", "woman", "woman firefighter: dark skin tone" - ], - "value" : "👩🏿‍🚒" + ] }, "👮", { + "value" : "👮", "keywords" : [ "apprehend", "arrest", @@ -22755,8 +22755,7 @@ "police", "pulled", "undercover" - ], - "value" : "👮" + ] }, "👮🏻", { @@ -22771,14 +22770,14 @@ }, "👮🏼", { - "value" : "👮🏼", "keywords" : [ "cop", "medium-light skin tone", "officer", "police", "police officer: medium-light skin tone" - ] + ], + "value" : "👮🏼" }, "👮🏽", { @@ -22793,25 +22792,25 @@ }, "👮🏾", { - "value" : "👮🏾", "keywords" : [ "cop", "medium-dark skin tone", "officer", "police", "police officer: medium-dark skin tone" - ] + ], + "value" : "👮🏾" }, "👮🏿", { + "value" : "👮🏿", "keywords" : [ "cop", "dark skin tone", "officer", "police", "police officer: dark skin tone" - ], - "value" : "👮🏿" + ] }, "👮‍♂️", { @@ -22868,7 +22867,6 @@ }, "👮🏾‍♂️", { - "value" : "👮🏾‍♂️", "keywords" : [ "cop", "man", @@ -22876,10 +22874,12 @@ "medium-dark skin tone", "officer", "police" - ] + ], + "value" : "👮🏾‍♂️" }, "👮🏿‍♂️", { + "value" : "👮🏿‍♂️", "keywords" : [ "cop", "dark skin tone", @@ -22887,11 +22887,11 @@ "man police officer: dark skin tone", "officer", "police" - ], - "value" : "👮🏿‍♂️" + ] }, "👮‍♀️", { + "value" : "👮‍♀️", "keywords" : [ "apprehend", "arrest", @@ -22904,8 +22904,7 @@ "pulled", "undercover", "woman" - ], - "value" : "👮‍♀️" + ] }, "👮🏻‍♀️", { @@ -22921,7 +22920,6 @@ }, "👮🏼‍♀️", { - "value" : "👮🏼‍♀️", "keywords" : [ "cop", "medium-light skin tone", @@ -22929,11 +22927,11 @@ "police", "woman", "woman police officer: medium-light skin tone" - ] + ], + "value" : "👮🏼‍♀️" }, "👮🏽‍♀️", { - "value" : "👮🏽‍♀️", "keywords" : [ "cop", "medium skin tone", @@ -22941,10 +22939,12 @@ "police", "woman", "woman police officer: medium skin tone" - ] + ], + "value" : "👮🏽‍♀️" }, "👮🏾‍♀️", { + "value" : "👮🏾‍♀️", "keywords" : [ "cop", "medium-dark skin tone", @@ -22952,12 +22952,10 @@ "police", "woman", "woman police officer: medium-dark skin tone" - ], - "value" : "👮🏾‍♀️" + ] }, "👮🏿‍♀️", { - "value" : "👮🏿‍♀️", "keywords" : [ "cop", "dark skin tone", @@ -22965,7 +22963,8 @@ "police", "woman", "woman police officer: dark skin tone" - ] + ], + "value" : "👮🏿‍♀️" }, "🕵️", { @@ -22978,14 +22977,14 @@ }, "🕵🏻", { + "value" : "🕵🏻", "keywords" : [ "detective", "detective: light skin tone", "light skin tone", "sleuth", "spy" - ], - "value" : "🕵🏻" + ] }, "🕵🏼", { @@ -23011,14 +23010,14 @@ }, "🕵🏾", { - "value" : "🕵🏾", "keywords" : [ "detective", "detective: medium-dark skin tone", "medium-dark skin tone", "sleuth", "spy" - ] + ], + "value" : "🕵🏾" }, "🕵🏿", { @@ -23033,17 +23032,16 @@ }, "🕵️‍♂️", { + "value" : "🕵️‍♂️", "keywords" : [ "detective", "man", "sleuth", "spy" - ], - "value" : "🕵️‍♂️" + ] }, "🕵🏻‍♂️", { - "value" : "🕵🏻‍♂️", "keywords" : [ "detective", "light skin tone", @@ -23051,11 +23049,11 @@ "man detective: light skin tone", "sleuth", "spy" - ] + ], + "value" : "🕵🏻‍♂️" }, "🕵🏼‍♂️", { - "value" : "🕵🏼‍♂️", "keywords" : [ "detective", "man", @@ -23063,7 +23061,8 @@ "medium-light skin tone", "sleuth", "spy" - ] + ], + "value" : "🕵🏼‍♂️" }, "🕵🏽‍♂️", { @@ -23079,6 +23078,7 @@ }, "🕵🏾‍♂️", { + "value" : "🕵🏾‍♂️", "keywords" : [ "detective", "man", @@ -23086,11 +23086,11 @@ "medium-dark skin tone", "sleuth", "spy" - ], - "value" : "🕵🏾‍♂️" + ] }, "🕵🏿‍♂️", { + "value" : "🕵🏿‍♂️", "keywords" : [ "dark skin tone", "detective", @@ -23098,18 +23098,17 @@ "man detective: dark skin tone", "sleuth", "spy" - ], - "value" : "🕵🏿‍♂️" + ] }, "🕵️‍♀️", { - "value" : "🕵️‍♀️", "keywords" : [ "detective", "sleuth", "spy", "woman" - ] + ], + "value" : "🕵️‍♀️" }, "🕵🏻‍♀️", { @@ -23137,6 +23136,7 @@ }, "🕵🏽‍♀️", { + "value" : "🕵🏽‍♀️", "keywords" : [ "detective", "medium skin tone", @@ -23144,12 +23144,10 @@ "spy", "woman", "woman detective: medium skin tone" - ], - "value" : "🕵🏽‍♀️" + ] }, "🕵🏾‍♀️", { - "value" : "🕵🏾‍♀️", "keywords" : [ "detective", "medium-dark skin tone", @@ -23157,7 +23155,8 @@ "spy", "woman", "woman detective: medium-dark skin tone" - ] + ], + "value" : "🕵🏾‍♀️" }, "🕵🏿‍♀️", { @@ -23173,32 +23172,32 @@ }, "💂", { + "value" : "💂", "keywords" : [ "buckingham", "guard", "helmet", "london", "palace" - ], - "value" : "💂" + ] }, "💂🏻", { + "value" : "💂🏻", "keywords" : [ "guard", "guard: light skin tone", "light skin tone" - ], - "value" : "💂🏻" + ] }, "💂🏼", { + "value" : "💂🏼", "keywords" : [ "guard", "guard: medium-light skin tone", "medium-light skin tone" - ], - "value" : "💂🏼" + ] }, "💂🏽", { @@ -23211,12 +23210,12 @@ }, "💂🏾", { + "value" : "💂🏾", "keywords" : [ "guard", "guard: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "💂🏾" + ] }, "💂🏿", { @@ -23229,6 +23228,7 @@ }, "💂‍♂️", { + "value" : "💂‍♂️", "keywords" : [ "buckingham", "guard", @@ -23236,28 +23236,27 @@ "london", "man", "palace" - ], - "value" : "💂‍♂️" + ] }, "💂🏻‍♂️", { - "value" : "💂🏻‍♂️", "keywords" : [ "guard", "light skin tone", "man", "man guard: light skin tone" - ] + ], + "value" : "💂🏻‍♂️" }, "💂🏼‍♂️", { - "value" : "💂🏼‍♂️", "keywords" : [ "guard", "man", "man guard: medium-light skin tone", "medium-light skin tone" - ] + ], + "value" : "💂🏼‍♂️" }, "💂🏽‍♂️", { @@ -23271,27 +23270,26 @@ }, "💂🏾‍♂️", { + "value" : "💂🏾‍♂️", "keywords" : [ "guard", "man", "man guard: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "💂🏾‍♂️" + ] }, "💂🏿‍♂️", { - "value" : "💂🏿‍♂️", "keywords" : [ "dark skin tone", "guard", "man", "man guard: dark skin tone" - ] + ], + "value" : "💂🏿‍♂️" }, "💂‍♀️", { - "value" : "💂‍♀️", "keywords" : [ "buckingham", "guard", @@ -23299,7 +23297,8 @@ "london", "palace", "woman" - ] + ], + "value" : "💂‍♀️" }, "💂🏻‍♀️", { @@ -23419,7 +23418,6 @@ }, "🥷🏿", { - "value" : "🥷🏿", "keywords" : [ "dark skin tone", "fighter", @@ -23427,7 +23425,8 @@ "ninja", "ninja: dark skin tone", "stealth" - ] + ], + "value" : "🥷🏿" }, "👷", { @@ -23449,47 +23448,47 @@ }, "👷🏻", { - "value" : "👷🏻", "keywords" : [ "construction", "construction worker: light skin tone", "hat", "light skin tone", "worker" - ] + ], + "value" : "👷🏻" }, "👷🏼", { - "value" : "👷🏼", "keywords" : [ "construction", "construction worker: medium-light skin tone", "hat", "medium-light skin tone", "worker" - ] + ], + "value" : "👷🏼" }, "👷🏽", { - "value" : "👷🏽", "keywords" : [ "construction", "construction worker: medium skin tone", "hat", "medium skin tone", "worker" - ] + ], + "value" : "👷🏽" }, "👷🏾", { - "value" : "👷🏾", "keywords" : [ "construction", "construction worker: medium-dark skin tone", "hat", "medium-dark skin tone", "worker" - ] + ], + "value" : "👷🏾" }, "👷🏿", { @@ -23521,36 +23520,36 @@ }, "👷🏻‍♂️", { - "value" : "👷🏻‍♂️", "keywords" : [ "construction", "light skin tone", "man", "man construction worker: light skin tone", "worker" - ] + ], + "value" : "👷🏻‍♂️" }, "👷🏼‍♂️", { + "value" : "👷🏼‍♂️", "keywords" : [ "construction", "man", "man construction worker: medium-light skin tone", "medium-light skin tone", "worker" - ], - "value" : "👷🏼‍♂️" + ] }, "👷🏽‍♂️", { + "value" : "👷🏽‍♂️", "keywords" : [ "construction", "man", "man construction worker: medium skin tone", "medium skin tone", "worker" - ], - "value" : "👷🏽‍♂️" + ] }, "👷🏾‍♂️", { @@ -23576,7 +23575,6 @@ }, "👷‍♀️", { - "value" : "👷‍♀️", "keywords" : [ "build", "construction", @@ -23590,18 +23588,19 @@ "woman", "work", "worker" - ] + ], + "value" : "👷‍♀️" }, "👷🏻‍♀️", { - "value" : "👷🏻‍♀️", "keywords" : [ "construction", "light skin tone", "woman", "woman construction worker: light skin tone", "worker" - ] + ], + "value" : "👷🏻‍♀️" }, "👷🏼‍♀️", { @@ -23627,14 +23626,14 @@ }, "👷🏾‍♀️", { + "value" : "👷🏾‍♀️", "keywords" : [ "construction", "medium-dark skin tone", "woman", "woman construction worker: medium-dark skin tone", "worker" - ], - "value" : "👷🏾‍♀️" + ] }, "👷🏿‍♀️", { @@ -23675,7 +23674,6 @@ }, "🫅🏼", { - "value" : "🫅🏼", "keywords" : [ "medium-light skin tone", "monarch", @@ -23684,7 +23682,8 @@ "person with crown: medium-light skin tone", "regal", "royalty" - ] + ], + "value" : "🫅🏼" }, "🫅🏽", { @@ -23701,7 +23700,6 @@ }, "🫅🏾", { - "value" : "🫅🏾", "keywords" : [ "medium-dark skin tone", "monarch", @@ -23710,10 +23708,12 @@ "person with crown: medium-dark skin tone", "regal", "royalty" - ] + ], + "value" : "🫅🏾" }, "🫅🏿", { + "value" : "🫅🏿", "keywords" : [ "dark skin tone", "monarch", @@ -23722,12 +23722,10 @@ "person with crown: dark skin tone", "regal", "royalty" - ], - "value" : "🫅🏿" + ] }, "🤴", { - "value" : "🤴", "keywords" : [ "crown", "fairy", @@ -23738,7 +23736,8 @@ "royal", "royalty", "tale" - ] + ], + "value" : "🤴" }, "🤴🏻", { @@ -23778,12 +23777,12 @@ }, "🤴🏿", { + "value" : "🤴🏿", "keywords" : [ "dark skin tone", "prince", "prince: dark skin tone" - ], - "value" : "🤴🏿" + ] }, "👸", { @@ -23802,25 +23801,25 @@ }, "👸🏻", { + "value" : "👸🏻", "keywords" : [ "fairy tale", "fantasy", "light skin tone", "princess", "princess: light skin tone" - ], - "value" : "👸🏻" + ] }, "👸🏼", { - "value" : "👸🏼", "keywords" : [ "fairy tale", "fantasy", "medium-light skin tone", "princess", "princess: medium-light skin tone" - ] + ], + "value" : "👸🏼" }, "👸🏽", { @@ -23835,34 +23834,34 @@ }, "👸🏾", { - "value" : "👸🏾", "keywords" : [ "fairy tale", "fantasy", "medium-dark skin tone", "princess", "princess: medium-dark skin tone" - ] + ], + "value" : "👸🏾" }, "👸🏿", { - "value" : "👸🏿", "keywords" : [ "dark skin tone", "fairy tale", "fantasy", "princess", "princess: dark skin tone" - ] + ], + "value" : "👸🏿" }, "👳", { + "value" : "👳", "keywords" : [ "person", "turban", "wearing" - ], - "value" : "👳" + ] }, "👳🏻", { @@ -23896,23 +23895,23 @@ }, "👳🏾", { + "value" : "👳🏾", "keywords" : [ "medium-dark skin tone", "person wearing turban", "person wearing turban: medium-dark skin tone", "turban" - ], - "value" : "👳🏾" + ] }, "👳🏿", { + "value" : "👳🏿", "keywords" : [ "dark skin tone", "person wearing turban", "person wearing turban: dark skin tone", "turban" - ], - "value" : "👳🏿" + ] }, "👳‍♂️", { @@ -23925,25 +23924,25 @@ }, "👳🏻‍♂️", { - "value" : "👳🏻‍♂️", "keywords" : [ "light skin tone", "man", "man wearing turban", "man wearing turban: light skin tone", "turban" - ] + ], + "value" : "👳🏻‍♂️" }, "👳🏼‍♂️", { + "value" : "👳🏼‍♂️", "keywords" : [ "man", "man wearing turban", "man wearing turban: medium-light skin tone", "medium-light skin tone", "turban" - ], - "value" : "👳🏼‍♂️" + ] }, "👳🏽‍♂️", { @@ -23958,34 +23957,34 @@ }, "👳🏾‍♂️", { + "value" : "👳🏾‍♂️", "keywords" : [ "man", "man wearing turban", "man wearing turban: medium-dark skin tone", "medium-dark skin tone", "turban" - ], - "value" : "👳🏾‍♂️" + ] }, "👳🏿‍♂️", { + "value" : "👳🏿‍♂️", "keywords" : [ "dark skin tone", "man", "man wearing turban", "man wearing turban: dark skin tone", "turban" - ], - "value" : "👳🏿‍♂️" + ] }, "👳‍♀️", { + "value" : "👳‍♀️", "keywords" : [ "turban", "wearing", "woman" - ], - "value" : "👳‍♀️" + ] }, "👳🏻‍♀️", { @@ -24011,14 +24010,14 @@ }, "👳🏽‍♀️", { + "value" : "👳🏽‍♀️", "keywords" : [ "medium skin tone", "turban", "woman", "woman wearing turban", "woman wearing turban: medium skin tone" - ], - "value" : "👳🏽‍♀️" + ] }, "👳🏾‍♀️", { @@ -24059,6 +24058,7 @@ }, "👲🏻", { + "value" : "👲🏻", "keywords" : [ "cap", "gua pi mao", @@ -24068,12 +24068,10 @@ "person with skullcap", "person with skullcap: light skin tone", "skullcap" - ], - "value" : "👲🏻" + ] }, "👲🏼", { - "value" : "👲🏼", "keywords" : [ "cap", "gua pi mao", @@ -24083,10 +24081,12 @@ "person with skullcap", "person with skullcap: medium-light skin tone", "skullcap" - ] + ], + "value" : "👲🏼" }, "👲🏽", { + "value" : "👲🏽", "keywords" : [ "cap", "gua pi mao", @@ -24096,12 +24096,10 @@ "person with skullcap", "person with skullcap: medium skin tone", "skullcap" - ], - "value" : "👲🏽" + ] }, "👲🏾", { - "value" : "👲🏾", "keywords" : [ "cap", "gua pi mao", @@ -24111,7 +24109,8 @@ "person with skullcap", "person with skullcap: medium-dark skin tone", "skullcap" - ] + ], + "value" : "👲🏾" }, "👲🏿", { @@ -24129,7 +24128,6 @@ }, "🧕", { - "value" : "🧕", "keywords" : [ "bandana", "head", @@ -24139,10 +24137,12 @@ "mantilla", "tichel", "woman" - ] + ], + "value" : "🧕" }, "🧕🏻", { + "value" : "🧕🏻", "keywords" : [ "headscarf", "hijab", @@ -24151,12 +24151,10 @@ "tichel", "woman with headscarf", "woman with headscarf: light skin tone" - ], - "value" : "🧕🏻" + ] }, "🧕🏼", { - "value" : "🧕🏼", "keywords" : [ "headscarf", "hijab", @@ -24165,7 +24163,8 @@ "tichel", "woman with headscarf", "woman with headscarf: medium-light skin tone" - ] + ], + "value" : "🧕🏼" }, "🧕🏽", { @@ -24182,7 +24181,6 @@ }, "🧕🏾", { - "value" : "🧕🏾", "keywords" : [ "headscarf", "hijab", @@ -24191,10 +24189,12 @@ "tichel", "woman with headscarf", "woman with headscarf: medium-dark skin tone" - ] + ], + "value" : "🧕🏾" }, "🧕🏿", { + "value" : "🧕🏿", "keywords" : [ "dark skin tone", "headscarf", @@ -24203,18 +24203,17 @@ "tichel", "woman with headscarf", "woman with headscarf: dark skin tone" - ], - "value" : "🧕🏿" + ] }, "🤵", { + "value" : "🤵", "keywords" : [ "formal", "person", "tuxedo", "wedding" - ], - "value" : "🤵" + ] }, "🤵🏻", { @@ -24230,6 +24229,7 @@ }, "🤵🏼", { + "value" : "🤵🏼", "keywords" : [ "groom", "medium-light skin tone", @@ -24237,12 +24237,10 @@ "person in tuxedo", "person in tuxedo: medium-light skin tone", "tuxedo" - ], - "value" : "🤵🏼" + ] }, "🤵🏽", { - "value" : "🤵🏽", "keywords" : [ "groom", "medium skin tone", @@ -24250,7 +24248,8 @@ "person in tuxedo", "person in tuxedo: medium skin tone", "tuxedo" - ] + ], + "value" : "🤵🏽" }, "🤵🏾", { @@ -24266,7 +24265,6 @@ }, "🤵🏿", { - "value" : "🤵🏿", "keywords" : [ "dark skin tone", "groom", @@ -24274,7 +24272,8 @@ "person in tuxedo", "person in tuxedo: dark skin tone", "tuxedo" - ] + ], + "value" : "🤵🏿" }, "🤵‍♂️", { @@ -24300,79 +24299,79 @@ }, "🤵🏼‍♂️", { - "value" : "🤵🏼‍♂️", "keywords" : [ "man", "man in tuxedo", "man in tuxedo: medium-light skin tone", "medium-light skin tone", "tuxedo" - ] + ], + "value" : "🤵🏼‍♂️" }, "🤵🏽‍♂️", { - "value" : "🤵🏽‍♂️", "keywords" : [ "man", "man in tuxedo", "man in tuxedo: medium skin tone", "medium skin tone", "tuxedo" - ] + ], + "value" : "🤵🏽‍♂️" }, "🤵🏾‍♂️", { + "value" : "🤵🏾‍♂️", "keywords" : [ "man", "man in tuxedo", "man in tuxedo: medium-dark skin tone", "medium-dark skin tone", "tuxedo" - ], - "value" : "🤵🏾‍♂️" + ] }, "🤵🏿‍♂️", { - "value" : "🤵🏿‍♂️", "keywords" : [ "dark skin tone", "man", "man in tuxedo", "man in tuxedo: dark skin tone", "tuxedo" - ] + ], + "value" : "🤵🏿‍♂️" }, "🤵‍♀️", { - "value" : "🤵‍♀️", "keywords" : [ "formal", "tuxedo", "wedding", "woman" - ] + ], + "value" : "🤵‍♀️" }, "🤵🏻‍♀️", { + "value" : "🤵🏻‍♀️", "keywords" : [ "light skin tone", "tuxedo", "woman", "woman in tuxedo", "woman in tuxedo: light skin tone" - ], - "value" : "🤵🏻‍♀️" + ] }, "🤵🏼‍♀️", { + "value" : "🤵🏼‍♀️", "keywords" : [ "medium-light skin tone", "tuxedo", "woman", "woman in tuxedo", "woman in tuxedo: medium-light skin tone" - ], - "value" : "🤵🏼‍♀️" + ] }, "🤵🏽‍♀️", { @@ -24398,23 +24397,23 @@ }, "🤵🏿‍♀️", { - "value" : "🤵🏿‍♀️", "keywords" : [ "dark skin tone", "tuxedo", "woman", "woman in tuxedo", "woman in tuxedo: dark skin tone" - ] + ], + "value" : "🤵🏿‍♀️" }, "👰", { + "value" : "👰", "keywords" : [ "person", "veil", "wedding" - ], - "value" : "👰" + ] }, "👰🏻", { @@ -24431,6 +24430,7 @@ }, "👰🏼", { + "value" : "👰🏼", "keywords" : [ "bride", "medium-light skin tone", @@ -24439,12 +24439,10 @@ "person with veil: medium-light skin tone", "veil", "wedding" - ], - "value" : "👰🏼" + ] }, "👰🏽", { - "value" : "👰🏽", "keywords" : [ "bride", "medium skin tone", @@ -24453,7 +24451,8 @@ "person with veil: medium skin tone", "veil", "wedding" - ] + ], + "value" : "👰🏽" }, "👰🏾", { @@ -24470,7 +24469,6 @@ }, "👰🏿", { - "value" : "👰🏿", "keywords" : [ "bride", "dark skin tone", @@ -24479,27 +24477,28 @@ "person with veil: dark skin tone", "veil", "wedding" - ] + ], + "value" : "👰🏿" }, "👰‍♂️", { + "value" : "👰‍♂️", "keywords" : [ "man", "veil", "wedding" - ], - "value" : "👰‍♂️" + ] }, "👰🏻‍♂️", { + "value" : "👰🏻‍♂️", "keywords" : [ "light skin tone", "man", "man with veil", "man with veil: light skin tone", "veil" - ], - "value" : "👰🏻‍♂️" + ] }, "👰🏼‍♂️", { @@ -24525,46 +24524,46 @@ }, "👰🏾‍♂️", { - "value" : "👰🏾‍♂️", "keywords" : [ "man", "man with veil", "man with veil: medium-dark skin tone", "medium-dark skin tone", "veil" - ] + ], + "value" : "👰🏾‍♂️" }, "👰🏿‍♂️", { - "value" : "👰🏿‍♂️", "keywords" : [ "dark skin tone", "man", "man with veil", "man with veil: dark skin tone", "veil" - ] + ], + "value" : "👰🏿‍♂️" }, "👰‍♀️", { - "value" : "👰‍♀️", "keywords" : [ "bride", "veil", "wedding", "woman" - ] + ], + "value" : "👰‍♀️" }, "👰🏻‍♀️", { - "value" : "👰🏻‍♀️", "keywords" : [ "light skin tone", "veil", "woman", "woman with veil", "woman with veil: light skin tone" - ] + ], + "value" : "👰🏻‍♀️" }, "👰🏼‍♀️", { @@ -24579,25 +24578,25 @@ }, "👰🏽‍♀️", { - "value" : "👰🏽‍♀️", "keywords" : [ "medium skin tone", "veil", "woman", "woman with veil", "woman with veil: medium skin tone" - ] + ], + "value" : "👰🏽‍♀️" }, "👰🏾‍♀️", { - "value" : "👰🏾‍♀️", "keywords" : [ "medium-dark skin tone", "veil", "woman", "woman with veil", "woman with veil: medium-dark skin tone" - ] + ], + "value" : "👰🏾‍♀️" }, "👰🏿‍♀️", { @@ -24620,23 +24619,23 @@ }, "🤰🏻", { + "value" : "🤰🏻", "keywords" : [ "light skin tone", "pregnant", "pregnant woman: light skin tone", "woman" - ], - "value" : "🤰🏻" + ] }, "🤰🏼", { + "value" : "🤰🏼", "keywords" : [ "medium-light skin tone", "pregnant", "pregnant woman: medium-light skin tone", "woman" - ], - "value" : "🤰🏼" + ] }, "🤰🏽", { @@ -24650,23 +24649,23 @@ }, "🤰🏾", { - "value" : "🤰🏾", "keywords" : [ "medium-dark skin tone", "pregnant", "pregnant woman: medium-dark skin tone", "woman" - ] + ], + "value" : "🤰🏾" }, "🤰🏿", { + "value" : "🤰🏿", "keywords" : [ "dark skin tone", "pregnant", "pregnant woman: dark skin tone", "woman" - ], - "value" : "🤰🏿" + ] }, "🫃", { @@ -24682,7 +24681,6 @@ }, "🫃🏻", { - "value" : "🫃🏻", "keywords" : [ "belly", "bloated", @@ -24691,7 +24689,8 @@ "pregnant", "pregnant man", "pregnant man: light skin tone" - ] + ], + "value" : "🫃🏻" }, "🫃🏼", { @@ -24708,7 +24707,6 @@ }, "🫃🏽", { - "value" : "🫃🏽", "keywords" : [ "belly", "bloated", @@ -24717,10 +24715,12 @@ "pregnant", "pregnant man", "pregnant man: medium skin tone" - ] + ], + "value" : "🫃🏽" }, "🫃🏾", { + "value" : "🫃🏾", "keywords" : [ "belly", "bloated", @@ -24729,8 +24729,7 @@ "pregnant", "pregnant man", "pregnant man: medium-dark skin tone" - ], - "value" : "🫃🏾" + ] }, "🫃🏿", { @@ -24747,6 +24746,7 @@ }, "🫄", { + "value" : "🫄", "keywords" : [ "belly", "bloated", @@ -24755,8 +24755,7 @@ "person", "pregnant", "stuffed" - ], - "value" : "🫄" + ] }, "🫄🏻", { @@ -24799,7 +24798,6 @@ }, "🫄🏾", { - "value" : "🫄🏾", "keywords" : [ "belly", "bloated", @@ -24808,7 +24806,8 @@ "pregnant", "pregnant person", "pregnant person: medium-dark skin tone" - ] + ], + "value" : "🫄🏾" }, "🫄🏿", { @@ -24851,6 +24850,7 @@ }, "🤱🏼", { + "value" : "🤱🏼", "keywords" : [ "baby", "breast", @@ -24858,8 +24858,7 @@ "breast-feeding: medium-light skin tone", "medium-light skin tone", "nursing" - ], - "value" : "🤱🏼" + ] }, "🤱🏽", { @@ -24887,7 +24886,6 @@ }, "🤱🏿", { - "value" : "🤱🏿", "keywords" : [ "baby", "breast", @@ -24895,11 +24893,11 @@ "breast-feeding: dark skin tone", "dark skin tone", "nursing" - ] + ], + "value" : "🤱🏿" }, "👩‍🍼", { - "value" : "👩‍🍼", "keywords" : [ "baby", "feed", @@ -24910,7 +24908,8 @@ "newborn", "nursing", "woman" - ] + ], + "value" : "👩‍🍼" }, "👩🏻‍🍼", { @@ -24926,7 +24925,6 @@ }, "👩🏼‍🍼", { - "value" : "👩🏼‍🍼", "keywords" : [ "baby", "feeding", @@ -24934,10 +24932,12 @@ "nursing", "woman", "woman feeding baby: medium-light skin tone" - ] + ], + "value" : "👩🏼‍🍼" }, "👩🏽‍🍼", { + "value" : "👩🏽‍🍼", "keywords" : [ "baby", "feeding", @@ -24945,11 +24945,11 @@ "nursing", "woman", "woman feeding baby: medium skin tone" - ], - "value" : "👩🏽‍🍼" + ] }, "👩🏾‍🍼", { + "value" : "👩🏾‍🍼", "keywords" : [ "baby", "feeding", @@ -24957,8 +24957,7 @@ "nursing", "woman", "woman feeding baby: medium-dark skin tone" - ], - "value" : "👩🏾‍🍼" + ] }, "👩🏿‍🍼", { @@ -24989,6 +24988,7 @@ }, "👨🏻‍🍼", { + "value" : "👨🏻‍🍼", "keywords" : [ "baby", "feeding", @@ -24996,11 +24996,11 @@ "man", "man feeding baby: light skin tone", "nursing" - ], - "value" : "👨🏻‍🍼" + ] }, "👨🏼‍🍼", { + "value" : "👨🏼‍🍼", "keywords" : [ "baby", "feeding", @@ -25008,8 +25008,7 @@ "man feeding baby: medium-light skin tone", "medium-light skin tone", "nursing" - ], - "value" : "👨🏼‍🍼" + ] }, "👨🏽‍🍼", { @@ -25062,6 +25061,7 @@ }, "🧑🏻‍🍼", { + "value" : "🧑🏻‍🍼", "keywords" : [ "baby", "feeding", @@ -25069,11 +25069,11 @@ "nursing", "person", "person feeding baby: light skin tone" - ], - "value" : "🧑🏻‍🍼" + ] }, "🧑🏼‍🍼", { + "value" : "🧑🏼‍🍼", "keywords" : [ "baby", "feeding", @@ -25081,8 +25081,7 @@ "nursing", "person", "person feeding baby: medium-light skin tone" - ], - "value" : "🧑🏼‍🍼" + ] }, "🧑🏽‍🍼", { @@ -25136,6 +25135,7 @@ }, "👼🏻", { + "value" : "👼🏻", "keywords" : [ "angel", "baby", @@ -25144,12 +25144,10 @@ "fairy tale", "fantasy", "light skin tone" - ], - "value" : "👼🏻" + ] }, "👼🏼", { - "value" : "👼🏼", "keywords" : [ "angel", "baby", @@ -25158,7 +25156,8 @@ "fairy tale", "fantasy", "medium-light skin tone" - ] + ], + "value" : "👼🏼" }, "👼🏽", { @@ -25175,6 +25174,7 @@ }, "👼🏾", { + "value" : "👼🏾", "keywords" : [ "angel", "baby", @@ -25183,11 +25183,11 @@ "fairy tale", "fantasy", "medium-dark skin tone" - ], - "value" : "👼🏾" + ] }, "👼🏿", { + "value" : "👼🏿", "keywords" : [ "angel", "baby", @@ -25196,8 +25196,7 @@ "face", "fairy tale", "fantasy" - ], - "value" : "👼🏿" + ] }, "🎅", { @@ -25231,7 +25230,6 @@ }, "🎅🏼", { - "value" : "🎅🏼", "keywords" : [ "celebration", "Christmas", @@ -25240,7 +25238,8 @@ "medium-light skin tone", "santa", "Santa Claus: medium-light skin tone" - ] + ], + "value" : "🎅🏼" }, "🎅🏽", { @@ -25270,6 +25269,7 @@ }, "🎅🏿", { + "value" : "🎅🏿", "keywords" : [ "celebration", "Christmas", @@ -25278,8 +25278,7 @@ "father", "santa", "Santa Claus: dark skin tone" - ], - "value" : "🎅🏿" + ] }, "🤶", { @@ -25340,6 +25339,7 @@ }, "🤶🏾", { + "value" : "🤶🏾", "keywords" : [ "celebration", "Christmas", @@ -25348,11 +25348,11 @@ "mother", "Mrs.", "Mrs. Claus: medium-dark skin tone" - ], - "value" : "🤶🏾" + ] }, "🤶🏿", { + "value" : "🤶🏿", "keywords" : [ "celebration", "Christmas", @@ -25361,8 +25361,7 @@ "mother", "Mrs.", "Mrs. Claus: dark skin tone" - ], - "value" : "🤶🏿" + ] }, "🧑‍🎄", { @@ -25383,14 +25382,14 @@ }, "🧑🏻‍🎄", { + "value" : "🧑🏻‍🎄", "keywords" : [ "christmas", "claus", "light skin tone", "mx claus", "mx claus: light skin tone" - ], - "value" : "🧑🏻‍🎄" + ] }, "🧑🏼‍🎄", { @@ -25416,25 +25415,25 @@ }, "🧑🏾‍🎄", { - "value" : "🧑🏾‍🎄", "keywords" : [ "christmas", "claus", "medium-dark skin tone", "mx claus", "mx claus: medium-dark skin tone" - ] + ], + "value" : "🧑🏾‍🎄" }, "🧑🏿‍🎄", { - "value" : "🧑🏿‍🎄", "keywords" : [ "christmas", "claus", "dark skin tone", "mx claus", "mx claus: dark skin tone" - ] + ], + "value" : "🧑🏿‍🎄" }, "🦸", { @@ -25461,7 +25460,6 @@ }, "🦸🏼", { - "value" : "🦸🏼", "keywords" : [ "good", "hero", @@ -25470,7 +25468,8 @@ "superhero", "superhero: medium-light skin tone", "superpower" - ] + ], + "value" : "🦸🏼" }, "🦸🏽", { @@ -25487,6 +25486,7 @@ }, "🦸🏾", { + "value" : "🦸🏾", "keywords" : [ "good", "hero", @@ -25495,8 +25495,7 @@ "superhero", "superhero: medium-dark skin tone", "superpower" - ], - "value" : "🦸🏾" + ] }, "🦸🏿", { @@ -25513,18 +25512,17 @@ }, "🦸‍♂️", { + "value" : "🦸‍♂️", "keywords" : [ "good", "hero", "man", "superhero", "superpower" - ], - "value" : "🦸‍♂️" + ] }, "🦸🏻‍♂️", { - "value" : "🦸🏻‍♂️", "keywords" : [ "good", "hero", @@ -25533,10 +25531,12 @@ "man superhero", "man superhero: light skin tone", "superpower" - ] + ], + "value" : "🦸🏻‍♂️" }, "🦸🏼‍♂️", { + "value" : "🦸🏼‍♂️", "keywords" : [ "good", "hero", @@ -25545,12 +25545,10 @@ "man superhero: medium-light skin tone", "medium-light skin tone", "superpower" - ], - "value" : "🦸🏼‍♂️" + ] }, "🦸🏽‍♂️", { - "value" : "🦸🏽‍♂️", "keywords" : [ "good", "hero", @@ -25559,7 +25557,8 @@ "man superhero: medium skin tone", "medium skin tone", "superpower" - ] + ], + "value" : "🦸🏽‍♂️" }, "🦸🏾‍♂️", { @@ -25576,7 +25575,6 @@ }, "🦸🏿‍♂️", { - "value" : "🦸🏿‍♂️", "keywords" : [ "dark skin tone", "good", @@ -25585,7 +25583,8 @@ "man superhero", "man superhero: dark skin tone", "superpower" - ] + ], + "value" : "🦸🏿‍♂️" }, "🦸‍♀️", { @@ -25601,6 +25600,7 @@ }, "🦸🏻‍♀️", { + "value" : "🦸🏻‍♀️", "keywords" : [ "good", "hero", @@ -25610,12 +25610,10 @@ "woman", "woman superhero", "woman superhero: light skin tone" - ], - "value" : "🦸🏻‍♀️" + ] }, "🦸🏼‍♀️", { - "value" : "🦸🏼‍♀️", "keywords" : [ "good", "hero", @@ -25625,11 +25623,11 @@ "woman", "woman superhero", "woman superhero: medium-light skin tone" - ] + ], + "value" : "🦸🏼‍♀️" }, "🦸🏽‍♀️", { - "value" : "🦸🏽‍♀️", "keywords" : [ "good", "hero", @@ -25639,10 +25637,12 @@ "woman", "woman superhero", "woman superhero: medium skin tone" - ] + ], + "value" : "🦸🏽‍♀️" }, "🦸🏾‍♀️", { + "value" : "🦸🏾‍♀️", "keywords" : [ "good", "hero", @@ -25652,11 +25652,11 @@ "woman", "woman superhero", "woman superhero: medium-dark skin tone" - ], - "value" : "🦸🏾‍♀️" + ] }, "🦸🏿‍♀️", { + "value" : "🦸🏿‍♀️", "keywords" : [ "dark skin tone", "good", @@ -25666,8 +25666,7 @@ "woman", "woman superhero", "woman superhero: dark skin tone" - ], - "value" : "🦸🏿‍♀️" + ] }, "🦹", { @@ -25683,7 +25682,6 @@ }, "🦹🏻", { - "value" : "🦹🏻", "keywords" : [ "criminal", "evil", @@ -25692,7 +25690,8 @@ "supervillain", "supervillain: light skin tone", "villain" - ] + ], + "value" : "🦹🏻" }, "🦹🏼", { @@ -25722,7 +25721,6 @@ }, "🦹🏾", { - "value" : "🦹🏾", "keywords" : [ "criminal", "evil", @@ -25731,11 +25729,11 @@ "supervillain", "supervillain: medium-dark skin tone", "villain" - ] + ], + "value" : "🦹🏾" }, "🦹🏿", { - "value" : "🦹🏿", "keywords" : [ "criminal", "dark skin tone", @@ -25744,11 +25742,11 @@ "supervillain", "supervillain: dark skin tone", "villain" - ] + ], + "value" : "🦹🏿" }, "🦹‍♂️", { - "value" : "🦹‍♂️", "keywords" : [ "bad", "criminal", @@ -25757,7 +25755,8 @@ "superpower", "supervillain", "villain" - ] + ], + "value" : "🦹‍♂️" }, "🦹🏻‍♂️", { @@ -25775,7 +25774,6 @@ }, "🦹🏼‍♂️", { - "value" : "🦹🏼‍♂️", "keywords" : [ "criminal", "evil", @@ -25785,7 +25783,8 @@ "medium-light skin tone", "superpower", "villain" - ] + ], + "value" : "🦹🏼‍♂️" }, "🦹🏽‍♂️", { @@ -25803,6 +25802,7 @@ }, "🦹🏾‍♂️", { + "value" : "🦹🏾‍♂️", "keywords" : [ "criminal", "evil", @@ -25812,12 +25812,10 @@ "medium-dark skin tone", "superpower", "villain" - ], - "value" : "🦹🏾‍♂️" + ] }, "🦹🏿‍♂️", { - "value" : "🦹🏿‍♂️", "keywords" : [ "criminal", "dark skin tone", @@ -25827,10 +25825,12 @@ "man supervillain: dark skin tone", "superpower", "villain" - ] + ], + "value" : "🦹🏿‍♂️" }, "🦹‍♀️", { + "value" : "🦹‍♀️", "keywords" : [ "bad", "criminal", @@ -25839,11 +25839,11 @@ "supervillain", "villain", "woman" - ], - "value" : "🦹‍♀️" + ] }, "🦹🏻‍♀️", { + "value" : "🦹🏻‍♀️", "keywords" : [ "criminal", "evil", @@ -25853,11 +25853,11 @@ "woman", "woman supervillain", "woman supervillain: light skin tone" - ], - "value" : "🦹🏻‍♀️" + ] }, "🦹🏼‍♀️", { + "value" : "🦹🏼‍♀️", "keywords" : [ "criminal", "evil", @@ -25867,11 +25867,11 @@ "woman", "woman supervillain", "woman supervillain: medium-light skin tone" - ], - "value" : "🦹🏼‍♀️" + ] }, "🦹🏽‍♀️", { + "value" : "🦹🏽‍♀️", "keywords" : [ "criminal", "evil", @@ -25881,12 +25881,10 @@ "woman", "woman supervillain", "woman supervillain: medium skin tone" - ], - "value" : "🦹🏽‍♀️" + ] }, "🦹🏾‍♀️", { - "value" : "🦹🏾‍♀️", "keywords" : [ "criminal", "evil", @@ -25896,10 +25894,12 @@ "woman", "woman supervillain", "woman supervillain: medium-dark skin tone" - ] + ], + "value" : "🦹🏾‍♀️" }, "🦹🏿‍♀️", { + "value" : "🦹🏿‍♀️", "keywords" : [ "criminal", "dark skin tone", @@ -25909,11 +25909,11 @@ "woman", "woman supervillain", "woman supervillain: dark skin tone" - ], - "value" : "🦹🏿‍♀️" + ] }, "🧙", { + "value" : "🧙", "keywords" : [ "fantasy", "mage", @@ -25926,8 +25926,7 @@ "summon", "witch", "wizard" - ], - "value" : "🧙" + ] }, "🧙🏻", { @@ -25944,6 +25943,7 @@ }, "🧙🏼", { + "value" : "🧙🏼", "keywords" : [ "mage", "mage: medium-light skin tone", @@ -25952,11 +25952,11 @@ "sorceress", "witch", "wizard" - ], - "value" : "🧙🏼" + ] }, "🧙🏽", { + "value" : "🧙🏽", "keywords" : [ "mage", "mage: medium skin tone", @@ -25965,8 +25965,7 @@ "sorceress", "witch", "wizard" - ], - "value" : "🧙🏽" + ] }, "🧙🏾", { @@ -25996,7 +25995,6 @@ }, "🧙‍♂️", { - "value" : "🧙‍♂️", "keywords" : [ "fantasy", "mage", @@ -26010,7 +26008,8 @@ "summon", "witch", "wizard" - ] + ], + "value" : "🧙‍♂️" }, "🧙🏻‍♂️", { @@ -26036,36 +26035,36 @@ }, "🧙🏽‍♂️", { - "value" : "🧙🏽‍♂️", "keywords" : [ "man mage", "man mage: medium skin tone", "medium skin tone", "sorcerer", "wizard" - ] + ], + "value" : "🧙🏽‍♂️" }, "🧙🏾‍♂️", { + "value" : "🧙🏾‍♂️", "keywords" : [ "man mage", "man mage: medium-dark skin tone", "medium-dark skin tone", "sorcerer", "wizard" - ], - "value" : "🧙🏾‍♂️" + ] }, "🧙🏿‍♂️", { - "value" : "🧙🏿‍♂️", "keywords" : [ "dark skin tone", "man mage", "man mage: dark skin tone", "sorcerer", "wizard" - ] + ], + "value" : "🧙🏿‍♂️" }, "🧙‍♀️", { @@ -26098,14 +26097,14 @@ }, "🧙🏼‍♀️", { - "value" : "🧙🏼‍♀️", "keywords" : [ "medium-light skin tone", "sorceress", "witch", "woman mage", "woman mage: medium-light skin tone" - ] + ], + "value" : "🧙🏼‍♀️" }, "🧙🏽‍♀️", { @@ -26120,28 +26119,29 @@ }, "🧙🏾‍♀️", { - "value" : "🧙🏾‍♀️", "keywords" : [ "medium-dark skin tone", "sorceress", "witch", "woman mage", "woman mage: medium-dark skin tone" - ] + ], + "value" : "🧙🏾‍♀️" }, "🧙🏿‍♀️", { - "value" : "🧙🏿‍♀️", "keywords" : [ "dark skin tone", "sorceress", "witch", "woman mage", "woman mage: dark skin tone" - ] + ], + "value" : "🧙🏿‍♀️" }, "🧚", { + "value" : "🧚", "keywords" : [ "fairy", "fairytale", @@ -26151,11 +26151,11 @@ "pixie", "tale", "wings" - ], - "value" : "🧚" + ] }, "🧚🏻", { + "value" : "🧚🏻", "keywords" : [ "fairy", "fairy: light skin tone", @@ -26163,12 +26163,10 @@ "Oberon", "Puck", "Titania" - ], - "value" : "🧚🏻" + ] }, "🧚🏼", { - "value" : "🧚🏼", "keywords" : [ "fairy", "fairy: medium-light skin tone", @@ -26176,7 +26174,8 @@ "Oberon", "Puck", "Titania" - ] + ], + "value" : "🧚🏼" }, "🧚🏽", { @@ -26192,7 +26191,6 @@ }, "🧚🏾", { - "value" : "🧚🏾", "keywords" : [ "fairy", "fairy: medium-dark skin tone", @@ -26200,7 +26198,8 @@ "Oberon", "Puck", "Titania" - ] + ], + "value" : "🧚🏾" }, "🧚🏿", { @@ -26216,7 +26215,6 @@ }, "🧚‍♂️", { - "value" : "🧚‍♂️", "keywords" : [ "fairy", "fairytale", @@ -26229,7 +26227,8 @@ "Puck", "tale", "wings" - ] + ], + "value" : "🧚‍♂️" }, "🧚🏻‍♂️", { @@ -26244,51 +26243,50 @@ }, "🧚🏼‍♂️", { - "value" : "🧚🏼‍♂️", "keywords" : [ "man fairy", "man fairy: medium-light skin tone", "medium-light skin tone", "Oberon", "Puck" - ] + ], + "value" : "🧚🏼‍♂️" }, "🧚🏽‍♂️", { + "value" : "🧚🏽‍♂️", "keywords" : [ "man fairy", "man fairy: medium skin tone", "medium skin tone", "Oberon", "Puck" - ], - "value" : "🧚🏽‍♂️" + ] }, "🧚🏾‍♂️", { - "value" : "🧚🏾‍♂️", "keywords" : [ "man fairy", "man fairy: medium-dark skin tone", "medium-dark skin tone", "Oberon", "Puck" - ] + ], + "value" : "🧚🏾‍♂️" }, "🧚🏿‍♂️", { + "value" : "🧚🏿‍♂️", "keywords" : [ "dark skin tone", "man fairy", "man fairy: dark skin tone", "Oberon", "Puck" - ], - "value" : "🧚🏿‍♂️" + ] }, "🧚‍♀️", { - "value" : "🧚‍♀️", "keywords" : [ "fairy", "fairytale", @@ -26300,17 +26298,18 @@ "Titania", "wings", "woman" - ] + ], + "value" : "🧚‍♀️" }, "🧚🏻‍♀️", { + "value" : "🧚🏻‍♀️", "keywords" : [ "light skin tone", "Titania", "woman fairy", "woman fairy: light skin tone" - ], - "value" : "🧚🏻‍♀️" + ] }, "🧚🏼‍♀️", { @@ -26344,13 +26343,13 @@ }, "🧚🏿‍♀️", { - "value" : "🧚🏿‍♀️", "keywords" : [ "dark skin tone", "Titania", "woman fairy", "woman fairy: dark skin tone" - ] + ], + "value" : "🧚🏿‍♀️" }, "🧛", { @@ -26369,36 +26368,36 @@ }, "🧛🏻", { + "value" : "🧛🏻", "keywords" : [ "Dracula", "light skin tone", "undead", "vampire", "vampire: light skin tone" - ], - "value" : "🧛🏻" + ] }, "🧛🏼", { - "value" : "🧛🏼", "keywords" : [ "Dracula", "medium-light skin tone", "undead", "vampire", "vampire: medium-light skin tone" - ] + ], + "value" : "🧛🏼" }, "🧛🏽", { - "value" : "🧛🏽", "keywords" : [ "Dracula", "medium skin tone", "undead", "vampire", "vampire: medium skin tone" - ] + ], + "value" : "🧛🏽" }, "🧛🏾", { @@ -26424,6 +26423,7 @@ }, "🧛‍♂️", { + "value" : "🧛‍♂️", "keywords" : [ "blood", "fangs", @@ -26434,19 +26434,18 @@ "teeth", "undead", "vampire" - ], - "value" : "🧛‍♂️" + ] }, "🧛🏻‍♂️", { - "value" : "🧛🏻‍♂️", "keywords" : [ "Dracula", "light skin tone", "man vampire", "man vampire: light skin tone", "undead" - ] + ], + "value" : "🧛🏻‍♂️" }, "🧛🏼‍♂️", { @@ -26461,40 +26460,39 @@ }, "🧛🏽‍♂️", { + "value" : "🧛🏽‍♂️", "keywords" : [ "Dracula", "man vampire", "man vampire: medium skin tone", "medium skin tone", "undead" - ], - "value" : "🧛🏽‍♂️" + ] }, "🧛🏾‍♂️", { + "value" : "🧛🏾‍♂️", "keywords" : [ "Dracula", "man vampire", "man vampire: medium-dark skin tone", "medium-dark skin tone", "undead" - ], - "value" : "🧛🏾‍♂️" + ] }, "🧛🏿‍♂️", { + "value" : "🧛🏿‍♂️", "keywords" : [ "dark skin tone", "Dracula", "man vampire", "man vampire: dark skin tone", "undead" - ], - "value" : "🧛🏿‍♂️" + ] }, "🧛‍♀️", { - "value" : "🧛‍♀️", "keywords" : [ "blood", "fangs", @@ -26505,7 +26503,8 @@ "undead", "vampire", "woman" - ] + ], + "value" : "🧛‍♀️" }, "🧛🏻‍♀️", { @@ -26519,13 +26518,13 @@ }, "🧛🏼‍♀️", { + "value" : "🧛🏼‍♀️", "keywords" : [ "medium-light skin tone", "undead", "woman vampire", "woman vampire: medium-light skin tone" - ], - "value" : "🧛🏼‍♀️" + ] }, "🧛🏽‍♀️", { @@ -26549,16 +26548,17 @@ }, "🧛🏿‍♀️", { + "value" : "🧛🏿‍♀️", "keywords" : [ "dark skin tone", "undead", "woman vampire", "woman vampire: dark skin tone" - ], - "value" : "🧛🏿‍♀️" + ] }, "🧜", { + "value" : "🧜", "keywords" : [ "creature", "fairytale", @@ -26568,12 +26568,10 @@ "sea", "siren", "trident" - ], - "value" : "🧜" + ] }, "🧜🏻", { - "value" : "🧜🏻", "keywords" : [ "light skin tone", "mermaid", @@ -26581,7 +26579,8 @@ "merperson", "merperson: light skin tone", "merwoman" - ] + ], + "value" : "🧜🏻" }, "🧜🏼", { @@ -26621,7 +26620,6 @@ }, "🧜🏿", { - "value" : "🧜🏿", "keywords" : [ "dark skin tone", "mermaid", @@ -26629,11 +26627,11 @@ "merperson", "merperson: dark skin tone", "merwoman" - ] + ], + "value" : "🧜🏿" }, "🧜‍♂️", { - "value" : "🧜‍♂️", "keywords" : [ "creature", "fairytale", @@ -26646,47 +26644,48 @@ "siren", "trident", "Triton" - ] + ], + "value" : "🧜‍♂️" }, "🧜🏻‍♂️", { + "value" : "🧜🏻‍♂️", "keywords" : [ "light skin tone", "merman", "merman: light skin tone", "Triton" - ], - "value" : "🧜🏻‍♂️" + ] }, "🧜🏼‍♂️", { + "value" : "🧜🏼‍♂️", "keywords" : [ "medium-light skin tone", "merman", "merman: medium-light skin tone", "Triton" - ], - "value" : "🧜🏼‍♂️" + ] }, "🧜🏽‍♂️", { - "value" : "🧜🏽‍♂️", "keywords" : [ "medium skin tone", "merman", "merman: medium skin tone", "Triton" - ] + ], + "value" : "🧜🏽‍♂️" }, "🧜🏾‍♂️", { + "value" : "🧜🏾‍♂️", "keywords" : [ "medium-dark skin tone", "merman", "merman: medium-dark skin tone", "Triton" - ], - "value" : "🧜🏾‍♂️" + ] }, "🧜🏿‍♂️", { @@ -26725,23 +26724,23 @@ }, "🧜🏼‍♀️", { - "value" : "🧜🏼‍♀️", "keywords" : [ "medium-light skin tone", "mermaid", "mermaid: medium-light skin tone", "merwoman" - ] + ], + "value" : "🧜🏼‍♀️" }, "🧜🏽‍♀️", { + "value" : "🧜🏽‍♀️", "keywords" : [ "medium skin tone", "mermaid", "mermaid: medium skin tone", "merwoman" - ], - "value" : "🧜🏽‍♀️" + ] }, "🧜🏾‍♀️", { @@ -26779,13 +26778,13 @@ }, "🧝🏻", { + "value" : "🧝🏻", "keywords" : [ "elf", "elf: light skin tone", "light skin tone", "magical" - ], - "value" : "🧝🏻" + ] }, "🧝🏼", { @@ -26809,23 +26808,23 @@ }, "🧝🏾", { + "value" : "🧝🏾", "keywords" : [ "elf", "elf: medium-dark skin tone", "magical", "medium-dark skin tone" - ], - "value" : "🧝🏾" + ] }, "🧝🏿", { - "value" : "🧝🏿", "keywords" : [ "dark skin tone", "elf", "elf: dark skin tone", "magical" - ] + ], + "value" : "🧝🏿" }, "🧝‍♂️", { @@ -26894,6 +26893,7 @@ }, "🧝‍♀️", { + "value" : "🧝‍♀️", "keywords" : [ "elf", "elves", @@ -26904,8 +26904,7 @@ "magical", "myth", "woman" - ], - "value" : "🧝‍♀️" + ] }, "🧝🏻‍♀️", { @@ -26929,13 +26928,13 @@ }, "🧝🏽‍♀️", { - "value" : "🧝🏽‍♀️", "keywords" : [ "magical", "medium skin tone", "woman elf", "woman elf: medium skin tone" - ] + ], + "value" : "🧝🏽‍♀️" }, "🧝🏾‍♀️", { @@ -26959,6 +26958,7 @@ }, "🧞", { + "value" : "🧞", "keywords" : [ "djinn", "fantasy", @@ -26968,8 +26968,7 @@ "myth", "rub", "wishes" - ], - "value" : "🧞" + ] }, "🧞‍♂️", { @@ -26988,7 +26987,6 @@ }, "🧞‍♀️", { - "value" : "🧞‍♀️", "keywords" : [ "djinn", "fantasy", @@ -26999,10 +26997,12 @@ "rub", "wishes", "woman" - ] + ], + "value" : "🧞‍♀️" }, "🧟", { + "value" : "🧟", "keywords" : [ "apocalypse", "dead", @@ -27012,8 +27012,7 @@ "undead", "walking", "zombie" - ], - "value" : "🧟" + ] }, "🧟‍♂️", { @@ -27032,7 +27031,6 @@ }, "🧟‍♀️", { - "value" : "🧟‍♀️", "keywords" : [ "apocalypse", "dead", @@ -27043,10 +27041,12 @@ "walking", "woman", "zombie" - ] + ], + "value" : "🧟‍♀️" }, "🧌", { + "value" : "🧌", "keywords" : [ "fairy", "fantasy", @@ -27054,8 +27054,7 @@ "tale", "troll", "trolling" - ], - "value" : "🧌" + ] }, "💆", { @@ -27102,6 +27101,7 @@ }, "💆🏽", { + "value" : "💆🏽", "keywords" : [ "face", "massage", @@ -27109,11 +27109,11 @@ "person getting massage", "person getting massage: medium skin tone", "salon" - ], - "value" : "💆🏽" + ] }, "💆🏾", { + "value" : "💆🏾", "keywords" : [ "face", "massage", @@ -27121,8 +27121,7 @@ "person getting massage", "person getting massage: medium-dark skin tone", "salon" - ], - "value" : "💆🏾" + ] }, "💆🏿", { @@ -27157,7 +27156,6 @@ }, "💆🏻‍♂️", { - "value" : "💆🏻‍♂️", "keywords" : [ "face", "light skin tone", @@ -27165,10 +27163,12 @@ "man getting massage", "man getting massage: light skin tone", "massage" - ] + ], + "value" : "💆🏻‍♂️" }, "💆🏼‍♂️", { + "value" : "💆🏼‍♂️", "keywords" : [ "face", "man", @@ -27176,8 +27176,7 @@ "man getting massage: medium-light skin tone", "massage", "medium-light skin tone" - ], - "value" : "💆🏼‍♂️" + ] }, "💆🏽‍♂️", { @@ -27248,6 +27247,7 @@ }, "💆🏼‍♀️", { + "value" : "💆🏼‍♀️", "keywords" : [ "face", "massage", @@ -27255,8 +27255,7 @@ "woman", "woman getting massage", "woman getting massage: medium-light skin tone" - ], - "value" : "💆🏼‍♀️" + ] }, "💆🏽‍♀️", { @@ -27272,7 +27271,6 @@ }, "💆🏾‍♀️", { - "value" : "💆🏾‍♀️", "keywords" : [ "face", "massage", @@ -27280,10 +27278,12 @@ "woman", "woman getting massage", "woman getting massage: medium-dark skin tone" - ] + ], + "value" : "💆🏾‍♀️" }, "💆🏿‍♀️", { + "value" : "💆🏿‍♀️", "keywords" : [ "dark skin tone", "face", @@ -27291,12 +27291,10 @@ "woman", "woman getting massage", "woman getting massage: dark skin tone" - ], - "value" : "💆🏿‍♀️" + ] }, "💇", { - "value" : "💇", "keywords" : [ "barber", "beauty", @@ -27310,7 +27308,8 @@ "person", "shears", "style" - ] + ], + "value" : "💇" }, "💇🏻", { @@ -27327,7 +27326,6 @@ }, "💇🏼", { - "value" : "💇🏼", "keywords" : [ "barber", "beauty", @@ -27336,11 +27334,11 @@ "parlor", "person getting haircut", "person getting haircut: medium-light skin tone" - ] + ], + "value" : "💇🏼" }, "💇🏽", { - "value" : "💇🏽", "keywords" : [ "barber", "beauty", @@ -27349,7 +27347,8 @@ "parlor", "person getting haircut", "person getting haircut: medium skin tone" - ] + ], + "value" : "💇🏽" }, "💇🏾", { @@ -27420,14 +27419,14 @@ }, "💇🏽‍♂️", { + "value" : "💇🏽‍♂️", "keywords" : [ "haircut", "man", "man getting haircut", "man getting haircut: medium skin tone", "medium skin tone" - ], - "value" : "💇🏽‍♂️" + ] }, "💇🏾‍♂️", { @@ -27442,14 +27441,14 @@ }, "💇🏿‍♂️", { - "value" : "💇🏿‍♂️", "keywords" : [ "dark skin tone", "haircut", "man", "man getting haircut", "man getting haircut: dark skin tone" - ] + ], + "value" : "💇🏿‍♂️" }, "💇‍♀️", { @@ -27527,6 +27526,7 @@ }, "🚶", { + "value" : "🚶", "keywords" : [ "amble", "gait", @@ -27539,12 +27539,10 @@ "stroll", "walk", "walking" - ], - "value" : "🚶" + ] }, "🚶🏻", { - "value" : "🚶🏻", "keywords" : [ "hike", "light skin tone", @@ -27552,7 +27550,8 @@ "person walking: light skin tone", "walk", "walking" - ] + ], + "value" : "🚶🏻" }, "🚶🏼", { @@ -27592,7 +27591,6 @@ }, "🚶🏿", { - "value" : "🚶🏿", "keywords" : [ "dark skin tone", "hike", @@ -27600,7 +27598,8 @@ "person walking: dark skin tone", "walk", "walking" - ] + ], + "value" : "🚶🏿" }, "🚶‍♂️", { @@ -27644,6 +27643,7 @@ }, "🚶🏽‍♂️", { + "value" : "🚶🏽‍♂️", "keywords" : [ "hike", "man", @@ -27651,12 +27651,10 @@ "man walking: medium skin tone", "medium skin tone", "walk" - ], - "value" : "🚶🏽‍♂️" + ] }, "🚶🏾‍♂️", { - "value" : "🚶🏾‍♂️", "keywords" : [ "hike", "man", @@ -27664,7 +27662,8 @@ "man walking: medium-dark skin tone", "medium-dark skin tone", "walk" - ] + ], + "value" : "🚶🏾‍♂️" }, "🚶🏿‍♂️", { @@ -27779,16 +27778,27 @@ }, "🚶🏼‍➡️", { + "value" : "🚶🏼‍➡️", "keywords" : [ "hike", "person walking", "person walking facing right", "walk", "walking" - ], - "value" : "🚶🏼‍➡️" + ] }, "🚶🏽‍➡️", + { + "value" : "🚶🏽‍➡️", + "keywords" : [ + "hike", + "person walking", + "person walking facing right", + "walk", + "walking" + ] + }, + "🚶🏾‍➡️", { "keywords" : [ "hike", @@ -27797,29 +27807,18 @@ "walk", "walking" ], - "value" : "🚶🏽‍➡️" - }, - "🚶🏾‍➡️", - { - "value" : "🚶🏾‍➡️", - "keywords" : [ - "hike", - "person walking", - "person walking facing right", - "walk", - "walking" - ] + "value" : "🚶🏾‍➡️" }, "🚶🏿‍➡️", { - "value" : "🚶🏿‍➡️", "keywords" : [ "hike", "person walking", "person walking facing right", "walk", "walking" - ] + ], + "value" : "🚶🏿‍➡️" }, "🚶‍♀️‍➡️", { @@ -27878,25 +27877,25 @@ }, "🚶🏿‍♀️‍➡️", { + "value" : "🚶🏿‍♀️‍➡️", "keywords" : [ "hike", "walk", "woman", "woman walking", "woman walking facing right" - ], - "value" : "🚶🏿‍♀️‍➡️" + ] }, "🚶‍♂️‍➡️", { + "value" : "🚶‍♂️‍➡️", "keywords" : [ "hike", "man", "man walking", "man walking facing right", "walk" - ], - "value" : "🚶‍♂️‍➡️" + ] }, "🚶🏻‍♂️‍➡️", { @@ -27922,14 +27921,14 @@ }, "🚶🏽‍♂️‍➡️", { - "value" : "🚶🏽‍♂️‍➡️", "keywords" : [ "hike", "man", "man walking", "man walking facing right", "walk" - ] + ], + "value" : "🚶🏽‍♂️‍➡️" }, "🚶🏾‍♂️‍➡️", { @@ -27955,34 +27954,34 @@ }, "🧍", { + "value" : "🧍", "keywords" : [ "person", "stand", "standing" - ], - "value" : "🧍" + ] }, "🧍🏻", { - "value" : "🧍🏻", "keywords" : [ "light skin tone", "person standing", "person standing: light skin tone", "stand", "standing" - ] + ], + "value" : "🧍🏻" }, "🧍🏼", { + "value" : "🧍🏼", "keywords" : [ "medium-light skin tone", "person standing", "person standing: medium-light skin tone", "stand", "standing" - ], - "value" : "🧍🏼" + ] }, "🧍🏽", { @@ -28008,14 +28007,14 @@ }, "🧍🏿", { - "value" : "🧍🏿", "keywords" : [ "dark skin tone", "person standing", "person standing: dark skin tone", "stand", "standing" - ] + ], + "value" : "🧍🏿" }, "🧍‍♂️", { @@ -28038,13 +28037,13 @@ }, "🧍🏼‍♂️", { + "value" : "🧍🏼‍♂️", "keywords" : [ "man", "man standing: medium-light skin tone", "medium-light skin tone", "standing" - ], - "value" : "🧍🏼‍♂️" + ] }, "🧍🏽‍♂️", { @@ -28107,43 +28106,43 @@ }, "🧍🏽‍♀️", { + "value" : "🧍🏽‍♀️", "keywords" : [ "medium skin tone", "standing", "woman", "woman standing: medium skin tone" - ], - "value" : "🧍🏽‍♀️" + ] }, "🧍🏾‍♀️", { + "value" : "🧍🏾‍♀️", "keywords" : [ "medium-dark skin tone", "standing", "woman", "woman standing: medium-dark skin tone" - ], - "value" : "🧍🏾‍♀️" + ] }, "🧍🏿‍♀️", { + "value" : "🧍🏿‍♀️", "keywords" : [ "dark skin tone", "standing", "woman", "woman standing: dark skin tone" - ], - "value" : "🧍🏿‍♀️" + ] }, "🧎", { + "value" : "🧎", "keywords" : [ "kneel", "kneeling", "knees", "person" - ], - "value" : "🧎" + ] }, "🧎🏻", { @@ -28158,36 +28157,36 @@ }, "🧎🏼", { + "value" : "🧎🏼", "keywords" : [ "kneel", "kneeling", "medium-light skin tone", "person kneeling", "person kneeling: medium-light skin tone" - ], - "value" : "🧎🏼" + ] }, "🧎🏽", { - "value" : "🧎🏽", "keywords" : [ "kneel", "kneeling", "medium skin tone", "person kneeling", "person kneeling: medium skin tone" - ] + ], + "value" : "🧎🏽" }, "🧎🏾", { - "value" : "🧎🏾", "keywords" : [ "kneel", "kneeling", "medium-dark skin tone", "person kneeling", "person kneeling: medium-dark skin tone" - ] + ], + "value" : "🧎🏾" }, "🧎🏿", { @@ -28212,13 +28211,13 @@ }, "🧎🏻‍♂️", { - "value" : "🧎🏻‍♂️", "keywords" : [ "kneeling", "light skin tone", "man", "man kneeling: light skin tone" - ] + ], + "value" : "🧎🏻‍♂️" }, "🧎🏼‍♂️", { @@ -28232,13 +28231,13 @@ }, "🧎🏽‍♂️", { - "value" : "🧎🏽‍♂️", "keywords" : [ "kneeling", "man", "man kneeling: medium skin tone", "medium skin tone" - ] + ], + "value" : "🧎🏽‍♂️" }, "🧎🏾‍♂️", { @@ -28252,33 +28251,33 @@ }, "🧎🏿‍♂️", { + "value" : "🧎🏿‍♂️", "keywords" : [ "dark skin tone", "kneeling", "man", "man kneeling: dark skin tone" - ], - "value" : "🧎🏿‍♂️" + ] }, "🧎‍♀️", { - "value" : "🧎‍♀️", "keywords" : [ "kneel", "kneeling", "knees", "woman" - ] + ], + "value" : "🧎‍♀️" }, "🧎🏻‍♀️", { - "value" : "🧎🏻‍♀️", "keywords" : [ "kneeling", "light skin tone", "woman", "woman kneeling: light skin tone" - ] + ], + "value" : "🧎🏻‍♀️" }, "🧎🏼‍♀️", { @@ -28292,43 +28291,43 @@ }, "🧎🏽‍♀️", { - "value" : "🧎🏽‍♀️", "keywords" : [ "kneeling", "medium skin tone", "woman", "woman kneeling: medium skin tone" - ] + ], + "value" : "🧎🏽‍♀️" }, "🧎🏾‍♀️", { + "value" : "🧎🏾‍♀️", "keywords" : [ "kneeling", "medium-dark skin tone", "woman", "woman kneeling: medium-dark skin tone" - ], - "value" : "🧎🏾‍♀️" + ] }, "🧎🏿‍♀️", { - "value" : "🧎🏿‍♀️", "keywords" : [ "dark skin tone", "kneeling", "woman", "woman kneeling: dark skin tone" - ] + ], + "value" : "🧎🏿‍♀️" }, "🧎‍➡️", { + "value" : "🧎‍➡️", "keywords" : [ "kneel", "kneeling", "person kneeling", "person kneeling facing right" - ], - "value" : "🧎‍➡️" + ] }, "🧎🏻‍➡️", { @@ -28409,12 +28408,12 @@ }, "🧎🏽‍♀️‍➡️", { + "value" : "🧎🏽‍♀️‍➡️", "keywords" : [ "kneeling", "woman", "woman kneeling facing right" - ], - "value" : "🧎🏽‍♀️‍➡️" + ] }, "🧎🏾‍♀️‍➡️", { @@ -28436,21 +28435,21 @@ }, "🧎‍♂️‍➡️", { + "value" : "🧎‍♂️‍➡️", "keywords" : [ "kneeling", "man", "man kneeling facing right" - ], - "value" : "🧎‍♂️‍➡️" + ] }, "🧎🏻‍♂️‍➡️", { + "value" : "🧎🏻‍♂️‍➡️", "keywords" : [ "kneeling", "man", "man kneeling facing right" - ], - "value" : "🧎🏻‍♂️‍➡️" + ] }, "🧎🏼‍♂️‍➡️", { @@ -28463,12 +28462,12 @@ }, "🧎🏽‍♂️‍➡️", { + "value" : "🧎🏽‍♂️‍➡️", "keywords" : [ "kneeling", "man", "man kneeling facing right" - ], - "value" : "🧎🏽‍♂️‍➡️" + ] }, "🧎🏾‍♂️‍➡️", { @@ -28513,36 +28512,36 @@ }, "🧑🏼‍🦯", { - "value" : "🧑🏼‍🦯", "keywords" : [ "accessibility", "blind", "medium-light skin tone", "person with white cane", "person with white cane: medium-light skin tone" - ] + ], + "value" : "🧑🏼‍🦯" }, "🧑🏽‍🦯", { + "value" : "🧑🏽‍🦯", "keywords" : [ "accessibility", "blind", "medium skin tone", "person with white cane", "person with white cane: medium skin tone" - ], - "value" : "🧑🏽‍🦯" + ] }, "🧑🏾‍🦯", { + "value" : "🧑🏾‍🦯", "keywords" : [ "accessibility", "blind", "medium-dark skin tone", "person with white cane", "person with white cane: medium-dark skin tone" - ], - "value" : "🧑🏾‍🦯" + ] }, "🧑🏿‍🦯", { @@ -28557,7 +28556,17 @@ }, "🧑‍🦯‍➡️", { - "value" : "🧑‍🦯‍➡️", + "keywords" : [ + "accessibility", + "blind", + "person with white cane", + "person with white cane facing right" + ], + "value" : "🧑‍🦯‍➡️" + }, + "🧑🏻‍🦯‍➡️", + { + "value" : "🧑🏻‍🦯‍➡️", "keywords" : [ "accessibility", "blind", @@ -28565,7 +28574,7 @@ "person with white cane facing right" ] }, - "🧑🏻‍🦯‍➡️", + "🧑🏼‍🦯‍➡️", { "keywords" : [ "accessibility", @@ -28573,17 +28582,7 @@ "person with white cane", "person with white cane facing right" ], - "value" : "🧑🏻‍🦯‍➡️" - }, - "🧑🏼‍🦯‍➡️", - { - "value" : "🧑🏼‍🦯‍➡️", - "keywords" : [ - "accessibility", - "blind", - "person with white cane", - "person with white cane facing right" - ] + "value" : "🧑🏼‍🦯‍➡️" }, "🧑🏽‍🦯‍➡️", { @@ -28607,17 +28606,16 @@ }, "🧑🏿‍🦯‍➡️", { + "value" : "🧑🏿‍🦯‍➡️", "keywords" : [ "accessibility", "blind", "person with white cane", "person with white cane facing right" - ], - "value" : "🧑🏿‍🦯‍➡️" + ] }, "👨‍🦯", { - "value" : "👨‍🦯", "keywords" : [ "accessibility", "blind", @@ -28625,7 +28623,8 @@ "man", "probing", "white" - ] + ], + "value" : "👨‍🦯" }, "👨🏻‍🦯", { @@ -28641,6 +28640,7 @@ }, "👨🏼‍🦯", { + "value" : "👨🏼‍🦯", "keywords" : [ "accessibility", "blind", @@ -28648,8 +28648,7 @@ "man with white cane", "man with white cane: medium-light skin tone", "medium-light skin tone" - ], - "value" : "👨🏼‍🦯" + ] }, "👨🏽‍🦯", { @@ -28665,6 +28664,7 @@ }, "👨🏾‍🦯", { + "value" : "👨🏾‍🦯", "keywords" : [ "accessibility", "blind", @@ -28672,8 +28672,7 @@ "man with white cane", "man with white cane: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "👨🏾‍🦯" + ] }, "👨🏿‍🦯", { @@ -28689,25 +28688,25 @@ }, "👨‍🦯‍➡️", { - "value" : "👨‍🦯‍➡️", "keywords" : [ "accessibility", "blind", "man", "man with white cane", "man with white cane facing right" - ] + ], + "value" : "👨‍🦯‍➡️" }, "👨🏻‍🦯‍➡️", { - "value" : "👨🏻‍🦯‍➡️", "keywords" : [ "accessibility", "blind", "man", "man with white cane", "man with white cane facing right" - ] + ], + "value" : "👨🏻‍🦯‍➡️" }, "👨🏼‍🦯‍➡️", { @@ -28722,14 +28721,14 @@ }, "👨🏽‍🦯‍➡️", { - "value" : "👨🏽‍🦯‍➡️", "keywords" : [ "accessibility", "blind", "man", "man with white cane", "man with white cane facing right" - ] + ], + "value" : "👨🏽‍🦯‍➡️" }, "👨🏾‍🦯‍➡️", { @@ -28838,14 +28837,14 @@ }, "👩🏻‍🦯‍➡️", { + "value" : "👩🏻‍🦯‍➡️", "keywords" : [ "accessibility", "blind", "woman", "woman with white cane", "woman with white cane facing right" - ], - "value" : "👩🏻‍🦯‍➡️" + ] }, "👩🏼‍🦯‍➡️", { @@ -28871,14 +28870,14 @@ }, "👩🏾‍🦯‍➡️", { - "value" : "👩🏾‍🦯‍➡️", "keywords" : [ "accessibility", "blind", "woman", "woman with white cane", "woman with white cane facing right" - ] + ], + "value" : "👩🏾‍🦯‍➡️" }, "👩🏿‍🦯‍➡️", { @@ -28893,24 +28892,24 @@ }, "🧑‍🦼", { + "value" : "🧑‍🦼", "keywords" : [ "accessibility", "motorized", "person", "wheelchair" - ], - "value" : "🧑‍🦼" + ] }, "🧑🏻‍🦼", { + "value" : "🧑🏻‍🦼", "keywords" : [ "accessibility", "light skin tone", "person in motorized wheelchair", "person in motorized wheelchair: light skin tone", "wheelchair" - ], - "value" : "🧑🏻‍🦼" + ] }, "🧑🏼‍🦼", { @@ -28947,14 +28946,14 @@ }, "🧑🏿‍🦼", { - "value" : "🧑🏿‍🦼", "keywords" : [ "accessibility", "dark skin tone", "person in motorized wheelchair", "person in motorized wheelchair: dark skin tone", "wheelchair" - ] + ], + "value" : "🧑🏿‍🦼" }, "🧑‍🦼‍➡️", { @@ -28968,23 +28967,23 @@ }, "🧑🏻‍🦼‍➡️", { + "value" : "🧑🏻‍🦼‍➡️", "keywords" : [ "accessibility", "person in motorized wheelchair", "person in motorized wheelchair facing right", "wheelchair" - ], - "value" : "🧑🏻‍🦼‍➡️" + ] }, "🧑🏼‍🦼‍➡️", { + "value" : "🧑🏼‍🦼‍➡️", "keywords" : [ "accessibility", "person in motorized wheelchair", "person in motorized wheelchair facing right", "wheelchair" - ], - "value" : "🧑🏼‍🦼‍➡️" + ] }, "🧑🏽‍🦼‍➡️", { @@ -28998,13 +28997,13 @@ }, "🧑🏾‍🦼‍➡️", { + "value" : "🧑🏾‍🦼‍➡️", "keywords" : [ "accessibility", "person in motorized wheelchair", "person in motorized wheelchair facing right", "wheelchair" - ], - "value" : "🧑🏾‍🦼‍➡️" + ] }, "🧑🏿‍🦼‍➡️", { @@ -29018,17 +29017,16 @@ }, "👨‍🦼", { + "value" : "👨‍🦼", "keywords" : [ "accessibility", "man", "motorized", "wheelchair" - ], - "value" : "👨‍🦼" + ] }, "👨🏻‍🦼", { - "value" : "👨🏻‍🦼", "keywords" : [ "accessibility", "light skin tone", @@ -29036,7 +29034,8 @@ "man in motorized wheelchair", "man in motorized wheelchair: light skin tone", "wheelchair" - ] + ], + "value" : "👨🏻‍🦼" }, "👨🏼‍🦼", { @@ -29052,7 +29051,6 @@ }, "👨🏽‍🦼", { - "value" : "👨🏽‍🦼", "keywords" : [ "accessibility", "man", @@ -29060,11 +29058,11 @@ "man in motorized wheelchair: medium skin tone", "medium skin tone", "wheelchair" - ] + ], + "value" : "👨🏽‍🦼" }, "👨🏾‍🦼", { - "value" : "👨🏾‍🦼", "keywords" : [ "accessibility", "man", @@ -29072,10 +29070,12 @@ "man in motorized wheelchair: medium-dark skin tone", "medium-dark skin tone", "wheelchair" - ] + ], + "value" : "👨🏾‍🦼" }, "👨🏿‍🦼", { + "value" : "👨🏿‍🦼", "keywords" : [ "accessibility", "dark skin tone", @@ -29083,8 +29083,7 @@ "man in motorized wheelchair", "man in motorized wheelchair: dark skin tone", "wheelchair" - ], - "value" : "👨🏿‍🦼" + ] }, "👨‍🦼‍➡️", { @@ -29110,14 +29109,14 @@ }, "👨🏼‍🦼‍➡️", { + "value" : "👨🏼‍🦼‍➡️", "keywords" : [ "accessibility", "man", "man in motorized wheelchair", "man in motorized wheelchair facing right", "wheelchair" - ], - "value" : "👨🏼‍🦼‍➡️" + ] }, "👨🏽‍🦼‍➡️", { @@ -29143,14 +29142,14 @@ }, "👨🏿‍🦼‍➡️", { + "value" : "👨🏿‍🦼‍➡️", "keywords" : [ "accessibility", "man", "man in motorized wheelchair", "man in motorized wheelchair facing right", "wheelchair" - ], - "value" : "👨🏿‍🦼‍➡️" + ] }, "👩‍🦼", { @@ -29176,7 +29175,6 @@ }, "👩🏼‍🦼", { - "value" : "👩🏼‍🦼", "keywords" : [ "accessibility", "medium-light skin tone", @@ -29184,7 +29182,8 @@ "woman", "woman in motorized wheelchair", "woman in motorized wheelchair: medium-light skin tone" - ] + ], + "value" : "👩🏼‍🦼" }, "👩🏽‍🦼", { @@ -29212,7 +29211,6 @@ }, "👩🏿‍🦼", { - "value" : "👩🏿‍🦼", "keywords" : [ "accessibility", "dark skin tone", @@ -29220,7 +29218,8 @@ "woman", "woman in motorized wheelchair", "woman in motorized wheelchair: dark skin tone" - ] + ], + "value" : "👩🏿‍🦼" }, "👩‍🦼‍➡️", { @@ -29246,14 +29245,14 @@ }, "👩🏼‍🦼‍➡️", { - "value" : "👩🏼‍🦼‍➡️", "keywords" : [ "accessibility", "wheelchair", "woman", "woman in motorized wheelchair", "woman in motorized wheelchair facing right" - ] + ], + "value" : "👩🏼‍🦼‍➡️" }, "👩🏽‍🦼‍➡️", { @@ -29268,25 +29267,25 @@ }, "👩🏾‍🦼‍➡️", { + "value" : "👩🏾‍🦼‍➡️", "keywords" : [ "accessibility", "wheelchair", "woman", "woman in motorized wheelchair", "woman in motorized wheelchair facing right" - ], - "value" : "👩🏾‍🦼‍➡️" + ] }, "👩🏿‍🦼‍➡️", { + "value" : "👩🏿‍🦼‍➡️", "keywords" : [ "accessibility", "wheelchair", "woman", "woman in motorized wheelchair", "woman in motorized wheelchair facing right" - ], - "value" : "👩🏿‍🦼‍➡️" + ] }, "🧑‍🦽", { @@ -29311,25 +29310,25 @@ }, "🧑🏼‍🦽", { + "value" : "🧑🏼‍🦽", "keywords" : [ "accessibility", "medium-light skin tone", "person in manual wheelchair", "person in manual wheelchair: medium-light skin tone", "wheelchair" - ], - "value" : "🧑🏼‍🦽" + ] }, "🧑🏽‍🦽", { + "value" : "🧑🏽‍🦽", "keywords" : [ "accessibility", "medium skin tone", "person in manual wheelchair", "person in manual wheelchair: medium skin tone", "wheelchair" - ], - "value" : "🧑🏽‍🦽" + ] }, "🧑🏾‍🦽", { @@ -29354,16 +29353,6 @@ "value" : "🧑🏿‍🦽" }, "🧑‍🦽‍➡️", - { - "value" : "🧑‍🦽‍➡️", - "keywords" : [ - "accessibility", - "person in manual wheelchair", - "person in manual wheelchair facing right", - "wheelchair" - ] - }, - "🧑🏻‍🦽‍➡️", { "keywords" : [ "accessibility", @@ -29371,7 +29360,17 @@ "person in manual wheelchair facing right", "wheelchair" ], - "value" : "🧑🏻‍🦽‍➡️" + "value" : "🧑‍🦽‍➡️" + }, + "🧑🏻‍🦽‍➡️", + { + "value" : "🧑🏻‍🦽‍➡️", + "keywords" : [ + "accessibility", + "person in manual wheelchair", + "person in manual wheelchair facing right", + "wheelchair" + ] }, "🧑🏼‍🦽‍➡️", { @@ -29395,13 +29394,13 @@ }, "🧑🏾‍🦽‍➡️", { - "value" : "🧑🏾‍🦽‍➡️", "keywords" : [ "accessibility", "person in manual wheelchair", "person in manual wheelchair facing right", "wheelchair" - ] + ], + "value" : "🧑🏾‍🦽‍➡️" }, "🧑🏿‍🦽‍➡️", { @@ -29461,7 +29460,6 @@ }, "👨🏾‍🦽", { - "value" : "👨🏾‍🦽", "keywords" : [ "accessibility", "man", @@ -29469,7 +29467,8 @@ "man in manual wheelchair: medium-dark skin tone", "medium-dark skin tone", "wheelchair" - ] + ], + "value" : "👨🏾‍🦽" }, "👨🏿‍🦽", { @@ -29496,25 +29495,25 @@ }, "👨🏻‍🦽‍➡️", { - "value" : "👨🏻‍🦽‍➡️", "keywords" : [ "accessibility", "man", "man in manual wheelchair", "man in manual wheelchair facing right", "wheelchair" - ] + ], + "value" : "👨🏻‍🦽‍➡️" }, "👨🏼‍🦽‍➡️", { - "value" : "👨🏼‍🦽‍➡️", "keywords" : [ "accessibility", "man", "man in manual wheelchair", "man in manual wheelchair facing right", "wheelchair" - ] + ], + "value" : "👨🏼‍🦽‍➡️" }, "👨🏽‍🦽‍➡️", { @@ -29540,14 +29539,14 @@ }, "👨🏿‍🦽‍➡️", { - "value" : "👨🏿‍🦽‍➡️", "keywords" : [ "accessibility", "man", "man in manual wheelchair", "man in manual wheelchair facing right", "wheelchair" - ] + ], + "value" : "👨🏿‍🦽‍➡️" }, "👩‍🦽", { @@ -29585,6 +29584,7 @@ }, "👩🏽‍🦽", { + "value" : "👩🏽‍🦽", "keywords" : [ "accessibility", "medium skin tone", @@ -29592,11 +29592,11 @@ "woman", "woman in manual wheelchair", "woman in manual wheelchair: medium skin tone" - ], - "value" : "👩🏽‍🦽" + ] }, "👩🏾‍🦽", { + "value" : "👩🏾‍🦽", "keywords" : [ "accessibility", "medium-dark skin tone", @@ -29604,12 +29604,10 @@ "woman", "woman in manual wheelchair", "woman in manual wheelchair: medium-dark skin tone" - ], - "value" : "👩🏾‍🦽" + ] }, "👩🏿‍🦽", { - "value" : "👩🏿‍🦽", "keywords" : [ "accessibility", "dark skin tone", @@ -29617,7 +29615,8 @@ "woman", "woman in manual wheelchair", "woman in manual wheelchair: dark skin tone" - ] + ], + "value" : "👩🏿‍🦽" }, "👩‍🦽‍➡️", { @@ -29632,14 +29631,14 @@ }, "👩🏻‍🦽‍➡️", { - "value" : "👩🏻‍🦽‍➡️", "keywords" : [ "accessibility", "wheelchair", "woman", "woman in manual wheelchair", "woman in manual wheelchair facing right" - ] + ], + "value" : "👩🏻‍🦽‍➡️" }, "👩🏼‍🦽‍➡️", { @@ -29676,14 +29675,14 @@ }, "👩🏿‍🦽‍➡️", { + "value" : "👩🏿‍🦽‍➡️", "keywords" : [ "accessibility", "wheelchair", "woman", "woman in manual wheelchair", "woman in manual wheelchair facing right" - ], - "value" : "👩🏿‍🦽‍➡️" + ] }, "🏃", { @@ -29726,25 +29725,25 @@ }, "🏃🏽", { + "value" : "🏃🏽", "keywords" : [ "marathon", "medium skin tone", "person running", "person running: medium skin tone", "running" - ], - "value" : "🏃🏽" + ] }, "🏃🏾", { + "value" : "🏃🏾", "keywords" : [ "marathon", "medium-dark skin tone", "person running", "person running: medium-dark skin tone", "running" - ], - "value" : "🏃🏾" + ] }, "🏃🏿", { @@ -29759,6 +29758,7 @@ }, "🏃‍♂️", { + "value" : "🏃‍♂️", "keywords" : [ "fast", "hurry", @@ -29771,8 +29771,7 @@ "run", "rush", "speed" - ], - "value" : "🏃‍♂️" + ] }, "🏃🏻‍♂️", { @@ -29788,6 +29787,7 @@ }, "🏃🏼‍♂️", { + "value" : "🏃🏼‍♂️", "keywords" : [ "man", "man running: medium-light skin tone", @@ -29795,12 +29795,10 @@ "medium-light skin tone", "racing", "running" - ], - "value" : "🏃🏼‍♂️" + ] }, "🏃🏽‍♂️", { - "value" : "🏃🏽‍♂️", "keywords" : [ "man", "man running: medium skin tone", @@ -29808,11 +29806,11 @@ "medium skin tone", "racing", "running" - ] + ], + "value" : "🏃🏽‍♂️" }, "🏃🏾‍♂️", { - "value" : "🏃🏾‍♂️", "keywords" : [ "man", "man running: medium-dark skin tone", @@ -29820,10 +29818,12 @@ "medium-dark skin tone", "racing", "running" - ] + ], + "value" : "🏃🏾‍♂️" }, "🏃🏿‍♂️", { + "value" : "🏃🏿‍♂️", "keywords" : [ "dark skin tone", "man", @@ -29831,8 +29831,7 @@ "marathon", "racing", "running" - ], - "value" : "🏃🏿‍♂️" + ] }, "🏃‍♀️", { @@ -29853,7 +29852,6 @@ }, "🏃🏻‍♀️", { - "value" : "🏃🏻‍♀️", "keywords" : [ "light skin tone", "marathon", @@ -29861,11 +29859,11 @@ "running", "woman", "woman running: light skin tone" - ] + ], + "value" : "🏃🏻‍♀️" }, "🏃🏼‍♀️", { - "value" : "🏃🏼‍♀️", "keywords" : [ "marathon", "medium-light skin tone", @@ -29873,7 +29871,8 @@ "running", "woman", "woman running: medium-light skin tone" - ] + ], + "value" : "🏃🏼‍♀️" }, "🏃🏽‍♀️", { @@ -29901,6 +29900,7 @@ }, "🏃🏿‍♀️", { + "value" : "🏃🏿‍♀️", "keywords" : [ "dark skin tone", "marathon", @@ -29908,8 +29908,7 @@ "running", "woman", "woman running: dark skin tone" - ], - "value" : "🏃🏿‍♀️" + ] }, "🏃‍➡️", { @@ -29923,17 +29922,7 @@ }, "🏃🏻‍➡️", { - "keywords" : [ - "marathon", - "person running", - "person running facing right", - "running" - ], - "value" : "🏃🏻‍➡️" - }, - "🏃🏼‍➡️", - { - "value" : "🏃🏼‍➡️", + "value" : "🏃🏻‍➡️", "keywords" : [ "marathon", "person running", @@ -29941,6 +29930,16 @@ "running" ] }, + "🏃🏼‍➡️", + { + "keywords" : [ + "marathon", + "person running", + "person running facing right", + "running" + ], + "value" : "🏃🏼‍➡️" + }, "🏃🏽‍➡️", { "value" : "🏃🏽‍➡️", @@ -29953,13 +29952,13 @@ }, "🏃🏾‍➡️", { - "value" : "🏃🏾‍➡️", "keywords" : [ "marathon", "person running", "person running facing right", "running" - ] + ], + "value" : "🏃🏾‍➡️" }, "🏃🏿‍➡️", { @@ -29995,18 +29994,7 @@ }, "🏃🏼‍♀️‍➡️", { - "keywords" : [ - "marathon", - "racing", - "running", - "woman", - "woman running facing right" - ], - "value" : "🏃🏼‍♀️‍➡️" - }, - "🏃🏽‍♀️‍➡️", - { - "value" : "🏃🏽‍♀️‍➡️", + "value" : "🏃🏼‍♀️‍➡️", "keywords" : [ "marathon", "racing", @@ -30015,6 +30003,17 @@ "woman running facing right" ] }, + "🏃🏽‍♀️‍➡️", + { + "keywords" : [ + "marathon", + "racing", + "running", + "woman", + "woman running facing right" + ], + "value" : "🏃🏽‍♀️‍➡️" + }, "🏃🏾‍♀️‍➡️", { "keywords" : [ @@ -30028,14 +30027,14 @@ }, "🏃🏿‍♀️‍➡️", { + "value" : "🏃🏿‍♀️‍➡️", "keywords" : [ "marathon", "racing", "running", "woman", "woman running facing right" - ], - "value" : "🏃🏿‍♀️‍➡️" + ] }, "🏃‍♂️‍➡️", { @@ -30050,14 +30049,14 @@ }, "🏃🏻‍♂️‍➡️", { - "value" : "🏃🏻‍♂️‍➡️", "keywords" : [ "man", "man running facing right", "marathon", "racing", "running" - ] + ], + "value" : "🏃🏻‍♂️‍➡️" }, "🏃🏼‍♂️‍➡️", { @@ -30094,18 +30093,17 @@ }, "🏃🏿‍♂️‍➡️", { + "value" : "🏃🏿‍♂️‍➡️", "keywords" : [ "man", "man running facing right", "marathon", "racing", "running" - ], - "value" : "🏃🏿‍♂️‍➡️" + ] }, "💃", { - "value" : "💃", "keywords" : [ "dance", "dancer", @@ -30119,18 +30117,19 @@ "salsa", "tango", "woman" - ] + ], + "value" : "💃" }, "💃🏻", { + "value" : "💃🏻", "keywords" : [ "dance", "dancing", "light skin tone", "woman", "woman dancing: light skin tone" - ], - "value" : "💃🏻" + ] }, "💃🏼", { @@ -30145,14 +30144,14 @@ }, "💃🏽", { + "value" : "💃🏽", "keywords" : [ "dance", "dancing", "medium skin tone", "woman", "woman dancing: medium skin tone" - ], - "value" : "💃🏽" + ] }, "💃🏾", { @@ -30167,14 +30166,14 @@ }, "💃🏿", { - "value" : "💃🏿", "keywords" : [ "dance", "dancing", "dark skin tone", "woman", "woman dancing: dark skin tone" - ] + ], + "value" : "💃🏿" }, "🕺", { @@ -30207,36 +30206,36 @@ }, "🕺🏼", { + "value" : "🕺🏼", "keywords" : [ "dance", "dancing", "man", "man dancing: medium-light skin tone", "medium-light skin tone" - ], - "value" : "🕺🏼" + ] }, "🕺🏽", { - "value" : "🕺🏽", "keywords" : [ "dance", "dancing", "man", "man dancing: medium skin tone", "medium skin tone" - ] + ], + "value" : "🕺🏽" }, "🕺🏾", { - "value" : "🕺🏾", "keywords" : [ "dance", "dancing", "man", "man dancing: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "🕺🏾" }, "🕺🏿", { @@ -30273,7 +30272,6 @@ }, "🕴🏼", { - "value" : "🕴🏼", "keywords" : [ "business", "medium-light skin tone", @@ -30281,7 +30279,8 @@ "person in suit levitating", "person in suit levitating: medium-light skin tone", "suit" - ] + ], + "value" : "🕴🏼" }, "🕴🏽", { @@ -30297,7 +30296,6 @@ }, "🕴🏾", { - "value" : "🕴🏾", "keywords" : [ "business", "medium-dark skin tone", @@ -30305,7 +30303,8 @@ "person in suit levitating", "person in suit levitating: medium-dark skin tone", "suit" - ] + ], + "value" : "🕴🏾" }, "🕴🏿", { @@ -30321,7 +30320,6 @@ }, "👯", { - "value" : "👯", "keywords" : [ "bestie", "bff", @@ -30338,7 +30336,8 @@ "soulmate", "twin", "twinsies" - ] + ], + "value" : "👯" }, "👯‍♂️", { @@ -30403,25 +30402,25 @@ }, "🧖🏻", { + "value" : "🧖🏻", "keywords" : [ "light skin tone", "person in steamy room", "person in steamy room: light skin tone", "sauna", "steam room" - ], - "value" : "🧖🏻" + ] }, "🧖🏼", { + "value" : "🧖🏼", "keywords" : [ "medium-light skin tone", "person in steamy room", "person in steamy room: medium-light skin tone", "sauna", "steam room" - ], - "value" : "🧖🏼" + ] }, "🧖🏽", { @@ -30436,14 +30435,14 @@ }, "🧖🏾", { - "value" : "🧖🏾", "keywords" : [ "medium-dark skin tone", "person in steamy room", "person in steamy room: medium-dark skin tone", "sauna", "steam room" - ] + ], + "value" : "🧖🏾" }, "🧖🏿", { @@ -30458,6 +30457,7 @@ }, "🧖‍♂️", { + "value" : "🧖‍♂️", "keywords" : [ "day", "luxurious", @@ -30470,8 +30470,7 @@ "steam", "steambath", "unwind" - ], - "value" : "🧖‍♂️" + ] }, "🧖🏻‍♂️", { @@ -30519,14 +30518,14 @@ }, "🧖🏿‍♂️", { - "value" : "🧖🏿‍♂️", "keywords" : [ "dark skin tone", "man in steamy room", "man in steamy room: dark skin tone", "sauna", "steam room" - ] + ], + "value" : "🧖🏿‍♂️" }, "🧖‍♀️", { @@ -30547,25 +30546,25 @@ }, "🧖🏻‍♀️", { - "value" : "🧖🏻‍♀️", "keywords" : [ "light skin tone", "sauna", "steam room", "woman in steamy room", "woman in steamy room: light skin tone" - ] + ], + "value" : "🧖🏻‍♀️" }, "🧖🏼‍♀️", { - "value" : "🧖🏼‍♀️", "keywords" : [ "medium-light skin tone", "sauna", "steam room", "woman in steamy room", "woman in steamy room: medium-light skin tone" - ] + ], + "value" : "🧖🏼‍♀️" }, "🧖🏽‍♀️", { @@ -30580,14 +30579,14 @@ }, "🧖🏾‍♀️", { + "value" : "🧖🏾‍♀️", "keywords" : [ "medium-dark skin tone", "sauna", "steam room", "woman in steamy room", "woman in steamy room: medium-dark skin tone" - ], - "value" : "🧖🏾‍♀️" + ] }, "🧖🏿‍♀️", { @@ -30602,6 +30601,7 @@ }, "🧗", { + "value" : "🧗", "keywords" : [ "climb", "climber", @@ -30611,18 +30611,17 @@ "rock", "scale", "up" - ], - "value" : "🧗" + ] }, "🧗🏻", { - "value" : "🧗🏻", "keywords" : [ "climber", "light skin tone", "person climbing", "person climbing: light skin tone" - ] + ], + "value" : "🧗🏻" }, "🧗🏼", { @@ -30656,17 +30655,16 @@ }, "🧗🏿", { - "value" : "🧗🏿", "keywords" : [ "climber", "dark skin tone", "person climbing", "person climbing: dark skin tone" - ] + ], + "value" : "🧗🏿" }, "🧗‍♂️", { - "value" : "🧗‍♂️", "keywords" : [ "climb", "climber", @@ -30676,17 +30674,18 @@ "rock", "scale", "up" - ] + ], + "value" : "🧗‍♂️" }, "🧗🏻‍♂️", { - "value" : "🧗🏻‍♂️", "keywords" : [ "climber", "light skin tone", "man climbing", "man climbing: light skin tone" - ] + ], + "value" : "🧗🏻‍♂️" }, "🧗🏼‍♂️", { @@ -30730,7 +30729,6 @@ }, "🧗‍♀️", { - "value" : "🧗‍♀️", "keywords" : [ "climb", "climber", @@ -30740,7 +30738,8 @@ "scale", "up", "woman" - ] + ], + "value" : "🧗‍♀️" }, "🧗🏻‍♀️", { @@ -30754,13 +30753,13 @@ }, "🧗🏼‍♀️", { - "value" : "🧗🏼‍♀️", "keywords" : [ "climber", "medium-light skin tone", "woman climbing", "woman climbing: medium-light skin tone" - ] + ], + "value" : "🧗🏼‍♀️" }, "🧗🏽‍♀️", { @@ -30774,36 +30773,37 @@ }, "🧗🏾‍♀️", { + "value" : "🧗🏾‍♀️", "keywords" : [ "climber", "medium-dark skin tone", "woman climbing", "woman climbing: medium-dark skin tone" - ], - "value" : "🧗🏾‍♀️" + ] }, "🧗🏿‍♀️", { + "value" : "🧗🏿‍♀️", "keywords" : [ "climber", "dark skin tone", "woman climbing", "woman climbing: dark skin tone" - ], - "value" : "🧗🏿‍♀️" + ] }, "🤺", { - "value" : "🤺", "keywords" : [ "fencer", "fencing", "person", "sword" - ] + ], + "value" : "🤺" }, "🏇", { + "value" : "🏇", "keywords" : [ "horse", "jockey", @@ -30811,12 +30811,10 @@ "racing", "riding", "sport" - ], - "value" : "🏇" + ] }, "🏇🏻", { - "value" : "🏇🏻", "keywords" : [ "horse", "horse racing: light skin tone", @@ -30824,7 +30822,8 @@ "light skin tone", "racehorse", "racing" - ] + ], + "value" : "🏇🏻" }, "🏇🏼", { @@ -30876,12 +30875,12 @@ }, "⛷️", { + "value" : "⛷️", "keywords" : [ "ski", "skier", "snow" - ], - "value" : "⛷️" + ] }, "🏂", { @@ -30896,7 +30895,6 @@ }, "🏂🏻", { - "value" : "🏂🏻", "keywords" : [ "light skin tone", "ski", @@ -30904,11 +30902,11 @@ "snowboard", "snowboarder", "snowboarder: light skin tone" - ] + ], + "value" : "🏂🏻" }, "🏂🏼", { - "value" : "🏂🏼", "keywords" : [ "medium-light skin tone", "ski", @@ -30916,10 +30914,12 @@ "snowboard", "snowboarder", "snowboarder: medium-light skin tone" - ] + ], + "value" : "🏂🏼" }, "🏂🏽", { + "value" : "🏂🏽", "keywords" : [ "medium skin tone", "ski", @@ -30927,12 +30927,10 @@ "snowboard", "snowboarder", "snowboarder: medium skin tone" - ], - "value" : "🏂🏽" + ] }, "🏂🏾", { - "value" : "🏂🏾", "keywords" : [ "medium-dark skin tone", "ski", @@ -30940,11 +30938,11 @@ "snowboard", "snowboarder", "snowboarder: medium-dark skin tone" - ] + ], + "value" : "🏂🏾" }, "🏂🏿", { - "value" : "🏂🏿", "keywords" : [ "dark skin tone", "ski", @@ -30952,11 +30950,11 @@ "snowboard", "snowboarder", "snowboarder: dark skin tone" - ] + ], + "value" : "🏂🏿" }, "🏌️", { - "value" : "🏌️", "keywords" : [ "ball", "birdie", @@ -30970,7 +30968,8 @@ "putt", "range", "tee" - ] + ], + "value" : "🏌️" }, "🏌🏻", { @@ -31018,18 +31017,17 @@ }, "🏌🏿", { - "value" : "🏌🏿", "keywords" : [ "ball", "dark skin tone", "golf", "person golfing", "person golfing: dark skin tone" - ] + ], + "value" : "🏌🏿" }, "🏌️‍♂️", { - "value" : "🏌️‍♂️", "keywords" : [ "ball", "birdie", @@ -31043,7 +31041,8 @@ "putt", "range", "tee" - ] + ], + "value" : "🏌️‍♂️" }, "🏌🏻‍♂️", { @@ -31058,14 +31057,14 @@ }, "🏌🏼‍♂️", { - "value" : "🏌🏼‍♂️", "keywords" : [ "golf", "man", "man golfing", "man golfing: medium-light skin tone", "medium-light skin tone" - ] + ], + "value" : "🏌🏼‍♂️" }, "🏌🏽‍♂️", { @@ -31102,7 +31101,6 @@ }, "🏌️‍♀️", { - "value" : "🏌️‍♀️", "keywords" : [ "ball", "birdie", @@ -31116,18 +31114,19 @@ "range", "tee", "woman" - ] + ], + "value" : "🏌️‍♀️" }, "🏌🏻‍♀️", { - "value" : "🏌🏻‍♀️", "keywords" : [ "golf", "light skin tone", "woman", "woman golfing", "woman golfing: light skin tone" - ] + ], + "value" : "🏌🏻‍♀️" }, "🏌🏼‍♀️", { @@ -31164,18 +31163,17 @@ }, "🏌🏿‍♀️", { + "value" : "🏌🏿‍♀️", "keywords" : [ "dark skin tone", "golf", "woman", "woman golfing", "woman golfing: dark skin tone" - ], - "value" : "🏌🏿‍♀️" + ] }, "🏄", { - "value" : "🏄", "keywords" : [ "beach", "ocean", @@ -31186,17 +31184,18 @@ "surfing", "swell", "waves" - ] + ], + "value" : "🏄" }, "🏄🏻", { + "value" : "🏄🏻", "keywords" : [ "light skin tone", "person surfing", "person surfing: light skin tone", "surfing" - ], - "value" : "🏄🏻" + ] }, "🏄🏼", { @@ -31230,13 +31229,13 @@ }, "🏄🏿", { + "value" : "🏄🏿", "keywords" : [ "dark skin tone", "person surfing", "person surfing: dark skin tone", "surfing" - ], - "value" : "🏄🏿" + ] }, "🏄‍♂️", { @@ -31255,33 +31254,33 @@ }, "🏄🏻‍♂️", { - "value" : "🏄🏻‍♂️", "keywords" : [ "light skin tone", "man", "man surfing: light skin tone", "surfing" - ] + ], + "value" : "🏄🏻‍♂️" }, "🏄🏼‍♂️", { + "value" : "🏄🏼‍♂️", "keywords" : [ "man", "man surfing: medium-light skin tone", "medium-light skin tone", "surfing" - ], - "value" : "🏄🏼‍♂️" + ] }, "🏄🏽‍♂️", { - "value" : "🏄🏽‍♂️", "keywords" : [ "man", "man surfing: medium skin tone", "medium skin tone", "surfing" - ] + ], + "value" : "🏄🏽‍♂️" }, "🏄🏾‍♂️", { @@ -31305,6 +31304,7 @@ }, "🏄‍♀️", { + "value" : "🏄‍♀️", "keywords" : [ "beach", "ocean", @@ -31315,28 +31315,27 @@ "surfing", "swell", "waves" - ], - "value" : "🏄‍♀️" + ] }, "🏄🏻‍♀️", { - "value" : "🏄🏻‍♀️", "keywords" : [ "light skin tone", "surfing", "woman", "woman surfing: light skin tone" - ] + ], + "value" : "🏄🏻‍♀️" }, "🏄🏼‍♀️", { - "value" : "🏄🏼‍♀️", "keywords" : [ "medium-light skin tone", "surfing", "woman", "woman surfing: medium-light skin tone" - ] + ], + "value" : "🏄🏼‍♀️" }, "🏄🏽‍♀️", { @@ -31350,26 +31349,27 @@ }, "🏄🏾‍♀️", { - "value" : "🏄🏾‍♀️", "keywords" : [ "medium-dark skin tone", "surfing", "woman", "woman surfing: medium-dark skin tone" - ] + ], + "value" : "🏄🏾‍♀️" }, "🏄🏿‍♀️", { - "value" : "🏄🏿‍♀️", "keywords" : [ "dark skin tone", "surfing", "woman", "woman surfing: dark skin tone" - ] + ], + "value" : "🏄🏿‍♀️" }, "🚣", { + "value" : "🚣", "keywords" : [ "boat", "canoe", @@ -31384,8 +31384,7 @@ "row", "rowboat", "rowing" - ], - "value" : "🚣" + ] }, "🚣🏻", { @@ -31400,14 +31399,14 @@ }, "🚣🏼", { + "value" : "🚣🏼", "keywords" : [ "boat", "medium-light skin tone", "person rowing boat", "person rowing boat: medium-light skin tone", "rowboat" - ], - "value" : "🚣🏼" + ] }, "🚣🏽", { @@ -31422,14 +31421,14 @@ }, "🚣🏾", { - "value" : "🚣🏾", "keywords" : [ "boat", "medium-dark skin tone", "person rowing boat", "person rowing boat: medium-dark skin tone", "rowboat" - ] + ], + "value" : "🚣🏾" }, "🚣🏿", { @@ -31487,6 +31486,7 @@ }, "🚣🏽‍♂️", { + "value" : "🚣🏽‍♂️", "keywords" : [ "boat", "man", @@ -31494,8 +31494,7 @@ "man rowing boat: medium skin tone", "medium skin tone", "rowboat" - ], - "value" : "🚣🏽‍♂️" + ] }, "🚣🏾‍♂️", { @@ -31523,7 +31522,6 @@ }, "🚣‍♀️", { - "value" : "🚣‍♀️", "keywords" : [ "boat", "canoe", @@ -31538,7 +31536,8 @@ "rowboat", "rowing", "woman" - ] + ], + "value" : "🚣‍♀️" }, "🚣🏻‍♀️", { @@ -31554,7 +31553,6 @@ }, "🚣🏼‍♀️", { - "value" : "🚣🏼‍♀️", "keywords" : [ "boat", "medium-light skin tone", @@ -31562,7 +31560,8 @@ "woman", "woman rowing boat", "woman rowing boat: medium-light skin tone" - ] + ], + "value" : "🚣🏼‍♀️" }, "🚣🏽‍♀️", { @@ -31578,7 +31577,6 @@ }, "🚣🏾‍♀️", { - "value" : "🚣🏾‍♀️", "keywords" : [ "boat", "medium-dark skin tone", @@ -31586,10 +31584,12 @@ "woman", "woman rowing boat", "woman rowing boat: medium-dark skin tone" - ] + ], + "value" : "🚣🏾‍♀️" }, "🚣🏿‍♀️", { + "value" : "🚣🏿‍♀️", "keywords" : [ "boat", "dark skin tone", @@ -31597,8 +31597,7 @@ "woman", "woman rowing boat", "woman rowing boat: dark skin tone" - ], - "value" : "🚣🏿‍♀️" + ] }, "🏊", { @@ -31625,13 +31624,13 @@ }, "🏊🏼", { - "value" : "🏊🏼", "keywords" : [ "medium-light skin tone", "person swimming", "person swimming: medium-light skin tone", "swim" - ] + ], + "value" : "🏊🏼" }, "🏊🏽", { @@ -31655,13 +31654,13 @@ }, "🏊🏿", { - "value" : "🏊🏿", "keywords" : [ "dark skin tone", "person swimming", "person swimming: dark skin tone", "swim" - ] + ], + "value" : "🏊🏿" }, "🏊‍♂️", { @@ -31689,47 +31688,47 @@ }, "🏊🏼‍♂️", { + "value" : "🏊🏼‍♂️", "keywords" : [ "man", "man swimming", "man swimming: medium-light skin tone", "medium-light skin tone", "swim" - ], - "value" : "🏊🏼‍♂️" + ] }, "🏊🏽‍♂️", { + "value" : "🏊🏽‍♂️", "keywords" : [ "man", "man swimming", "man swimming: medium skin tone", "medium skin tone", "swim" - ], - "value" : "🏊🏽‍♂️" + ] }, "🏊🏾‍♂️", { - "value" : "🏊🏾‍♂️", "keywords" : [ "man", "man swimming", "man swimming: medium-dark skin tone", "medium-dark skin tone", "swim" - ] + ], + "value" : "🏊🏾‍♂️" }, "🏊🏿‍♂️", { - "value" : "🏊🏿‍♂️", "keywords" : [ "dark skin tone", "man", "man swimming", "man swimming: dark skin tone", "swim" - ] + ], + "value" : "🏊🏿‍♂️" }, "🏊‍♀️", { @@ -31768,14 +31767,14 @@ }, "🏊🏽‍♀️", { - "value" : "🏊🏽‍♀️", "keywords" : [ "medium skin tone", "swim", "woman", "woman swimming", "woman swimming: medium skin tone" - ] + ], + "value" : "🏊🏽‍♀️" }, "🏊🏾‍♀️", { @@ -31801,6 +31800,7 @@ }, "⛹️", { + "value" : "⛹️", "keywords" : [ "athletic", "ball", @@ -31812,8 +31812,7 @@ "person", "player", "throw" - ], - "value" : "⛹️" + ] }, "⛹🏻", { @@ -31827,23 +31826,23 @@ }, "⛹🏼", { - "value" : "⛹🏼", "keywords" : [ "ball", "medium-light skin tone", "person bouncing ball", "person bouncing ball: medium-light skin tone" - ] + ], + "value" : "⛹🏼" }, "⛹🏽", { + "value" : "⛹🏽", "keywords" : [ "ball", "medium skin tone", "person bouncing ball", "person bouncing ball: medium skin tone" - ], - "value" : "⛹🏽" + ] }, "⛹🏾", { @@ -31867,7 +31866,6 @@ }, "⛹️‍♂️", { - "value" : "⛹️‍♂️", "keywords" : [ "athletic", "ball", @@ -31879,18 +31877,19 @@ "net", "player", "throw" - ] + ], + "value" : "⛹️‍♂️" }, "⛹🏻‍♂️", { + "value" : "⛹🏻‍♂️", "keywords" : [ "ball", "light skin tone", "man", "man bouncing ball", "man bouncing ball: light skin tone" - ], - "value" : "⛹🏻‍♂️" + ] }, "⛹🏼‍♂️", { @@ -31905,39 +31904,40 @@ }, "⛹🏽‍♂️", { + "value" : "⛹🏽‍♂️", "keywords" : [ "ball", "man", "man bouncing ball", "man bouncing ball: medium skin tone", "medium skin tone" - ], - "value" : "⛹🏽‍♂️" + ] }, "⛹🏾‍♂️", { - "value" : "⛹🏾‍♂️", "keywords" : [ "ball", "man", "man bouncing ball", "man bouncing ball: medium-dark skin tone", "medium-dark skin tone" - ] + ], + "value" : "⛹🏾‍♂️" }, "⛹🏿‍♂️", { + "value" : "⛹🏿‍♂️", "keywords" : [ "ball", "dark skin tone", "man", "man bouncing ball", "man bouncing ball: dark skin tone" - ], - "value" : "⛹🏿‍♂️" + ] }, "⛹️‍♀️", { + "value" : "⛹️‍♀️", "keywords" : [ "athletic", "ball", @@ -31949,19 +31949,18 @@ "player", "throw", "woman" - ], - "value" : "⛹️‍♀️" + ] }, "⛹🏻‍♀️", { - "value" : "⛹🏻‍♀️", "keywords" : [ "ball", "light skin tone", "woman", "woman bouncing ball", "woman bouncing ball: light skin tone" - ] + ], + "value" : "⛹🏻‍♀️" }, "⛹🏼‍♀️", { @@ -31976,25 +31975,25 @@ }, "⛹🏽‍♀️", { - "value" : "⛹🏽‍♀️", "keywords" : [ "ball", "medium skin tone", "woman", "woman bouncing ball", "woman bouncing ball: medium skin tone" - ] + ], + "value" : "⛹🏽‍♀️" }, "⛹🏾‍♀️", { + "value" : "⛹🏾‍♀️", "keywords" : [ "ball", "medium-dark skin tone", "woman", "woman bouncing ball", "woman bouncing ball: medium-dark skin tone" - ], - "value" : "⛹🏾‍♀️" + ] }, "⛹🏿‍♀️", { @@ -32026,25 +32025,25 @@ }, "🏋🏻", { + "value" : "🏋🏻", "keywords" : [ "lifter", "light skin tone", "person lifting weights", "person lifting weights: light skin tone", "weight" - ], - "value" : "🏋🏻" + ] }, "🏋🏼", { - "value" : "🏋🏼", "keywords" : [ "lifter", "medium-light skin tone", "person lifting weights", "person lifting weights: medium-light skin tone", "weight" - ] + ], + "value" : "🏋🏼" }, "🏋🏽", { @@ -32059,29 +32058,28 @@ }, "🏋🏾", { + "value" : "🏋🏾", "keywords" : [ "lifter", "medium-dark skin tone", "person lifting weights", "person lifting weights: medium-dark skin tone", "weight" - ], - "value" : "🏋🏾" + ] }, "🏋🏿", { + "value" : "🏋🏿", "keywords" : [ "dark skin tone", "lifter", "person lifting weights", "person lifting weights: dark skin tone", "weight" - ], - "value" : "🏋🏿" + ] }, "🏋️‍♂️", { - "value" : "🏋️‍♂️", "keywords" : [ "barbell", "bodybuilder", @@ -32094,7 +32092,8 @@ "weightlifter", "weights", "workout" - ] + ], + "value" : "🏋️‍♂️" }, "🏋🏻‍♂️", { @@ -32109,14 +32108,14 @@ }, "🏋🏼‍♂️", { - "value" : "🏋🏼‍♂️", "keywords" : [ "man", "man lifting weights", "man lifting weights: medium-light skin tone", "medium-light skin tone", "weight lifter" - ] + ], + "value" : "🏋🏼‍♂️" }, "🏋🏽‍♂️", { @@ -32181,14 +32180,14 @@ }, "🏋🏼‍♀️", { + "value" : "🏋🏼‍♀️", "keywords" : [ "medium-light skin tone", "weight lifter", "woman", "woman lifting weights", "woman lifting weights: medium-light skin tone" - ], - "value" : "🏋🏼‍♀️" + ] }, "🏋🏽‍♀️", { @@ -32203,14 +32202,14 @@ }, "🏋🏾‍♀️", { + "value" : "🏋🏾‍♀️", "keywords" : [ "medium-dark skin tone", "weight lifter", "woman", "woman lifting weights", "woman lifting weights: medium-dark skin tone" - ], - "value" : "🏋🏾‍♀️" + ] }, "🏋🏿‍♀️", { @@ -32225,6 +32224,7 @@ }, "🚴", { + "value" : "🚴", "keywords" : [ "bicycle", "bicyclist", @@ -32235,8 +32235,7 @@ "person", "riding", "sport" - ], - "value" : "🚴" + ] }, "🚴🏻", { @@ -32264,6 +32263,7 @@ }, "🚴🏽", { + "value" : "🚴🏽", "keywords" : [ "bicycle", "biking", @@ -32271,11 +32271,11 @@ "medium skin tone", "person biking", "person biking: medium skin tone" - ], - "value" : "🚴🏽" + ] }, "🚴🏾", { + "value" : "🚴🏾", "keywords" : [ "bicycle", "biking", @@ -32283,8 +32283,7 @@ "medium-dark skin tone", "person biking", "person biking: medium-dark skin tone" - ], - "value" : "🚴🏾" + ] }, "🚴🏿", { @@ -32414,7 +32413,6 @@ }, "🚴🏽‍♀️", { - "value" : "🚴🏽‍♀️", "keywords" : [ "bicycle", "biking", @@ -32422,7 +32420,8 @@ "medium skin tone", "woman", "woman biking: medium skin tone" - ] + ], + "value" : "🚴🏽‍♀️" }, "🚴🏾‍♀️", { @@ -32450,7 +32449,6 @@ }, "🚵", { - "value" : "🚵", "keywords" : [ "bicycle", "bicyclist", @@ -32462,7 +32460,8 @@ "person", "riding", "sport" - ] + ], + "value" : "🚵" }, "🚵🏻", { @@ -32494,7 +32493,6 @@ }, "🚵🏽", { - "value" : "🚵🏽", "keywords" : [ "bicycle", "bicyclist", @@ -32504,10 +32502,12 @@ "mountain", "person mountain biking", "person mountain biking: medium skin tone" - ] + ], + "value" : "🚵🏽" }, "🚵🏾", { + "value" : "🚵🏾", "keywords" : [ "bicycle", "bicyclist", @@ -32517,8 +32517,7 @@ "mountain", "person mountain biking", "person mountain biking: medium-dark skin tone" - ], - "value" : "🚵🏾" + ] }, "🚵🏿", { @@ -32552,6 +32551,7 @@ }, "🚵🏻‍♂️", { + "value" : "🚵🏻‍♂️", "keywords" : [ "bicycle", "bike", @@ -32561,8 +32561,7 @@ "man mountain biking", "man mountain biking: light skin tone", "mountain" - ], - "value" : "🚵🏻‍♂️" + ] }, "🚵🏼‍♂️", { @@ -32580,7 +32579,6 @@ }, "🚵🏽‍♂️", { - "value" : "🚵🏽‍♂️", "keywords" : [ "bicycle", "bike", @@ -32590,7 +32588,8 @@ "man mountain biking: medium skin tone", "medium skin tone", "mountain" - ] + ], + "value" : "🚵🏽‍♂️" }, "🚵🏾‍♂️", { @@ -32608,7 +32607,6 @@ }, "🚵🏿‍♂️", { - "value" : "🚵🏿‍♂️", "keywords" : [ "bicycle", "bike", @@ -32618,10 +32616,12 @@ "man mountain biking", "man mountain biking: dark skin tone", "mountain" - ] + ], + "value" : "🚵🏿‍♂️" }, "🚵‍♀️", { + "value" : "🚵‍♀️", "keywords" : [ "bicycle", "bicyclist", @@ -32633,8 +32633,7 @@ "riding", "sport", "woman" - ], - "value" : "🚵‍♀️" + ] }, "🚵🏻‍♀️", { @@ -32666,6 +32665,7 @@ }, "🚵🏽‍♀️", { + "value" : "🚵🏽‍♀️", "keywords" : [ "bicycle", "bike", @@ -32675,11 +32675,11 @@ "mountain", "woman", "woman mountain biking: medium skin tone" - ], - "value" : "🚵🏽‍♀️" + ] }, "🚵🏾‍♀️", { + "value" : "🚵🏾‍♀️", "keywords" : [ "bicycle", "bike", @@ -32689,8 +32689,7 @@ "mountain", "woman", "woman mountain biking: medium-dark skin tone" - ], - "value" : "🚵🏾‍♀️" + ] }, "🚵🏿‍♀️", { @@ -32708,6 +32707,7 @@ }, "🤸", { + "value" : "🤸", "keywords" : [ "active", "cartwheel", @@ -32718,8 +32718,7 @@ "happy", "person", "somersault" - ], - "value" : "🤸" + ] }, "🤸🏻", { @@ -32778,6 +32777,7 @@ }, "🤸‍♂️", { + "value" : "🤸‍♂️", "keywords" : [ "active", "cartwheel", @@ -32788,8 +32788,7 @@ "happy", "man", "somersault" - ], - "value" : "🤸‍♂️" + ] }, "🤸🏻‍♂️", { @@ -32817,7 +32816,6 @@ }, "🤸🏽‍♂️", { - "value" : "🤸🏽‍♂️", "keywords" : [ "cartwheel", "gymnastics", @@ -32825,10 +32823,12 @@ "man cartwheeling", "man cartwheeling: medium skin tone", "medium skin tone" - ] + ], + "value" : "🤸🏽‍♂️" }, "🤸🏾‍♂️", { + "value" : "🤸🏾‍♂️", "keywords" : [ "cartwheel", "gymnastics", @@ -32836,12 +32836,10 @@ "man cartwheeling", "man cartwheeling: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "🤸🏾‍♂️" + ] }, "🤸🏿‍♂️", { - "value" : "🤸🏿‍♂️", "keywords" : [ "cartwheel", "dark skin tone", @@ -32849,7 +32847,8 @@ "man", "man cartwheeling", "man cartwheeling: dark skin tone" - ] + ], + "value" : "🤸🏿‍♂️" }, "🤸‍♀️", { @@ -32868,6 +32867,7 @@ }, "🤸🏻‍♀️", { + "value" : "🤸🏻‍♀️", "keywords" : [ "cartwheel", "gymnastics", @@ -32875,8 +32875,7 @@ "woman", "woman cartwheeling", "woman cartwheeling: light skin tone" - ], - "value" : "🤸🏻‍♀️" + ] }, "🤸🏼‍♀️", { @@ -32956,7 +32955,6 @@ }, "🤼‍♀️", { - "value" : "🤼‍♀️", "keywords" : [ "combat", "duel", @@ -32966,11 +32964,11 @@ "women", "wrestle", "wrestling" - ] + ], + "value" : "🤼‍♀️" }, "🤽", { - "value" : "🤽", "keywords" : [ "person", "playing", @@ -32979,18 +32977,19 @@ "swimming", "water", "waterpolo" - ] + ], + "value" : "🤽" }, "🤽🏻", { + "value" : "🤽🏻", "keywords" : [ "light skin tone", "person playing water polo", "person playing water polo: light skin tone", "polo", "water" - ], - "value" : "🤽🏻" + ] }, "🤽🏼", { @@ -33005,39 +33004,40 @@ }, "🤽🏽", { - "value" : "🤽🏽", "keywords" : [ "medium skin tone", "person playing water polo", "person playing water polo: medium skin tone", "polo", "water" - ] + ], + "value" : "🤽🏽" }, "🤽🏾", { - "value" : "🤽🏾", "keywords" : [ "medium-dark skin tone", "person playing water polo", "person playing water polo: medium-dark skin tone", "polo", "water" - ] + ], + "value" : "🤽🏾" }, "🤽🏿", { - "value" : "🤽🏿", "keywords" : [ "dark skin tone", "person playing water polo", "person playing water polo: dark skin tone", "polo", "water" - ] + ], + "value" : "🤽🏿" }, "🤽‍♂️", { + "value" : "🤽‍♂️", "keywords" : [ "man", "playing", @@ -33046,8 +33046,7 @@ "swimming", "water", "waterpolo" - ], - "value" : "🤽‍♂️" + ] }, "🤽🏻‍♂️", { @@ -33073,14 +33072,14 @@ }, "🤽🏽‍♂️", { + "value" : "🤽🏽‍♂️", "keywords" : [ "man", "man playing water polo", "man playing water polo: medium skin tone", "medium skin tone", "water polo" - ], - "value" : "🤽🏽‍♂️" + ] }, "🤽🏾‍♂️", { @@ -33130,14 +33129,14 @@ }, "🤽🏼‍♀️", { - "value" : "🤽🏼‍♀️", "keywords" : [ "medium-light skin tone", "water polo", "woman", "woman playing water polo", "woman playing water polo: medium-light skin tone" - ] + ], + "value" : "🤽🏼‍♀️" }, "🤽🏽‍♀️", { @@ -33152,14 +33151,14 @@ }, "🤽🏾‍♀️", { - "value" : "🤽🏾‍♀️", "keywords" : [ "medium-dark skin tone", "water polo", "woman", "woman playing water polo", "woman playing water polo: medium-dark skin tone" - ] + ], + "value" : "🤽🏾‍♀️" }, "🤽🏿‍♀️", { @@ -33174,6 +33173,7 @@ }, "🤾", { + "value" : "🤾", "keywords" : [ "athletics", "ball", @@ -33188,30 +33188,29 @@ "sport", "throw", "toss" - ], - "value" : "🤾" + ] }, "🤾🏻", { - "value" : "🤾🏻", "keywords" : [ "ball", "handball", "light skin tone", "person playing handball", "person playing handball: light skin tone" - ] + ], + "value" : "🤾🏻" }, "🤾🏼", { + "value" : "🤾🏼", "keywords" : [ "ball", "handball", "medium-light skin tone", "person playing handball", "person playing handball: medium-light skin tone" - ], - "value" : "🤾🏼" + ] }, "🤾🏽", { @@ -33226,14 +33225,14 @@ }, "🤾🏾", { + "value" : "🤾🏾", "keywords" : [ "ball", "handball", "medium-dark skin tone", "person playing handball", "person playing handball: medium-dark skin tone" - ], - "value" : "🤾🏾" + ] }, "🤾🏿", { @@ -33248,7 +33247,6 @@ }, "🤾‍♂️", { - "value" : "🤾‍♂️", "keywords" : [ "athletics", "ball", @@ -33263,7 +33261,8 @@ "sport", "throw", "toss" - ] + ], + "value" : "🤾‍♂️" }, "🤾🏻‍♂️", { @@ -33278,14 +33277,14 @@ }, "🤾🏼‍♂️", { - "value" : "🤾🏼‍♂️", "keywords" : [ "handball", "man", "man playing handball", "man playing handball: medium-light skin tone", "medium-light skin tone" - ] + ], + "value" : "🤾🏼‍♂️" }, "🤾🏽‍♂️", { @@ -33341,14 +33340,14 @@ }, "🤾🏻‍♀️", { - "value" : "🤾🏻‍♀️", "keywords" : [ "handball", "light skin tone", "woman", "woman playing handball", "woman playing handball: light skin tone" - ] + ], + "value" : "🤾🏻‍♀️" }, "🤾🏼‍♀️", { @@ -33363,36 +33362,36 @@ }, "🤾🏽‍♀️", { + "value" : "🤾🏽‍♀️", "keywords" : [ "handball", "medium skin tone", "woman", "woman playing handball", "woman playing handball: medium skin tone" - ], - "value" : "🤾🏽‍♀️" + ] }, "🤾🏾‍♀️", { + "value" : "🤾🏾‍♀️", "keywords" : [ "handball", "medium-dark skin tone", "woman", "woman playing handball", "woman playing handball: medium-dark skin tone" - ], - "value" : "🤾🏾‍♀️" + ] }, "🤾🏿‍♀️", { - "value" : "🤾🏿‍♀️", "keywords" : [ "dark skin tone", "handball", "woman", "woman playing handball", "woman playing handball: dark skin tone" - ] + ], + "value" : "🤾🏿‍♀️" }, "🤹", { @@ -33412,6 +33411,7 @@ }, "🤹🏻", { + "value" : "🤹🏻", "keywords" : [ "balance", "juggle", @@ -33420,8 +33420,7 @@ "person juggling", "person juggling: light skin tone", "skill" - ], - "value" : "🤹🏻" + ] }, "🤹🏼", { @@ -33438,6 +33437,7 @@ }, "🤹🏽", { + "value" : "🤹🏽", "keywords" : [ "balance", "juggle", @@ -33446,12 +33446,10 @@ "person juggling", "person juggling: medium skin tone", "skill" - ], - "value" : "🤹🏽" + ] }, "🤹🏾", { - "value" : "🤹🏾", "keywords" : [ "balance", "juggle", @@ -33460,7 +33458,8 @@ "person juggling", "person juggling: medium-dark skin tone", "skill" - ] + ], + "value" : "🤹🏾" }, "🤹🏿", { @@ -33477,6 +33476,7 @@ }, "🤹‍♂️", { + "value" : "🤹‍♂️", "keywords" : [ "act", "balance", @@ -33488,30 +33488,29 @@ "manage", "multitask", "skill" - ], - "value" : "🤹‍♂️" + ] }, "🤹🏻‍♂️", { - "value" : "🤹🏻‍♂️", "keywords" : [ "juggling", "light skin tone", "man", "man juggling: light skin tone", "multitask" - ] + ], + "value" : "🤹🏻‍♂️" }, "🤹🏼‍♂️", { - "value" : "🤹🏼‍♂️", "keywords" : [ "juggling", "man", "man juggling: medium-light skin tone", "medium-light skin tone", "multitask" - ] + ], + "value" : "🤹🏼‍♂️" }, "🤹🏽‍♂️", { @@ -33548,6 +33547,7 @@ }, "🤹‍♀️", { + "value" : "🤹‍♀️", "keywords" : [ "act", "balance", @@ -33559,30 +33559,29 @@ "multitask", "skill", "woman" - ], - "value" : "🤹‍♀️" + ] }, "🤹🏻‍♀️", { + "value" : "🤹🏻‍♀️", "keywords" : [ "juggling", "light skin tone", "multitask", "woman", "woman juggling: light skin tone" - ], - "value" : "🤹🏻‍♀️" + ] }, "🤹🏼‍♀️", { + "value" : "🤹🏼‍♀️", "keywords" : [ "juggling", "medium-light skin tone", "multitask", "woman", "woman juggling: medium-light skin tone" - ], - "value" : "🤹🏼‍♀️" + ] }, "🤹🏽‍♀️", { @@ -33597,29 +33596,28 @@ }, "🤹🏾‍♀️", { - "value" : "🤹🏾‍♀️", "keywords" : [ "juggling", "medium-dark skin tone", "multitask", "woman", "woman juggling: medium-dark skin tone" - ] + ], + "value" : "🤹🏾‍♀️" }, "🤹🏿‍♀️", { + "value" : "🤹🏿‍♀️", "keywords" : [ "dark skin tone", "juggling", "multitask", "woman", "woman juggling: dark skin tone" - ], - "value" : "🤹🏿‍♀️" + ] }, "🧘", { - "value" : "🧘", "keywords" : [ "cross", "legged", @@ -33634,7 +33632,8 @@ "yoga", "yogi", "zen" - ] + ], + "value" : "🧘" }, "🧘🏻", { @@ -33649,25 +33648,25 @@ }, "🧘🏼", { + "value" : "🧘🏼", "keywords" : [ "meditation", "medium-light skin tone", "person in lotus position", "person in lotus position: medium-light skin tone", "yoga" - ], - "value" : "🧘🏼" + ] }, "🧘🏽", { - "value" : "🧘🏽", "keywords" : [ "meditation", "medium skin tone", "person in lotus position", "person in lotus position: medium skin tone", "yoga" - ] + ], + "value" : "🧘🏽" }, "🧘🏾", { @@ -33693,6 +33692,7 @@ }, "🧘‍♂️", { + "value" : "🧘‍♂️", "keywords" : [ "cross", "legged", @@ -33707,30 +33707,29 @@ "yoga", "yogi", "zen" - ], - "value" : "🧘‍♂️" + ] }, "🧘🏻‍♂️", { - "value" : "🧘🏻‍♂️", "keywords" : [ "light skin tone", "man in lotus position", "man in lotus position: light skin tone", "meditation", "yoga" - ] + ], + "value" : "🧘🏻‍♂️" }, "🧘🏼‍♂️", { - "value" : "🧘🏼‍♂️", "keywords" : [ "man in lotus position", "man in lotus position: medium-light skin tone", "meditation", "medium-light skin tone", "yoga" - ] + ], + "value" : "🧘🏼‍♂️" }, "🧘🏽‍♂️", { @@ -33745,29 +33744,28 @@ }, "🧘🏾‍♂️", { - "value" : "🧘🏾‍♂️", "keywords" : [ "man in lotus position", "man in lotus position: medium-dark skin tone", "meditation", "medium-dark skin tone", "yoga" - ] + ], + "value" : "🧘🏾‍♂️" }, "🧘🏿‍♂️", { + "value" : "🧘🏿‍♂️", "keywords" : [ "dark skin tone", "man in lotus position", "man in lotus position: dark skin tone", "meditation", "yoga" - ], - "value" : "🧘🏿‍♂️" + ] }, "🧘‍♀️", { - "value" : "🧘‍♀️", "keywords" : [ "cross", "legged", @@ -33782,7 +33780,8 @@ "yoga", "yogi", "zen" - ] + ], + "value" : "🧘‍♀️" }, "🧘🏻‍♀️", { @@ -33797,14 +33796,14 @@ }, "🧘🏼‍♀️", { + "value" : "🧘🏼‍♀️", "keywords" : [ "meditation", "medium-light skin tone", "woman in lotus position", "woman in lotus position: medium-light skin tone", "yoga" - ], - "value" : "🧘🏼‍♀️" + ] }, "🧘🏽‍♀️", { @@ -33830,14 +33829,14 @@ }, "🧘🏿‍♀️", { - "value" : "🧘🏿‍♀️", "keywords" : [ "dark skin tone", "meditation", "woman in lotus position", "woman in lotus position: dark skin tone", "yoga" - ] + ], + "value" : "🧘🏿‍♀️" }, "🛀", { @@ -33863,14 +33862,14 @@ }, "🛀🏼", { + "value" : "🛀🏼", "keywords" : [ "bath", "bathtub", "medium-light skin tone", "person taking bath", "person taking bath: medium-light skin tone" - ], - "value" : "🛀🏼" + ] }, "🛀🏽", { @@ -33885,28 +33884,29 @@ }, "🛀🏾", { - "value" : "🛀🏾", "keywords" : [ "bath", "bathtub", "medium-dark skin tone", "person taking bath", "person taking bath: medium-dark skin tone" - ] + ], + "value" : "🛀🏾" }, "🛀🏿", { - "value" : "🛀🏿", "keywords" : [ "bath", "bathtub", "dark skin tone", "person taking bath", "person taking bath: dark skin tone" - ] + ], + "value" : "🛀🏿" }, "🛌", { + "value" : "🛌", "keywords" : [ "bed", "bedtime", @@ -33919,8 +33919,7 @@ "sleep", "tired", "zzz" - ], - "value" : "🛌" + ] }, "🛌🏻", { @@ -33936,7 +33935,6 @@ }, "🛌🏼", { - "value" : "🛌🏼", "keywords" : [ "good night", "hotel", @@ -33944,10 +33942,12 @@ "person in bed", "person in bed: medium-light skin tone", "sleep" - ] + ], + "value" : "🛌🏼" }, "🛌🏽", { + "value" : "🛌🏽", "keywords" : [ "good night", "hotel", @@ -33955,12 +33955,10 @@ "person in bed", "person in bed: medium skin tone", "sleep" - ], - "value" : "🛌🏽" + ] }, "🛌🏾", { - "value" : "🛌🏾", "keywords" : [ "good night", "hotel", @@ -33968,11 +33966,11 @@ "person in bed", "person in bed: medium-dark skin tone", "sleep" - ] + ], + "value" : "🛌🏾" }, "🛌🏿", { - "value" : "🛌🏿", "keywords" : [ "dark skin tone", "good night", @@ -33980,10 +33978,12 @@ "person in bed", "person in bed: dark skin tone", "sleep" - ] + ], + "value" : "🛌🏿" }, "🧑‍🤝‍🧑", { + "value" : "🧑‍🤝‍🧑", "keywords" : [ "bae", "bestie", @@ -33996,12 +33996,10 @@ "hold", "people", "twins" - ], - "value" : "🧑‍🤝‍🧑" + ] }, "🧑🏻‍🤝‍🧑🏻", { - "value" : "🧑🏻‍🤝‍🧑🏻", "keywords" : [ "couple", "hand", @@ -34011,7 +34009,8 @@ "people holding hands", "people holding hands: light skin tone", "person" - ] + ], + "value" : "🧑🏻‍🤝‍🧑🏻" }, "🧑🏻‍🤝‍🧑🏼", { @@ -34030,6 +34029,7 @@ }, "🧑🏻‍🤝‍🧑🏽", { + "value" : "🧑🏻‍🤝‍🧑🏽", "keywords" : [ "couple", "hand", @@ -34040,8 +34040,7 @@ "people holding hands", "people holding hands: light skin tone, medium skin tone", "person" - ], - "value" : "🧑🏻‍🤝‍🧑🏽" + ] }, "🧑🏻‍🤝‍🧑🏾", { @@ -34060,6 +34059,7 @@ }, "🧑🏻‍🤝‍🧑🏿", { + "value" : "🧑🏻‍🤝‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -34070,11 +34070,11 @@ "people holding hands", "people holding hands: light skin tone, dark skin tone", "person" - ], - "value" : "🧑🏻‍🤝‍🧑🏿" + ] }, "🧑🏼‍🤝‍🧑🏻", { + "value" : "🧑🏼‍🤝‍🧑🏻", "keywords" : [ "couple", "hand", @@ -34085,8 +34085,7 @@ "people holding hands", "people holding hands: medium-light skin tone, light skin tone", "person" - ], - "value" : "🧑🏼‍🤝‍🧑🏻" + ] }, "🧑🏼‍🤝‍🧑🏼", { @@ -34104,7 +34103,6 @@ }, "🧑🏼‍🤝‍🧑🏽", { - "value" : "🧑🏼‍🤝‍🧑🏽", "keywords" : [ "couple", "hand", @@ -34115,7 +34113,8 @@ "people holding hands", "people holding hands: medium-light skin tone, medium skin tone", "person" - ] + ], + "value" : "🧑🏼‍🤝‍🧑🏽" }, "🧑🏼‍🤝‍🧑🏾", { @@ -34149,7 +34148,6 @@ }, "🧑🏽‍🤝‍🧑🏻", { - "value" : "🧑🏽‍🤝‍🧑🏻", "keywords" : [ "couple", "hand", @@ -34160,7 +34158,8 @@ "people holding hands", "people holding hands: medium skin tone, light skin tone", "person" - ] + ], + "value" : "🧑🏽‍🤝‍🧑🏻" }, "🧑🏽‍🤝‍🧑🏼", { @@ -34179,6 +34178,7 @@ }, "🧑🏽‍🤝‍🧑🏽", { + "value" : "🧑🏽‍🤝‍🧑🏽", "keywords" : [ "couple", "hand", @@ -34188,8 +34188,7 @@ "people holding hands", "people holding hands: medium skin tone", "person" - ], - "value" : "🧑🏽‍🤝‍🧑🏽" + ] }, "🧑🏽‍🤝‍🧑🏾", { @@ -34208,7 +34207,6 @@ }, "🧑🏽‍🤝‍🧑🏿", { - "value" : "🧑🏽‍🤝‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -34219,7 +34217,8 @@ "people holding hands", "people holding hands: medium skin tone, dark skin tone", "person" - ] + ], + "value" : "🧑🏽‍🤝‍🧑🏿" }, "🧑🏾‍🤝‍🧑🏻", { @@ -34253,6 +34252,7 @@ }, "🧑🏾‍🤝‍🧑🏽", { + "value" : "🧑🏾‍🤝‍🧑🏽", "keywords" : [ "couple", "hand", @@ -34263,8 +34263,7 @@ "people holding hands", "people holding hands: medium-dark skin tone, medium skin tone", "person" - ], - "value" : "🧑🏾‍🤝‍🧑🏽" + ] }, "🧑🏾‍🤝‍🧑🏾", { @@ -34297,7 +34296,6 @@ }, "🧑🏿‍🤝‍🧑🏻", { - "value" : "🧑🏿‍🤝‍🧑🏻", "keywords" : [ "couple", "dark skin tone", @@ -34308,11 +34306,11 @@ "people holding hands", "people holding hands: dark skin tone, light skin tone", "person" - ] + ], + "value" : "🧑🏿‍🤝‍🧑🏻" }, "🧑🏿‍🤝‍🧑🏼", { - "value" : "🧑🏿‍🤝‍🧑🏼", "keywords" : [ "couple", "dark skin tone", @@ -34323,10 +34321,12 @@ "people holding hands", "people holding hands: dark skin tone, medium-light skin tone", "person" - ] + ], + "value" : "🧑🏿‍🤝‍🧑🏼" }, "🧑🏿‍🤝‍🧑🏽", { + "value" : "🧑🏿‍🤝‍🧑🏽", "keywords" : [ "couple", "dark skin tone", @@ -34337,11 +34337,11 @@ "people holding hands", "people holding hands: dark skin tone, medium skin tone", "person" - ], - "value" : "🧑🏿‍🤝‍🧑🏽" + ] }, "🧑🏿‍🤝‍🧑🏾", { + "value" : "🧑🏿‍🤝‍🧑🏾", "keywords" : [ "couple", "dark skin tone", @@ -34352,11 +34352,11 @@ "people holding hands", "people holding hands: dark skin tone, medium-dark skin tone", "person" - ], - "value" : "🧑🏿‍🤝‍🧑🏾" + ] }, "🧑🏿‍🤝‍🧑🏿", { + "value" : "🧑🏿‍🤝‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -34366,8 +34366,7 @@ "people holding hands", "people holding hands: dark skin tone", "person" - ], - "value" : "🧑🏿‍🤝‍🧑🏿" + ] }, "👭", { @@ -34417,7 +34416,6 @@ }, "👩🏻‍🤝‍👩🏽", { - "value" : "👩🏻‍🤝‍👩🏽", "keywords" : [ "couple", "hand", @@ -34427,11 +34425,11 @@ "women", "women holding hands", "women holding hands: light skin tone, medium skin tone" - ] + ], + "value" : "👩🏻‍🤝‍👩🏽" }, "👩🏻‍🤝‍👩🏾", { - "value" : "👩🏻‍🤝‍👩🏾", "keywords" : [ "couple", "hand", @@ -34441,10 +34439,12 @@ "women", "women holding hands", "women holding hands: light skin tone, medium-dark skin tone" - ] + ], + "value" : "👩🏻‍🤝‍👩🏾" }, "👩🏻‍🤝‍👩🏿", { + "value" : "👩🏻‍🤝‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -34454,12 +34454,10 @@ "women", "women holding hands", "women holding hands: light skin tone, dark skin tone" - ], - "value" : "👩🏻‍🤝‍👩🏿" + ] }, "👩🏼‍🤝‍👩🏻", { - "value" : "👩🏼‍🤝‍👩🏻", "keywords" : [ "couple", "hand", @@ -34469,7 +34467,8 @@ "women", "women holding hands", "women holding hands: medium-light skin tone, light skin tone" - ] + ], + "value" : "👩🏼‍🤝‍👩🏻" }, "👭🏼", { @@ -34514,6 +34513,7 @@ }, "👩🏼‍🤝‍👩🏿", { + "value" : "👩🏼‍🤝‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -34523,12 +34523,10 @@ "women", "women holding hands", "women holding hands: medium-light skin tone, dark skin tone" - ], - "value" : "👩🏼‍🤝‍👩🏿" + ] }, "👩🏽‍🤝‍👩🏻", { - "value" : "👩🏽‍🤝‍👩🏻", "keywords" : [ "couple", "hand", @@ -34538,10 +34536,12 @@ "women", "women holding hands", "women holding hands: medium skin tone, light skin tone" - ] + ], + "value" : "👩🏽‍🤝‍👩🏻" }, "👩🏽‍🤝‍👩🏼", { + "value" : "👩🏽‍🤝‍👩🏼", "keywords" : [ "couple", "hand", @@ -34551,8 +34551,7 @@ "women", "women holding hands", "women holding hands: medium skin tone, medium-light skin tone" - ], - "value" : "👩🏽‍🤝‍👩🏼" + ] }, "👭🏽", { @@ -34583,7 +34582,6 @@ }, "👩🏽‍🤝‍👩🏿", { - "value" : "👩🏽‍🤝‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -34593,11 +34591,11 @@ "women", "women holding hands", "women holding hands: medium skin tone, dark skin tone" - ] + ], + "value" : "👩🏽‍🤝‍👩🏿" }, "👩🏾‍🤝‍👩🏻", { - "value" : "👩🏾‍🤝‍👩🏻", "keywords" : [ "couple", "hand", @@ -34607,7 +34605,8 @@ "women", "women holding hands", "women holding hands: medium-dark skin tone, light skin tone" - ] + ], + "value" : "👩🏾‍🤝‍👩🏻" }, "👩🏾‍🤝‍👩🏼", { @@ -34625,6 +34624,7 @@ }, "👩🏾‍🤝‍👩🏽", { + "value" : "👩🏾‍🤝‍👩🏽", "keywords" : [ "couple", "hand", @@ -34634,12 +34634,10 @@ "women", "women holding hands", "women holding hands: medium-dark skin tone, medium skin tone" - ], - "value" : "👩🏾‍🤝‍👩🏽" + ] }, "👭🏾", { - "value" : "👭🏾", "keywords" : [ "couple", "hand", @@ -34648,10 +34646,12 @@ "women", "women holding hands", "women holding hands: medium-dark skin tone" - ] + ], + "value" : "👭🏾" }, "👩🏾‍🤝‍👩🏿", { + "value" : "👩🏾‍🤝‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -34661,11 +34661,11 @@ "women", "women holding hands", "women holding hands: medium-dark skin tone, dark skin tone" - ], - "value" : "👩🏾‍🤝‍👩🏿" + ] }, "👩🏿‍🤝‍👩🏻", { + "value" : "👩🏿‍🤝‍👩🏻", "keywords" : [ "couple", "dark skin tone", @@ -34675,8 +34675,7 @@ "women", "women holding hands", "women holding hands: dark skin tone, light skin tone" - ], - "value" : "👩🏿‍🤝‍👩🏻" + ] }, "👩🏿‍🤝‍👩🏼", { @@ -34708,6 +34707,7 @@ }, "👩🏿‍🤝‍👩🏾", { + "value" : "👩🏿‍🤝‍👩🏾", "keywords" : [ "couple", "dark skin tone", @@ -34717,8 +34717,7 @@ "women", "women holding hands", "women holding hands: dark skin tone, medium-dark skin tone" - ], - "value" : "👩🏿‍🤝‍👩🏾" + ] }, "👭🏿", { @@ -34735,6 +34734,7 @@ }, "👫", { + "value" : "👫", "keywords" : [ "bae", "bestie", @@ -34748,11 +34748,11 @@ "man", "twins", "woman" - ], - "value" : "👫" + ] }, "👫🏻", { + "value" : "👫🏻", "keywords" : [ "couple", "hand", @@ -34763,8 +34763,7 @@ "woman", "woman and man holding hands", "woman and man holding hands: light skin tone" - ], - "value" : "👫🏻" + ] }, "👩🏻‍🤝‍👨🏼", { @@ -34879,7 +34878,6 @@ }, "👩🏼‍🤝‍👨🏾", { - "value" : "👩🏼‍🤝‍👨🏾", "keywords" : [ "couple", "hand", @@ -34891,11 +34889,11 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium-light skin tone, medium-dark skin tone" - ] + ], + "value" : "👩🏼‍🤝‍👨🏾" }, "👩🏼‍🤝‍👨🏿", { - "value" : "👩🏼‍🤝‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -34907,7 +34905,8 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium-light skin tone, dark skin tone" - ] + ], + "value" : "👩🏼‍🤝‍👨🏿" }, "👩🏽‍🤝‍👨🏻", { @@ -34927,7 +34926,6 @@ }, "👩🏽‍🤝‍👨🏼", { - "value" : "👩🏽‍🤝‍👨🏼", "keywords" : [ "couple", "hand", @@ -34939,7 +34937,8 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium skin tone, medium-light skin tone" - ] + ], + "value" : "👩🏽‍🤝‍👨🏼" }, "👫🏽", { @@ -34974,7 +34973,6 @@ }, "👩🏽‍🤝‍👨🏿", { - "value" : "👩🏽‍🤝‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -34986,7 +34984,8 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium skin tone, dark skin tone" - ] + ], + "value" : "👩🏽‍🤝‍👨🏿" }, "👩🏾‍🤝‍👨🏻", { @@ -35006,6 +35005,7 @@ }, "👩🏾‍🤝‍👨🏼", { + "value" : "👩🏾‍🤝‍👨🏼", "keywords" : [ "couple", "hand", @@ -35017,8 +35017,7 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium-dark skin tone, medium-light skin tone" - ], - "value" : "👩🏾‍🤝‍👨🏼" + ] }, "👩🏾‍🤝‍👨🏽", { @@ -35038,7 +35037,6 @@ }, "👫🏾", { - "value" : "👫🏾", "keywords" : [ "couple", "hand", @@ -35049,7 +35047,8 @@ "woman", "woman and man holding hands", "woman and man holding hands: medium-dark skin tone" - ] + ], + "value" : "👫🏾" }, "👩🏾‍🤝‍👨🏿", { @@ -35069,6 +35068,7 @@ }, "👩🏿‍🤝‍👨🏻", { + "value" : "👩🏿‍🤝‍👨🏻", "keywords" : [ "couple", "dark skin tone", @@ -35080,8 +35080,7 @@ "woman", "woman and man holding hands", "woman and man holding hands: dark skin tone, light skin tone" - ], - "value" : "👩🏿‍🤝‍👨🏻" + ] }, "👩🏿‍🤝‍👨🏼", { @@ -35101,6 +35100,7 @@ }, "👩🏿‍🤝‍👨🏽", { + "value" : "👩🏿‍🤝‍👨🏽", "keywords" : [ "couple", "dark skin tone", @@ -35112,8 +35112,7 @@ "woman", "woman and man holding hands", "woman and man holding hands: dark skin tone, medium skin tone" - ], - "value" : "👩🏿‍🤝‍👨🏽" + ] }, "👩🏿‍🤝‍👨🏾", { @@ -35167,6 +35166,7 @@ }, "👬🏻", { + "value" : "👬🏻", "keywords" : [ "couple", "Gemini", @@ -35178,8 +35178,7 @@ "men holding hands: light skin tone", "twins", "zodiac" - ], - "value" : "👬🏻" + ] }, "👨🏻‍🤝‍👨🏼", { @@ -35251,7 +35250,6 @@ }, "👨🏼‍🤝‍👨🏻", { - "value" : "👨🏼‍🤝‍👨🏻", "keywords" : [ "couple", "Gemini", @@ -35264,7 +35262,8 @@ "men holding hands: medium-light skin tone, light skin tone", "twins", "zodiac" - ] + ], + "value" : "👨🏼‍🤝‍👨🏻" }, "👬🏼", { @@ -35301,6 +35300,7 @@ }, "👨🏼‍🤝‍👨🏾", { + "value" : "👨🏼‍🤝‍👨🏾", "keywords" : [ "couple", "Gemini", @@ -35313,8 +35313,7 @@ "men holding hands: medium-light skin tone, medium-dark skin tone", "twins", "zodiac" - ], - "value" : "👨🏼‍🤝‍👨🏾" + ] }, "👨🏼‍🤝‍👨🏿", { @@ -35335,7 +35334,6 @@ }, "👨🏽‍🤝‍👨🏻", { - "value" : "👨🏽‍🤝‍👨🏻", "keywords" : [ "couple", "Gemini", @@ -35348,10 +35346,12 @@ "men holding hands: medium skin tone, light skin tone", "twins", "zodiac" - ] + ], + "value" : "👨🏽‍🤝‍👨🏻" }, "👨🏽‍🤝‍👨🏼", { + "value" : "👨🏽‍🤝‍👨🏼", "keywords" : [ "couple", "Gemini", @@ -35364,8 +35364,7 @@ "men holding hands: medium skin tone, medium-light skin tone", "twins", "zodiac" - ], - "value" : "👨🏽‍🤝‍👨🏼" + ] }, "👬🏽", { @@ -35385,7 +35384,6 @@ }, "👨🏽‍🤝‍👨🏾", { - "value" : "👨🏽‍🤝‍👨🏾", "keywords" : [ "couple", "Gemini", @@ -35398,7 +35396,8 @@ "men holding hands: medium skin tone, medium-dark skin tone", "twins", "zodiac" - ] + ], + "value" : "👨🏽‍🤝‍👨🏾" }, "👨🏽‍🤝‍👨🏿", { @@ -35453,7 +35452,6 @@ }, "👨🏾‍🤝‍👨🏽", { - "value" : "👨🏾‍🤝‍👨🏽", "keywords" : [ "couple", "Gemini", @@ -35466,11 +35464,11 @@ "men holding hands: medium-dark skin tone, medium skin tone", "twins", "zodiac" - ] + ], + "value" : "👨🏾‍🤝‍👨🏽" }, "👬🏾", { - "value" : "👬🏾", "keywords" : [ "couple", "Gemini", @@ -35482,10 +35480,12 @@ "men holding hands: medium-dark skin tone", "twins", "zodiac" - ] + ], + "value" : "👬🏾" }, "👨🏾‍🤝‍👨🏿", { + "value" : "👨🏾‍🤝‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -35498,11 +35498,11 @@ "men holding hands: medium-dark skin tone, dark skin tone", "twins", "zodiac" - ], - "value" : "👨🏾‍🤝‍👨🏿" + ] }, "👨🏿‍🤝‍👨🏻", { + "value" : "👨🏿‍🤝‍👨🏻", "keywords" : [ "couple", "dark skin tone", @@ -35515,12 +35515,10 @@ "men holding hands: dark skin tone, light skin tone", "twins", "zodiac" - ], - "value" : "👨🏿‍🤝‍👨🏻" + ] }, "👨🏿‍🤝‍👨🏼", { - "value" : "👨🏿‍🤝‍👨🏼", "keywords" : [ "couple", "dark skin tone", @@ -35533,7 +35531,8 @@ "men holding hands: dark skin tone, medium-light skin tone", "twins", "zodiac" - ] + ], + "value" : "👨🏿‍🤝‍👨🏼" }, "👨🏿‍🤝‍👨🏽", { @@ -35587,7 +35586,6 @@ }, "💏", { - "value" : "💏", "keywords" : [ "anniversary", "babe", @@ -35603,17 +35601,18 @@ "romance", "together", "xoxo" - ] + ], + "value" : "💏" }, "💏🏻", { + "value" : "💏🏻", "keywords" : [ "couple", "kiss", "kiss: light skin tone", "light skin tone" - ], - "value" : "💏🏻" + ] }, "💏🏼", { @@ -35627,37 +35626,36 @@ }, "💏🏽", { - "value" : "💏🏽", "keywords" : [ "couple", "kiss", "kiss: medium skin tone", "medium skin tone" - ] + ], + "value" : "💏🏽" }, "💏🏾", { + "value" : "💏🏾", "keywords" : [ "couple", "kiss", "kiss: medium-dark skin tone", "medium-dark skin tone" - ], - "value" : "💏🏾" + ] }, "💏🏿", { + "value" : "💏🏿", "keywords" : [ "couple", "dark skin tone", "kiss", "kiss: dark skin tone" - ], - "value" : "💏🏿" + ] }, "🧑🏻‍❤️‍💋‍🧑🏼", { - "value" : "🧑🏻‍❤️‍💋‍🧑🏼", "keywords" : [ "couple", "kiss", @@ -35665,10 +35663,12 @@ "light skin tone", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏻‍❤️‍💋‍🧑🏼" }, "🧑🏻‍❤️‍💋‍🧑🏽", { + "value" : "🧑🏻‍❤️‍💋‍🧑🏽", "keywords" : [ "couple", "kiss", @@ -35676,12 +35676,10 @@ "light skin tone", "medium skin tone", "person" - ], - "value" : "🧑🏻‍❤️‍💋‍🧑🏽" + ] }, "🧑🏻‍❤️‍💋‍🧑🏾", { - "value" : "🧑🏻‍❤️‍💋‍🧑🏾", "keywords" : [ "couple", "kiss", @@ -35689,11 +35687,11 @@ "light skin tone", "medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏻‍❤️‍💋‍🧑🏾" }, "🧑🏻‍❤️‍💋‍🧑🏿", { - "value" : "🧑🏻‍❤️‍💋‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -35701,11 +35699,11 @@ "kiss: person, person, light skin tone, dark skin tone", "light skin tone", "person" - ] + ], + "value" : "🧑🏻‍❤️‍💋‍🧑🏿" }, "🧑🏼‍❤️‍💋‍🧑🏻", { - "value" : "🧑🏼‍❤️‍💋‍🧑🏻", "keywords" : [ "couple", "kiss", @@ -35713,11 +35711,11 @@ "light skin tone", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏼‍❤️‍💋‍🧑🏻" }, "🧑🏼‍❤️‍💋‍🧑🏽", { - "value" : "🧑🏼‍❤️‍💋‍🧑🏽", "keywords" : [ "couple", "kiss", @@ -35725,10 +35723,12 @@ "medium skin tone", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏼‍❤️‍💋‍🧑🏽" }, "🧑🏼‍❤️‍💋‍🧑🏾", { + "value" : "🧑🏼‍❤️‍💋‍🧑🏾", "keywords" : [ "couple", "kiss", @@ -35736,11 +35736,11 @@ "medium-dark skin tone", "medium-light skin tone", "person" - ], - "value" : "🧑🏼‍❤️‍💋‍🧑🏾" + ] }, "🧑🏼‍❤️‍💋‍🧑🏿", { + "value" : "🧑🏼‍❤️‍💋‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -35748,11 +35748,11 @@ "kiss: person, person, medium-light skin tone, dark skin tone", "medium-light skin tone", "person" - ], - "value" : "🧑🏼‍❤️‍💋‍🧑🏿" + ] }, "🧑🏽‍❤️‍💋‍🧑🏻", { + "value" : "🧑🏽‍❤️‍💋‍🧑🏻", "keywords" : [ "couple", "kiss", @@ -35760,11 +35760,11 @@ "light skin tone", "medium skin tone", "person" - ], - "value" : "🧑🏽‍❤️‍💋‍🧑🏻" + ] }, "🧑🏽‍❤️‍💋‍🧑🏼", { + "value" : "🧑🏽‍❤️‍💋‍🧑🏼", "keywords" : [ "couple", "kiss", @@ -35772,12 +35772,10 @@ "medium skin tone", "medium-light skin tone", "person" - ], - "value" : "🧑🏽‍❤️‍💋‍🧑🏼" + ] }, "🧑🏽‍❤️‍💋‍🧑🏾", { - "value" : "🧑🏽‍❤️‍💋‍🧑🏾", "keywords" : [ "couple", "kiss", @@ -35785,10 +35783,12 @@ "medium skin tone", "medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏽‍❤️‍💋‍🧑🏾" }, "🧑🏽‍❤️‍💋‍🧑🏿", { + "value" : "🧑🏽‍❤️‍💋‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -35796,12 +35796,10 @@ "kiss: person, person, medium skin tone, dark skin tone", "medium skin tone", "person" - ], - "value" : "🧑🏽‍❤️‍💋‍🧑🏿" + ] }, "🧑🏾‍❤️‍💋‍🧑🏻", { - "value" : "🧑🏾‍❤️‍💋‍🧑🏻", "keywords" : [ "couple", "kiss", @@ -35809,10 +35807,12 @@ "light skin tone", "medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏾‍❤️‍💋‍🧑🏻" }, "🧑🏾‍❤️‍💋‍🧑🏼", { + "value" : "🧑🏾‍❤️‍💋‍🧑🏼", "keywords" : [ "couple", "kiss", @@ -35820,12 +35820,10 @@ "medium-dark skin tone", "medium-light skin tone", "person" - ], - "value" : "🧑🏾‍❤️‍💋‍🧑🏼" + ] }, "🧑🏾‍❤️‍💋‍🧑🏽", { - "value" : "🧑🏾‍❤️‍💋‍🧑🏽", "keywords" : [ "couple", "kiss", @@ -35833,11 +35831,11 @@ "medium skin tone", "medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏾‍❤️‍💋‍🧑🏽" }, "🧑🏾‍❤️‍💋‍🧑🏿", { - "value" : "🧑🏾‍❤️‍💋‍🧑🏿", "keywords" : [ "couple", "dark skin tone", @@ -35845,10 +35843,12 @@ "kiss: person, person, medium-dark skin tone, dark skin tone", "medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏾‍❤️‍💋‍🧑🏿" }, "🧑🏿‍❤️‍💋‍🧑🏻", { + "value" : "🧑🏿‍❤️‍💋‍🧑🏻", "keywords" : [ "couple", "dark skin tone", @@ -35856,11 +35856,11 @@ "kiss: person, person, dark skin tone, light skin tone", "light skin tone", "person" - ], - "value" : "🧑🏿‍❤️‍💋‍🧑🏻" + ] }, "🧑🏿‍❤️‍💋‍🧑🏼", { + "value" : "🧑🏿‍❤️‍💋‍🧑🏼", "keywords" : [ "couple", "dark skin tone", @@ -35868,8 +35868,7 @@ "kiss: person, person, dark skin tone, medium-light skin tone", "medium-light skin tone", "person" - ], - "value" : "🧑🏿‍❤️‍💋‍🧑🏼" + ] }, "🧑🏿‍❤️‍💋‍🧑🏽", { @@ -35959,7 +35958,6 @@ }, "👩🏻‍❤️‍💋‍👨🏿", { - "value" : "👩🏻‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -35968,10 +35966,12 @@ "light skin tone", "man", "woman" - ] + ], + "value" : "👩🏻‍❤️‍💋‍👨🏿" }, "👩🏼‍❤️‍💋‍👨🏻", { + "value" : "👩🏼‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", @@ -35980,11 +35980,11 @@ "man", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍💋‍👨🏻" + ] }, "👩🏼‍❤️‍💋‍👨🏼", { + "value" : "👩🏼‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "kiss", @@ -35992,12 +35992,10 @@ "man", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍💋‍👨🏼" + ] }, "👩🏼‍❤️‍💋‍👨🏽", { - "value" : "👩🏼‍❤️‍💋‍👨🏽", "keywords" : [ "couple", "kiss", @@ -36006,7 +36004,8 @@ "medium skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏼‍❤️‍💋‍👨🏽" }, "👩🏼‍❤️‍💋‍👨🏾", { @@ -36023,6 +36022,7 @@ }, "👩🏼‍❤️‍💋‍👨🏿", { + "value" : "👩🏼‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -36031,11 +36031,11 @@ "man", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍💋‍👨🏿" + ] }, "👩🏽‍❤️‍💋‍👨🏻", { + "value" : "👩🏽‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", @@ -36044,8 +36044,7 @@ "man", "medium skin tone", "woman" - ], - "value" : "👩🏽‍❤️‍💋‍👨🏻" + ] }, "👩🏽‍❤️‍💋‍👨🏼", { @@ -36100,6 +36099,7 @@ }, "👩🏾‍❤️‍💋‍👨🏻", { + "value" : "👩🏾‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "kiss", @@ -36108,12 +36108,10 @@ "man", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍💋‍👨🏻" + ] }, "👩🏾‍❤️‍💋‍👨🏼", { - "value" : "👩🏾‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "kiss", @@ -36122,7 +36120,8 @@ "medium-dark skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏾‍❤️‍💋‍👨🏼" }, "👩🏾‍❤️‍💋‍👨🏽", { @@ -36139,6 +36138,7 @@ }, "👩🏾‍❤️‍💋‍👨🏾", { + "value" : "👩🏾‍❤️‍💋‍👨🏾", "keywords" : [ "couple", "kiss", @@ -36146,8 +36146,7 @@ "man", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍💋‍👨🏾" + ] }, "👩🏾‍❤️‍💋‍👨🏿", { @@ -36164,7 +36163,6 @@ }, "👩🏿‍❤️‍💋‍👨🏻", { - "value" : "👩🏿‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "dark skin tone", @@ -36173,11 +36171,11 @@ "light skin tone", "man", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👨🏻" }, "👩🏿‍❤️‍💋‍👨🏼", { - "value" : "👩🏿‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "dark skin tone", @@ -36186,10 +36184,12 @@ "man", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👨🏼" }, "👩🏿‍❤️‍💋‍👨🏽", { + "value" : "👩🏿‍❤️‍💋‍👨🏽", "keywords" : [ "couple", "dark skin tone", @@ -36198,12 +36198,10 @@ "man", "medium skin tone", "woman" - ], - "value" : "👩🏿‍❤️‍💋‍👨🏽" + ] }, "👩🏿‍❤️‍💋‍👨🏾", { - "value" : "👩🏿‍❤️‍💋‍👨🏾", "keywords" : [ "couple", "dark skin tone", @@ -36212,11 +36210,11 @@ "man", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👨🏾" }, "👩🏿‍❤️‍💋‍👨🏿", { - "value" : "👩🏿‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -36224,7 +36222,8 @@ "kiss: woman, man, dark skin tone", "man", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👨🏿" }, "👨‍❤️‍💋‍👨", { @@ -36249,6 +36248,7 @@ }, "👨🏻‍❤️‍💋‍👨🏼", { + "value" : "👨🏻‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "kiss", @@ -36256,8 +36256,7 @@ "light skin tone", "man", "medium-light skin tone" - ], - "value" : "👨🏻‍❤️‍💋‍👨🏼" + ] }, "👨🏻‍❤️‍💋‍👨🏽", { @@ -36273,6 +36272,7 @@ }, "👨🏻‍❤️‍💋‍👨🏾", { + "value" : "👨🏻‍❤️‍💋‍👨🏾", "keywords" : [ "couple", "kiss", @@ -36280,11 +36280,11 @@ "light skin tone", "man", "medium-dark skin tone" - ], - "value" : "👨🏻‍❤️‍💋‍👨🏾" + ] }, "👨🏻‍❤️‍💋‍👨🏿", { + "value" : "👨🏻‍❤️‍💋‍👨🏿", "keywords" : [ "couple", "dark skin tone", @@ -36292,8 +36292,7 @@ "kiss: man, man, light skin tone, dark skin tone", "light skin tone", "man" - ], - "value" : "👨🏻‍❤️‍💋‍👨🏿" + ] }, "👨🏼‍❤️‍💋‍👨🏻", { @@ -36309,18 +36308,17 @@ }, "👨🏼‍❤️‍💋‍👨🏼", { + "value" : "👨🏼‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "kiss", "kiss: man, man, medium-light skin tone", "man", "medium-light skin tone" - ], - "value" : "👨🏼‍❤️‍💋‍👨🏼" + ] }, "👨🏼‍❤️‍💋‍👨🏽", { - "value" : "👨🏼‍❤️‍💋‍👨🏽", "keywords" : [ "couple", "kiss", @@ -36328,7 +36326,8 @@ "man", "medium skin tone", "medium-light skin tone" - ] + ], + "value" : "👨🏼‍❤️‍💋‍👨🏽" }, "👨🏼‍❤️‍💋‍👨🏾", { @@ -36368,7 +36367,6 @@ }, "👨🏽‍❤️‍💋‍👨🏼", { - "value" : "👨🏽‍❤️‍💋‍👨🏼", "keywords" : [ "couple", "kiss", @@ -36376,7 +36374,8 @@ "man", "medium skin tone", "medium-light skin tone" - ] + ], + "value" : "👨🏽‍❤️‍💋‍👨🏼" }, "👨🏽‍❤️‍💋‍👨🏽", { @@ -36439,6 +36438,7 @@ }, "👨🏾‍❤️‍💋‍👨🏽", { + "value" : "👨🏾‍❤️‍💋‍👨🏽", "keywords" : [ "couple", "kiss", @@ -36446,8 +36446,7 @@ "man", "medium skin tone", "medium-dark skin tone" - ], - "value" : "👨🏾‍❤️‍💋‍👨🏽" + ] }, "👨🏾‍❤️‍💋‍👨🏾", { @@ -36474,6 +36473,7 @@ }, "👨🏿‍❤️‍💋‍👨🏻", { + "value" : "👨🏿‍❤️‍💋‍👨🏻", "keywords" : [ "couple", "dark skin tone", @@ -36481,8 +36481,7 @@ "kiss: man, man, dark skin tone, light skin tone", "light skin tone", "man" - ], - "value" : "👨🏿‍❤️‍💋‍👨🏻" + ] }, "👨🏿‍❤️‍💋‍👨🏼", { @@ -36533,28 +36532,27 @@ }, "👩‍❤️‍💋‍👩", { + "value" : "👩‍❤️‍💋‍👩", "keywords" : [ "couple", "kiss", "kiss: woman, woman", "woman" - ], - "value" : "👩‍❤️‍💋‍👩" + ] }, "👩🏻‍❤️‍💋‍👩🏻", { + "value" : "👩🏻‍❤️‍💋‍👩🏻", "keywords" : [ "couple", "kiss", "kiss: woman, woman, light skin tone", "light skin tone", "woman" - ], - "value" : "👩🏻‍❤️‍💋‍👩🏻" + ] }, "👩🏻‍❤️‍💋‍👩🏼", { - "value" : "👩🏻‍❤️‍💋‍👩🏼", "keywords" : [ "couple", "kiss", @@ -36562,7 +36560,8 @@ "light skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏻‍❤️‍💋‍👩🏼" }, "👩🏻‍❤️‍💋‍👩🏽", { @@ -36590,7 +36589,6 @@ }, "👩🏻‍❤️‍💋‍👩🏿", { - "value" : "👩🏻‍❤️‍💋‍👩🏿", "keywords" : [ "couple", "dark skin tone", @@ -36598,11 +36596,11 @@ "kiss: woman, woman, light skin tone, dark skin tone", "light skin tone", "woman" - ] + ], + "value" : "👩🏻‍❤️‍💋‍👩🏿" }, "👩🏼‍❤️‍💋‍👩🏻", { - "value" : "👩🏼‍❤️‍💋‍👩🏻", "keywords" : [ "couple", "kiss", @@ -36610,7 +36608,8 @@ "light skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏼‍❤️‍💋‍👩🏻" }, "👩🏼‍❤️‍💋‍👩🏼", { @@ -36637,6 +36636,7 @@ }, "👩🏼‍❤️‍💋‍👩🏾", { + "value" : "👩🏼‍❤️‍💋‍👩🏾", "keywords" : [ "couple", "kiss", @@ -36644,8 +36644,7 @@ "medium-dark skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍💋‍👩🏾" + ] }, "👩🏼‍❤️‍💋‍👩🏿", { @@ -36661,7 +36660,6 @@ }, "👩🏽‍❤️‍💋‍👩🏻", { - "value" : "👩🏽‍❤️‍💋‍👩🏻", "keywords" : [ "couple", "kiss", @@ -36669,7 +36667,8 @@ "light skin tone", "medium skin tone", "woman" - ] + ], + "value" : "👩🏽‍❤️‍💋‍👩🏻" }, "👩🏽‍❤️‍💋‍👩🏼", { @@ -36685,14 +36684,14 @@ }, "👩🏽‍❤️‍💋‍👩🏽", { - "value" : "👩🏽‍❤️‍💋‍👩🏽", "keywords" : [ "couple", "kiss", "kiss: woman, woman, medium skin tone", "medium skin tone", "woman" - ] + ], + "value" : "👩🏽‍❤️‍💋‍👩🏽" }, "👩🏽‍❤️‍💋‍👩🏾", { @@ -36720,6 +36719,7 @@ }, "👩🏾‍❤️‍💋‍👩🏻", { + "value" : "👩🏾‍❤️‍💋‍👩🏻", "keywords" : [ "couple", "kiss", @@ -36727,8 +36727,7 @@ "light skin tone", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍💋‍👩🏻" + ] }, "👩🏾‍❤️‍💋‍👩🏼", { @@ -36744,7 +36743,6 @@ }, "👩🏾‍❤️‍💋‍👩🏽", { - "value" : "👩🏾‍❤️‍💋‍👩🏽", "keywords" : [ "couple", "kiss", @@ -36752,18 +36750,19 @@ "medium skin tone", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏾‍❤️‍💋‍👩🏽" }, "👩🏾‍❤️‍💋‍👩🏾", { + "value" : "👩🏾‍❤️‍💋‍👩🏾", "keywords" : [ "couple", "kiss", "kiss: woman, woman, medium-dark skin tone", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍💋‍👩🏾" + ] }, "👩🏾‍❤️‍💋‍👩🏿", { @@ -36779,6 +36778,7 @@ }, "👩🏿‍❤️‍💋‍👩🏻", { + "value" : "👩🏿‍❤️‍💋‍👩🏻", "keywords" : [ "couple", "dark skin tone", @@ -36786,8 +36786,7 @@ "kiss: woman, woman, dark skin tone, light skin tone", "light skin tone", "woman" - ], - "value" : "👩🏿‍❤️‍💋‍👩🏻" + ] }, "👩🏿‍❤️‍💋‍👩🏼", { @@ -36803,7 +36802,6 @@ }, "👩🏿‍❤️‍💋‍👩🏽", { - "value" : "👩🏿‍❤️‍💋‍👩🏽", "keywords" : [ "couple", "dark skin tone", @@ -36811,7 +36809,8 @@ "kiss: woman, woman, dark skin tone, medium skin tone", "medium skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👩🏽" }, "👩🏿‍❤️‍💋‍👩🏾", { @@ -36827,14 +36826,14 @@ }, "👩🏿‍❤️‍💋‍👩🏿", { - "value" : "👩🏿‍❤️‍💋‍👩🏿", "keywords" : [ "couple", "dark skin tone", "kiss", "kiss: woman, woman, dark skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍💋‍👩🏿" }, "💑", { @@ -36901,18 +36900,17 @@ }, "💑🏿", { - "value" : "💑🏿", "keywords" : [ "couple", "couple with heart", "couple with heart: dark skin tone", "dark skin tone", "love" - ] + ], + "value" : "💑🏿" }, "🧑🏻‍❤️‍🧑🏼", { - "value" : "🧑🏻‍❤️‍🧑🏼", "keywords" : [ "couple", "couple with heart", @@ -36921,7 +36919,8 @@ "love", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏻‍❤️‍🧑🏼" }, "🧑🏻‍❤️‍🧑🏽", { @@ -36964,7 +36963,6 @@ }, "🧑🏼‍❤️‍🧑🏻", { - "value" : "🧑🏼‍❤️‍🧑🏻", "keywords" : [ "couple", "couple with heart", @@ -36973,11 +36971,11 @@ "love", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏼‍❤️‍🧑🏻" }, "🧑🏼‍❤️‍🧑🏽", { - "value" : "🧑🏼‍❤️‍🧑🏽", "keywords" : [ "couple", "couple with heart", @@ -36986,7 +36984,8 @@ "medium skin tone", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏼‍❤️‍🧑🏽" }, "🧑🏼‍❤️‍🧑🏾", { @@ -37029,6 +37028,7 @@ }, "🧑🏽‍❤️‍🧑🏼", { + "value" : "🧑🏽‍❤️‍🧑🏼", "keywords" : [ "couple", "couple with heart", @@ -37037,8 +37037,7 @@ "medium skin tone", "medium-light skin tone", "person" - ], - "value" : "🧑🏽‍❤️‍🧑🏼" + ] }, "🧑🏽‍❤️‍🧑🏾", { @@ -37055,6 +37054,7 @@ }, "🧑🏽‍❤️‍🧑🏿", { + "value" : "🧑🏽‍❤️‍🧑🏿", "keywords" : [ "couple", "couple with heart", @@ -37063,11 +37063,11 @@ "love", "medium skin tone", "person" - ], - "value" : "🧑🏽‍❤️‍🧑🏿" + ] }, "🧑🏾‍❤️‍🧑🏻", { + "value" : "🧑🏾‍❤️‍🧑🏻", "keywords" : [ "couple", "couple with heart", @@ -37076,8 +37076,7 @@ "love", "medium-dark skin tone", "person" - ], - "value" : "🧑🏾‍❤️‍🧑🏻" + ] }, "🧑🏾‍❤️‍🧑🏼", { @@ -37094,7 +37093,6 @@ }, "🧑🏾‍❤️‍🧑🏽", { - "value" : "🧑🏾‍❤️‍🧑🏽", "keywords" : [ "couple", "couple with heart", @@ -37103,7 +37101,8 @@ "medium skin tone", "medium-dark skin tone", "person" - ] + ], + "value" : "🧑🏾‍❤️‍🧑🏽" }, "🧑🏾‍❤️‍🧑🏿", { @@ -37120,6 +37119,7 @@ }, "🧑🏿‍❤️‍🧑🏻", { + "value" : "🧑🏿‍❤️‍🧑🏻", "keywords" : [ "couple", "couple with heart", @@ -37128,12 +37128,10 @@ "light skin tone", "love", "person" - ], - "value" : "🧑🏿‍❤️‍🧑🏻" + ] }, "🧑🏿‍❤️‍🧑🏼", { - "value" : "🧑🏿‍❤️‍🧑🏼", "keywords" : [ "couple", "couple with heart", @@ -37142,7 +37140,8 @@ "love", "medium-light skin tone", "person" - ] + ], + "value" : "🧑🏿‍❤️‍🧑🏼" }, "🧑🏿‍❤️‍🧑🏽", { @@ -37159,6 +37158,7 @@ }, "🧑🏿‍❤️‍🧑🏾", { + "value" : "🧑🏿‍❤️‍🧑🏾", "keywords" : [ "couple", "couple with heart", @@ -37167,11 +37167,11 @@ "love", "medium-dark skin tone", "person" - ], - "value" : "🧑🏿‍❤️‍🧑🏾" + ] }, "👩‍❤️‍👨", { + "value" : "👩‍❤️‍👨", "keywords" : [ "couple", "couple with heart", @@ -37179,11 +37179,11 @@ "love", "man", "woman" - ], - "value" : "👩‍❤️‍👨" + ] }, "👩🏻‍❤️‍👨🏻", { + "value" : "👩🏻‍❤️‍👨🏻", "keywords" : [ "couple", "couple with heart", @@ -37192,8 +37192,7 @@ "love", "man", "woman" - ], - "value" : "👩🏻‍❤️‍👨🏻" + ] }, "👩🏻‍❤️‍👨🏼", { @@ -37211,6 +37210,7 @@ }, "👩🏻‍❤️‍👨🏽", { + "value" : "👩🏻‍❤️‍👨🏽", "keywords" : [ "couple", "couple with heart", @@ -37220,11 +37220,11 @@ "man", "medium skin tone", "woman" - ], - "value" : "👩🏻‍❤️‍👨🏽" + ] }, "👩🏻‍❤️‍👨🏾", { + "value" : "👩🏻‍❤️‍👨🏾", "keywords" : [ "couple", "couple with heart", @@ -37234,8 +37234,7 @@ "man", "medium-dark skin tone", "woman" - ], - "value" : "👩🏻‍❤️‍👨🏾" + ] }, "👩🏻‍❤️‍👨🏿", { @@ -37253,6 +37252,7 @@ }, "👩🏼‍❤️‍👨🏻", { + "value" : "👩🏼‍❤️‍👨🏻", "keywords" : [ "couple", "couple with heart", @@ -37262,8 +37262,7 @@ "man", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍👨🏻" + ] }, "👩🏼‍❤️‍👨🏼", { @@ -37280,6 +37279,7 @@ }, "👩🏼‍❤️‍👨🏽", { + "value" : "👩🏼‍❤️‍👨🏽", "keywords" : [ "couple", "couple with heart", @@ -37289,11 +37289,11 @@ "medium skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍👨🏽" + ] }, "👩🏼‍❤️‍👨🏾", { + "value" : "👩🏼‍❤️‍👨🏾", "keywords" : [ "couple", "couple with heart", @@ -37303,8 +37303,7 @@ "medium-dark skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍👨🏾" + ] }, "👩🏼‍❤️‍👨🏿", { @@ -37322,7 +37321,6 @@ }, "👩🏽‍❤️‍👨🏻", { - "value" : "👩🏽‍❤️‍👨🏻", "keywords" : [ "couple", "couple with heart", @@ -37332,7 +37330,8 @@ "man", "medium skin tone", "woman" - ] + ], + "value" : "👩🏽‍❤️‍👨🏻" }, "👩🏽‍❤️‍👨🏼", { @@ -37377,7 +37376,6 @@ }, "👩🏽‍❤️‍👨🏿", { - "value" : "👩🏽‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -37387,7 +37385,8 @@ "man", "medium skin tone", "woman" - ] + ], + "value" : "👩🏽‍❤️‍👨🏿" }, "👩🏾‍❤️‍👨🏻", { @@ -37419,6 +37418,7 @@ }, "👩🏾‍❤️‍👨🏽", { + "value" : "👩🏾‍❤️‍👨🏽", "keywords" : [ "couple", "couple with heart", @@ -37428,11 +37428,11 @@ "medium skin tone", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍👨🏽" + ] }, "👩🏾‍❤️‍👨🏾", { + "value" : "👩🏾‍❤️‍👨🏾", "keywords" : [ "couple", "couple with heart", @@ -37441,8 +37441,7 @@ "man", "medium-dark skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍👨🏾" + ] }, "👩🏾‍❤️‍👨🏿", { @@ -37460,7 +37459,6 @@ }, "👩🏿‍❤️‍👨🏻", { - "value" : "👩🏿‍❤️‍👨🏻", "keywords" : [ "couple", "couple with heart", @@ -37470,11 +37468,11 @@ "love", "man", "woman" - ] + ], + "value" : "👩🏿‍❤️‍👨🏻" }, "👩🏿‍❤️‍👨🏼", { - "value" : "👩🏿‍❤️‍👨🏼", "keywords" : [ "couple", "couple with heart", @@ -37484,7 +37482,8 @@ "man", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍👨🏼" }, "👩🏿‍❤️‍👨🏽", { @@ -37516,7 +37515,6 @@ }, "👩🏿‍❤️‍👨🏿", { - "value" : "👩🏿‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -37525,18 +37523,19 @@ "love", "man", "woman" - ] + ], + "value" : "👩🏿‍❤️‍👨🏿" }, "👨‍❤️‍👨", { + "value" : "👨‍❤️‍👨", "keywords" : [ "couple", "couple with heart", "couple with heart: man, man", "love", "man" - ], - "value" : "👨‍❤️‍👨" + ] }, "👨🏻‍❤️‍👨🏻", { @@ -37552,7 +37551,6 @@ }, "👨🏻‍❤️‍👨🏼", { - "value" : "👨🏻‍❤️‍👨🏼", "keywords" : [ "couple", "couple with heart", @@ -37561,7 +37559,8 @@ "love", "man", "medium-light skin tone" - ] + ], + "value" : "👨🏻‍❤️‍👨🏼" }, "👨🏻‍❤️‍👨🏽", { @@ -37617,6 +37616,7 @@ }, "👨🏼‍❤️‍👨🏼", { + "value" : "👨🏼‍❤️‍👨🏼", "keywords" : [ "couple", "couple with heart", @@ -37624,8 +37624,7 @@ "love", "man", "medium-light skin tone" - ], - "value" : "👨🏼‍❤️‍👨🏼" + ] }, "👨🏼‍❤️‍👨🏽", { @@ -37655,7 +37654,6 @@ }, "👨🏼‍❤️‍👨🏿", { - "value" : "👨🏼‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -37664,7 +37662,8 @@ "love", "man", "medium-light skin tone" - ] + ], + "value" : "👨🏼‍❤️‍👨🏿" }, "👨🏽‍❤️‍👨🏻", { @@ -37681,7 +37680,6 @@ }, "👨🏽‍❤️‍👨🏼", { - "value" : "👨🏽‍❤️‍👨🏼", "keywords" : [ "couple", "couple with heart", @@ -37690,11 +37688,11 @@ "man", "medium skin tone", "medium-light skin tone" - ] + ], + "value" : "👨🏽‍❤️‍👨🏼" }, "👨🏽‍❤️‍👨🏽", { - "value" : "👨🏽‍❤️‍👨🏽", "keywords" : [ "couple", "couple with heart", @@ -37702,7 +37700,8 @@ "love", "man", "medium skin tone" - ] + ], + "value" : "👨🏽‍❤️‍👨🏽" }, "👨🏽‍❤️‍👨🏾", { @@ -37719,7 +37718,6 @@ }, "👨🏽‍❤️‍👨🏿", { - "value" : "👨🏽‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -37728,7 +37726,8 @@ "love", "man", "medium skin tone" - ] + ], + "value" : "👨🏽‍❤️‍👨🏿" }, "👨🏾‍❤️‍👨🏻", { @@ -37771,6 +37770,7 @@ }, "👨🏾‍❤️‍👨🏾", { + "value" : "👨🏾‍❤️‍👨🏾", "keywords" : [ "couple", "couple with heart", @@ -37778,8 +37778,7 @@ "love", "man", "medium-dark skin tone" - ], - "value" : "👨🏾‍❤️‍👨🏾" + ] }, "👨🏾‍❤️‍👨🏿", { @@ -37835,6 +37834,7 @@ }, "👨🏿‍❤️‍👨🏾", { + "value" : "👨🏿‍❤️‍👨🏾", "keywords" : [ "couple", "couple with heart", @@ -37843,12 +37843,10 @@ "love", "man", "medium-dark skin tone" - ], - "value" : "👨🏿‍❤️‍👨🏾" + ] }, "👨🏿‍❤️‍👨🏿", { - "value" : "👨🏿‍❤️‍👨🏿", "keywords" : [ "couple", "couple with heart", @@ -37856,7 +37854,8 @@ "dark skin tone", "love", "man" - ] + ], + "value" : "👨🏿‍❤️‍👨🏿" }, "👩‍❤️‍👩", { @@ -37909,6 +37908,7 @@ }, "👩🏻‍❤️‍👩🏾", { + "value" : "👩🏻‍❤️‍👩🏾", "keywords" : [ "couple", "couple with heart", @@ -37917,8 +37917,7 @@ "love", "medium-dark skin tone", "woman" - ], - "value" : "👩🏻‍❤️‍👩🏾" + ] }, "👩🏻‍❤️‍👩🏿", { @@ -37935,6 +37934,7 @@ }, "👩🏼‍❤️‍👩🏻", { + "value" : "👩🏼‍❤️‍👩🏻", "keywords" : [ "couple", "couple with heart", @@ -37943,12 +37943,10 @@ "love", "medium-light skin tone", "woman" - ], - "value" : "👩🏼‍❤️‍👩🏻" + ] }, "👩🏼‍❤️‍👩🏼", { - "value" : "👩🏼‍❤️‍👩🏼", "keywords" : [ "couple", "couple with heart", @@ -37956,7 +37954,8 @@ "love", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏼‍❤️‍👩🏼" }, "👩🏼‍❤️‍👩🏽", { @@ -37973,7 +37972,6 @@ }, "👩🏼‍❤️‍👩🏾", { - "value" : "👩🏼‍❤️‍👩🏾", "keywords" : [ "couple", "couple with heart", @@ -37982,7 +37980,8 @@ "medium-dark skin tone", "medium-light skin tone", "woman" - ] + ], + "value" : "👩🏼‍❤️‍👩🏾" }, "👩🏼‍❤️‍👩🏿", { @@ -37999,6 +37998,7 @@ }, "👩🏽‍❤️‍👩🏻", { + "value" : "👩🏽‍❤️‍👩🏻", "keywords" : [ "couple", "couple with heart", @@ -38007,11 +38007,11 @@ "love", "medium skin tone", "woman" - ], - "value" : "👩🏽‍❤️‍👩🏻" + ] }, "👩🏽‍❤️‍👩🏼", { + "value" : "👩🏽‍❤️‍👩🏼", "keywords" : [ "couple", "couple with heart", @@ -38020,8 +38020,7 @@ "medium skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏽‍❤️‍👩🏼" + ] }, "👩🏽‍❤️‍👩🏽", { @@ -38037,6 +38036,7 @@ }, "👩🏽‍❤️‍👩🏾", { + "value" : "👩🏽‍❤️‍👩🏾", "keywords" : [ "couple", "couple with heart", @@ -38045,12 +38045,10 @@ "medium skin tone", "medium-dark skin tone", "woman" - ], - "value" : "👩🏽‍❤️‍👩🏾" + ] }, "👩🏽‍❤️‍👩🏿", { - "value" : "👩🏽‍❤️‍👩🏿", "keywords" : [ "couple", "couple with heart", @@ -38059,7 +38057,8 @@ "love", "medium skin tone", "woman" - ] + ], + "value" : "👩🏽‍❤️‍👩🏿" }, "👩🏾‍❤️‍👩🏻", { @@ -38076,6 +38075,7 @@ }, "👩🏾‍❤️‍👩🏼", { + "value" : "👩🏾‍❤️‍👩🏼", "keywords" : [ "couple", "couple with heart", @@ -38084,8 +38084,7 @@ "medium-dark skin tone", "medium-light skin tone", "woman" - ], - "value" : "👩🏾‍❤️‍👩🏼" + ] }, "👩🏾‍❤️‍👩🏽", { @@ -38102,7 +38101,6 @@ }, "👩🏾‍❤️‍👩🏾", { - "value" : "👩🏾‍❤️‍👩🏾", "keywords" : [ "couple", "couple with heart", @@ -38110,7 +38108,8 @@ "love", "medium-dark skin tone", "woman" - ] + ], + "value" : "👩🏾‍❤️‍👩🏾" }, "👩🏾‍❤️‍👩🏿", { @@ -38127,7 +38126,6 @@ }, "👩🏿‍❤️‍👩🏻", { - "value" : "👩🏿‍❤️‍👩🏻", "keywords" : [ "couple", "couple with heart", @@ -38136,7 +38134,8 @@ "light skin tone", "love", "woman" - ] + ], + "value" : "👩🏿‍❤️‍👩🏻" }, "👩🏿‍❤️‍👩🏼", { @@ -38153,7 +38152,6 @@ }, "👩🏿‍❤️‍👩🏽", { - "value" : "👩🏿‍❤️‍👩🏽", "keywords" : [ "couple", "couple with heart", @@ -38162,7 +38160,8 @@ "love", "medium skin tone", "woman" - ] + ], + "value" : "👩🏿‍❤️‍👩🏽" }, "👩🏿‍❤️‍👩🏾", { @@ -38191,14 +38190,14 @@ }, "👨‍👩‍👦", { - "value" : "👨‍👩‍👦", "keywords" : [ "boy", "family", "family: man, woman, boy", "man", "woman" - ] + ], + "value" : "👨‍👩‍👦" }, "👨‍👩‍👧", { @@ -38247,23 +38246,23 @@ }, "👨‍👨‍👦", { + "value" : "👨‍👨‍👦", "keywords" : [ "boy", "family", "family: man, man, boy", "man" - ], - "value" : "👨‍👨‍👦" + ] }, "👨‍👨‍👧", { + "value" : "👨‍👨‍👧", "keywords" : [ "family", "family: man, man, girl", "girl", "man" - ], - "value" : "👨‍👨‍👧" + ] }, "👨‍👨‍👧‍👦", { @@ -38288,23 +38287,23 @@ }, "👨‍👨‍👧‍👧", { - "value" : "👨‍👨‍👧‍👧", "keywords" : [ "family", "family: man, man, girl, girl", "girl", "man" - ] + ], + "value" : "👨‍👨‍👧‍👧" }, "👩‍👩‍👦", { - "value" : "👩‍👩‍👦", "keywords" : [ "boy", "family", "family: woman, woman, boy", "woman" - ] + ], + "value" : "👩‍👩‍👦" }, "👩‍👩‍👧", { @@ -38329,23 +38328,23 @@ }, "👩‍👩‍👦‍👦", { + "value" : "👩‍👩‍👦‍👦", "keywords" : [ "boy", "family", "family: woman, woman, boy, boy", "woman" - ], - "value" : "👩‍👩‍👦‍👦" + ] }, "👩‍👩‍👧‍👧", { - "value" : "👩‍👩‍👧‍👧", "keywords" : [ "family", "family: woman, woman, girl, girl", "girl", "woman" - ] + ], + "value" : "👩‍👩‍👧‍👧" }, "👨‍👦", { @@ -38379,14 +38378,14 @@ }, "👨‍👧‍👦", { - "value" : "👨‍👧‍👦", "keywords" : [ "boy", "family", "family: man, girl, boy", "girl", "man" - ] + ], + "value" : "👨‍👧‍👦" }, "👨‍👧‍👧", { @@ -38420,13 +38419,13 @@ }, "👩‍👧", { + "value" : "👩‍👧", "keywords" : [ "family", "family: woman, girl", "girl", "woman" - ], - "value" : "👩‍👧" + ] }, "👩‍👧‍👦", { @@ -38441,13 +38440,13 @@ }, "👩‍👧‍👧", { - "value" : "👩‍👧‍👧", "keywords" : [ "family", "family: woman, girl, girl", "girl", "woman" - ] + ], + "value" : "👩‍👧‍👧" }, "🗣️", { @@ -38472,7 +38471,6 @@ }, "👥", { - "value" : "👥", "keywords" : [ "bff", "bust", @@ -38482,7 +38480,8 @@ "friends", "people", "silhouette" - ] + ], + "value" : "👥" }, "🫂", { @@ -38549,6 +38548,7 @@ }, "👣", { + "value" : "👣", "keywords" : [ "barefoot", "clothing", @@ -38557,13 +38557,14 @@ "omw", "print", "walk" - ], - "value" : "👣" + ] } - ] + ], + "appleCategory" : "smileysAndPeople" }, { "name" : "Animals & Nature", + "appleCategory" : "animalsAndNature", "emojis" : [ "🐵", { @@ -38628,35 +38629,35 @@ }, "🦮", { - "value" : "🦮", "keywords" : [ "accessibility", "animal", "blind", "dog", "guide" - ] + ], + "value" : "🦮" }, "🐕‍🦺", { - "value" : "🐕‍🦺", "keywords" : [ "accessibility", "animal", "assistance", "dog", "service" - ] + ], + "value" : "🐕‍🦺" }, "🐩", { + "value" : "🐩", "keywords" : [ "animal", "dog", "fluffy", "poodle" - ], - "value" : "🐩" + ] }, "🐺", { @@ -38669,26 +38670,25 @@ }, "🦊", { - "value" : "🦊", "keywords" : [ "animal", "face", "fox" - ] + ], + "value" : "🦊" }, "🦝", { + "value" : "🦝", "keywords" : [ "animal", "curious", "raccoon", "sly" - ], - "value" : "🦝" + ] }, "🐱", { - "value" : "🐱", "keywords" : [ "animal", "cat", @@ -38696,7 +38696,8 @@ "kitten", "kitty", "pet" - ] + ], + "value" : "🐱" }, "🐈", { @@ -38712,6 +38713,7 @@ }, "🐈‍⬛", { + "value" : "🐈‍⬛", "keywords" : [ "animal", "black", @@ -38720,8 +38722,7 @@ "halloween", "meow", "unlucky" - ], - "value" : "🐈‍⬛" + ] }, "🦁", { @@ -38743,6 +38744,7 @@ }, "🐯", { + "value" : "🐯", "keywords" : [ "animal", "big", @@ -38750,8 +38752,7 @@ "face", "predator", "tiger" - ], - "value" : "🐯" + ] }, "🐅", { @@ -38767,6 +38768,7 @@ }, "🐆", { + "value" : "🐆", "keywords" : [ "animal", "big", @@ -38774,11 +38776,11 @@ "leopard", "predator", "zoo" - ], - "value" : "🐆" + ] }, "🐴", { + "value" : "🐴", "keywords" : [ "animal", "dressage", @@ -38787,8 +38789,7 @@ "farm", "horse", "horses" - ], - "value" : "🐴" + ] }, "🫎", { @@ -38804,7 +38805,6 @@ }, "🫏", { - "value" : "🫏", "keywords" : [ "animal", "ass", @@ -38814,11 +38814,11 @@ "mammal", "mule", "stubborn" - ] + ], + "value" : "🫏" }, "🐎", { - "value" : "🐎", "keywords" : [ "animal", "equestrian", @@ -38826,7 +38826,8 @@ "horse", "racehorse", "racing" - ] + ], + "value" : "🐎" }, "🦄", { @@ -38838,12 +38839,12 @@ }, "🦓", { - "value" : "🦓", "keywords" : [ "animal", "stripe", "zebra" - ] + ], + "value" : "🦓" }, "🦌", { @@ -38866,7 +38867,6 @@ }, "🐮", { - "value" : "🐮", "keywords" : [ "animal", "cow", @@ -38874,7 +38874,8 @@ "farm", "milk", "moo" - ] + ], + "value" : "🐮" }, "🐂", { @@ -38901,6 +38902,7 @@ }, "🐄", { + "value" : "🐄", "keywords" : [ "animal", "animals", @@ -38908,8 +38910,7 @@ "farm", "milk", "moo" - ], - "value" : "🐄" + ] }, "🐷", { @@ -38946,7 +38947,6 @@ }, "🐽", { - "value" : "🐽", "keywords" : [ "animal", "face", @@ -38955,11 +38955,11 @@ "pig", "smell", "snout" - ] + ], + "value" : "🐽" }, "🐏", { - "value" : "🐏", "keywords" : [ "animal", "Aries", @@ -38969,7 +38969,8 @@ "sheep", "zodiac", "zoo" - ] + ], + "value" : "🐏" }, "🐑", { @@ -38988,6 +38989,7 @@ }, "🐐", { + "value" : "🐐", "keywords" : [ "animal", "Capricorn", @@ -38995,8 +38997,7 @@ "goat", "milk", "zodiac" - ], - "value" : "🐐" + ] }, "🐪", { @@ -39066,11 +39067,11 @@ }, "🦏", { + "value" : "🦏", "keywords" : [ "animal", "rhinoceros" - ], - "value" : "🦏" + ] }, "🦛", { @@ -39083,12 +39084,12 @@ }, "🐭", { - "value" : "🐭", "keywords" : [ "animal", "face", "mouse" - ] + ], + "value" : "🐭" }, "🐁", { @@ -39109,13 +39110,13 @@ }, "🐹", { - "value" : "🐹", "keywords" : [ "animal", "face", "hamster", "pet" - ] + ], + "value" : "🐹" }, "🐰", { @@ -39130,22 +39131,22 @@ }, "🐇", { - "value" : "🐇", "keywords" : [ "animal", "bunny", "pet", "rabbit" - ] + ], + "value" : "🐇" }, "🐿️", { - "value" : "🐿️", "keywords" : [ "animal", "chipmunk", "squirrel" - ] + ], + "value" : "🐿️" }, "🦫", { @@ -39159,21 +39160,21 @@ }, "🦔", { - "value" : "🦔", "keywords" : [ "animal", "hedgehog", "spiny" - ] + ], + "value" : "🦔" }, "🦇", { + "value" : "🦇", "keywords" : [ "animal", "bat", "vampire" - ], - "value" : "🦇" + ] }, "🐻", { @@ -39189,14 +39190,14 @@ }, "🐻‍❄️", { - "value" : "🐻‍❄️", "keywords" : [ "animal", "arctic", "bear", "polar", "white" - ] + ], + "value" : "🐻‍❄️" }, "🐨", { @@ -39214,13 +39215,13 @@ }, "🐼", { - "value" : "🐼", "keywords" : [ "animal", "bamboo", "face", "panda" - ] + ], + "value" : "🐼" }, "🦥", { @@ -39233,13 +39234,13 @@ }, "🦦", { + "value" : "🦦", "keywords" : [ "animal", "fishing", "otter", "playful" - ], - "value" : "🦦" + ] }, "🦨", { @@ -39252,68 +39253,69 @@ }, "🦘", { - "value" : "🦘", "keywords" : [ "animal", "joey", "jump", "kangaroo", "marsupial" - ] + ], + "value" : "🦘" }, "🦡", { - "value" : "🦡", "keywords" : [ "animal", "badger", "honey", "pester" - ] + ], + "value" : "🦡" }, "🐾", { - "value" : "🐾", "keywords" : [ "feet", "paw", "paws", "print", "prints" - ] + ], + "value" : "🐾" }, "🦃", { + "value" : "🦃", "keywords" : [ "bird", "gobble", "thanksgiving", "turkey" - ], - "value" : "🦃" + ] }, "🐔", { - "value" : "🐔", "keywords" : [ "animal", "bird", "chicken", "ornithology" - ] + ], + "value" : "🐔" }, "🐓", { + "value" : "🐓", "keywords" : [ "animal", "bird", "ornithology", "rooster" - ], - "value" : "🐓" + ] }, "🐣", { + "value" : "🐣", "keywords" : [ "animal", "baby", @@ -39321,8 +39323,7 @@ "chick", "egg", "hatching" - ], - "value" : "🐣" + ] }, "🐤", { @@ -39337,7 +39338,6 @@ }, "🐥", { - "value" : "🐥", "keywords" : [ "animal", "baby", @@ -39346,7 +39346,8 @@ "front-facing", "newborn", "ornithology" - ] + ], + "value" : "🐥" }, "🐦", { @@ -39359,14 +39360,14 @@ }, "🐧", { + "value" : "🐧", "keywords" : [ "animal", "antarctica", "bird", "ornithology", "penguin" - ], - "value" : "🐧" + ] }, "🕊️", { @@ -39391,17 +39392,16 @@ }, "🦆", { - "value" : "🦆", "keywords" : [ "animal", "bird", "duck", "ornithology" - ] + ], + "value" : "🦆" }, "🦢", { - "value" : "🦢", "keywords" : [ "animal", "bird", @@ -39410,18 +39410,19 @@ "ornithology", "swan", "ugly" - ] + ], + "value" : "🦢" }, "🦉", { - "value" : "🦉", "keywords" : [ "animal", "bird", "ornithology", "owl", "wise" - ] + ], + "value" : "🦉" }, "🦤", { @@ -39437,14 +39438,14 @@ }, "🪶", { + "value" : "🪶", "keywords" : [ "bird", "feather", "flight", "light", "plumage" - ], - "value" : "🪶" + ] }, "🦩", { @@ -39460,7 +39461,6 @@ }, "🦚", { - "value" : "🦚", "keywords" : [ "animal", "bird", @@ -39471,7 +39471,8 @@ "peahen", "pretty", "proud" - ] + ], + "value" : "🦚" }, "🦜", { @@ -39487,7 +39488,6 @@ }, "🪽", { - "value" : "🪽", "keywords" : [ "angelic", "ascend", @@ -39499,10 +39499,12 @@ "mythology", "soar", "wing" - ] + ], + "value" : "🪽" }, "🐦‍⬛", { + "value" : "🐦‍⬛", "keywords" : [ "animal", "beak", @@ -39514,11 +39516,11 @@ "ornithology", "raven", "rook" - ], - "value" : "🐦‍⬛" + ] }, "🪿", { + "value" : "🪿", "keywords" : [ "animal", "bird", @@ -39532,12 +39534,10 @@ "honk", "ornithology", "silly" - ], - "value" : "🪿" + ] }, "🐦‍🔥", { - "value" : "🐦‍🔥", "keywords" : [ "ascend", "ascension", @@ -39555,25 +39555,26 @@ "revive", "rise", "transform" - ] + ], + "value" : "🐦‍🔥" }, "🐸", { + "value" : "🐸", "keywords" : [ "animal", "face", "frog" - ], - "value" : "🐸" + ] }, "🐊", { + "value" : "🐊", "keywords" : [ "animal", "crocodile", "zoo" - ], - "value" : "🐊" + ] }, "🐢", { @@ -39587,12 +39588,12 @@ }, "🦎", { + "value" : "🦎", "keywords" : [ "animal", "lizard", "reptile" - ], - "value" : "🦎" + ] }, "🐍", { @@ -39608,7 +39609,6 @@ }, "🐲", { - "value" : "🐲", "keywords" : [ "animal", "dragon", @@ -39616,7 +39616,8 @@ "fairy", "fairytale", "tale" - ] + ], + "value" : "🐲" }, "🐉", { @@ -39632,28 +39633,29 @@ }, "🦕", { - "value" : "🦕", "keywords" : [ "brachiosaurus", "brontosaurus", "dinosaur", "diplodocus", "sauropod" - ] + ], + "value" : "🦕" }, "🦖", { + "value" : "🦖", "keywords" : [ "dinosaur", "Rex", "T", "T-Rex", "Tyrannosaurus" - ], - "value" : "🦖" + ] }, "🐳", { + "value" : "🐳", "keywords" : [ "animal", "beach", @@ -39661,18 +39663,17 @@ "ocean", "spouting", "whale" - ], - "value" : "🐳" + ] }, "🐋", { - "value" : "🐋", "keywords" : [ "animal", "beach", "ocean", "whale" - ] + ], + "value" : "🐋" }, "🐬", { @@ -39698,7 +39699,6 @@ }, "🐟", { - "value" : "🐟", "keywords" : [ "animal", "dinner", @@ -39707,17 +39707,18 @@ "fishing", "Pisces", "zodiac" - ] + ], + "value" : "🐟" }, "🐠", { - "value" : "🐠", "keywords" : [ "animal", "fish", "fishes", "tropical" - ] + ], + "value" : "🐠" }, "🐡", { @@ -39761,7 +39762,6 @@ }, "🪸", { - "value" : "🪸", "keywords" : [ "change", "climate", @@ -39769,11 +39769,11 @@ "ocean", "reef", "sea" - ] + ], + "value" : "🪸" }, "🪼", { - "value" : "🪼", "keywords" : [ "animal", "aquarium", @@ -39790,7 +39790,8 @@ "sting", "stinger", "tentacles" - ] + ], + "value" : "🪼" }, "🐌", { @@ -39806,32 +39807,32 @@ }, "🦋", { - "value" : "🦋", "keywords" : [ "butterfly", "insect", "pretty" - ] + ], + "value" : "🦋" }, "🐛", { - "value" : "🐛", "keywords" : [ "animal", "bug", "garden", "insect" - ] + ], + "value" : "🐛" }, "🐜", { + "value" : "🐜", "keywords" : [ "animal", "ant", "garden", "insect" - ], - "value" : "🐜" + ] }, "🐝", { @@ -39849,16 +39850,17 @@ }, "🪲", { - "value" : "🪲", "keywords" : [ "animal", "beetle", "bug", "insect" - ] + ], + "value" : "🪲" }, "🐞", { + "value" : "🐞", "keywords" : [ "animal", "beetle", @@ -39868,11 +39870,11 @@ "ladybird", "ladybug", "nature" - ], - "value" : "🐞" + ] }, "🦗", { + "value" : "🦗", "keywords" : [ "animal", "bug", @@ -39880,46 +39882,45 @@ "grasshopper", "insect", "Orthoptera" - ], - "value" : "🦗" + ] }, "🪳", { + "value" : "🪳", "keywords" : [ "animal", "cockroach", "insect", "pest", "roach" - ], - "value" : "🪳" + ] }, "🕷️", { + "value" : "🕷️", "keywords" : [ "animal", "insect", "spider" - ], - "value" : "🕷️" + ] }, "🕸️", { - "value" : "🕸️", "keywords" : [ "spider", "web" - ] + ], + "value" : "🕸️" }, "🦂", { - "value" : "🦂", "keywords" : [ "Scorpio", "scorpion", "Scorpius", "zodiac" - ] + ], + "value" : "🦂" }, "🦟", { @@ -39937,6 +39938,7 @@ }, "🪰", { + "value" : "🪰", "keywords" : [ "animal", "disease", @@ -39945,19 +39947,18 @@ "maggot", "pest", "rotting" - ], - "value" : "🪰" + ] }, "🪱", { + "value" : "🪱", "keywords" : [ "animal", "annelid", "earthworm", "parasite", "worm" - ], - "value" : "🪱" + ] }, "🦠", { @@ -39986,7 +39987,6 @@ }, "🌸", { - "value" : "🌸", "keywords" : [ "blossom", "cherry", @@ -39994,19 +39994,19 @@ "plant", "spring", "springtime" - ] + ], + "value" : "🌸" }, "💮", { + "value" : "💮", "keywords" : [ "flower", "white" - ], - "value" : "💮" + ] }, "🪷", { - "value" : "🪷", "keywords" : [ "beauty", "Buddhism", @@ -40017,7 +40017,8 @@ "peace", "purity", "serenity" - ] + ], + "value" : "🪷" }, "🏵️", { @@ -40043,57 +40044,58 @@ }, "🥀", { - "value" : "🥀", "keywords" : [ "dying", "flower", "wilted" - ] + ], + "value" : "🥀" }, "🌺", { + "value" : "🌺", "keywords" : [ "flower", "hibiscus", "plant" - ], - "value" : "🌺" + ] }, "🌻", { - "value" : "🌻", "keywords" : [ "flower", "outdoors", "plant", "sun", "sunflower" - ] + ], + "value" : "🌻" }, "🌼", { + "value" : "🌼", "keywords" : [ "blossom", "buttercup", "dandelion", "flower", "plant" - ], - "value" : "🌼" + ] }, "🌷", { - "value" : "🌷", "keywords" : [ "blossom", "flower", "growth", "plant", "tulip" - ] + ], + "value" : "🌷" }, "🪻", { + "value" : "🪻", "keywords" : [ "bloom", "bluebonnet", @@ -40109,19 +40111,18 @@ "snapdragon", "spring", "violet" - ], - "value" : "🪻" + ] }, "🌱", { - "value" : "🌱", "keywords" : [ "plant", "sapling", "seedling", "sprout", "young" - ] + ], + "value" : "🌱" }, "🪴", { @@ -40172,14 +40173,14 @@ }, "🌵", { + "value" : "🌵", "keywords" : [ "cactus", "desert", "drought", "nature", "plant" - ], - "value" : "🌵" + ] }, "🌾", { @@ -40195,21 +40196,21 @@ }, "🌿", { - "value" : "🌿", "keywords" : [ "herb", "leaf", "plant" - ] + ], + "value" : "🌿" }, "☘️", { + "value" : "☘️", "keywords" : [ "irish", "plant", "shamrock" - ], - "value" : "☘️" + ] }, "🍀", { @@ -40236,14 +40237,14 @@ }, "🍂", { - "value" : "🍂", "keywords" : [ "autumn", "fall", "fallen", "falling", "leaf" - ] + ], + "value" : "🍂" }, "🍃", { @@ -40258,14 +40259,14 @@ }, "🪹", { - "value" : "🪹", "keywords" : [ "branch", "empty", "home", "nest", "nesting" - ] + ], + "value" : "🪹" }, "🪺", { @@ -40288,12 +40289,10 @@ "toadstool" ] } - ], - "appleCategory" : "Animals & Nature" + ] }, { "name" : "Food & Drink", - "appleCategory" : "Food & Drink", "emojis" : [ "🍇", { @@ -40316,14 +40315,15 @@ }, "🍉", { + "value" : "🍉", "keywords" : [ "fruit", "watermelon" - ], - "value" : "🍉" + ] }, "🍊", { + "value" : "🍊", "keywords" : [ "c", "citrus", @@ -40332,18 +40332,17 @@ "orange", "tangerine", "vitamin" - ], - "value" : "🍊" + ] }, "🍋", { + "value" : "🍋", "keywords" : [ "citrus", "fruit", "lemon", "sour" - ], - "value" : "🍋" + ] }, "🍋‍🟩", { @@ -40369,33 +40368,33 @@ }, "🍌", { + "value" : "🍌", "keywords" : [ "banana", "fruit", "potassium" - ], - "value" : "🍌" + ] }, "🍍", { + "value" : "🍍", "keywords" : [ "colada", "fruit", "pina", "pineapple", "tropical" - ], - "value" : "🍍" + ] }, "🥭", { - "value" : "🥭", "keywords" : [ "food", "fruit", "mango", "tropical" - ] + ], + "value" : "🥭" }, "🍎", { @@ -40412,48 +40411,48 @@ }, "🍏", { + "value" : "🍏", "keywords" : [ "apple", "fruit", "green" - ], - "value" : "🍏" + ] }, "🍐", { + "value" : "🍐", "keywords" : [ "fruit", "pear" - ], - "value" : "🍐" + ] }, "🍑", { + "value" : "🍑", "keywords" : [ "fruit", "peach" - ], - "value" : "🍑" + ] }, "🍒", { + "value" : "🍒", "keywords" : [ "berries", "cherries", "cherry", "fruit", "red" - ], - "value" : "🍒" + ] }, "🍓", { + "value" : "🍓", "keywords" : [ "berry", "fruit", "strawberry" - ], - "value" : "🍓" + ] }, "🫐", { @@ -40498,31 +40497,31 @@ }, "🥥", { - "value" : "🥥", "keywords" : [ "coconut", "colada", "palm", "piña" - ] + ], + "value" : "🥥" }, "🥑", { - "value" : "🥑", "keywords" : [ "avocado", "food", "fruit" - ] + ], + "value" : "🥑" }, "🍆", { - "value" : "🍆", "keywords" : [ "aubergine", "eggplant", "vegetable" - ] + ], + "value" : "🍆" }, "🥔", { @@ -40535,16 +40534,15 @@ }, "🥕", { - "value" : "🥕", "keywords" : [ "carrot", "food", "vegetable" - ] + ], + "value" : "🥕" }, "🌽", { - "value" : "🌽", "keywords" : [ "corn", "crops", @@ -40552,7 +40550,8 @@ "farm", "maize", "maze" - ] + ], + "value" : "🌽" }, "🌶️", { @@ -40564,24 +40563,24 @@ }, "🫑", { - "value" : "🫑", "keywords" : [ "bell", "capsicum", "food", "pepper", "vegetable" - ] + ], + "value" : "🫑" }, "🥒", { + "value" : "🥒", "keywords" : [ "cucumber", "food", "pickle", "vegetable" - ], - "value" : "🥒" + ] }, "🥬", { @@ -40600,12 +40599,12 @@ }, "🥦", { + "value" : "🥦", "keywords" : [ "broccoli", "cabbage", "wild" - ], - "value" : "🥦" + ] }, "🧄", { @@ -40617,33 +40616,33 @@ }, "🧅", { + "value" : "🧅", "keywords" : [ "flavoring", "onion" - ], - "value" : "🧅" + ] }, "🥜", { - "value" : "🥜", "keywords" : [ "food", "nut", "peanut", "peanuts", "vegetable" - ] + ], + "value" : "🥜" }, "🫘", { - "value" : "🫘", "keywords" : [ "beans", "food", "kidney", "legume", "small" - ] + ], + "value" : "🫘" }, "🌰", { @@ -40684,6 +40683,7 @@ }, "🍄‍🟫", { + "value" : "🍄‍🟫", "keywords" : [ "food", "fungi", @@ -40701,12 +40701,10 @@ "vegetable", "vegetarian", "veggie" - ], - "value" : "🍄‍🟫" + ] }, "🍞", { - "value" : "🍞", "keywords" : [ "bread", "carbs", @@ -40716,10 +40714,12 @@ "restaurant", "toast", "wheat" - ] + ], + "value" : "🍞" }, "🥐", { + "value" : "🥐", "keywords" : [ "bread", "breakfast", @@ -40728,18 +40728,17 @@ "food", "french", "roll" - ], - "value" : "🥐" + ] }, "🥖", { - "value" : "🥖", "keywords" : [ "baguette", "bread", "food", "french" - ] + ], + "value" : "🥖" }, "🫓", { @@ -40766,14 +40765,14 @@ }, "🥯", { - "value" : "🥯", "keywords" : [ "bagel", "bakery", "bread", "breakfast", "schmear" - ] + ], + "value" : "🥯" }, "🥞", { @@ -40799,19 +40798,19 @@ }, "🧀", { + "value" : "🧀", "keywords" : [ "cheese", "wedge" - ], - "value" : "🧀" + ] }, "🍖", { + "value" : "🍖", "keywords" : [ "bone", "meat" - ], - "value" : "🍖" + ] }, "🍗", { @@ -40851,7 +40850,6 @@ }, "🍔", { - "value" : "🍔", "keywords" : [ "burger", "eat", @@ -40859,7 +40857,8 @@ "food", "hamburger", "hungry" - ] + ], + "value" : "🍔" }, "🍟", { @@ -40885,14 +40884,14 @@ }, "🌭", { - "value" : "🌭", "keywords" : [ "dog", "frankfurter", "hot", "hotdog", "sausage" - ] + ], + "value" : "🌭" }, "🥪", { @@ -40904,20 +40903,20 @@ }, "🌮", { + "value" : "🌮", "keywords" : [ "mexican", "taco" - ], - "value" : "🌮" + ] }, "🌯", { + "value" : "🌯", "keywords" : [ "burrito", "mexican", "wrap" - ], - "value" : "🌯" + ] }, "🫔", { @@ -40953,16 +40952,15 @@ }, "🥚", { - "value" : "🥚", "keywords" : [ "breakfast", "egg", "food" - ] + ], + "value" : "🥚" }, "🍳", { - "value" : "🍳", "keywords" : [ "breakfast", "cooking", @@ -40976,32 +40974,32 @@ "side", "sunny", "up" - ] + ], + "value" : "🍳" }, "🥘", { + "value" : "🥘", "keywords" : [ "casserole", "food", "paella", "pan", "shallow" - ], - "value" : "🥘" + ] }, "🍲", { + "value" : "🍲", "keywords" : [ "food", "pot", "soup", "stew" - ], - "value" : "🍲" + ] }, "🫕", { - "value" : "🫕", "keywords" : [ "cheese", "chocolate", @@ -41010,7 +41008,8 @@ "melted", "pot", "ski" - ] + ], + "value" : "🫕" }, "🥣", { @@ -41027,12 +41026,12 @@ }, "🥗", { - "value" : "🥗", "keywords" : [ "food", "green", "salad" - ] + ], + "value" : "🥗" }, "🍿", { @@ -41046,11 +41045,11 @@ }, "🧈", { + "value" : "🧈", "keywords" : [ "butter", "dairy" - ], - "value" : "🧈" + ] }, "🧂", { @@ -41068,30 +41067,30 @@ }, "🥫", { - "value" : "🥫", "keywords" : [ "can", "canned", "food" - ] + ], + "value" : "🥫" }, "🍱", { + "value" : "🍱", "keywords" : [ "bento", "box", "food" - ], - "value" : "🍱" + ] }, "🍘", { + "value" : "🍘", "keywords" : [ "cracker", "food", "rice" - ], - "value" : "🍘" + ] }, "🍙", { @@ -41105,12 +41104,12 @@ }, "🍚", { + "value" : "🍚", "keywords" : [ "cooked", "food", "rice" - ], - "value" : "🍚" + ] }, "🍛", { @@ -41137,24 +41136,24 @@ }, "🍝", { + "value" : "🍝", "keywords" : [ "food", "meatballs", "pasta", "restaurant", "spaghetti" - ], - "value" : "🍝" + ] }, "🍠", { + "value" : "🍠", "keywords" : [ "food", "potato", "roasted", "sweet" - ], - "value" : "🍠" + ] }, "🍢", { @@ -41171,11 +41170,11 @@ }, "🍣", { + "value" : "🍣", "keywords" : [ "food", "sushi" - ], - "value" : "🍣" + ] }, "🍤", { @@ -41212,6 +41211,7 @@ }, "🍡", { + "value" : "🍡", "keywords" : [ "dango", "dessert", @@ -41219,8 +41219,7 @@ "skewer", "stick", "sweet" - ], - "value" : "🍡" + ] }, "🥟", { @@ -41258,12 +41257,12 @@ }, "🦀", { - "value" : "🦀", "keywords" : [ "Cancer", "crab", "zodiac" - ] + ], + "value" : "🦀" }, "🦞", { @@ -41278,32 +41277,32 @@ }, "🦐", { + "value" : "🦐", "keywords" : [ "food", "shellfish", "shrimp", "small" - ], - "value" : "🦐" + ] }, "🦑", { + "value" : "🦑", "keywords" : [ "animal", "food", "mollusk", "squid" - ], - "value" : "🦑" + ] }, "🦪", { + "value" : "🦪", "keywords" : [ "diving", "oyster", "pearl" - ], - "value" : "🦪" + ] }, "🍦", { @@ -41322,14 +41321,14 @@ }, "🍧", { - "value" : "🍧", "keywords" : [ "dessert", "ice", "restaurant", "shaved", "sweet" - ] + ], + "value" : "🍧" }, "🍨", { @@ -41357,14 +41356,14 @@ }, "🍪", { + "value" : "🍪", "keywords" : [ "chip", "chocolate", "cookie", "dessert", "sweet" - ], - "value" : "🍪" + ] }, "🎂", { @@ -41382,7 +41381,6 @@ }, "🍰", { - "value" : "🍰", "keywords" : [ "cake", "dessert", @@ -41390,10 +41388,12 @@ "shortcake", "slice", "sweet" - ] + ], + "value" : "🍰" }, "🧁", { + "value" : "🧁", "keywords" : [ "bakery", "cupcake", @@ -41402,12 +41402,10 @@ "sugar", "sweet", "treat" - ], - "value" : "🧁" + ] }, "🥧", { - "value" : "🥧", "keywords" : [ "apple", "filling", @@ -41417,7 +41415,8 @@ "pie", "pumpkin", "slice" - ] + ], + "value" : "🥧" }, "🍫", { @@ -41434,6 +41433,7 @@ }, "🍬", { + "value" : "🍬", "keywords" : [ "candy", "cavities", @@ -41443,12 +41443,10 @@ "sweet", "tooth", "wrapper" - ], - "value" : "🍬" + ] }, "🍭", { - "value" : "🍭", "keywords" : [ "candy", "dessert", @@ -41456,7 +41454,8 @@ "lollipop", "restaurant", "sweet" - ] + ], + "value" : "🍭" }, "🍮", { @@ -41484,6 +41483,7 @@ }, "🍼", { + "value" : "🍼", "keywords" : [ "babies", "baby", @@ -41494,8 +41494,7 @@ "infant", "milk", "newborn" - ], - "value" : "🍼" + ] }, "🥛", { @@ -41508,7 +41507,6 @@ }, "☕", { - "value" : "☕", "keywords" : [ "beverage", "cafe", @@ -41520,7 +41518,8 @@ "morning", "steaming", "tea" - ] + ], + "value" : "☕" }, "🫖", { @@ -41536,6 +41535,7 @@ }, "🍵", { + "value" : "🍵", "keywords" : [ "beverage", "cup", @@ -41544,11 +41544,11 @@ "oolong", "tea", "teacup" - ], - "value" : "🍵" + ] }, "🍶", { + "value" : "🍶", "keywords" : [ "bar", "beverage", @@ -41557,23 +41557,21 @@ "drink", "restaurant", "sake" - ], - "value" : "🍶" + ] }, "🍾", { - "value" : "🍾", "keywords" : [ "bar", "bottle", "cork", "drink", "popping" - ] + ], + "value" : "🍾" }, "🍷", { - "value" : "🍷", "keywords" : [ "alcohol", "bar", @@ -41586,7 +41584,8 @@ "glass", "restaurant", "wine" - ] + ], + "value" : "🍷" }, "🍸", { @@ -41608,7 +41607,6 @@ }, "🍹", { - "value" : "🍹", "keywords" : [ "alcohol", "bar", @@ -41624,7 +41622,8 @@ "tai", "tropical", "tropics" - ] + ], + "value" : "🍹" }, "🍺", { @@ -41648,7 +41647,6 @@ }, "🍻", { - "value" : "🍻", "keywords" : [ "alcohol", "bar", @@ -41661,10 +41659,12 @@ "drinking", "drinks", "mugs" - ] + ], + "value" : "🍻" }, "🥂", { + "value" : "🥂", "keywords" : [ "celebrate", "clink", @@ -41672,12 +41672,10 @@ "drink", "glass", "glasses" - ], - "value" : "🥂" + ] }, "🥃", { - "value" : "🥃", "keywords" : [ "glass", "liquor", @@ -41686,7 +41684,8 @@ "tumbler", "whiskey", "whisky" - ] + ], + "value" : "🥃" }, "🫗", { @@ -41706,7 +41705,6 @@ }, "🥤", { - "value" : "🥤", "keywords" : [ "cup", "drink", @@ -41716,7 +41714,8 @@ "soft", "straw", "water" - ] + ], + "value" : "🥤" }, "🧋", { @@ -41732,32 +41731,32 @@ }, "🧃", { - "value" : "🧃", "keywords" : [ "beverage", "box", "juice", "straw", "sweet" - ] + ], + "value" : "🧃" }, "🧉", { + "value" : "🧉", "keywords" : [ "drink", "mate" - ], - "value" : "🧉" + ] }, "🧊", { - "value" : "🧊", "keywords" : [ "cold", "cube", "ice", "iceberg" - ] + ], + "value" : "🧊" }, "🥢", { @@ -41771,6 +41770,7 @@ }, "🍽️", { + "value" : "🍽️", "keywords" : [ "cooking", "dinner", @@ -41778,11 +41778,11 @@ "fork", "knife", "plate" - ], - "value" : "🍽️" + ] }, "🍴", { + "value" : "🍴", "keywords" : [ "breakfast", "breaky", @@ -41800,8 +41800,7 @@ "restaurant", "yum", "yummy" - ], - "value" : "🍴" + ] }, "🥄", { @@ -41827,7 +41826,6 @@ }, "🫙", { - "value" : "🫙", "keywords" : [ "condiment", "container", @@ -41836,10 +41834,12 @@ "nothing", "sauce", "store" - ] + ], + "value" : "🫙" }, "🏺", { + "value" : "🏺", "keywords" : [ "amphora", "Aquarius", @@ -41849,12 +41849,14 @@ "tool", "weapon", "zodiac" - ], - "value" : "🏺" + ] } - ] + ], + "appleCategory" : "foodAndDrink" }, { + "name" : "Smileys & Emotion", + "appleCategory" : "smileysAndPeople", "emojis" : [ "😀", { @@ -41875,6 +41877,7 @@ }, "😃", { + "value" : "😃", "keywords" : [ "awesome", "big", @@ -41889,11 +41892,11 @@ "smiling", "teeth", "yay" - ], - "value" : "😃" + ] }, "😄", { + "value" : "😄", "keywords" : [ "eye", "eyes", @@ -41907,12 +41910,10 @@ "open", "smile", "smiling" - ], - "value" : "😄" + ] }, "😁", { - "value" : "😁", "keywords" : [ "beaming", "eye", @@ -41925,7 +41926,8 @@ "smile", "smiling", "teeth" - ] + ], + "value" : "😁" }, "😆", { @@ -41950,7 +41952,6 @@ }, "😅", { - "value" : "😅", "keywords" : [ "cold", "dejected", @@ -41965,11 +41966,11 @@ "stress", "stressed", "sweat" - ] + ], + "value" : "😅" }, "🤣", { - "value" : "🤣", "keywords" : [ "crying", "face", @@ -41987,10 +41988,12 @@ "roflmao", "rolling", "tear" - ] + ], + "value" : "🤣" }, "😂", { + "value" : "😂", "keywords" : [ "crying", "face", @@ -42007,8 +42010,7 @@ "rofl", "roflmao", "tear" - ], - "value" : "😂" + ] }, "🙂", { @@ -42033,7 +42035,6 @@ }, "🫠", { - "value" : "🫠", "keywords" : [ "disappear", "dissolve", @@ -42048,10 +42049,12 @@ "melting", "sarcasm", "sarcastic" - ] + ], + "value" : "🫠" }, "😉", { + "value" : "😉", "keywords" : [ "face", "flirt", @@ -42062,8 +42065,7 @@ "wink", "winking", "winks" - ], - "value" : "😉" + ] }, "😊", { @@ -42081,6 +42083,7 @@ }, "😇", { + "value" : "😇", "keywords" : [ "angel", "angelic", @@ -42098,12 +42101,10 @@ "smiling", "spirit", "tale" - ], - "value" : "😇" + ] }, "🥰", { - "value" : "🥰", "keywords" : [ "3", "adore", @@ -42117,10 +42118,12 @@ "smile", "smiling", "you" - ] + ], + "value" : "🥰" }, "😍", { + "value" : "😍", "keywords" : [ "143", "bae", @@ -42136,11 +42139,11 @@ "romantic", "smile", "xoxo" - ], - "value" : "😍" + ] }, "🤩", { + "value" : "🤩", "keywords" : [ "excited", "eyes", @@ -42151,8 +42154,7 @@ "star-struck", "starry-eyed", "wow" - ], - "value" : "🤩" + ] }, "😘", { @@ -42178,7 +42180,6 @@ }, "😗", { - "value" : "😗", "keywords" : [ "143", "date", @@ -42192,7 +42193,8 @@ "smooches", "xoxo", "you" - ] + ], + "value" : "😗" }, "☺️", { @@ -42289,6 +42291,7 @@ }, "😛", { + "value" : "😛", "keywords" : [ "awesome", "cool", @@ -42298,11 +42301,11 @@ "stuck-out", "sweet", "tongue" - ], - "value" : "😛" + ] }, "😜", { + "value" : "😜", "keywords" : [ "crazy", "epic", @@ -42320,11 +42323,11 @@ "wink", "winking", "yolo" - ], - "value" : "😜" + ] }, "🤪", { + "value" : "🤪", "keywords" : [ "crazy", "eye", @@ -42334,12 +42337,10 @@ "large", "small", "zany" - ], - "value" : "🤪" + ] }, "😝", { - "value" : "😝", "keywords" : [ "closed", "eye", @@ -42354,7 +42355,8 @@ "tongue", "whatever", "yolo" - ] + ], + "value" : "😝" }, "🤑", { @@ -42369,6 +42371,7 @@ }, "🤗", { + "value" : "🤗", "keywords" : [ "face", "hands", @@ -42376,12 +42379,10 @@ "hugging", "open", "smiling" - ], - "value" : "🤗" + ] }, "🤭", { - "value" : "🤭", "keywords" : [ "face", "giggle", @@ -42395,7 +42396,8 @@ "sudden", "surprise", "whoops" - ] + ], + "value" : "🤭" }, "🫢", { @@ -42421,6 +42423,7 @@ }, "🫣", { + "value" : "🫣", "keywords" : [ "captivated", "embarrass", @@ -42434,19 +42437,18 @@ "scared", "shy", "stare" - ], - "value" : "🫣" + ] }, "🤫", { - "value" : "🤫", "keywords" : [ "face", "quiet", "shh", "shush", "shushing" - ] + ], + "value" : "🤫" }, "🤔", { @@ -42464,7 +42466,6 @@ }, "🫡", { - "value" : "🫡", "keywords" : [ "face", "good", @@ -42477,10 +42478,12 @@ "sir", "troops", "yes" - ] + ], + "value" : "🫡" }, "🤐", { + "value" : "🤐", "keywords" : [ "face", "keep", @@ -42491,8 +42494,7 @@ "zip", "zipper", "zipper-mouth" - ], - "value" : "🤐" + ] }, "🤨", { @@ -42538,6 +42540,7 @@ }, "😑", { + "value" : "😑", "keywords" : [ "awkward", "dead", @@ -42555,12 +42558,10 @@ "unhappy", "unimpressed", "whatever" - ], - "value" : "😑" + ] }, "😶", { - "value" : "😶", "keywords" : [ "awkward", "blank", @@ -42574,11 +42575,11 @@ "silence", "silent", "speechless" - ] + ], + "value" : "😶" }, "🫥", { - "value" : "🫥", "keywords" : [ "depressed", "disappear", @@ -42592,7 +42593,8 @@ "meh", "whatever", "wtv" - ] + ], + "value" : "🫥" }, "😶‍🌫️", { @@ -42629,7 +42631,6 @@ }, "😒", { - "value" : "😒", "keywords" : [ "...", "bored", @@ -42646,11 +42647,11 @@ "unhappy", "weird", "whatever" - ] + ], + "value" : "😒" }, "🙄", { - "value" : "🙄", "keywords" : [ "eyeroll", "eyes", @@ -42659,7 +42660,8 @@ "shade", "ugh", "whatever" - ] + ], + "value" : "🙄" }, "😬", { @@ -42678,6 +42680,7 @@ }, "😮‍💨", { + "value" : "😮‍💨", "keywords" : [ "blow", "blowing", @@ -42693,8 +42696,7 @@ "smoke", "whisper", "whistle" - ], - "value" : "😮‍💨" + ] }, "🤥", { @@ -42709,7 +42711,6 @@ }, "🫨", { - "value" : "🫨", "keywords" : [ "crazy", "daze", @@ -42723,7 +42724,8 @@ "vibrate", "whoa", "wow" - ] + ], + "value" : "🫨" }, "🙂‍↔️", { @@ -42778,7 +42780,6 @@ }, "😪", { - "value" : "😪", "keywords" : [ "crying", "face", @@ -42789,15 +42790,16 @@ "sleeping", "sleepy", "tired" - ] + ], + "value" : "😪" }, "🤤", { + "value" : "🤤", "keywords" : [ "drooling", "face" - ], - "value" : "🤤" + ] }, "😴", { @@ -42847,7 +42849,6 @@ }, "🤕", { - "value" : "🤕", "keywords" : [ "bandage", "face", @@ -42855,7 +42856,8 @@ "hurt", "injury", "ouch" - ] + ], + "value" : "🤕" }, "🤢", { @@ -42871,7 +42873,6 @@ }, "🤮", { - "value" : "🤮", "keywords" : [ "barf", "ew", @@ -42884,10 +42885,12 @@ "up", "vomit", "vomiting" - ] + ], + "value" : "🤮" }, "🤧", { + "value" : "🤧", "keywords" : [ "face", "fever", @@ -42896,11 +42899,11 @@ "sick", "sneeze", "sneezing" - ], - "value" : "🤧" + ] }, "🥵", { + "value" : "🥵", "keywords" : [ "dying", "face", @@ -42912,8 +42915,7 @@ "stroke", "sweating", "tongue" - ], - "value" : "🥵" + ] }, "🥶", { @@ -42982,7 +42984,6 @@ }, "🤯", { - "value" : "🤯", "keywords" : [ "blown", "explode", @@ -42993,21 +42994,21 @@ "no", "shocked", "way" - ] + ], + "value" : "🤯" }, "🤠", { + "value" : "🤠", "keywords" : [ "cowboy", "cowgirl", "face", "hat" - ], - "value" : "🤠" + ] }, "🥳", { - "value" : "🥳", "keywords" : [ "bday", "birthday", @@ -43021,7 +43022,8 @@ "horn", "party", "partying" - ] + ], + "value" : "🥳" }, "🥸", { @@ -43043,6 +43045,7 @@ }, "😎", { + "value" : "😎", "keywords" : [ "awesome", "beach", @@ -43060,8 +43063,7 @@ "sunglasses", "swag", "win" - ], - "value" : "😎" + ] }, "🤓", { @@ -43081,7 +43083,6 @@ }, "🧐", { - "value" : "🧐", "keywords" : [ "classy", "face", @@ -43090,11 +43091,11 @@ "rich", "stuffy", "wealthy" - ] + ], + "value" : "🧐" }, "😕", { - "value" : "😕", "keywords" : [ "befuddled", "confused", @@ -43108,7 +43109,8 @@ "sad", "sorry", "sure" - ] + ], + "value" : "😕" }, "🫤", { @@ -43150,24 +43152,24 @@ }, "🙁", { + "value" : "🙁", "keywords" : [ "face", "frown", "frowning", "sad", "slightly" - ], - "value" : "🙁" + ] }, "☹️", { + "value" : "☹️", "keywords" : [ "face", "frown", "frowning", "sad" - ], - "value" : "☹️" + ] }, "😮", { @@ -43219,7 +43221,6 @@ }, "😳", { - "value" : "😳", "keywords" : [ "amazed", "awkward", @@ -43237,7 +43238,8 @@ "jeez", "what", "wow" - ] + ], + "value" : "😳" }, "🥺", { @@ -43281,7 +43283,6 @@ }, "😦", { - "value" : "😦", "keywords" : [ "caught", "face", @@ -43295,10 +43296,12 @@ "surprise", "what", "wow" - ] + ], + "value" : "😦" }, "😧", { + "value" : "😧", "keywords" : [ "anguished", "face", @@ -43310,8 +43313,7 @@ "unhappy", "what", "wow" - ], - "value" : "😧" + ] }, "😨", { @@ -43347,6 +43349,7 @@ }, "😥", { + "value" : "😥", "keywords" : [ "anxious", "call", @@ -43360,8 +43363,7 @@ "sweat", "time", "whew" - ], - "value" : "😥" + ] }, "😢", { @@ -43381,7 +43383,6 @@ }, "😭", { - "value" : "😭", "keywords" : [ "bawling", "cry", @@ -43393,11 +43394,11 @@ "tear", "tears", "unhappy" - ] + ], + "value" : "😭" }, "😱", { - "value" : "😱", "keywords" : [ "epic", "face", @@ -43411,7 +43412,8 @@ "shocked", "surprised", "woah" - ] + ], + "value" : "😱" }, "😖", { @@ -43431,6 +43433,7 @@ }, "😣", { + "value" : "😣", "keywords" : [ "concentrate", "concentration", @@ -43439,8 +43442,7 @@ "headache", "persevere", "persevering" - ], - "value" : "😣" + ] }, "😞", { @@ -43459,7 +43461,6 @@ }, "😓", { - "value" : "😓", "keywords" : [ "close", "cold", @@ -43472,11 +43473,11 @@ "scared", "sweat", "yikes" - ] + ], + "value" : "😓" }, "😩", { - "value" : "😩", "keywords" : [ "crying", "face", @@ -43490,7 +43491,8 @@ "tired", "unhappy", "weary" - ] + ], + "value" : "😩" }, "😫", { @@ -43507,6 +43509,7 @@ }, "🥱", { + "value" : "🥱", "keywords" : [ "bedtime", "bored", @@ -43521,12 +43524,10 @@ "yawn", "yawning", "zzz" - ], - "value" : "🥱" + ] }, "😤", { - "value" : "😤", "keywords" : [ "anger", "angry", @@ -43542,7 +43543,8 @@ "triumph", "unhappy", "won" - ] + ], + "value" : "😤" }, "😡", { @@ -43843,7 +43845,6 @@ }, "😻", { - "value" : "😻", "keywords" : [ "animal", "cat", @@ -43854,7 +43855,8 @@ "love", "smile", "smiling" - ] + ], + "value" : "😻" }, "😼", { @@ -43940,7 +43942,6 @@ }, "🙉", { - "value" : "🙉", "keywords" : [ "animal", "ears", @@ -43957,11 +43958,11 @@ "secret", "shh", "tmi" - ] + ], + "value" : "🙉" }, "🙊", { - "value" : "🙊", "keywords" : [ "animal", "evil", @@ -43977,11 +43978,11 @@ "secret", "speak", "stealth" - ] + ], + "value" : "🙊" }, "💌", { - "value" : "💌", "keywords" : [ "heart", "letter", @@ -43989,11 +43990,11 @@ "mail", "romance", "valentine" - ] + ], + "value" : "💌" }, "💘", { - "value" : "💘", "keywords" : [ "143", "adorbs", @@ -44006,7 +44007,8 @@ "love", "romance", "valentine" - ] + ], + "value" : "💘" }, "💝", { @@ -44025,6 +44027,7 @@ }, "💖", { + "value" : "💖", "keywords" : [ "143", "emotion", @@ -44038,8 +44041,7 @@ "sparkle", "sparkling", "xoxo" - ], - "value" : "💖" + ] }, "💗", { @@ -44090,7 +44092,6 @@ }, "💕", { - "value" : "💕", "keywords" : [ "143", "anniversary", @@ -44105,10 +44106,12 @@ "loving", "two", "xoxo" - ] + ], + "value" : "💕" }, "💟", { + "value" : "💟", "keywords" : [ "143", "decoration", @@ -44117,19 +44120,18 @@ "hearth", "purple", "white" - ], - "value" : "💟" + ] }, "❣️", { - "value" : "❣️", "keywords" : [ "exclamation", "heart", "heavy", "mark", "punctuation" - ] + ], + "value" : "❣️" }, "💔", { @@ -44147,7 +44149,6 @@ }, "❤️‍🔥", { - "value" : "❤️‍🔥", "keywords" : [ "burn", "fire", @@ -44155,10 +44156,12 @@ "love", "lust", "sacred" - ] + ], + "value" : "❤️‍🔥" }, "❤️‍🩹", { + "value" : "❤️‍🩹", "keywords" : [ "healthier", "heart", @@ -44167,22 +44170,20 @@ "recovering", "recuperating", "well" - ], - "value" : "❤️‍🩹" + ] }, "❤️", { + "value" : "❤️", "keywords" : [ "emotion", "heart", "love", "red" - ], - "value" : "❤️" + ] }, "🩷", { - "value" : "🩷", "keywords" : [ "143", "adorable", @@ -44195,19 +44196,21 @@ "pink", "special", "sweet" - ] + ], + "value" : "🩷" }, "🧡", { + "value" : "🧡", "keywords" : [ "143", "heart", "orange" - ], - "value" : "🧡" + ] }, "💛", { + "value" : "💛", "keywords" : [ "143", "cardiac", @@ -44216,11 +44219,11 @@ "ily", "love", "yellow" - ], - "value" : "💛" + ] }, "💚", { + "value" : "💚", "keywords" : [ "143", "emotion", @@ -44229,11 +44232,11 @@ "ily", "love", "romantic" - ], - "value" : "💚" + ] }, "💙", { + "value" : "💙", "keywords" : [ "143", "blue", @@ -44242,12 +44245,10 @@ "ily", "love", "romance" - ], - "value" : "💙" + ] }, "🩵", { - "value" : "🩵", "keywords" : [ "143", "blue", @@ -44262,7 +44263,8 @@ "sky", "special", "teal" - ] + ], + "value" : "🩵" }, "💜", { @@ -44279,22 +44281,22 @@ }, "🤎", { - "value" : "🤎", "keywords" : [ "143", "brown", "heart" - ] + ], + "value" : "🤎" }, "🖤", { - "value" : "🖤", "keywords" : [ "black", "evil", "heart", "wicked" - ] + ], + "value" : "🖤" }, "🩶", { @@ -44338,7 +44340,6 @@ }, "💯", { - "value" : "💯", "keywords" : [ "100", "a+", @@ -44356,7 +44357,8 @@ "TRUE", "truth", "yup" - ] + ], + "value" : "💯" }, "💢", { @@ -44372,7 +44374,6 @@ }, "💥", { - "value" : "💥", "keywords" : [ "bomb", "boom", @@ -44380,10 +44381,12 @@ "collision", "comic", "explode" - ] + ], + "value" : "💥" }, "💫", { + "value" : "💫", "keywords" : [ "comic", "dizzy", @@ -44391,11 +44394,11 @@ "shooting", "star", "stars" - ], - "value" : "💫" + ] }, "💦", { + "value" : "💦", "keywords" : [ "comic", "drip", @@ -44409,8 +44412,7 @@ "wet", "work", "workout" - ], - "value" : "💦" + ] }, "💨", { @@ -44432,10 +44434,10 @@ }, "🕳️", { - "value" : "🕳️", "keywords" : [ "hole" - ] + ], + "value" : "🕳️" }, "💬", { @@ -44510,7 +44512,6 @@ }, "💤", { - "value" : "💤", "keywords" : [ "comic", "good", @@ -44521,10 +44522,9 @@ "sleepy", "tired", "zzz" - ] + ], + "value" : "💤" } - ], - "name" : "Smileys & Emotion", - "appleCategory" : "Smileys & People" + ] } ] \ No newline at end of file