diff --git a/Linphone/core/App.cpp b/Linphone/core/App.cpp index 82f607be..0ac1b33e 100644 --- a/Linphone/core/App.cpp +++ b/Linphone/core/App.cpp @@ -60,6 +60,7 @@ #include "core/conference/ConferenceGui.hpp" #include "core/conference/ConferenceInfoGui.hpp" #include "core/conference/ConferenceInfoProxy.hpp" +#include "core/emoji/EmojiModel.hpp" #include "core/fps-counter/FPSCounter.hpp" #include "core/friend/FriendCore.hpp" #include "core/friend/FriendGui.hpp" @@ -91,6 +92,7 @@ #include "tool/Utils.hpp" #include "tool/native/DesktopTools.hpp" #include "tool/providers/AvatarProvider.hpp" +#include "tool/providers/EmojiProvider.hpp" #include "tool/providers/ImageProvider.hpp" #include "tool/providers/ScreenProvider.hpp" #include "tool/request/CallbackHelper.hpp" @@ -487,6 +489,7 @@ void App::initCore() { initCppInterfaces(); mEngine->addImageProvider(ImageProvider::ProviderId, new ImageProvider()); + mEngine->addImageProvider(EmojiProvider::ProviderId, new EmojiProvider()); mEngine->addImageProvider(AvatarProvider::ProviderId, new AvatarProvider()); mEngine->addImageProvider(ScreenProvider::ProviderId, new ScreenProvider()); mEngine->addImageProvider(WindowProvider::ProviderId, new WindowProvider()); @@ -561,7 +564,6 @@ void App::initCore() { } static inline bool installLocale(App &app, QTranslator &translator, const QLocale &locale) { - auto appPath = QStandardPaths::ApplicationsLocation; bool ok = translator.load(locale.name(), Constants::LanguagePath); ok = ok && app.installTranslator(&translator); if (ok) QLocale::setDefault(locale); @@ -671,6 +673,7 @@ void App::initCppInterfaces() { qmlRegisterType(Constants::MainQmlUri, 1, 0, "MagicSearchList"); qmlRegisterType(Constants::MainQmlUri, 1, 0, "CameraGui"); qmlRegisterType(Constants::MainQmlUri, 1, 0, "FPSCounter"); + qmlRegisterType(Constants::MainQmlUri, 1, 0, "EmojiModel"); qmlRegisterType(Constants::MainQmlUri, 1, 0, "TimeZoneProxy"); diff --git a/Linphone/core/CMakeLists.txt b/Linphone/core/CMakeLists.txt index e7c649d9..4d9c9224 100644 --- a/Linphone/core/CMakeLists.txt +++ b/Linphone/core/CMakeLists.txt @@ -27,6 +27,7 @@ list(APPEND _LINPHONEAPP_SOURCES core/chat/message/ChatMessageGui.cpp core/chat/message/ChatMessageList.cpp core/chat/message/ChatMessageProxy.cpp + core/emoji/EmojiModel.cpp core/fps-counter/FPSCounter.cpp core/friend/FriendCore.cpp core/friend/FriendGui.cpp diff --git a/Linphone/core/emoji/EmojiModel.cpp b/Linphone/core/emoji/EmojiModel.cpp new file mode 100644 index 00000000..a7d02cb5 --- /dev/null +++ b/Linphone/core/emoji/EmojiModel.cpp @@ -0,0 +1,92 @@ +/* + * MIT License + +Copyright (c) 2023 AmirHosseinCH + +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. +*/ + +#include "EmojiModel.hpp" +#include "core/path/Paths.hpp" +#include "tool/Constants.hpp" + +EmojiModel::EmojiModel() { + QFile file(QString(":/data/emoji/emoji.json")); + auto open = file.open(QIODevice::ReadOnly); + QByteArray data = file.readAll(); + file.close(); + QJsonDocument doc = QJsonDocument::fromJson(data); + QJsonObject rootObj = doc.object(); + for (auto category{rootObj.begin()}; category != rootObj.end(); ++category) { + emojies[category.key()] = category.value().toArray(); + QJsonArray &emojiesData = emojies[category.key()]; + for (auto it{emojiesData.begin()}; it != emojiesData.end(); ++it) { + QJsonObject emoji = it->toObject(); + QJsonArray allKeywords = emoji.value("keywords").toArray(); + for (auto k{allKeywords.begin()}; k != allKeywords.end(); ++k) { + keywords[k->toString()].append(emoji); + } + } + } +} + +int EmojiModel::count(QString category) { + qDebug() << "count of category" << category << emojies[category].size(); + return emojies[category].size(); +} + +QString EmojiModel::path(QString category, int index, int skinColor) { + QJsonObject emoji = emojies[category][index].toObject(); + if (emoji.contains("types") && skinColor != -1) { + QJsonArray types = emoji.value("types").toArray(); + return mIconsPath + types[skinColor].toString() + mIconsType; + } else return mIconsPath + emoji.value("code").toString() + mIconsType; +} + +QVector EmojiModel::search(QString searchKey, int skinColor) { + bool foundFirstItem{false}; + QVector searchResult; + for (auto it{keywords.begin()}; it != keywords.end(); ++it) { + if (it.key().startsWith(searchKey)) { + QVector &emojiesData{it.value()}; + for (auto emoji{emojiesData.begin()}; emoji != emojiesData.end(); ++emoji) { + if (emoji->contains("types") && skinColor != -1) { + QJsonArray types = emoji->value("types").toArray(); + QString path = mIconsPath + types[skinColor].toString() + mIconsType; + if (!searchResult.contains(path)) searchResult.append(path); + } else { + QString path = mIconsPath + emoji->value("code").toString() + mIconsType; + if (!searchResult.contains(path)) searchResult.append(path); + } + } + foundFirstItem = true; + } else if (foundFirstItem) { + break; + } + } + return searchResult; +} + +void EmojiModel::setIconsPath(QString path) { + mIconsPath = path; +} + +void EmojiModel::setIconsType(QString type) { + mIconsType = type; +} diff --git a/Linphone/core/emoji/EmojiModel.hpp b/Linphone/core/emoji/EmojiModel.hpp new file mode 100644 index 00000000..f8dc10b8 --- /dev/null +++ b/Linphone/core/emoji/EmojiModel.hpp @@ -0,0 +1,54 @@ +/* + * MIT License + +Copyright (c) 2023 AmirHosseinCH + +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. +*/ + +#ifndef EMOJIMODEL_H +#define EMOJIMODEL_H + +#include +#include +#include +#include +#include + +class EmojiModel : public QObject { + Q_OBJECT + Q_PROPERTY(QString iconsPath WRITE setIconsPath MEMBER mIconsPath) + Q_PROPERTY(QString iconsType WRITE setIconsType MEMBER mIconsType) +public: + EmojiModel(); + void setIconsPath(QString); + void setIconsType(QString); +public slots: + int count(QString); + QString path(QString, int, int = -1); + QVector search(QString, int = -1); + +private: + QString mIconsPath; + QString mIconsType; + QMap emojies; + QMap> keywords; +}; + +#endif diff --git a/Linphone/core/path/Paths.cpp b/Linphone/core/path/Paths.cpp index a9773737..ecb1c8d6 100644 --- a/Linphone/core/path/Paths.cpp +++ b/Linphone/core/path/Paths.cpp @@ -174,8 +174,7 @@ static inline QString getAppRootCaFilePath() { } } QFile rootCaFile(rootca); - if (rootCaFile.open(QIODevice::ReadWrite)) - return rootca; + if (rootCaFile.open(QIODevice::ReadWrite)) return rootca; else { lCritical() << "ERROR : COULD NOT CREATE ROOTCA WITH PATH" << rootca; } diff --git a/Linphone/data/CMakeLists.txt b/Linphone/data/CMakeLists.txt index 106ef503..9fa123e3 100644 --- a/Linphone/data/CMakeLists.txt +++ b/Linphone/data/CMakeLists.txt @@ -3,6 +3,7 @@ list(APPEND _LINPHONEAPP_RC_FILES data/assistant/use-app-sip-account.rc data/assistant/use-other-sip-account.rc data/shaders/opacityMask.frag.qsb data/shaders/roundEffect.frag.qsb + data/emoji/emoji.json ) file(GLOB files LIST_DIRECTORIES false image/*) @@ -11,6 +12,18 @@ foreach(f ${files}) list(APPEND _LINPHONEAPP_RC_FILES data/image/${filename}) endforeach() +file(GLOB files LIST_DIRECTORIES false emoji/emojiSvgs/*) +foreach(f ${files}) + get_filename_component(filename ${f} NAME) + list(APPEND _LINPHONEAPP_RC_FILES data/emoji/emojiSvgs/${filename}) +endforeach() + +file(GLOB files LIST_DIRECTORIES false emoji/icons/*) +foreach(f ${files}) + get_filename_component(filename ${f} NAME) + list(APPEND _LINPHONEAPP_RC_FILES data/emoji/icons/${filename}) +endforeach() + #file(GLOB files LIST_DIRECTORIES false languages/*) #foreach(f ${files}) # get_filename_component(filename ${f} NAME) diff --git a/Linphone/data/emoji/emoji.json b/Linphone/data/emoji/emoji.json new file mode 100644 index 00000000..8c99813d --- /dev/null +++ b/Linphone/data/emoji/emoji.json @@ -0,0 +1,21845 @@ +{ + "Smileys & Emotion": [ + { + "code": "1f600", + "char": "๐Ÿ˜€", + "name": "grinning face", + "keywords": [ + "face", + "grinning face", + "smile", + "happy" + ] + }, + { + "code": "1f603", + "char": "๐Ÿ˜ƒ", + "name": "grinning face with big eyes", + "keywords": [ + "face", + "mouth", + "open", + "smile", + "grinning face with big eyes", + "happy" + ] + }, + { + "code": "1f604", + "char": "๐Ÿ˜„", + "name": "grinning face with smiling eyes", + "keywords": [ + "eye", + "face", + "mouth", + "open", + "smile", + "grinning face with smiling eyes", + "happy" + ] + }, + { + "code": "1f601", + "char": "๐Ÿ˜", + "name": "beaming face with smiling eyes", + "keywords": [ + "eye", + "face", + "grin", + "smile", + "beaming face with smiling eyes", + "happy" + ] + }, + { + "code": "1f606", + "char": "๐Ÿ˜†", + "name": "grinning squinting face", + "keywords": [ + "face", + "laugh", + "mouth", + "satisfied", + "smile", + "grinning squinting face", + "lol", + "happy" + ] + }, + { + "code": "1f605", + "char": "๐Ÿ˜…", + "name": "grinning face with sweat", + "keywords": [ + "cold", + "face", + "open", + "smile", + "sweat", + "grinning face with sweat", + "happy" + ] + }, + { + "code": "1f923", + "char": "๐Ÿคฃ", + "name": "rolling on the floor laughing", + "keywords": [ + "face", + "floor", + "laugh", + "rofl", + "rotfl", + "rolling on the floor laughing", + "lol", + "happy" + ] + }, + { + "code": "1f602", + "char": "๐Ÿ˜‚", + "name": "face with tears of joy", + "keywords": [ + "face with tears of joy", + "joy", + "laugh", + "tear", + "lol", + "happy" + ] + }, + { + "code": "1f642", + "char": "๐Ÿ™‚", + "name": "slightly smiling face", + "keywords": [ + "face", + "smile", + "slightly smiling face" + ] + }, + { + "code": "1f643", + "char": "๐Ÿ™ƒ", + "name": "upside-down face", + "keywords": [ + "face", + "upside-down", + "smile" + ] + }, + { + "code": "1f609", + "char": "๐Ÿ˜‰", + "name": "winking face", + "keywords": [ + "face", + "winking face" + ] + }, + { + "code": "1f60a", + "char": "๐Ÿ˜Š", + "name": "smiling face with smiling eyes", + "keywords": [ + "blush", + "eye", + "face", + "smile", + "smiling face with smiling eyes" + ] + }, + { + "code": "1f607", + "char": "๐Ÿ˜‡", + "name": "smiling face with halo", + "keywords": [ + "angel", + "face", + "fantasy", + "halo", + "innocent", + "smiling face with halo", + "smile" + ] + }, + { + "code": "1f970", + "char": "๐Ÿฅฐ", + "name": "smiling face with hearts", + "keywords": [ + "adore", + "crush", + "hearts", + "in love", + "smiling face with hearts", + "smile" + ] + }, + { + "code": "1f60d", + "char": "๐Ÿ˜", + "name": "smiling face with heart-eyes", + "keywords": [ + "eyes", + "face", + "hearts", + "love", + "smile", + "smiling face with heart-eyes" + ] + }, + { + "code": "1f929", + "char": "๐Ÿคฉ", + "name": "star-struck", + "keywords": [ + "eyes", + "face", + "grinning", + "star-struck", + "starry-eyed", + "smile" + ] + }, + { + "code": "1f618", + "char": "๐Ÿ˜˜", + "name": "face blowing a kiss", + "keywords": [ + "face", + "heart", + "kiss", + "face blowing a kiss" + ] + }, + { + "code": "1f617", + "char": "๐Ÿ˜—", + "name": "kissing face", + "keywords": [ + "face", + "kissing face" + ] + }, + { + "code": "263a", + "char": "โ˜บ", + "name": "smiling face", + "keywords": [ + "face", + "outlined", + "relaxed", + "smile", + "smiling face" + ] + }, + { + "code": "1f61a", + "char": "๐Ÿ˜š", + "name": "kissing face with closed eyes", + "keywords": [ + "closed", + "eye", + "face", + "kissing face with closed eyes" + ] + }, + { + "code": "1f619", + "char": "๐Ÿ˜™", + "name": "kissing face with smiling eyes", + "keywords": [ + "eye", + "face", + "kissing face with smiling eyes", + "smile" + ] + }, + { + "code": "1f972", + "char": "๐Ÿฅฒ", + "name": "smiling face with tear", + "keywords": [ + "grateful", + "proud", + "relieved", + "smiling face with tear", + "smile", + "tear", + "touched" + ] + }, + { + "code": "1f60b", + "char": "๐Ÿ˜‹", + "name": "face savoring food", + "keywords": [ + "delicious", + "face savoring food", + "savouring", + "smile", + "um", + "yum" + ] + }, + { + "code": "1f61b", + "char": "๐Ÿ˜›", + "name": "face with tongue", + "keywords": [ + "face with tongue", + "tongue" + ] + }, + { + "code": "1f61c", + "char": "๐Ÿ˜œ", + "name": "winking face with tongue", + "keywords": [ + "eye", + "face", + "joke", + "tongue", + "winking face with tongue" + ] + }, + { + "code": "1f92a", + "char": "๐Ÿคช", + "name": "zany face", + "keywords": [ + "eye", + "goofy", + "large", + "small", + "zany face" + ] + }, + { + "code": "1f61d", + "char": "๐Ÿ˜", + "name": "squinting face with tongue", + "keywords": [ + "eye", + "face", + "horrible", + "taste", + "tongue", + "squinting face with tongue" + ] + }, + { + "code": "1f911", + "char": "๐Ÿค‘", + "name": "money-mouth face", + "keywords": [ + "face", + "money-mouth face", + "mouth" + ] + }, + { + "code": "1f917", + "char": "๐Ÿค—", + "name": "hugging face", + "keywords": [ + "face", + "hugging face" + ] + }, + { + "code": "1f92d", + "char": "๐Ÿคญ", + "name": "face with hand over mouth", + "keywords": [ + "face with hand over mouth", + "whoops", + "shock", + "sudden realization", + "surprise" + ] + }, + { + "code": "1f92b", + "char": "๐Ÿคซ", + "name": "shushing face", + "keywords": [ + "quiet", + "shushing face" + ] + }, + { + "code": "1f914", + "char": "๐Ÿค”", + "name": "thinking face", + "keywords": [ + "face", + "thinking face" + ] + }, + { + "code": "1f910", + "char": "๐Ÿค", + "name": "zipper-mouth face", + "keywords": [ + "face", + "mouth", + "zipper-mouth face" + ] + }, + { + "code": "1f928", + "char": "๐Ÿคจ", + "name": "face with raised eyebrow", + "keywords": [ + "distrust", + "face with raised eyebrow", + "skeptic", + "disapproval", + "disbelief", + "mild surprise", + "scepticism" + ] + }, + { + "code": "1f610", + "char": "๐Ÿ˜", + "name": "neutral face", + "keywords": [ + "deadpan", + "face", + "neutral face", + "poker", + "meh" + ] + }, + { + "code": "1f611", + "char": "๐Ÿ˜‘", + "name": "expressionless face", + "keywords": [ + "expressionless face", + "face", + "inexpressive", + "unexpressive", + "meh" + ] + }, + { + "code": "1f636", + "char": "๐Ÿ˜ถ", + "name": "face without mouth", + "keywords": [ + "face without mouth", + "mouth", + "quiet", + "silent" + ] + }, + { + "code": "1f60f", + "char": "๐Ÿ˜", + "name": "smirking face", + "keywords": [ + "face", + "smirking face" + ] + }, + { + "code": "1f612", + "char": "๐Ÿ˜’", + "name": "unamused face", + "keywords": [ + "face", + "unamused face", + "unhappy" + ] + }, + { + "code": "1f644", + "char": "๐Ÿ™„", + "name": "face with rolling eyes", + "keywords": [ + "eyes", + "face with rolling eyes", + "rolling", + "eyeroll" + ] + }, + { + "code": "1f62c", + "char": "๐Ÿ˜ฌ", + "name": "grimacing face", + "keywords": [ + "face", + "grimace face" + ] + }, + { + "code": "1f925", + "char": "๐Ÿคฅ", + "name": "lying face", + "keywords": [ + "face", + "lie", + "pinocchio", + "lying face" + ] + }, + { + "code": "1f60c", + "char": "๐Ÿ˜Œ", + "name": "relieved face", + "keywords": [ + "face", + "relieved face" + ] + }, + { + "code": "1f614", + "char": "๐Ÿ˜”", + "name": "pensive face", + "keywords": [ + "dejected", + "face", + "pensive face", + "unhappy", + "sad" + ] + }, + { + "code": "1f62a", + "char": "๐Ÿ˜ช", + "name": "sleepy face", + "keywords": [ + "face", + "sleepy face" + ] + }, + { + "code": "1f924", + "char": "๐Ÿคค", + "name": "drooling face", + "keywords": [ + "drooling face", + "face" + ] + }, + { + "code": "1f634", + "char": "๐Ÿ˜ด", + "name": "sleeping face", + "keywords": [ + "face", + "sleeping face", + "zzz" + ] + }, + { + "code": "1f637", + "char": "๐Ÿ˜ท", + "name": "face with medical mask", + "keywords": [ + "cold", + "doctor", + "face with medical mask", + "mask", + "sick" + ] + }, + { + "code": "1f912", + "char": "๐Ÿค’", + "name": "face with thermometer", + "keywords": [ + "face with thermometer", + "ill", + "sick", + "thermometer" + ] + }, + { + "code": "1f915", + "char": "๐Ÿค•", + "name": "face with head-bandage", + "keywords": [ + "bandage", + "face with head-bandage", + "hurt", + "injury" + ] + }, + { + "code": "1f922", + "char": "๐Ÿคข", + "name": "nauseated face", + "keywords": [ + "face", + "nauseated face", + "vomit" + ] + }, + { + "code": "1f92e", + "char": "๐Ÿคฎ", + "name": "face vomiting", + "keywords": [ + "face vomiting", + "puke", + "sick", + "vomit" + ] + }, + { + "code": "1f927", + "char": "๐Ÿคง", + "name": "sneezing face", + "keywords": [ + "face", + "gesundheit", + "sneeze", + "sneezing face" + ] + }, + { + "code": "1f975", + "char": "๐Ÿฅต", + "name": "hot face", + "keywords": [ + "feverish", + "heat stroke", + "hot face", + "red-faced", + "sweating" + ] + }, + { + "code": "1f976", + "char": "๐Ÿฅถ", + "name": "cold face", + "keywords": [ + "blue-faced", + "cold face", + "freezing", + "frostbite", + "icicles" + ] + }, + { + "code": "1f974", + "char": "๐Ÿฅด", + "name": "woozy face", + "keywords": [ + "dizzy", + "intoxicated", + "tipsy", + "uneven eyes", + "wavy mouth", + "woozy face" + ] + }, + { + "code": "1f635", + "char": "๐Ÿ˜ต", + "name": "knocked-out face", + "keywords": [ + "dizzy", + "face", + "dead", + "knocked-out face" + ] + }, + { + "code": "1f92f", + "char": "๐Ÿคฏ", + "name": "exploding head", + "keywords": [ + "exploding head", + "mind blow", + "shocked" + ] + }, + { + "code": "1f920", + "char": "๐Ÿค ", + "name": "cowboy hat face", + "keywords": [ + "cowboy hat face", + "cowgirl", + "face", + "hat" + ] + }, + { + "code": "1f973", + "char": "๐Ÿฅณ", + "name": "partying face", + "keywords": [ + "celebration", + "hat", + "horn", + "partying face", + "face" + ] + }, + { + "code": "1f978", + "char": "๐Ÿฅธ", + "name": "disguised face", + "keywords": [ + "disguised face", + "face", + "glasses", + "incognito", + "nose" + ] + }, + { + "code": "1f60e", + "char": "๐Ÿ˜Ž", + "name": "smiling face with sunglasses", + "keywords": [ + "bright", + "cool", + "eyewear", + "face", + "smile", + "sunglasses", + "smiling face with sunglasses" + ] + }, + { + "code": "1f913", + "char": "๐Ÿค“", + "name": "nerd face", + "keywords": [ + "face", + "geek", + "nerd face" + ] + }, + { + "code": "1f9d0", + "char": "๐Ÿง", + "name": "face with monocle", + "keywords": [ + "face with monocle", + "stuffy", + "wealthy", + "monocle" + ] + }, + { + "code": "1f615", + "char": "๐Ÿ˜•", + "name": "confused face", + "keywords": [ + "confused face", + "face", + "meh" + ] + }, + { + "code": "1f61f", + "char": "๐Ÿ˜Ÿ", + "name": "worried face", + "keywords": [ + "face", + "worried face" + ] + }, + { + "code": "1f641", + "char": "๐Ÿ™", + "name": "slightly frowning face", + "keywords": [ + "face", + "frowning", + "slightly frowning face" + ] + }, + { + "code": "2639", + "char": "โ˜น", + "name": "frowning face", + "keywords": [ + "face", + "frowning face" + ] + }, + { + "code": "1f62e", + "char": "๐Ÿ˜ฎ", + "name": "face with open mouth", + "keywords": [ + "face with open mouth", + "mouth", + "open", + "sympathy" + ] + }, + { + "code": "1f62f", + "char": "๐Ÿ˜ฏ", + "name": "hushed face", + "keywords": [ + "face", + "hushed face", + "stunned", + "surprised" + ] + }, + { + "code": "1f632", + "char": "๐Ÿ˜ฒ", + "name": "astonished face", + "keywords": [ + "astonished face", + "face", + "shocked", + "totally" + ] + }, + { + "code": "1f633", + "char": "๐Ÿ˜ณ", + "name": "flushed face", + "keywords": [ + "dazed", + "face", + "flushed face" + ] + }, + { + "code": "1f97a", + "char": "๐Ÿฅบ", + "name": "pleading face", + "keywords": [ + "begging", + "mercy", + "pleading face", + "face", + "puppy eyes" + ] + }, + { + "code": "1f626", + "char": "๐Ÿ˜ฆ", + "name": "frowning face with open mouth", + "keywords": [ + "face", + "frowning face with open mouth", + "mouth", + "open" + ] + }, + { + "code": "1f627", + "char": "๐Ÿ˜ง", + "name": "anguished face", + "keywords": [ + "anguished face", + "face" + ] + }, + { + "code": "1f628", + "char": "๐Ÿ˜จ", + "name": "fearful face", + "keywords": [ + "face", + "fearful face", + "scared" + ] + }, + { + "code": "1f630", + "char": "๐Ÿ˜ฐ", + "name": "anxious face with sweat", + "keywords": [ + "blue", + "cold", + "face", + "rushed", + "sweat", + "anxious face with sweat" + ] + }, + { + "code": "1f625", + "char": "๐Ÿ˜ฅ", + "name": "sad but relieved face", + "keywords": [ + "disappointed", + "face", + "relieved", + "whew", + "sad but relieved face" + ] + }, + { + "code": "1f622", + "char": "๐Ÿ˜ข", + "name": "crying face", + "keywords": [ + "crying face", + "face", + "sad", + "tear" + ] + }, + { + "code": "1f62d", + "char": "๐Ÿ˜ญ", + "name": "loudly crying face", + "keywords": [ + "cry", + "face", + "sad", + "sob", + "tear", + "loudly crying face" + ] + }, + { + "code": "1f631", + "char": "๐Ÿ˜ฑ", + "name": "face screaming in fear", + "keywords": [ + "face screaming in fear", + "fearful", + "munch", + "scared", + "scream" + ] + }, + { + "code": "1f616", + "char": "๐Ÿ˜–", + "name": "confounded face", + "keywords": [ + "confounded face", + "face" + ] + }, + { + "code": "1f623", + "char": "๐Ÿ˜ฃ", + "name": "persevering face", + "keywords": [ + "face", + "persevere", + "persevering face" + ] + }, + { + "code": "1f61e", + "char": "๐Ÿ˜ž", + "name": "disappointed face", + "keywords": [ + "disappointed face", + "face" + ] + }, + { + "code": "1f613", + "char": "๐Ÿ˜“", + "name": "downcast face with sweat", + "keywords": [ + "cold", + "face", + "sweat", + "downcast face with sweat" + ] + }, + { + "code": "1f629", + "char": "๐Ÿ˜ฉ", + "name": "weary face", + "keywords": [ + "face", + "tired", + "weary face" + ] + }, + { + "code": "1f62b", + "char": "๐Ÿ˜ซ", + "name": "tired face", + "keywords": [ + "face", + "tired face" + ] + }, + { + "code": "1f971", + "char": "๐Ÿฅฑ", + "name": "yawning face", + "keywords": [ + "bored", + "tired", + "yawning face" + ] + }, + { + "code": "1f624", + "char": "๐Ÿ˜ค", + "name": "face with steam from nose", + "keywords": [ + "face with steam from nose", + "triumph", + "won", + "angry" + ] + }, + { + "code": "1f621", + "char": "๐Ÿ˜ก", + "name": "pouting face", + "keywords": [ + "angry", + "face", + "mad", + "pouting face", + "rage", + "red" + ] + }, + { + "code": "1f620", + "char": "๐Ÿ˜ ", + "name": "angry face", + "keywords": [ + "angry face", + "face", + "mad" + ] + }, + { + "code": "1f92c", + "char": "๐Ÿคฌ", + "name": "face with symbols on mouth", + "keywords": [ + "face with symbols on mouth", + "swearing", + "cursing", + "angry", + "mad" + ] + }, + { + "code": "1f608", + "char": "๐Ÿ˜ˆ", + "name": "smiling face with horns", + "keywords": [ + "face", + "fairy tale", + "fantasy", + "horns", + "smile", + "smiling face with horns", + "demon", + "devil" + ] + }, + { + "code": "1f47f", + "char": "๐Ÿ‘ฟ", + "name": "angry face with horns", + "keywords": [ + "demon", + "devil", + "face", + "fairy tale", + "fantasy", + "imp", + "angry face with horns", + "horns" + ] + }, + { + "code": "1f480", + "char": "๐Ÿ’€", + "name": "skull", + "keywords": [ + "death", + "face", + "fairy tale", + "monster", + "skull" + ] + }, + { + "code": "2620", + "char": "โ˜ ", + "name": "skull and crossbones", + "keywords": [ + "crossbones", + "death", + "face", + "monster", + "skull and crossbones" + ] + }, + { + "code": "1f4a9", + "char": "๐Ÿ’ฉ", + "name": "pile of poo", + "keywords": [ + "dung", + "face", + "monster", + "poo", + "poop", + "pile of poo" + ] + }, + { + "code": "1f921", + "char": "๐Ÿคก", + "name": "clown face", + "keywords": [ + "clown face", + "face" + ] + }, + { + "code": "1f479", + "char": "๐Ÿ‘น", + "name": "ogre", + "keywords": [ + "creature", + "face", + "fairy tale", + "fantasy", + "japanese", + "monster", + "ogre", + "troll" + ] + }, + { + "code": "1f47a", + "char": "๐Ÿ‘บ", + "name": "goblin", + "keywords": [ + "creature", + "face", + "fairy tale", + "fantasy", + "goblin", + "japanese", + "monster" + ] + }, + { + "code": "1f47b", + "char": "๐Ÿ‘ป", + "name": "ghost", + "keywords": [ + "creature", + "face", + "fairy tale", + "fantasy", + "ghost", + "monster" + ] + }, + { + "code": "1f47d", + "char": "๐Ÿ‘ฝ", + "name": "alien", + "keywords": [ + "alien", + "creature", + "extraterrestrial", + "face", + "fantasy", + "ufo", + "space" + ] + }, + { + "code": "1f47e", + "char": "๐Ÿ‘พ", + "name": "alien monster", + "keywords": [ + "alien monster", + "creature", + "extraterrestrial", + "face", + "monster", + "space", + "ufo" + ] + }, + { + "code": "1f916", + "char": "๐Ÿค–", + "name": "robot", + "keywords": [ + "face", + "monster", + "robot" + ] + }, + { + "code": "1f63a", + "char": "๐Ÿ˜บ", + "name": "grinning cat", + "keywords": [ + "cat", + "face", + "mouth", + "open", + "smile", + "grinning cat", + "happy" + ] + }, + { + "code": "1f638", + "char": "๐Ÿ˜ธ", + "name": "grinning cat with smiling eyes", + "keywords": [ + "cat", + "eye", + "face", + "grinning car with smiling eyes", + "smile", + "happy" + ] + }, + { + "code": "1f639", + "char": "๐Ÿ˜น", + "name": "cat with tears of joy", + "keywords": [ + "cat with tears of joy", + "face", + "joy", + "tear", + "lol", + "happy", + "laughing" + ] + }, + { + "code": "1f63b", + "char": "๐Ÿ˜ป", + "name": "smiling cat with heart-eyes", + "keywords": [ + "cat", + "eye", + "face", + "heart", + "love", + "smile", + "smiling cat with heart-eyes", + "happy" + ] + }, + { + "code": "1f63c", + "char": "๐Ÿ˜ผ", + "name": "cat with wry smile", + "keywords": [ + "cat with wry smile", + "face", + "ironic", + "smile", + "wry" + ] + }, + { + "code": "1f63d", + "char": "๐Ÿ˜ฝ", + "name": "kissing cat", + "keywords": [ + "cat", + "eye", + "face", + "kissing cat" + ] + }, + { + "code": "1f640", + "char": "๐Ÿ™€", + "name": "weary cat", + "keywords": [ + "cat", + "face", + "oh", + "surprised", + "weary cat" + ] + }, + { + "code": "1f63f", + "char": "๐Ÿ˜ฟ", + "name": "crying cat", + "keywords": [ + "cat", + "crying cat", + "face", + "sad", + "tear", + "unhappy" + ] + }, + { + "code": "1f63e", + "char": "๐Ÿ˜พ", + "name": "pouting cat", + "keywords": [ + "cat", + "face", + "pouting cat" + ] + }, + { + "code": "1f648", + "char": "๐Ÿ™ˆ", + "name": "see-no-evil monkey", + "keywords": [ + "evil", + "face", + "forbidden", + "monkey", + "no", + "not", + "prohibited", + "see-no-evil monkey" + ] + }, + { + "code": "1f649", + "char": "๐Ÿ™‰", + "name": "hear-no-evil monkey", + "keywords": [ + "evil", + "face", + "forbidden", + "hear-no-evil monkey", + "monkey", + "no", + "not", + "prohibited" + ] + }, + { + "code": "1f64a", + "char": "๐Ÿ™Š", + "name": "speak-no-evil monkey", + "keywords": [ + "evil", + "face", + "forbidden", + "monkey", + "no", + "not", + "prohibited", + "speak-no-evil monkey" + ] + }, + { + "code": "1f48b", + "char": "๐Ÿ’‹", + "name": "kiss mark", + "keywords": [ + "kiss mark", + "lips", + "mark" + ] + }, + { + "code": "1f48c", + "char": "๐Ÿ’Œ", + "name": "love letter", + "keywords": [ + "heart", + "letter", + "love letter", + "mail" + ] + }, + { + "code": "1f498", + "char": "๐Ÿ’˜", + "name": "heart with arrow", + "keywords": [ + "arrow", + "cupid", + "heart with arrow" + ] + }, + { + "code": "1f49d", + "char": "๐Ÿ’", + "name": "heart with ribbon", + "keywords": [ + "heart with ribbon", + "ribbon", + "valentine" + ] + }, + { + "code": "1f496", + "char": "๐Ÿ’–", + "name": "sparkling heart", + "keywords": [ + "excited", + "heart", + "sparkle", + "sparkling heart" + ] + }, + { + "code": "1f497", + "char": "๐Ÿ’—", + "name": "growing heart", + "keywords": [ + "excited", + "growing heart", + "heart", + "pulse", + "nervous" + ] + }, + { + "code": "1f493", + "char": "๐Ÿ’“", + "name": "beating heart", + "keywords": [ + "beating heart", + "heart", + "heartbeat", + "pulsating" + ] + }, + { + "code": "1f49e", + "char": "๐Ÿ’ž", + "name": "revolving hearts", + "keywords": [ + "hearts", + "revolving hearts" + ] + }, + { + "code": "1f495", + "char": "๐Ÿ’•", + "name": "two hearts", + "keywords": [ + "hearts", + "love", + "two hearts" + ] + }, + { + "code": "1f49f", + "char": "๐Ÿ’Ÿ", + "name": "heart decoration", + "keywords": [ + "heart decoration", + "decoration" + ] + }, + { + "code": "2763", + "char": "โฃ", + "name": "heart exclamation", + "keywords": [ + "exclamation", + "heart exclamation", + "mark", + "punctuation" + ] + }, + { + "code": "1f494", + "char": "๐Ÿ’”", + "name": "broken heart", + "keywords": [ + "break", + "broken heart", + "heart" + ] + }, + { + "code": "2764", + "char": "โค", + "name": "red heart", + "keywords": [ + "heart", + "red heart" + ] + }, + { + "code": "1f9e1", + "char": "๐Ÿงก", + "name": "orange heart", + "keywords": [ + "orange heart", + "heart" + ] + }, + { + "code": "1f49b", + "char": "๐Ÿ’›", + "name": "yellow heart", + "keywords": [ + "heart", + "yellow heart" + ] + }, + { + "code": "1f49a", + "char": "๐Ÿ’š", + "name": "green heart", + "keywords": [ + "green heart", + "heart" + ] + }, + { + "code": "1f499", + "char": "๐Ÿ’™", + "name": "blue heart", + "keywords": [ + "blue heart", + "heart" + ] + }, + { + "code": "1f49c", + "char": "๐Ÿ’œ", + "name": "purple heart", + "keywords": [ + "heart", + "purple heart" + ] + }, + { + "code": "1f90e", + "char": "๐ŸคŽ", + "name": "brown heart", + "keywords": [ + "brown heart", + "heart" + ] + }, + { + "code": "1f5a4", + "char": "๐Ÿ–ค", + "name": "black heart", + "keywords": [ + "black heart", + "evil", + "heart", + "wicked" + ] + }, + { + "code": "1f90d", + "char": "๐Ÿค", + "name": "white heart", + "keywords": [ + "white heart", + "heart" + ] + }, + { + "code": "1f4af", + "char": "๐Ÿ’ฏ", + "name": "hundred points", + "keywords": [ + "100", + "full", + "hundred points", + "score" + ] + }, + { + "code": "1f4a2", + "char": "๐Ÿ’ข", + "name": "anger symbol", + "keywords": [ + "angry", + "comic", + "mad", + "anger symbol" + ] + }, + { + "code": "1f4a5", + "char": "๐Ÿ’ฅ", + "name": "collision", + "keywords": [ + "boom", + "collision", + "comic" + ] + }, + { + "code": "1f4ab", + "char": "๐Ÿ’ซ", + "name": "dizzy", + "keywords": [ + "comic", + "dizzy", + "star" + ] + }, + { + "code": "1f4a6", + "char": "๐Ÿ’ฆ", + "name": "sweat droplets", + "keywords": [ + "comic", + "splashing", + "sweat droplets" + ] + }, + { + "code": "1f4a8", + "char": "๐Ÿ’จ", + "name": "dashing away", + "keywords": [ + "comic", + "dash", + "running", + "dashing away" + ] + }, + { + "code": "1f573", + "char": "๐Ÿ•ณ", + "name": "hole", + "keywords": [ + "hole" + ] + }, + { + "code": "1f4a3", + "char": "๐Ÿ’ฃ", + "name": "bomb", + "keywords": [ + "bomb", + "comic" + ] + }, + { + "code": "1f4ac", + "char": "๐Ÿ’ฌ", + "name": "speech balloon", + "keywords": [ + "balloon", + "bubble", + "comic", + "dialog", + "speech balloon" + ] + }, + { + "code": "1f441-200d-1f5e8", + "char": "๐Ÿ‘โ€๐Ÿ—จ", + "name": "eye in speech bubble", + "keywords": [ + "bubble", + "eye in speech bubble", + "speech", + "witness" + ] + }, + { + "code": "1f5e8", + "char": "๐Ÿ—จ", + "name": "left speech bubble", + "keywords": [ + "dialog", + "speech", + "left speech bubble" + ] + }, + { + "code": "1f5ef", + "char": "๐Ÿ—ฏ", + "name": "right anger bubble", + "keywords": [ + "angry", + "balloon", + "bubble", + "mad", + "right anger bubble" + ] + }, + { + "code": "1f4ad", + "char": "๐Ÿ’ญ", + "name": "thought balloon", + "keywords": [ + "balloon", + "bubble", + "comic", + "thought balloon" + ] + }, + { + "code": "1f4a4", + "char": "๐Ÿ’ค", + "name": "zzz", + "keywords": [ + "comic", + "sleep", + "zzz" + ] + } + ], + "People & Body": [ + { + "code": "1f44b", + "char": "๐Ÿ‘‹", + "name": "waving hand", + "types": [ + "1f44b-1f3fb", + "1f44b-1f3fc", + "1f44b-1f3fd", + "1f44b-1f3fe", + "1f44b-1f3ff" + ], + "keywords": [ + "hand", + "wave", + "waving hand" + ] + }, + { + "code": "1f91a", + "char": "๐Ÿคš", + "name": "raised back of hand", + "types": [ + "1f91a-1f3fb", + "1f91a-1f3fc", + "1f91a-1f3fd", + "1f91a-1f3fe", + "1f91a-1f3ff" + ], + "keywords": [ + "backhand", + "raised back of hand" + ] + }, + { + "code": "1f590", + "char": "๐Ÿ–", + "name": "hand with fingers splayed", + "types": [ + "1f590-1f3fb", + "1f590-1f3fc", + "1f590-1f3fd", + "1f590-1f3fe", + "1f590-1f3ff" + ], + "keywords": [ + "finger", + "hand with fingers splayed", + "splayed" + ] + }, + { + "code": "270b", + "char": "โœ‹", + "name": "raised hand", + "types": [ + "270b-1f3fb", + "270b-1f3fc", + "270b-1f3fd", + "270b-1f3fe", + "270b-1f3ff" + ], + "keywords": [ + "raised hand", + "hand", + "high 5", + "high five" + ] + }, + { + "code": "1f596", + "char": "๐Ÿ––", + "name": "vulcan salute", + "types": [ + "1f596-1f3fb", + "1f596-1f3fc", + "1f596-1f3fd", + "1f596-1f3fe", + "1f596-1f3ff" + ], + "keywords": [ + "finger", + "hand", + "spock", + "vulcan salute" + ] + }, + { + "code": "1f44c", + "char": "๐Ÿ‘Œ", + "name": "OK hand", + "types": [ + "1f44c-1f3fb", + "1f44c-1f3fc", + "1f44c-1f3fd", + "1f44c-1f3fe", + "1f44c-1f3ff" + ], + "keywords": [ + "hand", + "ok hand" + ] + }, + { + "code": "1f90c", + "char": "๐ŸคŒ", + "name": "pinched fingers", + "types": [ + "1f90c-1f3fb", + "1f90c-1f3fc", + "1f90c-1f3fd", + "1f90c-1f3fe", + "1f90c-1f3ff" + ], + "keywords": [ + "fingers", + "hand gesture", + "interrogation", + "pinched fingers", + "sarcastic" + ] + }, + { + "code": "1f90f", + "char": "๐Ÿค", + "name": "pinching hand", + "types": [ + "1f90f-1f3fb", + "1f90f-1f3fc", + "1f90f-1f3fd", + "1f90f-1f3fe", + "1f90f-1f3ff" + ], + "keywords": [ + "pinching hand", + "small amount" + ] + }, + { + "code": "270c", + "char": "โœŒ", + "name": "victory hand", + "types": [ + "270c-1f3fb", + "270c-1f3fc", + "270c-1f3fd", + "270c-1f3fe", + "270c-1f3ff" + ], + "keywords": [ + "hand", + "v", + "victory hand" + ] + }, + { + "code": "1f91e", + "char": "๐Ÿคž", + "name": "crossed fingers", + "types": [ + "1f91e-1f3fb", + "1f91e-1f3fc", + "1f91e-1f3fd", + "1f91e-1f3fe", + "1f91e-1f3ff" + ], + "keywords": [ + "crossed fingers", + "finger", + "hand", + "luck" + ] + }, + { + "code": "1f91f", + "char": "๐ŸคŸ", + "name": "love-you gesture", + "types": [ + "1f91f-1f3fb", + "1f91f-1f3fc", + "1f91f-1f3fd", + "1f91f-1f3fe", + "1f91f-1f3ff" + ], + "keywords": [ + "hand", + "ily", + "love-you gesture" + ] + }, + { + "code": "1f918", + "char": "๐Ÿค˜", + "name": "sign of the horns", + "types": [ + "1f918-1f3fb", + "1f918-1f3fc", + "1f918-1f3fd", + "1f918-1f3fe", + "1f918-1f3ff" + ], + "keywords": [ + "sign of the horns", + "finger", + "hand", + "horns", + "rock-on" + ] + }, + { + "code": "1f919", + "char": "๐Ÿค™", + "name": "call me hand", + "types": [ + "1f919-1f3fb", + "1f919-1f3fc", + "1f919-1f3fd", + "1f919-1f3fe", + "1f919-1f3ff" + ], + "keywords": [ + "call me hand", + "hand" + ] + }, + { + "code": "1f448", + "char": "๐Ÿ‘ˆ", + "name": "backhand index pointing left", + "types": [ + "1f448-1f3fb", + "1f448-1f3fc", + "1f448-1f3fd", + "1f448-1f3fe", + "1f448-1f3ff" + ], + "keywords": [ + "backhand index pointing left", + "finger", + "hand", + "index", + "point" + ] + }, + { + "code": "1f449", + "char": "๐Ÿ‘‰", + "name": "backhand index pointing right", + "types": [ + "1f449-1f3fb", + "1f449-1f3fc", + "1f449-1f3fd", + "1f449-1f3fe", + "1f449-1f3ff" + ], + "keywords": [ + "backhand index pointing right", + "finger", + "hand", + "index", + "point" + ] + }, + { + "code": "1f446", + "char": "๐Ÿ‘†", + "name": "backhand index pointing up", + "types": [ + "1f446-1f3fb", + "1f446-1f3fc", + "1f446-1f3fd", + "1f446-1f3fe", + "1f446-1f3ff" + ], + "keywords": [ + "backhand index pointing up", + "finger", + "hand", + "index", + "point", + "up" + ] + }, + { + "code": "1f595", + "char": "๐Ÿ–•", + "name": "middle finger", + "types": [ + "1f595-1f3fb", + "1f595-1f3fc", + "1f595-1f3fd", + "1f595-1f3fe", + "1f595-1f3ff" + ], + "keywords": [ + "finger", + "hand", + "middle finger", + "fuck you" + ] + }, + { + "code": "1f447", + "char": "๐Ÿ‘‡", + "name": "backhand index pointing down", + "types": [ + "1f447-1f3fb", + "1f447-1f3fc", + "1f447-1f3fd", + "1f447-1f3fe", + "1f447-1f3ff" + ], + "keywords": [ + "backhand index pointing down", + "body", + "down", + "finger", + "hand", + "index", + "point" + ] + }, + { + "code": "261d", + "char": "โ˜", + "name": "index pointing up", + "types": [ + "261d-1f3fb", + "261d-1f3fc", + "261d-1f3fd", + "261d-1f3fe", + "261d-1f3ff" + ], + "keywords": [ + "finger", + "hand", + "index pointing up", + "point", + "up" + ] + }, + { + "code": "1f44d", + "char": "๐Ÿ‘", + "name": "thumbs up", + "types": [ + "1f44d-1f3fb", + "1f44d-1f3fc", + "1f44d-1f3fd", + "1f44d-1f3fe", + "1f44d-1f3ff" + ], + "keywords": [ + "+1", + "hand", + "thumbs up", + "up" + ] + }, + { + "code": "1f44e", + "char": "๐Ÿ‘Ž", + "name": "thumbs down", + "types": [ + "1f44e-1f3fb", + "1f44e-1f3fc", + "1f44e-1f3fd", + "1f44e-1f3fe", + "1f44e-1f3ff" + ], + "keywords": [ + "-1", + "down", + "hand", + "thumbs down" + ] + }, + { + "code": "270a", + "char": "โœŠ", + "name": "raised fist", + "types": [ + "270a-1f3fb", + "270a-1f3fc", + "270a-1f3fd", + "270a-1f3fe", + "270a-1f3ff" + ], + "keywords": [ + "clenched", + "fist", + "hand", + "punch", + "raised fist" + ] + }, + { + "code": "1f44a", + "char": "๐Ÿ‘Š", + "name": "oncoming fist", + "types": [ + "1f44a-1f3fb", + "1f44a-1f3fc", + "1f44a-1f3fd", + "1f44a-1f3fe", + "1f44a-1f3ff" + ], + "keywords": [ + "clenched", + "fist", + "hand", + "punch", + "oncoming fist" + ] + }, + { + "code": "1f91b", + "char": "๐Ÿค›", + "name": "left-facing fist", + "types": [ + "1f91b-1f3fb", + "1f91b-1f3fc", + "1f91b-1f3fd", + "1f91b-1f3fe", + "1f91b-1f3ff" + ], + "keywords": [ + "fist", + "leftwards", + "left-facing fist" + ] + }, + { + "code": "1f91c", + "char": "๐Ÿคœ", + "name": "right-facing fist", + "types": [ + "1f91c-1f3fb", + "1f91c-1f3fc", + "1f91c-1f3fd", + "1f91c-1f3fe", + "1f91c-1f3ff" + ], + "keywords": [ + "fist", + "rightwards", + "right-facing fist" + ] + }, + { + "code": "1f44f", + "char": "๐Ÿ‘", + "name": "clapping hands", + "types": [ + "1f44f-1f3fb", + "1f44f-1f3fc", + "1f44f-1f3fd", + "1f44f-1f3fe", + "1f44f-1f3ff" + ], + "keywords": [ + "clapping hands", + "hand" + ] + }, + { + "code": "1f64c", + "char": "๐Ÿ™Œ", + "name": "raising hands", + "types": [ + "1f64c-1f3fb", + "1f64c-1f3fc", + "1f64c-1f3fd", + "1f64c-1f3fe", + "1f64c-1f3ff" + ], + "keywords": [ + "celebration", + "gesture", + "hand", + "hooray", + "raised", + "raising hands" + ] + }, + { + "code": "1f450", + "char": "๐Ÿ‘", + "name": "open hands", + "types": [ + "1f450-1f3fb", + "1f450-1f3fc", + "1f450-1f3fd", + "1f450-1f3fe", + "1f450-1f3ff" + ], + "keywords": [ + "hand", + "open hands" + ] + }, + { + "code": "1f932", + "char": "๐Ÿคฒ", + "name": "palms up together", + "types": [ + "1f932-1f3fb", + "1f932-1f3fc", + "1f932-1f3fd", + "1f932-1f3fe", + "1f932-1f3ff" + ], + "keywords": [ + "palms up together", + "prayer", + "cupped hands" + ] + }, + { + "code": "1f91d", + "char": "๐Ÿค", + "name": "handshake", + "keywords": [ + "agreement", + "hand", + "handshake", + "meeting", + "shake" + ] + }, + { + "code": "1f64f", + "char": "๐Ÿ™", + "name": "folded hands", + "types": [ + "1f64f-1f3fb", + "1f64f-1f3fc", + "1f64f-1f3fd", + "1f64f-1f3fe", + "1f64f-1f3ff" + ], + "keywords": [ + "ask", + "folded hands", + "hand", + "please", + "pray", + "thanks", + "high 5", + "high five" + ] + }, + { + "code": "270d", + "char": "โœ", + "name": "writing hand", + "types": [ + "270d-1f3fb", + "270d-1f3fc", + "270d-1f3fd", + "270d-1f3fe", + "270d-1f3ff" + ], + "keywords": [ + "hand", + "write", + "writing hand" + ] + }, + { + "code": "1f485", + "char": "๐Ÿ’…", + "name": "nail polish", + "types": [ + "1f485-1f3fb", + "1f485-1f3fc", + "1f485-1f3fd", + "1f485-1f3fe", + "1f485-1f3ff" + ], + "keywords": [ + "care", + "cosmetics", + "manicure", + "nail polish", + "polish" + ] + }, + { + "code": "1f933", + "char": "๐Ÿคณ", + "name": "selfie", + "types": [ + "1f933-1f3fb", + "1f933-1f3fc", + "1f933-1f3fd", + "1f933-1f3fe", + "1f933-1f3ff" + ], + "keywords": [ + "camera", + "phone", + "selfie" + ] + }, + { + "code": "1f4aa", + "char": "๐Ÿ’ช", + "name": "flexed biceps", + "types": [ + "1f4aa-1f3fb", + "1f4aa-1f3fc", + "1f4aa-1f3fd", + "1f4aa-1f3fe", + "1f4aa-1f3ff" + ], + "keywords": [ + "biceps", + "comic", + "flexed biceps", + "muscle" + ] + }, + { + "code": "1f9be", + "char": "๐Ÿฆพ", + "name": "mechanical arm", + "keywords": [ + "accessibility", + "mechanical arm", + "arm", + "prosthetic" + ] + }, + { + "code": "1f9bf", + "char": "๐Ÿฆฟ", + "name": "mechanical leg", + "keywords": [ + "accessibility", + "mechanical leg", + "leg", + "prosthetic" + ] + }, + { + "code": "1f9b5", + "char": "๐Ÿฆต", + "name": "leg", + "types": [ + "1f9b5-1f3fb", + "1f9b5-1f3fc", + "1f9b5-1f3fd", + "1f9b5-1f3fe", + "1f9b5-1f3ff" + ], + "keywords": [ + "kick", + "leg", + "limb" + ] + }, + { + "code": "1f9b6", + "char": "๐Ÿฆถ", + "name": "foot", + "types": [ + "1f9b6-1f3fb", + "1f9b6-1f3fc", + "1f9b6-1f3fd", + "1f9b6-1f3fe", + "1f9b6-1f3ff" + ], + "keywords": [ + "foot", + "kick", + "stomp" + ] + }, + { + "code": "1f442", + "char": "๐Ÿ‘‚", + "name": "ear", + "types": [ + "1f442-1f3fb", + "1f442-1f3fc", + "1f442-1f3fd", + "1f442-1f3fe", + "1f442-1f3ff" + ], + "keywords": [ + "body", + "ear" + ] + }, + { + "code": "1f9bb", + "char": "๐Ÿฆป", + "name": "ear with hearing aid", + "types": [ + "1f9bb-1f3fb", + "1f9bb-1f3fc", + "1f9bb-1f3fd", + "1f9bb-1f3fe", + "1f9bb-1f3ff" + ], + "keywords": [ + "accessibility", + "ear with hearing aid", + "hard of hearing", + "hearing aid" + ] + }, + { + "code": "1f443", + "char": "๐Ÿ‘ƒ", + "name": "nose", + "types": [ + "1f443-1f3fb", + "1f443-1f3fc", + "1f443-1f3fd", + "1f443-1f3fe", + "1f443-1f3ff" + ], + "keywords": [ + "body", + "nose" + ] + }, + { + "code": "1f9e0", + "char": "๐Ÿง ", + "name": "brain", + "keywords": [ + "brain", + "intelligent" + ] + }, + { + "code": "1fac0", + "char": "๐Ÿซ€", + "name": "anatomical heart", + "keywords": [ + "anatomical heart", + "heart", + "cardiology", + "organ", + "pulse" + ] + }, + { + "code": "1fac1", + "char": "๐Ÿซ", + "name": "lungs", + "keywords": [ + "breath", + "exhalation", + "inhalation", + "lungs", + "organ", + "respiration" + ] + }, + { + "code": "1f9b7", + "char": "๐Ÿฆท", + "name": "tooth", + "keywords": [ + "dentist", + "tooth" + ] + }, + { + "code": "1f9b4", + "char": "๐Ÿฆด", + "name": "bone", + "keywords": [ + "bone", + "skeleton" + ] + }, + { + "code": "1f440", + "char": "๐Ÿ‘€", + "name": "eyes", + "keywords": [ + "face", + "eyes" + ] + }, + { + "code": "1f441", + "char": "๐Ÿ‘", + "name": "eye", + "keywords": [ + "body", + "eye" + ] + }, + { + "code": "1f445", + "char": "๐Ÿ‘…", + "name": "tongue", + "keywords": [ + "body", + "tongue" + ] + }, + { + "code": "1f444", + "char": "๐Ÿ‘„", + "name": "mouth", + "keywords": [ + "lips", + "mouth" + ] + }, + { + "code": "1f476", + "char": "๐Ÿ‘ถ", + "name": "baby", + "types": [ + "1f476-1f3fb", + "1f476-1f3fc", + "1f476-1f3fd", + "1f476-1f3fe", + "1f476-1f3ff" + ], + "keywords": [ + "baby", + "young" + ] + }, + { + "code": "1f9d2", + "char": "๐Ÿง’", + "name": "child", + "types": [ + "1f9d2-1f3fb", + "1f9d2-1f3fc", + "1f9d2-1f3fd", + "1f9d2-1f3fe", + "1f9d2-1f3ff" + ], + "keywords": [ + "child", + "gender-neutral", + "unspecified gender", + "young" + ] + }, + { + "code": "1f466", + "char": "๐Ÿ‘ฆ", + "name": "boy", + "types": [ + "1f466-1f3fb", + "1f466-1f3fc", + "1f466-1f3fd", + "1f466-1f3fe", + "1f466-1f3ff" + ], + "keywords": [ + "boy", + "young" + ] + }, + { + "code": "1f467", + "char": "๐Ÿ‘ง", + "name": "girl", + "types": [ + "1f467-1f3fb", + "1f467-1f3fc", + "1f467-1f3fd", + "1f467-1f3fe", + "1f467-1f3ff" + ], + "keywords": [ + "girl", + "virgo", + "zodiac", + "young" + ] + }, + { + "code": "1f9d1", + "char": "๐Ÿง‘", + "name": "person", + "types": [ + "1f9d1-1f3fb", + "1f9d1-1f3fc", + "1f9d1-1f3fd", + "1f9d1-1f3fe", + "1f9d1-1f3ff" + ], + "keywords": [ + "adult", + "gender-neutral", + "person", + "unspecified gender" + ] + }, + { + "code": "1f471", + "char": "๐Ÿ‘ฑ", + "name": "person: blond hair", + "types": [ + "1f471-1f3fb", + "1f471-1f3fc", + "1f471-1f3fd", + "1f471-1f3fe", + "1f471-1f3ff" + ], + "keywords": [ + "blond-haired person", + "hair", + "person: blond hair" + ] + }, + { + "code": "1f468", + "char": "๐Ÿ‘จ", + "name": "man", + "types": [ + "1f468-1f3fb", + "1f468-1f3fc", + "1f468-1f3fd", + "1f468-1f3fe", + "1f468-1f3ff" + ], + "keywords": [ + "man", + "adult" + ] + }, + { + "code": "1f9d4", + "char": "๐Ÿง”", + "name": "person: beard", + "types": [ + "1f9d4-1f3fb", + "1f9d4-1f3fc", + "1f9d4-1f3fd", + "1f9d4-1f3fe", + "1f9d4-1f3ff" + ], + "keywords": [ + "beard", + "person: beard", + "bewhiskered" + ] + }, + { + "code": "1f468-200d-1f9b0", + "char": "๐Ÿ‘จโ€๐Ÿฆฐ", + "name": "man: red hair", + "types": [ + "1f468-1f3fb-200d-1f9b0", + "1f468-1f3fc-200d-1f9b0", + "1f468-1f3fd-200d-1f9b0", + "1f468-1f3fe-200d-1f9b0", + "1f468-1f3ff-200d-1f9b0" + ], + "keywords": [ + "man: red hair", + "adult", + "red hair" + ] + }, + { + "code": "1f468-200d-1f9b1", + "char": "๐Ÿ‘จโ€๐Ÿฆฑ", + "name": "man: curly hair", + "types": [ + "1f468-1f3fb-200d-1f9b1", + "1f468-1f3fc-200d-1f9b1", + "1f468-1f3fd-200d-1f9b1", + "1f468-1f3fe-200d-1f9b1", + "1f468-1f3ff-200d-1f9b1" + ], + "keywords": [ + "adult", + "curly hair", + "man: curly hair" + ] + }, + { + "code": "1f468-200d-1f9b3", + "char": "๐Ÿ‘จโ€๐Ÿฆณ", + "name": "man: white hair", + "types": [ + "1f468-1f3fb-200d-1f9b3", + "1f468-1f3fc-200d-1f9b3", + "1f468-1f3fd-200d-1f9b3", + "1f468-1f3fe-200d-1f9b3", + "1f468-1f3ff-200d-1f9b3" + ], + "keywords": [ + "adult", + "man: white hair", + "white hair" + ] + }, + { + "code": "1f468-200d-1f9b2", + "char": "๐Ÿ‘จโ€๐Ÿฆฒ", + "name": "man: bald", + "types": [ + "1f468-1f3fb-200d-1f9b2", + "1f468-1f3fc-200d-1f9b2", + "1f468-1f3fd-200d-1f9b2", + "1f468-1f3fe-200d-1f9b2", + "1f468-1f3ff-200d-1f9b2" + ], + "keywords": [ + "adult", + "man: bald", + "bald" + ] + }, + { + "code": "1f469", + "char": "๐Ÿ‘ฉ", + "name": "woman", + "types": [ + "1f469-1f3fb", + "1f469-1f3fc", + "1f469-1f3fd", + "1f469-1f3fe", + "1f469-1f3ff" + ], + "keywords": [ + "woman", + "adult" + ] + }, + { + "code": "1f469-200d-1f9b0", + "char": "๐Ÿ‘ฉโ€๐Ÿฆฐ", + "name": "woman: red hair", + "types": [ + "1f469-1f3fb-200d-1f9b0", + "1f469-1f3fc-200d-1f9b0", + "1f469-1f3fd-200d-1f9b0", + "1f469-1f3fe-200d-1f9b0", + "1f469-1f3ff-200d-1f9b0" + ], + "keywords": [ + "adult", + "red hair", + "woman: red hair" + ] + }, + { + "code": "1f9d1-200d-1f9b0", + "char": "๐Ÿง‘โ€๐Ÿฆฐ", + "name": "person: red hair", + "types": [ + "1f9d1-1f3fb-200d-1f9b0", + "1f9d1-1f3fc-200d-1f9b0", + "1f9d1-1f3fd-200d-1f9b0", + "1f9d1-1f3fe-200d-1f9b0", + "1f9d1-1f3ff-200d-1f9b0" + ], + "keywords": [ + "adult", + "gender-neutral", + "person: red hair", + "red hair", + "unspecified gender" + ] + }, + { + "code": "1f469-200d-1f9b1", + "char": "๐Ÿ‘ฉโ€๐Ÿฆฑ", + "name": "woman: curly hair", + "types": [ + "1f469-1f3fb-200d-1f9b1", + "1f469-1f3fc-200d-1f9b1", + "1f469-1f3fd-200d-1f9b1", + "1f469-1f3fe-200d-1f9b1", + "1f469-1f3ff-200d-1f9b1" + ], + "keywords": [ + "adult", + "curly hair", + "woman: curly hair" + ] + }, + { + "code": "1f9d1-200d-1f9b1", + "char": "๐Ÿง‘โ€๐Ÿฆฑ", + "name": "person: curly hair", + "types": [ + "1f9d1-1f3fb-200d-1f9b1", + "1f9d1-1f3fc-200d-1f9b1", + "1f9d1-1f3fd-200d-1f9b1", + "1f9d1-1f3fe-200d-1f9b1", + "1f9d1-1f3ff-200d-1f9b1" + ], + "keywords": [ + "adult", + "curly hair", + "gender-neutral", + "person: curly hair", + "unspecified gender" + ] + }, + { + "code": "1f469-200d-1f9b3", + "char": "๐Ÿ‘ฉโ€๐Ÿฆณ", + "name": "woman: white hair", + "types": [ + "1f469-1f3fb-200d-1f9b3", + "1f469-1f3fc-200d-1f9b3", + "1f469-1f3fd-200d-1f9b3", + "1f469-1f3fe-200d-1f9b3", + "1f469-1f3ff-200d-1f9b3" + ], + "keywords": [ + "adult", + "white hair", + "woman: white hair" + ] + }, + { + "code": "1f9d1-200d-1f9b3", + "char": "๐Ÿง‘โ€๐Ÿฆณ", + "name": "person: white hair", + "types": [ + "1f9d1-1f3fb-200d-1f9b3", + "1f9d1-1f3fc-200d-1f9b3", + "1f9d1-1f3fd-200d-1f9b3", + "1f9d1-1f3fe-200d-1f9b3", + "1f9d1-1f3ff-200d-1f9b3" + ], + "keywords": [ + "adult", + "gender-neutral", + "person: white hair", + "unspecified gender", + "white hair" + ] + }, + { + "code": "1f469-200d-1f9b2", + "char": "๐Ÿ‘ฉโ€๐Ÿฆฒ", + "name": "woman: bald", + "types": [ + "1f469-1f3fb-200d-1f9b2", + "1f469-1f3fc-200d-1f9b2", + "1f469-1f3fd-200d-1f9b2", + "1f469-1f3fe-200d-1f9b2", + "1f469-1f3ff-200d-1f9b2" + ], + "keywords": [ + "adult", + "bald", + "woman: bald" + ] + }, + { + "code": "1f9d1-200d-1f9b2", + "char": "๐Ÿง‘โ€๐Ÿฆฒ", + "name": "person: bald", + "types": [ + "1f9d1-1f3fb-200d-1f9b2", + "1f9d1-1f3fc-200d-1f9b2", + "1f9d1-1f3fd-200d-1f9b2", + "1f9d1-1f3fe-200d-1f9b2", + "1f9d1-1f3ff-200d-1f9b2" + ], + "keywords": [ + "adult", + "bald", + "gender-neutral", + "person: bald", + "unspecified gender" + ] + }, + { + "code": "1f471-200d-2640-fe0f", + "char": "๐Ÿ‘ฑโ€โ™€๏ธ", + "name": "woman: blond hair", + "types": [ + "1f471-1f3fb-200d-2640-fe0f", + "1f471-1f3fc-200d-2640-fe0f", + "1f471-1f3fd-200d-2640-fe0f", + "1f471-1f3fe-200d-2640-fe0f", + "1f471-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "blond-haired woman", + "blonde", + "hair", + "woman: blond hair" + ] + }, + { + "code": "1f471-200d-2642-fe0f", + "char": "๐Ÿ‘ฑโ€โ™‚๏ธ", + "name": "man: blond hair", + "types": [ + "1f471-1f3fb-200d-2642-fe0f", + "1f471-1f3fc-200d-2642-fe0f", + "1f471-1f3fd-200d-2642-fe0f", + "1f471-1f3fe-200d-2642-fe0f", + "1f471-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "blond", + "blond-haired man", + "hair", + "man: blond hair" + ] + }, + { + "code": "1f9d3", + "char": "๐Ÿง“", + "name": "older person", + "types": [ + "1f9d3-1f3fb", + "1f9d3-1f3fc", + "1f9d3-1f3fd", + "1f9d3-1f3fe", + "1f9d3-1f3ff" + ], + "keywords": [ + "adult", + "gender-neutral", + "older person", + "unspecified gender" + ] + }, + { + "code": "1f474", + "char": "๐Ÿ‘ด", + "name": "old man", + "types": [ + "1f474-1f3fb", + "1f474-1f3fc", + "1f474-1f3fd", + "1f474-1f3fe", + "1f474-1f3ff" + ], + "keywords": [ + "man", + "old man", + "adult" + ] + }, + { + "code": "1f475", + "char": "๐Ÿ‘ต", + "name": "old woman", + "types": [ + "1f475-1f3fb", + "1f475-1f3fc", + "1f475-1f3fd", + "1f475-1f3fe", + "1f475-1f3ff" + ], + "keywords": [ + "old woman", + "woman", + "adult" + ] + }, + { + "code": "1f64d", + "char": "๐Ÿ™", + "name": "person frowning", + "types": [ + "1f64d-1f3fb", + "1f64d-1f3fc", + "1f64d-1f3fd", + "1f64d-1f3fe", + "1f64d-1f3ff" + ], + "keywords": [ + "frowning", + "gesture", + "person frowning" + ] + }, + { + "code": "1f64d-200d-2642-fe0f", + "char": "๐Ÿ™โ€โ™‚๏ธ", + "name": "man frowning", + "types": [ + "1f64d-1f3fb-200d-2642-fe0f", + "1f64d-1f3fc-200d-2642-fe0f", + "1f64d-1f3fd-200d-2642-fe0f", + "1f64d-1f3fe-200d-2642-fe0f", + "1f64d-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "frowning", + "gesture", + "man frowning" + ] + }, + { + "code": "1f64d-200d-2640-fe0f", + "char": "๐Ÿ™โ€โ™€๏ธ", + "name": "woman frowning", + "types": [ + "1f64d-1f3fb-200d-2640-fe0f", + "1f64d-1f3fc-200d-2640-fe0f", + "1f64d-1f3fd-200d-2640-fe0f", + "1f64d-1f3fe-200d-2640-fe0f", + "1f64d-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "frowning", + "woman frowning", + "gesture" + ] + }, + { + "code": "1f64e", + "char": "๐Ÿ™Ž", + "name": "person pouting", + "types": [ + "1f64e-1f3fb", + "1f64e-1f3fc", + "1f64e-1f3fd", + "1f64e-1f3fe", + "1f64e-1f3ff" + ], + "keywords": [ + "gesture", + "pouting", + "person pouting" + ] + }, + { + "code": "1f64e-200d-2642-fe0f", + "char": "๐Ÿ™Žโ€โ™‚๏ธ", + "name": "man pouting", + "types": [ + "1f64e-1f3fb-200d-2642-fe0f", + "1f64e-1f3fc-200d-2642-fe0f", + "1f64e-1f3fd-200d-2642-fe0f", + "1f64e-1f3fe-200d-2642-fe0f", + "1f64e-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "gesture", + "man pouting", + "pouting" + ] + }, + { + "code": "1f64e-200d-2640-fe0f", + "char": "๐Ÿ™Žโ€โ™€๏ธ", + "name": "woman pouting", + "types": [ + "1f64e-1f3fb-200d-2640-fe0f", + "1f64e-1f3fc-200d-2640-fe0f", + "1f64e-1f3fd-200d-2640-fe0f", + "1f64e-1f3fe-200d-2640-fe0f", + "1f64e-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "gesture", + "woman pouting", + "pouting" + ] + }, + { + "code": "1f645", + "char": "๐Ÿ™…", + "name": "person gesturing NO", + "types": [ + "1f645-1f3fb", + "1f645-1f3fc", + "1f645-1f3fd", + "1f645-1f3fe", + "1f645-1f3ff" + ], + "keywords": [ + "forbidden", + "gesture", + "hand", + "no", + "not", + "prohibited", + "person gesturing no" + ] + }, + { + "code": "1f645-200d-2642-fe0f", + "char": "๐Ÿ™…โ€โ™‚๏ธ", + "name": "man gesturing NO", + "types": [ + "1f645-1f3fb-200d-2642-fe0f", + "1f645-1f3fc-200d-2642-fe0f", + "1f645-1f3fd-200d-2642-fe0f", + "1f645-1f3fe-200d-2642-fe0f", + "1f645-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "forbidden", + "gesture", + "hand", + "no", + "not", + "prohibited", + "man gesturing no" + ] + }, + { + "code": "1f645-200d-2640-fe0f", + "char": "๐Ÿ™…โ€โ™€๏ธ", + "name": "woman gesturing NO", + "types": [ + "1f645-1f3fb-200d-2640-fe0f", + "1f645-1f3fc-200d-2640-fe0f", + "1f645-1f3fd-200d-2640-fe0f", + "1f645-1f3fe-200d-2640-fe0f", + "1f645-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "forbidden", + "gesture", + "hand", + "no", + "not", + "prohibited", + "woman gesturing no" + ] + }, + { + "code": "1f646", + "char": "๐Ÿ™†", + "name": "person gesturing OK", + "types": [ + "1f646-1f3fb", + "1f646-1f3fc", + "1f646-1f3fd", + "1f646-1f3fe", + "1f646-1f3ff" + ], + "keywords": [ + "gesture", + "hand", + "ok", + "person gesturing ok" + ] + }, + { + "code": "1f646-200d-2642-fe0f", + "char": "๐Ÿ™†โ€โ™‚๏ธ", + "name": "man gesturing OK", + "types": [ + "1f646-1f3fb-200d-2642-fe0f", + "1f646-1f3fc-200d-2642-fe0f", + "1f646-1f3fd-200d-2642-fe0f", + "1f646-1f3fe-200d-2642-fe0f", + "1f646-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "gesture", + "hand", + "ok", + "man gesturing ok" + ] + }, + { + "code": "1f646-200d-2640-fe0f", + "char": "๐Ÿ™†โ€โ™€๏ธ", + "name": "woman gesturing OK", + "types": [ + "1f646-1f3fb-200d-2640-fe0f", + "1f646-1f3fc-200d-2640-fe0f", + "1f646-1f3fd-200d-2640-fe0f", + "1f646-1f3fe-200d-2640-fe0f", + "1f646-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "gesture", + "hand", + "ok", + "woman gesturing ok" + ] + }, + { + "code": "1f481", + "char": "๐Ÿ’", + "name": "person tipping hand", + "types": [ + "1f481-1f3fb", + "1f481-1f3fc", + "1f481-1f3fd", + "1f481-1f3fe", + "1f481-1f3ff" + ], + "keywords": [ + "hand", + "help", + "information", + "sassy", + "tipping", + "person tipping hand" + ] + }, + { + "code": "1f481-200d-2642-fe0f", + "char": "๐Ÿ’โ€โ™‚๏ธ", + "name": "man tipping hand", + "types": [ + "1f481-1f3fb-200d-2642-fe0f", + "1f481-1f3fc-200d-2642-fe0f", + "1f481-1f3fd-200d-2642-fe0f", + "1f481-1f3fe-200d-2642-fe0f", + "1f481-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "hand", + "help", + "information", + "sassy", + "tipping", + "man tipping hand" + ] + }, + { + "code": "1f481-200d-2640-fe0f", + "char": "๐Ÿ’โ€โ™€๏ธ", + "name": "woman tipping hand", + "types": [ + "1f481-1f3fb-200d-2640-fe0f", + "1f481-1f3fc-200d-2640-fe0f", + "1f481-1f3fd-200d-2640-fe0f", + "1f481-1f3fe-200d-2640-fe0f", + "1f481-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "hand", + "help", + "information", + "sassy", + "tipping", + "woman tipping hand" + ] + }, + { + "code": "1f64b", + "char": "๐Ÿ™‹", + "name": "person raising hand", + "types": [ + "1f64b-1f3fb", + "1f64b-1f3fc", + "1f64b-1f3fd", + "1f64b-1f3fe", + "1f64b-1f3ff" + ], + "keywords": [ + "gesture", + "hand", + "happy", + "raised", + "person raising hand" + ] + }, + { + "code": "1f64b-200d-2642-fe0f", + "char": "๐Ÿ™‹โ€โ™‚๏ธ", + "name": "man raising hand", + "types": [ + "1f64b-1f3fb-200d-2642-fe0f", + "1f64b-1f3fc-200d-2642-fe0f", + "1f64b-1f3fd-200d-2642-fe0f", + "1f64b-1f3fe-200d-2642-fe0f", + "1f64b-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "gesture", + "hand", + "happy", + "raised", + "man raising hand" + ] + }, + { + "code": "1f64b-200d-2640-fe0f", + "char": "๐Ÿ™‹โ€โ™€๏ธ", + "name": "woman raising hand", + "types": [ + "1f64b-1f3fb-200d-2640-fe0f", + "1f64b-1f3fc-200d-2640-fe0f", + "1f64b-1f3fd-200d-2640-fe0f", + "1f64b-1f3fe-200d-2640-fe0f", + "1f64b-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "gesture", + "hand", + "happy", + "raised", + "woman raising hand" + ] + }, + { + "code": "1f9cf", + "char": "๐Ÿง", + "name": "deaf person", + "types": [ + "1f9cf-1f3fb", + "1f9cf-1f3fc", + "1f9cf-1f3fd", + "1f9cf-1f3fe", + "1f9cf-1f3ff" + ], + "keywords": [ + "accessibility", + "deaf person", + "ear", + "hear" + ] + }, + { + "code": "1f9cf-200d-2642-fe0f", + "char": "๐Ÿงโ€โ™‚๏ธ", + "name": "deaf man", + "types": [ + "1f9cf-1f3fb-200d-2642-fe0f", + "1f9cf-1f3fc-200d-2642-fe0f", + "1f9cf-1f3fd-200d-2642-fe0f", + "1f9cf-1f3fe-200d-2642-fe0f", + "1f9cf-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "accessibility", + "deaf man", + "ear", + "hear", + "man" + ] + }, + { + "code": "1f9cf-200d-2640-fe0f", + "char": "๐Ÿงโ€โ™€๏ธ", + "name": "deaf woman", + "types": [ + "1f9cf-1f3fb-200d-2640-fe0f", + "1f9cf-1f3fc-200d-2640-fe0f", + "1f9cf-1f3fd-200d-2640-fe0f", + "1f9cf-1f3fe-200d-2640-fe0f", + "1f9cf-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "accessibility", + "deaf woman", + "ear", + "hear", + "woman" + ] + }, + { + "code": "1f647", + "char": "๐Ÿ™‡", + "name": "person bowing", + "types": [ + "1f647-1f3fb", + "1f647-1f3fc", + "1f647-1f3fd", + "1f647-1f3fe", + "1f647-1f3ff" + ], + "keywords": [ + "apology", + "bowing", + "gesture", + "sorry", + "person bowing", + "favor" + ] + }, + { + "code": "1f647-200d-2642-fe0f", + "char": "๐Ÿ™‡โ€โ™‚๏ธ", + "name": "man bowing", + "types": [ + "1f647-1f3fb-200d-2642-fe0f", + "1f647-1f3fc-200d-2642-fe0f", + "1f647-1f3fd-200d-2642-fe0f", + "1f647-1f3fe-200d-2642-fe0f", + "1f647-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "apology", + "bowing", + "gesture", + "sorry", + "man bowing", + "favor" + ] + }, + { + "code": "1f647-200d-2640-fe0f", + "char": "๐Ÿ™‡โ€โ™€๏ธ", + "name": "woman bowing", + "types": [ + "1f647-1f3fb-200d-2640-fe0f", + "1f647-1f3fc-200d-2640-fe0f", + "1f647-1f3fd-200d-2640-fe0f", + "1f647-1f3fe-200d-2640-fe0f", + "1f647-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "apology", + "bowing", + "gesture", + "sorry", + "woman bowing", + "favor" + ] + }, + { + "code": "1f926", + "char": "๐Ÿคฆ", + "name": "person facepalming", + "types": [ + "1f926-1f3fb", + "1f926-1f3fc", + "1f926-1f3fd", + "1f926-1f3fe", + "1f926-1f3ff" + ], + "keywords": [ + "disbelief", + "exasperation", + "facepalming", + "person facepalming" + ] + }, + { + "code": "1f926-200d-2642-fe0f", + "char": "๐Ÿคฆโ€โ™‚๏ธ", + "name": "man facepalming", + "types": [ + "1f926-1f3fb-200d-2642-fe0f", + "1f926-1f3fc-200d-2642-fe0f", + "1f926-1f3fd-200d-2642-fe0f", + "1f926-1f3fe-200d-2642-fe0f", + "1f926-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "disbelief", + "exasperation", + "facepalming", + "man facepalming" + ] + }, + { + "code": "1f926-200d-2640-fe0f", + "char": "๐Ÿคฆโ€โ™€๏ธ", + "name": "woman facepalming", + "types": [ + "1f926-1f3fb-200d-2640-fe0f", + "1f926-1f3fc-200d-2640-fe0f", + "1f926-1f3fd-200d-2640-fe0f", + "1f926-1f3fe-200d-2640-fe0f", + "1f926-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "disbelief", + "exasperation", + "facepalming", + "woman facepalming" + ] + }, + { + "code": "1f937", + "char": "๐Ÿคท", + "name": "person shrugging", + "types": [ + "1f937-1f3fb", + "1f937-1f3fc", + "1f937-1f3fd", + "1f937-1f3fe", + "1f937-1f3ff" + ], + "keywords": [ + "doubt", + "ignorance", + "indifference", + "shrugging", + "person shrugging" + ] + }, + { + "code": "1f937-200d-2642-fe0f", + "char": "๐Ÿคทโ€โ™‚๏ธ", + "name": "man shrugging", + "types": [ + "1f937-1f3fb-200d-2642-fe0f", + "1f937-1f3fc-200d-2642-fe0f", + "1f937-1f3fd-200d-2642-fe0f", + "1f937-1f3fe-200d-2642-fe0f", + "1f937-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "doubt", + "ignorance", + "indifference", + "shrugging", + "man shrugging" + ] + }, + { + "code": "1f937-200d-2640-fe0f", + "char": "๐Ÿคทโ€โ™€๏ธ", + "name": "woman shrugging", + "types": [ + "1f937-1f3fb-200d-2640-fe0f", + "1f937-1f3fc-200d-2640-fe0f", + "1f937-1f3fd-200d-2640-fe0f", + "1f937-1f3fe-200d-2640-fe0f", + "1f937-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "doubt", + "ignorance", + "indifference", + "shrugging", + "woman shrugging" + ] + }, + { + "code": "1f9d1-200d-2695-fe0f", + "char": "๐Ÿง‘โ€โš•๏ธ", + "name": "health worker", + "types": [ + "1f9d1-1f3fb-200d-2695-fe0f", + "1f9d1-1f3fc-200d-2695-fe0f", + "1f9d1-1f3fd-200d-2695-fe0f", + "1f9d1-1f3fe-200d-2695-fe0f", + "1f9d1-1f3ff-200d-2695-fe0f" + ], + "keywords": [ + "doctor", + "health worker", + "healthcare", + "nurse", + "therapist" + ] + }, + { + "code": "1f468-200d-2695-fe0f", + "char": "๐Ÿ‘จโ€โš•๏ธ", + "name": "man health worker", + "types": [ + "1f468-1f3fb-200d-2695-fe0f", + "1f468-1f3fc-200d-2695-fe0f", + "1f468-1f3fd-200d-2695-fe0f", + "1f468-1f3fe-200d-2695-fe0f", + "1f468-1f3ff-200d-2695-fe0f" + ], + "keywords": [ + "doctor", + "health worker", + "healthcare", + "nurse", + "therapist", + "man health worker" + ] + }, + { + "code": "1f469-200d-2695-fe0f", + "char": "๐Ÿ‘ฉโ€โš•๏ธ", + "name": "woman health worker", + "types": [ + "1f469-1f3fb-200d-2695-fe0f", + "1f469-1f3fc-200d-2695-fe0f", + "1f469-1f3fd-200d-2695-fe0f", + "1f469-1f3fe-200d-2695-fe0f", + "1f469-1f3ff-200d-2695-fe0f" + ], + "keywords": [ + "doctor", + "health worker", + "healthcare", + "nurse", + "therapist", + "woman health worker" + ] + }, + { + "code": "1f9d1-200d-1f393", + "char": "๐Ÿง‘โ€๐ŸŽ“", + "name": "student", + "types": [ + "1f9d1-1f3fb-200d-1f393", + "1f9d1-1f3fc-200d-1f393", + "1f9d1-1f3fd-200d-1f393", + "1f9d1-1f3fe-200d-1f393", + "1f9d1-1f3ff-200d-1f393" + ], + "keywords": [ + "student", + "graduate" + ] + }, + { + "code": "1f468-200d-1f393", + "char": "๐Ÿ‘จโ€๐ŸŽ“", + "name": "man student", + "types": [ + "1f468-1f3fb-200d-1f393", + "1f468-1f3fc-200d-1f393", + "1f468-1f3fd-200d-1f393", + "1f468-1f3fe-200d-1f393", + "1f468-1f3ff-200d-1f393" + ], + "keywords": [ + "student", + "graduate", + "man student" + ] + }, + { + "code": "1f469-200d-1f393", + "char": "๐Ÿ‘ฉโ€๐ŸŽ“", + "name": "woman student", + "types": [ + "1f469-1f3fb-200d-1f393", + "1f469-1f3fc-200d-1f393", + "1f469-1f3fd-200d-1f393", + "1f469-1f3fe-200d-1f393", + "1f469-1f3ff-200d-1f393" + ], + "keywords": [ + "student", + "graduate", + "woman student" + ] + }, + { + "code": "1f9d1-200d-1f3eb", + "char": "๐Ÿง‘โ€๐Ÿซ", + "name": "teacher", + "types": [ + "1f9d1-1f3fb-200d-1f3eb", + "1f9d1-1f3fc-200d-1f3eb", + "1f9d1-1f3fd-200d-1f3eb", + "1f9d1-1f3fe-200d-1f3eb", + "1f9d1-1f3ff-200d-1f3eb" + ], + "keywords": [ + "instructor", + "professor", + "teacher" + ] + }, + { + "code": "1f468-200d-1f3eb", + "char": "๐Ÿ‘จโ€๐Ÿซ", + "name": "man teacher", + "types": [ + "1f468-1f3fb-200d-1f3eb", + "1f468-1f3fc-200d-1f3eb", + "1f468-1f3fd-200d-1f3eb", + "1f468-1f3fe-200d-1f3eb", + "1f468-1f3ff-200d-1f3eb" + ], + "keywords": [ + "instructor", + "professor", + "man teacher", + "teacher" + ] + }, + { + "code": "1f469-200d-1f3eb", + "char": "๐Ÿ‘ฉโ€๐Ÿซ", + "name": "woman teacher", + "types": [ + "1f469-1f3fb-200d-1f3eb", + "1f469-1f3fc-200d-1f3eb", + "1f469-1f3fd-200d-1f3eb", + "1f469-1f3fe-200d-1f3eb", + "1f469-1f3ff-200d-1f3eb" + ], + "keywords": [ + "instructor", + "professor", + "woman teacher", + "teacher" + ] + }, + { + "code": "1f9d1-200d-2696-fe0f", + "char": "๐Ÿง‘โ€โš–๏ธ", + "name": "judge", + "types": [ + "1f9d1-1f3fb-200d-2696-fe0f", + "1f9d1-1f3fc-200d-2696-fe0f", + "1f9d1-1f3fd-200d-2696-fe0f", + "1f9d1-1f3fe-200d-2696-fe0f", + "1f9d1-1f3ff-200d-2696-fe0f" + ], + "keywords": [ + "judge", + "justice", + "scales" + ] + }, + { + "code": "1f468-200d-2696-fe0f", + "char": "๐Ÿ‘จโ€โš–๏ธ", + "name": "man judge", + "types": [ + "1f468-1f3fb-200d-2696-fe0f", + "1f468-1f3fc-200d-2696-fe0f", + "1f468-1f3fd-200d-2696-fe0f", + "1f468-1f3fe-200d-2696-fe0f", + "1f468-1f3ff-200d-2696-fe0f" + ], + "keywords": [ + "man judge", + "justice", + "scales", + "judge" + ] + }, + { + "code": "1f469-200d-2696-fe0f", + "char": "๐Ÿ‘ฉโ€โš–๏ธ", + "name": "woman judge", + "types": [ + "1f469-1f3fb-200d-2696-fe0f", + "1f469-1f3fc-200d-2696-fe0f", + "1f469-1f3fd-200d-2696-fe0f", + "1f469-1f3fe-200d-2696-fe0f", + "1f469-1f3ff-200d-2696-fe0f" + ], + "keywords": [ + "woman judge", + "justice", + "scales", + "judge" + ] + }, + { + "code": "1f9d1-200d-1f33e", + "char": "๐Ÿง‘โ€๐ŸŒพ", + "name": "farmer", + "types": [ + "1f9d1-1f3fb-200d-1f33e", + "1f9d1-1f3fc-200d-1f33e", + "1f9d1-1f3fd-200d-1f33e", + "1f9d1-1f3fe-200d-1f33e", + "1f9d1-1f3ff-200d-1f33e" + ], + "keywords": [ + "farmer", + "gardener", + "rancher" + ] + }, + { + "code": "1f468-200d-1f33e", + "char": "๐Ÿ‘จโ€๐ŸŒพ", + "name": "man farmer", + "types": [ + "1f468-1f3fb-200d-1f33e", + "1f468-1f3fc-200d-1f33e", + "1f468-1f3fd-200d-1f33e", + "1f468-1f3fe-200d-1f33e", + "1f468-1f3ff-200d-1f33e" + ], + "keywords": [ + "man farmer", + "gardener", + "rancher", + "farmer" + ] + }, + { + "code": "1f469-200d-1f33e", + "char": "๐Ÿ‘ฉโ€๐ŸŒพ", + "name": "woman farmer", + "types": [ + "1f469-1f3fb-200d-1f33e", + "1f469-1f3fc-200d-1f33e", + "1f469-1f3fd-200d-1f33e", + "1f469-1f3fe-200d-1f33e", + "1f469-1f3ff-200d-1f33e" + ], + "keywords": [ + "woman farmer", + "gardener", + "rancher", + "farmer" + ] + }, + { + "code": "1f9d1-200d-1f373", + "char": "๐Ÿง‘โ€๐Ÿณ", + "name": "cook", + "types": [ + "1f9d1-1f3fb-200d-1f373", + "1f9d1-1f3fc-200d-1f373", + "1f9d1-1f3fd-200d-1f373", + "1f9d1-1f3fe-200d-1f373", + "1f9d1-1f3ff-200d-1f373" + ], + "keywords": [ + "chef", + "cook" + ] + }, + { + "code": "1f468-200d-1f373", + "char": "๐Ÿ‘จโ€๐Ÿณ", + "name": "man cook", + "types": [ + "1f468-1f3fb-200d-1f373", + "1f468-1f3fc-200d-1f373", + "1f468-1f3fd-200d-1f373", + "1f468-1f3fe-200d-1f373", + "1f468-1f3ff-200d-1f373" + ], + "keywords": [ + "chef", + "man cook", + "cook" + ] + }, + { + "code": "1f469-200d-1f373", + "char": "๐Ÿ‘ฉโ€๐Ÿณ", + "name": "woman cook", + "types": [ + "1f469-1f3fb-200d-1f373", + "1f469-1f3fc-200d-1f373", + "1f469-1f3fd-200d-1f373", + "1f469-1f3fe-200d-1f373", + "1f469-1f3ff-200d-1f373" + ], + "keywords": [ + "chef", + "woman cook", + "cook" + ] + }, + { + "code": "1f9d1-200d-1f527", + "char": "๐Ÿง‘โ€๐Ÿ”ง", + "name": "mechanic", + "types": [ + "1f9d1-1f3fb-200d-1f527", + "1f9d1-1f3fc-200d-1f527", + "1f9d1-1f3fd-200d-1f527", + "1f9d1-1f3fe-200d-1f527", + "1f9d1-1f3ff-200d-1f527" + ], + "keywords": [ + "electrician", + "mechanic", + "plumber", + "tradesperson" + ] + }, + { + "code": "1f468-200d-1f527", + "char": "๐Ÿ‘จโ€๐Ÿ”ง", + "name": "man mechanic", + "types": [ + "1f468-1f3fb-200d-1f527", + "1f468-1f3fc-200d-1f527", + "1f468-1f3fd-200d-1f527", + "1f468-1f3fe-200d-1f527", + "1f468-1f3ff-200d-1f527" + ], + "keywords": [ + "man electrician", + "mechanic", + "plumber", + "tradesperson", + "electrician" + ] + }, + { + "code": "1f469-200d-1f527", + "char": "๐Ÿ‘ฉโ€๐Ÿ”ง", + "name": "woman mechanic", + "types": [ + "1f469-1f3fb-200d-1f527", + "1f469-1f3fc-200d-1f527", + "1f469-1f3fd-200d-1f527", + "1f469-1f3fe-200d-1f527", + "1f469-1f3ff-200d-1f527" + ], + "keywords": [ + "woman electrician", + "mechanic", + "plumber", + "tradesperson", + "electrician" + ] + }, + { + "code": "1f9d1-200d-1f3ed", + "char": "๐Ÿง‘โ€๐Ÿญ", + "name": "factory worker", + "types": [ + "1f9d1-1f3fb-200d-1f3ed", + "1f9d1-1f3fc-200d-1f3ed", + "1f9d1-1f3fd-200d-1f3ed", + "1f9d1-1f3fe-200d-1f3ed", + "1f9d1-1f3ff-200d-1f3ed" + ], + "keywords": [ + "assembly", + "factory worker", + "industrial", + "worker" + ] + }, + { + "code": "1f468-200d-1f3ed", + "char": "๐Ÿ‘จโ€๐Ÿญ", + "name": "man factory worker", + "types": [ + "1f468-1f3fb-200d-1f3ed", + "1f468-1f3fc-200d-1f3ed", + "1f468-1f3fd-200d-1f3ed", + "1f468-1f3fe-200d-1f3ed", + "1f468-1f3ff-200d-1f3ed" + ], + "keywords": [ + "assembly", + "man factory worker", + "industrial", + "worker", + "factory worker" + ] + }, + { + "code": "1f469-200d-1f3ed", + "char": "๐Ÿ‘ฉโ€๐Ÿญ", + "name": "woman factory worker", + "types": [ + "1f469-1f3fb-200d-1f3ed", + "1f469-1f3fc-200d-1f3ed", + "1f469-1f3fd-200d-1f3ed", + "1f469-1f3fe-200d-1f3ed", + "1f469-1f3ff-200d-1f3ed" + ], + "keywords": [ + "assembly", + "woman factory worker", + "industrial", + "worker", + "factory worker" + ] + }, + { + "code": "1f9d1-200d-1f4bc", + "char": "๐Ÿง‘โ€๐Ÿ’ผ", + "name": "office worker", + "types": [ + "1f9d1-1f3fb-200d-1f4bc", + "1f9d1-1f3fc-200d-1f4bc", + "1f9d1-1f3fd-200d-1f4bc", + "1f9d1-1f3fe-200d-1f4bc", + "1f9d1-1f3ff-200d-1f4bc" + ], + "keywords": [ + "architect", + "business", + "manager", + "office worker", + "white-collar" + ] + }, + { + "code": "1f468-200d-1f4bc", + "char": "๐Ÿ‘จโ€๐Ÿ’ผ", + "name": "man office worker", + "types": [ + "1f468-1f3fb-200d-1f4bc", + "1f468-1f3fc-200d-1f4bc", + "1f468-1f3fd-200d-1f4bc", + "1f468-1f3fe-200d-1f4bc", + "1f468-1f3ff-200d-1f4bc" + ], + "keywords": [ + "architect", + "business", + "manager", + "man office worker", + "white-collar", + "office worker" + ] + }, + { + "code": "1f469-200d-1f4bc", + "char": "๐Ÿ‘ฉโ€๐Ÿ’ผ", + "name": "woman office worker", + "types": [ + "1f469-1f3fb-200d-1f4bc", + "1f469-1f3fc-200d-1f4bc", + "1f469-1f3fd-200d-1f4bc", + "1f469-1f3fe-200d-1f4bc", + "1f469-1f3ff-200d-1f4bc" + ], + "keywords": [ + "architect", + "business", + "manager", + "woman office worker", + "white-collar", + "office worker" + ] + }, + { + "code": "1f9d1-200d-1f52c", + "char": "๐Ÿง‘โ€๐Ÿ”ฌ", + "name": "scientist", + "types": [ + "1f9d1-1f3fb-200d-1f52c", + "1f9d1-1f3fc-200d-1f52c", + "1f9d1-1f3fd-200d-1f52c", + "1f9d1-1f3fe-200d-1f52c", + "1f9d1-1f3ff-200d-1f52c" + ], + "keywords": [ + "biologist", + "chemist", + "engineer", + "physicist", + "scientist" + ] + }, + { + "code": "1f468-200d-1f52c", + "char": "๐Ÿ‘จโ€๐Ÿ”ฌ", + "name": "man scientist", + "types": [ + "1f468-1f3fb-200d-1f52c", + "1f468-1f3fc-200d-1f52c", + "1f468-1f3fd-200d-1f52c", + "1f468-1f3fe-200d-1f52c", + "1f468-1f3ff-200d-1f52c" + ], + "keywords": [ + "biologist", + "chemist", + "engineer", + "physicist", + "man scientist", + "scientist" + ] + }, + { + "code": "1f469-200d-1f52c", + "char": "๐Ÿ‘ฉโ€๐Ÿ”ฌ", + "name": "woman scientist", + "types": [ + "1f469-1f3fb-200d-1f52c", + "1f469-1f3fc-200d-1f52c", + "1f469-1f3fd-200d-1f52c", + "1f469-1f3fe-200d-1f52c", + "1f469-1f3ff-200d-1f52c" + ], + "keywords": [ + "biologist", + "chemist", + "engineer", + "physicist", + "woman scientist", + "scientist" + ] + }, + { + "code": "1f9d1-200d-1f4bb", + "char": "๐Ÿง‘โ€๐Ÿ’ป", + "name": "technologist", + "types": [ + "1f9d1-1f3fb-200d-1f4bb", + "1f9d1-1f3fc-200d-1f4bb", + "1f9d1-1f3fd-200d-1f4bb", + "1f9d1-1f3fe-200d-1f4bb", + "1f9d1-1f3ff-200d-1f4bb" + ], + "keywords": [ + "coder", + "developer", + "inventor", + "software", + "technologist" + ] + }, + { + "code": "1f468-200d-1f4bb", + "char": "๐Ÿ‘จโ€๐Ÿ’ป", + "name": "man technologist", + "types": [ + "1f468-1f3fb-200d-1f4bb", + "1f468-1f3fc-200d-1f4bb", + "1f468-1f3fd-200d-1f4bb", + "1f468-1f3fe-200d-1f4bb", + "1f468-1f3ff-200d-1f4bb" + ], + "keywords": [ + "coder", + "developer", + "inventor", + "software", + "man technologist", + "technologist" + ] + }, + { + "code": "1f469-200d-1f4bb", + "char": "๐Ÿ‘ฉโ€๐Ÿ’ป", + "name": "woman technologist", + "types": [ + "1f469-1f3fb-200d-1f4bb", + "1f469-1f3fc-200d-1f4bb", + "1f469-1f3fd-200d-1f4bb", + "1f469-1f3fe-200d-1f4bb", + "1f469-1f3ff-200d-1f4bb" + ], + "keywords": [ + "coder", + "developer", + "inventor", + "software", + "woman technologist", + "technologist" + ] + }, + { + "code": "1f9d1-200d-1f3a4", + "char": "๐Ÿง‘โ€๐ŸŽค", + "name": "singer", + "types": [ + "1f9d1-1f3fb-200d-1f3a4", + "1f9d1-1f3fc-200d-1f3a4", + "1f9d1-1f3fd-200d-1f3a4", + "1f9d1-1f3fe-200d-1f3a4", + "1f9d1-1f3ff-200d-1f3a4" + ], + "keywords": [ + "actor", + "entertainer", + "rock", + "singer", + "star" + ] + }, + { + "code": "1f468-200d-1f3a4", + "char": "๐Ÿ‘จโ€๐ŸŽค", + "name": "man singer", + "types": [ + "1f468-1f3fb-200d-1f3a4", + "1f468-1f3fc-200d-1f3a4", + "1f468-1f3fd-200d-1f3a4", + "1f468-1f3fe-200d-1f3a4", + "1f468-1f3ff-200d-1f3a4" + ], + "keywords": [ + "actor", + "entertainer", + "rock", + "man singer", + "singer", + "star" + ] + }, + { + "code": "1f469-200d-1f3a4", + "char": "๐Ÿ‘ฉโ€๐ŸŽค", + "name": "woman singer", + "types": [ + "1f469-1f3fb-200d-1f3a4", + "1f469-1f3fc-200d-1f3a4", + "1f469-1f3fd-200d-1f3a4", + "1f469-1f3fe-200d-1f3a4", + "1f469-1f3ff-200d-1f3a4" + ], + "keywords": [ + "actor", + "entertainer", + "rock", + "woman singer", + "singer", + "star" + ] + }, + { + "code": "1f9d1-200d-1f3a8", + "char": "๐Ÿง‘โ€๐ŸŽจ", + "name": "artist", + "types": [ + "1f9d1-1f3fb-200d-1f3a8", + "1f9d1-1f3fc-200d-1f3a8", + "1f9d1-1f3fd-200d-1f3a8", + "1f9d1-1f3fe-200d-1f3a8", + "1f9d1-1f3ff-200d-1f3a8" + ], + "keywords": [ + "artist", + "palette" + ] + }, + { + "code": "1f468-200d-1f3a8", + "char": "๐Ÿ‘จโ€๐ŸŽจ", + "name": "man artist", + "types": [ + "1f468-1f3fb-200d-1f3a8", + "1f468-1f3fc-200d-1f3a8", + "1f468-1f3fd-200d-1f3a8", + "1f468-1f3fe-200d-1f3a8", + "1f468-1f3ff-200d-1f3a8" + ], + "keywords": [ + "man artist", + "palette", + "artist" + ] + }, + { + "code": "1f469-200d-1f3a8", + "char": "๐Ÿ‘ฉโ€๐ŸŽจ", + "name": "woman artist", + "types": [ + "1f469-1f3fb-200d-1f3a8", + "1f469-1f3fc-200d-1f3a8", + "1f469-1f3fd-200d-1f3a8", + "1f469-1f3fe-200d-1f3a8", + "1f469-1f3ff-200d-1f3a8" + ], + "keywords": [ + "woman artist", + "palette", + "artist" + ] + }, + { + "code": "1f9d1-200d-2708-fe0f", + "char": "๐Ÿง‘โ€โœˆ๏ธ", + "name": "pilot", + "types": [ + "1f9d1-1f3fb-200d-2708-fe0f", + "1f9d1-1f3fc-200d-2708-fe0f", + "1f9d1-1f3fd-200d-2708-fe0f", + "1f9d1-1f3fe-200d-2708-fe0f", + "1f9d1-1f3ff-200d-2708-fe0f" + ], + "keywords": [ + "pilot", + "plane" + ] + }, + { + "code": "1f468-200d-2708-fe0f", + "char": "๐Ÿ‘จโ€โœˆ๏ธ", + "name": "man pilot", + "types": [ + "1f468-1f3fb-200d-2708-fe0f", + "1f468-1f3fc-200d-2708-fe0f", + "1f468-1f3fd-200d-2708-fe0f", + "1f468-1f3fe-200d-2708-fe0f", + "1f468-1f3ff-200d-2708-fe0f" + ], + "keywords": [ + "man pilot", + "plane", + "pilot" + ] + }, + { + "code": "1f469-200d-2708-fe0f", + "char": "๐Ÿ‘ฉโ€โœˆ๏ธ", + "name": "woman pilot", + "types": [ + "1f469-1f3fb-200d-2708-fe0f", + "1f469-1f3fc-200d-2708-fe0f", + "1f469-1f3fd-200d-2708-fe0f", + "1f469-1f3fe-200d-2708-fe0f", + "1f469-1f3ff-200d-2708-fe0f" + ], + "keywords": [ + "woman pilot", + "plane", + "pilot" + ] + }, + { + "code": "1f9d1-200d-1f680", + "char": "๐Ÿง‘โ€๐Ÿš€", + "name": "astronaut", + "types": [ + "1f9d1-1f3fb-200d-1f680", + "1f9d1-1f3fc-200d-1f680", + "1f9d1-1f3fd-200d-1f680", + "1f9d1-1f3fe-200d-1f680", + "1f9d1-1f3ff-200d-1f680" + ], + "keywords": [ + "astronaut", + "rocket" + ] + }, + { + "code": "1f468-200d-1f680", + "char": "๐Ÿ‘จโ€๐Ÿš€", + "name": "man astronaut", + "types": [ + "1f468-1f3fb-200d-1f680", + "1f468-1f3fc-200d-1f680", + "1f468-1f3fd-200d-1f680", + "1f468-1f3fe-200d-1f680", + "1f468-1f3ff-200d-1f680" + ], + "keywords": [ + "man astronaut", + "astronaut", + "rocket" + ] + }, + { + "code": "1f469-200d-1f680", + "char": "๐Ÿ‘ฉโ€๐Ÿš€", + "name": "woman astronaut", + "types": [ + "1f469-1f3fb-200d-1f680", + "1f469-1f3fc-200d-1f680", + "1f469-1f3fd-200d-1f680", + "1f469-1f3fe-200d-1f680", + "1f469-1f3ff-200d-1f680" + ], + "keywords": [ + "woman astronaut", + "astronaut", + "rocket" + ] + }, + { + "code": "1f9d1-200d-1f692", + "char": "๐Ÿง‘โ€๐Ÿš’", + "name": "firefighter", + "types": [ + "1f9d1-1f3fb-200d-1f692", + "1f9d1-1f3fc-200d-1f692", + "1f9d1-1f3fd-200d-1f692", + "1f9d1-1f3fe-200d-1f692", + "1f9d1-1f3ff-200d-1f692" + ], + "keywords": [ + "firefighter", + "firetruck" + ] + }, + { + "code": "1f468-200d-1f692", + "char": "๐Ÿ‘จโ€๐Ÿš’", + "name": "man firefighter", + "types": [ + "1f468-1f3fb-200d-1f692", + "1f468-1f3fc-200d-1f692", + "1f468-1f3fd-200d-1f692", + "1f468-1f3fe-200d-1f692", + "1f468-1f3ff-200d-1f692" + ], + "keywords": [ + "man firefighter", + "firefighter", + "firetruck" + ] + }, + { + "code": "1f469-200d-1f692", + "char": "๐Ÿ‘ฉโ€๐Ÿš’", + "name": "woman firefighter", + "types": [ + "1f469-1f3fb-200d-1f692", + "1f469-1f3fc-200d-1f692", + "1f469-1f3fd-200d-1f692", + "1f469-1f3fe-200d-1f692", + "1f469-1f3ff-200d-1f692" + ], + "keywords": [ + "woman firefighter", + "firefighter", + "firetruck" + ] + }, + { + "code": "1f46e", + "char": "๐Ÿ‘ฎ", + "name": "police officer", + "types": [ + "1f46e-1f3fb", + "1f46e-1f3fc", + "1f46e-1f3fd", + "1f46e-1f3fe", + "1f46e-1f3ff" + ], + "keywords": [ + "cop", + "officer", + "police officer" + ] + }, + { + "code": "1f46e-200d-2642-fe0f", + "char": "๐Ÿ‘ฎโ€โ™‚๏ธ", + "name": "man police officer", + "types": [ + "1f46e-1f3fb-200d-2642-fe0f", + "1f46e-1f3fc-200d-2642-fe0f", + "1f46e-1f3fd-200d-2642-fe0f", + "1f46e-1f3fe-200d-2642-fe0f", + "1f46e-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "cop", + "officer", + "police officer", + "man police officer" + ] + }, + { + "code": "1f46e-200d-2640-fe0f", + "char": "๐Ÿ‘ฎโ€โ™€๏ธ", + "name": "woman police officer", + "types": [ + "1f46e-1f3fb-200d-2640-fe0f", + "1f46e-1f3fc-200d-2640-fe0f", + "1f46e-1f3fd-200d-2640-fe0f", + "1f46e-1f3fe-200d-2640-fe0f", + "1f46e-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "cop", + "officer", + "police officer", + "woman police officer" + ] + }, + { + "code": "1f575", + "char": "๐Ÿ•ต", + "name": "detective", + "types": [ + "1f575-1f3fb", + "1f575-1f3fc", + "1f575-1f3fd", + "1f575-1f3fe", + "1f575-1f3ff" + ], + "keywords": [ + "detective", + "sleuth", + "spy" + ] + }, + { + "code": "1f575-fe0f-200d-2642-fe0f", + "char": "๐Ÿ•ต๏ธโ€โ™‚๏ธ", + "name": "man detective", + "types": [ + "1f575-1f3fb-200d-2642-fe0f", + "1f575-1f3fc-200d-2642-fe0f", + "1f575-1f3fd-200d-2642-fe0f", + "1f575-1f3fe-200d-2642-fe0f", + "1f575-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "man detective", + "sleuth", + "spy", + "detective" + ] + }, + { + "code": "1f575-fe0f-200d-2640-fe0f", + "char": "๐Ÿ•ต๏ธโ€โ™€๏ธ", + "name": "woman detective", + "types": [ + "1f575-1f3fb-200d-2640-fe0f", + "1f575-1f3fc-200d-2640-fe0f", + "1f575-1f3fd-200d-2640-fe0f", + "1f575-1f3fe-200d-2640-fe0f", + "1f575-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "woman detective", + "sleuth", + "spy", + "detective" + ] + }, + { + "code": "1f482", + "char": "๐Ÿ’‚", + "name": "guard", + "types": [ + "1f482-1f3fb", + "1f482-1f3fc", + "1f482-1f3fd", + "1f482-1f3fe", + "1f482-1f3ff" + ], + "keywords": [ + "guard" + ] + }, + { + "code": "1f482-200d-2642-fe0f", + "char": "๐Ÿ’‚โ€โ™‚๏ธ", + "name": "man guard", + "types": [ + "1f482-1f3fb-200d-2642-fe0f", + "1f482-1f3fc-200d-2642-fe0f", + "1f482-1f3fd-200d-2642-fe0f", + "1f482-1f3fe-200d-2642-fe0f", + "1f482-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "guard", + "man guard" + ] + }, + { + "code": "1f482-200d-2640-fe0f", + "char": "๐Ÿ’‚โ€โ™€๏ธ", + "name": "woman guard", + "types": [ + "1f482-1f3fb-200d-2640-fe0f", + "1f482-1f3fc-200d-2640-fe0f", + "1f482-1f3fd-200d-2640-fe0f", + "1f482-1f3fe-200d-2640-fe0f", + "1f482-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "guard", + "woman guard" + ] + }, + { + "code": "1f977", + "char": "๐Ÿฅท", + "name": "ninja", + "types": [ + "1f977-1f3fb", + "1f977-1f3fc", + "1f977-1f3fd", + "1f977-1f3fe", + "1f977-1f3ff" + ], + "keywords": [ + "fighter", + "hidden", + "ninja", + "stealth" + ] + }, + { + "code": "1f477", + "char": "๐Ÿ‘ท", + "name": "construction worker", + "types": [ + "1f477-1f3fb", + "1f477-1f3fc", + "1f477-1f3fd", + "1f477-1f3fe", + "1f477-1f3ff" + ], + "keywords": [ + "construction worker", + "hat", + "worker" + ] + }, + { + "code": "1f477-200d-2642-fe0f", + "char": "๐Ÿ‘ทโ€โ™‚๏ธ", + "name": "man construction worker", + "types": [ + "1f477-1f3fb-200d-2642-fe0f", + "1f477-1f3fc-200d-2642-fe0f", + "1f477-1f3fd-200d-2642-fe0f", + "1f477-1f3fe-200d-2642-fe0f", + "1f477-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "man construction worker", + "hat", + "worker", + "construction worker" + ] + }, + { + "code": "1f477-200d-2640-fe0f", + "char": "๐Ÿ‘ทโ€โ™€๏ธ", + "name": "woman construction worker", + "types": [ + "1f477-1f3fb-200d-2640-fe0f", + "1f477-1f3fc-200d-2640-fe0f", + "1f477-1f3fd-200d-2640-fe0f", + "1f477-1f3fe-200d-2640-fe0f", + "1f477-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "woman construction worker", + "hat", + "worker", + "construction worker" + ] + }, + { + "code": "1f934", + "char": "๐Ÿคด", + "name": "prince", + "types": [ + "1f934-1f3fb", + "1f934-1f3fc", + "1f934-1f3fd", + "1f934-1f3fe", + "1f934-1f3ff" + ], + "keywords": [ + "prince" + ] + }, + { + "code": "1f478", + "char": "๐Ÿ‘ธ", + "name": "princess", + "types": [ + "1f478-1f3fb", + "1f478-1f3fc", + "1f478-1f3fd", + "1f478-1f3fe", + "1f478-1f3ff" + ], + "keywords": [ + "fairy tale", + "fantasy", + "princess" + ] + }, + { + "code": "1f473", + "char": "๐Ÿ‘ณ", + "name": "person wearing turban", + "types": [ + "1f473-1f3fb", + "1f473-1f3fc", + "1f473-1f3fd", + "1f473-1f3fe", + "1f473-1f3ff" + ], + "keywords": [ + "person wearing turban", + "turban" + ] + }, + { + "code": "1f473-200d-2642-fe0f", + "char": "๐Ÿ‘ณโ€โ™‚๏ธ", + "name": "man wearing turban", + "types": [ + "1f473-1f3fb-200d-2642-fe0f", + "1f473-1f3fc-200d-2642-fe0f", + "1f473-1f3fd-200d-2642-fe0f", + "1f473-1f3fe-200d-2642-fe0f", + "1f473-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "man wearing turban", + "turban" + ] + }, + { + "code": "1f473-200d-2640-fe0f", + "char": "๐Ÿ‘ณโ€โ™€๏ธ", + "name": "woman wearing turban", + "types": [ + "1f473-1f3fb-200d-2640-fe0f", + "1f473-1f3fc-200d-2640-fe0f", + "1f473-1f3fd-200d-2640-fe0f", + "1f473-1f3fe-200d-2640-fe0f", + "1f473-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "woman wearing turban", + "turban" + ] + }, + { + "code": "1f472", + "char": "๐Ÿ‘ฒ", + "name": "person with skullcap", + "types": [ + "1f472-1f3fb", + "1f472-1f3fc", + "1f472-1f3fd", + "1f472-1f3fe", + "1f472-1f3ff" + ], + "keywords": [ + "gua pi mao", + "hat", + "cap", + "person with skullcap", + "skullcap" + ] + }, + { + "code": "1f9d5", + "char": "๐Ÿง•", + "name": "woman with headscarf", + "types": [ + "1f9d5-1f3fb", + "1f9d5-1f3fc", + "1f9d5-1f3fd", + "1f9d5-1f3fe", + "1f9d5-1f3ff" + ], + "keywords": [ + "headscarf", + "hijab", + "mantilla", + "tichel", + "woman with headscarf", + "bandana", + "head kerchief" + ] + }, + { + "code": "1f935", + "char": "๐Ÿคต", + "name": "person in tuxedo", + "types": [ + "1f935-1f3fb", + "1f935-1f3fc", + "1f935-1f3fd", + "1f935-1f3fe", + "1f935-1f3ff" + ], + "keywords": [ + "groom", + "person in tuxedo", + "tuxedo" + ] + }, + { + "code": "1f935-200d-2642-fe0f", + "char": "๐Ÿคตโ€โ™‚๏ธ", + "name": "man in tuxedo", + "types": [ + "1f935-1f3fb-200d-2642-fe0f", + "1f935-1f3fc-200d-2642-fe0f", + "1f935-1f3fd-200d-2642-fe0f", + "1f935-1f3fe-200d-2642-fe0f", + "1f935-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "groom", + "man in tuxedo", + "tuxedo" + ] + }, + { + "code": "1f935-200d-2640-fe0f", + "char": "๐Ÿคตโ€โ™€๏ธ", + "name": "woman in tuxedo", + "types": [ + "1f935-1f3fb-200d-2640-fe0f", + "1f935-1f3fc-200d-2640-fe0f", + "1f935-1f3fd-200d-2640-fe0f", + "1f935-1f3fe-200d-2640-fe0f", + "1f935-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "groom", + "woman in tuxedo", + "tuxedo" + ] + }, + { + "code": "1f470", + "char": "๐Ÿ‘ฐ", + "name": "person with veil", + "types": [ + "1f470-1f3fb", + "1f470-1f3fc", + "1f470-1f3fd", + "1f470-1f3fe", + "1f470-1f3ff" + ], + "keywords": [ + "bride", + "veil", + "wedding", + "person with veil" + ] + }, + { + "code": "1f470-200d-2642-fe0f", + "char": "๐Ÿ‘ฐโ€โ™‚๏ธ", + "name": "man with veil", + "types": [ + "1f470-1f3fb-200d-2642-fe0f", + "1f470-1f3fc-200d-2642-fe0f", + "1f470-1f3fd-200d-2642-fe0f", + "1f470-1f3fe-200d-2642-fe0f", + "1f470-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "bride", + "veil", + "wedding", + "man with veil" + ] + }, + { + "code": "1f470-200d-2640-fe0f", + "char": "๐Ÿ‘ฐโ€โ™€๏ธ", + "name": "woman with veil", + "types": [ + "1f470-1f3fb-200d-2640-fe0f", + "1f470-1f3fc-200d-2640-fe0f", + "1f470-1f3fd-200d-2640-fe0f", + "1f470-1f3fe-200d-2640-fe0f", + "1f470-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "bride", + "veil", + "wedding", + "woman with veil" + ] + }, + { + "code": "1f930", + "char": "๐Ÿคฐ", + "name": "pregnant woman", + "types": [ + "1f930-1f3fb", + "1f930-1f3fc", + "1f930-1f3fd", + "1f930-1f3fe", + "1f930-1f3ff" + ], + "keywords": [ + "pregnant woman", + "woman" + ] + }, + { + "code": "1f931", + "char": "๐Ÿคฑ", + "name": "breast-feeding", + "types": [ + "1f931-1f3fb", + "1f931-1f3fc", + "1f931-1f3fd", + "1f931-1f3fe", + "1f931-1f3ff" + ], + "keywords": [ + "baby", + "breast-feeding", + "nursing" + ] + }, + { + "code": "1f469-200d-1f37c", + "char": "๐Ÿ‘ฉโ€๐Ÿผ", + "name": "woman feeding baby", + "types": [ + "1f469-1f3fb-200d-1f37c", + "1f469-1f3fc-200d-1f37c", + "1f469-1f3fd-200d-1f37c", + "1f469-1f3fe-200d-1f37c", + "1f469-1f3ff-200d-1f37c" + ], + "keywords": [ + "baby", + "feeding baby", + "nursing", + "woman feeding baby" + ] + }, + { + "code": "1f468-200d-1f37c", + "char": "๐Ÿ‘จโ€๐Ÿผ", + "name": "man feeding baby", + "types": [ + "1f468-1f3fb-200d-1f37c", + "1f468-1f3fc-200d-1f37c", + "1f468-1f3fd-200d-1f37c", + "1f468-1f3fe-200d-1f37c", + "1f468-1f3ff-200d-1f37c" + ], + "keywords": [ + "baby", + "feeding baby", + "nursing", + "man feeding baby" + ] + }, + { + "code": "1f9d1-200d-1f37c", + "char": "๐Ÿง‘โ€๐Ÿผ", + "name": "person feeding baby", + "types": [ + "1f9d1-1f3fb-200d-1f37c", + "1f9d1-1f3fc-200d-1f37c", + "1f9d1-1f3fd-200d-1f37c", + "1f9d1-1f3fe-200d-1f37c", + "1f9d1-1f3ff-200d-1f37c" + ], + "keywords": [ + "baby", + "feeding baby", + "nursing", + "person feeding baby" + ] + }, + { + "code": "1f47c", + "char": "๐Ÿ‘ผ", + "name": "baby angel", + "types": [ + "1f47c-1f3fb", + "1f47c-1f3fc", + "1f47c-1f3fd", + "1f47c-1f3fe", + "1f47c-1f3ff" + ], + "keywords": [ + "angel", + "baby angel", + "face", + "fairy tale", + "fantasy" + ] + }, + { + "code": "1f385", + "char": "๐ŸŽ…", + "name": "Santa Claus", + "types": [ + "1f385-1f3fb", + "1f385-1f3fc", + "1f385-1f3fd", + "1f385-1f3fe", + "1f385-1f3ff" + ], + "keywords": [ + "celebration", + "christmas", + "claus", + "father", + "santa claus" + ] + }, + { + "code": "1f936", + "char": "๐Ÿคถ", + "name": "Mrs. Claus", + "types": [ + "1f936-1f3fb", + "1f936-1f3fc", + "1f936-1f3fd", + "1f936-1f3fe", + "1f936-1f3ff" + ], + "keywords": [ + "celebration", + "christmas", + "claus", + "mother", + "mrs. claus" + ] + }, + { + "code": "1f9d1-200d-1f384", + "char": "๐Ÿง‘โ€๐ŸŽ„", + "name": "mx claus", + "types": [ + "1f9d1-1f3fb-200d-1f384", + "1f9d1-1f3fc-200d-1f384", + "1f9d1-1f3fd-200d-1f384", + "1f9d1-1f3fe-200d-1f384", + "1f9d1-1f3ff-200d-1f384" + ], + "keywords": [ + "claus", + "christmas", + "mx claus" + ] + }, + { + "code": "1f9b8", + "char": "๐Ÿฆธ", + "name": "superhero", + "types": [ + "1f9b8-1f3fb", + "1f9b8-1f3fc", + "1f9b8-1f3fd", + "1f9b8-1f3fe", + "1f9b8-1f3ff" + ], + "keywords": [ + "good", + "hero", + "heroine", + "superhero", + "superpower" + ] + }, + { + "code": "1f9b8-200d-2642-fe0f", + "char": "๐Ÿฆธโ€โ™‚๏ธ", + "name": "man superhero", + "types": [ + "1f9b8-1f3fb-200d-2642-fe0f", + "1f9b8-1f3fc-200d-2642-fe0f", + "1f9b8-1f3fd-200d-2642-fe0f", + "1f9b8-1f3fe-200d-2642-fe0f", + "1f9b8-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "good", + "hero", + "heroine", + "superhero", + "superpower", + "man superhero" + ] + }, + { + "code": "1f9b8-200d-2640-fe0f", + "char": "๐Ÿฆธโ€โ™€๏ธ", + "name": "woman superhero", + "types": [ + "1f9b8-1f3fb-200d-2640-fe0f", + "1f9b8-1f3fc-200d-2640-fe0f", + "1f9b8-1f3fd-200d-2640-fe0f", + "1f9b8-1f3fe-200d-2640-fe0f", + "1f9b8-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "good", + "hero", + "heroine", + "superhero", + "superpower", + "woman superhero" + ] + }, + { + "code": "1f9b9", + "char": "๐Ÿฆน", + "name": "supervillain", + "types": [ + "1f9b9-1f3fb", + "1f9b9-1f3fc", + "1f9b9-1f3fd", + "1f9b9-1f3fe", + "1f9b9-1f3ff" + ], + "keywords": [ + "criminal", + "evil", + "superpower", + "supervillain", + "villain" + ] + }, + { + "code": "1f9b9-200d-2642-fe0f", + "char": "๐Ÿฆนโ€โ™‚๏ธ", + "name": "man supervillain", + "types": [ + "1f9b9-1f3fb-200d-2642-fe0f", + "1f9b9-1f3fc-200d-2642-fe0f", + "1f9b9-1f3fd-200d-2642-fe0f", + "1f9b9-1f3fe-200d-2642-fe0f", + "1f9b9-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "criminal", + "evil", + "superpower", + "man supervillain", + "supervillain", + "villain" + ] + }, + { + "code": "1f9b9-200d-2640-fe0f", + "char": "๐Ÿฆนโ€โ™€๏ธ", + "name": "woman supervillain", + "types": [ + "1f9b9-1f3fb-200d-2640-fe0f", + "1f9b9-1f3fc-200d-2640-fe0f", + "1f9b9-1f3fd-200d-2640-fe0f", + "1f9b9-1f3fe-200d-2640-fe0f", + "1f9b9-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "criminal", + "evil", + "superpower", + "woman supervillain", + "supervillain", + "villain" + ] + }, + { + "code": "1f9d9", + "char": "๐Ÿง™", + "name": "mage", + "types": [ + "1f9d9-1f3fb", + "1f9d9-1f3fc", + "1f9d9-1f3fd", + "1f9d9-1f3fe", + "1f9d9-1f3ff" + ], + "keywords": [ + "mage", + "sorcerer", + "sorceress", + "witch", + "wizard" + ] + }, + { + "code": "1f9d9-200d-2642-fe0f", + "char": "๐Ÿง™โ€โ™‚๏ธ", + "name": "man mage", + "types": [ + "1f9d9-1f3fb-200d-2642-fe0f", + "1f9d9-1f3fc-200d-2642-fe0f", + "1f9d9-1f3fd-200d-2642-fe0f", + "1f9d9-1f3fe-200d-2642-fe0f", + "1f9d9-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "man mage", + "sorcerer", + "sorceress", + "witch", + "wizard", + "mage" + ] + }, + { + "code": "1f9d9-200d-2640-fe0f", + "char": "๐Ÿง™โ€โ™€๏ธ", + "name": "woman mage", + "types": [ + "1f9d9-1f3fb-200d-2640-fe0f", + "1f9d9-1f3fc-200d-2640-fe0f", + "1f9d9-1f3fd-200d-2640-fe0f", + "1f9d9-1f3fe-200d-2640-fe0f", + "1f9d9-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "woman mage", + "sorcerer", + "sorceress", + "witch", + "wizard", + "mage" + ] + }, + { + "code": "1f9da", + "char": "๐Ÿงš", + "name": "fairy", + "types": [ + "1f9da-1f3fb", + "1f9da-1f3fc", + "1f9da-1f3fd", + "1f9da-1f3fe", + "1f9da-1f3ff" + ], + "keywords": [ + "fairy", + "oberon", + "puck", + "titania" + ] + }, + { + "code": "1f9da-200d-2642-fe0f", + "char": "๐Ÿงšโ€โ™‚๏ธ", + "name": "man fairy", + "types": [ + "1f9da-1f3fb-200d-2642-fe0f", + "1f9da-1f3fc-200d-2642-fe0f", + "1f9da-1f3fd-200d-2642-fe0f", + "1f9da-1f3fe-200d-2642-fe0f", + "1f9da-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "man fairy", + "oberon", + "puck", + "titania", + "fairy" + ] + }, + { + "code": "1f9da-200d-2640-fe0f", + "char": "๐Ÿงšโ€โ™€๏ธ", + "name": "woman fairy", + "types": [ + "1f9da-1f3fb-200d-2640-fe0f", + "1f9da-1f3fc-200d-2640-fe0f", + "1f9da-1f3fd-200d-2640-fe0f", + "1f9da-1f3fe-200d-2640-fe0f", + "1f9da-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "woman fairy", + "oberon", + "puck", + "titania", + "fairy" + ] + }, + { + "code": "1f9db", + "char": "๐Ÿง›", + "name": "vampire", + "types": [ + "1f9db-1f3fb", + "1f9db-1f3fc", + "1f9db-1f3fd", + "1f9db-1f3fe", + "1f9db-1f3ff" + ], + "keywords": [ + "dracula", + "undead", + "vampire" + ] + }, + { + "code": "1f9db-200d-2642-fe0f", + "char": "๐Ÿง›โ€โ™‚๏ธ", + "name": "man vampire", + "types": [ + "1f9db-1f3fb-200d-2642-fe0f", + "1f9db-1f3fc-200d-2642-fe0f", + "1f9db-1f3fd-200d-2642-fe0f", + "1f9db-1f3fe-200d-2642-fe0f", + "1f9db-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "dracula", + "undead", + "man vampire", + "vampire" + ] + }, + { + "code": "1f9db-200d-2640-fe0f", + "char": "๐Ÿง›โ€โ™€๏ธ", + "name": "woman vampire", + "types": [ + "1f9db-1f3fb-200d-2640-fe0f", + "1f9db-1f3fc-200d-2640-fe0f", + "1f9db-1f3fd-200d-2640-fe0f", + "1f9db-1f3fe-200d-2640-fe0f", + "1f9db-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "dracula", + "undead", + "woman vampire", + "vampire" + ] + }, + { + "code": "1f9dc", + "char": "๐Ÿงœ", + "name": "merperson", + "types": [ + "1f9dc-1f3fb", + "1f9dc-1f3fc", + "1f9dc-1f3fd", + "1f9dc-1f3fe", + "1f9dc-1f3ff" + ], + "keywords": [ + "mermaid", + "merman", + "merperson", + "merwoman" + ] + }, + { + "code": "1f9dc-200d-2642-fe0f", + "char": "๐Ÿงœโ€โ™‚๏ธ", + "name": "merman", + "types": [ + "1f9dc-1f3fb-200d-2642-fe0f", + "1f9dc-1f3fc-200d-2642-fe0f", + "1f9dc-1f3fd-200d-2642-fe0f", + "1f9dc-1f3fe-200d-2642-fe0f", + "1f9dc-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "triton", + "merman" + ] + }, + { + "code": "1f9dc-200d-2640-fe0f", + "char": "๐Ÿงœโ€โ™€๏ธ", + "name": "mermaid", + "types": [ + "1f9dc-1f3fb-200d-2640-fe0f", + "1f9dc-1f3fc-200d-2640-fe0f", + "1f9dc-1f3fd-200d-2640-fe0f", + "1f9dc-1f3fe-200d-2640-fe0f", + "1f9dc-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "merwoman", + "mermaid" + ] + }, + { + "code": "1f9dd", + "char": "๐Ÿง", + "name": "elf", + "types": [ + "1f9dd-1f3fb", + "1f9dd-1f3fc", + "1f9dd-1f3fd", + "1f9dd-1f3fe", + "1f9dd-1f3ff" + ], + "keywords": [ + "elf", + "magical", + "lotr style" + ] + }, + { + "code": "1f9dd-200d-2642-fe0f", + "char": "๐Ÿงโ€โ™‚๏ธ", + "name": "man elf", + "types": [ + "1f9dd-1f3fb-200d-2642-fe0f", + "1f9dd-1f3fc-200d-2642-fe0f", + "1f9dd-1f3fd-200d-2642-fe0f", + "1f9dd-1f3fe-200d-2642-fe0f", + "1f9dd-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "man elf", + "magical", + "lotr style", + "elf" + ] + }, + { + "code": "1f9dd-200d-2640-fe0f", + "char": "๐Ÿงโ€โ™€๏ธ", + "name": "woman elf", + "types": [ + "1f9dd-1f3fb-200d-2640-fe0f", + "1f9dd-1f3fc-200d-2640-fe0f", + "1f9dd-1f3fd-200d-2640-fe0f", + "1f9dd-1f3fe-200d-2640-fe0f", + "1f9dd-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "woman elf", + "magical", + "lotr style", + "elf" + ] + }, + { + "code": "1f9de", + "char": "๐Ÿงž", + "name": "genie", + "keywords": [ + "djinn", + "genie" + ] + }, + { + "code": "1f9de-200d-2642-fe0f", + "char": "๐Ÿงžโ€โ™‚๏ธ", + "name": "man genie", + "keywords": [ + "djinn", + "man genie", + "genie" + ] + }, + { + "code": "1f9de-200d-2640-fe0f", + "char": "๐Ÿงžโ€โ™€๏ธ", + "name": "woman genie", + "keywords": [ + "djinn", + "woman genie", + "genie" + ] + }, + { + "code": "1f9df", + "char": "๐ŸงŸ", + "name": "zombie", + "keywords": [ + "zombie", + "undead", + "walking dead" + ] + }, + { + "code": "1f9df-200d-2642-fe0f", + "char": "๐ŸงŸโ€โ™‚๏ธ", + "name": "man zombie", + "keywords": [ + "man zombie", + "undead", + "walking dead", + "zombie" + ] + }, + { + "code": "1f9df-200d-2640-fe0f", + "char": "๐ŸงŸโ€โ™€๏ธ", + "name": "woman zombie", + "keywords": [ + "woman zombie", + "undead", + "walking dead", + "zombie" + ] + }, + { + "code": "1f486", + "char": "๐Ÿ’†", + "name": "person getting massage", + "types": [ + "1f486-1f3fb", + "1f486-1f3fc", + "1f486-1f3fd", + "1f486-1f3fe", + "1f486-1f3ff" + ], + "keywords": [ + "massage", + "salon", + "face", + "person getting message" + ] + }, + { + "code": "1f486-200d-2642-fe0f", + "char": "๐Ÿ’†โ€โ™‚๏ธ", + "name": "man getting massage", + "types": [ + "1f486-1f3fb-200d-2642-fe0f", + "1f486-1f3fc-200d-2642-fe0f", + "1f486-1f3fd-200d-2642-fe0f", + "1f486-1f3fe-200d-2642-fe0f", + "1f486-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "massage", + "salon", + "face", + "man getting message" + ] + }, + { + "code": "1f486-200d-2640-fe0f", + "char": "๐Ÿ’†โ€โ™€๏ธ", + "name": "woman getting massage", + "types": [ + "1f486-1f3fb-200d-2640-fe0f", + "1f486-1f3fc-200d-2640-fe0f", + "1f486-1f3fd-200d-2640-fe0f", + "1f486-1f3fe-200d-2640-fe0f", + "1f486-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "massage", + "salon", + "face", + "woman getting message" + ] + }, + { + "code": "1f487", + "char": "๐Ÿ’‡", + "name": "person getting haircut", + "types": [ + "1f487-1f3fb", + "1f487-1f3fc", + "1f487-1f3fd", + "1f487-1f3fe", + "1f487-1f3ff" + ], + "keywords": [ + "barber", + "beauty", + "haircut", + "parlor", + "person getting haircut" + ] + }, + { + "code": "1f487-200d-2642-fe0f", + "char": "๐Ÿ’‡โ€โ™‚๏ธ", + "name": "man getting haircut", + "types": [ + "1f487-1f3fb-200d-2642-fe0f", + "1f487-1f3fc-200d-2642-fe0f", + "1f487-1f3fd-200d-2642-fe0f", + "1f487-1f3fe-200d-2642-fe0f", + "1f487-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "barber", + "beauty", + "haircut", + "parlor", + "man getting haircut" + ] + }, + { + "code": "1f487-200d-2640-fe0f", + "char": "๐Ÿ’‡โ€โ™€๏ธ", + "name": "woman getting haircut", + "types": [ + "1f487-1f3fb-200d-2640-fe0f", + "1f487-1f3fc-200d-2640-fe0f", + "1f487-1f3fd-200d-2640-fe0f", + "1f487-1f3fe-200d-2640-fe0f", + "1f487-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "barber", + "beauty", + "haircut", + "parlor", + "woman getting haircut" + ] + }, + { + "code": "1f6b6", + "char": "๐Ÿšถ", + "name": "person walking", + "types": [ + "1f6b6-1f3fb", + "1f6b6-1f3fc", + "1f6b6-1f3fd", + "1f6b6-1f3fe", + "1f6b6-1f3ff" + ], + "keywords": [ + "hike", + "walking", + "person walking" + ] + }, + { + "code": "1f6b6-200d-2642-fe0f", + "char": "๐Ÿšถโ€โ™‚๏ธ", + "name": "man walking", + "types": [ + "1f6b6-1f3fb-200d-2642-fe0f", + "1f6b6-1f3fc-200d-2642-fe0f", + "1f6b6-1f3fd-200d-2642-fe0f", + "1f6b6-1f3fe-200d-2642-fe0f", + "1f6b6-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "hike", + "walking", + "man walking" + ] + }, + { + "code": "1f6b6-200d-2640-fe0f", + "char": "๐Ÿšถโ€โ™€๏ธ", + "name": "woman walking", + "types": [ + "1f6b6-1f3fb-200d-2640-fe0f", + "1f6b6-1f3fc-200d-2640-fe0f", + "1f6b6-1f3fd-200d-2640-fe0f", + "1f6b6-1f3fe-200d-2640-fe0f", + "1f6b6-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "hike", + "walking", + "woman walking" + ] + }, + { + "code": "1f9cd", + "char": "๐Ÿง", + "name": "person standing", + "types": [ + "1f9cd-1f3fb", + "1f9cd-1f3fc", + "1f9cd-1f3fd", + "1f9cd-1f3fe", + "1f9cd-1f3ff" + ], + "keywords": [ + "standing", + "person standing" + ] + }, + { + "code": "1f9cd-200d-2642-fe0f", + "char": "๐Ÿงโ€โ™‚๏ธ", + "name": "man standing", + "types": [ + "1f9cd-1f3fb-200d-2642-fe0f", + "1f9cd-1f3fc-200d-2642-fe0f", + "1f9cd-1f3fd-200d-2642-fe0f", + "1f9cd-1f3fe-200d-2642-fe0f", + "1f9cd-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "standing", + "man standing" + ] + }, + { + "code": "1f9cd-200d-2640-fe0f", + "char": "๐Ÿงโ€โ™€๏ธ", + "name": "woman standing", + "types": [ + "1f9cd-1f3fb-200d-2640-fe0f", + "1f9cd-1f3fc-200d-2640-fe0f", + "1f9cd-1f3fd-200d-2640-fe0f", + "1f9cd-1f3fe-200d-2640-fe0f", + "1f9cd-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "standing", + "woman standing" + ] + }, + { + "code": "1f9ce", + "char": "๐ŸงŽ", + "name": "person kneeling", + "types": [ + "1f9ce-1f3fb", + "1f9ce-1f3fc", + "1f9ce-1f3fd", + "1f9ce-1f3fe", + "1f9ce-1f3ff" + ], + "keywords": [ + "kneeling", + "person kneeling" + ] + }, + { + "code": "1f9ce-200d-2642-fe0f", + "char": "๐ŸงŽโ€โ™‚๏ธ", + "name": "man kneeling", + "types": [ + "1f9ce-1f3fb-200d-2642-fe0f", + "1f9ce-1f3fc-200d-2642-fe0f", + "1f9ce-1f3fd-200d-2642-fe0f", + "1f9ce-1f3fe-200d-2642-fe0f", + "1f9ce-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "kneeling", + "man kneeling" + ] + }, + { + "code": "1f9ce-200d-2640-fe0f", + "char": "๐ŸงŽโ€โ™€๏ธ", + "name": "woman kneeling", + "types": [ + "1f9ce-1f3fb-200d-2640-fe0f", + "1f9ce-1f3fc-200d-2640-fe0f", + "1f9ce-1f3fd-200d-2640-fe0f", + "1f9ce-1f3fe-200d-2640-fe0f", + "1f9ce-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "kneeling", + "woman kneeling" + ] + }, + { + "code": "1f9d1-200d-1f9af", + "char": "๐Ÿง‘โ€๐Ÿฆฏ", + "name": "person with white cane", + "types": [ + "1f9d1-1f3fb-200d-1f9af", + "1f9d1-1f3fc-200d-1f9af", + "1f9d1-1f3fd-200d-1f9af", + "1f9d1-1f3fe-200d-1f9af", + "1f9d1-1f3ff-200d-1f9af" + ], + "keywords": [ + "accessibility", + "blind", + "white cane", + "person with white cane" + ] + }, + { + "code": "1f468-200d-1f9af", + "char": "๐Ÿ‘จโ€๐Ÿฆฏ", + "name": "man with white cane", + "types": [ + "1f468-1f3fb-200d-1f9af", + "1f468-1f3fc-200d-1f9af", + "1f468-1f3fd-200d-1f9af", + "1f468-1f3fe-200d-1f9af", + "1f468-1f3ff-200d-1f9af" + ], + "keywords": [ + "accessibility", + "blind", + "white cane", + "man with white cane" + ] + }, + { + "code": "1f469-200d-1f9af", + "char": "๐Ÿ‘ฉโ€๐Ÿฆฏ", + "name": "woman with white cane", + "types": [ + "1f469-1f3fb-200d-1f9af", + "1f469-1f3fc-200d-1f9af", + "1f469-1f3fd-200d-1f9af", + "1f469-1f3fe-200d-1f9af", + "1f469-1f3ff-200d-1f9af" + ], + "keywords": [ + "accessibility", + "blind", + "white cane", + "woman with white cane" + ] + }, + { + "code": "1f9d1-200d-1f9bc", + "char": "๐Ÿง‘โ€๐Ÿฆผ", + "name": "person in motorized wheelchair", + "types": [ + "1f9d1-1f3fb-200d-1f9bc", + "1f9d1-1f3fc-200d-1f9bc", + "1f9d1-1f3fd-200d-1f9bc", + "1f9d1-1f3fe-200d-1f9bc", + "1f9d1-1f3ff-200d-1f9bc" + ], + "keywords": [ + "accessibility", + "wheelchair", + "person in motorized wheelchair" + ] + }, + { + "code": "1f468-200d-1f9bc", + "char": "๐Ÿ‘จโ€๐Ÿฆผ", + "name": "man in motorized wheelchair", + "types": [ + "1f468-1f3fb-200d-1f9bc", + "1f468-1f3fc-200d-1f9bc", + "1f468-1f3fd-200d-1f9bc", + "1f468-1f3fe-200d-1f9bc", + "1f468-1f3ff-200d-1f9bc" + ], + "keywords": [ + "accessibility", + "wheelchair", + "man in motorized wheelchair" + ] + }, + { + "code": "1f469-200d-1f9bc", + "char": "๐Ÿ‘ฉโ€๐Ÿฆผ", + "name": "woman in motorized wheelchair", + "types": [ + "1f469-1f3fb-200d-1f9bc", + "1f469-1f3fc-200d-1f9bc", + "1f469-1f3fd-200d-1f9bc", + "1f469-1f3fe-200d-1f9bc", + "1f469-1f3ff-200d-1f9bc" + ], + "keywords": [ + "accessibility", + "wheelchair", + "woman in motorized wheelchair" + ] + }, + { + "code": "1f9d1-200d-1f9bd", + "char": "๐Ÿง‘โ€๐Ÿฆฝ", + "name": "person in manual wheelchair", + "types": [ + "1f9d1-1f3fb-200d-1f9bd", + "1f9d1-1f3fc-200d-1f9bd", + "1f9d1-1f3fd-200d-1f9bd", + "1f9d1-1f3fe-200d-1f9bd", + "1f9d1-1f3ff-200d-1f9bd" + ], + "keywords": [ + "accessibility", + "wheelchair", + "person in manual wheelchair" + ] + }, + { + "code": "1f468-200d-1f9bd", + "char": "๐Ÿ‘จโ€๐Ÿฆฝ", + "name": "man in manual wheelchair", + "types": [ + "1f468-1f3fb-200d-1f9bd", + "1f468-1f3fc-200d-1f9bd", + "1f468-1f3fd-200d-1f9bd", + "1f468-1f3fe-200d-1f9bd", + "1f468-1f3ff-200d-1f9bd" + ], + "keywords": [ + "accessibility", + "wheelchair", + "man in manual wheelchair" + ] + }, + { + "code": "1f469-200d-1f9bd", + "char": "๐Ÿ‘ฉโ€๐Ÿฆฝ", + "name": "woman in manual wheelchair", + "types": [ + "1f469-1f3fb-200d-1f9bd", + "1f469-1f3fc-200d-1f9bd", + "1f469-1f3fd-200d-1f9bd", + "1f469-1f3fe-200d-1f9bd", + "1f469-1f3ff-200d-1f9bd" + ], + "keywords": [ + "accessibility", + "wheelchair", + "woman in manual wheelchair" + ] + }, + { + "code": "1f3c3", + "char": "๐Ÿƒ", + "name": "person running", + "types": [ + "1f3c3-1f3fb", + "1f3c3-1f3fc", + "1f3c3-1f3fd", + "1f3c3-1f3fe", + "1f3c3-1f3ff" + ], + "keywords": [ + "marathon", + "runner", + "running", + "person running" + ] + }, + { + "code": "1f3c3-200d-2642-fe0f", + "char": "๐Ÿƒโ€โ™‚๏ธ", + "name": "man running", + "types": [ + "1f3c3-1f3fb-200d-2642-fe0f", + "1f3c3-1f3fc-200d-2642-fe0f", + "1f3c3-1f3fd-200d-2642-fe0f", + "1f3c3-1f3fe-200d-2642-fe0f", + "1f3c3-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "marathon", + "runner", + "running", + "man running" + ] + }, + { + "code": "1f3c3-200d-2640-fe0f", + "char": "๐Ÿƒโ€โ™€๏ธ", + "name": "woman running", + "types": [ + "1f3c3-1f3fb-200d-2640-fe0f", + "1f3c3-1f3fc-200d-2640-fe0f", + "1f3c3-1f3fd-200d-2640-fe0f", + "1f3c3-1f3fe-200d-2640-fe0f", + "1f3c3-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "marathon", + "runner", + "running", + "woman running" + ] + }, + { + "code": "1f483", + "char": "๐Ÿ’ƒ", + "name": "woman dancing", + "types": [ + "1f483-1f3fb", + "1f483-1f3fc", + "1f483-1f3fd", + "1f483-1f3fe", + "1f483-1f3ff" + ], + "keywords": [ + "dancer", + "woman dancing", + "dancing" + ] + }, + { + "code": "1f57a", + "char": "๐Ÿ•บ", + "name": "man dancing", + "types": [ + "1f57a-1f3fb", + "1f57a-1f3fc", + "1f57a-1f3fd", + "1f57a-1f3fe", + "1f57a-1f3ff" + ], + "keywords": [ + "dancer", + "man dancing", + "dancing" + ] + }, + { + "code": "1f574", + "char": "๐Ÿ•ด", + "name": "person in suit levitating", + "types": [ + "1f574-1f3fb", + "1f574-1f3fc", + "1f574-1f3fd", + "1f574-1f3fe", + "1f574-1f3ff" + ], + "keywords": [ + "business", + "person in suit levitating", + "suit" + ] + }, + { + "code": "1f46f", + "char": "๐Ÿ‘ฏ", + "name": "people with bunny ears", + "keywords": [ + "bunny ears", + "dancer", + "partying", + "people with bunny ears" + ] + }, + { + "code": "1f46f-200d-2642-fe0f", + "char": "๐Ÿ‘ฏโ€โ™‚๏ธ", + "name": "men with bunny ears", + "keywords": [ + "bunny ears", + "dancer", + "partying", + "men with bunny ears" + ] + }, + { + "code": "1f46f-200d-2640-fe0f", + "char": "๐Ÿ‘ฏโ€โ™€๏ธ", + "name": "women with bunny ears", + "keywords": [ + "bunny ears", + "dancer", + "partying", + "women with bunny ears" + ] + }, + { + "code": "1f9d6", + "char": "๐Ÿง–", + "name": "person in steamy room", + "types": [ + "1f9d6-1f3fb", + "1f9d6-1f3fc", + "1f9d6-1f3fd", + "1f9d6-1f3fe", + "1f9d6-1f3ff" + ], + "keywords": [ + "sauna", + "steam room", + "hamam", + "steambath", + "person in steamy room" + ] + }, + { + "code": "1f9d6-200d-2642-fe0f", + "char": "๐Ÿง–โ€โ™‚๏ธ", + "name": "man in steamy room", + "types": [ + "1f9d6-1f3fb-200d-2642-fe0f", + "1f9d6-1f3fc-200d-2642-fe0f", + "1f9d6-1f3fd-200d-2642-fe0f", + "1f9d6-1f3fe-200d-2642-fe0f", + "1f9d6-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "sauna", + "steam room", + "hamam", + "steambath", + "man in steamy room" + ] + }, + { + "code": "1f9d6-200d-2640-fe0f", + "char": "๐Ÿง–โ€โ™€๏ธ", + "name": "woman in steamy room", + "types": [ + "1f9d6-1f3fb-200d-2640-fe0f", + "1f9d6-1f3fc-200d-2640-fe0f", + "1f9d6-1f3fd-200d-2640-fe0f", + "1f9d6-1f3fe-200d-2640-fe0f", + "1f9d6-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "sauna", + "steam room", + "hamam", + "steambath", + "woman in steamy room" + ] + }, + { + "code": "1f9d7", + "char": "๐Ÿง—", + "name": "person climbing", + "types": [ + "1f9d7-1f3fb", + "1f9d7-1f3fc", + "1f9d7-1f3fd", + "1f9d7-1f3fe", + "1f9d7-1f3ff" + ], + "keywords": [ + "climber", + "person climbing", + "climbing" + ] + }, + { + "code": "1f9d7-200d-2642-fe0f", + "char": "๐Ÿง—โ€โ™‚๏ธ", + "name": "man climbing", + "types": [ + "1f9d7-1f3fb-200d-2642-fe0f", + "1f9d7-1f3fc-200d-2642-fe0f", + "1f9d7-1f3fd-200d-2642-fe0f", + "1f9d7-1f3fe-200d-2642-fe0f", + "1f9d7-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "climber", + "man climbing", + "climbing" + ] + }, + { + "code": "1f9d7-200d-2640-fe0f", + "char": "๐Ÿง—โ€โ™€๏ธ", + "name": "woman climbing", + "types": [ + "1f9d7-1f3fb-200d-2640-fe0f", + "1f9d7-1f3fc-200d-2640-fe0f", + "1f9d7-1f3fd-200d-2640-fe0f", + "1f9d7-1f3fe-200d-2640-fe0f", + "1f9d7-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "climber", + "woman climbing", + "climbing" + ] + }, + { + "code": "1f93a", + "char": "๐Ÿคบ", + "name": "person fencing", + "keywords": [ + "fencer", + "fencing", + "sword", + "person fencing" + ] + }, + { + "code": "1f3c7", + "char": "๐Ÿ‡", + "name": "horse racing", + "types": [ + "1f3c7-1f3fb", + "1f3c7-1f3fc", + "1f3c7-1f3fd", + "1f3c7-1f3fe", + "1f3c7-1f3ff" + ], + "keywords": [ + "horse racing", + "jockey", + "racehorse", + "racing" + ] + }, + { + "code": "26f7", + "char": "โ›ท", + "name": "skier", + "keywords": [ + "skier", + "snow" + ] + }, + { + "code": "1f3c2", + "char": "๐Ÿ‚", + "name": "snowboarder", + "types": [ + "1f3c2-1f3fb", + "1f3c2-1f3fc", + "1f3c2-1f3fd", + "1f3c2-1f3fe", + "1f3c2-1f3ff" + ], + "keywords": [ + "ski", + "snowboarder" + ] + }, + { + "code": "1f3cc", + "char": "๐ŸŒ", + "name": "person golfing", + "types": [ + "1f3cc-1f3fb", + "1f3cc-1f3fc", + "1f3cc-1f3fd", + "1f3cc-1f3fe", + "1f3cc-1f3ff" + ], + "keywords": [ + "ball", + "golf", + "person golfing" + ] + }, + { + "code": "1f3cc-fe0f-200d-2642-fe0f", + "char": "๐ŸŒ๏ธโ€โ™‚๏ธ", + "name": "man golfing", + "types": [ + "1f3cc-1f3fb-200d-2642-fe0f", + "1f3cc-1f3fc-200d-2642-fe0f", + "1f3cc-1f3fd-200d-2642-fe0f", + "1f3cc-1f3fe-200d-2642-fe0f", + "1f3cc-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "ball", + "golf", + "man golfing" + ] + }, + { + "code": "1f3cc-fe0f-200d-2640-fe0f", + "char": "๐ŸŒ๏ธโ€โ™€๏ธ", + "name": "woman golfing", + "types": [ + "1f3cc-1f3fb-200d-2640-fe0f", + "1f3cc-1f3fc-200d-2640-fe0f", + "1f3cc-1f3fd-200d-2640-fe0f", + "1f3cc-1f3fe-200d-2640-fe0f", + "1f3cc-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "ball", + "golf", + "woman golfing" + ] + }, + { + "code": "1f3c4", + "char": "๐Ÿ„", + "name": "person surfing", + "types": [ + "1f3c4-1f3fb", + "1f3c4-1f3fc", + "1f3c4-1f3fd", + "1f3c4-1f3fe", + "1f3c4-1f3ff" + ], + "keywords": [ + "surfer", + "surfing", + "person surfing" + ] + }, + { + "code": "1f3c4-200d-2642-fe0f", + "char": "๐Ÿ„โ€โ™‚๏ธ", + "name": "man surfing", + "types": [ + "1f3c4-1f3fb-200d-2642-fe0f", + "1f3c4-1f3fc-200d-2642-fe0f", + "1f3c4-1f3fd-200d-2642-fe0f", + "1f3c4-1f3fe-200d-2642-fe0f", + "1f3c4-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "surfer", + "surfing", + "man surfing" + ] + }, + { + "code": "1f3c4-200d-2640-fe0f", + "char": "๐Ÿ„โ€โ™€๏ธ", + "name": "woman surfing", + "types": [ + "1f3c4-1f3fb-200d-2640-fe0f", + "1f3c4-1f3fc-200d-2640-fe0f", + "1f3c4-1f3fd-200d-2640-fe0f", + "1f3c4-1f3fe-200d-2640-fe0f", + "1f3c4-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "surfer", + "surfing", + "woman surfing" + ] + }, + { + "code": "1f6a3", + "char": "๐Ÿšฃ", + "name": "person rowing boat", + "types": [ + "1f6a3-1f3fb", + "1f6a3-1f3fc", + "1f6a3-1f3fd", + "1f6a3-1f3fe", + "1f6a3-1f3ff" + ], + "keywords": [ + "boat", + "rowboat", + "person rowing boat" + ] + }, + { + "code": "1f6a3-200d-2642-fe0f", + "char": "๐Ÿšฃโ€โ™‚๏ธ", + "name": "man rowing boat", + "types": [ + "1f6a3-1f3fb-200d-2642-fe0f", + "1f6a3-1f3fc-200d-2642-fe0f", + "1f6a3-1f3fd-200d-2642-fe0f", + "1f6a3-1f3fe-200d-2642-fe0f", + "1f6a3-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "boat", + "rowboat", + "man rowing boat" + ] + }, + { + "code": "1f6a3-200d-2640-fe0f", + "char": "๐Ÿšฃโ€โ™€๏ธ", + "name": "woman rowing boat", + "types": [ + "1f6a3-1f3fb-200d-2640-fe0f", + "1f6a3-1f3fc-200d-2640-fe0f", + "1f6a3-1f3fd-200d-2640-fe0f", + "1f6a3-1f3fe-200d-2640-fe0f", + "1f6a3-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "boat", + "rowboat", + "woman rowing boat" + ] + }, + { + "code": "1f3ca", + "char": "๐ŸŠ", + "name": "person swimming", + "types": [ + "1f3ca-1f3fb", + "1f3ca-1f3fc", + "1f3ca-1f3fd", + "1f3ca-1f3fe", + "1f3ca-1f3ff" + ], + "keywords": [ + "swimming", + "swimmer", + "person swimming" + ] + }, + { + "code": "1f3ca-200d-2642-fe0f", + "char": "๐ŸŠโ€โ™‚๏ธ", + "name": "man swimming", + "types": [ + "1f3ca-1f3fb-200d-2642-fe0f", + "1f3ca-1f3fc-200d-2642-fe0f", + "1f3ca-1f3fd-200d-2642-fe0f", + "1f3ca-1f3fe-200d-2642-fe0f", + "1f3ca-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "swimming", + "swimmer", + "man swimming" + ] + }, + { + "code": "1f3ca-200d-2640-fe0f", + "char": "๐ŸŠโ€โ™€๏ธ", + "name": "woman swimming", + "types": [ + "1f3ca-1f3fb-200d-2640-fe0f", + "1f3ca-1f3fc-200d-2640-fe0f", + "1f3ca-1f3fd-200d-2640-fe0f", + "1f3ca-1f3fe-200d-2640-fe0f", + "1f3ca-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "swimming", + "swimmer", + "woman swimming" + ] + }, + { + "code": "26f9", + "char": "โ›น", + "name": "person bouncing ball", + "types": [ + "26f9-1f3fb", + "26f9-1f3fc", + "26f9-1f3fd", + "26f9-1f3fe", + "26f9-1f3ff" + ], + "keywords": [ + "ball", + "person bouncing ball", + "bouncing ball" + ] + }, + { + "code": "26f9-fe0f-200d-2642-fe0f", + "char": "โ›น๏ธโ€โ™‚๏ธ", + "name": "man bouncing ball", + "types": [ + "26f9-1f3fb-200d-2642-fe0f", + "26f9-1f3fc-200d-2642-fe0f", + "26f9-1f3fd-200d-2642-fe0f", + "26f9-1f3fe-200d-2642-fe0f", + "26f9-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "ball", + "man bouncing ball", + "bouncing ball" + ] + }, + { + "code": "26f9-fe0f-200d-2640-fe0f", + "char": "โ›น๏ธโ€โ™€๏ธ", + "name": "woman bouncing ball", + "types": [ + "26f9-1f3fb-200d-2640-fe0f", + "26f9-1f3fc-200d-2640-fe0f", + "26f9-1f3fd-200d-2640-fe0f", + "26f9-1f3fe-200d-2640-fe0f", + "26f9-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "ball", + "woman bouncing ball", + "bouncing ball" + ] + }, + { + "code": "1f3cb", + "char": "๐Ÿ‹", + "name": "person lifting weights", + "types": [ + "1f3cb-1f3fb", + "1f3cb-1f3fc", + "1f3cb-1f3fd", + "1f3cb-1f3fe", + "1f3cb-1f3ff" + ], + "keywords": [ + "lifter", + "weight", + "person lifting weights" + ] + }, + { + "code": "1f3cb-fe0f-200d-2642-fe0f", + "char": "๐Ÿ‹๏ธโ€โ™‚๏ธ", + "name": "man lifting weights", + "types": [ + "1f3cb-1f3fb-200d-2642-fe0f", + "1f3cb-1f3fc-200d-2642-fe0f", + "1f3cb-1f3fd-200d-2642-fe0f", + "1f3cb-1f3fe-200d-2642-fe0f", + "1f3cb-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "lifter", + "weight", + "man lifting weights" + ] + }, + { + "code": "1f3cb-fe0f-200d-2640-fe0f", + "char": "๐Ÿ‹๏ธโ€โ™€๏ธ", + "name": "woman lifting weights", + "types": [ + "1f3cb-1f3fb-200d-2640-fe0f", + "1f3cb-1f3fc-200d-2640-fe0f", + "1f3cb-1f3fd-200d-2640-fe0f", + "1f3cb-1f3fe-200d-2640-fe0f", + "1f3cb-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "lifter", + "weight", + "woman lifting weights" + ] + }, + { + "code": "1f6b4", + "char": "๐Ÿšด", + "name": "person biking", + "types": [ + "1f6b4-1f3fb", + "1f6b4-1f3fc", + "1f6b4-1f3fd", + "1f6b4-1f3fe", + "1f6b4-1f3ff" + ], + "keywords": [ + "bicycle", + "biking", + "bike", + "cyclist", + "person biking" + ] + }, + { + "code": "1f6b4-200d-2642-fe0f", + "char": "๐Ÿšดโ€โ™‚๏ธ", + "name": "man biking", + "types": [ + "1f6b4-1f3fb-200d-2642-fe0f", + "1f6b4-1f3fc-200d-2642-fe0f", + "1f6b4-1f3fd-200d-2642-fe0f", + "1f6b4-1f3fe-200d-2642-fe0f", + "1f6b4-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "bicycle", + "biking", + "bike", + "cyclist", + "man biking" + ] + }, + { + "code": "1f6b4-200d-2640-fe0f", + "char": "๐Ÿšดโ€โ™€๏ธ", + "name": "woman biking", + "types": [ + "1f6b4-1f3fb-200d-2640-fe0f", + "1f6b4-1f3fc-200d-2640-fe0f", + "1f6b4-1f3fd-200d-2640-fe0f", + "1f6b4-1f3fe-200d-2640-fe0f", + "1f6b4-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "bicycle", + "biking", + "bike", + "cyclist", + "woman biking" + ] + }, + { + "code": "1f6b5", + "char": "๐Ÿšต", + "name": "person mountain biking", + "types": [ + "1f6b5-1f3fb", + "1f6b5-1f3fc", + "1f6b5-1f3fd", + "1f6b5-1f3fe", + "1f6b5-1f3ff" + ], + "keywords": [ + "bicycle", + "bicyclist", + "bike", + "cyclist", + "mountain", + "person mountain biking" + ] + }, + { + "code": "1f6b5-200d-2642-fe0f", + "char": "๐Ÿšตโ€โ™‚๏ธ", + "name": "man mountain biking", + "types": [ + "1f6b5-1f3fb-200d-2642-fe0f", + "1f6b5-1f3fc-200d-2642-fe0f", + "1f6b5-1f3fd-200d-2642-fe0f", + "1f6b5-1f3fe-200d-2642-fe0f", + "1f6b5-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "bicycle", + "bicyclist", + "bike", + "cyclist", + "mountain", + "man mountain biking" + ] + }, + { + "code": "1f6b5-200d-2640-fe0f", + "char": "๐Ÿšตโ€โ™€๏ธ", + "name": "woman mountain biking", + "types": [ + "1f6b5-1f3fb-200d-2640-fe0f", + "1f6b5-1f3fc-200d-2640-fe0f", + "1f6b5-1f3fd-200d-2640-fe0f", + "1f6b5-1f3fe-200d-2640-fe0f", + "1f6b5-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "bicycle", + "bicyclist", + "bike", + "cyclist", + "mountain", + "woman mountain biking" + ] + }, + { + "code": "1f938", + "char": "๐Ÿคธ", + "name": "person cartwheeling", + "types": [ + "1f938-1f3fb", + "1f938-1f3fc", + "1f938-1f3fd", + "1f938-1f3fe", + "1f938-1f3ff" + ], + "keywords": [ + "cartwheel", + "gymnastics", + "person cartwheeling" + ] + }, + { + "code": "1f938-200d-2642-fe0f", + "char": "๐Ÿคธโ€โ™‚๏ธ", + "name": "man cartwheeling", + "types": [ + "1f938-1f3fb-200d-2642-fe0f", + "1f938-1f3fc-200d-2642-fe0f", + "1f938-1f3fd-200d-2642-fe0f", + "1f938-1f3fe-200d-2642-fe0f", + "1f938-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "cartwheel", + "gymnastics", + "man cartwheeling" + ] + }, + { + "code": "1f938-200d-2640-fe0f", + "char": "๐Ÿคธโ€โ™€๏ธ", + "name": "woman cartwheeling", + "types": [ + "1f938-1f3fb-200d-2640-fe0f", + "1f938-1f3fc-200d-2640-fe0f", + "1f938-1f3fd-200d-2640-fe0f", + "1f938-1f3fe-200d-2640-fe0f", + "1f938-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "cartwheel", + "gymnastics", + "woman cartwheeling" + ] + }, + { + "code": "1f93c", + "char": "๐Ÿคผ", + "name": "people wrestling", + "keywords": [ + "wrestler", + "people wrestling" + ] + }, + { + "code": "1f93c-200d-2642-fe0f", + "char": "๐Ÿคผโ€โ™‚๏ธ", + "name": "men wrestling", + "keywords": [ + "wrestler", + "man wrestling" + ] + }, + { + "code": "1f93c-200d-2640-fe0f", + "char": "๐Ÿคผโ€โ™€๏ธ", + "name": "women wrestling", + "keywords": [ + "wrestler", + "woman wrestling" + ] + }, + { + "code": "1f93d", + "char": "๐Ÿคฝ", + "name": "person playing water polo", + "types": [ + "1f93d-1f3fb", + "1f93d-1f3fc", + "1f93d-1f3fd", + "1f93d-1f3fe", + "1f93d-1f3ff" + ], + "keywords": [ + "polo", + "water polo", + "person playing water polo" + ] + }, + { + "code": "1f93d-200d-2642-fe0f", + "char": "๐Ÿคฝโ€โ™‚๏ธ", + "name": "man playing water polo", + "types": [ + "1f93d-1f3fb-200d-2642-fe0f", + "1f93d-1f3fc-200d-2642-fe0f", + "1f93d-1f3fd-200d-2642-fe0f", + "1f93d-1f3fe-200d-2642-fe0f", + "1f93d-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "polo", + "water polo", + "man playing water polo" + ] + }, + { + "code": "1f93d-200d-2640-fe0f", + "char": "๐Ÿคฝโ€โ™€๏ธ", + "name": "woman playing water polo", + "types": [ + "1f93d-1f3fb-200d-2640-fe0f", + "1f93d-1f3fc-200d-2640-fe0f", + "1f93d-1f3fd-200d-2640-fe0f", + "1f93d-1f3fe-200d-2640-fe0f", + "1f93d-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "polo", + "water polo", + "woman playing water polo" + ] + }, + { + "code": "1f93e", + "char": "๐Ÿคพ", + "name": "person playing handball", + "types": [ + "1f93e-1f3fb", + "1f93e-1f3fc", + "1f93e-1f3fd", + "1f93e-1f3fe", + "1f93e-1f3ff" + ], + "keywords": [ + "ball", + "handball", + "person playing handball" + ] + }, + { + "code": "1f93e-200d-2642-fe0f", + "char": "๐Ÿคพโ€โ™‚๏ธ", + "name": "man playing handball", + "types": [ + "1f93e-1f3fb-200d-2642-fe0f", + "1f93e-1f3fc-200d-2642-fe0f", + "1f93e-1f3fd-200d-2642-fe0f", + "1f93e-1f3fe-200d-2642-fe0f", + "1f93e-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "ball", + "handball", + "man playing handball" + ] + }, + { + "code": "1f93e-200d-2640-fe0f", + "char": "๐Ÿคพโ€โ™€๏ธ", + "name": "woman playing handball", + "types": [ + "1f93e-1f3fb-200d-2640-fe0f", + "1f93e-1f3fc-200d-2640-fe0f", + "1f93e-1f3fd-200d-2640-fe0f", + "1f93e-1f3fe-200d-2640-fe0f", + "1f93e-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "ball", + "handball", + "woman playing handball" + ] + }, + { + "code": "1f939", + "char": "๐Ÿคน", + "name": "person juggling", + "types": [ + "1f939-1f3fb", + "1f939-1f3fc", + "1f939-1f3fd", + "1f939-1f3fe", + "1f939-1f3ff" + ], + "keywords": [ + "balance", + "juggle", + "multitask", + "skill", + "person juggling" + ] + }, + { + "code": "1f939-200d-2642-fe0f", + "char": "๐Ÿคนโ€โ™‚๏ธ", + "name": "man juggling", + "types": [ + "1f939-1f3fb-200d-2642-fe0f", + "1f939-1f3fc-200d-2642-fe0f", + "1f939-1f3fd-200d-2642-fe0f", + "1f939-1f3fe-200d-2642-fe0f", + "1f939-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "balance", + "juggle", + "multitask", + "skill", + "man juggling" + ] + }, + { + "code": "1f939-200d-2640-fe0f", + "char": "๐Ÿคนโ€โ™€๏ธ", + "name": "woman juggling", + "types": [ + "1f939-1f3fb-200d-2640-fe0f", + "1f939-1f3fc-200d-2640-fe0f", + "1f939-1f3fd-200d-2640-fe0f", + "1f939-1f3fe-200d-2640-fe0f", + "1f939-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "balance", + "juggle", + "multitask", + "skill", + "woman juggling" + ] + }, + { + "code": "1f9d8", + "char": "๐Ÿง˜", + "name": "person in lotus position", + "types": [ + "1f9d8-1f3fb", + "1f9d8-1f3fc", + "1f9d8-1f3fd", + "1f9d8-1f3fe", + "1f9d8-1f3ff" + ], + "keywords": [ + "meditation", + "yoga", + "serenity", + "person in lotus position" + ] + }, + { + "code": "1f9d8-200d-2642-fe0f", + "char": "๐Ÿง˜โ€โ™‚๏ธ", + "name": "man in lotus position", + "types": [ + "1f9d8-1f3fb-200d-2642-fe0f", + "1f9d8-1f3fc-200d-2642-fe0f", + "1f9d8-1f3fd-200d-2642-fe0f", + "1f9d8-1f3fe-200d-2642-fe0f", + "1f9d8-1f3ff-200d-2642-fe0f" + ], + "keywords": [ + "meditation", + "yoga", + "serenity", + "man in lotus position" + ] + }, + { + "code": "1f9d8-200d-2640-fe0f", + "char": "๐Ÿง˜โ€โ™€๏ธ", + "name": "woman in lotus position", + "types": [ + "1f9d8-1f3fb-200d-2640-fe0f", + "1f9d8-1f3fc-200d-2640-fe0f", + "1f9d8-1f3fd-200d-2640-fe0f", + "1f9d8-1f3fe-200d-2640-fe0f", + "1f9d8-1f3ff-200d-2640-fe0f" + ], + "keywords": [ + "meditation", + "yoga", + "serenity", + "woman in lotus position" + ] + }, + { + "code": "1f6c0", + "char": "๐Ÿ›€", + "name": "person taking bath", + "types": [ + "1f6c0-1f3fb", + "1f6c0-1f3fc", + "1f6c0-1f3fd", + "1f6c0-1f3fe", + "1f6c0-1f3ff" + ], + "keywords": [ + "bathtub", + "person taking bath" + ] + }, + { + "code": "1f6cc", + "char": "๐Ÿ›Œ", + "name": "person in bed", + "types": [ + "1f6cc-1f3fb", + "1f6cc-1f3fc", + "1f6cc-1f3fd", + "1f6cc-1f3fe", + "1f6cc-1f3ff" + ], + "keywords": [ + "hotel", + "sleep", + "bed", + "person in bed" + ] + }, + { + "code": "1f9d1-200d-1f91d-200d-1f9d1", + "char": "๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘", + "name": "people holding hands", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb", + "char": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "name": "people holding hands: light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc", + "char": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "name": "people holding hands: light skin tone, medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd", + "char": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "name": "people holding hands: light skin tone, medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe", + "char": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "name": "people holding hands: light skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff", + "char": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "name": "people holding hands: light skin tone, dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb", + "char": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "name": "people holding hands: medium-light skin tone, light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc", + "char": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "name": "people holding hands: medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd", + "char": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "name": "people holding hands: medium-light skin tone, medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe", + "char": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "name": "people holding hands: medium-light skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff", + "char": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "name": "people holding hands: medium-light skin tone, dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb", + "char": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "name": "people holding hands: medium skin tone, light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc", + "char": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "name": "people holding hands: medium skin tone, medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd", + "char": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "name": "people holding hands: medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe", + "char": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "name": "people holding hands: medium skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff", + "char": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "name": "people holding hands: medium skin tone, dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb", + "char": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "name": "people holding hands: medium-dark skin tone, light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc", + "char": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "name": "people holding hands: medium-dark skin tone, medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd", + "char": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "name": "people holding hands: medium-dark skin tone, medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe", + "char": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "name": "people holding hands: medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff", + "char": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "name": "people holding hands: medium-dark skin tone, dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb", + "char": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "name": "people holding hands: dark skin tone, light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc", + "char": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "name": "people holding hands: dark skin tone, medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd", + "char": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "name": "people holding hands: dark skin tone, medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe", + "char": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "name": "people holding hands: dark skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff", + "char": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "name": "people holding hands: dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "people holding hands" + ] + }, + { + "code": "1f46d", + "char": "๐Ÿ‘ญ", + "name": "women holding hands", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f46d-1f3fb", + "char": "๐Ÿ‘ญ๐Ÿป", + "name": "women holding hands: light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc", + "char": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ", + "name": "women holding hands: light skin tone, medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd", + "char": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ", + "name": "women holding hands: light skin tone, medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe", + "char": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ", + "name": "women holding hands: light skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff", + "char": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ", + "name": "women holding hands: light skin tone, dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb", + "char": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป", + "name": "women holding hands: medium-light skin tone, light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f46d-1f3fc", + "char": "๐Ÿ‘ญ๐Ÿผ", + "name": "women holding hands: medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd", + "char": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ", + "name": "women holding hands: medium-light skin tone, medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe", + "char": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ", + "name": "women holding hands: medium-light skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff", + "char": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ", + "name": "women holding hands: medium-light skin tone, dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb", + "char": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป", + "name": "women holding hands: medium skin tone, light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc", + "char": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ", + "name": "women holding hands: medium skin tone, medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f46d-1f3fd", + "char": "๐Ÿ‘ญ๐Ÿฝ", + "name": "women holding hands: medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe", + "char": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ", + "name": "women holding hands: medium skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff", + "char": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ", + "name": "women holding hands: medium skin tone, dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb", + "char": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป", + "name": "women holding hands: medium-dark skin tone, light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc", + "char": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ", + "name": "women holding hands: medium-dark skin tone, medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd", + "char": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ", + "name": "women holding hands: medium-dark skin tone, medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f46d-1f3fe", + "char": "๐Ÿ‘ญ๐Ÿพ", + "name": "women holding hands: medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff", + "char": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ", + "name": "women holding hands: medium-dark skin tone, dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb", + "char": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป", + "name": "women holding hands: dark skin tone, light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc", + "char": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ", + "name": "women holding hands: dark skin tone, medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd", + "char": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ", + "name": "women holding hands: dark skin tone, medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe", + "char": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ", + "name": "women holding hands: dark skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f46d-1f3ff", + "char": "๐Ÿ‘ญ๐Ÿฟ", + "name": "women holding hands: dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "women holding hands" + ] + }, + { + "code": "1f46b", + "char": "๐Ÿ‘ซ", + "name": "woman and man holding hands", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f46b-1f3fb", + "char": "๐Ÿ‘ซ๐Ÿป", + "name": "woman and man holding hands: light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc", + "char": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "name": "woman and man holding hands: light skin tone, medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd", + "char": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "name": "woman and man holding hands: light skin tone, medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe", + "char": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "name": "woman and man holding hands: light skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff", + "char": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "name": "woman and man holding hands: light skin tone, dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb", + "char": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "name": "woman and man holding hands: medium-light skin tone, light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f46b-1f3fc", + "char": "๐Ÿ‘ซ๐Ÿผ", + "name": "woman and man holding hands: medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd", + "char": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "name": "woman and man holding hands: medium-light skin tone, medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe", + "char": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "name": "woman and man holding hands: medium-light skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff", + "char": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "name": "woman and man holding hands: medium-light skin tone, dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb", + "char": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "name": "woman and man holding hands: medium skin tone, light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc", + "char": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "name": "woman and man holding hands: medium skin tone, medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f46b-1f3fd", + "char": "๐Ÿ‘ซ๐Ÿฝ", + "name": "woman and man holding hands: medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe", + "char": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "name": "woman and man holding hands: medium skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff", + "char": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "name": "woman and man holding hands: medium skin tone, dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb", + "char": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "name": "woman and man holding hands: medium-dark skin tone, light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc", + "char": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "name": "woman and man holding hands: medium-dark skin tone, medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd", + "char": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "name": "woman and man holding hands: medium-dark skin tone, medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f46b-1f3fe", + "char": "๐Ÿ‘ซ๐Ÿพ", + "name": "woman and man holding hands: medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff", + "char": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "name": "woman and man holding hands: medium-dark skin tone, dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb", + "char": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "name": "woman and man holding hands: dark skin tone, light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc", + "char": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "name": "woman and man holding hands: dark skin tone, medium-light skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd", + "char": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "name": "woman and man holding hands: dark skin tone, medium skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe", + "char": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "name": "woman and man holding hands: dark skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f46b-1f3ff", + "char": "๐Ÿ‘ซ๐Ÿฟ", + "name": "woman and man holding hands: dark skin tone", + "keywords": [ + "couple", + "hand", + "holding hands", + "man", + "woman", + "woman and man holding hands" + ] + }, + { + "code": "1f46c", + "char": "๐Ÿ‘ฌ", + "name": "men holding hands", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f46c-1f3fb", + "char": "๐Ÿ‘ฌ๐Ÿป", + "name": "men holding hands: light skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc", + "char": "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "name": "men holding hands: light skin tone, medium-light skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd", + "char": "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "name": "men holding hands: light skin tone, medium skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe", + "char": "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "name": "men holding hands: light skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff", + "char": "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "name": "men holding hands: light skin tone, dark skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb", + "char": "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "name": "men holding hands: medium-light skin tone, light skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f46c-1f3fc", + "char": "๐Ÿ‘ฌ๐Ÿผ", + "name": "men holding hands: medium-light skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd", + "char": "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "name": "men holding hands: medium-light skin tone, medium skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe", + "char": "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "name": "men holding hands: medium-light skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff", + "char": "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "name": "men holding hands: medium-light skin tone, dark skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb", + "char": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "name": "men holding hands: medium skin tone, light skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc", + "char": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "name": "men holding hands: medium skin tone, medium-light skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f46c-1f3fd", + "char": "๐Ÿ‘ฌ๐Ÿฝ", + "name": "men holding hands: medium skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe", + "char": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "name": "men holding hands: medium skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff", + "char": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "name": "men holding hands: medium skin tone, dark skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb", + "char": "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "name": "men holding hands: medium-dark skin tone, light skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc", + "char": "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "name": "men holding hands: medium-dark skin tone, medium-light skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd", + "char": "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "name": "men holding hands: medium-dark skin tone, medium skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f46c-1f3fe", + "char": "๐Ÿ‘ฌ๐Ÿพ", + "name": "men holding hands: medium-dark skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff", + "char": "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "name": "men holding hands: medium-dark skin tone, dark skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb", + "char": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "name": "men holding hands: dark skin tone, light skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc", + "char": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "name": "men holding hands: dark skin tone, medium-light skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd", + "char": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "name": "men holding hands: dark skin tone, medium skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe", + "char": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "name": "men holding hands: dark skin tone, medium-dark skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f46c-1f3ff", + "char": "๐Ÿ‘ฌ๐Ÿฟ", + "name": "men holding hands: dark skin tone", + "keywords": [ + "couple", + "gemini", + "hand", + "holding hands", + "men holding hands", + "twins", + "zodiac" + ] + }, + { + "code": "1f48f", + "char": "๐Ÿ’", + "name": "kiss", + "keywords": [ + "couple", + "kiss" + ] + }, + { + "code": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f468", + "char": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ", + "name": "kiss: woman, man", + "keywords": [ + "kiss: woman, man", + "man", + "woman", + "couple" + ] + }, + { + "code": "1f468-200d-2764-fe0f-200d-1f48b-200d-1f468", + "char": "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ", + "name": "kiss: man, man", + "keywords": [ + "kiss: man, man", + "man", + "couple" + ] + }, + { + "code": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f469", + "char": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ", + "name": "kiss: woman, woman", + "keywords": [ + "kiss: woman, woman", + "woman", + "couple" + ] + }, + { + "code": "1f491", + "char": "๐Ÿ’‘", + "name": "couple with heart", + "keywords": [ + "couple with heart", + "heart", + "love" + ] + }, + { + "code": "1f469-200d-2764-fe0f-200d-1f468", + "char": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ", + "name": "couple with heart: woman, man", + "keywords": [ + "couple with heart: woman, man", + "man", + "woman", + "love", + "heart" + ] + }, + { + "code": "1f468-200d-2764-fe0f-200d-1f468", + "char": "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ", + "name": "couple with heart: man, man", + "keywords": [ + "couple with heart: man, man", + "man", + "love", + "heart" + ] + }, + { + "code": "1f469-200d-2764-fe0f-200d-1f469", + "char": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ", + "name": "couple with heart: woman, woman", + "keywords": [ + "couple with heart: woman, woman", + "woman", + "love", + "heart" + ] + }, + { + "code": "1f46a", + "char": "๐Ÿ‘ช", + "name": "family", + "keywords": [ + "family" + ] + }, + { + "code": "1f468-200d-1f469-200d-1f466", + "char": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ", + "name": "family: man, woman, boy", + "keywords": [ + "boy", + "family: man, woman, boy", + "man", + "woman" + ] + }, + { + "code": "1f468-200d-1f469-200d-1f467", + "char": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง", + "name": "family: man, woman, girl", + "keywords": [ + "family: man, woman, girl", + "girl", + "man", + "woman" + ] + }, + { + "code": "1f468-200d-1f469-200d-1f467-200d-1f466", + "char": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "name": "family: man, woman, girl, boy", + "keywords": [ + "boy", + "family: man, woman, girl, boy", + "girl", + "man", + "woman" + ] + }, + { + "code": "1f468-200d-1f469-200d-1f466-200d-1f466", + "char": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "name": "family: man, woman, boy, boy", + "keywords": [ + "boy", + "family: man, woman, boy, boy", + "man", + "woman" + ] + }, + { + "code": "1f468-200d-1f469-200d-1f467-200d-1f467", + "char": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "name": "family: man, woman, girl, girl", + "keywords": [ + "family: man, woman, girl, girl", + "girl", + "man", + "woman" + ] + }, + { + "code": "1f468-200d-1f468-200d-1f466", + "char": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ", + "name": "family: man, man, boy", + "keywords": [ + "boy", + "family: man, man, boy", + "man" + ] + }, + { + "code": "1f468-200d-1f468-200d-1f467", + "char": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง", + "name": "family: man, man, girl", + "keywords": [ + "family: man, man, girl", + "girl", + "man" + ] + }, + { + "code": "1f468-200d-1f468-200d-1f467-200d-1f466", + "char": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "name": "family: man, man, girl, boy", + "keywords": [ + "boy", + "family: man, man, girl, boy", + "girl", + "man" + ] + }, + { + "code": "1f468-200d-1f468-200d-1f466-200d-1f466", + "char": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "name": "family: man, man, boy, boy", + "keywords": [ + "boy", + "family: man, man, boy, boy", + "man" + ] + }, + { + "code": "1f468-200d-1f468-200d-1f467-200d-1f467", + "char": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "name": "family: man, man, girl, girl", + "keywords": [ + "family: man, man, girl, girl", + "girl", + "man" + ] + }, + { + "code": "1f469-200d-1f469-200d-1f466", + "char": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ", + "name": "family: woman, woman, boy", + "keywords": [ + "boy", + "family: woman, woman, boy", + "woman" + ] + }, + { + "code": "1f469-200d-1f469-200d-1f467", + "char": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง", + "name": "family: woman, woman, girl", + "keywords": [ + "family: woman, woman, girl", + "girl", + "woman" + ] + }, + { + "code": "1f469-200d-1f469-200d-1f467-200d-1f466", + "char": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "name": "family: woman, woman, girl, boy", + "keywords": [ + "boy", + "family: woman, woman, girl, boy", + "girl", + "woman" + ] + }, + { + "code": "1f469-200d-1f469-200d-1f466-200d-1f466", + "char": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "name": "family: woman, woman, boy, boy", + "keywords": [ + "boy", + "family: woman, woman, boy, boy", + "woman" + ] + }, + { + "code": "1f469-200d-1f469-200d-1f467-200d-1f467", + "char": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "name": "family: woman, woman, girl, girl", + "keywords": [ + "family: woman, woman, girl, girl", + "girl", + "woman" + ] + }, + { + "code": "1f468-200d-1f466", + "char": "๐Ÿ‘จโ€๐Ÿ‘ฆ", + "name": "family: man, boy", + "keywords": [ + "family: man, boy", + "man", + "boy" + ] + }, + { + "code": "1f468-200d-1f466-200d-1f466", + "char": "๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "name": "family: man, boy, boy", + "keywords": [ + "family: man, boy, boy", + "man", + "boy" + ] + }, + { + "code": "1f468-200d-1f467", + "char": "๐Ÿ‘จโ€๐Ÿ‘ง", + "name": "family: man, girl", + "keywords": [ + "family: man, girl", + "man", + "girl" + ] + }, + { + "code": "1f468-200d-1f467-200d-1f466", + "char": "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "name": "family: man, girl, boy", + "keywords": [ + "family: man, girl, boy", + "man", + "boy", + "girl" + ] + }, + { + "code": "1f468-200d-1f467-200d-1f467", + "char": "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "name": "family: man, girl, girl", + "keywords": [ + "family: man, girl, girl", + "man", + "girl" + ] + }, + { + "code": "1f469-200d-1f466", + "char": "๐Ÿ‘ฉโ€๐Ÿ‘ฆ", + "name": "family: woman, boy", + "keywords": [ + "family: woman, boy", + "woman", + "boy" + ] + }, + { + "code": "1f469-200d-1f466-200d-1f466", + "char": "๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "name": "family: woman, boy, boy", + "keywords": [ + "family: woman, boy, boy", + "woman", + "boy" + ] + }, + { + "code": "1f469-200d-1f467", + "char": "๐Ÿ‘ฉโ€๐Ÿ‘ง", + "name": "family: woman, girl", + "keywords": [ + "family: woman, girl", + "woman", + "girl" + ] + }, + { + "code": "1f469-200d-1f467-200d-1f466", + "char": "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "name": "family: woman, girl, boy", + "keywords": [ + "family: woman, girl, boy", + "woman", + "boy", + "girl" + ] + }, + { + "code": "1f469-200d-1f467-200d-1f467", + "char": "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "name": "family: woman, girl, girl", + "keywords": [ + "family: woman, girl, girl", + "woman", + "girl" + ] + }, + { + "code": "1f5e3", + "char": "๐Ÿ—ฃ", + "name": "speaking head", + "keywords": [ + "face", + "head", + "silhouette", + "speaking head" + ] + }, + { + "code": "1f464", + "char": "๐Ÿ‘ค", + "name": "bust in silhouette", + "keywords": [ + "silhouette", + "bust in silhouette" + ] + }, + { + "code": "1f465", + "char": "๐Ÿ‘ฅ", + "name": "busts in silhouette", + "keywords": [ + "silhouette", + "busts in silhouette" + ] + }, + { + "code": "1fac2", + "char": "๐Ÿซ‚", + "name": "people hugging", + "keywords": [ + "goodbye", + "hello", + "hug", + "thanks", + "people hugging" + ] + }, + { + "code": "1f463", + "char": "๐Ÿ‘ฃ", + "name": "footprints", + "keywords": [ + "clothing", + "footprints", + "print" + ] + } + ], + "Component": [ + { + "code": "1f3fb", + "char": "๐Ÿป", + "name": "light skin tone" + }, + { + "code": "1f3fc", + "char": "๐Ÿผ", + "name": "medium-light skin tone" + }, + { + "code": "1f3fd", + "char": "๐Ÿฝ", + "name": "medium skin tone" + }, + { + "code": "1f3fe", + "char": "๐Ÿพ", + "name": "medium-dark skin tone" + }, + { + "code": "1f3ff", + "char": "๐Ÿฟ", + "name": "dark skin tone" + }, + { + "code": "1f9b0", + "char": "๐Ÿฆฐ", + "name": "red hair" + }, + { + "code": "1f9b1", + "char": "๐Ÿฆฑ", + "name": "curly hair" + }, + { + "code": "1f9b2", + "char": "๐Ÿฆฒ", + "name": "bald" + }, + { + "code": "1f9b3", + "char": "๐Ÿฆณ", + "name": "white hair" + } + ], + "Animals & Nature": [ + { + "code": "1f435", + "char": "๐Ÿต", + "name": "monkey face", + "keywords": [ + "face", + "monkey face" + ] + }, + { + "code": "1f412", + "char": "๐Ÿ’", + "name": "monkey", + "keywords": [ + "monkey" + ] + }, + { + "code": "1f98d", + "char": "๐Ÿฆ", + "name": "gorilla", + "keywords": [ + "gorilla" + ] + }, + { + "code": "1f9a7", + "char": "๐Ÿฆง", + "name": "orangutan", + "keywords": [ + "orangutan", + "ape" + ] + }, + { + "code": "1f436", + "char": "๐Ÿถ", + "name": "dog face", + "keywords": [ + "dog face", + "face", + "pet" + ] + }, + { + "code": "1f415", + "char": "๐Ÿ•", + "name": "dog", + "keywords": [ + "dog", + "pet" + ] + }, + { + "code": "1f9ae", + "char": "๐Ÿฆฎ", + "name": "guide dog", + "keywords": [ + "accessibility", + "blind", + "guide dog", + "dog" + ] + }, + { + "code": "1f415-200d-1f9ba", + "char": "๐Ÿ•โ€๐Ÿฆบ", + "name": "service dog", + "keywords": [ + "accessibility", + "service dog", + "dog", + "assistance" + ] + }, + { + "code": "1f429", + "char": "๐Ÿฉ", + "name": "poodle", + "keywords": [ + "dog", + "poodle" + ] + }, + { + "code": "1f43a", + "char": "๐Ÿบ", + "name": "wolf", + "keywords": [ + "face", + "wolf" + ] + }, + { + "code": "1f98a", + "char": "๐ŸฆŠ", + "name": "fox", + "keywords": [ + "face", + "fox" + ] + }, + { + "code": "1f99d", + "char": "๐Ÿฆ", + "name": "raccoon", + "keywords": [ + "curious", + "raccoon", + "sly" + ] + }, + { + "code": "1f431", + "char": "๐Ÿฑ", + "name": "cat face", + "keywords": [ + "cat face", + "face", + "pet" + ] + }, + { + "code": "1f408", + "char": "๐Ÿˆ", + "name": "cat", + "keywords": [ + "cat", + "pet" + ] + }, + { + "code": "1f408-200d-2b1b", + "char": "๐Ÿˆโ€โฌ›", + "name": "black cat", + "keywords": [ + "black cat", + "cat" + ] + }, + { + "code": "1f981", + "char": "๐Ÿฆ", + "name": "lion", + "keywords": [ + "face", + "leo", + "lion", + "zodiac" + ] + }, + { + "code": "1f42f", + "char": "๐Ÿฏ", + "name": "tiger face", + "keywords": [ + "face", + "tiger face" + ] + }, + { + "code": "1f405", + "char": "๐Ÿ…", + "name": "tiger", + "keywords": [ + "tiger" + ] + }, + { + "code": "1f406", + "char": "๐Ÿ†", + "name": "leopard", + "keywords": [ + "leopard" + ] + }, + { + "code": "1f434", + "char": "๐Ÿด", + "name": "horse face", + "keywords": [ + "face", + "horse face" + ] + }, + { + "code": "1f40e", + "char": "๐ŸŽ", + "name": "horse", + "keywords": [ + "horse", + "racehorse", + "racing", + "equestrain" + ] + }, + { + "code": "1f984", + "char": "๐Ÿฆ„", + "name": "unicorn", + "keywords": [ + "face", + "unicorn" + ] + }, + { + "code": "1f993", + "char": "๐Ÿฆ“", + "name": "zebra", + "keywords": [ + "stripe", + "zebra" + ] + }, + { + "code": "1f98c", + "char": "๐ŸฆŒ", + "name": "deer", + "keywords": [ + "deer" + ] + }, + { + "code": "1f9ac", + "char": "๐Ÿฆฌ", + "name": "bison", + "keywords": [ + "bison", + "buffalo", + "herd", + "wisent" + ] + }, + { + "code": "1f42e", + "char": "๐Ÿฎ", + "name": "cow face", + "keywords": [ + "cow face", + "face" + ] + }, + { + "code": "1f402", + "char": "๐Ÿ‚", + "name": "ox", + "keywords": [ + "bull", + "ox", + "taurus", + "zodiac" + ] + }, + { + "code": "1f403", + "char": "๐Ÿƒ", + "name": "water buffalo", + "keywords": [ + "buffalo", + "water buffalo" + ] + }, + { + "code": "1f404", + "char": "๐Ÿ„", + "name": "cow", + "keywords": [ + "cow" + ] + }, + { + "code": "1f437", + "char": "๐Ÿท", + "name": "pig face", + "keywords": [ + "face", + "pig face" + ] + }, + { + "code": "1f416", + "char": "๐Ÿ–", + "name": "pig", + "keywords": [ + "pig", + "sow" + ] + }, + { + "code": "1f417", + "char": "๐Ÿ—", + "name": "boar", + "keywords": [ + "boar", + "pig" + ] + }, + { + "code": "1f43d", + "char": "๐Ÿฝ", + "name": "pig nose", + "keywords": [ + "face", + "nose", + "pig nose" + ] + }, + { + "code": "1f40f", + "char": "๐Ÿ", + "name": "ram", + "keywords": [ + "aries", + "ram", + "sheep", + "zodiac", + "male" + ] + }, + { + "code": "1f411", + "char": "๐Ÿ‘", + "name": "ewe", + "keywords": [ + "ewe", + "sheep", + "female" + ] + }, + { + "code": "1f410", + "char": "๐Ÿ", + "name": "goat", + "keywords": [ + "capricorn", + "goat", + "zodiac" + ] + }, + { + "code": "1f42a", + "char": "๐Ÿช", + "name": "camel", + "keywords": [ + "camel", + "dromedary", + "hump" + ] + }, + { + "code": "1f42b", + "char": "๐Ÿซ", + "name": "two-hump camel", + "keywords": [ + "bactrian", + "camel", + "hump", + "two-hump camel" + ] + }, + { + "code": "1f999", + "char": "๐Ÿฆ™", + "name": "llama", + "keywords": [ + "alpaca", + "guanaco", + "llama", + "wool" + ] + }, + { + "code": "1f992", + "char": "๐Ÿฆ’", + "name": "giraffe", + "keywords": [ + "giraffe", + "spots" + ] + }, + { + "code": "1f418", + "char": "๐Ÿ˜", + "name": "elephant", + "keywords": [ + "elephant" + ] + }, + { + "code": "1f9a3", + "char": "๐Ÿฆฃ", + "name": "mammoth", + "keywords": [ + "extinction", + "large", + "mammoth", + "tusk", + "woolly" + ] + }, + { + "code": "1f98f", + "char": "๐Ÿฆ", + "name": "rhinoceros", + "keywords": [ + "rhinoceros" + ] + }, + { + "code": "1f99b", + "char": "๐Ÿฆ›", + "name": "hippopotamus", + "keywords": [ + "hippopotamus" + ] + }, + { + "code": "1f42d", + "char": "๐Ÿญ", + "name": "mouse face", + "keywords": [ + "face", + "mouse face" + ] + }, + { + "code": "1f401", + "char": "๐Ÿ", + "name": "mouse", + "keywords": [ + "mouse" + ] + }, + { + "code": "1f400", + "char": "๐Ÿ€", + "name": "rat", + "keywords": [ + "rat" + ] + }, + { + "code": "1f439", + "char": "๐Ÿน", + "name": "hamster", + "keywords": [ + "face", + "hamster", + "pet" + ] + }, + { + "code": "1f430", + "char": "๐Ÿฐ", + "name": "rabbit face", + "keywords": [ + "bunny", + "face", + "pet", + "rabbit face" + ] + }, + { + "code": "1f407", + "char": "๐Ÿ‡", + "name": "rabbit", + "keywords": [ + "bunny", + "pet", + "rabbit" + ] + }, + { + "code": "1f43f", + "char": "๐Ÿฟ", + "name": "chipmunk", + "keywords": [ + "chipmunk", + "squirrel" + ] + }, + { + "code": "1f9ab", + "char": "๐Ÿฆซ", + "name": "beaver", + "keywords": [ + "beaver", + "dam" + ] + }, + { + "code": "1f994", + "char": "๐Ÿฆ”", + "name": "hedgehog", + "keywords": [ + "hedgehog", + "spiny" + ] + }, + { + "code": "1f987", + "char": "๐Ÿฆ‡", + "name": "bat", + "keywords": [ + "bat", + "vampire" + ] + }, + { + "code": "1f43b", + "char": "๐Ÿป", + "name": "bear", + "keywords": [ + "bear", + "face" + ] + }, + { + "code": "1f43b-200d-2744-fe0f", + "char": "๐Ÿปโ€โ„๏ธ", + "name": "polar bear", + "keywords": [ + "arctic", + "bear", + "polar bear", + "white" + ] + }, + { + "code": "1f428", + "char": "๐Ÿจ", + "name": "koala", + "keywords": [ + "bear", + "koala" + ] + }, + { + "code": "1f43c", + "char": "๐Ÿผ", + "name": "panda", + "keywords": [ + "face", + "panda" + ] + }, + { + "code": "1f9a5", + "char": "๐Ÿฆฅ", + "name": "sloth", + "keywords": [ + "lazy", + "sloth", + "slow" + ] + }, + { + "code": "1f9a6", + "char": "๐Ÿฆฆ", + "name": "otter", + "keywords": [ + "fishing", + "otter", + "playful" + ] + }, + { + "code": "1f9a8", + "char": "๐Ÿฆจ", + "name": "skunk", + "keywords": [ + "skunk", + "stink" + ] + }, + { + "code": "1f998", + "char": "๐Ÿฆ˜", + "name": "kangaroo", + "keywords": [ + "australia", + "joey", + "jump", + "kangaroo", + "marsupial" + ] + }, + { + "code": "1f9a1", + "char": "๐Ÿฆก", + "name": "badger", + "keywords": [ + "badger", + "honey badger", + "pester" + ] + }, + { + "code": "1f43e", + "char": "๐Ÿพ", + "name": "paw prints", + "keywords": [ + "feet", + "paw prints", + "print" + ] + }, + { + "code": "1f983", + "char": "๐Ÿฆƒ", + "name": "turkey", + "keywords": [ + "turkey", + "bird" + ] + }, + { + "code": "1f414", + "char": "๐Ÿ”", + "name": "chicken", + "keywords": [ + "chicken", + "bird" + ] + }, + { + "code": "1f413", + "char": "๐Ÿ“", + "name": "rooster", + "keywords": [ + "rooster", + "bird" + ] + }, + { + "code": "1f423", + "char": "๐Ÿฃ", + "name": "hatching chick", + "keywords": [ + "baby", + "chick", + "hatching chick", + "bird" + ] + }, + { + "code": "1f424", + "char": "๐Ÿค", + "name": "baby chick", + "keywords": [ + "baby chick", + "chick", + "bird" + ] + }, + { + "code": "1f425", + "char": "๐Ÿฅ", + "name": "front-facing baby chick", + "keywords": [ + "baby", + "chick", + "bird", + "front-facing baby chick" + ] + }, + { + "code": "1f426", + "char": "๐Ÿฆ", + "name": "bird", + "keywords": [ + "bird" + ] + }, + { + "code": "1f427", + "char": "๐Ÿง", + "name": "penguin", + "keywords": [ + "penguin", + "bird" + ] + }, + { + "code": "1f54a", + "char": "๐Ÿ•Š", + "name": "dove", + "keywords": [ + "bird", + "dove", + "fly", + "peace" + ] + }, + { + "code": "1f985", + "char": "๐Ÿฆ…", + "name": "eagle", + "keywords": [ + "bird", + "eagle" + ] + }, + { + "code": "1f986", + "char": "๐Ÿฆ†", + "name": "duck", + "keywords": [ + "bird", + "duck" + ] + }, + { + "code": "1f9a2", + "char": "๐Ÿฆข", + "name": "swan", + "keywords": [ + "bird", + "cygnet", + "swan", + "ugly duckling" + ] + }, + { + "code": "1f989", + "char": "๐Ÿฆ‰", + "name": "owl", + "keywords": [ + "bird", + "owl", + "wise" + ] + }, + { + "code": "1f9a4", + "char": "๐Ÿฆค", + "name": "dodo", + "keywords": [ + "dodo", + "extinction", + "large", + "mauritius" + ] + }, + { + "code": "1fab6", + "char": "๐Ÿชถ", + "name": "feather", + "keywords": [ + "bird", + "feather", + "flight", + "light", + "plumage" + ] + }, + { + "code": "1f9a9", + "char": "๐Ÿฆฉ", + "name": "flamingo", + "keywords": [ + "flamboyant", + "flamingo", + "tropical" + ] + }, + { + "code": "1f99a", + "char": "๐Ÿฆš", + "name": "peacock", + "keywords": [ + "bird", + "ostentatious", + "peacock", + "peahen", + "proud" + ] + }, + { + "code": "1f99c", + "char": "๐Ÿฆœ", + "name": "parrot", + "keywords": [ + "bird", + "parrot", + "pirate", + "talk" + ] + }, + { + "code": "1f438", + "char": "๐Ÿธ", + "name": "frog", + "keywords": [ + "face", + "frog" + ] + }, + { + "code": "1f40a", + "char": "๐ŸŠ", + "name": "crocodile", + "keywords": [ + "crocodile" + ] + }, + { + "code": "1f422", + "char": "๐Ÿข", + "name": "turtle", + "keywords": [ + "turtle", + "terrapin", + "tortoise" + ] + }, + { + "code": "1f98e", + "char": "๐ŸฆŽ", + "name": "lizard", + "keywords": [ + "lizard", + "reptile" + ] + }, + { + "code": "1f40d", + "char": "๐Ÿ", + "name": "snake", + "keywords": [ + "bearer", + "ophiuchus", + "serpent", + "snake", + "zodiac" + ] + }, + { + "code": "1f432", + "char": "๐Ÿฒ", + "name": "dragon face", + "keywords": [ + "dragon face", + "face", + "fairy tale" + ] + }, + { + "code": "1f409", + "char": "๐Ÿ‰", + "name": "dragon", + "keywords": [ + "dragon", + "fairy tale" + ] + }, + { + "code": "1f995", + "char": "๐Ÿฆ•", + "name": "sauropod", + "keywords": [ + "brachiosaurus", + "brontosaurus", + "diplodocus", + "sauropod" + ] + }, + { + "code": "1f996", + "char": "๐Ÿฆ–", + "name": "T-Rex", + "keywords": [ + "t-rex", + "tyrannosaurus rex" + ] + }, + { + "code": "1f433", + "char": "๐Ÿณ", + "name": "spouting whale", + "keywords": [ + "face", + "spouting whale", + "whale" + ] + }, + { + "code": "1f40b", + "char": "๐Ÿ‹", + "name": "whale", + "keywords": [ + "whale" + ] + }, + { + "code": "1f42c", + "char": "๐Ÿฌ", + "name": "dolphin", + "keywords": [ + "dolphin", + "flipper" + ] + }, + { + "code": "1f9ad", + "char": "๐Ÿฆญ", + "name": "seal", + "keywords": [ + "seal lion" + ] + }, + { + "code": "1f41f", + "char": "๐ŸŸ", + "name": "fish", + "keywords": [ + "fish", + "pisces", + "zodiac" + ] + }, + { + "code": "1f420", + "char": "๐Ÿ ", + "name": "tropical fish", + "keywords": [ + "fish", + "tropical fish" + ] + }, + { + "code": "1f421", + "char": "๐Ÿก", + "name": "blowfish", + "keywords": [ + "blowfish", + "fish" + ] + }, + { + "code": "1f988", + "char": "๐Ÿฆˆ", + "name": "shark", + "keywords": [ + "fish", + "shark" + ] + }, + { + "code": "1f419", + "char": "๐Ÿ™", + "name": "octopus", + "keywords": [ + "octopus" + ] + }, + { + "code": "1f41a", + "char": "๐Ÿš", + "name": "spiral shell", + "keywords": [ + "shell", + "spiral shell" + ] + }, + { + "code": "1f40c", + "char": "๐ŸŒ", + "name": "snail", + "keywords": [ + "snail" + ] + }, + { + "code": "1f98b", + "char": "๐Ÿฆ‹", + "name": "butterfly", + "keywords": [ + "butterfly", + "insect", + "pretty" + ] + }, + { + "code": "1f41b", + "char": "๐Ÿ›", + "name": "bug", + "keywords": [ + "bug", + "insect" + ] + }, + { + "code": "1f41c", + "char": "๐Ÿœ", + "name": "ant", + "keywords": [ + "ant", + "insect" + ] + }, + { + "code": "1f41d", + "char": "๐Ÿ", + "name": "honeybee", + "keywords": [ + "bee", + "honeybee", + "insect" + ] + }, + { + "code": "1fab2", + "char": "๐Ÿชฒ", + "name": "beetle", + "keywords": [ + "beetle", + "bug", + "insect" + ] + }, + { + "code": "1f41e", + "char": "๐Ÿž", + "name": "lady beetle", + "keywords": [ + "beetle", + "insect", + "lady beetle", + "ladybird", + "ladybug" + ] + }, + { + "code": "1f997", + "char": "๐Ÿฆ—", + "name": "cricket", + "keywords": [ + "cricket", + "grasshopper", + "orthoptera" + ] + }, + { + "code": "1fab3", + "char": "๐Ÿชณ", + "name": "cockroach", + "keywords": [ + "cockroach", + "insect", + "pest", + "roach" + ] + }, + { + "code": "1f577", + "char": "๐Ÿ•ท", + "name": "spider", + "keywords": [ + "insect", + "spider" + ] + }, + { + "code": "1f578", + "char": "๐Ÿ•ธ", + "name": "spider web", + "keywords": [ + "spider web", + "web" + ] + }, + { + "code": "1f982", + "char": "๐Ÿฆ‚", + "name": "scorpion", + "keywords": [ + "scorpion", + "zodiac" + ] + }, + { + "code": "1f99f", + "char": "๐ŸฆŸ", + "name": "mosquito", + "keywords": [ + "disease", + "fever", + "malaria", + "mosquito", + "pest", + "virus" + ] + }, + { + "code": "1fab0", + "char": "๐Ÿชฐ", + "name": "fly", + "keywords": [ + "disease", + "fly", + "maggot", + "pest", + "rotting" + ] + }, + { + "code": "1fab1", + "char": "๐Ÿชฑ", + "name": "worm", + "keywords": [ + "annelid", + "earthworm", + "parasite", + "worm" + ] + }, + { + "code": "1f9a0", + "char": "๐Ÿฆ ", + "name": "microbe", + "keywords": [ + "amoeba", + "bacteria", + "microbe", + "virus" + ] + }, + { + "code": "1f490", + "char": "๐Ÿ’", + "name": "bouquet", + "keywords": [ + "bouquet", + "flower" + ] + }, + { + "code": "1f338", + "char": "๐ŸŒธ", + "name": "cherry blossom", + "keywords": [ + "blossom", + "cherry blossom", + "flower" + ] + }, + { + "code": "1f4ae", + "char": "๐Ÿ’ฎ", + "name": "white flower", + "keywords": [ + "flower", + "white flower" + ] + }, + { + "code": "1f3f5", + "char": "๐Ÿต", + "name": "rosette", + "keywords": [ + "plant", + "rosette" + ] + }, + { + "code": "1f339", + "char": "๐ŸŒน", + "name": "rose", + "keywords": [ + "flower", + "rose" + ] + }, + { + "code": "1f940", + "char": "๐Ÿฅ€", + "name": "wilted flower", + "keywords": [ + "flower", + "wilted flower" + ] + }, + { + "code": "1f33a", + "char": "๐ŸŒบ", + "name": "hibiscus", + "keywords": [ + "flower", + "hibiscus" + ] + }, + { + "code": "1f33b", + "char": "๐ŸŒป", + "name": "sunflower", + "keywords": [ + "flower", + "sunflower" + ] + }, + { + "code": "1f33c", + "char": "๐ŸŒผ", + "name": "blossom", + "keywords": [ + "blossom", + "flower" + ] + }, + { + "code": "1f337", + "char": "๐ŸŒท", + "name": "tulip", + "keywords": [ + "flower", + "tulip" + ] + }, + { + "code": "1f331", + "char": "๐ŸŒฑ", + "name": "seedling", + "keywords": [ + "seedling", + "young" + ] + }, + { + "code": "1fab4", + "char": "๐Ÿชด", + "name": "potted plant", + "keywords": [ + "boring", + "grow", + "house", + "nurturing", + "plant", + "potted plant", + "useless" + ] + }, + { + "code": "1f332", + "char": "๐ŸŒฒ", + "name": "evergreen tree", + "keywords": [ + "evergreen tree", + "tree" + ] + }, + { + "code": "1f333", + "char": "๐ŸŒณ", + "name": "deciduous tree", + "keywords": [ + "deciduous tree", + "shedding", + "tree" + ] + }, + { + "code": "1f334", + "char": "๐ŸŒด", + "name": "palm tree", + "keywords": [ + "palm tree", + "tree" + ] + }, + { + "code": "1f335", + "char": "๐ŸŒต", + "name": "cactus", + "keywords": [ + "cactus", + "plant" + ] + }, + { + "code": "1f33e", + "char": "๐ŸŒพ", + "name": "sheaf of rice", + "keywords": [ + "ear", + "grain", + "sheaf of rice", + "rice" + ] + }, + { + "code": "1f33f", + "char": "๐ŸŒฟ", + "name": "herb", + "keywords": [ + "herb", + "leaf" + ] + }, + { + "code": "2618", + "char": "โ˜˜", + "name": "shamrock", + "keywords": [ + "plant", + "shamrock" + ] + }, + { + "code": "1f340", + "char": "๐Ÿ€", + "name": "four leaf clover", + "keywords": [ + "4", + "clover", + "four leaf clover", + "leaf" + ] + }, + { + "code": "1f341", + "char": "๐Ÿ", + "name": "maple leaf", + "keywords": [ + "falling", + "leaf", + "maple leaf" + ] + }, + { + "code": "1f342", + "char": "๐Ÿ‚", + "name": "fallen leaf", + "keywords": [ + "falling", + "leaf", + "fallen leaf" + ] + }, + { + "code": "1f343", + "char": "๐Ÿƒ", + "name": "leaf fluttering in wind", + "keywords": [ + "blow", + "flutter", + "leaf fluttering in wind", + "wind" + ] + } + ], + "Food & Drink": [ + { + "code": "1f347", + "char": "๐Ÿ‡", + "name": "grapes", + "keywords": [ + "fruit", + "grapes" + ] + }, + { + "code": "1f348", + "char": "๐Ÿˆ", + "name": "melon", + "keywords": [ + "fruit", + "melon" + ] + }, + { + "code": "1f349", + "char": "๐Ÿ‰", + "name": "watermelon", + "keywords": [ + "fruit", + "watermelon" + ] + }, + { + "code": "1f34a", + "char": "๐ŸŠ", + "name": "tangerine", + "keywords": [ + "fruit", + "orange", + "tangerine" + ] + }, + { + "code": "1f34b", + "char": "๐Ÿ‹", + "name": "lemon", + "keywords": [ + "citrus", + "fruit", + "lemon" + ] + }, + { + "code": "1f34c", + "char": "๐ŸŒ", + "name": "banana", + "keywords": [ + "banana", + "fruit" + ] + }, + { + "code": "1f34d", + "char": "๐Ÿ", + "name": "pineapple", + "keywords": [ + "fruit", + "pineapple" + ] + }, + { + "code": "1f96d", + "char": "๐Ÿฅญ", + "name": "mango", + "keywords": [ + "fruit", + "mango", + "tropical" + ] + }, + { + "code": "1f34e", + "char": "๐ŸŽ", + "name": "red apple", + "keywords": [ + "apple", + "fruit", + "red" + ] + }, + { + "code": "1f34f", + "char": "๐Ÿ", + "name": "green apple", + "keywords": [ + "apple", + "fruit", + "green" + ] + }, + { + "code": "1f350", + "char": "๐Ÿ", + "name": "pear", + "keywords": [ + "fruit", + "pear" + ] + }, + { + "code": "1f351", + "char": "๐Ÿ‘", + "name": "peach", + "keywords": [ + "fruit", + "peach" + ] + }, + { + "code": "1f352", + "char": "๐Ÿ’", + "name": "cherries", + "keywords": [ + "cherry", + "fruit", + "berries", + "cherries" + ] + }, + { + "code": "1f353", + "char": "๐Ÿ“", + "name": "strawberry", + "keywords": [ + "berry", + "fruit", + "strawberry" + ] + }, + { + "code": "1fad0", + "char": "๐Ÿซ", + "name": "blueberries", + "keywords": [ + "berry", + "billberry", + "blueberries", + "blueberry" + ] + }, + { + "code": "1f95d", + "char": "๐Ÿฅ", + "name": "kiwi fruit", + "keywords": [ + "fruit", + "kiwi fruit" + ] + }, + { + "code": "1f345", + "char": "๐Ÿ…", + "name": "tomato", + "keywords": [ + "tomato", + "vegetable" + ] + }, + { + "code": "1fad2", + "char": "๐Ÿซ’", + "name": "olive", + "keywords": [ + "food", + "olive" + ] + }, + { + "code": "1f965", + "char": "๐Ÿฅฅ", + "name": "coconut", + "keywords": [ + "coconut", + "palm", + "fruit" + ] + }, + { + "code": "1f951", + "char": "๐Ÿฅ‘", + "name": "avocado", + "keywords": [ + "avocado", + "fruit", + "food" + ] + }, + { + "code": "1f346", + "char": "๐Ÿ†", + "name": "eggplant", + "keywords": [ + "aubergine", + "eggplant", + "vegetable" + ] + }, + { + "code": "1f954", + "char": "๐Ÿฅ”", + "name": "potato", + "keywords": [ + "potato", + "vegetable", + "food" + ] + }, + { + "code": "1f955", + "char": "๐Ÿฅ•", + "name": "carrot", + "keywords": [ + "carrot", + "vegetable", + "fruit", + "food" + ] + }, + { + "code": "1f33d", + "char": "๐ŸŒฝ", + "name": "ear of corn", + "keywords": [ + "corn", + "ear of corn", + "maize", + "maze" + ] + }, + { + "code": "1f336", + "char": "๐ŸŒถ", + "name": "hot pepper", + "keywords": [ + "hot pepper", + "pepper" + ] + }, + { + "code": "1fad1", + "char": "๐Ÿซ‘", + "name": "bell pepper", + "keywords": [ + "bell pepper", + "capsicum", + "pepper", + "vegetable" + ] + }, + { + "code": "1f952", + "char": "๐Ÿฅ’", + "name": "cucumber", + "keywords": [ + "cucumber", + "pickle", + "vegetable", + "food" + ] + }, + { + "code": "1f96c", + "char": "๐Ÿฅฌ", + "name": "leafy green", + "keywords": [ + "bok choy", + "cabbage", + "kale", + "leafy green", + "lettuce" + ] + }, + { + "code": "1f966", + "char": "๐Ÿฅฆ", + "name": "broccoli", + "keywords": [ + "broccoli", + "wild cabbage" + ] + }, + { + "code": "1f9c4", + "char": "๐Ÿง„", + "name": "garlic", + "keywords": [ + "flavoring", + "garlic" + ] + }, + { + "code": "1f9c5", + "char": "๐Ÿง…", + "name": "onion", + "keywords": [ + "flavoring", + "onion" + ] + }, + { + "code": "1f344", + "char": "๐Ÿ„", + "name": "mushroom", + "keywords": [ + "mushroom", + "toadstool" + ] + }, + { + "code": "1f95c", + "char": "๐Ÿฅœ", + "name": "peanuts", + "keywords": [ + "nut", + "peanuts", + "vegetable", + "food" + ] + }, + { + "code": "1f330", + "char": "๐ŸŒฐ", + "name": "chestnut", + "keywords": [ + "chestnut", + "plant" + ] + }, + { + "code": "1f35e", + "char": "๐Ÿž", + "name": "bread", + "keywords": [ + "bread", + "loaf" + ] + }, + { + "code": "1f950", + "char": "๐Ÿฅ", + "name": "croissant", + "keywords": [ + "bread", + "breakfast", + "croissant", + "food", + "french", + "roll" + ] + }, + { + "code": "1f956", + "char": "๐Ÿฅ–", + "name": "baguette bread", + "keywords": [ + "baguette bread", + "bread", + "french", + "food" + ] + }, + { + "code": "1fad3", + "char": "๐Ÿซ“", + "name": "flatbread", + "keywords": [ + "arepa", + "flatbread", + "lavash", + "naan", + "pita" + ] + }, + { + "code": "1f968", + "char": "๐Ÿฅจ", + "name": "pretzel", + "keywords": [ + "pretzel", + "twisted", + "convoluted" + ] + }, + { + "code": "1f96f", + "char": "๐Ÿฅฏ", + "name": "bagel", + "keywords": [ + "bagel", + "bakery", + "breakfast", + "schmear" + ] + }, + { + "code": "1f95e", + "char": "๐Ÿฅž", + "name": "pancakes", + "keywords": [ + "hotcake", + "pancakes", + "food", + "breakfast" + ] + }, + { + "code": "1f9c7", + "char": "๐Ÿง‡", + "name": "waffle", + "keywords": [ + "breakfast", + "indecisive", + "iron", + "waffle" + ] + }, + { + "code": "1f9c0", + "char": "๐Ÿง€", + "name": "cheese wedge", + "keywords": [ + "cheese wedge" + ] + }, + { + "code": "1f356", + "char": "๐Ÿ–", + "name": "meat on bone", + "keywords": [ + "bone", + "meat on bone" + ] + }, + { + "code": "1f357", + "char": "๐Ÿ—", + "name": "poultry leg", + "keywords": [ + "bone", + "chicken", + "leg", + "poultry leg" + ] + }, + { + "code": "1f969", + "char": "๐Ÿฅฉ", + "name": "cut of meat", + "keywords": [ + "chop", + "cut of meat", + "lambchop", + "porkchop", + "steak" + ] + }, + { + "code": "1f953", + "char": "๐Ÿฅ“", + "name": "bacon", + "keywords": [ + "bacon", + "meat", + "food", + "breakfast" + ] + }, + { + "code": "1f354", + "char": "๐Ÿ”", + "name": "hamburger", + "keywords": [ + "burger", + "hamburger" + ] + }, + { + "code": "1f35f", + "char": "๐ŸŸ", + "name": "french fries", + "keywords": [ + "french fries", + "fries" + ] + }, + { + "code": "1f355", + "char": "๐Ÿ•", + "name": "pizza", + "keywords": [ + "cheese", + "pizza", + "slice" + ] + }, + { + "code": "1f32d", + "char": "๐ŸŒญ", + "name": "hot dog", + "keywords": [ + "frankfurter", + "hot dog", + "hotdog", + "sausage" + ] + }, + { + "code": "1f96a", + "char": "๐Ÿฅช", + "name": "sandwich", + "keywords": [ + "bread", + "sandwich" + ] + }, + { + "code": "1f32e", + "char": "๐ŸŒฎ", + "name": "taco", + "keywords": [ + "mexican", + "taco" + ] + }, + { + "code": "1f32f", + "char": "๐ŸŒฏ", + "name": "burrito", + "keywords": [ + "burrito", + "mexican", + "wrap" + ] + }, + { + "code": "1fad4", + "char": "๐Ÿซ”", + "name": "tamale", + "keywords": [ + "mexican", + "tamale", + "wrapped" + ] + }, + { + "code": "1f959", + "char": "๐Ÿฅ™", + "name": "stuffed flatbread", + "keywords": [ + "falafel", + "flatbread", + "gyro", + "kebab", + "stuffed flatbread", + "food" + ] + }, + { + "code": "1f9c6", + "char": "๐Ÿง†", + "name": "falafel", + "keywords": [ + "chickpea", + "falafel", + "meatball" + ] + }, + { + "code": "1f95a", + "char": "๐Ÿฅš", + "name": "egg", + "keywords": [ + "egg", + "food", + "breakfast" + ] + }, + { + "code": "1f373", + "char": "๐Ÿณ", + "name": "cooking", + "keywords": [ + "cooking", + "egg", + "frying", + "pan", + "breakfast" + ] + }, + { + "code": "1f958", + "char": "๐Ÿฅ˜", + "name": "shallow pan of food", + "keywords": [ + "casserole", + "food", + "paella", + "pan", + "shallow pan of food" + ] + }, + { + "code": "1f372", + "char": "๐Ÿฒ", + "name": "pot of food", + "keywords": [ + "pot of food", + "stew" + ] + }, + { + "code": "1fad5", + "char": "๐Ÿซ•", + "name": "fondue", + "keywords": [ + "cheese", + "chocolate", + "fondue", + "melted", + "pot", + "swiss" + ] + }, + { + "code": "1f963", + "char": "๐Ÿฅฃ", + "name": "bowl with spoon", + "keywords": [ + "bowl with spoon", + "breakfast", + "cereal", + "congee", + "oatmeal", + "porridge" + ] + }, + { + "code": "1f957", + "char": "๐Ÿฅ—", + "name": "green salad", + "keywords": [ + "green salad", + "salad", + "food" + ] + }, + { + "code": "1f37f", + "char": "๐Ÿฟ", + "name": "popcorn", + "keywords": [ + "popcorn" + ] + }, + { + "code": "1f9c8", + "char": "๐Ÿงˆ", + "name": "butter", + "keywords": [ + "butter", + "dairy" + ] + }, + { + "code": "1f9c2", + "char": "๐Ÿง‚", + "name": "salt", + "keywords": [ + "condiment", + "salt", + "shaker" + ] + }, + { + "code": "1f96b", + "char": "๐Ÿฅซ", + "name": "canned food", + "keywords": [ + "canned food" + ] + }, + { + "code": "1f371", + "char": "๐Ÿฑ", + "name": "bento box", + "keywords": [ + "bento box", + "box" + ] + }, + { + "code": "1f358", + "char": "๐Ÿ˜", + "name": "rice cracker", + "keywords": [ + "cracker", + "rice cracker" + ] + }, + { + "code": "1f359", + "char": "๐Ÿ™", + "name": "rice ball", + "keywords": [ + "ball", + "japanese", + "rice ball" + ] + }, + { + "code": "1f35a", + "char": "๐Ÿš", + "name": "cooked rice", + "keywords": [ + "cooked", + "rice" + ] + }, + { + "code": "1f35b", + "char": "๐Ÿ›", + "name": "curry rice", + "keywords": [ + "curry", + "rice" + ] + }, + { + "code": "1f35c", + "char": "๐Ÿœ", + "name": "steaming bowl", + "keywords": [ + "bowl", + "noodle", + "ramen", + "steaming bowl" + ] + }, + { + "code": "1f35d", + "char": "๐Ÿ", + "name": "spaghetti", + "keywords": [ + "pasta", + "spaghetti" + ] + }, + { + "code": "1f360", + "char": "๐Ÿ ", + "name": "roasted sweet potato", + "keywords": [ + "potato", + "roasted sweet potato", + "sweet" + ] + }, + { + "code": "1f362", + "char": "๐Ÿข", + "name": "oden", + "keywords": [ + "kebab", + "oden", + "seafood", + "skewer", + "stick" + ] + }, + { + "code": "1f363", + "char": "๐Ÿฃ", + "name": "sushi", + "keywords": [ + "sushi" + ] + }, + { + "code": "1f364", + "char": "๐Ÿค", + "name": "fried shrimp", + "keywords": [ + "fried shrimp", + "prawn", + "shrimp", + "tempura" + ] + }, + { + "code": "1f365", + "char": "๐Ÿฅ", + "name": "fish cake with swirl", + "keywords": [ + "cake", + "fish cake with swirl", + "pastry", + "swirl" + ] + }, + { + "code": "1f96e", + "char": "๐Ÿฅฎ", + "name": "moon cake", + "keywords": [ + "autumn", + "festival", + "moon cake" + ] + }, + { + "code": "1f361", + "char": "๐Ÿก", + "name": "dango", + "keywords": [ + "dango", + "dessert", + "japanese", + "skewer", + "stick", + "sweet" + ] + }, + { + "code": "1f95f", + "char": "๐ŸฅŸ", + "name": "dumpling", + "keywords": [ + "dumpling", + "empanada", + "jiaozi", + "pierogi", + "poststicker" + ] + }, + { + "code": "1f960", + "char": "๐Ÿฅ ", + "name": "fortune cookie", + "keywords": [ + "fortune cookie", + "prophecy" + ] + }, + { + "code": "1f961", + "char": "๐Ÿฅก", + "name": "takeout box", + "keywords": [ + "oyster pail", + "takeout box" + ] + }, + { + "code": "1f980", + "char": "๐Ÿฆ€", + "name": "crab", + "keywords": [ + "cancer", + "crab", + "zodiac" + ] + }, + { + "code": "1f99e", + "char": "๐Ÿฆž", + "name": "lobster", + "keywords": [ + "bisque", + "claws", + "lobster", + "seafood" + ] + }, + { + "code": "1f990", + "char": "๐Ÿฆ", + "name": "shrimp", + "keywords": [ + "shellfish", + "shrimp", + "small", + "food" + ] + }, + { + "code": "1f991", + "char": "๐Ÿฆ‘", + "name": "squid", + "keywords": [ + "molusc", + "squid", + "food" + ] + }, + { + "code": "1f9aa", + "char": "๐Ÿฆช", + "name": "oyster", + "keywords": [ + "diving", + "oyster", + "pearl" + ] + }, + { + "code": "1f366", + "char": "๐Ÿฆ", + "name": "soft ice cream", + "keywords": [ + "cream", + "dessert", + "icecream", + "soft ice cream", + "sweet" + ] + }, + { + "code": "1f367", + "char": "๐Ÿง", + "name": "shaved ice", + "keywords": [ + "dessert", + "ice", + "shaved ice", + "sweet" + ] + }, + { + "code": "1f368", + "char": "๐Ÿจ", + "name": "ice cream", + "keywords": [ + "cream", + "dessert", + "ice cream", + "sweet" + ] + }, + { + "code": "1f369", + "char": "๐Ÿฉ", + "name": "doughnut", + "keywords": [ + "dessert", + "donut", + "doughnut", + "sweet", + "breakfast" + ] + }, + { + "code": "1f36a", + "char": "๐Ÿช", + "name": "cookie", + "keywords": [ + "cookie", + "dessert", + "sweet" + ] + }, + { + "code": "1f382", + "char": "๐ŸŽ‚", + "name": "birthday cake", + "keywords": [ + "birthday cake", + "cake", + "celebration", + "dessert", + "pastry", + "sweet" + ] + }, + { + "code": "1f370", + "char": "๐Ÿฐ", + "name": "shortcake", + "keywords": [ + "cake", + "dessert", + "pastry", + "shortcake", + "slice", + "sweet" + ] + }, + { + "code": "1f9c1", + "char": "๐Ÿง", + "name": "cupcake", + "keywords": [ + "bakery", + "cupcake", + "sweet" + ] + }, + { + "code": "1f967", + "char": "๐Ÿฅง", + "name": "pie", + "keywords": [ + "filling", + "pastry", + "pie", + "fruit", + "meat" + ] + }, + { + "code": "1f36b", + "char": "๐Ÿซ", + "name": "chocolate bar", + "keywords": [ + "bar", + "chocolate bar", + "dessert", + "sweet" + ] + }, + { + "code": "1f36c", + "char": "๐Ÿฌ", + "name": "candy", + "keywords": [ + "candy", + "dessert", + "sweet" + ] + }, + { + "code": "1f36d", + "char": "๐Ÿญ", + "name": "lollipop", + "keywords": [ + "candy", + "dessert", + "lollipop", + "sweet" + ] + }, + { + "code": "1f36e", + "char": "๐Ÿฎ", + "name": "custard", + "keywords": [ + "custard", + "dessert", + "pudding", + "sweet" + ] + }, + { + "code": "1f36f", + "char": "๐Ÿฏ", + "name": "honey pot", + "keywords": [ + "honeypot", + "pot", + "sweet" + ] + }, + { + "code": "1f37c", + "char": "๐Ÿผ", + "name": "baby bottle", + "keywords": [ + "baby bottle", + "bottle", + "drink", + "milk" + ] + }, + { + "code": "1f95b", + "char": "๐Ÿฅ›", + "name": "glass of milk", + "keywords": [ + "drink", + "glass of milk", + "milk" + ] + }, + { + "code": "2615", + "char": "โ˜•", + "name": "hot beverage", + "keywords": [ + "beverage", + "coffee", + "drink", + "hot beverage", + "steaming", + "tea" + ] + }, + { + "code": "1fad6", + "char": "๐Ÿซ–", + "name": "teapot", + "keywords": [ + "drink", + "pot", + "teapot" + ] + }, + { + "code": "1f375", + "char": "๐Ÿต", + "name": "teacup without handle", + "keywords": [ + "beverage", + "cup", + "drink", + "teacup without handle" + ] + }, + { + "code": "1f376", + "char": "๐Ÿถ", + "name": "sake", + "keywords": [ + "bar", + "beverage", + "bottle", + "cup", + "drink", + "sake" + ] + }, + { + "code": "1f37e", + "char": "๐Ÿพ", + "name": "bottle with popping cork", + "keywords": [ + "bar", + "bottle with popping cork", + "cork", + "drink", + "popping" + ] + }, + { + "code": "1f377", + "char": "๐Ÿท", + "name": "wine glass", + "keywords": [ + "bar", + "beverage", + "drink", + "glass", + "wine glass" + ] + }, + { + "code": "1f378", + "char": "๐Ÿธ", + "name": "cocktail glass", + "keywords": [ + "bar", + "cocktail glass", + "drink", + "glass" + ] + }, + { + "code": "1f379", + "char": "๐Ÿน", + "name": "tropical drink", + "keywords": [ + "bar", + "drink", + "tropical drink" + ] + }, + { + "code": "1f37a", + "char": "๐Ÿบ", + "name": "beer mug", + "keywords": [ + "bar", + "beer mug", + "drink", + "mug" + ] + }, + { + "code": "1f37b", + "char": "๐Ÿป", + "name": "clinking beer mugs", + "keywords": [ + "bar", + "beer", + "clinking beer mugs", + "drink", + "mug" + ] + }, + { + "code": "1f942", + "char": "๐Ÿฅ‚", + "name": "clinking glasses", + "keywords": [ + "celebrate", + "clinking glasses", + "drink", + "glass" + ] + }, + { + "code": "1f943", + "char": "๐Ÿฅƒ", + "name": "tumbler glass", + "keywords": [ + "glass", + "liquor", + "shot", + "tumbler glass", + "whisky" + ] + }, + { + "code": "1f964", + "char": "๐Ÿฅค", + "name": "cup with straw", + "keywords": [ + "cup with straw", + "juice", + "soda", + "malt", + "soft drink", + "water" + ] + }, + { + "code": "1f9cb", + "char": "๐Ÿง‹", + "name": "bubble tea", + "keywords": [ + "bubble tea", + "tea", + "milk", + "pearl" + ] + }, + { + "code": "1f9c3", + "char": "๐Ÿงƒ", + "name": "beverage box", + "keywords": [ + "beverage box", + "box", + "juice", + "straw", + "sweet" + ] + }, + { + "code": "1f9c9", + "char": "๐Ÿง‰", + "name": "mate", + "keywords": [ + "drink", + "mate" + ] + }, + { + "code": "1f9ca", + "char": "๐ŸงŠ", + "name": "ice", + "keywords": [ + "cold", + "ice cube", + "iceberg" + ] + }, + { + "code": "1f962", + "char": "๐Ÿฅข", + "name": "chopsticks", + "keywords": [ + "chopsticks", + "hashi", + "jeotgarak", + "kuaizi" + ] + }, + { + "code": "1f37d", + "char": "๐Ÿฝ", + "name": "fork and knife with plate", + "keywords": [ + "cooking", + "fork and knife with plate", + "knife", + "plate" + ] + }, + { + "code": "1f374", + "char": "๐Ÿด", + "name": "fork and knife", + "keywords": [ + "cooking", + "fork and knife", + "knife", + "cutlery" + ] + }, + { + "code": "1f944", + "char": "๐Ÿฅ„", + "name": "spoon", + "keywords": [ + "spoon", + "tableware" + ] + }, + { + "code": "1f52a", + "char": "๐Ÿ”ช", + "name": "kitchen knife", + "keywords": [ + "cooking", + "hocho", + "knife", + "tool", + "weapon", + "kitchen knife" + ] + }, + { + "code": "1f3fa", + "char": "๐Ÿบ", + "name": "amphora", + "keywords": [ + "amphora", + "aquarius", + "cooking", + "drink", + "jug", + "zodiac" + ] + } + ], + "Travel & Places": [ + { + "code": "1f30d", + "char": "๐ŸŒ", + "name": "globe showing Europe-Africa", + "keywords": [ + "africa", + "earth", + "europe", + "globe showing europe-africa", + "world" + ] + }, + { + "code": "1f30e", + "char": "๐ŸŒŽ", + "name": "globe showing Americas", + "keywords": [ + "americas", + "earth", + "globe showing americas", + "world" + ] + }, + { + "code": "1f30f", + "char": "๐ŸŒ", + "name": "globe showing Asia-Australia", + "keywords": [ + "asia", + "australia", + "earth", + "globe showing asia-australia", + "world" + ] + }, + { + "code": "1f310", + "char": "๐ŸŒ", + "name": "globe with meridians", + "keywords": [ + "earth", + "globe with meridians", + "meridians", + "world" + ] + }, + { + "code": "1f5fa", + "char": "๐Ÿ—บ", + "name": "world map", + "keywords": [ + "map", + "world map" + ] + }, + { + "code": "1f5fe", + "char": "๐Ÿ—พ", + "name": "map of Japan", + "keywords": [ + "japan", + "map of japan" + ] + }, + { + "code": "1f9ed", + "char": "๐Ÿงญ", + "name": "compass", + "keywords": [ + "compass", + "magnetic", + "navigation", + "orienteering" + ] + }, + { + "code": "1f3d4", + "char": "๐Ÿ”", + "name": "snow-capped mountain", + "keywords": [ + "cold", + "mountain", + "snow-capped mountain" + ] + }, + { + "code": "26f0", + "char": "โ›ฐ", + "name": "mountain", + "keywords": [ + "mountain" + ] + }, + { + "code": "1f30b", + "char": "๐ŸŒ‹", + "name": "volcano", + "keywords": [ + "eruption", + "mountain", + "volcano" + ] + }, + { + "code": "1f5fb", + "char": "๐Ÿ—ป", + "name": "mount fuji", + "keywords": [ + "fuji", + "mountain", + "mount fuji" + ] + }, + { + "code": "1f3d5", + "char": "๐Ÿ•", + "name": "camping", + "keywords": [ + "camping" + ] + }, + { + "code": "1f3d6", + "char": "๐Ÿ–", + "name": "beach with umbrella", + "keywords": [ + "beach with umbrella", + "umbrella" + ] + }, + { + "code": "1f3dc", + "char": "๐Ÿœ", + "name": "desert", + "keywords": [ + "desert" + ] + }, + { + "code": "1f3dd", + "char": "๐Ÿ", + "name": "desert island", + "keywords": [ + "desert island", + "island" + ] + }, + { + "code": "1f3de", + "char": "๐Ÿž", + "name": "national park", + "keywords": [ + "national park", + "park" + ] + }, + { + "code": "1f3df", + "char": "๐ŸŸ", + "name": "stadium", + "keywords": [ + "stadium" + ] + }, + { + "code": "1f3db", + "char": "๐Ÿ›", + "name": "classical building", + "keywords": [ + "building", + "classical building" + ] + }, + { + "code": "1f3d7", + "char": "๐Ÿ—", + "name": "building construction", + "keywords": [ + "building construction", + "construction" + ] + }, + { + "code": "1f9f1", + "char": "๐Ÿงฑ", + "name": "brick", + "keywords": [ + "bricks", + "clay", + "mortar", + "wall" + ] + }, + { + "code": "1faa8", + "char": "๐Ÿชจ", + "name": "rock", + "keywords": [ + "boulder", + "heavy", + "rock", + "solid", + "stone" + ] + }, + { + "code": "1fab5", + "char": "๐Ÿชต", + "name": "wood", + "keywords": [ + "log", + "lumber", + "timber", + "wood" + ] + }, + { + "code": "1f6d6", + "char": "๐Ÿ›–", + "name": "hut", + "keywords": [ + "house", + "hut", + "roundhouse", + "yurt" + ] + }, + { + "code": "1f3d8", + "char": "๐Ÿ˜", + "name": "houses", + "keywords": [ + "house" + ] + }, + { + "code": "1f3da", + "char": "๐Ÿš", + "name": "derelict house", + "keywords": [ + "derelict house", + "house" + ] + }, + { + "code": "1f3e0", + "char": "๐Ÿ ", + "name": "house", + "keywords": [ + "home", + "house" + ] + }, + { + "code": "1f3e1", + "char": "๐Ÿก", + "name": "house with garden", + "keywords": [ + "garden", + "home", + "house with garden" + ] + }, + { + "code": "1f3e2", + "char": "๐Ÿข", + "name": "office building", + "keywords": [ + "building", + "office building" + ] + }, + { + "code": "1f3e3", + "char": "๐Ÿฃ", + "name": "Japanese post office", + "keywords": [ + "japanese post office", + "post", + "office" + ] + }, + { + "code": "1f3e4", + "char": "๐Ÿค", + "name": "post office", + "keywords": [ + "european", + "post office", + "office" + ] + }, + { + "code": "1f3e5", + "char": "๐Ÿฅ", + "name": "hospital", + "keywords": [ + "doctor", + "hospital", + "medicine" + ] + }, + { + "code": "1f3e6", + "char": "๐Ÿฆ", + "name": "bank", + "keywords": [ + "bank", + "building" + ] + }, + { + "code": "1f3e8", + "char": "๐Ÿจ", + "name": "hotel", + "keywords": [ + "building", + "hotel" + ] + }, + { + "code": "1f3e9", + "char": "๐Ÿฉ", + "name": "love hotel", + "keywords": [ + "hotel", + "love hotel" + ] + }, + { + "code": "1f3ea", + "char": "๐Ÿช", + "name": "convenience store", + "keywords": [ + "convenience store", + "store" + ] + }, + { + "code": "1f3eb", + "char": "๐Ÿซ", + "name": "school", + "keywords": [ + "building", + "school" + ] + }, + { + "code": "1f3ec", + "char": "๐Ÿฌ", + "name": "department store", + "keywords": [ + "department store", + "store" + ] + }, + { + "code": "1f3ed", + "char": "๐Ÿญ", + "name": "factory", + "keywords": [ + "building", + "factory" + ] + }, + { + "code": "1f3ef", + "char": "๐Ÿฏ", + "name": "Japanese castle", + "keywords": [ + "castle", + "japanese castle" + ] + }, + { + "code": "1f3f0", + "char": "๐Ÿฐ", + "name": "castle", + "keywords": [ + "castle", + "european" + ] + }, + { + "code": "1f492", + "char": "๐Ÿ’’", + "name": "wedding", + "keywords": [ + "chapel", + "romance", + "wedding" + ] + }, + { + "code": "1f5fc", + "char": "๐Ÿ—ผ", + "name": "Tokyo tower", + "keywords": [ + "tokyo tower", + "tower" + ] + }, + { + "code": "1f5fd", + "char": "๐Ÿ—ฝ", + "name": "Statue of Liberty", + "keywords": [ + "liberty", + "statue of liberty" + ] + }, + { + "code": "26ea", + "char": "โ›ช", + "name": "church", + "keywords": [ + "christian", + "church", + "cross", + "religion" + ] + }, + { + "code": "1f54c", + "char": "๐Ÿ•Œ", + "name": "mosque", + "keywords": [ + "islam", + "mosque", + "muslim", + "religion" + ] + }, + { + "code": "1f6d5", + "char": "๐Ÿ›•", + "name": "hindu temple", + "keywords": [ + "hindu temple", + "temple" + ] + }, + { + "code": "1f54d", + "char": "๐Ÿ•", + "name": "synagogue", + "keywords": [ + "jewish", + "religion", + "synagogue", + "temple" + ] + }, + { + "code": "26e9", + "char": "โ›ฉ", + "name": "shinto shrine", + "keywords": [ + "religion", + "shinto shrine", + "shrine" + ] + }, + { + "code": "1f54b", + "char": "๐Ÿ•‹", + "name": "kaaba", + "keywords": [ + "islam", + "kaaba", + "muslim", + "religion" + ] + }, + { + "code": "26f2", + "char": "โ›ฒ", + "name": "fountain", + "keywords": [ + "fountain" + ] + }, + { + "code": "26fa", + "char": "โ›บ", + "name": "tent", + "keywords": [ + "camping", + "tent" + ] + }, + { + "code": "1f301", + "char": "๐ŸŒ", + "name": "foggy", + "keywords": [ + "foggy", + "weather" + ] + }, + { + "code": "1f303", + "char": "๐ŸŒƒ", + "name": "night with stars", + "keywords": [ + "night with stars", + "star", + "night" + ] + }, + { + "code": "1f3d9", + "char": "๐Ÿ™", + "name": "cityscape", + "keywords": [ + "cityscape" + ] + }, + { + "code": "1f304", + "char": "๐ŸŒ„", + "name": "sunrise over mountains", + "keywords": [ + "morning", + "mountain", + "sun", + "sunrise over mountains" + ] + }, + { + "code": "1f305", + "char": "๐ŸŒ…", + "name": "sunrise", + "keywords": [ + "morning", + "sunrise" + ] + }, + { + "code": "1f306", + "char": "๐ŸŒ†", + "name": "cityscape at dusk", + "keywords": [ + "cityscape at dusk", + "dusk", + "evening", + "landscape", + "sunset" + ] + }, + { + "code": "1f307", + "char": "๐ŸŒ‡", + "name": "sunset", + "keywords": [ + "dusk", + "sunset" + ] + }, + { + "code": "1f309", + "char": "๐ŸŒ‰", + "name": "bridge at night", + "keywords": [ + "bridge at night", + "night" + ] + }, + { + "code": "2668", + "char": "โ™จ", + "name": "hot springs", + "keywords": [ + "hotsprings", + "springs", + "steaming" + ] + }, + { + "code": "1f3a0", + "char": "๐ŸŽ ", + "name": "carousel horse", + "keywords": [ + "carousel horse", + "horse" + ] + }, + { + "code": "1f3a1", + "char": "๐ŸŽก", + "name": "ferris wheel", + "keywords": [ + "amusement park", + "ferris wheel", + "wheel" + ] + }, + { + "code": "1f3a2", + "char": "๐ŸŽข", + "name": "roller coaster", + "keywords": [ + "amusement park", + "coaster", + "roller coaster" + ] + }, + { + "code": "1f488", + "char": "๐Ÿ’ˆ", + "name": "barber pole", + "keywords": [ + "barber pole", + "haircut", + "pole" + ] + }, + { + "code": "1f3aa", + "char": "๐ŸŽช", + "name": "circus tent", + "keywords": [ + "circus tent", + "tent" + ] + }, + { + "code": "1f682", + "char": "๐Ÿš‚", + "name": "locomotive", + "keywords": [ + "engine", + "locomotive", + "railway", + "steam", + "train", + "vehicle" + ] + }, + { + "code": "1f683", + "char": "๐Ÿšƒ", + "name": "railway car", + "keywords": [ + "car", + "electric", + "railway car", + "train", + "tram", + "trolleybus", + "vehicle" + ] + }, + { + "code": "1f684", + "char": "๐Ÿš„", + "name": "high-speed train", + "keywords": [ + "railway", + "shinkansen", + "speed", + "train", + "vehicle", + "high-speed train" + ] + }, + { + "code": "1f685", + "char": "๐Ÿš…", + "name": "bullet train", + "keywords": [ + "bullet train", + "railway", + "shinkansen", + "speed", + "train", + "vehicle" + ] + }, + { + "code": "1f686", + "char": "๐Ÿš†", + "name": "train", + "keywords": [ + "railway", + "train", + "vehicle" + ] + }, + { + "code": "1f687", + "char": "๐Ÿš‡", + "name": "metro", + "keywords": [ + "metro", + "subway", + "vehicle" + ] + }, + { + "code": "1f688", + "char": "๐Ÿšˆ", + "name": "light rail", + "keywords": [ + "railway", + "vehicle", + "light rail" + ] + }, + { + "code": "1f689", + "char": "๐Ÿš‰", + "name": "station", + "keywords": [ + "railway", + "station", + "train", + "vehicle" + ] + }, + { + "code": "1f68a", + "char": "๐ŸšŠ", + "name": "tram", + "keywords": [ + "tram", + "trolleybus", + "vehicle" + ] + }, + { + "code": "1f69d", + "char": "๐Ÿš", + "name": "monorail", + "keywords": [ + "monorail", + "vehicle" + ] + }, + { + "code": "1f69e", + "char": "๐Ÿšž", + "name": "mountain railway", + "keywords": [ + "car", + "mountain railway", + "railway", + "vehicle" + ] + }, + { + "code": "1f68b", + "char": "๐Ÿš‹", + "name": "tram car", + "keywords": [ + "car", + "tram car", + "trolleybus", + "vehicle" + ] + }, + { + "code": "1f68c", + "char": "๐ŸšŒ", + "name": "bus", + "keywords": [ + "bus", + "vehicle" + ] + }, + { + "code": "1f68d", + "char": "๐Ÿš", + "name": "oncoming bus", + "keywords": [ + "bus", + "oncoming bus", + "vehicle" + ] + }, + { + "code": "1f68e", + "char": "๐ŸšŽ", + "name": "trolleybus", + "keywords": [ + "bus", + "tram", + "trolley", + "trolleybus", + "vehicle" + ] + }, + { + "code": "1f690", + "char": "๐Ÿš", + "name": "minibus", + "keywords": [ + "bus", + "minibus", + "vehicle" + ] + }, + { + "code": "1f691", + "char": "๐Ÿš‘", + "name": "ambulance", + "keywords": [ + "ambulance", + "vehicle" + ] + }, + { + "code": "1f692", + "char": "๐Ÿš’", + "name": "fire engine", + "keywords": [ + "engine", + "fire engine", + "truck", + "vehicle" + ] + }, + { + "code": "1f693", + "char": "๐Ÿš“", + "name": "police car", + "keywords": [ + "car", + "patrol", + "police car", + "vehicle" + ] + }, + { + "code": "1f694", + "char": "๐Ÿš”", + "name": "oncoming police car", + "keywords": [ + "car", + "oncoming police car", + "police", + "vehicle" + ] + }, + { + "code": "1f695", + "char": "๐Ÿš•", + "name": "taxi", + "keywords": [ + "taxi", + "vehicle" + ] + }, + { + "code": "1f696", + "char": "๐Ÿš–", + "name": "oncoming taxi", + "keywords": [ + "oncoming taxi", + "taxi", + "vehicle" + ] + }, + { + "code": "1f697", + "char": "๐Ÿš—", + "name": "automobile", + "keywords": [ + "automobile", + "car", + "vehicle" + ] + }, + { + "code": "1f698", + "char": "๐Ÿš˜", + "name": "oncoming automobile", + "keywords": [ + "automobile", + "car", + "oncoming automobile", + "vehicle" + ] + }, + { + "code": "1f699", + "char": "๐Ÿš™", + "name": "sport utility vehicle", + "keywords": [ + "recreational", + "rv", + "vehicle", + "sport utility vehicle" + ] + }, + { + "code": "1f6fb", + "char": "๐Ÿ›ป", + "name": "pickup truck", + "keywords": [ + "pick-up truck", + "pickup truck" + ] + }, + { + "code": "1f69a", + "char": "๐Ÿšš", + "name": "delivery truck", + "keywords": [ + "delivery truck", + "truck", + "vehicle" + ] + }, + { + "code": "1f69b", + "char": "๐Ÿš›", + "name": "articulated lorry", + "keywords": [ + "lorry", + "semi", + "truck", + "vehicle", + "articulated lorry" + ] + }, + { + "code": "1f69c", + "char": "๐Ÿšœ", + "name": "tractor", + "keywords": [ + "tractor", + "vehicle" + ] + }, + { + "code": "1f3ce", + "char": "๐ŸŽ", + "name": "racing car", + "keywords": [ + "car", + "racing car" + ] + }, + { + "code": "1f3cd", + "char": "๐Ÿ", + "name": "motorcycle", + "keywords": [ + "motorcycle", + "racing" + ] + }, + { + "code": "1f6f5", + "char": "๐Ÿ›ต", + "name": "motor scooter", + "keywords": [ + "motor scooter", + "scooter" + ] + }, + { + "code": "1f9bd", + "char": "๐Ÿฆฝ", + "name": "manual wheelchair", + "keywords": [ + "accessibility", + "manual wheelchair" + ] + }, + { + "code": "1f9bc", + "char": "๐Ÿฆผ", + "name": "motorized wheelchair", + "keywords": [ + "accessibility", + "motorized wheelchair" + ] + }, + { + "code": "1f6fa", + "char": "๐Ÿ›บ", + "name": "auto rickshaw", + "keywords": [ + "auto rickshaw", + "tuk tuk" + ] + }, + { + "code": "1f6b2", + "char": "๐Ÿšฒ", + "name": "bicycle", + "keywords": [ + "bicycle", + "bike" + ] + }, + { + "code": "1f6f4", + "char": "๐Ÿ›ด", + "name": "kick scooter", + "keywords": [ + "kick scooter", + "scooter" + ] + }, + { + "code": "1f6f9", + "char": "๐Ÿ›น", + "name": "skateboard", + "keywords": [ + "board", + "skateboard" + ] + }, + { + "code": "1f6fc", + "char": "๐Ÿ›ผ", + "name": "roller skate", + "keywords": [ + "roller skate", + "skate" + ] + }, + { + "code": "1f68f", + "char": "๐Ÿš", + "name": "bus stop", + "keywords": [ + "busstop", + "stop" + ] + }, + { + "code": "1f6e3", + "char": "๐Ÿ›ฃ", + "name": "motorway", + "keywords": [ + "highway", + "motorway", + "road" + ] + }, + { + "code": "1f6e4", + "char": "๐Ÿ›ค", + "name": "railway track", + "keywords": [ + "railway track", + "train" + ] + }, + { + "code": "1f6e2", + "char": "๐Ÿ›ข", + "name": "oil drum", + "keywords": [ + "drum", + "oil drum" + ] + }, + { + "code": "26fd", + "char": "โ›ฝ", + "name": "fuel pump", + "keywords": [ + "fuel pump", + "fuelpump", + "gas", + "pump", + "station", + "diesel" + ] + }, + { + "code": "1f6a8", + "char": "๐Ÿšจ", + "name": "police car light", + "keywords": [ + "beacon", + "car", + "light", + "police car light", + "revolving" + ] + }, + { + "code": "1f6a5", + "char": "๐Ÿšฅ", + "name": "horizontal traffic light", + "keywords": [ + "light", + "signal", + "traffic", + "horizontal traffic light" + ] + }, + { + "code": "1f6a6", + "char": "๐Ÿšฆ", + "name": "vertical traffic light", + "keywords": [ + "light", + "signal", + "traffic", + "vertical traffic light" + ] + }, + { + "code": "1f6d1", + "char": "๐Ÿ›‘", + "name": "stop sign", + "keywords": [ + "octagonal", + "stop sign", + "sign" + ] + }, + { + "code": "1f6a7", + "char": "๐Ÿšง", + "name": "construction", + "keywords": [ + "barrier", + "construction" + ] + }, + { + "code": "2693", + "char": "โš“", + "name": "anchor", + "keywords": [ + "anchor", + "ship", + "tool" + ] + }, + { + "code": "26f5", + "char": "โ›ต", + "name": "sailboat", + "keywords": [ + "boat", + "resort", + "sailboat", + "sea", + "yacht" + ] + }, + { + "code": "1f6f6", + "char": "๐Ÿ›ถ", + "name": "canoe", + "keywords": [ + "boat", + "canoe" + ] + }, + { + "code": "1f6a4", + "char": "๐Ÿšค", + "name": "speedboat", + "keywords": [ + "boat", + "speedboat" + ] + }, + { + "code": "1f6f3", + "char": "๐Ÿ›ณ", + "name": "passenger ship", + "keywords": [ + "passenger ship", + "ship" + ] + }, + { + "code": "26f4", + "char": "โ›ด", + "name": "ferry", + "keywords": [ + "boat", + "ferry", + "passenger" + ] + }, + { + "code": "1f6e5", + "char": "๐Ÿ›ฅ", + "name": "motor boat", + "keywords": [ + "boat", + "motorboat", + "motor boat" + ] + }, + { + "code": "1f6a2", + "char": "๐Ÿšข", + "name": "ship", + "keywords": [ + "ship", + "boat", + "passenger" + ] + }, + { + "code": "2708", + "char": "โœˆ", + "name": "airplane", + "keywords": [ + "airplane", + "aeroplane" + ] + }, + { + "code": "1f6e9", + "char": "๐Ÿ›ฉ", + "name": "small airplane", + "keywords": [ + "airplane", + "aeroplane", + "small airplane" + ] + }, + { + "code": "1f6eb", + "char": "๐Ÿ›ซ", + "name": "airplane departure", + "keywords": [ + "airplane departure", + "check-in", + "departures", + "aeroplane" + ] + }, + { + "code": "1f6ec", + "char": "๐Ÿ›ฌ", + "name": "airplane arrival", + "keywords": [ + "airplane arrival", + "arrivals", + "arriving", + "landing", + "aeroplane" + ] + }, + { + "code": "1fa82", + "char": "๐Ÿช‚", + "name": "parachute", + "keywords": [ + "hang-glide", + "parachute", + "parasail", + "skydive" + ] + }, + { + "code": "1f4ba", + "char": "๐Ÿ’บ", + "name": "seat", + "keywords": [ + "chair", + "seat" + ] + }, + { + "code": "1f681", + "char": "๐Ÿš", + "name": "helicopter", + "keywords": [ + "helicopter", + "vehicle" + ] + }, + { + "code": "1f69f", + "char": "๐ŸšŸ", + "name": "suspension railway", + "keywords": [ + "railway", + "suspension railway" + ] + }, + { + "code": "1f6a0", + "char": "๐Ÿš ", + "name": "mountain cableway", + "keywords": [ + "cableway", + "gondola", + "mountain cableway" + ] + }, + { + "code": "1f6a1", + "char": "๐Ÿšก", + "name": "aerial tramway", + "keywords": [ + "aerial tramway", + "cable", + "car", + "gondola", + "tramway" + ] + }, + { + "code": "1f6f0", + "char": "๐Ÿ›ฐ", + "name": "satellite", + "keywords": [ + "satellite", + "space" + ] + }, + { + "code": "1f680", + "char": "๐Ÿš€", + "name": "rocket", + "keywords": [ + "rocket", + "space" + ] + }, + { + "code": "1f6f8", + "char": "๐Ÿ›ธ", + "name": "flying saucer", + "keywords": [ + "flying saucer", + "UFO" + ] + }, + { + "code": "1f6ce", + "char": "๐Ÿ›Ž", + "name": "bellhop bell", + "keywords": [ + "bellhop bell", + "hotel" + ] + }, + { + "code": "1f9f3", + "char": "๐Ÿงณ", + "name": "luggage", + "keywords": [ + "luggage", + "packing", + "travel" + ] + }, + { + "code": "231b", + "char": "โŒ›", + "name": "hourglass done", + "keywords": [ + "hourglass done", + "sand", + "timer" + ] + }, + { + "code": "23f3", + "char": "โณ", + "name": "hourglass not done", + "keywords": [ + "hourglass not done", + "sand", + "timer" + ] + }, + { + "code": "231a", + "char": "โŒš", + "name": "watch", + "keywords": [ + "clock", + "watch" + ] + }, + { + "code": "23f0", + "char": "โฐ", + "name": "alarm clock", + "keywords": [ + "alarm clock", + "clock" + ] + }, + { + "code": "23f1", + "char": "โฑ", + "name": "stopwatch", + "keywords": [ + "clock", + "stopwatch" + ] + }, + { + "code": "23f2", + "char": "โฒ", + "name": "timer clock", + "keywords": [ + "clock", + "timer clock" + ] + }, + { + "code": "1f570", + "char": "๐Ÿ•ฐ", + "name": "mantelpiece clock", + "keywords": [ + "clock", + "mantelpiece clock" + ] + }, + { + "code": "1f55b", + "char": "๐Ÿ•›", + "name": "twelve oโ€™clock", + "keywords": [ + "00", + "12", + "12:00", + "clock", + "oโ€™clock", + "twelve" + ] + }, + { + "code": "1f567", + "char": "๐Ÿ•ง", + "name": "twelve-thirty", + "keywords": [ + "12", + "12:30", + "clock", + "thirty", + "twelve-thirty" + ] + }, + { + "code": "1f550", + "char": "๐Ÿ•", + "name": "one oโ€™clock", + "keywords": [ + "00", + "1", + "1:00", + "clock", + "oโ€™clock", + "one" + ] + }, + { + "code": "1f55c", + "char": "๐Ÿ•œ", + "name": "one-thirty", + "keywords": [ + "1", + "1:30", + "clock", + "one-thirty", + "thirty" + ] + }, + { + "code": "1f551", + "char": "๐Ÿ•‘", + "name": "two oโ€™clock", + "keywords": [ + "00", + "2", + "2:00", + "clock", + "oโ€™clock", + "two" + ] + }, + { + "code": "1f55d", + "char": "๐Ÿ•", + "name": "two-thirty", + "keywords": [ + "2", + "2:30", + "clock", + "thirty", + "two-thirty" + ] + }, + { + "code": "1f552", + "char": "๐Ÿ•’", + "name": "three oโ€™clock", + "keywords": [ + "00", + "3", + "3:00", + "clock", + "oโ€™clock", + "three" + ] + }, + { + "code": "1f55e", + "char": "๐Ÿ•ž", + "name": "three-thirty", + "keywords": [ + "3", + "3:30", + "clock", + "thirty", + "three-thirty" + ] + }, + { + "code": "1f553", + "char": "๐Ÿ•“", + "name": "four oโ€™clock", + "keywords": [ + "00", + "4", + "4:00", + "clock", + "four", + "oโ€™clock" + ] + }, + { + "code": "1f55f", + "char": "๐Ÿ•Ÿ", + "name": "four-thirty", + "keywords": [ + "4", + "4:30", + "clock", + "four-thirty", + "thirty" + ] + }, + { + "code": "1f554", + "char": "๐Ÿ•”", + "name": "five oโ€™clock", + "keywords": [ + "00", + "5", + "5:00", + "clock", + "five", + "oโ€™clock" + ] + }, + { + "code": "1f560", + "char": "๐Ÿ• ", + "name": "five-thirty", + "keywords": [ + "5", + "5:30", + "clock", + "five-thirty", + "thirty" + ] + }, + { + "code": "1f555", + "char": "๐Ÿ••", + "name": "six oโ€™clock", + "keywords": [ + "00", + "6", + "6:00", + "clock", + "oโ€™clock", + "six" + ] + }, + { + "code": "1f561", + "char": "๐Ÿ•ก", + "name": "six-thirty", + "keywords": [ + "6", + "6:30", + "clock", + "six-thirty", + "thirty" + ] + }, + { + "code": "1f556", + "char": "๐Ÿ•–", + "name": "seven oโ€™clock", + "keywords": [ + "00", + "7", + "7:00", + "clock", + "oโ€™clock", + "seven" + ] + }, + { + "code": "1f562", + "char": "๐Ÿ•ข", + "name": "seven-thirty", + "keywords": [ + "7", + "7:30", + "clock", + "seven-thirty", + "thirty" + ] + }, + { + "code": "1f557", + "char": "๐Ÿ•—", + "name": "eight oโ€™clock", + "keywords": [ + "00", + "8", + "8:00", + "clock", + "eight", + "oโ€™clock" + ] + }, + { + "code": "1f563", + "char": "๐Ÿ•ฃ", + "name": "eight-thirty", + "keywords": [ + "8", + "8:30", + "clock", + "eight-thirty", + "thirty" + ] + }, + { + "code": "1f558", + "char": "๐Ÿ•˜", + "name": "nine oโ€™clock", + "keywords": [ + "00", + "9", + "9:00", + "clock", + "nine", + "oโ€™clock" + ] + }, + { + "code": "1f564", + "char": "๐Ÿ•ค", + "name": "nine-thirty", + "keywords": [ + "9", + "9:30", + "clock", + "nine-thirty", + "thirty" + ] + }, + { + "code": "1f559", + "char": "๐Ÿ•™", + "name": "ten oโ€™clock", + "keywords": [ + "00", + "10", + "10:00", + "clock", + "oโ€™clock", + "ten" + ] + }, + { + "code": "1f565", + "char": "๐Ÿ•ฅ", + "name": "ten-thirty", + "keywords": [ + "10", + "10:30", + "clock", + "ten-thirty", + "thirty" + ] + }, + { + "code": "1f55a", + "char": "๐Ÿ•š", + "name": "eleven oโ€™clock", + "keywords": [ + "00", + "11", + "11:00", + "clock", + "eleven", + "oโ€™clock" + ] + }, + { + "code": "1f566", + "char": "๐Ÿ•ฆ", + "name": "eleven-thirty", + "keywords": [ + "11", + "11:30", + "clock", + "eleven-thirty", + "thirty" + ] + }, + { + "code": "1f311", + "char": "๐ŸŒ‘", + "name": "new moon", + "keywords": [ + "dark", + "moon", + "new moon" + ] + }, + { + "code": "1f312", + "char": "๐ŸŒ’", + "name": "waxing crescent moon", + "keywords": [ + "crescent", + "moon", + "waxing crescent moon" + ] + }, + { + "code": "1f313", + "char": "๐ŸŒ“", + "name": "first quarter moon", + "keywords": [ + "moon", + "quarter", + "first quarter moon" + ] + }, + { + "code": "1f314", + "char": "๐ŸŒ”", + "name": "waxing gibbous moon", + "keywords": [ + "gibbous", + "moon", + "waxing gibbous moon" + ] + }, + { + "code": "1f315", + "char": "๐ŸŒ•", + "name": "full moon", + "keywords": [ + "full moon", + "moon" + ] + }, + { + "code": "1f316", + "char": "๐ŸŒ–", + "name": "waning gibbous moon", + "keywords": [ + "gibbous", + "moon", + "waning gibbous moon" + ] + }, + { + "code": "1f317", + "char": "๐ŸŒ—", + "name": "last quarter moon", + "keywords": [ + "moon", + "quarter", + "last quarter moon" + ] + }, + { + "code": "1f318", + "char": "๐ŸŒ˜", + "name": "waning crescent moon", + "keywords": [ + "crescent", + "moon", + "waning crescent moon" + ] + }, + { + "code": "1f319", + "char": "๐ŸŒ™", + "name": "crescent moon", + "keywords": [ + "crescent moon", + "moon" + ] + }, + { + "code": "1f31a", + "char": "๐ŸŒš", + "name": "new moon face", + "keywords": [ + "face", + "moon", + "new moon face" + ] + }, + { + "code": "1f31b", + "char": "๐ŸŒ›", + "name": "first quarter moon face", + "keywords": [ + "face", + "moon", + "quarter", + "first quarter moon face" + ] + }, + { + "code": "1f31c", + "char": "๐ŸŒœ", + "name": "last quarter moon face", + "keywords": [ + "face", + "moon", + "quarter", + "last quarter moon face" + ] + }, + { + "code": "1f321", + "char": "๐ŸŒก", + "name": "thermometer", + "keywords": [ + "thermometer", + "weather" + ] + }, + { + "code": "2600", + "char": "โ˜€", + "name": "sun", + "keywords": [ + "bright", + "rays", + "sunny" + ] + }, + { + "code": "1f31d", + "char": "๐ŸŒ", + "name": "full moon face", + "keywords": [ + "bright", + "face", + "full moon face", + "moon" + ] + }, + { + "code": "1f31e", + "char": "๐ŸŒž", + "name": "sun with face", + "keywords": [ + "bright", + "face", + "sun with face" + ] + }, + { + "code": "1fa90", + "char": "๐Ÿช", + "name": "ringed planet", + "keywords": [ + "ringed planet", + "saturnine" + ] + }, + { + "code": "2b50", + "char": "โญ", + "name": "star", + "keywords": [ + "star" + ] + }, + { + "code": "1f31f", + "char": "๐ŸŒŸ", + "name": "glowing star", + "keywords": [ + "glittery", + "glowing star", + "shining", + "sparkle", + "star" + ] + }, + { + "code": "1f320", + "char": "๐ŸŒ ", + "name": "shooting star", + "keywords": [ + "falling", + "shooting star", + "star" + ] + }, + { + "code": "1f30c", + "char": "๐ŸŒŒ", + "name": "milky way", + "keywords": [ + "milky way", + "space" + ] + }, + { + "code": "2601", + "char": "โ˜", + "name": "cloud", + "keywords": [ + "cloud", + "weather" + ] + }, + { + "code": "26c5", + "char": "โ›…", + "name": "sun behind cloud", + "keywords": [ + "cloud", + "sun behind cloud" + ] + }, + { + "code": "26c8", + "char": "โ›ˆ", + "name": "cloud with lightning and rain", + "keywords": [ + "cloud with lightning and rain", + "rain", + "thunder", + "lightning" + ] + }, + { + "code": "1f324", + "char": "๐ŸŒค", + "name": "sun behind small cloud", + "keywords": [ + "cloud", + "sun", + "sum behind small cloud" + ] + }, + { + "code": "1f325", + "char": "๐ŸŒฅ", + "name": "sun behind large cloud", + "keywords": [ + "cloud", + "sun", + "sun behind large cloud" + ] + }, + { + "code": "1f326", + "char": "๐ŸŒฆ", + "name": "sun behind rain cloud", + "keywords": [ + "cloud", + "rain", + "sun behind rain cloud" + ] + }, + { + "code": "1f327", + "char": "๐ŸŒง", + "name": "cloud with rain", + "keywords": [ + "cloud with rain", + "rain" + ] + }, + { + "code": "1f328", + "char": "๐ŸŒจ", + "name": "cloud with snow", + "keywords": [ + "cloud with snow", + "cold", + "snow" + ] + }, + { + "code": "1f329", + "char": "๐ŸŒฉ", + "name": "cloud with lightning", + "keywords": [ + "cloud with lightning", + "lightning" + ] + }, + { + "code": "1f32a", + "char": "๐ŸŒช", + "name": "tornado", + "keywords": [ + "cloud", + "tornado", + "whirlwind" + ] + }, + { + "code": "1f32b", + "char": "๐ŸŒซ", + "name": "fog", + "keywords": [ + "cloud", + "fog" + ] + }, + { + "code": "1f32c", + "char": "๐ŸŒฌ", + "name": "wind face", + "keywords": [ + "blow", + "cloud", + "face", + "wind face" + ] + }, + { + "code": "1f300", + "char": "๐ŸŒ€", + "name": "cyclone", + "keywords": [ + "cyclone", + "dizzy", + "twister", + "typhoon", + "hurricane" + ] + }, + { + "code": "1f308", + "char": "๐ŸŒˆ", + "name": "rainbow", + "keywords": [ + "rainbow" + ] + }, + { + "code": "1f302", + "char": "๐ŸŒ‚", + "name": "closed umbrella", + "keywords": [ + "clothing", + "rain", + "umbrella", + "closed umbrella" + ] + }, + { + "code": "2602", + "char": "โ˜‚", + "name": "umbrella", + "keywords": [ + "clothing", + "rain", + "umbrella" + ] + }, + { + "code": "2614", + "char": "โ˜”", + "name": "umbrella with rain drops", + "keywords": [ + "clothing", + "drop", + "rain", + "umbrella with rain drops" + ] + }, + { + "code": "26f1", + "char": "โ›ฑ", + "name": "umbrella on ground", + "keywords": [ + "rain", + "sun", + "umbrella on ground" + ] + }, + { + "code": "26a1", + "char": "โšก", + "name": "high voltage", + "keywords": [ + "danger", + "electricity", + "lightning", + "voltage", + "zap", + "high voltage" + ] + }, + { + "code": "2744", + "char": "โ„", + "name": "snowflake", + "keywords": [ + "cold", + "snowflake" + ] + }, + { + "code": "2603", + "char": "โ˜ƒ", + "name": "snowman", + "keywords": [ + "cold", + "snowman" + ] + }, + { + "code": "26c4", + "char": "โ›„", + "name": "snowman without snow", + "keywords": [ + "cold", + "snow", + "snowman without snow" + ] + }, + { + "code": "2604", + "char": "โ˜„", + "name": "comet", + "keywords": [ + "comet", + "space" + ] + }, + { + "code": "1f525", + "char": "๐Ÿ”ฅ", + "name": "fire", + "keywords": [ + "fire", + "flame", + "tool" + ] + }, + { + "code": "1f4a7", + "char": "๐Ÿ’ง", + "name": "droplet", + "keywords": [ + "cold", + "comic", + "droplet", + "sweat" + ] + }, + { + "code": "1f30a", + "char": "๐ŸŒŠ", + "name": "water wave", + "keywords": [ + "ocean", + "water wave", + "wave" + ] + } + ], + "Activities": [ + { + "code": "1f383", + "char": "๐ŸŽƒ", + "name": "jack-o-lantern", + "keywords": [ + "celebration", + "halloween", + "jack-o-lantern", + "lantern" + ] + }, + { + "code": "1f384", + "char": "๐ŸŽ„", + "name": "Christmas tree", + "keywords": [ + "celebration", + "christmas tree", + "tree" + ] + }, + { + "code": "1f386", + "char": "๐ŸŽ†", + "name": "fireworks", + "keywords": [ + "celebration", + "fireworks" + ] + }, + { + "code": "1f387", + "char": "๐ŸŽ‡", + "name": "sparkler", + "keywords": [ + "celebration", + "fireworks", + "sparkler" + ] + }, + { + "code": "1f9e8", + "char": "๐Ÿงจ", + "name": "firecracker", + "keywords": [ + "dynamite", + "explosive", + "firecracker", + "fireworks" + ] + }, + { + "code": "2728", + "char": "โœจ", + "name": "sparkles", + "keywords": [ + "sparkles", + "star", + "*" + ] + }, + { + "code": "1f388", + "char": "๐ŸŽˆ", + "name": "balloon", + "keywords": [ + "balloon", + "celebration" + ] + }, + { + "code": "1f389", + "char": "๐ŸŽ‰", + "name": "party popper", + "keywords": [ + "celebration", + "party popper", + "popper", + "tada" + ] + }, + { + "code": "1f38a", + "char": "๐ŸŽŠ", + "name": "confetti ball", + "keywords": [ + "ball", + "celebration", + "confetti ball" + ] + }, + { + "code": "1f38b", + "char": "๐ŸŽ‹", + "name": "tanabata tree", + "keywords": [ + "banner", + "celebration", + "japanese", + "tree", + "tanabata tree" + ] + }, + { + "code": "1f38d", + "char": "๐ŸŽ", + "name": "pine decoration", + "keywords": [ + "bamboo", + "celebration", + "japanese", + "pine decoration" + ] + }, + { + "code": "1f38e", + "char": "๐ŸŽŽ", + "name": "Japanese dolls", + "keywords": [ + "celebration", + "doll", + "festival", + "japanese dolls" + ] + }, + { + "code": "1f38f", + "char": "๐ŸŽ", + "name": "carp streamer", + "keywords": [ + "carp streamer", + "celebration", + "streamer" + ] + }, + { + "code": "1f390", + "char": "๐ŸŽ", + "name": "wind chime", + "keywords": [ + "bell", + "celebration", + "chime", + "wind chime" + ] + }, + { + "code": "1f391", + "char": "๐ŸŽ‘", + "name": "moon viewing ceremony", + "keywords": [ + "celebration", + "ceremony", + "moon viewing ceremony" + ] + }, + { + "code": "1f9e7", + "char": "๐Ÿงง", + "name": "red envelope", + "keywords": [ + "gift", + "good luck", + "money", + "red envelope" + ] + }, + { + "code": "1f380", + "char": "๐ŸŽ€", + "name": "ribbon", + "keywords": [ + "celebration", + "ribbon" + ] + }, + { + "code": "1f381", + "char": "๐ŸŽ", + "name": "wrapped gift", + "keywords": [ + "box", + "celebration", + "gift", + "present", + "wrapped gift" + ] + }, + { + "code": "1f397", + "char": "๐ŸŽ—", + "name": "reminder ribbon", + "keywords": [ + "celebration", + "reminder ribbon", + "ribbon" + ] + }, + { + "code": "1f39f", + "char": "๐ŸŽŸ", + "name": "admission tickets", + "keywords": [ + "admission tickets", + "tickets" + ] + }, + { + "code": "1f3ab", + "char": "๐ŸŽซ", + "name": "ticket", + "keywords": [ + "admission", + "ticket" + ] + }, + { + "code": "1f396", + "char": "๐ŸŽ–", + "name": "military medal", + "keywords": [ + "celebration", + "medal", + "military medal" + ] + }, + { + "code": "1f3c6", + "char": "๐Ÿ†", + "name": "trophy", + "keywords": [ + "prize", + "trophy" + ] + }, + { + "code": "1f3c5", + "char": "๐Ÿ…", + "name": "sports medal", + "keywords": [ + "medal", + "sports medal" + ] + }, + { + "code": "1f947", + "char": "๐Ÿฅ‡", + "name": "1st place medal", + "keywords": [ + "first", + "gold", + "medal", + "1st place medal" + ] + }, + { + "code": "1f948", + "char": "๐Ÿฅˆ", + "name": "2nd place medal", + "keywords": [ + "medal", + "second", + "silver", + "2nd place medal" + ] + }, + { + "code": "1f949", + "char": "๐Ÿฅ‰", + "name": "3rd place medal", + "keywords": [ + "bronze", + "medal", + "third", + "3rd place medal" + ] + }, + { + "code": "26bd", + "char": "โšฝ", + "name": "soccer ball", + "keywords": [ + "ball", + "soccer ball", + "football" + ] + }, + { + "code": "26be", + "char": "โšพ", + "name": "baseball", + "keywords": [ + "ball", + "baseball" + ] + }, + { + "code": "1f94e", + "char": "๐ŸฅŽ", + "name": "softball", + "keywords": [ + "ball", + "glove", + "softball", + "underarm" + ] + }, + { + "code": "1f3c0", + "char": "๐Ÿ€", + "name": "basketball", + "keywords": [ + "ball", + "basketball", + "hoop" + ] + }, + { + "code": "1f3d0", + "char": "๐Ÿ", + "name": "volleyball", + "keywords": [ + "ball", + "game", + "volleyball" + ] + }, + { + "code": "1f3c8", + "char": "๐Ÿˆ", + "name": "american football", + "keywords": [ + "american football", + "ball", + "football" + ] + }, + { + "code": "1f3c9", + "char": "๐Ÿ‰", + "name": "rugby football", + "keywords": [ + "ball", + "football", + "rugby football" + ] + }, + { + "code": "1f3be", + "char": "๐ŸŽพ", + "name": "tennis", + "keywords": [ + "ball", + "racquet", + "tennis" + ] + }, + { + "code": "1f94f", + "char": "๐Ÿฅ", + "name": "flying disc", + "keywords": [ + "flying disc", + "ultimate" + ] + }, + { + "code": "1f3b3", + "char": "๐ŸŽณ", + "name": "bowling", + "keywords": [ + "ball", + "bowling", + "game" + ] + }, + { + "code": "1f3cf", + "char": "๐Ÿ", + "name": "cricket game", + "keywords": [ + "ball", + "bat", + "cricket game", + "game" + ] + }, + { + "code": "1f3d1", + "char": "๐Ÿ‘", + "name": "field hockey", + "keywords": [ + "ball", + "field hockey", + "game", + "hockey", + "stick" + ] + }, + { + "code": "1f3d2", + "char": "๐Ÿ’", + "name": "ice hockey", + "keywords": [ + "game", + "hockey", + "ice hockey", + "puck", + "stick" + ] + }, + { + "code": "1f94d", + "char": "๐Ÿฅ", + "name": "lacrosse", + "keywords": [ + "ball", + "goal", + "lacrosse", + "stick" + ] + }, + { + "code": "1f3d3", + "char": "๐Ÿ“", + "name": "ping pong", + "keywords": [ + "ball", + "bat", + "game", + "paddle", + "table tennis", + "ping pong" + ] + }, + { + "code": "1f3f8", + "char": "๐Ÿธ", + "name": "badminton", + "keywords": [ + "badminton", + "birdie", + "game", + "racquet", + "shuttlecock" + ] + }, + { + "code": "1f94a", + "char": "๐ŸฅŠ", + "name": "boxing glove", + "keywords": [ + "boxing glove", + "glove" + ] + }, + { + "code": "1f94b", + "char": "๐Ÿฅ‹", + "name": "martial arts uniform", + "keywords": [ + "judo", + "karate", + "martial arts uniform", + "taekwondo", + "uniform" + ] + }, + { + "code": "1f945", + "char": "๐Ÿฅ…", + "name": "goal net", + "keywords": [ + "goal net", + "net" + ] + }, + { + "code": "26f3", + "char": "โ›ณ", + "name": "flag in hole", + "keywords": [ + "flag in hole", + "golf", + "hole" + ] + }, + { + "code": "26f8", + "char": "โ›ธ", + "name": "ice skate", + "keywords": [ + "ice skate", + "skate" + ] + }, + { + "code": "1f3a3", + "char": "๐ŸŽฃ", + "name": "fishing pole", + "keywords": [ + "fishing pole", + "pole" + ] + }, + { + "code": "1f93f", + "char": "๐Ÿคฟ", + "name": "diving mask", + "keywords": [ + "diving mask", + "scuba", + "snorkelling" + ] + }, + { + "code": "1f3bd", + "char": "๐ŸŽฝ", + "name": "running shirt", + "keywords": [ + "running shirt", + "sash", + "shirt", + "athletic" + ] + }, + { + "code": "1f3bf", + "char": "๐ŸŽฟ", + "name": "skis", + "keywords": [ + "skis", + "snow" + ] + }, + { + "code": "1f6f7", + "char": "๐Ÿ›ท", + "name": "sled", + "keywords": [ + "sledge", + "sleigh", + "luge", + "toboggan" + ] + }, + { + "code": "1f94c", + "char": "๐ŸฅŒ", + "name": "curling stone", + "keywords": [ + "curling stone", + "game", + "rock" + ] + }, + { + "code": "1f3af", + "char": "๐ŸŽฏ", + "name": "bullseye", + "keywords": [ + "bullseye", + "dart", + "direct hit", + "game", + "hit", + "target" + ] + }, + { + "code": "1fa80", + "char": "๐Ÿช€", + "name": "yo-yo", + "keywords": [ + "fluctuate", + "toy", + "yo-yo" + ] + }, + { + "code": "1fa81", + "char": "๐Ÿช", + "name": "kite", + "keywords": [ + "fly", + "kite", + "soar" + ] + }, + { + "code": "1f3b1", + "char": "๐ŸŽฑ", + "name": "pool 8 ball", + "keywords": [ + "8", + "pool 8 ball", + "ball", + "billiard", + "eight", + "game" + ] + }, + { + "code": "1f52e", + "char": "๐Ÿ”ฎ", + "name": "crystal ball", + "keywords": [ + "ball", + "crystal ball", + "fairy tale", + "fantasy", + "fortune", + "tool" + ] + }, + { + "code": "1fa84", + "char": "๐Ÿช„", + "name": "magic wand", + "keywords": [ + "magic wand", + "witch", + "wizard" + ] + }, + { + "code": "1f9ff", + "char": "๐Ÿงฟ", + "name": "nazar amulet", + "keywords": [ + "bead", + "charm", + "evil-eye", + "nazar amulet", + "talisman" + ] + }, + { + "code": "1f3ae", + "char": "๐ŸŽฎ", + "name": "video game", + "keywords": [ + "controller", + "game", + "video game" + ] + }, + { + "code": "1f579", + "char": "๐Ÿ•น", + "name": "joystick", + "keywords": [ + "game", + "joystick", + "video game" + ] + }, + { + "code": "1f3b0", + "char": "๐ŸŽฐ", + "name": "slot machine", + "keywords": [ + "game", + "slot machine" + ] + }, + { + "code": "1f3b2", + "char": "๐ŸŽฒ", + "name": "game die", + "keywords": [ + "dice", + "die", + "game die" + ] + }, + { + "code": "1f9e9", + "char": "๐Ÿงฉ", + "name": "puzzle piece", + "keywords": [ + "clue", + "interlocking", + "jigsaw", + "piece", + "puzzle piece" + ] + }, + { + "code": "1f9f8", + "char": "๐Ÿงธ", + "name": "teddy bear", + "keywords": [ + "plaything", + "plush", + "stuffed", + "teddy bear", + "toy" + ] + }, + { + "code": "1fa85", + "char": "๐Ÿช…", + "name": "piรฑata", + "keywords": [ + "celebration", + "party", + "piรฑata" + ] + }, + { + "code": "1fa86", + "char": "๐Ÿช†", + "name": "nesting dolls", + "keywords": [ + "doll", + "nesting dolls", + "russia" + ] + }, + { + "code": "2660", + "char": "โ™ ", + "name": "spade suit", + "keywords": [ + "card", + "game", + "spade suit", + "suit" + ] + }, + { + "code": "2665", + "char": "โ™ฅ", + "name": "heart suit", + "keywords": [ + "card", + "game", + "heart suit", + "hearts", + "suit" + ] + }, + { + "code": "2666", + "char": "โ™ฆ", + "name": "diamond suit", + "keywords": [ + "card", + "diamond suit", + "diamonds", + "game", + "suit" + ] + }, + { + "code": "2663", + "char": "โ™ฃ", + "name": "club suit", + "keywords": [ + "card", + "club suit", + "clubs", + "game", + "suit" + ] + }, + { + "code": "265f", + "char": "โ™Ÿ", + "name": "chess pawn", + "keywords": [ + "chess pawn", + "dupe", + "expendable" + ] + }, + { + "code": "1f0cf", + "char": "๐Ÿƒ", + "name": "joker", + "keywords": [ + "card", + "game", + "joker", + "wildcard" + ] + }, + { + "code": "1f004", + "char": "๐Ÿ€„", + "name": "mahjong red dragon", + "keywords": [ + "game", + "mahjong red dragon", + "red" + ] + }, + { + "code": "1f3b4", + "char": "๐ŸŽด", + "name": "flower playing cards", + "keywords": [ + "card", + "flower playing cards", + "game", + "japanese", + "playing" + ] + }, + { + "code": "1f3ad", + "char": "๐ŸŽญ", + "name": "performing arts", + "keywords": [ + "art", + "mask", + "performing arts", + "theater", + "theatre" + ] + }, + { + "code": "1f5bc", + "char": "๐Ÿ–ผ", + "name": "framed picture", + "keywords": [ + "art", + "framed picture", + "museum", + "painting", + "picture" + ] + }, + { + "code": "1f3a8", + "char": "๐ŸŽจ", + "name": "artist palette", + "keywords": [ + "artist palette", + "museum", + "painting", + "palette" + ] + }, + { + "code": "1f9f5", + "char": "๐Ÿงต", + "name": "thread", + "keywords": [ + "needle", + "sewing", + "spool", + "string", + "thread" + ] + }, + { + "code": "1faa1", + "char": "๐Ÿชก", + "name": "sewing needle", + "keywords": [ + "embroidery", + "needle", + "sewing needle", + "stitches", + "sutures", + "tailoring" + ] + }, + { + "code": "1f9f6", + "char": "๐Ÿงถ", + "name": "yarn", + "keywords": [ + "ball", + "crochet", + "knit", + "yarn" + ] + }, + { + "code": "1faa2", + "char": "๐Ÿชข", + "name": "knot", + "keywords": [ + "knot", + "rope", + "tangled", + "tie", + "twine", + "twist" + ] + } + ], + "Objects": [ + { + "code": "1f453", + "char": "๐Ÿ‘“", + "name": "glasses", + "keywords": [ + "clothing", + "eyeglasses", + "eyewear", + "glasses" + ] + }, + { + "code": "1f576", + "char": "๐Ÿ•ถ", + "name": "sunglasses", + "keywords": [ + "dark", + "eyewear", + "glasses", + "sunglasses" + ] + }, + { + "code": "1f97d", + "char": "๐Ÿฅฝ", + "name": "goggles", + "keywords": [ + "eye protection", + "goggles", + "swimming", + "welding" + ] + }, + { + "code": "1f97c", + "char": "๐Ÿฅผ", + "name": "lab coat", + "keywords": [ + "doctor", + "experiment", + "lab coat", + "scientist" + ] + }, + { + "code": "1f9ba", + "char": "๐Ÿฆบ", + "name": "safety vest", + "keywords": [ + "emergency", + "safety vest", + "vest" + ] + }, + { + "code": "1f454", + "char": "๐Ÿ‘”", + "name": "necktie", + "keywords": [ + "clothing", + "necktie", + "tie" + ] + }, + { + "code": "1f455", + "char": "๐Ÿ‘•", + "name": "t-shirt", + "keywords": [ + "clothing", + "shirt", + "t-shirt", + "tshirt" + ] + }, + { + "code": "1f456", + "char": "๐Ÿ‘–", + "name": "jeans", + "keywords": [ + "clothing", + "jeans", + "pants", + "trousers" + ] + }, + { + "code": "1f9e3", + "char": "๐Ÿงฃ", + "name": "scarf", + "keywords": [ + "scarf", + "neck" + ] + }, + { + "code": "1f9e4", + "char": "๐Ÿงค", + "name": "gloves", + "keywords": [ + "gloves", + "hand" + ] + }, + { + "code": "1f9e5", + "char": "๐Ÿงฅ", + "name": "coat", + "keywords": [ + "coat", + "jacket" + ] + }, + { + "code": "1f9e6", + "char": "๐Ÿงฆ", + "name": "socks", + "keywords": [ + "socks", + "stocking" + ] + }, + { + "code": "1f457", + "char": "๐Ÿ‘—", + "name": "dress", + "keywords": [ + "clothing", + "dress" + ] + }, + { + "code": "1f458", + "char": "๐Ÿ‘˜", + "name": "kimono", + "keywords": [ + "clothing", + "kimono" + ] + }, + { + "code": "1f97b", + "char": "๐Ÿฅป", + "name": "sari", + "keywords": [ + "clothing", + "dress", + "sari" + ] + }, + { + "code": "1fa71", + "char": "๐Ÿฉฑ", + "name": "one-piece swimsuit", + "keywords": [ + "bathing suit", + "one-piece swimsuit" + ] + }, + { + "code": "1fa72", + "char": "๐Ÿฉฒ", + "name": "briefs", + "keywords": [ + "bathing suit", + "briefs", + "one-piece", + "swimsuit", + "underwear" + ] + }, + { + "code": "1fa73", + "char": "๐Ÿฉณ", + "name": "shorts", + "keywords": [ + "bathing suit", + "pants", + "shorts", + "underwear" + ] + }, + { + "code": "1f459", + "char": "๐Ÿ‘™", + "name": "bikini", + "keywords": [ + "bikini", + "clothing", + "swim" + ] + }, + { + "code": "1f45a", + "char": "๐Ÿ‘š", + "name": "womanโ€™s clothes", + "keywords": [ + "clothing", + "woman's clothes" + ] + }, + { + "code": "1f45b", + "char": "๐Ÿ‘›", + "name": "purse", + "keywords": [ + "clothing", + "coin", + "purse" + ] + }, + { + "code": "1f45c", + "char": "๐Ÿ‘œ", + "name": "handbag", + "keywords": [ + "bag", + "clothing", + "handbag", + "purse" + ] + }, + { + "code": "1f45d", + "char": "๐Ÿ‘", + "name": "clutch bag", + "keywords": [ + "bag", + "clothing", + "pouch", + "clutch bag" + ] + }, + { + "code": "1f6cd", + "char": "๐Ÿ›", + "name": "shopping bags", + "keywords": [ + "bag", + "hotel", + "shopping bags" + ] + }, + { + "code": "1f392", + "char": "๐ŸŽ’", + "name": "backpack", + "keywords": [ + "backpack", + "bag", + "satchel", + "school", + "rucksack" + ] + }, + { + "code": "1fa74", + "char": "๐Ÿฉด", + "name": "thong sandal", + "keywords": [ + "beach sandals", + "sandals", + "thong sandals", + "thongs" + ] + }, + { + "code": "1f45e", + "char": "๐Ÿ‘ž", + "name": "manโ€™s shoe", + "keywords": [ + "clothing", + "man's shoe", + "shoe" + ] + }, + { + "code": "1f45f", + "char": "๐Ÿ‘Ÿ", + "name": "running shoe", + "keywords": [ + "athletic", + "clothing", + "shoe", + "sneaker", + "running shoe" + ] + }, + { + "code": "1f97e", + "char": "๐Ÿฅพ", + "name": "hiking boot", + "keywords": [ + "backpacking", + "boot", + "camping", + "hiking boot" + ] + }, + { + "code": "1f97f", + "char": "๐Ÿฅฟ", + "name": "flat shoe", + "keywords": [ + "ballet flat", + "flat shoe", + "slip-on", + "slipper" + ] + }, + { + "code": "1f460", + "char": "๐Ÿ‘ ", + "name": "high-heeled shoe", + "keywords": [ + "clothing", + "heel", + "shoe", + "woman", + "high-heeled shoe" + ] + }, + { + "code": "1f461", + "char": "๐Ÿ‘ก", + "name": "womanโ€™s sandal", + "keywords": [ + "clothing", + "sandal", + "shoe", + "woman's sandal" + ] + }, + { + "code": "1fa70", + "char": "๐Ÿฉฐ", + "name": "ballet shoes", + "keywords": [ + "ballet shoes", + "dance" + ] + }, + { + "code": "1f462", + "char": "๐Ÿ‘ข", + "name": "womanโ€™s boot", + "keywords": [ + "boot", + "clothing", + "shoe", + "woman's boot" + ] + }, + { + "code": "1f451", + "char": "๐Ÿ‘‘", + "name": "crown", + "keywords": [ + "clothing", + "crown", + "king", + "queen" + ] + }, + { + "code": "1f452", + "char": "๐Ÿ‘’", + "name": "womanโ€™s hat", + "keywords": [ + "clothing", + "hat", + "woman's hat" + ] + }, + { + "code": "1f3a9", + "char": "๐ŸŽฉ", + "name": "top hat", + "keywords": [ + "clothing", + "hat", + "top hat", + "tophat" + ] + }, + { + "code": "1f393", + "char": "๐ŸŽ“", + "name": "graduation cap", + "keywords": [ + "cap", + "celebration", + "clothing", + "graduation cap", + "hat" + ] + }, + { + "code": "1f9e2", + "char": "๐Ÿงข", + "name": "billed cap", + "keywords": [ + "baseball cap", + "billed cap" + ] + }, + { + "code": "1fa96", + "char": "๐Ÿช–", + "name": "military helmet", + "keywords": [ + "army", + "helmet", + "military helmet", + "slodier", + "warrior" + ] + }, + { + "code": "26d1", + "char": "โ›‘", + "name": "rescue workerโ€™s helmet", + "keywords": [ + "aid", + "cross", + "face", + "hat", + "helmet", + "rescue workers's helmet" + ] + }, + { + "code": "1f4ff", + "char": "๐Ÿ“ฟ", + "name": "prayer beads", + "keywords": [ + "beads", + "clothing", + "necklace", + "prayer beads", + "religion" + ] + }, + { + "code": "1f484", + "char": "๐Ÿ’„", + "name": "lipstick", + "keywords": [ + "cosmetics", + "lipstick", + "makeup" + ] + }, + { + "code": "1f48d", + "char": "๐Ÿ’", + "name": "ring", + "keywords": [ + "diamond", + "ring" + ] + }, + { + "code": "1f48e", + "char": "๐Ÿ’Ž", + "name": "gem stone", + "keywords": [ + "diamond", + "gem stone", + "jewel" + ] + }, + { + "code": "1f507", + "char": "๐Ÿ”‡", + "name": "muted speaker", + "keywords": [ + "muted speaker", + "quiet", + "silent", + "speaker", + "volume" + ] + }, + { + "code": "1f508", + "char": "๐Ÿ”ˆ", + "name": "speaker low volume", + "keywords": [ + "speaker low volume", + "volume", + "low" + ] + }, + { + "code": "1f509", + "char": "๐Ÿ”‰", + "name": "speaker medium volume", + "keywords": [ + "speaker medium volume", + "volume", + "medium" + ] + }, + { + "code": "1f50a", + "char": "๐Ÿ”Š", + "name": "speaker high volume", + "keywords": [ + "high", + "loud", + "speaker high volume", + "volume" + ] + }, + { + "code": "1f4e2", + "char": "๐Ÿ“ข", + "name": "loudspeaker", + "keywords": [ + "loudspeaker", + "public address" + ] + }, + { + "code": "1f4e3", + "char": "๐Ÿ“ฃ", + "name": "megaphone", + "keywords": [ + "cheering", + "megaphone" + ] + }, + { + "code": "1f4ef", + "char": "๐Ÿ“ฏ", + "name": "postal horn", + "keywords": [ + "horn", + "post", + "postal horn" + ] + }, + { + "code": "1f514", + "char": "๐Ÿ””", + "name": "bell", + "keywords": [ + "bell" + ] + }, + { + "code": "1f515", + "char": "๐Ÿ”•", + "name": "bell with slash", + "keywords": [ + "bell with slash", + "forbidden", + "mute", + "no", + "not", + "prohibited", + "quiet", + "silent" + ] + }, + { + "code": "1f3bc", + "char": "๐ŸŽผ", + "name": "musical score", + "keywords": [ + "musical score", + "score" + ] + }, + { + "code": "1f3b5", + "char": "๐ŸŽต", + "name": "musical note", + "keywords": [ + "musical note", + "note" + ] + }, + { + "code": "1f3b6", + "char": "๐ŸŽถ", + "name": "musical notes", + "keywords": [ + "musical notes", + "note", + "notes" + ] + }, + { + "code": "1f399", + "char": "๐ŸŽ™", + "name": "studio microphone", + "keywords": [ + "mic", + "microphone", + "music", + "studio microphone" + ] + }, + { + "code": "1f39a", + "char": "๐ŸŽš", + "name": "level slider", + "keywords": [ + "level", + "music", + "slider" + ] + }, + { + "code": "1f39b", + "char": "๐ŸŽ›", + "name": "control knobs", + "keywords": [ + "control khobs", + "knobs", + "music" + ] + }, + { + "code": "1f3a4", + "char": "๐ŸŽค", + "name": "microphone", + "keywords": [ + "karaoke", + "mic", + "microphone" + ] + }, + { + "code": "1f3a7", + "char": "๐ŸŽง", + "name": "headphone", + "keywords": [ + "earbud", + "headphone" + ] + }, + { + "code": "1f4fb", + "char": "๐Ÿ“ป", + "name": "radio", + "keywords": [ + "radio", + "video" + ] + }, + { + "code": "1f3b7", + "char": "๐ŸŽท", + "name": "saxophone", + "keywords": [ + "instrument", + "music", + "saxophone" + ] + }, + { + "code": "1fa97", + "char": "๐Ÿช—", + "name": "accordion", + "keywords": [ + "accordion", + "concertina", + "squeeze box" + ] + }, + { + "code": "1f3b8", + "char": "๐ŸŽธ", + "name": "guitar", + "keywords": [ + "guitar", + "instrument", + "music" + ] + }, + { + "code": "1f3b9", + "char": "๐ŸŽน", + "name": "musical keyboard", + "keywords": [ + "instrument", + "keyboard", + "musical keyboard", + "piano" + ] + }, + { + "code": "1f3ba", + "char": "๐ŸŽบ", + "name": "trumpet", + "keywords": [ + "instrument", + "music", + "trumpet" + ] + }, + { + "code": "1f3bb", + "char": "๐ŸŽป", + "name": "violin", + "keywords": [ + "instrument", + "music", + "violin" + ] + }, + { + "code": "1fa95", + "char": "๐Ÿช•", + "name": "banjo", + "keywords": [ + "banjo", + "music", + "stringed" + ] + }, + { + "code": "1f941", + "char": "๐Ÿฅ", + "name": "drum", + "keywords": [ + "drumsticks", + "music" + ] + }, + { + "code": "1fa98", + "char": "๐Ÿช˜", + "name": "long drum", + "keywords": [ + "beat", + "conga", + "drum", + "long frum", + "rhythm" + ] + }, + { + "code": "1f4f1", + "char": "๐Ÿ“ฑ", + "name": "mobile phone", + "keywords": [ + "cell", + "mobile phone", + "phone", + "telephone" + ] + }, + { + "code": "1f4f2", + "char": "๐Ÿ“ฒ", + "name": "mobile phone with arrow", + "keywords": [ + "arrow", + "cell", + "mobile phone with arrow", + "phone", + "receive", + "telephone" + ] + }, + { + "code": "260e", + "char": "โ˜Ž", + "name": "telephone", + "keywords": [ + "phone", + "telephone" + ] + }, + { + "code": "1f4de", + "char": "๐Ÿ“ž", + "name": "telephone receiver", + "keywords": [ + "phone", + "receiver", + "telephone receive" + ] + }, + { + "code": "1f4df", + "char": "๐Ÿ“Ÿ", + "name": "pager", + "keywords": [ + "pager" + ] + }, + { + "code": "1f4e0", + "char": "๐Ÿ“ ", + "name": "fax machine", + "keywords": [ + "fax machine" + ] + }, + { + "code": "1f50b", + "char": "๐Ÿ”‹", + "name": "battery", + "keywords": [ + "battery" + ] + }, + { + "code": "1f50c", + "char": "๐Ÿ”Œ", + "name": "electric plug", + "keywords": [ + "electric plug", + "electricity", + "plug" + ] + }, + { + "code": "1f4bb", + "char": "๐Ÿ’ป", + "name": "laptop", + "keywords": [ + "computer", + "pc", + "personal", + "laptop" + ] + }, + { + "code": "1f5a5", + "char": "๐Ÿ–ฅ", + "name": "desktop computer", + "keywords": [ + "computer", + "desktop computer" + ] + }, + { + "code": "1f5a8", + "char": "๐Ÿ–จ", + "name": "printer", + "keywords": [ + "computer", + "printer" + ] + }, + { + "code": "2328", + "char": "โŒจ", + "name": "keyboard", + "keywords": [ + "computer", + "keyboard" + ] + }, + { + "code": "1f5b1", + "char": "๐Ÿ–ฑ", + "name": "computer mouse", + "keywords": [ + "computer mouse", + "mouse" + ] + }, + { + "code": "1f5b2", + "char": "๐Ÿ–ฒ", + "name": "trackball", + "keywords": [ + "computer", + "trackball" + ] + }, + { + "code": "1f4bd", + "char": "๐Ÿ’ฝ", + "name": "computer disk", + "keywords": [ + "computer disk", + "disk", + "minidisk", + "optical" + ] + }, + { + "code": "1f4be", + "char": "๐Ÿ’พ", + "name": "floppy disk", + "keywords": [ + "computer", + "disk", + "floppy disk" + ] + }, + { + "code": "1f4bf", + "char": "๐Ÿ’ฟ", + "name": "optical disk", + "keywords": [ + "cd", + "computer", + "disk", + "optical" + ] + }, + { + "code": "1f4c0", + "char": "๐Ÿ“€", + "name": "dvd", + "keywords": [ + "blu-ray", + "computer", + "disk", + "dvd", + "optical" + ] + }, + { + "code": "1f9ee", + "char": "๐Ÿงฎ", + "name": "abacus", + "keywords": [ + "abacus", + "calculation" + ] + }, + { + "code": "1f3a5", + "char": "๐ŸŽฅ", + "name": "movie camera", + "keywords": [ + "camera", + "cinema", + "movie camera" + ] + }, + { + "code": "1f39e", + "char": "๐ŸŽž", + "name": "film frames", + "keywords": [ + "cinema", + "film frames", + "frames", + "movie" + ] + }, + { + "code": "1f4fd", + "char": "๐Ÿ“ฝ", + "name": "film projector", + "keywords": [ + "cinema", + "film projector", + "movie", + "projector", + "video" + ] + }, + { + "code": "1f3ac", + "char": "๐ŸŽฌ", + "name": "clapper board", + "keywords": [ + "clapper board", + "movie" + ] + }, + { + "code": "1f4fa", + "char": "๐Ÿ“บ", + "name": "television", + "keywords": [ + "television", + "tv", + "video" + ] + }, + { + "code": "1f4f7", + "char": "๐Ÿ“ท", + "name": "camera", + "keywords": [ + "camera", + "video" + ] + }, + { + "code": "1f4f8", + "char": "๐Ÿ“ธ", + "name": "camera with flash", + "keywords": [ + "camera with flash", + "flash", + "video" + ] + }, + { + "code": "1f4f9", + "char": "๐Ÿ“น", + "name": "video camera", + "keywords": [ + "camera", + "video camera" + ] + }, + { + "code": "1f4fc", + "char": "๐Ÿ“ผ", + "name": "videocassette", + "keywords": [ + "tape", + "vhs", + "video", + "videocassette" + ] + }, + { + "code": "1f50d", + "char": "๐Ÿ”", + "name": "magnifying glass tilted left", + "keywords": [ + "glass", + "magnifying glass tilted left", + "search", + "tool" + ] + }, + { + "code": "1f50e", + "char": "๐Ÿ”Ž", + "name": "magnifying glass tilted right", + "keywords": [ + "glass", + "magnifying glass tilted right", + "search", + "tool" + ] + }, + { + "code": "1f56f", + "char": "๐Ÿ•ฏ", + "name": "candle", + "keywords": [ + "candle", + "light" + ] + }, + { + "code": "1f4a1", + "char": "๐Ÿ’ก", + "name": "light bulb", + "keywords": [ + "bulb", + "comic", + "electric", + "idea", + "light bulb" + ] + }, + { + "code": "1f526", + "char": "๐Ÿ”ฆ", + "name": "flashlight", + "keywords": [ + "electric", + "flashlight", + "light", + "tool", + "torch" + ] + }, + { + "code": "1f3ee", + "char": "๐Ÿฎ", + "name": "red paper lantern", + "keywords": [ + "bar", + "japanese", + "lantern", + "light", + "red paper lantern" + ] + }, + { + "code": "1fa94", + "char": "๐Ÿช”", + "name": "diya lamp", + "keywords": [ + "diya lamp", + "lamp", + "oil" + ] + }, + { + "code": "1f4d4", + "char": "๐Ÿ“”", + "name": "notebook with decorative cover", + "keywords": [ + "book", + "cover", + "decorated", + "notebook with decorative cover" + ] + }, + { + "code": "1f4d5", + "char": "๐Ÿ“•", + "name": "closed book", + "keywords": [ + "book", + "closed book" + ] + }, + { + "code": "1f4d6", + "char": "๐Ÿ“–", + "name": "open book", + "keywords": [ + "book", + "open book" + ] + }, + { + "code": "1f4d7", + "char": "๐Ÿ“—", + "name": "green book", + "keywords": [ + "book", + "green book" + ] + }, + { + "code": "1f4d8", + "char": "๐Ÿ“˜", + "name": "blue book", + "keywords": [ + "blue book", + "book" + ] + }, + { + "code": "1f4d9", + "char": "๐Ÿ“™", + "name": "orange book", + "keywords": [ + "book", + "orange book" + ] + }, + { + "code": "1f4da", + "char": "๐Ÿ“š", + "name": "books", + "keywords": [ + "books" + ] + }, + { + "code": "1f4d3", + "char": "๐Ÿ““", + "name": "notebook", + "keywords": [ + "notebook" + ] + }, + { + "code": "1f4d2", + "char": "๐Ÿ“’", + "name": "ledger", + "keywords": [ + "ledger", + "notebook" + ] + }, + { + "code": "1f4c3", + "char": "๐Ÿ“ƒ", + "name": "page with curl", + "keywords": [ + "curl", + "document", + "page with curl" + ] + }, + { + "code": "1f4dc", + "char": "๐Ÿ“œ", + "name": "scroll", + "keywords": [ + "paper", + "scroll" + ] + }, + { + "code": "1f4c4", + "char": "๐Ÿ“„", + "name": "page facing up", + "keywords": [ + "document", + "page facing up" + ] + }, + { + "code": "1f4f0", + "char": "๐Ÿ“ฐ", + "name": "newspaper", + "keywords": [ + "newspaper", + "paper" + ] + }, + { + "code": "1f5de", + "char": "๐Ÿ—ž", + "name": "rolled-up newspaper", + "keywords": [ + "newspaper", + "paper", + "rolled-up newspaper" + ] + }, + { + "code": "1f4d1", + "char": "๐Ÿ“‘", + "name": "bookmark tabs", + "keywords": [ + "bookmark tabs", + "mark", + "marker", + "tabs" + ] + }, + { + "code": "1f516", + "char": "๐Ÿ”–", + "name": "bookmark", + "keywords": [ + "bookmark", + "mark" + ] + }, + { + "code": "1f3f7", + "char": "๐Ÿท", + "name": "label", + "keywords": [ + "label" + ] + }, + { + "code": "1f4b0", + "char": "๐Ÿ’ฐ", + "name": "money bag", + "keywords": [ + "bag", + "dollar", + "money", + "moneybag" + ] + }, + { + "code": "1fa99", + "char": "๐Ÿช™", + "name": "coin", + "keywords": [ + "coin", + "gold", + "metal", + "money", + "silver", + "treasure" + ] + }, + { + "code": "1f4b4", + "char": "๐Ÿ’ด", + "name": "yen banknote", + "keywords": [ + "banknote", + "bill", + "currency", + "money", + "note", + "yen banknote" + ] + }, + { + "code": "1f4b5", + "char": "๐Ÿ’ต", + "name": "dollar banknote", + "keywords": [ + "banknote", + "bill", + "currency", + "dollar banknote", + "money", + "note" + ] + }, + { + "code": "1f4b6", + "char": "๐Ÿ’ถ", + "name": "euro banknote", + "keywords": [ + "banknote", + "bill", + "currency", + "euro banknote", + "money", + "note" + ] + }, + { + "code": "1f4b7", + "char": "๐Ÿ’ท", + "name": "pound banknote", + "keywords": [ + "banknote", + "bill", + "currency", + "money", + "note", + "pound banknote" + ] + }, + { + "code": "1f4b8", + "char": "๐Ÿ’ธ", + "name": "money with wings", + "keywords": [ + "banknote", + "bill", + "dollar", + "fly", + "money with wings", + "wings" + ] + }, + { + "code": "1f4b3", + "char": "๐Ÿ’ณ", + "name": "credit card", + "keywords": [ + "card", + "credit card", + "money" + ] + }, + { + "code": "1f9fe", + "char": "๐Ÿงพ", + "name": "receipt", + "keywords": [ + "accounting", + "bookkeeping", + "evidence", + "proof", + "receipt" + ] + }, + { + "code": "1f4b9", + "char": "๐Ÿ’น", + "name": "chart increasing with yen", + "keywords": [ + "chart increasing with yen", + "graph", + "growth", + "money", + "rise", + "trend", + "upward", + "yen" + ] + }, + { + "code": "2709", + "char": "โœ‰", + "name": "envelope", + "keywords": [ + "e-mail", + "email", + "envelope", + "letter" + ] + }, + { + "code": "1f4e7", + "char": "๐Ÿ“ง", + "name": "e-mail", + "keywords": [ + "e-mail", + "email", + "letter", + "mail" + ] + }, + { + "code": "1f4e8", + "char": "๐Ÿ“จ", + "name": "incoming envelope", + "keywords": [ + "e-mail", + "email", + "envelope", + "incoming envelope", + "letter", + "mail", + "receive" + ] + }, + { + "code": "1f4e9", + "char": "๐Ÿ“ฉ", + "name": "envelope with arrow", + "keywords": [ + "arrow", + "e-mail", + "email", + "envelope with arrow", + "mail", + "outgoing" + ] + }, + { + "code": "1f4e4", + "char": "๐Ÿ“ค", + "name": "outbox tray", + "keywords": [ + "box", + "letter", + "mail", + "outbox tray", + "sent", + "tray" + ] + }, + { + "code": "1f4e5", + "char": "๐Ÿ“ฅ", + "name": "inbox tray", + "keywords": [ + "box", + "inbox tray", + "letter", + "mail", + "receive", + "tray" + ] + }, + { + "code": "1f4e6", + "char": "๐Ÿ“ฆ", + "name": "package", + "keywords": [ + "box", + "package", + "parcel" + ] + }, + { + "code": "1f4eb", + "char": "๐Ÿ“ซ", + "name": "closed mailbox with raised flag", + "keywords": [ + "closed mailbox with raised flag", + "mail", + "mailbox", + "postbox" + ] + }, + { + "code": "1f4ea", + "char": "๐Ÿ“ช", + "name": "closed mailbox with lowered flag", + "keywords": [ + "closed mailbox with lowered flag", + "lowered", + "mail", + "mailbox", + "postbox" + ] + }, + { + "code": "1f4ec", + "char": "๐Ÿ“ฌ", + "name": "open mailbox with raised flag", + "keywords": [ + "mail", + "mailbox", + "open mailbox with raised flag", + "postbox" + ] + }, + { + "code": "1f4ed", + "char": "๐Ÿ“ญ", + "name": "open mailbox with lowered flag", + "keywords": [ + "lowered", + "mail", + "mailbox", + "open mailbox with lowered flag", + "postbox" + ] + }, + { + "code": "1f4ee", + "char": "๐Ÿ“ฎ", + "name": "postbox", + "keywords": [ + "mail", + "mailbox", + "postbox" + ] + }, + { + "code": "1f5f3", + "char": "๐Ÿ—ณ", + "name": "ballot box with ballot", + "keywords": [ + "ballot box with ballot", + "box" + ] + }, + { + "code": "270f", + "char": "โœ", + "name": "pencil", + "keywords": [ + "pencil" + ] + }, + { + "code": "2712", + "char": "โœ’", + "name": "black nib", + "keywords": [ + "nib", + "pen", + "black nib" + ] + }, + { + "code": "1f58b", + "char": "๐Ÿ–‹", + "name": "fountain pen", + "keywords": [ + "fountain pen", + "pen" + ] + }, + { + "code": "1f58a", + "char": "๐Ÿ–Š", + "name": "pen", + "keywords": [ + "ballpoint", + "pen" + ] + }, + { + "code": "1f58c", + "char": "๐Ÿ–Œ", + "name": "paintbrush", + "keywords": [ + "paintbrush", + "painting" + ] + }, + { + "code": "1f58d", + "char": "๐Ÿ–", + "name": "crayon", + "keywords": [ + "crayon" + ] + }, + { + "code": "1f4dd", + "char": "๐Ÿ“", + "name": "memo", + "keywords": [ + "memo", + "pencil" + ] + }, + { + "code": "1f4bc", + "char": "๐Ÿ’ผ", + "name": "briefcase", + "keywords": [ + "briefcase" + ] + }, + { + "code": "1f4c1", + "char": "๐Ÿ“", + "name": "file folder", + "keywords": [ + "file folder", + "folder" + ] + }, + { + "code": "1f4c2", + "char": "๐Ÿ“‚", + "name": "open file folder", + "keywords": [ + "file", + "folder", + "open file folder" + ] + }, + { + "code": "1f5c2", + "char": "๐Ÿ—‚", + "name": "card index dividers", + "keywords": [ + "card index dividers", + "dividers", + "index" + ] + }, + { + "code": "1f4c5", + "char": "๐Ÿ“…", + "name": "calendar", + "keywords": [ + "calendar", + "date" + ] + }, + { + "code": "1f4c6", + "char": "๐Ÿ“†", + "name": "tear-off calendar", + "keywords": [ + "calendar", + "tear-off calendar" + ] + }, + { + "code": "1f5d2", + "char": "๐Ÿ—’", + "name": "spiral notepad", + "keywords": [ + "note", + "pad", + "spiral notepad" + ] + }, + { + "code": "1f5d3", + "char": "๐Ÿ—“", + "name": "spiral calendar", + "keywords": [ + "calendar", + "pad", + "spiral calendar" + ] + }, + { + "code": "1f4c7", + "char": "๐Ÿ“‡", + "name": "card index", + "keywords": [ + "card index", + "index", + "rolodex" + ] + }, + { + "code": "1f4c8", + "char": "๐Ÿ“ˆ", + "name": "chart increasing", + "keywords": [ + "chart increasing", + "graph", + "growth", + "trend", + "upward" + ] + }, + { + "code": "1f4c9", + "char": "๐Ÿ“‰", + "name": "chart decreasing", + "keywords": [ + "chart decreasing", + "down", + "graph", + "trend" + ] + }, + { + "code": "1f4ca", + "char": "๐Ÿ“Š", + "name": "bar chart", + "keywords": [ + "bar chart", + "chart", + "graph" + ] + }, + { + "code": "1f4cb", + "char": "๐Ÿ“‹", + "name": "clipboard", + "keywords": [ + "clipboard" + ] + }, + { + "code": "1f4cc", + "char": "๐Ÿ“Œ", + "name": "pushpin", + "keywords": [ + "pin", + "pushpin" + ] + }, + { + "code": "1f4cd", + "char": "๐Ÿ“", + "name": "round pushpin", + "keywords": [ + "pin", + "pushpin", + "round pushpin" + ] + }, + { + "code": "1f4ce", + "char": "๐Ÿ“Ž", + "name": "paperclip", + "keywords": [ + "paperclip" + ] + }, + { + "code": "1f587", + "char": "๐Ÿ–‡", + "name": "linked paperclips", + "keywords": [ + "linked paperclips", + "paperclips" + ] + }, + { + "code": "1f4cf", + "char": "๐Ÿ“", + "name": "straight ruler", + "keywords": [ + "ruler", + "straight edge", + "straight ruler" + ] + }, + { + "code": "1f4d0", + "char": "๐Ÿ“", + "name": "triangular ruler", + "keywords": [ + "ruler", + "set", + "triangle ruler" + ] + }, + { + "code": "2702", + "char": "โœ‚", + "name": "scissors", + "keywords": [ + "scissors", + "tool", + "cutting" + ] + }, + { + "code": "1f5c3", + "char": "๐Ÿ—ƒ", + "name": "card file box", + "keywords": [ + "box", + "card file box", + "file" + ] + }, + { + "code": "1f5c4", + "char": "๐Ÿ—„", + "name": "file cabinet", + "keywords": [ + "cabinet", + "file cabinet", + "filing" + ] + }, + { + "code": "1f5d1", + "char": "๐Ÿ—‘", + "name": "wastebasket", + "keywords": [ + "wastebasket" + ] + }, + { + "code": "1f512", + "char": "๐Ÿ”’", + "name": "locked", + "keywords": [ + "closed", + "locked" + ] + }, + { + "code": "1f513", + "char": "๐Ÿ”“", + "name": "unlocked", + "keywords": [ + "lock", + "open", + "unlocked" + ] + }, + { + "code": "1f50f", + "char": "๐Ÿ”", + "name": "locked with pen", + "keywords": [ + "ink", + "locked with pen", + "nib", + "pen", + "privacy" + ] + }, + { + "code": "1f510", + "char": "๐Ÿ”", + "name": "locked with key", + "keywords": [ + "closed", + "key", + "locked with key", + "secure" + ] + }, + { + "code": "1f511", + "char": "๐Ÿ”‘", + "name": "key", + "keywords": [ + "key", + "lock", + "password" + ] + }, + { + "code": "1f5dd", + "char": "๐Ÿ—", + "name": "old key", + "keywords": [ + "clue", + "key", + "lock", + "old key" + ] + }, + { + "code": "1f528", + "char": "๐Ÿ”จ", + "name": "hammer", + "keywords": [ + "hammer", + "tool" + ] + }, + { + "code": "1fa93", + "char": "๐Ÿช“", + "name": "axe", + "keywords": [ + "axe", + "chop", + "hatchet", + "split", + "wood" + ] + }, + { + "code": "26cf", + "char": "โ›", + "name": "pick", + "keywords": [ + "mining", + "pick", + "tool" + ] + }, + { + "code": "2692", + "char": "โš’", + "name": "hammer and pick", + "keywords": [ + "hammer and pick", + "pick", + "tool" + ] + }, + { + "code": "1f6e0", + "char": "๐Ÿ› ", + "name": "hammer and wrench", + "keywords": [ + "hammer and wrench", + "tool", + "wrench", + "spanner" + ] + }, + { + "code": "1f5e1", + "char": "๐Ÿ—ก", + "name": "dagger", + "keywords": [ + "dagger", + "knife", + "weapon" + ] + }, + { + "code": "2694", + "char": "โš”", + "name": "crossed swords", + "keywords": [ + "crossed swords", + "swords", + "weapon" + ] + }, + { + "code": "1f52b", + "char": "๐Ÿ”ซ", + "name": "water pistol", + "keywords": [ + "gun", + "handgun", + "pistol", + "revolver", + "tool", + "weapon", + "water pistol" + ] + }, + { + "code": "1fa83", + "char": "๐Ÿชƒ", + "name": "boomerang", + "keywords": [ + "australia", + "boomerang", + "rebound", + "repercussion" + ] + }, + { + "code": "1f3f9", + "char": "๐Ÿน", + "name": "bow and arrow", + "keywords": [ + "archer", + "arrow", + "bow and arrow", + "sagittarius", + "tool", + "weapon", + "zodiac" + ] + }, + { + "code": "1f6e1", + "char": "๐Ÿ›ก", + "name": "shield", + "keywords": [ + "shield", + "weapon" + ] + }, + { + "code": "1fa9a", + "char": "๐Ÿชš", + "name": "carpentry saw", + "keywords": [ + "carpentry saw", + "lumber", + "saw", + "tool", + "carpenter" + ] + }, + { + "code": "1f527", + "char": "๐Ÿ”ง", + "name": "wrench", + "keywords": [ + "tool", + "wrench", + "spanner" + ] + }, + { + "code": "1fa9b", + "char": "๐Ÿช›", + "name": "screwdriver", + "keywords": [ + "screwdriver", + "tool" + ] + }, + { + "code": "1f529", + "char": "๐Ÿ”ฉ", + "name": "nut and bolt", + "keywords": [ + "bolt", + "nut and bolt", + "tool" + ] + }, + { + "code": "2699", + "char": "โš™", + "name": "gear", + "keywords": [ + "gear", + "tool", + "cogwheel" + ] + }, + { + "code": "1f5dc", + "char": "๐Ÿ—œ", + "name": "clamp", + "keywords": [ + "compression", + "tool", + "vice", + "clamp" + ] + }, + { + "code": "2696", + "char": "โš–", + "name": "balance scale", + "keywords": [ + "balance scale", + "justice", + "libra", + "scales", + "zodiac" + ] + }, + { + "code": "1f9af", + "char": "๐Ÿฆฏ", + "name": "white cane", + "keywords": [ + "white cane", + "blind", + "accessibility" + ] + }, + { + "code": "1f517", + "char": "๐Ÿ”—", + "name": "link", + "keywords": [ + "link" + ] + }, + { + "code": "26d3", + "char": "โ›“", + "name": "chains", + "keywords": [ + "chains" + ] + }, + { + "code": "1fa9d", + "char": "๐Ÿช", + "name": "hook", + "keywords": [ + "catch", + "crook", + "curve", + "ensnare", + "hook", + "selling point" + ] + }, + { + "code": "1f9f0", + "char": "๐Ÿงฐ", + "name": "toolbox", + "keywords": [ + "chest", + "mechanic", + "toolbox" + ] + }, + { + "code": "1f9f2", + "char": "๐Ÿงฒ", + "name": "magnet", + "keywords": [ + "attraction", + "horseshoe", + "magnet", + "magnetic" + ] + }, + { + "code": "1fa9c", + "char": "๐Ÿชœ", + "name": "ladder", + "keywords": [ + "climb", + "ladder", + "rung", + "step" + ] + }, + { + "code": "2697", + "char": "โš—", + "name": "alembic", + "keywords": [ + "alembic", + "chemistry", + "tool" + ] + }, + { + "code": "1f9ea", + "char": "๐Ÿงช", + "name": "test tube", + "keywords": [ + "chemistry", + "experiment", + "lab", + "science", + "test tube" + ] + }, + { + "code": "1f9eb", + "char": "๐Ÿงซ", + "name": "petri dish", + "keywords": [ + "bacteria", + "biologist", + "biology", + "culture", + "lab", + "petri dish" + ] + }, + { + "code": "1f9ec", + "char": "๐Ÿงฌ", + "name": "dna", + "keywords": [ + "biologist", + "dna", + "evolution", + "gene", + "genetics", + "life" + ] + }, + { + "code": "1f52c", + "char": "๐Ÿ”ฌ", + "name": "microscope", + "keywords": [ + "microscope", + "tool", + "science" + ] + }, + { + "code": "1f52d", + "char": "๐Ÿ”ญ", + "name": "telescope", + "keywords": [ + "telescope", + "tool", + "science" + ] + }, + { + "code": "1f4e1", + "char": "๐Ÿ“ก", + "name": "satellite antenna", + "keywords": [ + "antenna", + "dish", + "satellite antenna" + ] + }, + { + "code": "1f489", + "char": "๐Ÿ’‰", + "name": "syringe", + "keywords": [ + "doctor", + "medicine", + "needle", + "shot", + "sick", + "syringe" + ] + }, + { + "code": "1fa78", + "char": "๐Ÿฉธ", + "name": "drop of blood", + "keywords": [ + "bleed", + "blood donation", + "drop of blood", + "injury", + "medicine", + "menstruation" + ] + }, + { + "code": "1f48a", + "char": "๐Ÿ’Š", + "name": "pill", + "keywords": [ + "doctor", + "medicine", + "pill", + "sick" + ] + }, + { + "code": "1fa79", + "char": "๐Ÿฉน", + "name": "adhesive bandage", + "keywords": [ + "adhesive bandage", + "bandage" + ] + }, + { + "code": "1fa7a", + "char": "๐Ÿฉบ", + "name": "stethoscope", + "keywords": [ + "doctor", + "heart", + "medicine", + "stethoscope" + ] + }, + { + "code": "1f6aa", + "char": "๐Ÿšช", + "name": "door", + "keywords": [ + "door" + ] + }, + { + "code": "1f6d7", + "char": "๐Ÿ›—", + "name": "elevator", + "keywords": [ + "accessibility", + "elevator", + "hoist", + "lift" + ] + }, + { + "code": "1fa9e", + "char": "๐Ÿชž", + "name": "mirror", + "keywords": [ + "mirror", + "reflection", + "reflector", + "speculum" + ] + }, + { + "code": "1fa9f", + "char": "๐ŸชŸ", + "name": "window", + "keywords": [ + "frame", + "fresh air", + "opening", + "transparent", + "view", + "window" + ] + }, + { + "code": "1f6cf", + "char": "๐Ÿ›", + "name": "bed", + "keywords": [ + "bed", + "hotel", + "sleep" + ] + }, + { + "code": "1f6cb", + "char": "๐Ÿ›‹", + "name": "couch and lamp", + "keywords": [ + "couch and lamp", + "hotel", + "lamp" + ] + }, + { + "code": "1fa91", + "char": "๐Ÿช‘", + "name": "chair", + "keywords": [ + "chair", + "seat", + "sit" + ] + }, + { + "code": "1f6bd", + "char": "๐Ÿšฝ", + "name": "toilet", + "keywords": [ + "toilet" + ] + }, + { + "code": "1faa0", + "char": "๐Ÿช ", + "name": "plunger", + "keywords": [ + "force cup", + "plumber", + "plunger", + "suction", + "toilet" + ] + }, + { + "code": "1f6bf", + "char": "๐Ÿšฟ", + "name": "shower", + "keywords": [ + "shower", + "water" + ] + }, + { + "code": "1f6c1", + "char": "๐Ÿ›", + "name": "bathtub", + "keywords": [ + "bathtub" + ] + }, + { + "code": "1faa4", + "char": "๐Ÿชค", + "name": "mouse trap", + "keywords": [ + "bait", + "mouse trap", + "snare", + "trap" + ] + }, + { + "code": "1fa92", + "char": "๐Ÿช’", + "name": "razor", + "keywords": [ + "razor", + "sharp", + "shave" + ] + }, + { + "code": "1f9f4", + "char": "๐Ÿงด", + "name": "lotion bottle", + "keywords": [ + "lotion bottle", + "moisturizer", + "shampoo", + "sunscreen" + ] + }, + { + "code": "1f9f7", + "char": "๐Ÿงท", + "name": "safety pin", + "keywords": [ + "diaper", + "punk rock", + "safety pin" + ] + }, + { + "code": "1f9f9", + "char": "๐Ÿงน", + "name": "broom", + "keywords": [ + "broom", + "cleaning", + "sweeping", + "witch" + ] + }, + { + "code": "1f9fa", + "char": "๐Ÿงบ", + "name": "basket", + "keywords": [ + "basket", + "farming", + "laundry", + "picnic" + ] + }, + { + "code": "1f9fb", + "char": "๐Ÿงป", + "name": "roll of paper", + "keywords": [ + "paper towels", + "roll of paper", + "toilet paper" + ] + }, + { + "code": "1faa3", + "char": "๐Ÿชฃ", + "name": "bucket", + "keywords": [ + "bucket", + "cask", + "pail", + "vat" + ] + }, + { + "code": "1f9fc", + "char": "๐Ÿงผ", + "name": "soap", + "keywords": [ + "bar", + "bathing", + "cleaning", + "lather", + "soap", + "soapdish" + ] + }, + { + "code": "1faa5", + "char": "๐Ÿชฅ", + "name": "toothbrush", + "keywords": [ + "bathroom", + "brush", + "clean", + "dental", + "hygiene", + "teeth", + "toothbrush" + ] + }, + { + "code": "1f9fd", + "char": "๐Ÿงฝ", + "name": "sponge", + "keywords": [ + "absorbing", + "cleaning", + "porous", + "sponge" + ] + }, + { + "code": "1f9ef", + "char": "๐Ÿงฏ", + "name": "fire extinguisher", + "keywords": [ + "extinguish", + "fire extinguisher", + "quench" + ] + }, + { + "code": "1f6d2", + "char": "๐Ÿ›’", + "name": "shopping cart", + "keywords": [ + "cart", + "shopping cart", + "trolley" + ] + }, + { + "code": "1f6ac", + "char": "๐Ÿšฌ", + "name": "cigarette", + "keywords": [ + "smoking", + "cigarette" + ] + }, + { + "code": "26b0", + "char": "โšฐ", + "name": "coffin", + "keywords": [ + "coffin", + "death" + ] + }, + { + "code": "1faa6", + "char": "๐Ÿชฆ", + "name": "headstone", + "keywords": [ + "cemetery", + "grave", + "graveyard", + "headstone", + "tombstone" + ] + }, + { + "code": "26b1", + "char": "โšฑ", + "name": "funeral urn", + "keywords": [ + "death", + "funeral urn", + "urn", + "ashes" + ] + }, + { + "code": "1f5ff", + "char": "๐Ÿ—ฟ", + "name": "moai", + "keywords": [ + "face", + "moyai", + "statue", + "moai" + ] + }, + { + "code": "1faa7", + "char": "๐Ÿชง", + "name": "placard", + "keywords": [ + "demonstration", + "picket", + "placard", + "protest", + "sign" + ] + } + ], + "Symbols": [ + { + "code": "1f3e7", + "char": "๐Ÿง", + "name": "ATM sign", + "keywords": [ + "automated", + "bank", + "teller", + "atm sign" + ] + }, + { + "code": "1f6ae", + "char": "๐Ÿšฎ", + "name": "litter in bin sign", + "keywords": [ + "litter bin", + "litter box", + "litter in bin sign" + ] + }, + { + "code": "1f6b0", + "char": "๐Ÿšฐ", + "name": "potable water", + "keywords": [ + "drink", + "water", + "potable water" + ] + }, + { + "code": "267f", + "char": "โ™ฟ", + "name": "wheelchair symbol", + "keywords": [ + "access", + "wheelchair symbol" + ] + }, + { + "code": "1f6b9", + "char": "๐Ÿšน", + "name": "menโ€™s room", + "keywords": [ + "lavatory", + "restroom", + "wc", + "room", + "men's room" + ] + }, + { + "code": "1f6ba", + "char": "๐Ÿšบ", + "name": "womenโ€™s room", + "keywords": [ + "lavatory", + "restroom", + "wc", + "room", + "women's room" + ] + }, + { + "code": "1f6bb", + "char": "๐Ÿšป", + "name": "restroom", + "keywords": [ + "lavatory", + "restroom", + "wc" + ] + }, + { + "code": "1f6bc", + "char": "๐Ÿšผ", + "name": "baby symbol", + "keywords": [ + "baby symbol", + "changing" + ] + }, + { + "code": "1f6be", + "char": "๐Ÿšพ", + "name": "water closet", + "keywords": [ + "closet", + "lavatory", + "restroom", + "water closet", + "wc" + ] + }, + { + "code": "1f6c2", + "char": "๐Ÿ›‚", + "name": "passport control", + "keywords": [ + "control", + "passport control" + ] + }, + { + "code": "1f6c3", + "char": "๐Ÿ›ƒ", + "name": "customs", + "keywords": [ + "customs" + ] + }, + { + "code": "1f6c4", + "char": "๐Ÿ›„", + "name": "baggage claim", + "keywords": [ + "baggage claim", + "claim" + ] + }, + { + "code": "1f6c5", + "char": "๐Ÿ›…", + "name": "left luggage", + "keywords": [ + "baggage", + "left luggage", + "locker", + "luggage" + ] + }, + { + "code": "26a0", + "char": "โš ", + "name": "warning", + "keywords": [ + "warning" + ] + }, + { + "code": "1f6b8", + "char": "๐Ÿšธ", + "name": "children crossing", + "keywords": [ + "crossing", + "pedestrian", + "traffic", + "children crossing" + ] + }, + { + "code": "26d4", + "char": "โ›”", + "name": "no entry", + "keywords": [ + "no entry", + "forbidden", + "not", + "prohibited", + "traffic" + ] + }, + { + "code": "1f6ab", + "char": "๐Ÿšซ", + "name": "prohibited", + "keywords": [ + "entry", + "forbidden", + "no", + "not", + "prohibited" + ] + }, + { + "code": "1f6b3", + "char": "๐Ÿšณ", + "name": "no bicycles", + "keywords": [ + "no bicycle", + "bike", + "forbidden", + "not", + "prohibited", + "vehicle", + "no bicycles" + ] + }, + { + "code": "1f6ad", + "char": "๐Ÿšญ", + "name": "no smoking", + "keywords": [ + "forbidden", + "not", + "prohibited", + "smoking", + "no smoking" + ] + }, + { + "code": "1f6af", + "char": "๐Ÿšฏ", + "name": "no littering", + "keywords": [ + "forbidden", + "litter", + "not", + "prohibited", + "no littering" + ] + }, + { + "code": "1f6b1", + "char": "๐Ÿšฑ", + "name": "non-potable water", + "keywords": [ + "drink", + "forbidden", + "no", + "not", + "potable", + "prohibited", + "water", + "non-drinking", + "non-potable water" + ] + }, + { + "code": "1f6b7", + "char": "๐Ÿšท", + "name": "no pedestrians", + "keywords": [ + "forbidden", + "not", + "pedestrian", + "prohibited", + "no pedestrians" + ] + }, + { + "code": "1f4f5", + "char": "๐Ÿ“ต", + "name": "no mobile phones", + "keywords": [ + "cell", + "communication", + "forbidden", + "mobile", + "not", + "phone", + "prohibited", + "telephone", + "no mobile phones" + ] + }, + { + "code": "1f51e", + "char": "๐Ÿ”ž", + "name": "no one under eighteen", + "keywords": [ + "18", + "age restriction", + "eighteen", + "forbidden", + "not", + "prohibited", + "underage", + "no one under eighteen" + ] + }, + { + "code": "2622", + "char": "โ˜ข", + "name": "radioactive", + "keywords": [ + "radioactive", + "sign" + ] + }, + { + "code": "2623", + "char": "โ˜ฃ", + "name": "biohazard", + "keywords": [ + "biohazard", + "sign" + ] + }, + { + "code": "2b06", + "char": "โฌ†", + "name": "up arrow", + "keywords": [ + "arrow", + "cardinal", + "direction", + "north", + "up arrow" + ] + }, + { + "code": "2197", + "char": "โ†—", + "name": "up-right arrow", + "keywords": [ + "arrow", + "direction", + "intercardinal", + "northeast", + "up-right arrow" + ] + }, + { + "code": "27a1", + "char": "โžก", + "name": "right arrow", + "keywords": [ + "arrow", + "cardinal", + "direction", + "east", + "right arrow" + ] + }, + { + "code": "2198", + "char": "โ†˜", + "name": "down-right arrow", + "keywords": [ + "arrow", + "direction", + "intercardinal", + "southeast", + "down-right arrow" + ] + }, + { + "code": "2b07", + "char": "โฌ‡", + "name": "down arrow", + "keywords": [ + "arrow", + "cardinal", + "direction", + "down", + "south", + "down arrow" + ] + }, + { + "code": "2199", + "char": "โ†™", + "name": "down-left arrow", + "keywords": [ + "arrow", + "direction", + "intercardinal", + "southwest", + "down-left arrow" + ] + }, + { + "code": "2b05", + "char": "โฌ…", + "name": "left arrow", + "keywords": [ + "arrow", + "cardinal", + "direction", + "west", + "left arrow" + ] + }, + { + "code": "2196", + "char": "โ†–", + "name": "up-left arrow", + "keywords": [ + "arrow", + "direction", + "intercardinal", + "northwest", + "up-left arrow" + ] + }, + { + "code": "2195", + "char": "โ†•", + "name": "up-down arrow", + "keywords": [ + "arrow", + "up-down arrow" + ] + }, + { + "code": "2194", + "char": "โ†”", + "name": "left-right arrow", + "keywords": [ + "arrow", + "left-right arrow" + ] + }, + { + "code": "21a9", + "char": "โ†ฉ", + "name": "right arrow curving left", + "keywords": [ + "arrow", + "right arrow curving left", + "curving", + "left" + ] + }, + { + "code": "21aa", + "char": "โ†ช", + "name": "left arrow curving right", + "keywords": [ + "arrow", + "left arrow curving right", + "curving", + "right" + ] + }, + { + "code": "2934", + "char": "โคด", + "name": "right arrow curving up", + "keywords": [ + "arrow", + "right arrow curving up", + "curving", + "up" + ] + }, + { + "code": "2935", + "char": "โคต", + "name": "right arrow curving down", + "keywords": [ + "arrow", + "right arrow curving down", + "curving", + "down" + ] + }, + { + "code": "1f503", + "char": "๐Ÿ”ƒ", + "name": "clockwise vertical arrows", + "keywords": [ + "arrow", + "reload", + "vertical", + "clockwise vertical arrows" + ] + }, + { + "code": "1f504", + "char": "๐Ÿ”„", + "name": "counterclockwise arrows button", + "keywords": [ + "anticlockwise", + "arrow", + "withershins", + "counterclockwise arrows button" + ] + }, + { + "code": "1f519", + "char": "๐Ÿ”™", + "name": "BACK arrow", + "keywords": [ + "arrow", + "back arrow" + ] + }, + { + "code": "1f51a", + "char": "๐Ÿ”š", + "name": "END arrow", + "keywords": [ + "arrow", + "end arrow" + ] + }, + { + "code": "1f51b", + "char": "๐Ÿ”›", + "name": "ON! arrow", + "keywords": [ + "arrow", + "mark", + "on! arrow" + ] + }, + { + "code": "1f51c", + "char": "๐Ÿ”œ", + "name": "SOON arrow", + "keywords": [ + "arrow", + "soon arrow" + ] + }, + { + "code": "1f51d", + "char": "๐Ÿ”", + "name": "TOP arrow", + "keywords": [ + "arrow", + "up", + "top arrow" + ] + }, + { + "code": "1f6d0", + "char": "๐Ÿ›", + "name": "place of worship", + "keywords": [ + "religion", + "worship", + "place of worship" + ] + }, + { + "code": "269b", + "char": "โš›", + "name": "atom symbol", + "keywords": [ + "atheist", + "atom symbol" + ] + }, + { + "code": "1f549", + "char": "๐Ÿ•‰", + "name": "om", + "keywords": [ + "hindu", + "om", + "religion" + ] + }, + { + "code": "2721", + "char": "โœก", + "name": "star of David", + "keywords": [ + "david", + "jew", + "jewish", + "religion", + "star of david" + ] + }, + { + "code": "2638", + "char": "โ˜ธ", + "name": "wheel of dharma", + "keywords": [ + "buddhist", + "dharma", + "religion", + "wheel of dharma" + ] + }, + { + "code": "262f", + "char": "โ˜ฏ", + "name": "yin yang", + "keywords": [ + "religion", + "tao", + "taoist", + "yang", + "yin yang" + ] + }, + { + "code": "271d", + "char": "โœ", + "name": "latin cross", + "keywords": [ + "christian", + "cross", + "religion", + "latin cross" + ] + }, + { + "code": "2626", + "char": "โ˜ฆ", + "name": "orthodox cross", + "keywords": [ + "christian", + "cross", + "religion", + "orthodox cross" + ] + }, + { + "code": "262a", + "char": "โ˜ช", + "name": "star and crescent", + "keywords": [ + "islam", + "muslim", + "religion", + "star and crescent" + ] + }, + { + "code": "262e", + "char": "โ˜ฎ", + "name": "peace symbol", + "keywords": [ + "peace symbol" + ] + }, + { + "code": "1f54e", + "char": "๐Ÿ•Ž", + "name": "menorah", + "keywords": [ + "candelabrum", + "candlestick", + "menorah", + "religion" + ] + }, + { + "code": "1f52f", + "char": "๐Ÿ”ฏ", + "name": "dotted six-pointed star", + "keywords": [ + "fortune", + "star", + "dotted six-pointed star" + ] + }, + { + "code": "2648", + "char": "โ™ˆ", + "name": "Aries", + "keywords": [ + "aries", + "ram", + "zodiac" + ] + }, + { + "code": "2649", + "char": "โ™‰", + "name": "Taurus", + "keywords": [ + "bull", + "ox", + "taurus", + "zodiac" + ] + }, + { + "code": "264a", + "char": "โ™Š", + "name": "Gemini", + "keywords": [ + "gemini", + "twins", + "zodiac" + ] + }, + { + "code": "264b", + "char": "โ™‹", + "name": "Cancer", + "keywords": [ + "cancer", + "crab", + "zodiac" + ] + }, + { + "code": "264c", + "char": "โ™Œ", + "name": "Leo", + "keywords": [ + "leo", + "lion", + "zodiac" + ] + }, + { + "code": "264d", + "char": "โ™", + "name": "Virgo", + "keywords": [ + "maiden", + "virgin", + "virgo", + "zodiac" + ] + }, + { + "code": "264e", + "char": "โ™Ž", + "name": "Libra", + "keywords": [ + "balance", + "justice", + "libra", + "scales", + "zodiac" + ] + }, + { + "code": "264f", + "char": "โ™", + "name": "Scorpio", + "keywords": [ + "scorpio", + "scorpion", + "scorpius", + "zodiac" + ] + }, + { + "code": "2650", + "char": "โ™", + "name": "Sagittarius", + "keywords": [ + "archer", + "sagittarius", + "zodiac" + ] + }, + { + "code": "2651", + "char": "โ™‘", + "name": "Capricorn", + "keywords": [ + "capricorn", + "goat", + "zodiac" + ] + }, + { + "code": "2652", + "char": "โ™’", + "name": "Aquarius", + "keywords": [ + "aquarius", + "bearer", + "water", + "zodiac" + ] + }, + { + "code": "2653", + "char": "โ™“", + "name": "Pisces", + "keywords": [ + "fish", + "pisces", + "zodiac" + ] + }, + { + "code": "26ce", + "char": "โ›Ž", + "name": "Ophiuchus", + "keywords": [ + "bearer", + "ophiuchus", + "serpent", + "snake", + "zodiac" + ] + }, + { + "code": "1f500", + "char": "๐Ÿ”€", + "name": "shuffle tracks button", + "keywords": [ + "arrow", + "crossed", + "shuffle tracks button" + ] + }, + { + "code": "1f501", + "char": "๐Ÿ”", + "name": "repeat button", + "keywords": [ + "arrow", + "clockwise", + "repeat button" + ] + }, + { + "code": "1f502", + "char": "๐Ÿ”‚", + "name": "repeat single button", + "keywords": [ + "arrow", + "clockwise", + "once", + "repeat single button" + ] + }, + { + "code": "25b6", + "char": "โ–ถ", + "name": "play button", + "keywords": [ + "arrow", + "play button", + "right", + "triangle" + ] + }, + { + "code": "23e9", + "char": "โฉ", + "name": "fast-forward button", + "keywords": [ + "arrow", + "double", + "fast-forward button", + "forward" + ] + }, + { + "code": "23ed", + "char": "โญ", + "name": "next track button", + "keywords": [ + "arrow", + "next scene", + "next track button", + "triangle" + ] + }, + { + "code": "23ef", + "char": "โฏ", + "name": "play or pause button", + "keywords": [ + "arrow", + "pause", + "play or pause button", + "right", + "triangle" + ] + }, + { + "code": "25c0", + "char": "โ—€", + "name": "reverse button", + "keywords": [ + "arrow", + "left", + "reverse button", + "triangle" + ] + }, + { + "code": "23ea", + "char": "โช", + "name": "fast reverse button", + "keywords": [ + "arrow", + "double", + "rewind", + "fast reverse button" + ] + }, + { + "code": "23ee", + "char": "โฎ", + "name": "last track button", + "keywords": [ + "arrow", + "previous scene", + "previous track", + "triangle", + "last track button" + ] + }, + { + "code": "1f53c", + "char": "๐Ÿ”ผ", + "name": "upwards button", + "keywords": [ + "arrow", + "button", + "upwards button" + ] + }, + { + "code": "23eb", + "char": "โซ", + "name": "fast up button", + "keywords": [ + "arrow", + "double", + "fast up button" + ] + }, + { + "code": "1f53d", + "char": "๐Ÿ”ฝ", + "name": "downwards button", + "keywords": [ + "arrow", + "button", + "downwards button" + ] + }, + { + "code": "23ec", + "char": "โฌ", + "name": "fast down button", + "keywords": [ + "arrow", + "double", + "down", + "fast down button" + ] + }, + { + "code": "23f8", + "char": "โธ", + "name": "pause button", + "keywords": [ + "bar", + "double", + "pause button", + "vertical" + ] + }, + { + "code": "23f9", + "char": "โน", + "name": "stop button", + "keywords": [ + "square", + "stop button" + ] + }, + { + "code": "23fa", + "char": "โบ", + "name": "record button", + "keywords": [ + "circle", + "record button" + ] + }, + { + "code": "23cf", + "char": "โ", + "name": "eject button", + "keywords": [ + "eject button" + ] + }, + { + "code": "1f3a6", + "char": "๐ŸŽฆ", + "name": "cinema", + "keywords": [ + "camera", + "cinema", + "entertainment", + "film", + "movie" + ] + }, + { + "code": "1f505", + "char": "๐Ÿ”…", + "name": "dim button", + "keywords": [ + "brightness", + "dim button", + "low" + ] + }, + { + "code": "1f506", + "char": "๐Ÿ”†", + "name": "bright button", + "keywords": [ + "bright button", + "brightness" + ] + }, + { + "code": "1f4f6", + "char": "๐Ÿ“ถ", + "name": "antenna bars", + "keywords": [ + "antenna bars", + "bar", + "cell", + "communication", + "mobile", + "phone", + "signal", + "telephone" + ] + }, + { + "code": "1f4f3", + "char": "๐Ÿ“ณ", + "name": "vibration mode", + "keywords": [ + "cell", + "communication", + "mobile", + "mode", + "phone", + "telephone", + "vibration mode" + ] + }, + { + "code": "1f4f4", + "char": "๐Ÿ“ด", + "name": "mobile phone off", + "keywords": [ + "cell", + "communication", + "mobile phone off", + "off", + "phone", + "telephone" + ] + }, + { + "code": "2640", + "char": "โ™€", + "name": "female sign", + "keywords": [ + "female sign", + "woman" + ] + }, + { + "code": "2642", + "char": "โ™‚", + "name": "male sign", + "keywords": [ + "male sign", + "man" + ] + }, + { + "code": "26a7", + "char": "โšง", + "name": "transgender symbol", + "keywords": [ + "transgender symbol" + ] + }, + { + "code": "2716", + "char": "โœ–", + "name": "multiply", + "keywords": [ + "cancel", + "multiplication", + "multiply", + "x", + "*", + "sign", + "math" + ] + }, + { + "code": "2795", + "char": "โž•", + "name": "plus", + "keywords": [ + "math", + "plus", + "sign", + "+" + ] + }, + { + "code": "2796", + "char": "โž–", + "name": "minus", + "keywords": [ + "math", + "minus", + "sign", + "-" + ] + }, + { + "code": "2797", + "char": "โž—", + "name": "divide", + "keywords": [ + "divide", + "division", + "math", + "sign" + ] + }, + { + "code": "267e", + "char": "โ™พ", + "name": "infinity", + "keywords": [ + "forever", + "infinity", + "unbounded", + "universal", + "math", + "sign" + ] + }, + { + "code": "203c", + "char": "โ€ผ", + "name": "double exclamation mark", + "keywords": [ + "bangbang", + "exclamation", + "mark", + "punctuation", + "double exclamation mark", + "!!" + ] + }, + { + "code": "2049", + "char": "โ‰", + "name": "exclamation question mark", + "keywords": [ + "exclamation question mark", + "interrobang", + "mark", + "punctuation", + "question", + "!?", + "?" + ] + }, + { + "code": "2753", + "char": "โ“", + "name": "red question mark", + "keywords": [ + "mark", + "punctuation", + "question", + "red question mark", + "?", + "red" + ] + }, + { + "code": "2754", + "char": "โ”", + "name": "white question mark", + "keywords": [ + "mark", + "outlined", + "punctuation", + "question", + "white question mark", + "?" + ] + }, + { + "code": "2755", + "char": "โ•", + "name": "white exclamation mark", + "keywords": [ + "exclamation", + "mark", + "outlined", + "punctuation", + "white exclamation mark", + "!" + ] + }, + { + "code": "2757", + "char": "โ—", + "name": "red exclamation mark", + "keywords": [ + "exclamation", + "mark", + "punctuation", + "red exclamation mark", + "!", + "red" + ] + }, + { + "code": "3030", + "char": "ใ€ฐ", + "name": "wavy dash", + "keywords": [ + "dash", + "punctuation", + "wavy dash" + ] + }, + { + "code": "1f4b1", + "char": "๐Ÿ’ฑ", + "name": "currency exchange", + "keywords": [ + "bank", + "currency exchange", + "exchange", + "money" + ] + }, + { + "code": "1f4b2", + "char": "๐Ÿ’ฒ", + "name": "heavy dollar sign", + "keywords": [ + "currency", + "dollar", + "money", + "heavy dollar sign" + ] + }, + { + "code": "2695", + "char": "โš•", + "name": "medical symbol", + "keywords": [ + "medical symbol", + "aesculapius", + "staff", + "medicine" + ] + }, + { + "code": "267b", + "char": "โ™ป", + "name": "recycling symbol", + "keywords": [ + "recycle", + "recycling symbol" + ] + }, + { + "code": "269c", + "char": "โšœ", + "name": "fleur-de-lis", + "keywords": [ + "fleur-de-lis" + ] + }, + { + "code": "1f531", + "char": "๐Ÿ”ฑ", + "name": "trident emblem", + "keywords": [ + "anchor", + "emblem", + "ship", + "tool", + "trident emblem" + ] + }, + { + "code": "1f4db", + "char": "๐Ÿ“›", + "name": "name badge", + "keywords": [ + "badge", + "name badge" + ] + }, + { + "code": "1f530", + "char": "๐Ÿ”ฐ", + "name": "Japanese symbol for beginner", + "keywords": [ + "beginner", + "chevron", + "japanese symbol for beginner", + "leaf" + ] + }, + { + "code": "2b55", + "char": "โญ•", + "name": "hollow red circle", + "keywords": [ + "circle", + "o", + "hollow red circle", + "red" + ] + }, + { + "code": "2705", + "char": "โœ…", + "name": "check mark button", + "keywords": [ + "check mark button", + "mark", + "button" + ] + }, + { + "code": "2611", + "char": "โ˜‘", + "name": "check box with check", + "keywords": [ + "box", + "check box with check" + ] + }, + { + "code": "2714", + "char": "โœ”", + "name": "check mark", + "keywords": [ + "check", + "mark" + ] + }, + { + "code": "274c", + "char": "โŒ", + "name": "cross mark", + "keywords": [ + "cancel", + "cross mark", + "mark", + "multiplication", + "multiply", + "x" + ] + }, + { + "code": "274e", + "char": "โŽ", + "name": "cross mark button", + "keywords": [ + "mark", + "square", + "cross mark button" + ] + }, + { + "code": "27b0", + "char": "โžฐ", + "name": "curly loop", + "keywords": [ + "curly loop", + "loop" + ] + }, + { + "code": "27bf", + "char": "โžฟ", + "name": "double curly loop", + "keywords": [ + "curly loop", + "double", + "loop", + "double curly loop" + ] + }, + { + "code": "303d", + "char": "ใ€ฝ", + "name": "part alternation mark", + "keywords": [ + "mark", + "part alternation mark" + ] + }, + { + "code": "2733", + "char": "โœณ", + "name": "eight-spoked asterisk", + "keywords": [ + "asterisk", + "*", + "eight-spoked asterisk" + ] + }, + { + "code": "2734", + "char": "โœด", + "name": "eight-pointed star", + "keywords": [ + "star", + "*", + "eight-pointed star" + ] + }, + { + "code": "2747", + "char": "โ‡", + "name": "sparkle", + "keywords": [ + "sparkle", + "*" + ] + }, + { + "code": "a9", + "char": "ยฉ", + "name": "copyright", + "keywords": [ + "copyright" + ] + }, + { + "code": "ae", + "char": "ยฎ", + "name": "registered", + "keywords": [ + "registered" + ] + }, + { + "code": "2122", + "char": "โ„ข", + "name": "trade mark", + "keywords": [ + "mark", + "tm", + "trade mark" + ] + }, + { + "code": "23-20e3", + "char": "#๏ธโƒฃ", + "name": "keycap: #", + "keywords": [ + "hash", + "keycap", + "pound", + "#" + ] + }, + { + "code": "2a-20e3", + "char": "*๏ธโƒฃ", + "name": "keycap: *", + "keywords": [ + "asterisk", + "keycap", + "star", + "*" + ] + }, + { + "code": "30-20e3", + "char": "0๏ธโƒฃ", + "name": "keycap: 0", + "keywords": [ + "0", + "keycap", + "zero" + ] + }, + { + "code": "31-20e3", + "char": "1๏ธโƒฃ", + "name": "keycap: 1", + "keywords": [ + "1", + "keycap", + "one" + ] + }, + { + "code": "32-20e3", + "char": "2๏ธโƒฃ", + "name": "keycap: 2", + "keywords": [ + "2", + "keycap", + "two" + ] + }, + { + "code": "33-20e3", + "char": "3๏ธโƒฃ", + "name": "keycap: 3", + "keywords": [ + "3", + "keycap", + "three" + ] + }, + { + "code": "34-20e3", + "char": "4๏ธโƒฃ", + "name": "keycap: 4", + "keywords": [ + "4", + "four", + "keycap" + ] + }, + { + "code": "35-20e3", + "char": "5๏ธโƒฃ", + "name": "keycap: 5", + "keywords": [ + "5", + "five", + "keycap" + ] + }, + { + "code": "36-20e3", + "char": "6๏ธโƒฃ", + "name": "keycap: 6", + "keywords": [ + "6", + "keycap", + "six" + ] + }, + { + "code": "37-20e3", + "char": "7๏ธโƒฃ", + "name": "keycap: 7", + "keywords": [ + "7", + "keycap", + "seven" + ] + }, + { + "code": "38-20e3", + "char": "8๏ธโƒฃ", + "name": "keycap: 8", + "keywords": [ + "8", + "eight", + "keycap" + ] + }, + { + "code": "39-20e3", + "char": "9๏ธโƒฃ", + "name": "keycap: 9", + "keywords": [ + "9", + "keycap", + "nine" + ] + }, + { + "code": "1f51f", + "char": "๐Ÿ”Ÿ", + "name": "keycap: 10", + "keywords": [ + "10", + "keycap", + "ten" + ] + }, + { + "code": "1f520", + "char": "๐Ÿ” ", + "name": "input latin uppercase", + "keywords": [ + "input latin uppercase", + "latin", + "letters", + "uppercase" + ] + }, + { + "code": "1f521", + "char": "๐Ÿ”ก", + "name": "input latin lowercase", + "keywords": [ + "input latin lowercase", + "latin", + "letters", + "lowercase" + ] + }, + { + "code": "1f522", + "char": "๐Ÿ”ข", + "name": "input numbers", + "keywords": [ + "input numbers", + "numbers" + ] + }, + { + "code": "1f523", + "char": "๐Ÿ”ฃ", + "name": "input symbols", + "keywords": [ + "input symbols" + ] + }, + { + "code": "1f524", + "char": "๐Ÿ”ค", + "name": "input latin letters", + "keywords": [ + "alphabet", + "input latin letters", + "latin", + "letters" + ] + }, + { + "code": "1f170", + "char": "๐Ÿ…ฐ", + "name": "A button (blood type)", + "keywords": [ + "a button", + "blood type" + ] + }, + { + "code": "1f18e", + "char": "๐Ÿ†Ž", + "name": "AB button (blood type)", + "keywords": [ + "ab button", + "blood type" + ] + }, + { + "code": "1f171", + "char": "๐Ÿ…ฑ", + "name": "B button (blood type)", + "keywords": [ + "b button", + "blood type" + ] + }, + { + "code": "1f191", + "char": "๐Ÿ†‘", + "name": "CL button", + "keywords": [ + "cl button" + ] + }, + { + "code": "1f192", + "char": "๐Ÿ†’", + "name": "COOL button", + "keywords": [ + "cool button" + ] + }, + { + "code": "1f193", + "char": "๐Ÿ†“", + "name": "FREE button", + "keywords": [ + "free button" + ] + }, + { + "code": "2139", + "char": "โ„น", + "name": "information", + "keywords": [ + "i", + "information" + ] + }, + { + "code": "1f194", + "char": "๐Ÿ†”", + "name": "ID button", + "keywords": [ + "id button", + "identity" + ] + }, + { + "code": "24c2", + "char": "โ“‚", + "name": "circled M", + "keywords": [ + "circled m", + "m" + ] + }, + { + "code": "1f195", + "char": "๐Ÿ†•", + "name": "NEW button", + "keywords": [ + "new button" + ] + }, + { + "code": "1f196", + "char": "๐Ÿ†–", + "name": "NG button", + "keywords": [ + "ng button" + ] + }, + { + "code": "1f17e", + "char": "๐Ÿ…พ", + "name": "O button (blood type)", + "keywords": [ + "blood type", + "o button" + ] + }, + { + "code": "1f197", + "char": "๐Ÿ†—", + "name": "OK button", + "keywords": [ + "ok button" + ] + }, + { + "code": "1f17f", + "char": "๐Ÿ…ฟ", + "name": "P button", + "keywords": [ + "parking", + "p button" + ] + }, + { + "code": "1f198", + "char": "๐Ÿ†˜", + "name": "SOS button", + "keywords": [ + "help", + "sos button" + ] + }, + { + "code": "1f199", + "char": "๐Ÿ†™", + "name": "UP! button", + "keywords": [ + "mark", + "up! button" + ] + }, + { + "code": "1f19a", + "char": "๐Ÿ†š", + "name": "VS button", + "keywords": [ + "versus button", + "vs" + ] + }, + { + "code": "1f201", + "char": "๐Ÿˆ", + "name": "Japanese โ€œhereโ€ button", + "keywords": [ + "japanese here button", + "here" + ] + }, + { + "code": "1f202", + "char": "๐Ÿˆ‚", + "name": "Japanese โ€œservice chargeโ€ button", + "keywords": [ + "japanese service charge button", + "sevice charge" + ] + }, + { + "code": "1f237", + "char": "๐Ÿˆท", + "name": "Japanese โ€œmonthly amountโ€ button", + "keywords": [ + "japanese monthly amount button", + "monthly amount" + ] + }, + { + "code": "1f236", + "char": "๐Ÿˆถ", + "name": "Japanese โ€œnot free of chargeโ€ button", + "keywords": [ + "japanese not free of charge button", + "not free of charge" + ] + }, + { + "code": "1f22f", + "char": "๐Ÿˆฏ", + "name": "Japanese โ€œreservedโ€ button", + "keywords": [ + "japanese reserved button", + "reserved" + ] + }, + { + "code": "1f250", + "char": "๐Ÿ‰", + "name": "Japanese โ€œbargainโ€ button", + "keywords": [ + "japanese bargain button", + "bargain" + ] + }, + { + "code": "1f239", + "char": "๐Ÿˆน", + "name": "Japanese โ€œdiscountโ€ button", + "keywords": [ + "japanese discount button", + "discount" + ] + }, + { + "code": "1f21a", + "char": "๐Ÿˆš", + "name": "Japanese โ€œfree of chargeโ€ button", + "keywords": [ + "japanese free of charge button", + "free of charge" + ] + }, + { + "code": "1f232", + "char": "๐Ÿˆฒ", + "name": "Japanese โ€œprohibitedโ€ button", + "keywords": [ + "japanese prohibited button", + "prohibited" + ] + }, + { + "code": "1f251", + "char": "๐Ÿ‰‘", + "name": "Japanese โ€œacceptableโ€ button", + "keywords": [ + "japanese acceptable button", + "acceptable" + ] + }, + { + "code": "1f238", + "char": "๐Ÿˆธ", + "name": "Japanese โ€œapplicationโ€ button", + "keywords": [ + "japanese application button", + "application" + ] + }, + { + "code": "1f234", + "char": "๐Ÿˆด", + "name": "Japanese โ€œpassing gradeโ€ button", + "keywords": [ + "japanese passing grade button", + "passing grade" + ] + }, + { + "code": "1f233", + "char": "๐Ÿˆณ", + "name": "Japanese โ€œvacancyโ€ button", + "keywords": [ + "japanese vacancy button", + "vacancy" + ] + }, + { + "code": "3297", + "char": "ใŠ—", + "name": "Japanese โ€œcongratulationsโ€ button", + "keywords": [ + "japanese congratulations button", + "congratulations" + ] + }, + { + "code": "3299", + "char": "ใŠ™", + "name": "Japanese โ€œsecretโ€ button", + "keywords": [ + "japanese secret button", + "secret" + ] + }, + { + "code": "1f23a", + "char": "๐Ÿˆบ", + "name": "Japanese โ€œopen for businessโ€ button", + "keywords": [ + "japanese open for business button", + "open for business" + ] + }, + { + "code": "1f235", + "char": "๐Ÿˆต", + "name": "Japanese โ€œno vacancyโ€ button", + "keywords": [ + "japanese no vacancy button", + "no vacancy" + ] + }, + { + "code": "1f534", + "char": "๐Ÿ”ด", + "name": "red circle", + "keywords": [ + "circle", + "red circle" + ] + }, + { + "code": "1f7e0", + "char": "๐ŸŸ ", + "name": "orange circle", + "keywords": [ + "circle", + "orange circle" + ] + }, + { + "code": "1f7e1", + "char": "๐ŸŸก", + "name": "yellow circle", + "keywords": [ + "circle", + "yellow circle" + ] + }, + { + "code": "1f7e2", + "char": "๐ŸŸข", + "name": "green circle", + "keywords": [ + "circle", + "green circle" + ] + }, + { + "code": "1f535", + "char": "๐Ÿ”ต", + "name": "blue circle", + "keywords": [ + "blue circle", + "circle" + ] + }, + { + "code": "1f7e3", + "char": "๐ŸŸฃ", + "name": "purple circle", + "keywords": [ + "circle", + "purple circle" + ] + }, + { + "code": "1f7e4", + "char": "๐ŸŸค", + "name": "brown circle", + "keywords": [ + "circle", + "brown circle" + ] + }, + { + "code": "26ab", + "char": "โšซ", + "name": "black circle", + "keywords": [ + "black circle", + "circle" + ] + }, + { + "code": "26aa", + "char": "โšช", + "name": "white circle", + "keywords": [ + "white circle", + "circle" + ] + }, + { + "code": "1f7e5", + "char": "๐ŸŸฅ", + "name": "red square", + "keywords": [ + "red square", + "red" + ] + }, + { + "code": "1f7e7", + "char": "๐ŸŸง", + "name": "orange square", + "keywords": [ + "orange square", + "orange" + ] + }, + { + "code": "1f7e8", + "char": "๐ŸŸจ", + "name": "yellow square", + "keywords": [ + "yellow square", + "yellow" + ] + }, + { + "code": "1f7e9", + "char": "๐ŸŸฉ", + "name": "green square", + "keywords": [ + "green square", + "green" + ] + }, + { + "code": "1f7e6", + "char": "๐ŸŸฆ", + "name": "blue square", + "keywords": [ + "blue square", + "blue" + ] + }, + { + "code": "1f7ea", + "char": "๐ŸŸช", + "name": "purple square", + "keywords": [ + "purple square", + "purple" + ] + }, + { + "code": "1f7eb", + "char": "๐ŸŸซ", + "name": "brown square", + "keywords": [ + "brown square", + "brown" + ] + }, + { + "code": "2b1b", + "char": "โฌ›", + "name": "black large square", + "keywords": [ + "black large square", + "square" + ] + }, + { + "code": "2b1c", + "char": "โฌœ", + "name": "white large square", + "keywords": [ + "while large square", + "square" + ] + }, + { + "code": "25fc", + "char": "โ—ผ", + "name": "black medium square", + "keywords": [ + "black medium square", + "square" + ] + }, + { + "code": "25fb", + "char": "โ—ป", + "name": "white medium square", + "keywords": [ + "white medium square", + "square" + ] + }, + { + "code": "25fe", + "char": "โ—พ", + "name": "black medium-small square", + "keywords": [ + "black medium-small square", + "square" + ] + }, + { + "code": "25fd", + "char": "โ—ฝ", + "name": "white medium-small square", + "keywords": [ + "white medium-small square", + "square" + ] + }, + { + "code": "25aa", + "char": "โ–ช", + "name": "black small square", + "keywords": [ + "black small square", + "square" + ] + }, + { + "code": "25ab", + "char": "โ–ซ", + "name": "white small square", + "keywords": [ + "white small square", + "square" + ] + }, + { + "code": "1f536", + "char": "๐Ÿ”ถ", + "name": "large orange diamond", + "keywords": [ + "diamond", + "large orange diamond", + "orange" + ] + }, + { + "code": "1f537", + "char": "๐Ÿ”ท", + "name": "large blue diamond", + "keywords": [ + "blue", + "large blue diamond", + "blue" + ] + }, + { + "code": "1f538", + "char": "๐Ÿ”ธ", + "name": "small orange diamond", + "keywords": [ + "diamond", + "small orange diamond", + "orange" + ] + }, + { + "code": "1f539", + "char": "๐Ÿ”น", + "name": "small blue diamond", + "keywords": [ + "blue", + "diamond", + "small blue diamond" + ] + }, + { + "code": "1f53a", + "char": "๐Ÿ”บ", + "name": "red triangle pointed up", + "keywords": [ + "triangle", + "red triangle pointed up", + "up" + ] + }, + { + "code": "1f53b", + "char": "๐Ÿ”ป", + "name": "red triangle pointed down", + "keywords": [ + "down", + "red triangle pointed down", + "triangle" + ] + }, + { + "code": "1f4a0", + "char": "๐Ÿ’ ", + "name": "diamond with a dot", + "keywords": [ + "comic", + "diamond with a dot", + "dot", + "inside" + ] + }, + { + "code": "1f518", + "char": "๐Ÿ”˜", + "name": "radio button", + "keywords": [ + "button", + "radio button" + ] + }, + { + "code": "1f533", + "char": "๐Ÿ”ณ", + "name": "white square button", + "keywords": [ + "button", + "white square button", + "outlined", + "square" + ] + }, + { + "code": "1f532", + "char": "๐Ÿ”ฒ", + "name": "black square button", + "keywords": [ + "button", + "black square button", + "square" + ] + } + ], + "Flags": [ + { + "code": "1f3c1", + "char": "๐Ÿ", + "name": "chequered flag", + "keywords": [ + "checkered", + "chequered", + "flag", + "racing" + ] + }, + { + "code": "1f6a9", + "char": "๐Ÿšฉ", + "name": "triangular flag", + "keywords": [ + "flag", + "post", + "triangular", + "red" + ] + }, + { + "code": "1f38c", + "char": "๐ŸŽŒ", + "name": "crossed flags", + "keywords": [ + "celebration", + "cross", + "crossed", + "flag", + "japanese" + ] + }, + { + "code": "1f3f4", + "char": "๐Ÿด", + "name": "black flag", + "keywords": [ + "flag", + "waving", + "black" + ] + }, + { + "code": "1f3f3", + "char": "๐Ÿณ", + "name": "white flag", + "keywords": [ + "flag", + "waving", + "white" + ] + }, + { + "code": "1f3f3-fe0f-200d-1f308", + "char": "๐Ÿณ๏ธโ€๐ŸŒˆ", + "name": "rainbow flag", + "keywords": [ + "pride", + "rainbow", + "flag" + ] + }, + { + "code": "1f3f3-fe0f-200d-26a7-fe0f", + "char": "๐Ÿณ๏ธโ€โšง๏ธ", + "name": "transgender flag", + "keywords": [ + "flag", + "light blue", + "pink", + "white", + "transgender" + ] + }, + { + "code": "1f3f4-200d-2620-fe0f", + "char": "๐Ÿดโ€โ˜ ๏ธ", + "name": "pirate flag", + "keywords": [ + "flag", + "jolly roger", + "pirate", + "plunder", + "treasure", + "black", + "skull" + ] + }, + { + "code": "1f1e6-1f1e8", + "char": "๐Ÿ‡ฆ๐Ÿ‡จ", + "name": "flag: Ascension Island", + "keywords": [ + "ascension island", + "flag", + "island" + ] + }, + { + "code": "1f1e6-1f1e9", + "char": "๐Ÿ‡ฆ๐Ÿ‡ฉ", + "name": "flag: Andorra", + "keywords": [ + "andorra", + "flag" + ] + }, + { + "code": "1f1e6-1f1ea", + "char": "๐Ÿ‡ฆ๐Ÿ‡ช", + "name": "flag: United Arab Emirates", + "keywords": [ + "emirates", + "flag", + "uae", + "united arab emirates", + "arab" + ] + }, + { + "code": "1f1e6-1f1eb", + "char": "๐Ÿ‡ฆ๐Ÿ‡ซ", + "name": "flag: Afghanistan", + "keywords": [ + "afghanistan", + "flag" + ] + }, + { + "code": "1f1e6-1f1ec", + "char": "๐Ÿ‡ฆ๐Ÿ‡ฌ", + "name": "flag: Antigua & Barbuda", + "keywords": [ + "antigua & barbuda", + "barbuda", + "flag" + ] + }, + { + "code": "1f1e6-1f1ee", + "char": "๐Ÿ‡ฆ๐Ÿ‡ฎ", + "name": "flag: Anguilla", + "keywords": [ + "anguilla", + "flag" + ] + }, + { + "code": "1f1e6-1f1f1", + "char": "๐Ÿ‡ฆ๐Ÿ‡ฑ", + "name": "flag: Albania", + "keywords": [ + "albania", + "flag" + ] + }, + { + "code": "1f1e6-1f1f2", + "char": "๐Ÿ‡ฆ๐Ÿ‡ฒ", + "name": "flag: Armenia", + "keywords": [ + "armenia", + "flag" + ] + }, + { + "code": "1f1e6-1f1f4", + "char": "๐Ÿ‡ฆ๐Ÿ‡ด", + "name": "flag: Angola", + "keywords": [ + "angola", + "flag" + ] + }, + { + "code": "1f1e6-1f1f6", + "char": "๐Ÿ‡ฆ๐Ÿ‡ถ", + "name": "flag: Antarctica", + "keywords": [ + "antarctica", + "flag" + ] + }, + { + "code": "1f1e6-1f1f7", + "char": "๐Ÿ‡ฆ๐Ÿ‡ท", + "name": "flag: Argentina", + "keywords": [ + "argentina", + "flag" + ] + }, + { + "code": "1f1e6-1f1f8", + "char": "๐Ÿ‡ฆ๐Ÿ‡ธ", + "name": "flag: American Samoa", + "keywords": [ + "american samoa", + "flag", + "samoa" + ] + }, + { + "code": "1f1e6-1f1f9", + "char": "๐Ÿ‡ฆ๐Ÿ‡น", + "name": "flag: Austria", + "keywords": [ + "austria", + "flag" + ] + }, + { + "code": "1f1e6-1f1fa", + "char": "๐Ÿ‡ฆ๐Ÿ‡บ", + "name": "flag: Australia", + "keywords": [ + "australia", + "flag" + ] + }, + { + "code": "1f1e6-1f1fc", + "char": "๐Ÿ‡ฆ๐Ÿ‡ผ", + "name": "flag: Aruba", + "keywords": [ + "aruba", + "flag" + ] + }, + { + "code": "1f1e6-1f1fd", + "char": "๐Ÿ‡ฆ๐Ÿ‡ฝ", + "name": "flag: ร…land Islands", + "keywords": [ + "รฅland islands", + "flag", + "island" + ] + }, + { + "code": "1f1e6-1f1ff", + "char": "๐Ÿ‡ฆ๐Ÿ‡ฟ", + "name": "flag: Azerbaijan", + "keywords": [ + "azerbaijan", + "flag" + ] + }, + { + "code": "1f1e7-1f1e6", + "char": "๐Ÿ‡ง๐Ÿ‡ฆ", + "name": "flag: Bosnia & Herzegovina", + "keywords": [ + "bosnia & herzegovina", + "flag", + "herzegovina" + ] + }, + { + "code": "1f1e7-1f1e7", + "char": "๐Ÿ‡ง๐Ÿ‡ง", + "name": "flag: Barbados", + "keywords": [ + "barbados", + "flag" + ] + }, + { + "code": "1f1e7-1f1e9", + "char": "๐Ÿ‡ง๐Ÿ‡ฉ", + "name": "flag: Bangladesh", + "keywords": [ + "bangladesh", + "flag" + ] + }, + { + "code": "1f1e7-1f1ea", + "char": "๐Ÿ‡ง๐Ÿ‡ช", + "name": "flag: Belgium", + "keywords": [ + "belgium", + "flag" + ] + }, + { + "code": "1f1e7-1f1eb", + "char": "๐Ÿ‡ง๐Ÿ‡ซ", + "name": "flag: Burkina Faso", + "keywords": [ + "burkina faso", + "flag" + ] + }, + { + "code": "1f1e7-1f1ec", + "char": "๐Ÿ‡ง๐Ÿ‡ฌ", + "name": "flag: Bulgaria", + "keywords": [ + "bulgaria", + "flag" + ] + }, + { + "code": "1f1e7-1f1ed", + "char": "๐Ÿ‡ง๐Ÿ‡ญ", + "name": "flag: Bahrain", + "keywords": [ + "bahrain", + "flag" + ] + }, + { + "code": "1f1e7-1f1ee", + "char": "๐Ÿ‡ง๐Ÿ‡ฎ", + "name": "flag: Burundi", + "keywords": [ + "burundi", + "flag" + ] + }, + { + "code": "1f1e7-1f1ef", + "char": "๐Ÿ‡ง๐Ÿ‡ฏ", + "name": "flag: Benin", + "keywords": [ + "benin", + "flag" + ] + }, + { + "code": "1f1e7-1f1f1", + "char": "๐Ÿ‡ง๐Ÿ‡ฑ", + "name": "flag: St. Barthรฉlemy", + "keywords": [ + "barthelemy", + "barthรฉlemy", + "flag", + "saint" + ] + }, + { + "code": "1f1e7-1f1f2", + "char": "๐Ÿ‡ง๐Ÿ‡ฒ", + "name": "flag: Bermuda", + "keywords": [ + "bermuda", + "flag" + ] + }, + { + "code": "1f1e7-1f1f3", + "char": "๐Ÿ‡ง๐Ÿ‡ณ", + "name": "flag: Brunei", + "keywords": [ + "brunei", + "darussalam", + "flag" + ] + }, + { + "code": "1f1e7-1f1f4", + "char": "๐Ÿ‡ง๐Ÿ‡ด", + "name": "flag: Bolivia", + "keywords": [ + "bolivia", + "flag" + ] + }, + { + "code": "1f1e7-1f1f6", + "char": "๐Ÿ‡ง๐Ÿ‡ถ", + "name": "flag: Caribbean Netherlands", + "keywords": [ + "bonaire", + "caribbean netherlands", + "eustatius", + "flag", + "netherlands", + "saba", + "sint" + ] + }, + { + "code": "1f1e7-1f1f7", + "char": "๐Ÿ‡ง๐Ÿ‡ท", + "name": "flag: Brazil", + "keywords": [ + "brazil", + "flag" + ] + }, + { + "code": "1f1e7-1f1f8", + "char": "๐Ÿ‡ง๐Ÿ‡ธ", + "name": "flag: Bahamas", + "keywords": [ + "bahamas", + "flag" + ] + }, + { + "code": "1f1e7-1f1f9", + "char": "๐Ÿ‡ง๐Ÿ‡น", + "name": "flag: Bhutan", + "keywords": [ + "bhutan", + "flag" + ] + }, + { + "code": "1f1e7-1f1fb", + "char": "๐Ÿ‡ง๐Ÿ‡ป", + "name": "flag: Bouvet Island", + "keywords": [ + "bouvet island", + "flag", + "island" + ] + }, + { + "code": "1f1e7-1f1fc", + "char": "๐Ÿ‡ง๐Ÿ‡ผ", + "name": "flag: Botswana", + "keywords": [ + "botswana", + "flag" + ] + }, + { + "code": "1f1e7-1f1fe", + "char": "๐Ÿ‡ง๐Ÿ‡พ", + "name": "flag: Belarus", + "keywords": [ + "belarus", + "flag" + ] + }, + { + "code": "1f1e7-1f1ff", + "char": "๐Ÿ‡ง๐Ÿ‡ฟ", + "name": "flag: Belize", + "keywords": [ + "belize", + "flag" + ] + }, + { + "code": "1f1e8-1f1e6", + "char": "๐Ÿ‡จ๐Ÿ‡ฆ", + "name": "flag: Canada", + "keywords": [ + "canada", + "flag" + ] + }, + { + "code": "1f1e8-1f1e8", + "char": "๐Ÿ‡จ๐Ÿ‡จ", + "name": "flag: Cocos (Keeling) Islands", + "keywords": [ + "cocos islands", + "flag", + "island", + "keeling" + ] + }, + { + "code": "1f1e8-1f1e9", + "char": "๐Ÿ‡จ๐Ÿ‡ฉ", + "name": "flag: Congo - Kinshasa", + "keywords": [ + "congo-kinshasa", + "democratic republic of congo", + "drc", + "flag", + "kinshasa", + "republic" + ] + }, + { + "code": "1f1e8-1f1eb", + "char": "๐Ÿ‡จ๐Ÿ‡ซ", + "name": "flag: Central African Republic", + "keywords": [ + "central african republic", + "flag", + "republic", + "african", + "africa" + ] + }, + { + "code": "1f1e8-1f1ec", + "char": "๐Ÿ‡จ๐Ÿ‡ฌ", + "name": "flag: Congo - Brazzaville", + "keywords": [ + "brazzaville", + "congo republic", + "congo-brazzaville", + "flag", + "republic of the congo" + ] + }, + { + "code": "1f1e8-1f1ed", + "char": "๐Ÿ‡จ๐Ÿ‡ญ", + "name": "flag: Switzerland", + "keywords": [ + "flag", + "switzerland" + ] + }, + { + "code": "1f1e8-1f1ee", + "char": "๐Ÿ‡จ๐Ÿ‡ฎ", + "name": "flag: Cรดte dโ€™Ivoire", + "keywords": [ + "cote ivoire", + "cรดte ivoire", + "flag", + "ivory coast" + ] + }, + { + "code": "1f1e8-1f1f0", + "char": "๐Ÿ‡จ๐Ÿ‡ฐ", + "name": "flag: Cook Islands", + "keywords": [ + "cook islands", + "flag", + "island" + ] + }, + { + "code": "1f1e8-1f1f1", + "char": "๐Ÿ‡จ๐Ÿ‡ฑ", + "name": "flag: Chile", + "keywords": [ + "chile", + "flag" + ] + }, + { + "code": "1f1e8-1f1f2", + "char": "๐Ÿ‡จ๐Ÿ‡ฒ", + "name": "flag: Cameroon", + "keywords": [ + "cameroon", + "flag" + ] + }, + { + "code": "1f1e8-1f1f3", + "char": "๐Ÿ‡จ๐Ÿ‡ณ", + "name": "flag: China", + "keywords": [ + "china", + "flag" + ] + }, + { + "code": "1f1e8-1f1f4", + "char": "๐Ÿ‡จ๐Ÿ‡ด", + "name": "flag: Colombia", + "keywords": [ + "colombia", + "flag" + ] + }, + { + "code": "1f1e8-1f1f5", + "char": "๐Ÿ‡จ๐Ÿ‡ต", + "name": "flag: Clipperton Island", + "keywords": [ + "clipperton island", + "flag", + "island" + ] + }, + { + "code": "1f1e8-1f1f7", + "char": "๐Ÿ‡จ๐Ÿ‡ท", + "name": "flag: Costa Rica", + "keywords": [ + "costa rica", + "flag" + ] + }, + { + "code": "1f1e8-1f1fa", + "char": "๐Ÿ‡จ๐Ÿ‡บ", + "name": "flag: Cuba", + "keywords": [ + "cuba", + "flag" + ] + }, + { + "code": "1f1e8-1f1fb", + "char": "๐Ÿ‡จ๐Ÿ‡ป", + "name": "flag: Cape Verde", + "keywords": [ + "cabo", + "cape verde", + "flag", + "verde" + ] + }, + { + "code": "1f1e8-1f1fc", + "char": "๐Ÿ‡จ๐Ÿ‡ผ", + "name": "flag: Curaรงao", + "keywords": [ + "antilles", + "curacao", + "curaรงao", + "flag" + ] + }, + { + "code": "1f1e8-1f1fd", + "char": "๐Ÿ‡จ๐Ÿ‡ฝ", + "name": "flag: Christmas Island", + "keywords": [ + "christmas island", + "flag", + "island" + ] + }, + { + "code": "1f1e8-1f1fe", + "char": "๐Ÿ‡จ๐Ÿ‡พ", + "name": "flag: Cyprus", + "keywords": [ + "cyprus", + "flag" + ] + }, + { + "code": "1f1e8-1f1ff", + "char": "๐Ÿ‡จ๐Ÿ‡ฟ", + "name": "flag: Czechia", + "keywords": [ + "czechia", + "flag" + ] + }, + { + "code": "1f1e9-1f1ea", + "char": "๐Ÿ‡ฉ๐Ÿ‡ช", + "name": "flag: Germany", + "keywords": [ + "flag", + "germany" + ] + }, + { + "code": "1f1e9-1f1ec", + "char": "๐Ÿ‡ฉ๐Ÿ‡ฌ", + "name": "flag: Diego Garcia", + "keywords": [ + "diego garcia", + "flag" + ] + }, + { + "code": "1f1e9-1f1ef", + "char": "๐Ÿ‡ฉ๐Ÿ‡ฏ", + "name": "flag: Djibouti", + "keywords": [ + "djibouti", + "flag" + ] + }, + { + "code": "1f1e9-1f1f0", + "char": "๐Ÿ‡ฉ๐Ÿ‡ฐ", + "name": "flag: Denmark", + "keywords": [ + "denmark", + "flag" + ] + }, + { + "code": "1f1e9-1f1f2", + "char": "๐Ÿ‡ฉ๐Ÿ‡ฒ", + "name": "flag: Dominica", + "keywords": [ + "dominica", + "flag" + ] + }, + { + "code": "1f1e9-1f1f4", + "char": "๐Ÿ‡ฉ๐Ÿ‡ด", + "name": "flag: Dominican Republic", + "keywords": [ + "dominican republic", + "flag" + ] + }, + { + "code": "1f1e9-1f1ff", + "char": "๐Ÿ‡ฉ๐Ÿ‡ฟ", + "name": "flag: Algeria", + "keywords": [ + "algeria", + "flag" + ] + }, + { + "code": "1f1ea-1f1e6", + "char": "๐Ÿ‡ช๐Ÿ‡ฆ", + "name": "flag: Ceuta & Melilla", + "keywords": [ + "ceuta & melilla", + "flag", + "melilla" + ] + }, + { + "code": "1f1ea-1f1e8", + "char": "๐Ÿ‡ช๐Ÿ‡จ", + "name": "flag: Ecuador", + "keywords": [ + "ecuador", + "flag" + ] + }, + { + "code": "1f1ea-1f1ea", + "char": "๐Ÿ‡ช๐Ÿ‡ช", + "name": "flag: Estonia", + "keywords": [ + "estonia", + "flag" + ] + }, + { + "code": "1f1ea-1f1ec", + "char": "๐Ÿ‡ช๐Ÿ‡ฌ", + "name": "flag: Egypt", + "keywords": [ + "egypt", + "flag" + ] + }, + { + "code": "1f1ea-1f1ed", + "char": "๐Ÿ‡ช๐Ÿ‡ญ", + "name": "flag: Western Sahara", + "keywords": [ + "flag", + "sahara", + "western sahara" + ] + }, + { + "code": "1f1ea-1f1f7", + "char": "๐Ÿ‡ช๐Ÿ‡ท", + "name": "flag: Eritrea", + "keywords": [ + "eritrea", + "flag" + ] + }, + { + "code": "1f1ea-1f1f8", + "char": "๐Ÿ‡ช๐Ÿ‡ธ", + "name": "flag: Spain", + "keywords": [ + "flag", + "spain" + ] + }, + { + "code": "1f1ea-1f1f9", + "char": "๐Ÿ‡ช๐Ÿ‡น", + "name": "flag: Ethiopia", + "keywords": [ + "ethiopia", + "flag" + ] + }, + { + "code": "1f1ea-1f1fa", + "char": "๐Ÿ‡ช๐Ÿ‡บ", + "name": "flag: European Union", + "keywords": [ + "european union", + "flag" + ] + }, + { + "code": "1f1eb-1f1ee", + "char": "๐Ÿ‡ซ๐Ÿ‡ฎ", + "name": "flag: Finland", + "keywords": [ + "finland", + "flag" + ] + }, + { + "code": "1f1eb-1f1ef", + "char": "๐Ÿ‡ซ๐Ÿ‡ฏ", + "name": "flag: Fiji", + "keywords": [ + "fiji", + "flag" + ] + }, + { + "code": "1f1eb-1f1f0", + "char": "๐Ÿ‡ซ๐Ÿ‡ฐ", + "name": "flag: Falkland Islands", + "keywords": [ + "falkland islands", + "falklands", + "flag", + "island", + "islas", + "malvinas" + ] + }, + { + "code": "1f1eb-1f1f2", + "char": "๐Ÿ‡ซ๐Ÿ‡ฒ", + "name": "flag: Micronesia", + "keywords": [ + "flag", + "micronesia" + ] + }, + { + "code": "1f1eb-1f1f4", + "char": "๐Ÿ‡ซ๐Ÿ‡ด", + "name": "flag: Faroe Islands", + "keywords": [ + "faroe islands", + "flag", + "island" + ] + }, + { + "code": "1f1eb-1f1f7", + "char": "๐Ÿ‡ซ๐Ÿ‡ท", + "name": "flag: France", + "keywords": [ + "flag", + "france" + ] + }, + { + "code": "1f1ec-1f1e6", + "char": "๐Ÿ‡ฌ๐Ÿ‡ฆ", + "name": "flag: Gabon", + "keywords": [ + "flag", + "gabon" + ] + }, + { + "code": "1f1ec-1f1e7", + "char": "๐Ÿ‡ฌ๐Ÿ‡ง", + "name": "flag: United Kingdom", + "keywords": [ + "britain", + "british", + "cornwall", + "england", + "flag", + "great britain", + "ireland", + "northern ireland", + "scotland", + "uk", + "union jack", + "united kingdom", + "wales" + ] + }, + { + "code": "1f1ec-1f1e9", + "char": "๐Ÿ‡ฌ๐Ÿ‡ฉ", + "name": "flag: Grenada", + "keywords": [ + "flag", + "grenada" + ] + }, + { + "code": "1f1ec-1f1ea", + "char": "๐Ÿ‡ฌ๐Ÿ‡ช", + "name": "flag: Georgia", + "keywords": [ + "flag", + "georgia" + ] + }, + { + "code": "1f1ec-1f1eb", + "char": "๐Ÿ‡ฌ๐Ÿ‡ซ", + "name": "flag: French Guiana", + "keywords": [ + "flag", + "french guiana", + "guiana" + ] + }, + { + "code": "1f1ec-1f1ec", + "char": "๐Ÿ‡ฌ๐Ÿ‡ฌ", + "name": "flag: Guernsey", + "keywords": [ + "flag", + "guernsey" + ] + }, + { + "code": "1f1ec-1f1ed", + "char": "๐Ÿ‡ฌ๐Ÿ‡ญ", + "name": "flag: Ghana", + "keywords": [ + "flag", + "ghana" + ] + }, + { + "code": "1f1ec-1f1ee", + "char": "๐Ÿ‡ฌ๐Ÿ‡ฎ", + "name": "flag: Gibraltar", + "keywords": [ + "flag", + "gibraltar" + ] + }, + { + "code": "1f1ec-1f1f1", + "char": "๐Ÿ‡ฌ๐Ÿ‡ฑ", + "name": "flag: Greenland", + "keywords": [ + "flag", + "greenland" + ] + }, + { + "code": "1f1ec-1f1f2", + "char": "๐Ÿ‡ฌ๐Ÿ‡ฒ", + "name": "flag: Gambia", + "keywords": [ + "flag", + "gambia" + ] + }, + { + "code": "1f1ec-1f1f3", + "char": "๐Ÿ‡ฌ๐Ÿ‡ณ", + "name": "flag: Guinea", + "keywords": [ + "flag", + "guinea" + ] + }, + { + "code": "1f1ec-1f1f5", + "char": "๐Ÿ‡ฌ๐Ÿ‡ต", + "name": "flag: Guadeloupe", + "keywords": [ + "flag", + "guadeloupe" + ] + }, + { + "code": "1f1ec-1f1f6", + "char": "๐Ÿ‡ฌ๐Ÿ‡ถ", + "name": "flag: Equatorial Guinea", + "keywords": [ + "equatorial guinea", + "flag", + "guinea" + ] + }, + { + "code": "1f1ec-1f1f7", + "char": "๐Ÿ‡ฌ๐Ÿ‡ท", + "name": "flag: Greece", + "keywords": [ + "flag", + "greece" + ] + }, + { + "code": "1f1ec-1f1f8", + "char": "๐Ÿ‡ฌ๐Ÿ‡ธ", + "name": "flag: South Georgia & South Sandwich Islands", + "keywords": [ + "flag", + "georgia", + "island", + "south", + "south sandwich", + "south georgia & south sandwich islands" + ] + }, + { + "code": "1f1ec-1f1f9", + "char": "๐Ÿ‡ฌ๐Ÿ‡น", + "name": "flag: Guatemala", + "keywords": [ + "flag", + "guatemala" + ] + }, + { + "code": "1f1ec-1f1fa", + "char": "๐Ÿ‡ฌ๐Ÿ‡บ", + "name": "flag: Guam", + "keywords": [ + "flag", + "guam" + ] + }, + { + "code": "1f1ec-1f1fc", + "char": "๐Ÿ‡ฌ๐Ÿ‡ผ", + "name": "flag: Guinea-Bissau", + "keywords": [ + "bissau", + "flag", + "guinea-bissau" + ] + }, + { + "code": "1f1ec-1f1fe", + "char": "๐Ÿ‡ฌ๐Ÿ‡พ", + "name": "flag: Guyana", + "keywords": [ + "flag", + "guyana" + ] + }, + { + "code": "1f1ed-1f1f0", + "char": "๐Ÿ‡ญ๐Ÿ‡ฐ", + "name": "flag: Hong Kong SAR China", + "keywords": [ + "china", + "flag", + "hong kong" + ] + }, + { + "code": "1f1ed-1f1f2", + "char": "๐Ÿ‡ญ๐Ÿ‡ฒ", + "name": "flag: Heard & McDonald Islands", + "keywords": [ + "flag", + "heard", + "island", + "mcdonald" + ] + }, + { + "code": "1f1ed-1f1f3", + "char": "๐Ÿ‡ญ๐Ÿ‡ณ", + "name": "flag: Honduras", + "keywords": [ + "flag", + "honduras" + ] + }, + { + "code": "1f1ed-1f1f7", + "char": "๐Ÿ‡ญ๐Ÿ‡ท", + "name": "flag: Croatia", + "keywords": [ + "croatia", + "flag" + ] + }, + { + "code": "1f1ed-1f1f9", + "char": "๐Ÿ‡ญ๐Ÿ‡น", + "name": "flag: Haiti", + "keywords": [ + "flag", + "haiti" + ] + }, + { + "code": "1f1ed-1f1fa", + "char": "๐Ÿ‡ญ๐Ÿ‡บ", + "name": "flag: Hungary", + "keywords": [ + "flag", + "hungary" + ] + }, + { + "code": "1f1ee-1f1e8", + "char": "๐Ÿ‡ฎ๐Ÿ‡จ", + "name": "flag: Canary Islands", + "keywords": [ + "canary islands", + "flag", + "island" + ] + }, + { + "code": "1f1ee-1f1e9", + "char": "๐Ÿ‡ฎ๐Ÿ‡ฉ", + "name": "flag: Indonesia", + "keywords": [ + "flag", + "indonesia" + ] + }, + { + "code": "1f1ee-1f1ea", + "char": "๐Ÿ‡ฎ๐Ÿ‡ช", + "name": "flag: Ireland", + "keywords": [ + "flag", + "ireland" + ] + }, + { + "code": "1f1ee-1f1f1", + "char": "๐Ÿ‡ฎ๐Ÿ‡ฑ", + "name": "flag: Israel", + "keywords": [ + "flag", + "israel" + ] + }, + { + "code": "1f1ee-1f1f2", + "char": "๐Ÿ‡ฎ๐Ÿ‡ฒ", + "name": "flag: Isle of Man", + "keywords": [ + "flag", + "isle of man" + ] + }, + { + "code": "1f1ee-1f1f3", + "char": "๐Ÿ‡ฎ๐Ÿ‡ณ", + "name": "flag: India", + "keywords": [ + "flag", + "india" + ] + }, + { + "code": "1f1ee-1f1f4", + "char": "๐Ÿ‡ฎ๐Ÿ‡ด", + "name": "flag: British Indian Ocean Territory", + "keywords": [ + "british", + "chagos", + "flag", + "indian ocean", + "island", + "indian" + ] + }, + { + "code": "1f1ee-1f1f6", + "char": "๐Ÿ‡ฎ๐Ÿ‡ถ", + "name": "flag: Iraq", + "keywords": [ + "flag", + "iraq" + ] + }, + { + "code": "1f1ee-1f1f7", + "char": "๐Ÿ‡ฎ๐Ÿ‡ท", + "name": "flag: Iran", + "keywords": [ + "flag", + "iran" + ] + }, + { + "code": "1f1ee-1f1f8", + "char": "๐Ÿ‡ฎ๐Ÿ‡ธ", + "name": "flag: Iceland", + "keywords": [ + "flag", + "iceland" + ] + }, + { + "code": "1f1ee-1f1f9", + "char": "๐Ÿ‡ฎ๐Ÿ‡น", + "name": "flag: Italy", + "keywords": [ + "flag", + "italy" + ] + }, + { + "code": "1f1ef-1f1ea", + "char": "๐Ÿ‡ฏ๐Ÿ‡ช", + "name": "flag: Jersey", + "keywords": [ + "flag", + "jersey" + ] + }, + { + "code": "1f1ef-1f1f2", + "char": "๐Ÿ‡ฏ๐Ÿ‡ฒ", + "name": "flag: Jamaica", + "keywords": [ + "flag", + "jamaica" + ] + }, + { + "code": "1f1ef-1f1f4", + "char": "๐Ÿ‡ฏ๐Ÿ‡ด", + "name": "flag: Jordan", + "keywords": [ + "flag", + "jordan" + ] + }, + { + "code": "1f1ef-1f1f5", + "char": "๐Ÿ‡ฏ๐Ÿ‡ต", + "name": "flag: Japan", + "keywords": [ + "flag", + "japan" + ] + }, + { + "code": "1f1f0-1f1ea", + "char": "๐Ÿ‡ฐ๐Ÿ‡ช", + "name": "flag: Kenya", + "keywords": [ + "flag", + "kenya" + ] + }, + { + "code": "1f1f0-1f1ec", + "char": "๐Ÿ‡ฐ๐Ÿ‡ฌ", + "name": "flag: Kyrgyzstan", + "keywords": [ + "flag", + "kyrgyzstan" + ] + }, + { + "code": "1f1f0-1f1ed", + "char": "๐Ÿ‡ฐ๐Ÿ‡ญ", + "name": "flag: Cambodia", + "keywords": [ + "cambodia", + "flag" + ] + }, + { + "code": "1f1f0-1f1ee", + "char": "๐Ÿ‡ฐ๐Ÿ‡ฎ", + "name": "flag: Kiribati", + "keywords": [ + "flag", + "kiribati" + ] + }, + { + "code": "1f1f0-1f1f2", + "char": "๐Ÿ‡ฐ๐Ÿ‡ฒ", + "name": "flag: Comoros", + "keywords": [ + "comoros", + "flag" + ] + }, + { + "code": "1f1f0-1f1f3", + "char": "๐Ÿ‡ฐ๐Ÿ‡ณ", + "name": "flag: St. Kitts & Nevis", + "keywords": [ + "flag", + "kitts & nevis", + "nevis", + "saint" + ] + }, + { + "code": "1f1f0-1f1f5", + "char": "๐Ÿ‡ฐ๐Ÿ‡ต", + "name": "flag: North Korea", + "keywords": [ + "flag", + "korea", + "north korea" + ] + }, + { + "code": "1f1f0-1f1f7", + "char": "๐Ÿ‡ฐ๐Ÿ‡ท", + "name": "flag: South Korea", + "keywords": [ + "flag", + "korea", + "south korea" + ] + }, + { + "code": "1f1f0-1f1fc", + "char": "๐Ÿ‡ฐ๐Ÿ‡ผ", + "name": "flag: Kuwait", + "keywords": [ + "flag", + "kuwait" + ] + }, + { + "code": "1f1f0-1f1fe", + "char": "๐Ÿ‡ฐ๐Ÿ‡พ", + "name": "flag: Cayman Islands", + "keywords": [ + "cayman islands", + "flag", + "island" + ] + }, + { + "code": "1f1f0-1f1ff", + "char": "๐Ÿ‡ฐ๐Ÿ‡ฟ", + "name": "flag: Kazakhstan", + "keywords": [ + "flag", + "kazakhstan" + ] + }, + { + "code": "1f1f1-1f1e6", + "char": "๐Ÿ‡ฑ๐Ÿ‡ฆ", + "name": "flag: Laos", + "keywords": [ + "flag", + "laos" + ] + }, + { + "code": "1f1f1-1f1e7", + "char": "๐Ÿ‡ฑ๐Ÿ‡ง", + "name": "flag: Lebanon", + "keywords": [ + "flag", + "lebanon" + ] + }, + { + "code": "1f1f1-1f1e8", + "char": "๐Ÿ‡ฑ๐Ÿ‡จ", + "name": "flag: St. Lucia", + "keywords": [ + "flag", + "lucia", + "saint" + ] + }, + { + "code": "1f1f1-1f1ee", + "char": "๐Ÿ‡ฑ๐Ÿ‡ฎ", + "name": "flag: Liechtenstein", + "keywords": [ + "flag", + "liechtenstein" + ] + }, + { + "code": "1f1f1-1f1f0", + "char": "๐Ÿ‡ฑ๐Ÿ‡ฐ", + "name": "flag: Sri Lanka", + "keywords": [ + "flag", + "sri lanka" + ] + }, + { + "code": "1f1f1-1f1f7", + "char": "๐Ÿ‡ฑ๐Ÿ‡ท", + "name": "flag: Liberia", + "keywords": [ + "flag", + "liberia" + ] + }, + { + "code": "1f1f1-1f1f8", + "char": "๐Ÿ‡ฑ๐Ÿ‡ธ", + "name": "flag: Lesotho", + "keywords": [ + "flag", + "lesotho" + ] + }, + { + "code": "1f1f1-1f1f9", + "char": "๐Ÿ‡ฑ๐Ÿ‡น", + "name": "flag: Lithuania", + "keywords": [ + "flag", + "lithuania" + ] + }, + { + "code": "1f1f1-1f1fa", + "char": "๐Ÿ‡ฑ๐Ÿ‡บ", + "name": "flag: Luxembourg", + "keywords": [ + "flag", + "luxembourg" + ] + }, + { + "code": "1f1f1-1f1fb", + "char": "๐Ÿ‡ฑ๐Ÿ‡ป", + "name": "flag: Latvia", + "keywords": [ + "flag", + "latvia" + ] + }, + { + "code": "1f1f1-1f1fe", + "char": "๐Ÿ‡ฑ๐Ÿ‡พ", + "name": "flag: Libya", + "keywords": [ + "flag", + "libya" + ] + }, + { + "code": "1f1f2-1f1e6", + "char": "๐Ÿ‡ฒ๐Ÿ‡ฆ", + "name": "flag: Morocco", + "keywords": [ + "flag", + "morocco" + ] + }, + { + "code": "1f1f2-1f1e8", + "char": "๐Ÿ‡ฒ๐Ÿ‡จ", + "name": "flag: Monaco", + "keywords": [ + "flag", + "monaco" + ] + }, + { + "code": "1f1f2-1f1e9", + "char": "๐Ÿ‡ฒ๐Ÿ‡ฉ", + "name": "flag: Moldova", + "keywords": [ + "flag", + "moldova" + ] + }, + { + "code": "1f1f2-1f1ea", + "char": "๐Ÿ‡ฒ๐Ÿ‡ช", + "name": "flag: Montenegro", + "keywords": [ + "flag", + "montenegro" + ] + }, + { + "code": "1f1f2-1f1eb", + "char": "๐Ÿ‡ฒ๐Ÿ‡ซ", + "name": "flag: St. Martin", + "keywords": [ + "flag", + "french", + "martin", + "saint" + ] + }, + { + "code": "1f1f2-1f1ec", + "char": "๐Ÿ‡ฒ๐Ÿ‡ฌ", + "name": "flag: Madagascar", + "keywords": [ + "flag", + "madagascar" + ] + }, + { + "code": "1f1f2-1f1ed", + "char": "๐Ÿ‡ฒ๐Ÿ‡ญ", + "name": "flag: Marshall Islands", + "keywords": [ + "flag", + "island", + "marshall islands" + ] + }, + { + "code": "1f1f2-1f1f0", + "char": "๐Ÿ‡ฒ๐Ÿ‡ฐ", + "name": "flag: North Macedonia", + "keywords": [ + "flag", + "north macedonia" + ] + }, + { + "code": "1f1f2-1f1f1", + "char": "๐Ÿ‡ฒ๐Ÿ‡ฑ", + "name": "flag: Mali", + "keywords": [ + "flag", + "mali" + ] + }, + { + "code": "1f1f2-1f1f2", + "char": "๐Ÿ‡ฒ๐Ÿ‡ฒ", + "name": "flag: Myanmar (Burma)", + "keywords": [ + "burma", + "flag", + "myanmar" + ] + }, + { + "code": "1f1f2-1f1f3", + "char": "๐Ÿ‡ฒ๐Ÿ‡ณ", + "name": "flag: Mongolia", + "keywords": [ + "flag", + "mongolia" + ] + }, + { + "code": "1f1f2-1f1f4", + "char": "๐Ÿ‡ฒ๐Ÿ‡ด", + "name": "flag: Macao SAR China", + "keywords": [ + "china", + "flag", + "macao", + "macau" + ] + }, + { + "code": "1f1f2-1f1f5", + "char": "๐Ÿ‡ฒ๐Ÿ‡ต", + "name": "flag: Northern Mariana Islands", + "keywords": [ + "flag", + "island", + "mariana", + "northern mariana islands" + ] + }, + { + "code": "1f1f2-1f1f6", + "char": "๐Ÿ‡ฒ๐Ÿ‡ถ", + "name": "flag: Martinique", + "keywords": [ + "flag", + "martinique" + ] + }, + { + "code": "1f1f2-1f1f7", + "char": "๐Ÿ‡ฒ๐Ÿ‡ท", + "name": "flag: Mauritania", + "keywords": [ + "flag", + "mauritania" + ] + }, + { + "code": "1f1f2-1f1f8", + "char": "๐Ÿ‡ฒ๐Ÿ‡ธ", + "name": "flag: Montserrat", + "keywords": [ + "flag", + "montserrat" + ] + }, + { + "code": "1f1f2-1f1f9", + "char": "๐Ÿ‡ฒ๐Ÿ‡น", + "name": "flag: Malta", + "keywords": [ + "flag", + "malta" + ] + }, + { + "code": "1f1f2-1f1fa", + "char": "๐Ÿ‡ฒ๐Ÿ‡บ", + "name": "flag: Mauritius", + "keywords": [ + "flag", + "mauritius" + ] + }, + { + "code": "1f1f2-1f1fb", + "char": "๐Ÿ‡ฒ๐Ÿ‡ป", + "name": "flag: Maldives", + "keywords": [ + "flag", + "maldives" + ] + }, + { + "code": "1f1f2-1f1fc", + "char": "๐Ÿ‡ฒ๐Ÿ‡ผ", + "name": "flag: Malawi", + "keywords": [ + "flag", + "malawi" + ] + }, + { + "code": "1f1f2-1f1fd", + "char": "๐Ÿ‡ฒ๐Ÿ‡ฝ", + "name": "flag: Mexico", + "keywords": [ + "flag", + "mexico" + ] + }, + { + "code": "1f1f2-1f1fe", + "char": "๐Ÿ‡ฒ๐Ÿ‡พ", + "name": "flag: Malaysia", + "keywords": [ + "flag", + "malaysia" + ] + }, + { + "code": "1f1f2-1f1ff", + "char": "๐Ÿ‡ฒ๐Ÿ‡ฟ", + "name": "flag: Mozambique", + "keywords": [ + "flag", + "mozambique" + ] + }, + { + "code": "1f1f3-1f1e6", + "char": "๐Ÿ‡ณ๐Ÿ‡ฆ", + "name": "flag: Namibia", + "keywords": [ + "flag", + "namibia" + ] + }, + { + "code": "1f1f3-1f1e8", + "char": "๐Ÿ‡ณ๐Ÿ‡จ", + "name": "flag: New Caledonia", + "keywords": [ + "flag", + "new caledonia", + "caledonia" + ] + }, + { + "code": "1f1f3-1f1ea", + "char": "๐Ÿ‡ณ๐Ÿ‡ช", + "name": "flag: Niger", + "keywords": [ + "flag", + "niger" + ] + }, + { + "code": "1f1f3-1f1eb", + "char": "๐Ÿ‡ณ๐Ÿ‡ซ", + "name": "flag: Norfolk Island", + "keywords": [ + "flag", + "island", + "norfolk island" + ] + }, + { + "code": "1f1f3-1f1ec", + "char": "๐Ÿ‡ณ๐Ÿ‡ฌ", + "name": "flag: Nigeria", + "keywords": [ + "flag", + "nigeria" + ] + }, + { + "code": "1f1f3-1f1ee", + "char": "๐Ÿ‡ณ๐Ÿ‡ฎ", + "name": "flag: Nicaragua", + "keywords": [ + "flag", + "nicaragua" + ] + }, + { + "code": "1f1f3-1f1f1", + "char": "๐Ÿ‡ณ๐Ÿ‡ฑ", + "name": "flag: Netherlands", + "keywords": [ + "flag", + "netherlands" + ] + }, + { + "code": "1f1f3-1f1f4", + "char": "๐Ÿ‡ณ๐Ÿ‡ด", + "name": "flag: Norway", + "keywords": [ + "flag", + "norway" + ] + }, + { + "code": "1f1f3-1f1f5", + "char": "๐Ÿ‡ณ๐Ÿ‡ต", + "name": "flag: Nepal", + "keywords": [ + "flag", + "nepal" + ] + }, + { + "code": "1f1f3-1f1f7", + "char": "๐Ÿ‡ณ๐Ÿ‡ท", + "name": "flag: Nauru", + "keywords": [ + "flag", + "nauru" + ] + }, + { + "code": "1f1f3-1f1fa", + "char": "๐Ÿ‡ณ๐Ÿ‡บ", + "name": "flag: Niue", + "keywords": [ + "flag", + "niue" + ] + }, + { + "code": "1f1f3-1f1ff", + "char": "๐Ÿ‡ณ๐Ÿ‡ฟ", + "name": "flag: New Zealand", + "keywords": [ + "flag", + "new zealand" + ] + }, + { + "code": "1f1f4-1f1f2", + "char": "๐Ÿ‡ด๐Ÿ‡ฒ", + "name": "flag: Oman", + "keywords": [ + "flag", + "oman" + ] + }, + { + "code": "1f1f5-1f1e6", + "char": "๐Ÿ‡ต๐Ÿ‡ฆ", + "name": "flag: Panama", + "keywords": [ + "flag", + "panama" + ] + }, + { + "code": "1f1f5-1f1ea", + "char": "๐Ÿ‡ต๐Ÿ‡ช", + "name": "flag: Peru", + "keywords": [ + "flag", + "peru" + ] + }, + { + "code": "1f1f5-1f1eb", + "char": "๐Ÿ‡ต๐Ÿ‡ซ", + "name": "flag: French Polynesia", + "keywords": [ + "flag", + "french polynesia", + "polynesia" + ] + }, + { + "code": "1f1f5-1f1ec", + "char": "๐Ÿ‡ต๐Ÿ‡ฌ", + "name": "flag: Papua New Guinea", + "keywords": [ + "flag", + "guinea", + "new", + "papua new guinea" + ] + }, + { + "code": "1f1f5-1f1ed", + "char": "๐Ÿ‡ต๐Ÿ‡ญ", + "name": "flag: Philippines", + "keywords": [ + "flag", + "philippines" + ] + }, + { + "code": "1f1f5-1f1f0", + "char": "๐Ÿ‡ต๐Ÿ‡ฐ", + "name": "flag: Pakistan", + "keywords": [ + "flag", + "pakistan" + ] + }, + { + "code": "1f1f5-1f1f1", + "char": "๐Ÿ‡ต๐Ÿ‡ฑ", + "name": "flag: Poland", + "keywords": [ + "flag", + "poland" + ] + }, + { + "code": "1f1f5-1f1f2", + "char": "๐Ÿ‡ต๐Ÿ‡ฒ", + "name": "flag: St. Pierre & Miquelon", + "keywords": [ + "flag", + "miquelon", + "pierre & miquelon", + "saint" + ] + }, + { + "code": "1f1f5-1f1f3", + "char": "๐Ÿ‡ต๐Ÿ‡ณ", + "name": "flag: Pitcairn Islands", + "keywords": [ + "flag", + "island", + "pitcairn islands" + ] + }, + { + "code": "1f1f5-1f1f7", + "char": "๐Ÿ‡ต๐Ÿ‡ท", + "name": "flag: Puerto Rico", + "keywords": [ + "flag", + "puerto rico" + ] + }, + { + "code": "1f1f5-1f1f8", + "char": "๐Ÿ‡ต๐Ÿ‡ธ", + "name": "flag: Palestinian Territories", + "keywords": [ + "flag", + "palestine Territories" + ] + }, + { + "code": "1f1f5-1f1f9", + "char": "๐Ÿ‡ต๐Ÿ‡น", + "name": "flag: Portugal", + "keywords": [ + "flag", + "portugal" + ] + }, + { + "code": "1f1f5-1f1fc", + "char": "๐Ÿ‡ต๐Ÿ‡ผ", + "name": "flag: Palau", + "keywords": [ + "flag", + "palau" + ] + }, + { + "code": "1f1f5-1f1fe", + "char": "๐Ÿ‡ต๐Ÿ‡พ", + "name": "flag: Paraguay", + "keywords": [ + "flag", + "paraguay" + ] + }, + { + "code": "1f1f6-1f1e6", + "char": "๐Ÿ‡ถ๐Ÿ‡ฆ", + "name": "flag: Qatar", + "keywords": [ + "flag", + "qatar" + ] + }, + { + "code": "1f1f7-1f1ea", + "char": "๐Ÿ‡ท๐Ÿ‡ช", + "name": "flag: Rรฉunion", + "keywords": [ + "flag", + "reunion", + "rรฉunion" + ] + }, + { + "code": "1f1f7-1f1f4", + "char": "๐Ÿ‡ท๐Ÿ‡ด", + "name": "flag: Romania", + "keywords": [ + "flag", + "romania" + ] + }, + { + "code": "1f1f7-1f1f8", + "char": "๐Ÿ‡ท๐Ÿ‡ธ", + "name": "flag: Serbia", + "keywords": [ + "flag", + "serbia" + ] + }, + { + "code": "1f1f7-1f1fa", + "char": "๐Ÿ‡ท๐Ÿ‡บ", + "name": "flag: Russia", + "keywords": [ + "flag", + "russia" + ] + }, + { + "code": "1f1f7-1f1fc", + "char": "๐Ÿ‡ท๐Ÿ‡ผ", + "name": "flag: Rwanda", + "keywords": [ + "flag", + "rwanda" + ] + }, + { + "code": "1f1f8-1f1e6", + "char": "๐Ÿ‡ธ๐Ÿ‡ฆ", + "name": "flag: Saudi Arabia", + "keywords": [ + "flag", + "saudi arabia" + ] + }, + { + "code": "1f1f8-1f1e7", + "char": "๐Ÿ‡ธ๐Ÿ‡ง", + "name": "flag: Solomon Islands", + "keywords": [ + "flag", + "island", + "solomon islands" + ] + }, + { + "code": "1f1f8-1f1e8", + "char": "๐Ÿ‡ธ๐Ÿ‡จ", + "name": "flag: Seychelles", + "keywords": [ + "flag", + "seychelles" + ] + }, + { + "code": "1f1f8-1f1e9", + "char": "๐Ÿ‡ธ๐Ÿ‡ฉ", + "name": "flag: Sudan", + "keywords": [ + "flag", + "sudan" + ] + }, + { + "code": "1f1f8-1f1ea", + "char": "๐Ÿ‡ธ๐Ÿ‡ช", + "name": "flag: Sweden", + "keywords": [ + "flag", + "sweden" + ] + }, + { + "code": "1f1f8-1f1ec", + "char": "๐Ÿ‡ธ๐Ÿ‡ฌ", + "name": "flag: Singapore", + "keywords": [ + "flag", + "singapore" + ] + }, + { + "code": "1f1f8-1f1ed", + "char": "๐Ÿ‡ธ๐Ÿ‡ญ", + "name": "flag: St. Helena", + "keywords": [ + "flag", + "helena", + "saint" + ] + }, + { + "code": "1f1f8-1f1ee", + "char": "๐Ÿ‡ธ๐Ÿ‡ฎ", + "name": "flag: Slovenia", + "keywords": [ + "flag", + "slovenia" + ] + }, + { + "code": "1f1f8-1f1ef", + "char": "๐Ÿ‡ธ๐Ÿ‡ฏ", + "name": "flag: Svalbard & Jan Mayen", + "keywords": [ + "flag", + "jan mayen", + "svalbard & jan mayen" + ] + }, + { + "code": "1f1f8-1f1f0", + "char": "๐Ÿ‡ธ๐Ÿ‡ฐ", + "name": "flag: Slovakia", + "keywords": [ + "flag", + "slovakia" + ] + }, + { + "code": "1f1f8-1f1f1", + "char": "๐Ÿ‡ธ๐Ÿ‡ฑ", + "name": "flag: Sierra Leone", + "keywords": [ + "flag", + "sierra leone" + ] + }, + { + "code": "1f1f8-1f1f2", + "char": "๐Ÿ‡ธ๐Ÿ‡ฒ", + "name": "flag: San Marino", + "keywords": [ + "flag", + "san marino" + ] + }, + { + "code": "1f1f8-1f1f3", + "char": "๐Ÿ‡ธ๐Ÿ‡ณ", + "name": "flag: Senegal", + "keywords": [ + "flag", + "senegal" + ] + }, + { + "code": "1f1f8-1f1f4", + "char": "๐Ÿ‡ธ๐Ÿ‡ด", + "name": "flag: Somalia", + "keywords": [ + "flag", + "somalia" + ] + }, + { + "code": "1f1f8-1f1f7", + "char": "๐Ÿ‡ธ๐Ÿ‡ท", + "name": "flag: Suriname", + "keywords": [ + "flag", + "suriname" + ] + }, + { + "code": "1f1f8-1f1f8", + "char": "๐Ÿ‡ธ๐Ÿ‡ธ", + "name": "flag: South Sudan", + "keywords": [ + "flag", + "south sudan", + "sudan" + ] + }, + { + "code": "1f1f8-1f1f9", + "char": "๐Ÿ‡ธ๐Ÿ‡น", + "name": "flag: Sรฃo Tomรฉ & Prรญncipe", + "keywords": [ + "flag", + "principe", + "prรญncipe", + "sao tome", + "sรฃo tomรฉ" + ] + }, + { + "code": "1f1f8-1f1fb", + "char": "๐Ÿ‡ธ๐Ÿ‡ป", + "name": "flag: El Salvador", + "keywords": [ + "el salvador", + "flag" + ] + }, + { + "code": "1f1f8-1f1fd", + "char": "๐Ÿ‡ธ๐Ÿ‡ฝ", + "name": "flag: Sint Maarten", + "keywords": [ + "flag", + "maarten", + "sint" + ] + }, + { + "code": "1f1f8-1f1fe", + "char": "๐Ÿ‡ธ๐Ÿ‡พ", + "name": "flag: Syria", + "keywords": [ + "flag", + "syria" + ] + }, + { + "code": "1f1f8-1f1ff", + "char": "๐Ÿ‡ธ๐Ÿ‡ฟ", + "name": "flag: Eswatini", + "keywords": [ + "flag", + "eswatini" + ] + }, + { + "code": "1f1f9-1f1e6", + "char": "๐Ÿ‡น๐Ÿ‡ฆ", + "name": "flag: Tristan da Cunha", + "keywords": [ + "flag", + "tristan da cunha" + ] + }, + { + "code": "1f1f9-1f1e8", + "char": "๐Ÿ‡น๐Ÿ‡จ", + "name": "flag: Turks & Caicos Islands", + "keywords": [ + "caicos", + "flag", + "island", + "turks & caicos islands" + ] + }, + { + "code": "1f1f9-1f1e9", + "char": "๐Ÿ‡น๐Ÿ‡ฉ", + "name": "flag: Chad", + "keywords": [ + "chad", + "flag" + ] + }, + { + "code": "1f1f9-1f1eb", + "char": "๐Ÿ‡น๐Ÿ‡ซ", + "name": "flag: French Southern Territories", + "keywords": [ + "antarctic", + "flag", + "french southern Territories" + ] + }, + { + "code": "1f1f9-1f1ec", + "char": "๐Ÿ‡น๐Ÿ‡ฌ", + "name": "flag: Togo", + "keywords": [ + "flag", + "togo" + ] + }, + { + "code": "1f1f9-1f1ed", + "char": "๐Ÿ‡น๐Ÿ‡ญ", + "name": "flag: Thailand", + "keywords": [ + "flag", + "thailand" + ] + }, + { + "code": "1f1f9-1f1ef", + "char": "๐Ÿ‡น๐Ÿ‡ฏ", + "name": "flag: Tajikistan", + "keywords": [ + "flag", + "tajikistan" + ] + }, + { + "code": "1f1f9-1f1f0", + "char": "๐Ÿ‡น๐Ÿ‡ฐ", + "name": "flag: Tokelau", + "keywords": [ + "flag", + "tokelau" + ] + }, + { + "code": "1f1f9-1f1f1", + "char": "๐Ÿ‡น๐Ÿ‡ฑ", + "name": "flag: Timor-Leste", + "keywords": [ + "east timor", + "flag", + "timor-leste" + ] + }, + { + "code": "1f1f9-1f1f2", + "char": "๐Ÿ‡น๐Ÿ‡ฒ", + "name": "flag: Turkmenistan", + "keywords": [ + "flag", + "turkmenistan" + ] + }, + { + "code": "1f1f9-1f1f3", + "char": "๐Ÿ‡น๐Ÿ‡ณ", + "name": "flag: Tunisia", + "keywords": [ + "flag", + "tunisia" + ] + }, + { + "code": "1f1f9-1f1f4", + "char": "๐Ÿ‡น๐Ÿ‡ด", + "name": "flag: Tonga", + "keywords": [ + "flag", + "tonga" + ] + }, + { + "code": "1f1f9-1f1f7", + "char": "๐Ÿ‡น๐Ÿ‡ท", + "name": "flag: Turkey", + "keywords": [ + "flag", + "turkey" + ] + }, + { + "code": "1f1f9-1f1f9", + "char": "๐Ÿ‡น๐Ÿ‡น", + "name": "flag: Trinidad & Tobago", + "keywords": [ + "flag", + "tobago", + "trinidad & tobago" + ] + }, + { + "code": "1f1f9-1f1fb", + "char": "๐Ÿ‡น๐Ÿ‡ป", + "name": "flag: Tuvalu", + "keywords": [ + "flag", + "tuvalu" + ] + }, + { + "code": "1f1f9-1f1fc", + "char": "๐Ÿ‡น๐Ÿ‡ผ", + "name": "flag: Taiwan", + "keywords": [ + "china", + "flag", + "taiwan" + ] + }, + { + "code": "1f1f9-1f1ff", + "char": "๐Ÿ‡น๐Ÿ‡ฟ", + "name": "flag: Tanzania", + "keywords": [ + "flag", + "tanzania" + ] + }, + { + "code": "1f1fa-1f1e6", + "char": "๐Ÿ‡บ๐Ÿ‡ฆ", + "name": "flag: Ukraine", + "keywords": [ + "flag", + "ukraine" + ] + }, + { + "code": "1f1fa-1f1ec", + "char": "๐Ÿ‡บ๐Ÿ‡ฌ", + "name": "flag: Uganda", + "keywords": [ + "flag", + "uganda" + ] + }, + { + "code": "1f1fa-1f1f2", + "char": "๐Ÿ‡บ๐Ÿ‡ฒ", + "name": "flag: U.S. Outlying Islands", + "keywords": [ + "america", + "flag", + "island", + "minor outlying", + "united", + "united states", + "us", + "usa", + "outlying islands" + ] + }, + { + "code": "1f1fa-1f1f3", + "char": "๐Ÿ‡บ๐Ÿ‡ณ", + "name": "flag: United Nations", + "keywords": [ + "united nations" + ] + }, + { + "code": "1f1fa-1f1f8", + "char": "๐Ÿ‡บ๐Ÿ‡ธ", + "name": "flag: United States", + "keywords": [ + "america", + "flag", + "stars and stripes", + "united states" + ] + }, + { + "code": "1f1fa-1f1fe", + "char": "๐Ÿ‡บ๐Ÿ‡พ", + "name": "flag: Uruguay", + "keywords": [ + "flag", + "uruguay" + ] + }, + { + "code": "1f1fa-1f1ff", + "char": "๐Ÿ‡บ๐Ÿ‡ฟ", + "name": "flag: Uzbekistan", + "keywords": [ + "flag", + "uzbekistan" + ] + }, + { + "code": "1f1fb-1f1e6", + "char": "๐Ÿ‡ป๐Ÿ‡ฆ", + "name": "flag: Vatican City", + "keywords": [ + "flag", + "vatican city" + ] + }, + { + "code": "1f1fb-1f1e8", + "char": "๐Ÿ‡ป๐Ÿ‡จ", + "name": "flag: St. Vincent & Grenadines", + "keywords": [ + "flag", + "grenadines", + "saint", + "vincent & grenadines" + ] + }, + { + "code": "1f1fb-1f1ea", + "char": "๐Ÿ‡ป๐Ÿ‡ช", + "name": "flag: Venezuela", + "keywords": [ + "flag", + "venezuela" + ] + }, + { + "code": "1f1fb-1f1ec", + "char": "๐Ÿ‡ป๐Ÿ‡ฌ", + "name": "flag: British Virgin Islands", + "keywords": [ + "british virgin islands", + "flag", + "island", + "virgin" + ] + }, + { + "code": "1f1fb-1f1ee", + "char": "๐Ÿ‡ป๐Ÿ‡ฎ", + "name": "flag: U.S. Virgin Islands", + "keywords": [ + "america", + "american", + "flag", + "island", + "united", + "united states", + "us", + "usa", + "virgin islands" + ] + }, + { + "code": "1f1fb-1f1f3", + "char": "๐Ÿ‡ป๐Ÿ‡ณ", + "name": "flag: Vietnam", + "keywords": [ + "flag", + "vietnam" + ] + }, + { + "code": "1f1fb-1f1fa", + "char": "๐Ÿ‡ป๐Ÿ‡บ", + "name": "flag: Vanuatu", + "keywords": [ + "flag", + "vanuatu" + ] + }, + { + "code": "1f1fc-1f1eb", + "char": "๐Ÿ‡ผ๐Ÿ‡ซ", + "name": "flag: Wallis & Futuna", + "keywords": [ + "flag", + "futuna", + "wallis & futuna" + ] + }, + { + "code": "1f1fc-1f1f8", + "char": "๐Ÿ‡ผ๐Ÿ‡ธ", + "name": "flag: Samoa", + "keywords": [ + "flag", + "samoa" + ] + }, + { + "code": "1f1fd-1f1f0", + "char": "๐Ÿ‡ฝ๐Ÿ‡ฐ", + "name": "flag: Kosovo", + "keywords": [ + "flag", + "kosovo" + ] + }, + { + "code": "1f1fe-1f1ea", + "char": "๐Ÿ‡พ๐Ÿ‡ช", + "name": "flag: Yemen", + "keywords": [ + "flag", + "yemen" + ] + }, + { + "code": "1f1fe-1f1f9", + "char": "๐Ÿ‡พ๐Ÿ‡น", + "name": "flag: Mayotte", + "keywords": [ + "flag", + "mayotte" + ] + }, + { + "code": "1f1ff-1f1e6", + "char": "๐Ÿ‡ฟ๐Ÿ‡ฆ", + "name": "flag: South Africa", + "keywords": [ + "flag", + "south africa", + "africa" + ] + }, + { + "code": "1f1ff-1f1f2", + "char": "๐Ÿ‡ฟ๐Ÿ‡ฒ", + "name": "flag: Zambia", + "keywords": [ + "flag", + "zambia" + ] + }, + { + "code": "1f1ff-1f1fc", + "char": "๐Ÿ‡ฟ๐Ÿ‡ผ", + "name": "flag: Zimbabwe", + "keywords": [ + "flag", + "zimbabwe" + ] + }, + { + "code": "1f3f4-e0067-e0062-e0065-e006e-e0067-e007f", + "char": "๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ", + "name": "flag: England", + "keywords": [ + "england", + "flag" + ] + }, + { + "code": "1f3f4-e0067-e0062-e0073-e0063-e0074-e007f", + "char": "๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ", + "name": "flag: Scotland", + "keywords": [ + "scotland", + "flag" + ] + }, + { + "code": "1f3f4-e0067-e0062-e0077-e006c-e0073-e007f", + "char": "๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ", + "name": "flag: Wales", + "keywords": [ + "wales", + "flag" + ] + } + ] +} diff --git a/Linphone/data/emoji/emojiSvgs/1f004.svg b/Linphone/data/emoji/emojiSvgs/1f004.svg new file mode 100644 index 00000000..f4fa5844 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f004.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f0cf.svg b/Linphone/data/emoji/emojiSvgs/1f0cf.svg new file mode 100644 index 00000000..0d05191c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f0cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f170.svg b/Linphone/data/emoji/emojiSvgs/1f170.svg new file mode 100644 index 00000000..5555b84a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f170.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f171.svg b/Linphone/data/emoji/emojiSvgs/1f171.svg new file mode 100644 index 00000000..f77618af --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f171.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f17e.svg b/Linphone/data/emoji/emojiSvgs/1f17e.svg new file mode 100644 index 00000000..62f2f6d3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f17e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f17f.svg b/Linphone/data/emoji/emojiSvgs/1f17f.svg new file mode 100644 index 00000000..8a494b8f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f17f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f18e.svg b/Linphone/data/emoji/emojiSvgs/1f18e.svg new file mode 100644 index 00000000..d19a2a43 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f18e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f191.svg b/Linphone/data/emoji/emojiSvgs/1f191.svg new file mode 100644 index 00000000..eaebb558 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f191.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f192.svg b/Linphone/data/emoji/emojiSvgs/1f192.svg new file mode 100644 index 00000000..3207dcf6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f192.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f193.svg b/Linphone/data/emoji/emojiSvgs/1f193.svg new file mode 100644 index 00000000..2dc2d6aa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f193.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f194.svg b/Linphone/data/emoji/emojiSvgs/1f194.svg new file mode 100644 index 00000000..57962599 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f194.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f195.svg b/Linphone/data/emoji/emojiSvgs/1f195.svg new file mode 100644 index 00000000..dcf5702a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f195.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f196.svg b/Linphone/data/emoji/emojiSvgs/1f196.svg new file mode 100644 index 00000000..ccd7c36d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f196.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f197.svg b/Linphone/data/emoji/emojiSvgs/1f197.svg new file mode 100644 index 00000000..1c42dae3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f197.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f198.svg b/Linphone/data/emoji/emojiSvgs/1f198.svg new file mode 100644 index 00000000..6fe35a17 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f198.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f199.svg b/Linphone/data/emoji/emojiSvgs/1f199.svg new file mode 100644 index 00000000..19ab1844 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f199.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f19a.svg b/Linphone/data/emoji/emojiSvgs/1f19a.svg new file mode 100644 index 00000000..2d36646a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f19a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1e8.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1e8.svg new file mode 100644 index 00000000..53f90dc4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1e9.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1e9.svg new file mode 100644 index 00000000..be105947 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1ea.svg new file mode 100644 index 00000000..be8e114a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1eb.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1eb.svg new file mode 100644 index 00000000..769efcad --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1ec.svg new file mode 100644 index 00000000..27166172 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1ee.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1ee.svg new file mode 100644 index 00000000..6a91dd9d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f1.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f1.svg new file mode 100644 index 00000000..2c8655dd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f2.svg new file mode 100644 index 00000000..0a966ab8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f4.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f4.svg new file mode 100644 index 00000000..65803b64 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f6.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f6.svg new file mode 100644 index 00000000..fd29680f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f7.svg new file mode 100644 index 00000000..e8e60efd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f8.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f8.svg new file mode 100644 index 00000000..8b275322 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f9.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f9.svg new file mode 100644 index 00000000..bfe1ec7f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1fa.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1fa.svg new file mode 100644 index 00000000..989da76d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1fc.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1fc.svg new file mode 100644 index 00000000..f3839512 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1fd.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1fd.svg new file mode 100644 index 00000000..03bc680c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6-1f1ff.svg b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1ff.svg new file mode 100644 index 00000000..b5848545 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1e6.svg new file mode 100644 index 00000000..d3753d4a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1e6.svg new file mode 100644 index 00000000..bbcd3b5e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1e7.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1e7.svg new file mode 100644 index 00000000..7f9e8c9d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1e9.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1e9.svg new file mode 100644 index 00000000..6edc8443 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ea.svg new file mode 100644 index 00000000..e9561943 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1eb.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1eb.svg new file mode 100644 index 00000000..8bceec74 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ec.svg new file mode 100644 index 00000000..6e81fba5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ed.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ed.svg new file mode 100644 index 00000000..73de5829 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ee.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ee.svg new file mode 100644 index 00000000..e53644c5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ef.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ef.svg new file mode 100644 index 00000000..133d7112 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f1.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f1.svg new file mode 100644 index 00000000..9d4904dd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f2.svg new file mode 100644 index 00000000..5e7b7f69 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f3.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f3.svg new file mode 100644 index 00000000..3c20edb2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f4.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f4.svg new file mode 100644 index 00000000..ad0a8c9a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f6.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f6.svg new file mode 100644 index 00000000..bde49217 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f7.svg new file mode 100644 index 00000000..956e39d0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f8.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f8.svg new file mode 100644 index 00000000..a75f68bb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f9.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f9.svg new file mode 100644 index 00000000..e822f94f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1fb.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1fb.svg new file mode 100644 index 00000000..3d104a61 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1fc.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1fc.svg new file mode 100644 index 00000000..5edeb5d5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1fe.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1fe.svg new file mode 100644 index 00000000..3fef573b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ff.svg b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ff.svg new file mode 100644 index 00000000..6f43e4a7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e7.svg b/Linphone/data/emoji/emojiSvgs/1f1e7.svg new file mode 100644 index 00000000..52dcf7e9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1e6.svg new file mode 100644 index 00000000..d9c386db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1e8.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1e8.svg new file mode 100644 index 00000000..ce130d70 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1e9.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1e9.svg new file mode 100644 index 00000000..d1b15c99 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1eb.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1eb.svg new file mode 100644 index 00000000..72166cbe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1ec.svg new file mode 100644 index 00000000..3d466e3d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1ed.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1ed.svg new file mode 100644 index 00000000..741b5214 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1ee.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1ee.svg new file mode 100644 index 00000000..bd2c3e06 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f0.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f0.svg new file mode 100644 index 00000000..04e03444 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f1.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f1.svg new file mode 100644 index 00000000..52b3a007 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f2.svg new file mode 100644 index 00000000..7da7b66a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f3.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f3.svg new file mode 100644 index 00000000..c10116d0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f4.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f4.svg new file mode 100644 index 00000000..dc825d24 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f5.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f5.svg new file mode 100644 index 00000000..4eafe7aa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f7.svg new file mode 100644 index 00000000..acecc895 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fa.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fa.svg new file mode 100644 index 00000000..13b63701 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fb.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fb.svg new file mode 100644 index 00000000..9b2cc18d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fc.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fc.svg new file mode 100644 index 00000000..c53d09f7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fd.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fd.svg new file mode 100644 index 00000000..6a322f57 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fe.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fe.svg new file mode 100644 index 00000000..19bead4d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8-1f1ff.svg b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1ff.svg new file mode 100644 index 00000000..fd3b4706 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e8.svg b/Linphone/data/emoji/emojiSvgs/1f1e8.svg new file mode 100644 index 00000000..80b6405c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e9-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1ea.svg new file mode 100644 index 00000000..10a53999 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e9-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1ec.svg new file mode 100644 index 00000000..565a7aa4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e9-1f1ef.svg b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1ef.svg new file mode 100644 index 00000000..42cbb243 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e9-1f1f0.svg b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1f0.svg new file mode 100644 index 00000000..5ab629ba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e9-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1f2.svg new file mode 100644 index 00000000..750424f7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e9-1f1f4.svg b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1f4.svg new file mode 100644 index 00000000..c627c34e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e9-1f1ff.svg b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1ff.svg new file mode 100644 index 00000000..c29a7e29 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e9-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1e9.svg b/Linphone/data/emoji/emojiSvgs/1f1e9.svg new file mode 100644 index 00000000..24d64af3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ea-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1e6.svg new file mode 100644 index 00000000..d1fd565c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ea-1f1e8.svg b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1e8.svg new file mode 100644 index 00000000..c035be7a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ea-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1ea.svg new file mode 100644 index 00000000..47a55895 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ea-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1ec.svg new file mode 100644 index 00000000..2034a3e5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ea-1f1ed.svg b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1ed.svg new file mode 100644 index 00000000..9b8dc5a6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ea-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1f7.svg new file mode 100644 index 00000000..8e1e510f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ea-1f1f8.svg b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1f8.svg new file mode 100644 index 00000000..d1fd565c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ea-1f1f9.svg b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1f9.svg new file mode 100644 index 00000000..762cc1fb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ea-1f1fa.svg b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1fa.svg new file mode 100644 index 00000000..045024a3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ea-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1ea.svg new file mode 100644 index 00000000..352b75e7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1eb-1f1ee.svg b/Linphone/data/emoji/emojiSvgs/1f1eb-1f1ee.svg new file mode 100644 index 00000000..e07328ed --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1eb-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1eb-1f1ef.svg b/Linphone/data/emoji/emojiSvgs/1f1eb-1f1ef.svg new file mode 100644 index 00000000..190134b5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1eb-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1eb-1f1f0.svg b/Linphone/data/emoji/emojiSvgs/1f1eb-1f1f0.svg new file mode 100644 index 00000000..0091bc78 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1eb-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1eb-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1eb-1f1f2.svg new file mode 100644 index 00000000..b49556b5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1eb-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1eb-1f1f4.svg b/Linphone/data/emoji/emojiSvgs/1f1eb-1f1f4.svg new file mode 100644 index 00000000..93a12728 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1eb-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1eb-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1eb-1f1f7.svg new file mode 100644 index 00000000..4eafe7aa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1eb-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1eb.svg b/Linphone/data/emoji/emojiSvgs/1f1eb.svg new file mode 100644 index 00000000..22f9d3d7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1e6.svg new file mode 100644 index 00000000..a8c6fa41 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1e7.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1e7.svg new file mode 100644 index 00000000..21b97e9f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1e9.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1e9.svg new file mode 100644 index 00000000..e4f37f95 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1ea.svg new file mode 100644 index 00000000..8c2bd5a6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1eb.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1eb.svg new file mode 100644 index 00000000..2f10cee3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1ec.svg new file mode 100644 index 00000000..84f60439 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1ed.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1ed.svg new file mode 100644 index 00000000..33302188 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1ee.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1ee.svg new file mode 100644 index 00000000..432a7272 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f1.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f1.svg new file mode 100644 index 00000000..8a2ba3e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f2.svg new file mode 100644 index 00000000..383cf9d3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f3.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f3.svg new file mode 100644 index 00000000..16f4a902 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f5.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f5.svg new file mode 100644 index 00000000..ca9e4c6a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f6.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f6.svg new file mode 100644 index 00000000..d4e7119f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f7.svg new file mode 100644 index 00000000..74d842d6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f8.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f8.svg new file mode 100644 index 00000000..d8b1e5fe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f9.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f9.svg new file mode 100644 index 00000000..fea623c9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1fa.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1fa.svg new file mode 100644 index 00000000..2098ecca --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1fc.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1fc.svg new file mode 100644 index 00000000..6e01b9e2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec-1f1fe.svg b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1fe.svg new file mode 100644 index 00000000..1edc6ef4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1ec.svg new file mode 100644 index 00000000..3d7d6206 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f0.svg b/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f0.svg new file mode 100644 index 00000000..ef5ca3bc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f2.svg new file mode 100644 index 00000000..989da76d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f3.svg b/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f3.svg new file mode 100644 index 00000000..298ec95a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f7.svg new file mode 100644 index 00000000..7b8740c9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f9.svg b/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f9.svg new file mode 100644 index 00000000..8ccca428 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ed-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ed-1f1fa.svg b/Linphone/data/emoji/emojiSvgs/1f1ed-1f1fa.svg new file mode 100644 index 00000000..206baa15 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ed-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ed.svg b/Linphone/data/emoji/emojiSvgs/1f1ed.svg new file mode 100644 index 00000000..20e48f86 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ee-1f1e8.svg b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1e8.svg new file mode 100644 index 00000000..46b09497 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ee-1f1e9.svg b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1e9.svg new file mode 100644 index 00000000..de31273f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ee-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1ea.svg new file mode 100644 index 00000000..3c502571 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f1.svg b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f1.svg new file mode 100644 index 00000000..5cf32415 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f2.svg new file mode 100644 index 00000000..7fc9d465 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f3.svg b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f3.svg new file mode 100644 index 00000000..7af1dafe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f4.svg b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f4.svg new file mode 100644 index 00000000..565a7aa4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f6.svg b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f6.svg new file mode 100644 index 00000000..06cfe319 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f7.svg new file mode 100644 index 00000000..e8ae7b17 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f8.svg b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f8.svg new file mode 100644 index 00000000..c8e918c3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f9.svg b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f9.svg new file mode 100644 index 00000000..6c380176 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ee-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ee.svg b/Linphone/data/emoji/emojiSvgs/1f1ee.svg new file mode 100644 index 00000000..18b634ca --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ef-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1ef-1f1ea.svg new file mode 100644 index 00000000..a17c379d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ef-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ef-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1ef-1f1f2.svg new file mode 100644 index 00000000..dd82d4fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ef-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ef-1f1f4.svg b/Linphone/data/emoji/emojiSvgs/1f1ef-1f1f4.svg new file mode 100644 index 00000000..40710a56 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ef-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ef-1f1f5.svg b/Linphone/data/emoji/emojiSvgs/1f1ef-1f1f5.svg new file mode 100644 index 00000000..3a724e9f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ef-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ef.svg b/Linphone/data/emoji/emojiSvgs/1f1ef.svg new file mode 100644 index 00000000..e0a80723 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ea.svg new file mode 100644 index 00000000..5bee37fd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ec.svg new file mode 100644 index 00000000..2616d9e0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ed.svg b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ed.svg new file mode 100644 index 00000000..54f6e904 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ee.svg b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ee.svg new file mode 100644 index 00000000..233cce8d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f0-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1f2.svg new file mode 100644 index 00000000..91c12b80 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f0-1f1f3.svg b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1f3.svg new file mode 100644 index 00000000..461e0f26 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f0-1f1f5.svg b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1f5.svg new file mode 100644 index 00000000..d530523c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f0-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1f7.svg new file mode 100644 index 00000000..7b5ee233 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f0-1f1fc.svg b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1fc.svg new file mode 100644 index 00000000..db949b28 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f0-1f1fe.svg b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1fe.svg new file mode 100644 index 00000000..57323f89 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ff.svg b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ff.svg new file mode 100644 index 00000000..d2101ab5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f0-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f0.svg b/Linphone/data/emoji/emojiSvgs/1f1f0.svg new file mode 100644 index 00000000..21484bf6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f1-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1e6.svg new file mode 100644 index 00000000..0ea005db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f1-1f1e7.svg b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1e7.svg new file mode 100644 index 00000000..4271b73a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f1-1f1e8.svg b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1e8.svg new file mode 100644 index 00000000..12b2237e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f1-1f1ee.svg b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1ee.svg new file mode 100644 index 00000000..9e474bc1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f1-1f1f0.svg b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1f0.svg new file mode 100644 index 00000000..a2fe8143 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f1-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1f7.svg new file mode 100644 index 00000000..dd4a1e47 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f1-1f1f8.svg b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1f8.svg new file mode 100644 index 00000000..ec06e4fc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f1-1f1f9.svg b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1f9.svg new file mode 100644 index 00000000..5fcfd8bf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f1-1f1fa.svg b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1fa.svg new file mode 100644 index 00000000..e66c904e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f1-1f1fb.svg b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1fb.svg new file mode 100644 index 00000000..f5f39223 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f1-1f1fe.svg b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1fe.svg new file mode 100644 index 00000000..c6c12ed6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f1-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f1.svg b/Linphone/data/emoji/emojiSvgs/1f1f1.svg new file mode 100644 index 00000000..d76ecd5d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1e6.svg new file mode 100644 index 00000000..d6d689a3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1e8.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1e8.svg new file mode 100644 index 00000000..8604a1c4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1e9.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1e9.svg new file mode 100644 index 00000000..eb2d4a20 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1ea.svg new file mode 100644 index 00000000..47c5b2e5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1eb.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1eb.svg new file mode 100644 index 00000000..4eafe7aa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1ec.svg new file mode 100644 index 00000000..becf2f46 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1ed.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1ed.svg new file mode 100644 index 00000000..6774f9b3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f0.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f0.svg new file mode 100644 index 00000000..371b2358 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f1.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f1.svg new file mode 100644 index 00000000..3a522a0f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f2.svg new file mode 100644 index 00000000..69db533a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f3.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f3.svg new file mode 100644 index 00000000..b9635cf7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f4.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f4.svg new file mode 100644 index 00000000..790900e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f5.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f5.svg new file mode 100644 index 00000000..f0a5fb45 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f6.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f6.svg new file mode 100644 index 00000000..f7053092 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f7.svg new file mode 100644 index 00000000..8335c8b5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f8.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f8.svg new file mode 100644 index 00000000..04a1cc1e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f9.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f9.svg new file mode 100644 index 00000000..55381021 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fa.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fa.svg new file mode 100644 index 00000000..6c249812 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fb.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fb.svg new file mode 100644 index 00000000..b57be9c6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fc.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fc.svg new file mode 100644 index 00000000..9b8ddf52 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fd.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fd.svg new file mode 100644 index 00000000..93d54c46 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fe.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fe.svg new file mode 100644 index 00000000..0480330c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2-1f1ff.svg b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1ff.svg new file mode 100644 index 00000000..cfa95772 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1f2.svg new file mode 100644 index 00000000..cc6f136e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f3-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1e6.svg new file mode 100644 index 00000000..d2a79fd2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f3-1f1e8.svg b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1e8.svg new file mode 100644 index 00000000..e5dff934 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f3-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1ea.svg new file mode 100644 index 00000000..53f25f50 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f3-1f1eb.svg b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1eb.svg new file mode 100644 index 00000000..990687f0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f3-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1ec.svg new file mode 100644 index 00000000..6c6e31ca --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f3-1f1ee.svg b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1ee.svg new file mode 100644 index 00000000..990868aa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f3-1f1f1.svg b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1f1.svg new file mode 100644 index 00000000..65e8be9a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f3-1f1f4.svg b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1f4.svg new file mode 100644 index 00000000..4f5260a6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f3-1f1f5.svg b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1f5.svg new file mode 100644 index 00000000..5e5faaf2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f3-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1f7.svg new file mode 100644 index 00000000..72485e70 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f3-1f1fa.svg b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1fa.svg new file mode 100644 index 00000000..dd50901a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f3-1f1ff.svg b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1ff.svg new file mode 100644 index 00000000..956a9d21 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f3-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f3.svg b/Linphone/data/emoji/emojiSvgs/1f1f3.svg new file mode 100644 index 00000000..f8d0bbd5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f4-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1f4-1f1f2.svg new file mode 100644 index 00000000..29af8258 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f4-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f4.svg b/Linphone/data/emoji/emojiSvgs/1f1f4.svg new file mode 100644 index 00000000..9a56c51b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1e6.svg new file mode 100644 index 00000000..4fc55f5b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1ea.svg new file mode 100644 index 00000000..fc93b299 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1eb.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1eb.svg new file mode 100644 index 00000000..333c6d0a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1ec.svg new file mode 100644 index 00000000..2d20ed8e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1ed.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1ed.svg new file mode 100644 index 00000000..e9f011d3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f0.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f0.svg new file mode 100644 index 00000000..a718df6c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f1.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f1.svg new file mode 100644 index 00000000..8169875a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f2.svg new file mode 100644 index 00000000..dc55c02f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f3.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f3.svg new file mode 100644 index 00000000..234f53f4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f7.svg new file mode 100644 index 00000000..f4c2ace3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f8.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f8.svg new file mode 100644 index 00000000..6ce8ec76 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f9.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f9.svg new file mode 100644 index 00000000..78b29a89 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1fc.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1fc.svg new file mode 100644 index 00000000..043f7a51 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5-1f1fe.svg b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1fe.svg new file mode 100644 index 00000000..c8e83dc3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f5.svg b/Linphone/data/emoji/emojiSvgs/1f1f5.svg new file mode 100644 index 00000000..90d45e85 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f6-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1f6-1f1e6.svg new file mode 100644 index 00000000..f3e91d04 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f6-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f6.svg b/Linphone/data/emoji/emojiSvgs/1f1f6.svg new file mode 100644 index 00000000..e202fc22 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f7-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1f7-1f1ea.svg new file mode 100644 index 00000000..ab1399fc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f7-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f7-1f1f4.svg b/Linphone/data/emoji/emojiSvgs/1f1f7-1f1f4.svg new file mode 100644 index 00000000..33ac6edf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f7-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f7-1f1f8.svg b/Linphone/data/emoji/emojiSvgs/1f1f7-1f1f8.svg new file mode 100644 index 00000000..5c6c69e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f7-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f7-1f1fa.svg b/Linphone/data/emoji/emojiSvgs/1f1f7-1f1fa.svg new file mode 100644 index 00000000..46f74d59 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f7-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f7-1f1fc.svg b/Linphone/data/emoji/emojiSvgs/1f1f7-1f1fc.svg new file mode 100644 index 00000000..6175c02f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f7-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1f7.svg new file mode 100644 index 00000000..8d72d991 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1e6.svg new file mode 100644 index 00000000..d0d95800 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1e7.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1e7.svg new file mode 100644 index 00000000..a55ff606 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1e8.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1e8.svg new file mode 100644 index 00000000..40e42eaa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1e9.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1e9.svg new file mode 100644 index 00000000..ddb60bae --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ea.svg new file mode 100644 index 00000000..a039dc2d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ec.svg new file mode 100644 index 00000000..199e54e1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ed.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ed.svg new file mode 100644 index 00000000..57d004da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ee.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ee.svg new file mode 100644 index 00000000..e25c04c8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ef.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ef.svg new file mode 100644 index 00000000..4f5260a6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f0.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f0.svg new file mode 100644 index 00000000..c4f7cafd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f1.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f1.svg new file mode 100644 index 00000000..b08dd1d7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f2.svg new file mode 100644 index 00000000..b53d00db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f3.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f3.svg new file mode 100644 index 00000000..c2334722 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f4.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f4.svg new file mode 100644 index 00000000..293dd348 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f7.svg new file mode 100644 index 00000000..c483fb95 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f8.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f8.svg new file mode 100644 index 00000000..0aa63d75 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f9.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f9.svg new file mode 100644 index 00000000..f2bb52a3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1fb.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1fb.svg new file mode 100644 index 00000000..873310c0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1fd.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1fd.svg new file mode 100644 index 00000000..20472431 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1fe.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1fe.svg new file mode 100644 index 00000000..5e32d2cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ff.svg b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ff.svg new file mode 100644 index 00000000..cb7f84a8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f8.svg b/Linphone/data/emoji/emojiSvgs/1f1f8.svg new file mode 100644 index 00000000..e596113c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1e6.svg new file mode 100644 index 00000000..547fa056 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1e8.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1e8.svg new file mode 100644 index 00000000..3c61bc79 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1e9.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1e9.svg new file mode 100644 index 00000000..d106ba84 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1eb.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1eb.svg new file mode 100644 index 00000000..cf4bfacf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1ec.svg new file mode 100644 index 00000000..4a05a303 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1ed.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1ed.svg new file mode 100644 index 00000000..ff2a66f9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1ef.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1ef.svg new file mode 100644 index 00000000..6045f465 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f0.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f0.svg new file mode 100644 index 00000000..bfa93625 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f1.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f1.svg new file mode 100644 index 00000000..6030072a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f2.svg new file mode 100644 index 00000000..a57c35cc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f3.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f3.svg new file mode 100644 index 00000000..c13e7302 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f4.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f4.svg new file mode 100644 index 00000000..20a9555b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f7.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f7.svg new file mode 100644 index 00000000..861da57e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f9.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f9.svg new file mode 100644 index 00000000..578c8eb4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1fb.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1fb.svg new file mode 100644 index 00000000..6558df60 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1fc.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1fc.svg new file mode 100644 index 00000000..4cd304e1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9-1f1ff.svg b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1ff.svg new file mode 100644 index 00000000..a9ddb8ed --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1f9.svg b/Linphone/data/emoji/emojiSvgs/1f1f9.svg new file mode 100644 index 00000000..fa3677ea --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fa-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1e6.svg new file mode 100644 index 00000000..989b5c28 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fa-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1ec.svg new file mode 100644 index 00000000..6602ca9c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fa-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1f2.svg new file mode 100644 index 00000000..d51f600a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fa-1f1f3.svg b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1f3.svg new file mode 100644 index 00000000..a035a767 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fa-1f1f8.svg b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1f8.svg new file mode 100644 index 00000000..d51f600a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fa-1f1fe.svg b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1fe.svg new file mode 100644 index 00000000..796244c9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fa-1f1ff.svg b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1ff.svg new file mode 100644 index 00000000..b913772e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fa-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fa.svg b/Linphone/data/emoji/emojiSvgs/1f1fa.svg new file mode 100644 index 00000000..aed705da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fb-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1e6.svg new file mode 100644 index 00000000..7b2bffa7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fb-1f1e8.svg b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1e8.svg new file mode 100644 index 00000000..fb97611b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fb-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1ea.svg new file mode 100644 index 00000000..294b5c69 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fb-1f1ec.svg b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1ec.svg new file mode 100644 index 00000000..d8194cd0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fb-1f1ee.svg b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1ee.svg new file mode 100644 index 00000000..d0602d29 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fb-1f1f3.svg b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1f3.svg new file mode 100644 index 00000000..4e0e1b58 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fb-1f1fa.svg b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1fa.svg new file mode 100644 index 00000000..151e7aaa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fb-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fb.svg b/Linphone/data/emoji/emojiSvgs/1f1fb.svg new file mode 100644 index 00000000..a5bf8647 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fc-1f1eb.svg b/Linphone/data/emoji/emojiSvgs/1f1fc-1f1eb.svg new file mode 100644 index 00000000..98954225 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fc-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fc-1f1f8.svg b/Linphone/data/emoji/emojiSvgs/1f1fc-1f1f8.svg new file mode 100644 index 00000000..6b075cb0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fc-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fc.svg b/Linphone/data/emoji/emojiSvgs/1f1fc.svg new file mode 100644 index 00000000..c65cf0b9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fd-1f1f0.svg b/Linphone/data/emoji/emojiSvgs/1f1fd-1f1f0.svg new file mode 100644 index 00000000..39890a90 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fd-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fd.svg b/Linphone/data/emoji/emojiSvgs/1f1fd.svg new file mode 100644 index 00000000..e39fd6d2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fe-1f1ea.svg b/Linphone/data/emoji/emojiSvgs/1f1fe-1f1ea.svg new file mode 100644 index 00000000..a82532c3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fe-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fe-1f1f9.svg b/Linphone/data/emoji/emojiSvgs/1f1fe-1f1f9.svg new file mode 100644 index 00000000..76765b93 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fe-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1fe.svg b/Linphone/data/emoji/emojiSvgs/1f1fe.svg new file mode 100644 index 00000000..3c4a46f0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ff-1f1e6.svg b/Linphone/data/emoji/emojiSvgs/1f1ff-1f1e6.svg new file mode 100644 index 00000000..275c136d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ff-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ff-1f1f2.svg b/Linphone/data/emoji/emojiSvgs/1f1ff-1f1f2.svg new file mode 100644 index 00000000..d2768963 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ff-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ff-1f1fc.svg b/Linphone/data/emoji/emojiSvgs/1f1ff-1f1fc.svg new file mode 100644 index 00000000..15a84645 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ff-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f1ff.svg b/Linphone/data/emoji/emojiSvgs/1f1ff.svg new file mode 100644 index 00000000..e1ae07de --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f201.svg b/Linphone/data/emoji/emojiSvgs/1f201.svg new file mode 100644 index 00000000..c4e65413 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f201.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f202.svg b/Linphone/data/emoji/emojiSvgs/1f202.svg new file mode 100644 index 00000000..7f1e8415 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f202.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f21a.svg b/Linphone/data/emoji/emojiSvgs/1f21a.svg new file mode 100644 index 00000000..9b0253ad --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f21a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f22f.svg b/Linphone/data/emoji/emojiSvgs/1f22f.svg new file mode 100644 index 00000000..112269d9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f22f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f232.svg b/Linphone/data/emoji/emojiSvgs/1f232.svg new file mode 100644 index 00000000..4efe9bbf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f232.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f233.svg b/Linphone/data/emoji/emojiSvgs/1f233.svg new file mode 100644 index 00000000..2e2072ce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f233.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f234.svg b/Linphone/data/emoji/emojiSvgs/1f234.svg new file mode 100644 index 00000000..b90b9c40 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f234.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f235.svg b/Linphone/data/emoji/emojiSvgs/1f235.svg new file mode 100644 index 00000000..86f24ca5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f235.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f236.svg b/Linphone/data/emoji/emojiSvgs/1f236.svg new file mode 100644 index 00000000..93c5998e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f236.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f237.svg b/Linphone/data/emoji/emojiSvgs/1f237.svg new file mode 100644 index 00000000..459d9488 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f237.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f238.svg b/Linphone/data/emoji/emojiSvgs/1f238.svg new file mode 100644 index 00000000..af984cb9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f238.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f239.svg b/Linphone/data/emoji/emojiSvgs/1f239.svg new file mode 100644 index 00000000..889c0272 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f239.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f23a.svg b/Linphone/data/emoji/emojiSvgs/1f23a.svg new file mode 100644 index 00000000..87a2cebd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f23a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f250.svg b/Linphone/data/emoji/emojiSvgs/1f250.svg new file mode 100644 index 00000000..c7465f8a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f250.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f251.svg b/Linphone/data/emoji/emojiSvgs/1f251.svg new file mode 100644 index 00000000..4bb227b5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f251.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f300.svg b/Linphone/data/emoji/emojiSvgs/1f300.svg new file mode 100644 index 00000000..1de6f256 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f300.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f301.svg b/Linphone/data/emoji/emojiSvgs/1f301.svg new file mode 100644 index 00000000..d6298de4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f301.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f302.svg b/Linphone/data/emoji/emojiSvgs/1f302.svg new file mode 100644 index 00000000..e611e6b8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f302.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f303.svg b/Linphone/data/emoji/emojiSvgs/1f303.svg new file mode 100644 index 00000000..d6c21b48 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f303.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f304.svg b/Linphone/data/emoji/emojiSvgs/1f304.svg new file mode 100644 index 00000000..0709f1c4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f304.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f305.svg b/Linphone/data/emoji/emojiSvgs/1f305.svg new file mode 100644 index 00000000..8e3f66da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f305.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f306.svg b/Linphone/data/emoji/emojiSvgs/1f306.svg new file mode 100644 index 00000000..9e7ae826 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f306.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f307.svg b/Linphone/data/emoji/emojiSvgs/1f307.svg new file mode 100644 index 00000000..a783fe33 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f307.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f308.svg b/Linphone/data/emoji/emojiSvgs/1f308.svg new file mode 100644 index 00000000..ffe6a123 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f308.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f309.svg b/Linphone/data/emoji/emojiSvgs/1f309.svg new file mode 100644 index 00000000..e49295b4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f309.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f30a.svg b/Linphone/data/emoji/emojiSvgs/1f30a.svg new file mode 100644 index 00000000..0e68ec36 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f30a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f30b.svg b/Linphone/data/emoji/emojiSvgs/1f30b.svg new file mode 100644 index 00000000..88d989d7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f30b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f30c.svg b/Linphone/data/emoji/emojiSvgs/1f30c.svg new file mode 100644 index 00000000..7853bcd4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f30c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f30d.svg b/Linphone/data/emoji/emojiSvgs/1f30d.svg new file mode 100644 index 00000000..f8136108 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f30d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f30e.svg b/Linphone/data/emoji/emojiSvgs/1f30e.svg new file mode 100644 index 00000000..0793e724 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f30e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f30f.svg b/Linphone/data/emoji/emojiSvgs/1f30f.svg new file mode 100644 index 00000000..30c0186e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f30f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f310.svg b/Linphone/data/emoji/emojiSvgs/1f310.svg new file mode 100644 index 00000000..a9ec9e69 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f310.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f311.svg b/Linphone/data/emoji/emojiSvgs/1f311.svg new file mode 100644 index 00000000..d71e4d1a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f311.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f312.svg b/Linphone/data/emoji/emojiSvgs/1f312.svg new file mode 100644 index 00000000..d3bb1a75 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f312.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f313.svg b/Linphone/data/emoji/emojiSvgs/1f313.svg new file mode 100644 index 00000000..f668b758 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f313.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f314.svg b/Linphone/data/emoji/emojiSvgs/1f314.svg new file mode 100644 index 00000000..90488ede --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f314.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f315.svg b/Linphone/data/emoji/emojiSvgs/1f315.svg new file mode 100644 index 00000000..9a704271 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f315.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f316.svg b/Linphone/data/emoji/emojiSvgs/1f316.svg new file mode 100644 index 00000000..9cbc981e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f316.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f317.svg b/Linphone/data/emoji/emojiSvgs/1f317.svg new file mode 100644 index 00000000..a5813f0f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f317.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f318.svg b/Linphone/data/emoji/emojiSvgs/1f318.svg new file mode 100644 index 00000000..bad95d5e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f318.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f319.svg b/Linphone/data/emoji/emojiSvgs/1f319.svg new file mode 100644 index 00000000..d98dc2f9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f319.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f31a.svg b/Linphone/data/emoji/emojiSvgs/1f31a.svg new file mode 100644 index 00000000..6ccbb68c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f31a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f31b.svg b/Linphone/data/emoji/emojiSvgs/1f31b.svg new file mode 100644 index 00000000..3fffcdd5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f31b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f31c.svg b/Linphone/data/emoji/emojiSvgs/1f31c.svg new file mode 100644 index 00000000..07501e92 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f31c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f31d.svg b/Linphone/data/emoji/emojiSvgs/1f31d.svg new file mode 100644 index 00000000..4c989691 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f31d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f31e.svg b/Linphone/data/emoji/emojiSvgs/1f31e.svg new file mode 100644 index 00000000..2da9b199 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f31e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f31f.svg b/Linphone/data/emoji/emojiSvgs/1f31f.svg new file mode 100644 index 00000000..a4695dd6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f31f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f320.svg b/Linphone/data/emoji/emojiSvgs/1f320.svg new file mode 100644 index 00000000..295a5a12 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f320.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f321.svg b/Linphone/data/emoji/emojiSvgs/1f321.svg new file mode 100644 index 00000000..95a75984 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f321.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f324.svg b/Linphone/data/emoji/emojiSvgs/1f324.svg new file mode 100644 index 00000000..8ba8c525 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f324.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f325.svg b/Linphone/data/emoji/emojiSvgs/1f325.svg new file mode 100644 index 00000000..1efae102 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f325.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f326.svg b/Linphone/data/emoji/emojiSvgs/1f326.svg new file mode 100644 index 00000000..3a65ae71 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f326.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f327.svg b/Linphone/data/emoji/emojiSvgs/1f327.svg new file mode 100644 index 00000000..99f42f5a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f327.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f328.svg b/Linphone/data/emoji/emojiSvgs/1f328.svg new file mode 100644 index 00000000..f937107a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f328.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f329.svg b/Linphone/data/emoji/emojiSvgs/1f329.svg new file mode 100644 index 00000000..0deaddcd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f329.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f32a.svg b/Linphone/data/emoji/emojiSvgs/1f32a.svg new file mode 100644 index 00000000..b4620106 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f32a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f32b.svg b/Linphone/data/emoji/emojiSvgs/1f32b.svg new file mode 100644 index 00000000..fe6e480b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f32b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f32c.svg b/Linphone/data/emoji/emojiSvgs/1f32c.svg new file mode 100644 index 00000000..7d554574 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f32c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f32d.svg b/Linphone/data/emoji/emojiSvgs/1f32d.svg new file mode 100644 index 00000000..a450dbba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f32d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f32e.svg b/Linphone/data/emoji/emojiSvgs/1f32e.svg new file mode 100644 index 00000000..5b08f1f7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f32e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f32f.svg b/Linphone/data/emoji/emojiSvgs/1f32f.svg new file mode 100644 index 00000000..c76d82c3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f32f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f330.svg b/Linphone/data/emoji/emojiSvgs/1f330.svg new file mode 100644 index 00000000..d0e84b5e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f330.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f331.svg b/Linphone/data/emoji/emojiSvgs/1f331.svg new file mode 100644 index 00000000..668d777f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f331.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f332.svg b/Linphone/data/emoji/emojiSvgs/1f332.svg new file mode 100644 index 00000000..540f1860 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f332.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f333.svg b/Linphone/data/emoji/emojiSvgs/1f333.svg new file mode 100644 index 00000000..3937fc49 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f333.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f334.svg b/Linphone/data/emoji/emojiSvgs/1f334.svg new file mode 100644 index 00000000..55d246a2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f334.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f335.svg b/Linphone/data/emoji/emojiSvgs/1f335.svg new file mode 100644 index 00000000..097dc13c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f335.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f336.svg b/Linphone/data/emoji/emojiSvgs/1f336.svg new file mode 100644 index 00000000..eaeef864 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f336.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f337.svg b/Linphone/data/emoji/emojiSvgs/1f337.svg new file mode 100644 index 00000000..86a1a36f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f337.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f338.svg b/Linphone/data/emoji/emojiSvgs/1f338.svg new file mode 100644 index 00000000..46ba420d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f338.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f339.svg b/Linphone/data/emoji/emojiSvgs/1f339.svg new file mode 100644 index 00000000..500d9257 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f339.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f33a.svg b/Linphone/data/emoji/emojiSvgs/1f33a.svg new file mode 100644 index 00000000..19c2f896 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f33a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f33b.svg b/Linphone/data/emoji/emojiSvgs/1f33b.svg new file mode 100644 index 00000000..413e6fcb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f33b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f33c.svg b/Linphone/data/emoji/emojiSvgs/1f33c.svg new file mode 100644 index 00000000..4ee1cc00 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f33c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f33d.svg b/Linphone/data/emoji/emojiSvgs/1f33d.svg new file mode 100644 index 00000000..6c4ae3bf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f33d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f33e.svg new file mode 100644 index 00000000..320f1498 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f33f.svg b/Linphone/data/emoji/emojiSvgs/1f33f.svg new file mode 100644 index 00000000..9243e968 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f33f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f340.svg b/Linphone/data/emoji/emojiSvgs/1f340.svg new file mode 100644 index 00000000..cac00d45 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f340.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f341.svg b/Linphone/data/emoji/emojiSvgs/1f341.svg new file mode 100644 index 00000000..7cd7ad97 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f341.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f342.svg b/Linphone/data/emoji/emojiSvgs/1f342.svg new file mode 100644 index 00000000..1c9072a0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f342.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f343.svg b/Linphone/data/emoji/emojiSvgs/1f343.svg new file mode 100644 index 00000000..650bfa98 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f343.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f344.svg b/Linphone/data/emoji/emojiSvgs/1f344.svg new file mode 100644 index 00000000..0cf7a791 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f344.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f345.svg b/Linphone/data/emoji/emojiSvgs/1f345.svg new file mode 100644 index 00000000..411c2a50 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f345.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f346.svg b/Linphone/data/emoji/emojiSvgs/1f346.svg new file mode 100644 index 00000000..14688a6d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f346.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f347.svg b/Linphone/data/emoji/emojiSvgs/1f347.svg new file mode 100644 index 00000000..e52e2f85 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f347.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f348.svg b/Linphone/data/emoji/emojiSvgs/1f348.svg new file mode 100644 index 00000000..f3482735 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f348.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f349.svg b/Linphone/data/emoji/emojiSvgs/1f349.svg new file mode 100644 index 00000000..0f5ec06a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f349.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f34a.svg b/Linphone/data/emoji/emojiSvgs/1f34a.svg new file mode 100644 index 00000000..82c0c52b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f34a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f34b.svg b/Linphone/data/emoji/emojiSvgs/1f34b.svg new file mode 100644 index 00000000..ffbdc088 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f34b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f34c.svg b/Linphone/data/emoji/emojiSvgs/1f34c.svg new file mode 100644 index 00000000..b4120ba3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f34c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f34d.svg b/Linphone/data/emoji/emojiSvgs/1f34d.svg new file mode 100644 index 00000000..e96999db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f34d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f34e.svg b/Linphone/data/emoji/emojiSvgs/1f34e.svg new file mode 100644 index 00000000..2fe98862 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f34e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f34f.svg b/Linphone/data/emoji/emojiSvgs/1f34f.svg new file mode 100644 index 00000000..1423d8aa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f34f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f350.svg b/Linphone/data/emoji/emojiSvgs/1f350.svg new file mode 100644 index 00000000..2888963f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f350.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f351.svg b/Linphone/data/emoji/emojiSvgs/1f351.svg new file mode 100644 index 00000000..84e81f5e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f351.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f352.svg b/Linphone/data/emoji/emojiSvgs/1f352.svg new file mode 100644 index 00000000..bdba6bd6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f352.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f353.svg b/Linphone/data/emoji/emojiSvgs/1f353.svg new file mode 100644 index 00000000..26a41ee2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f353.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f354.svg b/Linphone/data/emoji/emojiSvgs/1f354.svg new file mode 100644 index 00000000..a129dccb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f354.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f355.svg b/Linphone/data/emoji/emojiSvgs/1f355.svg new file mode 100644 index 00000000..3a44bba9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f355.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f356.svg b/Linphone/data/emoji/emojiSvgs/1f356.svg new file mode 100644 index 00000000..44fab599 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f356.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f357.svg b/Linphone/data/emoji/emojiSvgs/1f357.svg new file mode 100644 index 00000000..77d0b872 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f357.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f358.svg b/Linphone/data/emoji/emojiSvgs/1f358.svg new file mode 100644 index 00000000..f35a02ea --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f358.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f359.svg b/Linphone/data/emoji/emojiSvgs/1f359.svg new file mode 100644 index 00000000..e508f8f9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f359.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f35a.svg b/Linphone/data/emoji/emojiSvgs/1f35a.svg new file mode 100644 index 00000000..04019a1c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f35a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f35b.svg b/Linphone/data/emoji/emojiSvgs/1f35b.svg new file mode 100644 index 00000000..be3be226 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f35b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f35c.svg b/Linphone/data/emoji/emojiSvgs/1f35c.svg new file mode 100644 index 00000000..e9fc9700 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f35c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f35d.svg b/Linphone/data/emoji/emojiSvgs/1f35d.svg new file mode 100644 index 00000000..3ae82eb5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f35d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f35e.svg b/Linphone/data/emoji/emojiSvgs/1f35e.svg new file mode 100644 index 00000000..7d2af4e7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f35e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f35f.svg b/Linphone/data/emoji/emojiSvgs/1f35f.svg new file mode 100644 index 00000000..faac7ecf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f35f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f360.svg b/Linphone/data/emoji/emojiSvgs/1f360.svg new file mode 100644 index 00000000..c2894e35 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f360.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f361.svg b/Linphone/data/emoji/emojiSvgs/1f361.svg new file mode 100644 index 00000000..e2537d90 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f361.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f362.svg b/Linphone/data/emoji/emojiSvgs/1f362.svg new file mode 100644 index 00000000..f5f7653a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f362.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f363.svg b/Linphone/data/emoji/emojiSvgs/1f363.svg new file mode 100644 index 00000000..eed2b88c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f363.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f364.svg b/Linphone/data/emoji/emojiSvgs/1f364.svg new file mode 100644 index 00000000..91304221 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f364.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f365.svg b/Linphone/data/emoji/emojiSvgs/1f365.svg new file mode 100644 index 00000000..fd448da0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f365.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f366.svg b/Linphone/data/emoji/emojiSvgs/1f366.svg new file mode 100644 index 00000000..9b869f8c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f366.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f367.svg b/Linphone/data/emoji/emojiSvgs/1f367.svg new file mode 100644 index 00000000..232dd3cf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f367.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f368.svg b/Linphone/data/emoji/emojiSvgs/1f368.svg new file mode 100644 index 00000000..187b2f4c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f368.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f369.svg b/Linphone/data/emoji/emojiSvgs/1f369.svg new file mode 100644 index 00000000..3c2aa582 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f369.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f36a.svg b/Linphone/data/emoji/emojiSvgs/1f36a.svg new file mode 100644 index 00000000..4f5368a4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f36a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f36b.svg b/Linphone/data/emoji/emojiSvgs/1f36b.svg new file mode 100644 index 00000000..a993c9b4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f36b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f36c.svg b/Linphone/data/emoji/emojiSvgs/1f36c.svg new file mode 100644 index 00000000..f6fbf3b7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f36c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f36d.svg b/Linphone/data/emoji/emojiSvgs/1f36d.svg new file mode 100644 index 00000000..e13447ed --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f36d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f36e.svg b/Linphone/data/emoji/emojiSvgs/1f36e.svg new file mode 100644 index 00000000..8ec51792 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f36e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f36f.svg b/Linphone/data/emoji/emojiSvgs/1f36f.svg new file mode 100644 index 00000000..38c4dd50 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f36f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f370.svg b/Linphone/data/emoji/emojiSvgs/1f370.svg new file mode 100644 index 00000000..c6f2cf47 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f370.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f371.svg b/Linphone/data/emoji/emojiSvgs/1f371.svg new file mode 100644 index 00000000..c4811840 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f371.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f372.svg b/Linphone/data/emoji/emojiSvgs/1f372.svg new file mode 100644 index 00000000..37f9be89 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f372.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f373.svg b/Linphone/data/emoji/emojiSvgs/1f373.svg new file mode 100644 index 00000000..733dc2ba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f374.svg b/Linphone/data/emoji/emojiSvgs/1f374.svg new file mode 100644 index 00000000..e7de6c04 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f374.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f375.svg b/Linphone/data/emoji/emojiSvgs/1f375.svg new file mode 100644 index 00000000..77269639 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f375.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f376.svg b/Linphone/data/emoji/emojiSvgs/1f376.svg new file mode 100644 index 00000000..2bb872e1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f376.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f377.svg b/Linphone/data/emoji/emojiSvgs/1f377.svg new file mode 100644 index 00000000..b7925317 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f377.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f378.svg b/Linphone/data/emoji/emojiSvgs/1f378.svg new file mode 100644 index 00000000..c8bc0ce1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f378.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f379.svg b/Linphone/data/emoji/emojiSvgs/1f379.svg new file mode 100644 index 00000000..1c4db463 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f379.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f37a.svg b/Linphone/data/emoji/emojiSvgs/1f37a.svg new file mode 100644 index 00000000..9e6a547b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f37a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f37b.svg b/Linphone/data/emoji/emojiSvgs/1f37b.svg new file mode 100644 index 00000000..a8bcb20c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f37b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f37c.svg new file mode 100644 index 00000000..61f6c8ff --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f37d.svg b/Linphone/data/emoji/emojiSvgs/1f37d.svg new file mode 100644 index 00000000..7437a350 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f37d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f37e.svg b/Linphone/data/emoji/emojiSvgs/1f37e.svg new file mode 100644 index 00000000..a02a17eb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f37e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f37f.svg b/Linphone/data/emoji/emojiSvgs/1f37f.svg new file mode 100644 index 00000000..ddbff6d9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f37f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f380.svg b/Linphone/data/emoji/emojiSvgs/1f380.svg new file mode 100644 index 00000000..03d4a751 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f380.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f381.svg b/Linphone/data/emoji/emojiSvgs/1f381.svg new file mode 100644 index 00000000..1ab82981 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f381.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f382.svg b/Linphone/data/emoji/emojiSvgs/1f382.svg new file mode 100644 index 00000000..35f9a002 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f382.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f383.svg b/Linphone/data/emoji/emojiSvgs/1f383.svg new file mode 100644 index 00000000..591fc66a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f383.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f384.svg b/Linphone/data/emoji/emojiSvgs/1f384.svg new file mode 100644 index 00000000..6e9b11e2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f385-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f385-1f3fb.svg new file mode 100644 index 00000000..ef5c6153 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f385-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f385-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f385-1f3fc.svg new file mode 100644 index 00000000..5adcdf4e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f385-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f385-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f385-1f3fd.svg new file mode 100644 index 00000000..0a56a8b1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f385-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f385-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f385-1f3fe.svg new file mode 100644 index 00000000..16b3b33e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f385-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f385-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f385-1f3ff.svg new file mode 100644 index 00000000..4923cbf4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f385-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f385.svg b/Linphone/data/emoji/emojiSvgs/1f385.svg new file mode 100644 index 00000000..9c61da6c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f385.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f386.svg b/Linphone/data/emoji/emojiSvgs/1f386.svg new file mode 100644 index 00000000..54a4f321 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f386.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f387.svg b/Linphone/data/emoji/emojiSvgs/1f387.svg new file mode 100644 index 00000000..68cfb644 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f387.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f388.svg b/Linphone/data/emoji/emojiSvgs/1f388.svg new file mode 100644 index 00000000..6d431bc8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f388.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f389.svg b/Linphone/data/emoji/emojiSvgs/1f389.svg new file mode 100644 index 00000000..a4b8305a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f389.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f38a.svg b/Linphone/data/emoji/emojiSvgs/1f38a.svg new file mode 100644 index 00000000..e709775f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f38a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f38b.svg b/Linphone/data/emoji/emojiSvgs/1f38b.svg new file mode 100644 index 00000000..06363807 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f38b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f38c.svg b/Linphone/data/emoji/emojiSvgs/1f38c.svg new file mode 100644 index 00000000..a0dd3506 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f38c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f38d.svg b/Linphone/data/emoji/emojiSvgs/1f38d.svg new file mode 100644 index 00000000..a774540b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f38d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f38e.svg b/Linphone/data/emoji/emojiSvgs/1f38e.svg new file mode 100644 index 00000000..56b4b80a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f38e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f38f.svg b/Linphone/data/emoji/emojiSvgs/1f38f.svg new file mode 100644 index 00000000..5457d1e8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f38f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f390.svg b/Linphone/data/emoji/emojiSvgs/1f390.svg new file mode 100644 index 00000000..9aebc797 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f390.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f391.svg b/Linphone/data/emoji/emojiSvgs/1f391.svg new file mode 100644 index 00000000..37c3a7e1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f391.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f392.svg b/Linphone/data/emoji/emojiSvgs/1f392.svg new file mode 100644 index 00000000..f44d5680 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f392.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f393.svg b/Linphone/data/emoji/emojiSvgs/1f393.svg new file mode 100644 index 00000000..dcf38931 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f396.svg b/Linphone/data/emoji/emojiSvgs/1f396.svg new file mode 100644 index 00000000..b5c22696 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f396.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f397.svg b/Linphone/data/emoji/emojiSvgs/1f397.svg new file mode 100644 index 00000000..1f419d45 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f397.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f399.svg b/Linphone/data/emoji/emojiSvgs/1f399.svg new file mode 100644 index 00000000..07881e4a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f399.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f39a.svg b/Linphone/data/emoji/emojiSvgs/1f39a.svg new file mode 100644 index 00000000..7071931f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f39a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f39b.svg b/Linphone/data/emoji/emojiSvgs/1f39b.svg new file mode 100644 index 00000000..9d355c4a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f39b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f39e.svg b/Linphone/data/emoji/emojiSvgs/1f39e.svg new file mode 100644 index 00000000..01f93112 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f39e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f39f.svg b/Linphone/data/emoji/emojiSvgs/1f39f.svg new file mode 100644 index 00000000..984f2706 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f39f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3a0.svg b/Linphone/data/emoji/emojiSvgs/1f3a0.svg new file mode 100644 index 00000000..35c75b69 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3a1.svg b/Linphone/data/emoji/emojiSvgs/1f3a1.svg new file mode 100644 index 00000000..c35744ab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3a2.svg b/Linphone/data/emoji/emojiSvgs/1f3a2.svg new file mode 100644 index 00000000..256d8afb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3a2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3a3.svg b/Linphone/data/emoji/emojiSvgs/1f3a3.svg new file mode 100644 index 00000000..1a1df4f9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3a3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f3a4.svg new file mode 100644 index 00000000..e2613347 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3a5.svg b/Linphone/data/emoji/emojiSvgs/1f3a5.svg new file mode 100644 index 00000000..d6c68e0d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3a6.svg b/Linphone/data/emoji/emojiSvgs/1f3a6.svg new file mode 100644 index 00000000..04ba5e33 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3a6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3a7.svg b/Linphone/data/emoji/emojiSvgs/1f3a7.svg new file mode 100644 index 00000000..3a9df15a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f3a8.svg new file mode 100644 index 00000000..3bfdea0c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3a9.svg b/Linphone/data/emoji/emojiSvgs/1f3a9.svg new file mode 100644 index 00000000..1017cef3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3aa.svg b/Linphone/data/emoji/emojiSvgs/1f3aa.svg new file mode 100644 index 00000000..fec7dd2e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ab.svg b/Linphone/data/emoji/emojiSvgs/1f3ab.svg new file mode 100644 index 00000000..cd234010 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ac.svg b/Linphone/data/emoji/emojiSvgs/1f3ac.svg new file mode 100644 index 00000000..3a326766 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ad.svg b/Linphone/data/emoji/emojiSvgs/1f3ad.svg new file mode 100644 index 00000000..c8c99012 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ae.svg b/Linphone/data/emoji/emojiSvgs/1f3ae.svg new file mode 100644 index 00000000..4ec08ae4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3af.svg b/Linphone/data/emoji/emojiSvgs/1f3af.svg new file mode 100644 index 00000000..9562c6c3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3b0.svg b/Linphone/data/emoji/emojiSvgs/1f3b0.svg new file mode 100644 index 00000000..789fd08d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3b1.svg b/Linphone/data/emoji/emojiSvgs/1f3b1.svg new file mode 100644 index 00000000..28abf33e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3b2.svg b/Linphone/data/emoji/emojiSvgs/1f3b2.svg new file mode 100644 index 00000000..408f2f92 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3b3.svg b/Linphone/data/emoji/emojiSvgs/1f3b3.svg new file mode 100644 index 00000000..9227f288 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3b4.svg b/Linphone/data/emoji/emojiSvgs/1f3b4.svg new file mode 100644 index 00000000..33d3e0f5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3b4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3b5.svg b/Linphone/data/emoji/emojiSvgs/1f3b5.svg new file mode 100644 index 00000000..c9286d2b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3b5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3b6.svg b/Linphone/data/emoji/emojiSvgs/1f3b6.svg new file mode 100644 index 00000000..f13b3b8b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3b7.svg b/Linphone/data/emoji/emojiSvgs/1f3b7.svg new file mode 100644 index 00000000..ed0f849e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3b7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3b8.svg b/Linphone/data/emoji/emojiSvgs/1f3b8.svg new file mode 100644 index 00000000..22074a11 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3b8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3b9.svg b/Linphone/data/emoji/emojiSvgs/1f3b9.svg new file mode 100644 index 00000000..6ce8afd9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3b9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ba.svg b/Linphone/data/emoji/emojiSvgs/1f3ba.svg new file mode 100644 index 00000000..454ab781 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3bb.svg b/Linphone/data/emoji/emojiSvgs/1f3bb.svg new file mode 100644 index 00000000..efb7d5da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3bc.svg b/Linphone/data/emoji/emojiSvgs/1f3bc.svg new file mode 100644 index 00000000..5628fcac --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3bd.svg b/Linphone/data/emoji/emojiSvgs/1f3bd.svg new file mode 100644 index 00000000..8410aee4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3be.svg b/Linphone/data/emoji/emojiSvgs/1f3be.svg new file mode 100644 index 00000000..323e5c46 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3bf.svg b/Linphone/data/emoji/emojiSvgs/1f3bf.svg new file mode 100644 index 00000000..a117c938 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c0.svg b/Linphone/data/emoji/emojiSvgs/1f3c0.svg new file mode 100644 index 00000000..24693956 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c1.svg b/Linphone/data/emoji/emojiSvgs/1f3c1.svg new file mode 100644 index 00000000..695f0ef3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c2-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f3c2-1f3fb.svg new file mode 100644 index 00000000..627fa068 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c2-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c2-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f3c2-1f3fc.svg new file mode 100644 index 00000000..c0090e16 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c2-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c2-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f3c2-1f3fd.svg new file mode 100644 index 00000000..e71263c9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c2-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c2-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f3c2-1f3fe.svg new file mode 100644 index 00000000..aa7ab8fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c2-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c2-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f3c2-1f3ff.svg new file mode 100644 index 00000000..9f66b45f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c2-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c2.svg b/Linphone/data/emoji/emojiSvgs/1f3c2.svg new file mode 100644 index 00000000..bff2c084 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..9c559abd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..604a0024 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fb.svg new file mode 100644 index 00000000..c650508d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..2639daf5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..f93e9dbf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fc.svg new file mode 100644 index 00000000..d207d92a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..f2677ee9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..847b7f6e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fd.svg new file mode 100644 index 00000000..54b5cbc8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..175349d1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..51db6d67 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fe.svg new file mode 100644 index 00000000..7012bb13 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..b19ab881 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..81889777 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3ff.svg new file mode 100644 index 00000000..b45b1e01 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-200d-2640-fe0f.svg new file mode 100644 index 00000000..9acdb7a7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c3-200d-2642-fe0f.svg new file mode 100644 index 00000000..42bc6010 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c3.svg b/Linphone/data/emoji/emojiSvgs/1f3c3.svg new file mode 100644 index 00000000..a9658d69 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..c5f30819 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..e396618f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fb.svg new file mode 100644 index 00000000..600f4aeb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..2fcf3c60 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..228af26f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fc.svg new file mode 100644 index 00000000..42a5f1de --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..0d575554 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..521b554b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fd.svg new file mode 100644 index 00000000..0c13cab5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..6372f70a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..147c45ae --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fe.svg new file mode 100644 index 00000000..269f1737 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..8cb8ad8f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..0e0ef2e9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3ff.svg new file mode 100644 index 00000000..75cc5148 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-200d-2640-fe0f.svg new file mode 100644 index 00000000..c33ecc72 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3c4-200d-2642-fe0f.svg new file mode 100644 index 00000000..6da42a5c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c4.svg b/Linphone/data/emoji/emojiSvgs/1f3c4.svg new file mode 100644 index 00000000..53b4ec65 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c5.svg b/Linphone/data/emoji/emojiSvgs/1f3c5.svg new file mode 100644 index 00000000..a576ba8b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c6.svg b/Linphone/data/emoji/emojiSvgs/1f3c6.svg new file mode 100644 index 00000000..00457c31 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c7-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f3c7-1f3fb.svg new file mode 100644 index 00000000..a48a00b1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c7-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c7-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f3c7-1f3fc.svg new file mode 100644 index 00000000..f80fc323 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c7-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c7-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f3c7-1f3fd.svg new file mode 100644 index 00000000..0baedbc9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c7-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c7-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f3c7-1f3fe.svg new file mode 100644 index 00000000..ef50b0b1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c7-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c7-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f3c7-1f3ff.svg new file mode 100644 index 00000000..ba0de655 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c7-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c7.svg b/Linphone/data/emoji/emojiSvgs/1f3c7.svg new file mode 100644 index 00000000..e4cf1523 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c8.svg b/Linphone/data/emoji/emojiSvgs/1f3c8.svg new file mode 100644 index 00000000..4f5530d2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3c9.svg b/Linphone/data/emoji/emojiSvgs/1f3c9.svg new file mode 100644 index 00000000..5e12c43c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3c9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..6ce5dcdb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..b3e34553 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fb.svg new file mode 100644 index 00000000..cb149c34 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..a2457fc7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..86eda185 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fc.svg new file mode 100644 index 00000000..fd8f6f19 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..8704f5b5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..bf944220 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fd.svg new file mode 100644 index 00000000..36b89523 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..4ee3a44d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..e320765a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fe.svg new file mode 100644 index 00000000..0c54d993 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..11f4beab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..a25741c2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3ff.svg new file mode 100644 index 00000000..65dd7f37 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-200d-2640-fe0f.svg new file mode 100644 index 00000000..dfc2cb61 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3ca-200d-2642-fe0f.svg new file mode 100644 index 00000000..12bad064 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ca.svg b/Linphone/data/emoji/emojiSvgs/1f3ca.svg new file mode 100644 index 00000000..49013769 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ca.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..de38be18 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..1caeeb8f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fb.svg new file mode 100644 index 00000000..8bcc454f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..03f29357 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..44953ab1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fc.svg new file mode 100644 index 00000000..2898d555 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..00f68eed --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..5401c2f6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fd.svg new file mode 100644 index 00000000..6a8ede71 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..34e859a1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..b5f19bf2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fe.svg new file mode 100644 index 00000000..465f6c5b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..117b92a7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..2cf83c47 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3ff.svg new file mode 100644 index 00000000..a557ed47 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-fe0f-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-fe0f-200d-2640-fe0f.svg new file mode 100644 index 00000000..1e2ac7f8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-fe0f-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb-fe0f-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cb-fe0f-200d-2642-fe0f.svg new file mode 100644 index 00000000..f9bbcc92 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb-fe0f-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cb.svg b/Linphone/data/emoji/emojiSvgs/1f3cb.svg new file mode 100644 index 00000000..78e9c7a2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..781baf63 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..f478ef13 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fb.svg new file mode 100644 index 00000000..105b62c6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..61462b99 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..59373fd1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fc.svg new file mode 100644 index 00000000..e69be139 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..353c5c2e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..6e67562b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fd.svg new file mode 100644 index 00000000..d938cd7e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..9a9a856e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..24031bbf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fe.svg new file mode 100644 index 00000000..28f9169c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..13af8399 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..6c8ed88f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3ff.svg new file mode 100644 index 00000000..91609819 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-fe0f-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-fe0f-200d-2640-fe0f.svg new file mode 100644 index 00000000..859d12f5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-fe0f-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc-fe0f-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3cc-fe0f-200d-2642-fe0f.svg new file mode 100644 index 00000000..1381d6d3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc-fe0f-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cc.svg b/Linphone/data/emoji/emojiSvgs/1f3cc.svg new file mode 100644 index 00000000..6b973a28 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cd.svg b/Linphone/data/emoji/emojiSvgs/1f3cd.svg new file mode 100644 index 00000000..c51ccc34 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ce.svg b/Linphone/data/emoji/emojiSvgs/1f3ce.svg new file mode 100644 index 00000000..3f427166 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3cf.svg b/Linphone/data/emoji/emojiSvgs/1f3cf.svg new file mode 100644 index 00000000..140db58e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3d0.svg b/Linphone/data/emoji/emojiSvgs/1f3d0.svg new file mode 100644 index 00000000..b23cfc3a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3d0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3d1.svg b/Linphone/data/emoji/emojiSvgs/1f3d1.svg new file mode 100644 index 00000000..c367cef2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3d2.svg b/Linphone/data/emoji/emojiSvgs/1f3d2.svg new file mode 100644 index 00000000..382c6291 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3d3.svg b/Linphone/data/emoji/emojiSvgs/1f3d3.svg new file mode 100644 index 00000000..6201ef5a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3d4.svg b/Linphone/data/emoji/emojiSvgs/1f3d4.svg new file mode 100644 index 00000000..8b78f31e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3d4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3d5.svg b/Linphone/data/emoji/emojiSvgs/1f3d5.svg new file mode 100644 index 00000000..7a2fb80e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3d5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3d6.svg b/Linphone/data/emoji/emojiSvgs/1f3d6.svg new file mode 100644 index 00000000..9428f90f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3d6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3d7.svg b/Linphone/data/emoji/emojiSvgs/1f3d7.svg new file mode 100644 index 00000000..e77a170b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3d7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3d8.svg b/Linphone/data/emoji/emojiSvgs/1f3d8.svg new file mode 100644 index 00000000..483f1ade --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3d8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3d9.svg b/Linphone/data/emoji/emojiSvgs/1f3d9.svg new file mode 100644 index 00000000..b379d80e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3d9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3da.svg b/Linphone/data/emoji/emojiSvgs/1f3da.svg new file mode 100644 index 00000000..5c5ade6b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3da.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3db.svg b/Linphone/data/emoji/emojiSvgs/1f3db.svg new file mode 100644 index 00000000..bdd0d45f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3db.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3dc.svg b/Linphone/data/emoji/emojiSvgs/1f3dc.svg new file mode 100644 index 00000000..99baa8d0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3dd.svg b/Linphone/data/emoji/emojiSvgs/1f3dd.svg new file mode 100644 index 00000000..d66d8d47 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3dd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3de.svg b/Linphone/data/emoji/emojiSvgs/1f3de.svg new file mode 100644 index 00000000..940483bd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3df.svg b/Linphone/data/emoji/emojiSvgs/1f3df.svg new file mode 100644 index 00000000..248c6d9e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3df.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3e0.svg b/Linphone/data/emoji/emojiSvgs/1f3e0.svg new file mode 100644 index 00000000..0692739d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3e1.svg b/Linphone/data/emoji/emojiSvgs/1f3e1.svg new file mode 100644 index 00000000..b44b7288 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3e2.svg b/Linphone/data/emoji/emojiSvgs/1f3e2.svg new file mode 100644 index 00000000..8d06ecd2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3e3.svg b/Linphone/data/emoji/emojiSvgs/1f3e3.svg new file mode 100644 index 00000000..132ba410 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3e4.svg b/Linphone/data/emoji/emojiSvgs/1f3e4.svg new file mode 100644 index 00000000..7ac74e40 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3e5.svg b/Linphone/data/emoji/emojiSvgs/1f3e5.svg new file mode 100644 index 00000000..0b2748a5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3e5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3e6.svg b/Linphone/data/emoji/emojiSvgs/1f3e6.svg new file mode 100644 index 00000000..2fd3fb07 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3e7.svg b/Linphone/data/emoji/emojiSvgs/1f3e7.svg new file mode 100644 index 00000000..e4c0000b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3e8.svg b/Linphone/data/emoji/emojiSvgs/1f3e8.svg new file mode 100644 index 00000000..2d67b9a9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3e9.svg b/Linphone/data/emoji/emojiSvgs/1f3e9.svg new file mode 100644 index 00000000..9da5e448 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ea.svg b/Linphone/data/emoji/emojiSvgs/1f3ea.svg new file mode 100644 index 00000000..87f3f963 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f3eb.svg new file mode 100644 index 00000000..8be9e962 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ec.svg b/Linphone/data/emoji/emojiSvgs/1f3ec.svg new file mode 100644 index 00000000..c30d022e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f3ed.svg new file mode 100644 index 00000000..04ee1626 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ee.svg b/Linphone/data/emoji/emojiSvgs/1f3ee.svg new file mode 100644 index 00000000..a825f2b7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ef.svg b/Linphone/data/emoji/emojiSvgs/1f3ef.svg new file mode 100644 index 00000000..21683997 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3f0.svg b/Linphone/data/emoji/emojiSvgs/1f3f0.svg new file mode 100644 index 00000000..b4e3d19f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3f3-fe0f-200d-1f308.svg b/Linphone/data/emoji/emojiSvgs/1f3f3-fe0f-200d-1f308.svg new file mode 100644 index 00000000..1969e497 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3f3-fe0f-200d-1f308.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3f3-fe0f-200d-26a7-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3f3-fe0f-200d-26a7-fe0f.svg new file mode 100644 index 00000000..f9fc064c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3f3-fe0f-200d-26a7-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3f3.svg b/Linphone/data/emoji/emojiSvgs/1f3f3.svg new file mode 100644 index 00000000..2f21575d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3f4-200d-2620-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f3f4-200d-2620-fe0f.svg new file mode 100644 index 00000000..ae0d531a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3f4-200d-2620-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.svg b/Linphone/data/emoji/emojiSvgs/1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.svg new file mode 100644 index 00000000..fa209567 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.svg b/Linphone/data/emoji/emojiSvgs/1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.svg new file mode 100644 index 00000000..bfb8b485 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.svg b/Linphone/data/emoji/emojiSvgs/1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.svg new file mode 100644 index 00000000..a8326768 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3f4.svg b/Linphone/data/emoji/emojiSvgs/1f3f4.svg new file mode 100644 index 00000000..819ff64a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3f5.svg b/Linphone/data/emoji/emojiSvgs/1f3f5.svg new file mode 100644 index 00000000..dfaa7186 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3f7.svg b/Linphone/data/emoji/emojiSvgs/1f3f7.svg new file mode 100644 index 00000000..60462664 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3f8.svg b/Linphone/data/emoji/emojiSvgs/1f3f8.svg new file mode 100644 index 00000000..143f8eae --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3f9.svg b/Linphone/data/emoji/emojiSvgs/1f3f9.svg new file mode 100644 index 00000000..37922127 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3fa.svg b/Linphone/data/emoji/emojiSvgs/1f3fa.svg new file mode 100644 index 00000000..4c6b4d8f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f3fb.svg new file mode 100644 index 00000000..e1ac3e94 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f3fc.svg new file mode 100644 index 00000000..33c58c9c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f3fd.svg new file mode 100644 index 00000000..cb3c24e7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f3fe.svg new file mode 100644 index 00000000..7f34e609 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f3ff.svg new file mode 100644 index 00000000..64142d3e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f400.svg b/Linphone/data/emoji/emojiSvgs/1f400.svg new file mode 100644 index 00000000..d0a03a2c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f400.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f401.svg b/Linphone/data/emoji/emojiSvgs/1f401.svg new file mode 100644 index 00000000..365ab788 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f401.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f402.svg b/Linphone/data/emoji/emojiSvgs/1f402.svg new file mode 100644 index 00000000..378164c3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f402.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f403.svg b/Linphone/data/emoji/emojiSvgs/1f403.svg new file mode 100644 index 00000000..33d0009f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f403.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f404.svg b/Linphone/data/emoji/emojiSvgs/1f404.svg new file mode 100644 index 00000000..4c791dcc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f404.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f405.svg b/Linphone/data/emoji/emojiSvgs/1f405.svg new file mode 100644 index 00000000..c74ecf6f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f405.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f406.svg b/Linphone/data/emoji/emojiSvgs/1f406.svg new file mode 100644 index 00000000..4eaef099 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f406.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f407.svg b/Linphone/data/emoji/emojiSvgs/1f407.svg new file mode 100644 index 00000000..71be1224 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f407.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f408-200d-2b1b.svg b/Linphone/data/emoji/emojiSvgs/1f408-200d-2b1b.svg new file mode 100644 index 00000000..cf7b1d90 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f408-200d-2b1b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f408.svg b/Linphone/data/emoji/emojiSvgs/1f408.svg new file mode 100644 index 00000000..edb55b1f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f408.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f409.svg b/Linphone/data/emoji/emojiSvgs/1f409.svg new file mode 100644 index 00000000..14e17655 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f409.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f40a.svg b/Linphone/data/emoji/emojiSvgs/1f40a.svg new file mode 100644 index 00000000..a9a6debc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f40a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f40b.svg b/Linphone/data/emoji/emojiSvgs/1f40b.svg new file mode 100644 index 00000000..8bf0a538 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f40b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f40c.svg b/Linphone/data/emoji/emojiSvgs/1f40c.svg new file mode 100644 index 00000000..2c636582 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f40c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f40d.svg b/Linphone/data/emoji/emojiSvgs/1f40d.svg new file mode 100644 index 00000000..17531783 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f40d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f40e.svg b/Linphone/data/emoji/emojiSvgs/1f40e.svg new file mode 100644 index 00000000..1cd00b59 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f40e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f40f.svg b/Linphone/data/emoji/emojiSvgs/1f40f.svg new file mode 100644 index 00000000..f0ba99ef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f40f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f410.svg b/Linphone/data/emoji/emojiSvgs/1f410.svg new file mode 100644 index 00000000..83d3e56a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f410.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f411.svg b/Linphone/data/emoji/emojiSvgs/1f411.svg new file mode 100644 index 00000000..891e6702 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f411.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f412.svg b/Linphone/data/emoji/emojiSvgs/1f412.svg new file mode 100644 index 00000000..6ffccee4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f412.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f413.svg b/Linphone/data/emoji/emojiSvgs/1f413.svg new file mode 100644 index 00000000..29a4abe8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f413.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f414.svg b/Linphone/data/emoji/emojiSvgs/1f414.svg new file mode 100644 index 00000000..b08f7a2b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f414.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f415-200d-1f9ba.svg b/Linphone/data/emoji/emojiSvgs/1f415-200d-1f9ba.svg new file mode 100644 index 00000000..0ba7fb30 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f415-200d-1f9ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f415.svg b/Linphone/data/emoji/emojiSvgs/1f415.svg new file mode 100644 index 00000000..c959deb9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f415.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f416.svg b/Linphone/data/emoji/emojiSvgs/1f416.svg new file mode 100644 index 00000000..9a71ef84 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f416.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f417.svg b/Linphone/data/emoji/emojiSvgs/1f417.svg new file mode 100644 index 00000000..ad7a77db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f417.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f418.svg b/Linphone/data/emoji/emojiSvgs/1f418.svg new file mode 100644 index 00000000..fb9656cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f418.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f419.svg b/Linphone/data/emoji/emojiSvgs/1f419.svg new file mode 100644 index 00000000..d915a8fd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f419.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f41a.svg b/Linphone/data/emoji/emojiSvgs/1f41a.svg new file mode 100644 index 00000000..804ece88 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f41a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f41b.svg b/Linphone/data/emoji/emojiSvgs/1f41b.svg new file mode 100644 index 00000000..f8986dd7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f41b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f41c.svg b/Linphone/data/emoji/emojiSvgs/1f41c.svg new file mode 100644 index 00000000..385b616e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f41c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f41d.svg b/Linphone/data/emoji/emojiSvgs/1f41d.svg new file mode 100644 index 00000000..31e78828 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f41d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f41e.svg b/Linphone/data/emoji/emojiSvgs/1f41e.svg new file mode 100644 index 00000000..f314ca9a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f41e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f41f.svg b/Linphone/data/emoji/emojiSvgs/1f41f.svg new file mode 100644 index 00000000..7d9ef410 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f41f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f420.svg b/Linphone/data/emoji/emojiSvgs/1f420.svg new file mode 100644 index 00000000..ccc11c48 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f420.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f421.svg b/Linphone/data/emoji/emojiSvgs/1f421.svg new file mode 100644 index 00000000..13a7ddc6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f421.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f422.svg b/Linphone/data/emoji/emojiSvgs/1f422.svg new file mode 100644 index 00000000..fe4b659e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f422.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f423.svg b/Linphone/data/emoji/emojiSvgs/1f423.svg new file mode 100644 index 00000000..98f9c822 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f423.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f424.svg b/Linphone/data/emoji/emojiSvgs/1f424.svg new file mode 100644 index 00000000..1286ed38 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f424.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f425.svg b/Linphone/data/emoji/emojiSvgs/1f425.svg new file mode 100644 index 00000000..bcbd2181 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f425.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f426.svg b/Linphone/data/emoji/emojiSvgs/1f426.svg new file mode 100644 index 00000000..06d93a91 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f426.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f427.svg b/Linphone/data/emoji/emojiSvgs/1f427.svg new file mode 100644 index 00000000..fe34d91a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f427.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f428.svg b/Linphone/data/emoji/emojiSvgs/1f428.svg new file mode 100644 index 00000000..1da7190a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f428.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f429.svg b/Linphone/data/emoji/emojiSvgs/1f429.svg new file mode 100644 index 00000000..0ffd0828 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f429.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f42a.svg b/Linphone/data/emoji/emojiSvgs/1f42a.svg new file mode 100644 index 00000000..278e144f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f42a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f42b.svg b/Linphone/data/emoji/emojiSvgs/1f42b.svg new file mode 100644 index 00000000..8d60286e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f42b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f42c.svg b/Linphone/data/emoji/emojiSvgs/1f42c.svg new file mode 100644 index 00000000..ee782f2f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f42c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f42d.svg b/Linphone/data/emoji/emojiSvgs/1f42d.svg new file mode 100644 index 00000000..91e12624 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f42d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f42e.svg b/Linphone/data/emoji/emojiSvgs/1f42e.svg new file mode 100644 index 00000000..40fede03 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f42e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f42f.svg b/Linphone/data/emoji/emojiSvgs/1f42f.svg new file mode 100644 index 00000000..5ecd980c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f42f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f430.svg b/Linphone/data/emoji/emojiSvgs/1f430.svg new file mode 100644 index 00000000..2f70f966 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f430.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f431.svg b/Linphone/data/emoji/emojiSvgs/1f431.svg new file mode 100644 index 00000000..cc75dcc6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f431.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f432.svg b/Linphone/data/emoji/emojiSvgs/1f432.svg new file mode 100644 index 00000000..1c1b4347 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f432.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f433.svg b/Linphone/data/emoji/emojiSvgs/1f433.svg new file mode 100644 index 00000000..f00ea103 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f433.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f434.svg b/Linphone/data/emoji/emojiSvgs/1f434.svg new file mode 100644 index 00000000..9aa7d693 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f434.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f435.svg b/Linphone/data/emoji/emojiSvgs/1f435.svg new file mode 100644 index 00000000..ee6c57cf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f435.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f436.svg b/Linphone/data/emoji/emojiSvgs/1f436.svg new file mode 100644 index 00000000..8b2e6858 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f436.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f437.svg b/Linphone/data/emoji/emojiSvgs/1f437.svg new file mode 100644 index 00000000..49175ea4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f437.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f438.svg b/Linphone/data/emoji/emojiSvgs/1f438.svg new file mode 100644 index 00000000..74ddb592 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f438.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f439.svg b/Linphone/data/emoji/emojiSvgs/1f439.svg new file mode 100644 index 00000000..9bb7bae3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f439.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f43a.svg b/Linphone/data/emoji/emojiSvgs/1f43a.svg new file mode 100644 index 00000000..af402057 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f43a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f43b-200d-2744-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f43b-200d-2744-fe0f.svg new file mode 100644 index 00000000..dc70f185 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f43b-200d-2744-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f43b.svg b/Linphone/data/emoji/emojiSvgs/1f43b.svg new file mode 100644 index 00000000..50224417 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f43b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f43c.svg b/Linphone/data/emoji/emojiSvgs/1f43c.svg new file mode 100644 index 00000000..8607893a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f43c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f43d.svg b/Linphone/data/emoji/emojiSvgs/1f43d.svg new file mode 100644 index 00000000..071722db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f43d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f43e.svg b/Linphone/data/emoji/emojiSvgs/1f43e.svg new file mode 100644 index 00000000..40013679 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f43e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f43f.svg b/Linphone/data/emoji/emojiSvgs/1f43f.svg new file mode 100644 index 00000000..36768749 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f43f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f440.svg b/Linphone/data/emoji/emojiSvgs/1f440.svg new file mode 100644 index 00000000..46a268f4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f440.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f441-200d-1f5e8.svg b/Linphone/data/emoji/emojiSvgs/1f441-200d-1f5e8.svg new file mode 100644 index 00000000..ebe9061d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f441-200d-1f5e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f441.svg b/Linphone/data/emoji/emojiSvgs/1f441.svg new file mode 100644 index 00000000..bd1a45e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f441.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f442-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f442-1f3fb.svg new file mode 100644 index 00000000..75194c52 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f442-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f442-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f442-1f3fc.svg new file mode 100644 index 00000000..f4ae52f7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f442-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f442-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f442-1f3fd.svg new file mode 100644 index 00000000..da1d80a1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f442-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f442-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f442-1f3fe.svg new file mode 100644 index 00000000..f54144b3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f442-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f442-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f442-1f3ff.svg new file mode 100644 index 00000000..84545121 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f442-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f442.svg b/Linphone/data/emoji/emojiSvgs/1f442.svg new file mode 100644 index 00000000..1b386c7c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f442.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f443-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f443-1f3fb.svg new file mode 100644 index 00000000..ba2e3dc7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f443-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f443-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f443-1f3fc.svg new file mode 100644 index 00000000..e953ffde --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f443-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f443-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f443-1f3fd.svg new file mode 100644 index 00000000..fff0434a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f443-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f443-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f443-1f3fe.svg new file mode 100644 index 00000000..bfb49618 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f443-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f443-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f443-1f3ff.svg new file mode 100644 index 00000000..e9c466d8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f443-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f443.svg b/Linphone/data/emoji/emojiSvgs/1f443.svg new file mode 100644 index 00000000..654a6f2a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f443.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f444.svg b/Linphone/data/emoji/emojiSvgs/1f444.svg new file mode 100644 index 00000000..e8a29c47 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f444.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f445.svg b/Linphone/data/emoji/emojiSvgs/1f445.svg new file mode 100644 index 00000000..64386b95 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f445.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f446-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f446-1f3fb.svg new file mode 100644 index 00000000..4b66516d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f446-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f446-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f446-1f3fc.svg new file mode 100644 index 00000000..f2f80230 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f446-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f446-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f446-1f3fd.svg new file mode 100644 index 00000000..8a35f113 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f446-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f446-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f446-1f3fe.svg new file mode 100644 index 00000000..dce82c50 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f446-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f446-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f446-1f3ff.svg new file mode 100644 index 00000000..56492307 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f446-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f446.svg b/Linphone/data/emoji/emojiSvgs/1f446.svg new file mode 100644 index 00000000..46bc3596 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f446.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f447-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f447-1f3fb.svg new file mode 100644 index 00000000..5d5c6790 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f447-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f447-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f447-1f3fc.svg new file mode 100644 index 00000000..6191d80e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f447-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f447-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f447-1f3fd.svg new file mode 100644 index 00000000..553f3b90 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f447-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f447-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f447-1f3fe.svg new file mode 100644 index 00000000..2d7fc57d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f447-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f447-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f447-1f3ff.svg new file mode 100644 index 00000000..e64a83e5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f447-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f447.svg b/Linphone/data/emoji/emojiSvgs/1f447.svg new file mode 100644 index 00000000..b3df6170 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f447.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f448-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f448-1f3fb.svg new file mode 100644 index 00000000..452e1731 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f448-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f448-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f448-1f3fc.svg new file mode 100644 index 00000000..698207e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f448-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f448-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f448-1f3fd.svg new file mode 100644 index 00000000..dec8dbed --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f448-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f448-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f448-1f3fe.svg new file mode 100644 index 00000000..60e329d9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f448-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f448-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f448-1f3ff.svg new file mode 100644 index 00000000..58e85097 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f448-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f448.svg b/Linphone/data/emoji/emojiSvgs/1f448.svg new file mode 100644 index 00000000..10cf55fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f448.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f449-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f449-1f3fb.svg new file mode 100644 index 00000000..76635f26 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f449-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f449-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f449-1f3fc.svg new file mode 100644 index 00000000..4f03a7e8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f449-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f449-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f449-1f3fd.svg new file mode 100644 index 00000000..5b90a8a3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f449-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f449-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f449-1f3fe.svg new file mode 100644 index 00000000..75257c12 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f449-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f449-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f449-1f3ff.svg new file mode 100644 index 00000000..d7b5893c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f449-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f449.svg b/Linphone/data/emoji/emojiSvgs/1f449.svg new file mode 100644 index 00000000..f8c6a4b1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f449.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44a-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f44a-1f3fb.svg new file mode 100644 index 00000000..c113b4ae --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44a-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f44a-1f3fc.svg new file mode 100644 index 00000000..54cdf858 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44a-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f44a-1f3fd.svg new file mode 100644 index 00000000..b798e5ba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44a-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f44a-1f3fe.svg new file mode 100644 index 00000000..c9b1cf60 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44a-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f44a-1f3ff.svg new file mode 100644 index 00000000..faa58cbc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44a.svg b/Linphone/data/emoji/emojiSvgs/1f44a.svg new file mode 100644 index 00000000..813373e6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44b-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f44b-1f3fb.svg new file mode 100644 index 00000000..de8871dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44b-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f44b-1f3fc.svg new file mode 100644 index 00000000..beec31c9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44b-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f44b-1f3fd.svg new file mode 100644 index 00000000..975f489f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44b-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f44b-1f3fe.svg new file mode 100644 index 00000000..13c59cf1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44b-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f44b-1f3ff.svg new file mode 100644 index 00000000..1ce9ef37 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44b.svg b/Linphone/data/emoji/emojiSvgs/1f44b.svg new file mode 100644 index 00000000..8942c68b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44c-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f44c-1f3fb.svg new file mode 100644 index 00000000..e54788da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44c-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f44c-1f3fc.svg new file mode 100644 index 00000000..e96a2580 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44c-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f44c-1f3fd.svg new file mode 100644 index 00000000..6e52b17f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44c-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f44c-1f3fe.svg new file mode 100644 index 00000000..91cb40e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44c-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f44c-1f3ff.svg new file mode 100644 index 00000000..ffa03f7a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44c.svg b/Linphone/data/emoji/emojiSvgs/1f44c.svg new file mode 100644 index 00000000..c36d7748 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44d-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f44d-1f3fb.svg new file mode 100644 index 00000000..ac1ab027 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44d-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f44d-1f3fc.svg new file mode 100644 index 00000000..e5d4b0dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44d-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f44d-1f3fd.svg new file mode 100644 index 00000000..7dde2291 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44d-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f44d-1f3fe.svg new file mode 100644 index 00000000..a0b15657 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44d-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f44d-1f3ff.svg new file mode 100644 index 00000000..dc21efcb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44d.svg b/Linphone/data/emoji/emojiSvgs/1f44d.svg new file mode 100644 index 00000000..595672dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44e-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f44e-1f3fb.svg new file mode 100644 index 00000000..cf3616ea --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44e-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f44e-1f3fc.svg new file mode 100644 index 00000000..e929cabb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44e-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f44e-1f3fd.svg new file mode 100644 index 00000000..0584fd01 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44e-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f44e-1f3fe.svg new file mode 100644 index 00000000..88af00e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44e-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f44e-1f3ff.svg new file mode 100644 index 00000000..0e8c62e3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44e.svg b/Linphone/data/emoji/emojiSvgs/1f44e.svg new file mode 100644 index 00000000..1569ad09 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44f-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f44f-1f3fb.svg new file mode 100644 index 00000000..27feea25 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44f-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44f-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f44f-1f3fc.svg new file mode 100644 index 00000000..7edc9477 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44f-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44f-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f44f-1f3fd.svg new file mode 100644 index 00000000..93201cf6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44f-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44f-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f44f-1f3fe.svg new file mode 100644 index 00000000..0301e0cf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44f-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44f-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f44f-1f3ff.svg new file mode 100644 index 00000000..eec087b6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44f-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f44f.svg b/Linphone/data/emoji/emojiSvgs/1f44f.svg new file mode 100644 index 00000000..2ed7b62f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f44f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f450-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f450-1f3fb.svg new file mode 100644 index 00000000..621c9f6c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f450-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f450-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f450-1f3fc.svg new file mode 100644 index 00000000..70b490f4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f450-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f450-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f450-1f3fd.svg new file mode 100644 index 00000000..a8944369 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f450-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f450-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f450-1f3fe.svg new file mode 100644 index 00000000..e31b85ca --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f450-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f450-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f450-1f3ff.svg new file mode 100644 index 00000000..c0d8fc43 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f450-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f450.svg b/Linphone/data/emoji/emojiSvgs/1f450.svg new file mode 100644 index 00000000..eebee254 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f450.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f451.svg b/Linphone/data/emoji/emojiSvgs/1f451.svg new file mode 100644 index 00000000..4db8d2bc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f451.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f452.svg b/Linphone/data/emoji/emojiSvgs/1f452.svg new file mode 100644 index 00000000..4b647446 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f452.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f453.svg b/Linphone/data/emoji/emojiSvgs/1f453.svg new file mode 100644 index 00000000..18d99981 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f453.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f454.svg b/Linphone/data/emoji/emojiSvgs/1f454.svg new file mode 100644 index 00000000..8e860d6d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f454.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f455.svg b/Linphone/data/emoji/emojiSvgs/1f455.svg new file mode 100644 index 00000000..1db48202 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f455.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f456.svg b/Linphone/data/emoji/emojiSvgs/1f456.svg new file mode 100644 index 00000000..44191ae4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f456.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f457.svg b/Linphone/data/emoji/emojiSvgs/1f457.svg new file mode 100644 index 00000000..29cc45c7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f457.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f458.svg b/Linphone/data/emoji/emojiSvgs/1f458.svg new file mode 100644 index 00000000..7c955e99 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f458.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f459.svg b/Linphone/data/emoji/emojiSvgs/1f459.svg new file mode 100644 index 00000000..ed327f10 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f459.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f45a.svg b/Linphone/data/emoji/emojiSvgs/1f45a.svg new file mode 100644 index 00000000..9d6306ce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f45a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f45b.svg b/Linphone/data/emoji/emojiSvgs/1f45b.svg new file mode 100644 index 00000000..bb404a2b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f45b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f45c.svg b/Linphone/data/emoji/emojiSvgs/1f45c.svg new file mode 100644 index 00000000..3093d6bb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f45c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f45d.svg b/Linphone/data/emoji/emojiSvgs/1f45d.svg new file mode 100644 index 00000000..6d6b1364 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f45d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f45e.svg b/Linphone/data/emoji/emojiSvgs/1f45e.svg new file mode 100644 index 00000000..fe94bf59 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f45e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f45f.svg b/Linphone/data/emoji/emojiSvgs/1f45f.svg new file mode 100644 index 00000000..f0c998c6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f45f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f460.svg b/Linphone/data/emoji/emojiSvgs/1f460.svg new file mode 100644 index 00000000..f3aaf449 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f460.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f461.svg b/Linphone/data/emoji/emojiSvgs/1f461.svg new file mode 100644 index 00000000..c2f62e4f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f461.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f462.svg b/Linphone/data/emoji/emojiSvgs/1f462.svg new file mode 100644 index 00000000..641dd8b2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f462.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f463.svg b/Linphone/data/emoji/emojiSvgs/1f463.svg new file mode 100644 index 00000000..bc37ac05 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f463.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f464.svg b/Linphone/data/emoji/emojiSvgs/1f464.svg new file mode 100644 index 00000000..51d02dd2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f464.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f465.svg b/Linphone/data/emoji/emojiSvgs/1f465.svg new file mode 100644 index 00000000..076c6e7d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f465.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f466-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f466-1f3fb.svg new file mode 100644 index 00000000..449e0892 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f466-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f466-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f466-1f3fc.svg new file mode 100644 index 00000000..20f7bf0d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f466-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f466-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f466-1f3fd.svg new file mode 100644 index 00000000..3b4f0dba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f466-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f466-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f466-1f3fe.svg new file mode 100644 index 00000000..197d8309 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f466-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f466-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f466-1f3ff.svg new file mode 100644 index 00000000..c4d1e1a2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f466-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f466.svg b/Linphone/data/emoji/emojiSvgs/1f466.svg new file mode 100644 index 00000000..de1318cc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f467-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f467-1f3fb.svg new file mode 100644 index 00000000..887df9fc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f467-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f467-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f467-1f3fc.svg new file mode 100644 index 00000000..98c09561 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f467-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f467-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f467-1f3fd.svg new file mode 100644 index 00000000..058874c7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f467-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f467-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f467-1f3fe.svg new file mode 100644 index 00000000..dd656d86 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f467-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f467-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f467-1f3ff.svg new file mode 100644 index 00000000..2f9980a8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f467-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f467.svg b/Linphone/data/emoji/emojiSvgs/1f467.svg new file mode 100644 index 00000000..e40a8589 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f33e.svg new file mode 100644 index 00000000..e9ce8292 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f373.svg new file mode 100644 index 00000000..a972e6a4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f37c.svg new file mode 100644 index 00000000..19c8fff2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f384.svg new file mode 100644 index 00000000..ef5c6153 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f393.svg new file mode 100644 index 00000000..e4f480ff --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f3a4.svg new file mode 100644 index 00000000..03b4f988 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f3a8.svg new file mode 100644 index 00000000..c5249097 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f3eb.svg new file mode 100644 index 00000000..b8b0f125 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f3ed.svg new file mode 100644 index 00000000..96b45869 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f4bb.svg new file mode 100644 index 00000000..70ea65ec --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f4bc.svg new file mode 100644 index 00000000..06f78911 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f527.svg new file mode 100644 index 00000000..fc9059e0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f52c.svg new file mode 100644 index 00000000..08440f06 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f680.svg new file mode 100644 index 00000000..8492ec94 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f692.svg new file mode 100644 index 00000000..4d32c4df --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 00000000..7ad1503a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 00000000..a431a10c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg new file mode 100644 index 00000000..26df5261 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg new file mode 100644 index 00000000..aba57a36 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9af.svg new file mode 100644 index 00000000..06f7b2cf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9b0.svg new file mode 100644 index 00000000..e627fbc2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9b1.svg new file mode 100644 index 00000000..d21a1f77 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9b2.svg new file mode 100644 index 00000000..9c89431f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9b3.svg new file mode 100644 index 00000000..66c62c1e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9bc.svg new file mode 100644 index 00000000..01278456 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9bd.svg new file mode 100644 index 00000000..7d0c06d0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-2695-fe0f.svg new file mode 100644 index 00000000..7e239f00 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-2696-fe0f.svg new file mode 100644 index 00000000..78a2a14c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-2708-fe0f.svg new file mode 100644 index 00000000..fb5ef4b8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb.svg new file mode 100644 index 00000000..1ab8ea02 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f33e.svg new file mode 100644 index 00000000..a75bacf4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f373.svg new file mode 100644 index 00000000..1ec6e028 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f37c.svg new file mode 100644 index 00000000..5d702994 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f384.svg new file mode 100644 index 00000000..5adcdf4e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f393.svg new file mode 100644 index 00000000..960ff27c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f3a4.svg new file mode 100644 index 00000000..e1137949 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f3a8.svg new file mode 100644 index 00000000..cce25b79 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f3eb.svg new file mode 100644 index 00000000..fb6f4f4a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f3ed.svg new file mode 100644 index 00000000..22ad9bfe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f4bb.svg new file mode 100644 index 00000000..038a4fc4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f4bc.svg new file mode 100644 index 00000000..c07947ba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f527.svg new file mode 100644 index 00000000..d0bf573e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f52c.svg new file mode 100644 index 00000000..0cbcdf1f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f680.svg new file mode 100644 index 00000000..b1567a68 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f692.svg new file mode 100644 index 00000000..ae762719 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 00000000..2c042889 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 00000000..461f95d0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg new file mode 100644 index 00000000..50adc8b7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg new file mode 100644 index 00000000..fb82cc52 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9af.svg new file mode 100644 index 00000000..77eb1728 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9b0.svg new file mode 100644 index 00000000..9582c89a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9b1.svg new file mode 100644 index 00000000..bb09af97 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9b2.svg new file mode 100644 index 00000000..59308642 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9b3.svg new file mode 100644 index 00000000..f4e0f36a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9bc.svg new file mode 100644 index 00000000..08bc53e6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9bd.svg new file mode 100644 index 00000000..6fbe0659 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-2695-fe0f.svg new file mode 100644 index 00000000..e2f3fc6d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-2696-fe0f.svg new file mode 100644 index 00000000..214293e8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-2708-fe0f.svg new file mode 100644 index 00000000..0010ed13 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc.svg new file mode 100644 index 00000000..658aeabe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f33e.svg new file mode 100644 index 00000000..20b878f5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f373.svg new file mode 100644 index 00000000..137e7603 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f37c.svg new file mode 100644 index 00000000..46f2ea1a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f384.svg new file mode 100644 index 00000000..0a56a8b1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f393.svg new file mode 100644 index 00000000..2383bc67 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f3a4.svg new file mode 100644 index 00000000..69b4dbc2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f3a8.svg new file mode 100644 index 00000000..115850f9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f3eb.svg new file mode 100644 index 00000000..5ee09e05 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f3ed.svg new file mode 100644 index 00000000..c78c5b79 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f4bb.svg new file mode 100644 index 00000000..e87322a8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f4bc.svg new file mode 100644 index 00000000..0aa43d9d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f527.svg new file mode 100644 index 00000000..a21d33da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f52c.svg new file mode 100644 index 00000000..bb745edb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f680.svg new file mode 100644 index 00000000..d6daa5d0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f692.svg new file mode 100644 index 00000000..42308ee3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 00000000..c74eea4c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 00000000..020e414a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg new file mode 100644 index 00000000..f9acaa59 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg new file mode 100644 index 00000000..6ebf806e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9af.svg new file mode 100644 index 00000000..f28f13f2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9b0.svg new file mode 100644 index 00000000..a1d16367 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9b1.svg new file mode 100644 index 00000000..a26b39bf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9b2.svg new file mode 100644 index 00000000..116085d2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9b3.svg new file mode 100644 index 00000000..06cedb47 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9bc.svg new file mode 100644 index 00000000..be45b679 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9bd.svg new file mode 100644 index 00000000..64bf6233 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-2695-fe0f.svg new file mode 100644 index 00000000..a1f496cc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-2696-fe0f.svg new file mode 100644 index 00000000..8ebc442a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-2708-fe0f.svg new file mode 100644 index 00000000..dc52d245 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd.svg new file mode 100644 index 00000000..8c2abb3d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f33e.svg new file mode 100644 index 00000000..48a941a6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f373.svg new file mode 100644 index 00000000..1f059617 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f37c.svg new file mode 100644 index 00000000..ea5681fe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f384.svg new file mode 100644 index 00000000..16b3b33e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f393.svg new file mode 100644 index 00000000..0f2e9268 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f3a4.svg new file mode 100644 index 00000000..3dcccacc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f3a8.svg new file mode 100644 index 00000000..b6f69c8a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f3eb.svg new file mode 100644 index 00000000..2487cb6d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f3ed.svg new file mode 100644 index 00000000..8c20bdf2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f4bb.svg new file mode 100644 index 00000000..705591d2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f4bc.svg new file mode 100644 index 00000000..65b919ad --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f527.svg new file mode 100644 index 00000000..6c40125b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f52c.svg new file mode 100644 index 00000000..7a84c52f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f680.svg new file mode 100644 index 00000000..c0eefc66 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f692.svg new file mode 100644 index 00000000..6fc176c8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 00000000..6f6162c3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 00000000..92f56c75 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 00000000..064e44b4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg new file mode 100644 index 00000000..58212d4f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9af.svg new file mode 100644 index 00000000..56845736 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9b0.svg new file mode 100644 index 00000000..7d77bfd4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9b1.svg new file mode 100644 index 00000000..bc9c28d1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9b2.svg new file mode 100644 index 00000000..4d4a8625 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9b3.svg new file mode 100644 index 00000000..28b93791 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9bc.svg new file mode 100644 index 00000000..0e2b8bed --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9bd.svg new file mode 100644 index 00000000..65503708 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-2695-fe0f.svg new file mode 100644 index 00000000..9d7e1137 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-2696-fe0f.svg new file mode 100644 index 00000000..28127409 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-2708-fe0f.svg new file mode 100644 index 00000000..66c892e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe.svg new file mode 100644 index 00000000..c09f4392 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f33e.svg new file mode 100644 index 00000000..11210bf5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f373.svg new file mode 100644 index 00000000..2ebe6f84 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f37c.svg new file mode 100644 index 00000000..330c92ef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f384.svg new file mode 100644 index 00000000..4923cbf4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f393.svg new file mode 100644 index 00000000..e746f4c5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f3a4.svg new file mode 100644 index 00000000..505ac44f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f3a8.svg new file mode 100644 index 00000000..e0c3b4dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f3eb.svg new file mode 100644 index 00000000..658ef824 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f3ed.svg new file mode 100644 index 00000000..8635665e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f4bb.svg new file mode 100644 index 00000000..bd637ca0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f4bc.svg new file mode 100644 index 00000000..b3596ae1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f527.svg new file mode 100644 index 00000000..fac206ff --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f52c.svg new file mode 100644 index 00000000..b7367ad1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f680.svg new file mode 100644 index 00000000..54a4f62f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f692.svg new file mode 100644 index 00000000..1e0472d5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 00000000..e83c662e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 00000000..bee8dd51 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 00000000..66591e14 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg new file mode 100644 index 00000000..33856b49 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9af.svg new file mode 100644 index 00000000..513caf1b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9b0.svg new file mode 100644 index 00000000..0a5b536b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9b1.svg new file mode 100644 index 00000000..66c33aea --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9b2.svg new file mode 100644 index 00000000..7ab86cd7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9b3.svg new file mode 100644 index 00000000..370b6733 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9bc.svg new file mode 100644 index 00000000..99ad94b9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9bd.svg new file mode 100644 index 00000000..4f6eba07 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-2695-fe0f.svg new file mode 100644 index 00000000..aa3fd0ad --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-2696-fe0f.svg new file mode 100644 index 00000000..1aaa0a1e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-2708-fe0f.svg new file mode 100644 index 00000000..dce186ed --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff.svg new file mode 100644 index 00000000..96c5b170 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f33e.svg new file mode 100644 index 00000000..0fcee4fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f373.svg new file mode 100644 index 00000000..9344e17d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f37c.svg new file mode 100644 index 00000000..971908e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f384.svg new file mode 100644 index 00000000..9c61da6c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f393.svg new file mode 100644 index 00000000..ab35970f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f3a4.svg new file mode 100644 index 00000000..0462a6b2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f3a8.svg new file mode 100644 index 00000000..eb21722a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f3eb.svg new file mode 100644 index 00000000..95963cfa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f3ed.svg new file mode 100644 index 00000000..6fc1eae4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f466-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f466-200d-1f466.svg new file mode 100644 index 00000000..89b3ad3d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f466-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f466.svg new file mode 100644 index 00000000..26c8de97 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f467-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f467-200d-1f466.svg new file mode 100644 index 00000000..a2008f1c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f467-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f467-200d-1f467.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f467-200d-1f467.svg new file mode 100644 index 00000000..acb7b7df --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f467-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f467.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f467.svg new file mode 100644 index 00000000..4cda7514 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f466-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f466-200d-1f466.svg new file mode 100644 index 00000000..efa5db97 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f466-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f466.svg new file mode 100644 index 00000000..d3a5877d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f467-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f467-200d-1f466.svg new file mode 100644 index 00000000..4d12c1a3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f467-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f467-200d-1f467.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f467-200d-1f467.svg new file mode 100644 index 00000000..a694e429 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f467-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f467.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f467.svg new file mode 100644 index 00000000..48c4e731 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f468-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f466-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f466-200d-1f466.svg new file mode 100644 index 00000000..9c3f3da3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f466-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f466.svg new file mode 100644 index 00000000..8f5fad9f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f467-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f467-200d-1f466.svg new file mode 100644 index 00000000..88568076 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f467-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f467-200d-1f467.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f467-200d-1f467.svg new file mode 100644 index 00000000..58111c6b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f467-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f467.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f467.svg new file mode 100644 index 00000000..22a662f0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f469-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f4bb.svg new file mode 100644 index 00000000..e37b0499 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f4bc.svg new file mode 100644 index 00000000..a3f56fea --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f527.svg new file mode 100644 index 00000000..6bc505eb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f52c.svg new file mode 100644 index 00000000..02a9e121 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f680.svg new file mode 100644 index 00000000..dd97a209 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f692.svg new file mode 100644 index 00000000..cfdef73d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9af.svg new file mode 100644 index 00000000..321bc0d9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9b0.svg new file mode 100644 index 00000000..1b633b3c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9b1.svg new file mode 100644 index 00000000..6ac57434 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9b2.svg new file mode 100644 index 00000000..ea49779a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9b3.svg new file mode 100644 index 00000000..a14e3fd4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9bc.svg new file mode 100644 index 00000000..7d37c87f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9bd.svg new file mode 100644 index 00000000..b8d2858f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-2695-fe0f.svg new file mode 100644 index 00000000..627461f9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-2696-fe0f.svg new file mode 100644 index 00000000..759d3078 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-2708-fe0f.svg new file mode 100644 index 00000000..b5ed35af --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-2764-fe0f-200d-1f468.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-2764-fe0f-200d-1f468.svg new file mode 100644 index 00000000..cace24fc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-2764-fe0f-200d-1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg b/Linphone/data/emoji/emojiSvgs/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg new file mode 100644 index 00000000..41dbd968 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f468.svg b/Linphone/data/emoji/emojiSvgs/1f468.svg new file mode 100644 index 00000000..98b73b58 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f33e.svg new file mode 100644 index 00000000..5f246340 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f373.svg new file mode 100644 index 00000000..6ed4b51f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f37c.svg new file mode 100644 index 00000000..311bda9f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f384.svg new file mode 100644 index 00000000..0227456d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f393.svg new file mode 100644 index 00000000..ed106adc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f3a4.svg new file mode 100644 index 00000000..e0403c5d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f3a8.svg new file mode 100644 index 00000000..0caf0716 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f3eb.svg new file mode 100644 index 00000000..819bf36f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f3ed.svg new file mode 100644 index 00000000..0914b045 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f4bb.svg new file mode 100644 index 00000000..3ab61d8f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f4bc.svg new file mode 100644 index 00000000..ebd3e39d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f527.svg new file mode 100644 index 00000000..dd5eeb48 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f52c.svg new file mode 100644 index 00000000..a2a080b0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f680.svg new file mode 100644 index 00000000..b4e5a081 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f692.svg new file mode 100644 index 00000000..98bf8354 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 00000000..688ddedc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 00000000..a33c2de5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg new file mode 100644 index 00000000..3686c186 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg new file mode 100644 index 00000000..1180b222 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.svg new file mode 100644 index 00000000..6bab40c3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.svg new file mode 100644 index 00000000..a6584189 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.svg new file mode 100644 index 00000000..85afc927 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.svg new file mode 100644 index 00000000..43ce3ec2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9af.svg new file mode 100644 index 00000000..3c581218 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9b0.svg new file mode 100644 index 00000000..94c85fd1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9b1.svg new file mode 100644 index 00000000..a1a2ba77 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9b2.svg new file mode 100644 index 00000000..258c5149 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9b3.svg new file mode 100644 index 00000000..98fbde9f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9bc.svg new file mode 100644 index 00000000..2f240ea5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9bd.svg new file mode 100644 index 00000000..68f49e07 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-2695-fe0f.svg new file mode 100644 index 00000000..e22a0bdf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-2696-fe0f.svg new file mode 100644 index 00000000..574cad0f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-2708-fe0f.svg new file mode 100644 index 00000000..5cd08b32 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb.svg new file mode 100644 index 00000000..b44725bb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f33e.svg new file mode 100644 index 00000000..7a30a982 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f373.svg new file mode 100644 index 00000000..4ef7a7ff --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f37c.svg new file mode 100644 index 00000000..cfae280e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f384.svg new file mode 100644 index 00000000..5887d75e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f393.svg new file mode 100644 index 00000000..d045ed82 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f3a4.svg new file mode 100644 index 00000000..210cd6c4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f3a8.svg new file mode 100644 index 00000000..7d83bc06 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f3eb.svg new file mode 100644 index 00000000..2ddfeb1e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f3ed.svg new file mode 100644 index 00000000..ab815ee2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f4bb.svg new file mode 100644 index 00000000..ab3600e6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f4bc.svg new file mode 100644 index 00000000..b117aa66 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f527.svg new file mode 100644 index 00000000..5f2b878a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f52c.svg new file mode 100644 index 00000000..dfb93eec --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f680.svg new file mode 100644 index 00000000..39635e27 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f692.svg new file mode 100644 index 00000000..676cf60a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 00000000..9c9e08c1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 00000000..a4220c37 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg new file mode 100644 index 00000000..bc5805af --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg new file mode 100644 index 00000000..d96d1d93 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg new file mode 100644 index 00000000..cc7111d1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.svg new file mode 100644 index 00000000..6c9f81a9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.svg new file mode 100644 index 00000000..e00c758e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.svg new file mode 100644 index 00000000..61833c8e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9af.svg new file mode 100644 index 00000000..ad8806b3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9b0.svg new file mode 100644 index 00000000..179dedb8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9b1.svg new file mode 100644 index 00000000..4594647a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9b2.svg new file mode 100644 index 00000000..8da4ee52 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9b3.svg new file mode 100644 index 00000000..99ffa0d0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9bc.svg new file mode 100644 index 00000000..ffea3a28 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9bd.svg new file mode 100644 index 00000000..39843afd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-2695-fe0f.svg new file mode 100644 index 00000000..0bb189f4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-2696-fe0f.svg new file mode 100644 index 00000000..44cbc897 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-2708-fe0f.svg new file mode 100644 index 00000000..3fc9536f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc.svg new file mode 100644 index 00000000..7c3ba633 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f33e.svg new file mode 100644 index 00000000..841df90a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f373.svg new file mode 100644 index 00000000..c76e15f1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f37c.svg new file mode 100644 index 00000000..8e1e408c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f384.svg new file mode 100644 index 00000000..3e1853d2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f393.svg new file mode 100644 index 00000000..eead9a2f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f3a4.svg new file mode 100644 index 00000000..5e589ad9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f3a8.svg new file mode 100644 index 00000000..e97e8d9f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f3eb.svg new file mode 100644 index 00000000..2d447221 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f3ed.svg new file mode 100644 index 00000000..dd6e627f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f4bb.svg new file mode 100644 index 00000000..c036ad1e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f4bc.svg new file mode 100644 index 00000000..e89a5b11 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f527.svg new file mode 100644 index 00000000..ba2b753f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f52c.svg new file mode 100644 index 00000000..bb686deb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f680.svg new file mode 100644 index 00000000..21ff7a7a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f692.svg new file mode 100644 index 00000000..76f000c7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 00000000..973ae2ee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 00000000..6c651ec2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg new file mode 100644 index 00000000..743c1642 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg new file mode 100644 index 00000000..d6444e8c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg new file mode 100644 index 00000000..ce6b91c6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg new file mode 100644 index 00000000..8fd0c0be --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.svg new file mode 100644 index 00000000..c26f6697 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.svg new file mode 100644 index 00000000..e2176e4d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9af.svg new file mode 100644 index 00000000..c17b0ed2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9b0.svg new file mode 100644 index 00000000..7a1df80e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9b1.svg new file mode 100644 index 00000000..5434a54a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9b2.svg new file mode 100644 index 00000000..7881eb73 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9b3.svg new file mode 100644 index 00000000..25ff5151 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9bc.svg new file mode 100644 index 00000000..79834531 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9bd.svg new file mode 100644 index 00000000..c128386d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-2695-fe0f.svg new file mode 100644 index 00000000..d0b51ac6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-2696-fe0f.svg new file mode 100644 index 00000000..8a1993e3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-2708-fe0f.svg new file mode 100644 index 00000000..e1fc6c3e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd.svg new file mode 100644 index 00000000..5dba957a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f33e.svg new file mode 100644 index 00000000..7570c376 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f373.svg new file mode 100644 index 00000000..9e7522ea --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f37c.svg new file mode 100644 index 00000000..b910a877 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f384.svg new file mode 100644 index 00000000..6d94d270 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f393.svg new file mode 100644 index 00000000..4d4967b0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f3a4.svg new file mode 100644 index 00000000..de1f4f08 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f3a8.svg new file mode 100644 index 00000000..5a08cb63 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f3eb.svg new file mode 100644 index 00000000..5908aeba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f3ed.svg new file mode 100644 index 00000000..626a1f04 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f4bb.svg new file mode 100644 index 00000000..86d044ec --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f4bc.svg new file mode 100644 index 00000000..f67b33b2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f527.svg new file mode 100644 index 00000000..a3a47a08 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f52c.svg new file mode 100644 index 00000000..984578cb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f680.svg new file mode 100644 index 00000000..882cf485 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f692.svg new file mode 100644 index 00000000..5b666b0d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 00000000..6a6824ec --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 00000000..59e3f287 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 00000000..2550de8b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg new file mode 100644 index 00000000..c43d096a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg new file mode 100644 index 00000000..ddce0b44 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg new file mode 100644 index 00000000..7a12304c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg new file mode 100644 index 00000000..09b01755 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.svg new file mode 100644 index 00000000..dd4f20eb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9af.svg new file mode 100644 index 00000000..3b4b5395 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9b0.svg new file mode 100644 index 00000000..a10b4cb4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9b1.svg new file mode 100644 index 00000000..8b866fff --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9b2.svg new file mode 100644 index 00000000..3e7738c7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9b3.svg new file mode 100644 index 00000000..50ad4ea2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9bc.svg new file mode 100644 index 00000000..ba5ca054 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9bd.svg new file mode 100644 index 00000000..f481961b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-2695-fe0f.svg new file mode 100644 index 00000000..a6b5ffc4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-2696-fe0f.svg new file mode 100644 index 00000000..06110b76 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-2708-fe0f.svg new file mode 100644 index 00000000..74c44cd7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe.svg new file mode 100644 index 00000000..4539d0ee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f33e.svg new file mode 100644 index 00000000..2d1476ec --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f373.svg new file mode 100644 index 00000000..c9cafcfc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f37c.svg new file mode 100644 index 00000000..69855666 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f384.svg new file mode 100644 index 00000000..2178a33c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f393.svg new file mode 100644 index 00000000..93456597 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f3a4.svg new file mode 100644 index 00000000..c182d216 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f3a8.svg new file mode 100644 index 00000000..fc1e99ea --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f3eb.svg new file mode 100644 index 00000000..c92782c7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f3ed.svg new file mode 100644 index 00000000..599992fe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f4bb.svg new file mode 100644 index 00000000..e73241a2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f4bc.svg new file mode 100644 index 00000000..e283c008 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f527.svg new file mode 100644 index 00000000..65196942 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f52c.svg new file mode 100644 index 00000000..cdf068ba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f680.svg new file mode 100644 index 00000000..636a9fe2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f692.svg new file mode 100644 index 00000000..68589337 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 00000000..8932b8cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 00000000..cf102b7c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 00000000..7e8c4130 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg new file mode 100644 index 00000000..bcd04bf7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg new file mode 100644 index 00000000..1128ecfa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg new file mode 100644 index 00000000..3200168e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg new file mode 100644 index 00000000..9212f3c4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg new file mode 100644 index 00000000..ff7c9011 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9af.svg new file mode 100644 index 00000000..aafa3bce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9b0.svg new file mode 100644 index 00000000..1ae85c6e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9b1.svg new file mode 100644 index 00000000..c2844211 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9b2.svg new file mode 100644 index 00000000..f490be8b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9b3.svg new file mode 100644 index 00000000..cf3e39d6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9bc.svg new file mode 100644 index 00000000..39f0c6a7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9bd.svg new file mode 100644 index 00000000..4eea4dc7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-2695-fe0f.svg new file mode 100644 index 00000000..7db92127 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-2696-fe0f.svg new file mode 100644 index 00000000..4fe0541f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-2708-fe0f.svg new file mode 100644 index 00000000..1f4a7b6d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff.svg new file mode 100644 index 00000000..ac43b9ef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f33e.svg new file mode 100644 index 00000000..c8974b5e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f373.svg new file mode 100644 index 00000000..962deccd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f37c.svg new file mode 100644 index 00000000..c13cc537 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f384.svg new file mode 100644 index 00000000..6cabe582 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f393.svg new file mode 100644 index 00000000..47ad3e7c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f3a4.svg new file mode 100644 index 00000000..8aa5e4ce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f3a8.svg new file mode 100644 index 00000000..6d4807ee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f3eb.svg new file mode 100644 index 00000000..9a3e5445 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f3ed.svg new file mode 100644 index 00000000..064bfd4d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f466-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f466-200d-1f466.svg new file mode 100644 index 00000000..a10b0190 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f466-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f466.svg new file mode 100644 index 00000000..6ae66b64 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f467-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f467-200d-1f466.svg new file mode 100644 index 00000000..710fb8e5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f467-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f467-200d-1f467.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f467-200d-1f467.svg new file mode 100644 index 00000000..88da46ee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f467-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f467.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f467.svg new file mode 100644 index 00000000..43e4333f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f466-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f466-200d-1f466.svg new file mode 100644 index 00000000..8915200c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f466-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f466.svg new file mode 100644 index 00000000..8cd8bad8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f467-200d-1f466.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f467-200d-1f466.svg new file mode 100644 index 00000000..976e8481 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f467-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f467-200d-1f467.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f467-200d-1f467.svg new file mode 100644 index 00000000..96e0434e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f467-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f467.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f467.svg new file mode 100644 index 00000000..9201b66c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f469-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f4bb.svg new file mode 100644 index 00000000..c69729f3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f4bc.svg new file mode 100644 index 00000000..9f41d662 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f527.svg new file mode 100644 index 00000000..24b16096 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f52c.svg new file mode 100644 index 00000000..9597ebca --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f680.svg new file mode 100644 index 00000000..c4fdde46 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f692.svg new file mode 100644 index 00000000..cbde12ec --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9af.svg new file mode 100644 index 00000000..fe555873 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9b0.svg new file mode 100644 index 00000000..68367e8f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9b1.svg new file mode 100644 index 00000000..62cc26b1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9b2.svg new file mode 100644 index 00000000..3fd10040 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9b3.svg new file mode 100644 index 00000000..1ce720e8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9bc.svg new file mode 100644 index 00000000..6706ec81 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9bd.svg new file mode 100644 index 00000000..1d6b02cf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-2695-fe0f.svg new file mode 100644 index 00000000..efe29092 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-2696-fe0f.svg new file mode 100644 index 00000000..e8b489a7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-2708-fe0f.svg new file mode 100644 index 00000000..953b06fd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-2764-fe0f-200d-1f468.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-2764-fe0f-200d-1f468.svg new file mode 100644 index 00000000..ece280dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-2764-fe0f-200d-1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-2764-fe0f-200d-1f469.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-2764-fe0f-200d-1f469.svg new file mode 100644 index 00000000..62abb03e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-2764-fe0f-200d-1f469.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg new file mode 100644 index 00000000..8248ed60 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg b/Linphone/data/emoji/emojiSvgs/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg new file mode 100644 index 00000000..e46dfcae --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f469.svg b/Linphone/data/emoji/emojiSvgs/1f469.svg new file mode 100644 index 00000000..41785677 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f469.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46a.svg b/Linphone/data/emoji/emojiSvgs/1f46a.svg new file mode 100644 index 00000000..945b1a84 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46b-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f46b-1f3fb.svg new file mode 100644 index 00000000..2cc10f95 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46b-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f46b-1f3fc.svg new file mode 100644 index 00000000..894d7220 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46b-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f46b-1f3fd.svg new file mode 100644 index 00000000..4496ef51 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46b-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f46b-1f3fe.svg new file mode 100644 index 00000000..25cbd995 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46b-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f46b-1f3ff.svg new file mode 100644 index 00000000..f4be2772 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46b.svg b/Linphone/data/emoji/emojiSvgs/1f46b.svg new file mode 100644 index 00000000..59ca8c08 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46c-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f46c-1f3fb.svg new file mode 100644 index 00000000..2050ca35 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46c-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f46c-1f3fc.svg new file mode 100644 index 00000000..05701083 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46c-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f46c-1f3fd.svg new file mode 100644 index 00000000..b00c6be0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46c-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f46c-1f3fe.svg new file mode 100644 index 00000000..58302a87 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46c-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f46c-1f3ff.svg new file mode 100644 index 00000000..c7dddadf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46c.svg b/Linphone/data/emoji/emojiSvgs/1f46c.svg new file mode 100644 index 00000000..87280c14 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46d-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f46d-1f3fb.svg new file mode 100644 index 00000000..e3e1a4a5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46d-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f46d-1f3fc.svg new file mode 100644 index 00000000..782875a0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46d-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f46d-1f3fd.svg new file mode 100644 index 00000000..f69bbc06 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46d-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f46d-1f3fe.svg new file mode 100644 index 00000000..f14ac947 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46d-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f46d-1f3ff.svg new file mode 100644 index 00000000..d8e8432d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46d.svg b/Linphone/data/emoji/emojiSvgs/1f46d.svg new file mode 100644 index 00000000..91a55c38 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..3b9cc978 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..25c4c81c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fb.svg new file mode 100644 index 00000000..a7041d07 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..e3f37cb4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..b2c47839 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fc.svg new file mode 100644 index 00000000..18883fa7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..77b19743 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..7e5e4b5d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fd.svg new file mode 100644 index 00000000..333abdab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..d40f400c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..e817083a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fe.svg new file mode 100644 index 00000000..cfd4fcda --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..43b98a0e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..440cb510 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f46e-1f3ff.svg new file mode 100644 index 00000000..339c56b9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46e-200d-2640-fe0f.svg new file mode 100644 index 00000000..6b0fac22 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46e-200d-2642-fe0f.svg new file mode 100644 index 00000000..2974c984 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46e.svg b/Linphone/data/emoji/emojiSvgs/1f46e.svg new file mode 100644 index 00000000..feaeb0b9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46f-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46f-200d-2640-fe0f.svg new file mode 100644 index 00000000..7c7fe7df --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46f-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46f-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f46f-200d-2642-fe0f.svg new file mode 100644 index 00000000..13717aac --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46f-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f46f.svg b/Linphone/data/emoji/emojiSvgs/1f46f.svg new file mode 100644 index 00000000..062ff266 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f46f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..6e0b0fe3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..84c773ab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3fb.svg new file mode 100644 index 00000000..e8c6cd06 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..ee4102b6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..f894e261 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3fc.svg new file mode 100644 index 00000000..511c7aa8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..3d7605dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..f1b941d1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3fd.svg new file mode 100644 index 00000000..4fc12eb5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..1e33374c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..1c8135c9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3fe.svg new file mode 100644 index 00000000..c30f3c09 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..656a9b71 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..2c090f1a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f470-1f3ff.svg new file mode 100644 index 00000000..9e0f2a25 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f470-200d-2640-fe0f.svg new file mode 100644 index 00000000..2fd75bfe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f470-200d-2642-fe0f.svg new file mode 100644 index 00000000..d12c670e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f470.svg b/Linphone/data/emoji/emojiSvgs/1f470.svg new file mode 100644 index 00000000..a41b9b99 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f470.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..e9427e1d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..8a5a3299 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3fb.svg new file mode 100644 index 00000000..2bbee729 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..7c3ba633 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..8455a9ed --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3fc.svg new file mode 100644 index 00000000..9030253e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..ae6c4f82 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..4332b5b1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3fd.svg new file mode 100644 index 00000000..52d178ff --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..33a7c3a0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..c8461a98 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3fe.svg new file mode 100644 index 00000000..5fbbad14 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..7d3745fe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..f91a87fe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f471-1f3ff.svg new file mode 100644 index 00000000..323178b9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f471-200d-2640-fe0f.svg new file mode 100644 index 00000000..2fec72cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f471-200d-2642-fe0f.svg new file mode 100644 index 00000000..f73f9f5b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f471.svg b/Linphone/data/emoji/emojiSvgs/1f471.svg new file mode 100644 index 00000000..b524f21e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f471.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f472-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f472-1f3fb.svg new file mode 100644 index 00000000..598b23cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f472-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f472-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f472-1f3fc.svg new file mode 100644 index 00000000..f57b59f1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f472-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f472-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f472-1f3fd.svg new file mode 100644 index 00000000..a4f37c4f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f472-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f472-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f472-1f3fe.svg new file mode 100644 index 00000000..83322d69 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f472-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f472-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f472-1f3ff.svg new file mode 100644 index 00000000..e1ae612f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f472-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f472.svg b/Linphone/data/emoji/emojiSvgs/1f472.svg new file mode 100644 index 00000000..7ed6bd53 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f472.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..f93ddcc6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..bb59f119 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3fb.svg new file mode 100644 index 00000000..060fcd51 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..be21bc7d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..3e748c39 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3fc.svg new file mode 100644 index 00000000..3ad2dd13 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..61590f02 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..2373c1dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3fd.svg new file mode 100644 index 00000000..6f11f533 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..cf5b0692 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..bc680e6d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3fe.svg new file mode 100644 index 00000000..165a9750 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..20c6ba1c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..6f0f3c59 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f473-1f3ff.svg new file mode 100644 index 00000000..74fc855e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f473-200d-2640-fe0f.svg new file mode 100644 index 00000000..9fe3052c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f473-200d-2642-fe0f.svg new file mode 100644 index 00000000..5ef43d40 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f473.svg b/Linphone/data/emoji/emojiSvgs/1f473.svg new file mode 100644 index 00000000..216ebcc3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f473.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f474-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f474-1f3fb.svg new file mode 100644 index 00000000..307f6c9a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f474-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f474-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f474-1f3fc.svg new file mode 100644 index 00000000..6b3b908b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f474-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f474-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f474-1f3fd.svg new file mode 100644 index 00000000..1ab3c23c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f474-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f474-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f474-1f3fe.svg new file mode 100644 index 00000000..2fb9707f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f474-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f474-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f474-1f3ff.svg new file mode 100644 index 00000000..e421b117 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f474-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f474.svg b/Linphone/data/emoji/emojiSvgs/1f474.svg new file mode 100644 index 00000000..eecf20c7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f474.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f475-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f475-1f3fb.svg new file mode 100644 index 00000000..d55f164c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f475-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f475-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f475-1f3fc.svg new file mode 100644 index 00000000..41b7da72 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f475-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f475-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f475-1f3fd.svg new file mode 100644 index 00000000..955ae93f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f475-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f475-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f475-1f3fe.svg new file mode 100644 index 00000000..adb2c20b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f475-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f475-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f475-1f3ff.svg new file mode 100644 index 00000000..98b4bf83 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f475-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f475.svg b/Linphone/data/emoji/emojiSvgs/1f475.svg new file mode 100644 index 00000000..51867613 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f475.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f476-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f476-1f3fb.svg new file mode 100644 index 00000000..44510c6a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f476-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f476-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f476-1f3fc.svg new file mode 100644 index 00000000..fe37aa3a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f476-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f476-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f476-1f3fd.svg new file mode 100644 index 00000000..fe23a4af --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f476-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f476-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f476-1f3fe.svg new file mode 100644 index 00000000..492d7408 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f476-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f476-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f476-1f3ff.svg new file mode 100644 index 00000000..66853c96 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f476-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f476.svg b/Linphone/data/emoji/emojiSvgs/1f476.svg new file mode 100644 index 00000000..e065d3b4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f476.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..52408815 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..bbe5b3aa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3fb.svg new file mode 100644 index 00000000..cfc25654 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..1f1a29cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..de967317 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3fc.svg new file mode 100644 index 00000000..e19ba61b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..59412f2f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..a7c900da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3fd.svg new file mode 100644 index 00000000..59ca2e2b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..8fb9e378 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..4fa4d68c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3fe.svg new file mode 100644 index 00000000..a090efe5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..23c567e2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..a4943218 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f477-1f3ff.svg new file mode 100644 index 00000000..2838ca15 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f477-200d-2640-fe0f.svg new file mode 100644 index 00000000..ecfd1b82 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f477-200d-2642-fe0f.svg new file mode 100644 index 00000000..d1e6b36d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f477.svg b/Linphone/data/emoji/emojiSvgs/1f477.svg new file mode 100644 index 00000000..5843060c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f477.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f478-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f478-1f3fb.svg new file mode 100644 index 00000000..55dac0b1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f478-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f478-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f478-1f3fc.svg new file mode 100644 index 00000000..2a4b944e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f478-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f478-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f478-1f3fd.svg new file mode 100644 index 00000000..ee321355 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f478-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f478-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f478-1f3fe.svg new file mode 100644 index 00000000..33437aab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f478-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f478-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f478-1f3ff.svg new file mode 100644 index 00000000..2bd03cc1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f478-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f478.svg b/Linphone/data/emoji/emojiSvgs/1f478.svg new file mode 100644 index 00000000..9704853c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f478.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f479.svg b/Linphone/data/emoji/emojiSvgs/1f479.svg new file mode 100644 index 00000000..59babb15 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f479.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f47a.svg b/Linphone/data/emoji/emojiSvgs/1f47a.svg new file mode 100644 index 00000000..bb0db744 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f47a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f47b.svg b/Linphone/data/emoji/emojiSvgs/1f47b.svg new file mode 100644 index 00000000..02e70fab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f47b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f47c-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f47c-1f3fb.svg new file mode 100644 index 00000000..7a20bd07 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f47c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f47c-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f47c-1f3fc.svg new file mode 100644 index 00000000..5e63fc02 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f47c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f47c-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f47c-1f3fd.svg new file mode 100644 index 00000000..17ed0f60 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f47c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f47c-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f47c-1f3fe.svg new file mode 100644 index 00000000..208876d8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f47c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f47c-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f47c-1f3ff.svg new file mode 100644 index 00000000..add44627 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f47c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f47c.svg b/Linphone/data/emoji/emojiSvgs/1f47c.svg new file mode 100644 index 00000000..1233b93a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f47c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f47d.svg b/Linphone/data/emoji/emojiSvgs/1f47d.svg new file mode 100644 index 00000000..f6e98d1c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f47d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f47e.svg b/Linphone/data/emoji/emojiSvgs/1f47e.svg new file mode 100644 index 00000000..cda34441 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f47e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f47f.svg b/Linphone/data/emoji/emojiSvgs/1f47f.svg new file mode 100644 index 00000000..61097f02 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f47f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f480.svg b/Linphone/data/emoji/emojiSvgs/1f480.svg new file mode 100644 index 00000000..a8000b15 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f480.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..c3f18727 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..1b649a27 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3fb.svg new file mode 100644 index 00000000..b8c32493 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..c3e88dcd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..49c9b730 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3fc.svg new file mode 100644 index 00000000..ec37e7d5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..8b53b300 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..bee2e017 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3fd.svg new file mode 100644 index 00000000..793093f4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..11e4e832 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..70d2da2c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3fe.svg new file mode 100644 index 00000000..65df7b42 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..e55c1edd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..7fcad0d8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f481-1f3ff.svg new file mode 100644 index 00000000..9d3ea6cf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f481-200d-2640-fe0f.svg new file mode 100644 index 00000000..7a4864fd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f481-200d-2642-fe0f.svg new file mode 100644 index 00000000..1bb54337 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f481.svg b/Linphone/data/emoji/emojiSvgs/1f481.svg new file mode 100644 index 00000000..eeffd85d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f481.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..99f1919a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..c15d824f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3fb.svg new file mode 100644 index 00000000..3f7f82f6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..04f10dd1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..1e6689e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3fc.svg new file mode 100644 index 00000000..2dc74688 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..ebddd61b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..268da548 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3fd.svg new file mode 100644 index 00000000..96779eeb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..667d9ef9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..88b6c0f8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3fe.svg new file mode 100644 index 00000000..2493a139 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..208fa74e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..831d1986 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f482-1f3ff.svg new file mode 100644 index 00000000..40b130b5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f482-200d-2640-fe0f.svg new file mode 100644 index 00000000..e8a33883 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f482-200d-2642-fe0f.svg new file mode 100644 index 00000000..e8998c59 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f482.svg b/Linphone/data/emoji/emojiSvgs/1f482.svg new file mode 100644 index 00000000..d809a9f7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f482.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f483-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f483-1f3fb.svg new file mode 100644 index 00000000..72c8f2ce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f483-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f483-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f483-1f3fc.svg new file mode 100644 index 00000000..972ac6a5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f483-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f483-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f483-1f3fd.svg new file mode 100644 index 00000000..50377b68 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f483-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f483-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f483-1f3fe.svg new file mode 100644 index 00000000..e4dde292 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f483-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f483-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f483-1f3ff.svg new file mode 100644 index 00000000..ac535068 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f483-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f483.svg b/Linphone/data/emoji/emojiSvgs/1f483.svg new file mode 100644 index 00000000..abc19e5f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f483.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f484.svg b/Linphone/data/emoji/emojiSvgs/1f484.svg new file mode 100644 index 00000000..af7e8616 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f484.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f485-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f485-1f3fb.svg new file mode 100644 index 00000000..5cfe6e9d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f485-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f485-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f485-1f3fc.svg new file mode 100644 index 00000000..af54b518 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f485-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f485-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f485-1f3fd.svg new file mode 100644 index 00000000..e1d99274 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f485-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f485-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f485-1f3fe.svg new file mode 100644 index 00000000..18fea631 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f485-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f485-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f485-1f3ff.svg new file mode 100644 index 00000000..49176735 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f485-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f485.svg b/Linphone/data/emoji/emojiSvgs/1f485.svg new file mode 100644 index 00000000..2ddba936 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f485.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..28d27e29 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..92d7d0b5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3fb.svg new file mode 100644 index 00000000..3e6ec649 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..dad79ad1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..4627172b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3fc.svg new file mode 100644 index 00000000..6c9d96ce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..407d11b3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..e30946fe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3fd.svg new file mode 100644 index 00000000..82205d5a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..defbf61f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..e7d5b9d8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3fe.svg new file mode 100644 index 00000000..923f580d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..793967fd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..36fa5f90 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f486-1f3ff.svg new file mode 100644 index 00000000..c03123b2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f486-200d-2640-fe0f.svg new file mode 100644 index 00000000..de2053b8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f486-200d-2642-fe0f.svg new file mode 100644 index 00000000..39bb75b2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f486.svg b/Linphone/data/emoji/emojiSvgs/1f486.svg new file mode 100644 index 00000000..57e35884 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f486.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..3d2a27c6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..d50a4298 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3fb.svg new file mode 100644 index 00000000..acafd9bb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..fc156536 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..bc4c86b6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3fc.svg new file mode 100644 index 00000000..e3665ec1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..c2d9ec71 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..89651cdb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3fd.svg new file mode 100644 index 00000000..45bb2f1a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..ed2374cf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..8deb60db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3fe.svg new file mode 100644 index 00000000..39623cc0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..b8b4754c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..ba85114d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f487-1f3ff.svg new file mode 100644 index 00000000..1840045c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f487-200d-2640-fe0f.svg new file mode 100644 index 00000000..8bfab801 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f487-200d-2642-fe0f.svg new file mode 100644 index 00000000..e3bc6d90 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f487.svg b/Linphone/data/emoji/emojiSvgs/1f487.svg new file mode 100644 index 00000000..1957fa0f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f487.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f488.svg b/Linphone/data/emoji/emojiSvgs/1f488.svg new file mode 100644 index 00000000..33ed3328 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f488.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f489.svg b/Linphone/data/emoji/emojiSvgs/1f489.svg new file mode 100644 index 00000000..ef9c72c7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f489.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f48a.svg b/Linphone/data/emoji/emojiSvgs/1f48a.svg new file mode 100644 index 00000000..931839bf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f48a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f48b.svg b/Linphone/data/emoji/emojiSvgs/1f48b.svg new file mode 100644 index 00000000..f71fc97f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f48b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f48c.svg b/Linphone/data/emoji/emojiSvgs/1f48c.svg new file mode 100644 index 00000000..0734ecf2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f48c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f48d.svg b/Linphone/data/emoji/emojiSvgs/1f48d.svg new file mode 100644 index 00000000..08341659 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f48d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f48e.svg b/Linphone/data/emoji/emojiSvgs/1f48e.svg new file mode 100644 index 00000000..a379f719 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f48e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f48f.svg b/Linphone/data/emoji/emojiSvgs/1f48f.svg new file mode 100644 index 00000000..69cec3c6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f48f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f490.svg b/Linphone/data/emoji/emojiSvgs/1f490.svg new file mode 100644 index 00000000..f080ef7f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f490.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f491.svg b/Linphone/data/emoji/emojiSvgs/1f491.svg new file mode 100644 index 00000000..73a30e93 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f491.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f492.svg b/Linphone/data/emoji/emojiSvgs/1f492.svg new file mode 100644 index 00000000..974ddac8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f492.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f493.svg b/Linphone/data/emoji/emojiSvgs/1f493.svg new file mode 100644 index 00000000..404a6e76 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f493.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f494.svg b/Linphone/data/emoji/emojiSvgs/1f494.svg new file mode 100644 index 00000000..d50c7704 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f494.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f495.svg b/Linphone/data/emoji/emojiSvgs/1f495.svg new file mode 100644 index 00000000..b4b3216f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f495.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f496.svg b/Linphone/data/emoji/emojiSvgs/1f496.svg new file mode 100644 index 00000000..aa3abbca --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f496.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f497.svg b/Linphone/data/emoji/emojiSvgs/1f497.svg new file mode 100644 index 00000000..295f9d48 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f497.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f498.svg b/Linphone/data/emoji/emojiSvgs/1f498.svg new file mode 100644 index 00000000..32d819fe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f498.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f499.svg b/Linphone/data/emoji/emojiSvgs/1f499.svg new file mode 100644 index 00000000..9eade121 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f499.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f49a.svg b/Linphone/data/emoji/emojiSvgs/1f49a.svg new file mode 100644 index 00000000..b81f7029 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f49a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f49b.svg b/Linphone/data/emoji/emojiSvgs/1f49b.svg new file mode 100644 index 00000000..e57e2444 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f49b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f49c.svg b/Linphone/data/emoji/emojiSvgs/1f49c.svg new file mode 100644 index 00000000..f1dc073c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f49c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f49d.svg b/Linphone/data/emoji/emojiSvgs/1f49d.svg new file mode 100644 index 00000000..5db2632f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f49d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f49e.svg b/Linphone/data/emoji/emojiSvgs/1f49e.svg new file mode 100644 index 00000000..b9459b7d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f49e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f49f.svg b/Linphone/data/emoji/emojiSvgs/1f49f.svg new file mode 100644 index 00000000..71adb414 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f49f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4a0.svg b/Linphone/data/emoji/emojiSvgs/1f4a0.svg new file mode 100644 index 00000000..9c805656 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4a1.svg b/Linphone/data/emoji/emojiSvgs/1f4a1.svg new file mode 100644 index 00000000..88b62e38 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4a2.svg b/Linphone/data/emoji/emojiSvgs/1f4a2.svg new file mode 100644 index 00000000..78f797b3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4a2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4a3.svg b/Linphone/data/emoji/emojiSvgs/1f4a3.svg new file mode 100644 index 00000000..feb2c9d2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4a3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4a4.svg b/Linphone/data/emoji/emojiSvgs/1f4a4.svg new file mode 100644 index 00000000..b713e97a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4a5.svg b/Linphone/data/emoji/emojiSvgs/1f4a5.svg new file mode 100644 index 00000000..36c50d63 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4a6.svg b/Linphone/data/emoji/emojiSvgs/1f4a6.svg new file mode 100644 index 00000000..fd53cd84 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4a6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4a7.svg b/Linphone/data/emoji/emojiSvgs/1f4a7.svg new file mode 100644 index 00000000..3116ec31 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4a8.svg b/Linphone/data/emoji/emojiSvgs/1f4a8.svg new file mode 100644 index 00000000..006e04ad --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4a9.svg b/Linphone/data/emoji/emojiSvgs/1f4a9.svg new file mode 100644 index 00000000..19221f6a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4aa-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f4aa-1f3fb.svg new file mode 100644 index 00000000..2627eea6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4aa-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4aa-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f4aa-1f3fc.svg new file mode 100644 index 00000000..2cac971b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4aa-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4aa-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f4aa-1f3fd.svg new file mode 100644 index 00000000..68f6b750 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4aa-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4aa-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f4aa-1f3fe.svg new file mode 100644 index 00000000..c773c672 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4aa-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4aa-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f4aa-1f3ff.svg new file mode 100644 index 00000000..16efbe0f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4aa-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4aa.svg b/Linphone/data/emoji/emojiSvgs/1f4aa.svg new file mode 100644 index 00000000..7b4c1206 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4ab.svg b/Linphone/data/emoji/emojiSvgs/1f4ab.svg new file mode 100644 index 00000000..af3261c2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4ac.svg b/Linphone/data/emoji/emojiSvgs/1f4ac.svg new file mode 100644 index 00000000..11533c5b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4ac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4ad.svg b/Linphone/data/emoji/emojiSvgs/1f4ad.svg new file mode 100644 index 00000000..f3d835c8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4ae.svg b/Linphone/data/emoji/emojiSvgs/1f4ae.svg new file mode 100644 index 00000000..7f8b5287 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4af.svg b/Linphone/data/emoji/emojiSvgs/1f4af.svg new file mode 100644 index 00000000..3d565cc6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4b0.svg b/Linphone/data/emoji/emojiSvgs/1f4b0.svg new file mode 100644 index 00000000..5b41c52d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4b1.svg b/Linphone/data/emoji/emojiSvgs/1f4b1.svg new file mode 100644 index 00000000..b67b0cd4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4b2.svg b/Linphone/data/emoji/emojiSvgs/1f4b2.svg new file mode 100644 index 00000000..1bc1ead4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4b3.svg b/Linphone/data/emoji/emojiSvgs/1f4b3.svg new file mode 100644 index 00000000..97641af4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4b4.svg b/Linphone/data/emoji/emojiSvgs/1f4b4.svg new file mode 100644 index 00000000..747870e0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4b4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4b5.svg b/Linphone/data/emoji/emojiSvgs/1f4b5.svg new file mode 100644 index 00000000..1c68944a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4b5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4b6.svg b/Linphone/data/emoji/emojiSvgs/1f4b6.svg new file mode 100644 index 00000000..afd8b715 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4b7.svg b/Linphone/data/emoji/emojiSvgs/1f4b7.svg new file mode 100644 index 00000000..ff5c5a44 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4b7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4b8.svg b/Linphone/data/emoji/emojiSvgs/1f4b8.svg new file mode 100644 index 00000000..8b6fa109 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4b8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4b9.svg b/Linphone/data/emoji/emojiSvgs/1f4b9.svg new file mode 100644 index 00000000..f6143a06 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4b9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4ba.svg b/Linphone/data/emoji/emojiSvgs/1f4ba.svg new file mode 100644 index 00000000..ab311bc7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f4bb.svg new file mode 100644 index 00000000..93357fa2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f4bc.svg new file mode 100644 index 00000000..c5336c75 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4bd.svg b/Linphone/data/emoji/emojiSvgs/1f4bd.svg new file mode 100644 index 00000000..a557b9bf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4be.svg b/Linphone/data/emoji/emojiSvgs/1f4be.svg new file mode 100644 index 00000000..7c976269 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4bf.svg b/Linphone/data/emoji/emojiSvgs/1f4bf.svg new file mode 100644 index 00000000..6824a064 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4c0.svg b/Linphone/data/emoji/emojiSvgs/1f4c0.svg new file mode 100644 index 00000000..1b3b38b8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4c1.svg b/Linphone/data/emoji/emojiSvgs/1f4c1.svg new file mode 100644 index 00000000..099d58ba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4c1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4c2.svg b/Linphone/data/emoji/emojiSvgs/1f4c2.svg new file mode 100644 index 00000000..60ec3794 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4c3.svg b/Linphone/data/emoji/emojiSvgs/1f4c3.svg new file mode 100644 index 00000000..bf19ad29 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4c4.svg b/Linphone/data/emoji/emojiSvgs/1f4c4.svg new file mode 100644 index 00000000..4631bc53 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4c5.svg b/Linphone/data/emoji/emojiSvgs/1f4c5.svg new file mode 100644 index 00000000..476a9506 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4c6.svg b/Linphone/data/emoji/emojiSvgs/1f4c6.svg new file mode 100644 index 00000000..b2de8c5c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4c6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4c7.svg b/Linphone/data/emoji/emojiSvgs/1f4c7.svg new file mode 100644 index 00000000..097a7151 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4c7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4c8.svg b/Linphone/data/emoji/emojiSvgs/1f4c8.svg new file mode 100644 index 00000000..cbf108fc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4c8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4c9.svg b/Linphone/data/emoji/emojiSvgs/1f4c9.svg new file mode 100644 index 00000000..ac8c258c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4c9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4ca.svg b/Linphone/data/emoji/emojiSvgs/1f4ca.svg new file mode 100644 index 00000000..3c572cb8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4ca.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4cb.svg b/Linphone/data/emoji/emojiSvgs/1f4cb.svg new file mode 100644 index 00000000..a51b34a9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4cb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4cc.svg b/Linphone/data/emoji/emojiSvgs/1f4cc.svg new file mode 100644 index 00000000..2ab6da3e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4cd.svg b/Linphone/data/emoji/emojiSvgs/1f4cd.svg new file mode 100644 index 00000000..8ab3159c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4cd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4ce.svg b/Linphone/data/emoji/emojiSvgs/1f4ce.svg new file mode 100644 index 00000000..284cf667 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4cf.svg b/Linphone/data/emoji/emojiSvgs/1f4cf.svg new file mode 100644 index 00000000..37b035b2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4d0.svg b/Linphone/data/emoji/emojiSvgs/1f4d0.svg new file mode 100644 index 00000000..b3651501 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4d0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4d1.svg b/Linphone/data/emoji/emojiSvgs/1f4d1.svg new file mode 100644 index 00000000..b3bdc36c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4d2.svg b/Linphone/data/emoji/emojiSvgs/1f4d2.svg new file mode 100644 index 00000000..ee15b168 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4d3.svg b/Linphone/data/emoji/emojiSvgs/1f4d3.svg new file mode 100644 index 00000000..b6f49c05 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4d4.svg b/Linphone/data/emoji/emojiSvgs/1f4d4.svg new file mode 100644 index 00000000..2bfc4cad --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4d4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4d5.svg b/Linphone/data/emoji/emojiSvgs/1f4d5.svg new file mode 100644 index 00000000..701ff017 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4d5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4d6.svg b/Linphone/data/emoji/emojiSvgs/1f4d6.svg new file mode 100644 index 00000000..0dfd0832 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4d6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4d7.svg b/Linphone/data/emoji/emojiSvgs/1f4d7.svg new file mode 100644 index 00000000..ff747447 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4d7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4d8.svg b/Linphone/data/emoji/emojiSvgs/1f4d8.svg new file mode 100644 index 00000000..ce459283 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4d8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4d9.svg b/Linphone/data/emoji/emojiSvgs/1f4d9.svg new file mode 100644 index 00000000..b055f66b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4d9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4da.svg b/Linphone/data/emoji/emojiSvgs/1f4da.svg new file mode 100644 index 00000000..422d3884 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4da.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4db.svg b/Linphone/data/emoji/emojiSvgs/1f4db.svg new file mode 100644 index 00000000..00f1a106 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4db.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4dc.svg b/Linphone/data/emoji/emojiSvgs/1f4dc.svg new file mode 100644 index 00000000..2a7fd37d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4dd.svg b/Linphone/data/emoji/emojiSvgs/1f4dd.svg new file mode 100644 index 00000000..1697ffbe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4dd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4de.svg b/Linphone/data/emoji/emojiSvgs/1f4de.svg new file mode 100644 index 00000000..cfaf7ca8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4df.svg b/Linphone/data/emoji/emojiSvgs/1f4df.svg new file mode 100644 index 00000000..d7d4b5fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4df.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4e0.svg b/Linphone/data/emoji/emojiSvgs/1f4e0.svg new file mode 100644 index 00000000..5f88b133 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4e1.svg b/Linphone/data/emoji/emojiSvgs/1f4e1.svg new file mode 100644 index 00000000..dcb02946 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4e2.svg b/Linphone/data/emoji/emojiSvgs/1f4e2.svg new file mode 100644 index 00000000..8bd0c94f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4e3.svg b/Linphone/data/emoji/emojiSvgs/1f4e3.svg new file mode 100644 index 00000000..20cbc7d4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4e4.svg b/Linphone/data/emoji/emojiSvgs/1f4e4.svg new file mode 100644 index 00000000..62d9033e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4e5.svg b/Linphone/data/emoji/emojiSvgs/1f4e5.svg new file mode 100644 index 00000000..921ca18a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4e5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4e6.svg b/Linphone/data/emoji/emojiSvgs/1f4e6.svg new file mode 100644 index 00000000..1ce09611 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4e7.svg b/Linphone/data/emoji/emojiSvgs/1f4e7.svg new file mode 100644 index 00000000..d8ce780c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4e8.svg b/Linphone/data/emoji/emojiSvgs/1f4e8.svg new file mode 100644 index 00000000..7c59e93a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4e9.svg b/Linphone/data/emoji/emojiSvgs/1f4e9.svg new file mode 100644 index 00000000..1847cd13 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4ea.svg b/Linphone/data/emoji/emojiSvgs/1f4ea.svg new file mode 100644 index 00000000..54f609e9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4eb.svg b/Linphone/data/emoji/emojiSvgs/1f4eb.svg new file mode 100644 index 00000000..79ea795a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4ec.svg b/Linphone/data/emoji/emojiSvgs/1f4ec.svg new file mode 100644 index 00000000..27d6ebe6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4ed.svg b/Linphone/data/emoji/emojiSvgs/1f4ed.svg new file mode 100644 index 00000000..4e969c95 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4ee.svg b/Linphone/data/emoji/emojiSvgs/1f4ee.svg new file mode 100644 index 00000000..61c0332d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4ef.svg b/Linphone/data/emoji/emojiSvgs/1f4ef.svg new file mode 100644 index 00000000..2fa1e2d4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4f0.svg b/Linphone/data/emoji/emojiSvgs/1f4f0.svg new file mode 100644 index 00000000..a97d4771 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4f1.svg b/Linphone/data/emoji/emojiSvgs/1f4f1.svg new file mode 100644 index 00000000..81c4e99c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4f2.svg b/Linphone/data/emoji/emojiSvgs/1f4f2.svg new file mode 100644 index 00000000..82f5293e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4f3.svg b/Linphone/data/emoji/emojiSvgs/1f4f3.svg new file mode 100644 index 00000000..287d5a9d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4f4.svg b/Linphone/data/emoji/emojiSvgs/1f4f4.svg new file mode 100644 index 00000000..fc2d2cd4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4f5.svg b/Linphone/data/emoji/emojiSvgs/1f4f5.svg new file mode 100644 index 00000000..fdbab38c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4f6.svg b/Linphone/data/emoji/emojiSvgs/1f4f6.svg new file mode 100644 index 00000000..df646fd3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4f7.svg b/Linphone/data/emoji/emojiSvgs/1f4f7.svg new file mode 100644 index 00000000..aa2d9c50 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4f8.svg b/Linphone/data/emoji/emojiSvgs/1f4f8.svg new file mode 100644 index 00000000..9bf3cf70 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4f9.svg b/Linphone/data/emoji/emojiSvgs/1f4f9.svg new file mode 100644 index 00000000..f1abb590 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4fa.svg b/Linphone/data/emoji/emojiSvgs/1f4fa.svg new file mode 100644 index 00000000..5f864dee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4fb.svg b/Linphone/data/emoji/emojiSvgs/1f4fb.svg new file mode 100644 index 00000000..33808ad7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4fc.svg b/Linphone/data/emoji/emojiSvgs/1f4fc.svg new file mode 100644 index 00000000..31024baf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4fd.svg b/Linphone/data/emoji/emojiSvgs/1f4fd.svg new file mode 100644 index 00000000..b12b42ce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f4ff.svg b/Linphone/data/emoji/emojiSvgs/1f4ff.svg new file mode 100644 index 00000000..a38a8e27 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f4ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f500.svg b/Linphone/data/emoji/emojiSvgs/1f500.svg new file mode 100644 index 00000000..43f78bc4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f500.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f501.svg b/Linphone/data/emoji/emojiSvgs/1f501.svg new file mode 100644 index 00000000..27efdab8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f501.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f502.svg b/Linphone/data/emoji/emojiSvgs/1f502.svg new file mode 100644 index 00000000..926d8965 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f502.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f503.svg b/Linphone/data/emoji/emojiSvgs/1f503.svg new file mode 100644 index 00000000..e35eb881 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f503.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f504.svg b/Linphone/data/emoji/emojiSvgs/1f504.svg new file mode 100644 index 00000000..c88a827c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f504.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f505.svg b/Linphone/data/emoji/emojiSvgs/1f505.svg new file mode 100644 index 00000000..998b8f43 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f505.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f506.svg b/Linphone/data/emoji/emojiSvgs/1f506.svg new file mode 100644 index 00000000..2a2d58ca --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f506.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f507.svg b/Linphone/data/emoji/emojiSvgs/1f507.svg new file mode 100644 index 00000000..39dddb52 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f507.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f508.svg b/Linphone/data/emoji/emojiSvgs/1f508.svg new file mode 100644 index 00000000..11a7b0ed --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f508.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f509.svg b/Linphone/data/emoji/emojiSvgs/1f509.svg new file mode 100644 index 00000000..9fb6c1cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f509.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f50a.svg b/Linphone/data/emoji/emojiSvgs/1f50a.svg new file mode 100644 index 00000000..de54654e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f50a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f50b.svg b/Linphone/data/emoji/emojiSvgs/1f50b.svg new file mode 100644 index 00000000..66d420fc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f50b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f50c.svg b/Linphone/data/emoji/emojiSvgs/1f50c.svg new file mode 100644 index 00000000..8f432f0d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f50c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f50d.svg b/Linphone/data/emoji/emojiSvgs/1f50d.svg new file mode 100644 index 00000000..038bbc24 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f50d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f50e.svg b/Linphone/data/emoji/emojiSvgs/1f50e.svg new file mode 100644 index 00000000..778ae77e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f50e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f50f.svg b/Linphone/data/emoji/emojiSvgs/1f50f.svg new file mode 100644 index 00000000..d2ae4863 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f50f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f510.svg b/Linphone/data/emoji/emojiSvgs/1f510.svg new file mode 100644 index 00000000..014079e8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f510.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f511.svg b/Linphone/data/emoji/emojiSvgs/1f511.svg new file mode 100644 index 00000000..7b4dc2a7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f511.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f512.svg b/Linphone/data/emoji/emojiSvgs/1f512.svg new file mode 100644 index 00000000..378fabf4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f512.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f513.svg b/Linphone/data/emoji/emojiSvgs/1f513.svg new file mode 100644 index 00000000..cd82ec8e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f513.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f514.svg b/Linphone/data/emoji/emojiSvgs/1f514.svg new file mode 100644 index 00000000..9e89a7ca --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f514.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f515.svg b/Linphone/data/emoji/emojiSvgs/1f515.svg new file mode 100644 index 00000000..921d352c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f515.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f516.svg b/Linphone/data/emoji/emojiSvgs/1f516.svg new file mode 100644 index 00000000..38dc790a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f516.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f517.svg b/Linphone/data/emoji/emojiSvgs/1f517.svg new file mode 100644 index 00000000..22ddbe08 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f517.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f518.svg b/Linphone/data/emoji/emojiSvgs/1f518.svg new file mode 100644 index 00000000..e4d03480 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f518.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f519.svg b/Linphone/data/emoji/emojiSvgs/1f519.svg new file mode 100644 index 00000000..ddf8fbd3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f519.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f51a.svg b/Linphone/data/emoji/emojiSvgs/1f51a.svg new file mode 100644 index 00000000..d964c524 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f51a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f51b.svg b/Linphone/data/emoji/emojiSvgs/1f51b.svg new file mode 100644 index 00000000..a885bab4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f51b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f51c.svg b/Linphone/data/emoji/emojiSvgs/1f51c.svg new file mode 100644 index 00000000..69042810 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f51c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f51d.svg b/Linphone/data/emoji/emojiSvgs/1f51d.svg new file mode 100644 index 00000000..54ab898e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f51d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f51e.svg b/Linphone/data/emoji/emojiSvgs/1f51e.svg new file mode 100644 index 00000000..8f877f8b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f51e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f51f.svg b/Linphone/data/emoji/emojiSvgs/1f51f.svg new file mode 100644 index 00000000..05dc8b91 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f51f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f520.svg b/Linphone/data/emoji/emojiSvgs/1f520.svg new file mode 100644 index 00000000..429f1136 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f520.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f521.svg b/Linphone/data/emoji/emojiSvgs/1f521.svg new file mode 100644 index 00000000..3c2076ea --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f521.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f522.svg b/Linphone/data/emoji/emojiSvgs/1f522.svg new file mode 100644 index 00000000..316f8ee8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f522.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f523.svg b/Linphone/data/emoji/emojiSvgs/1f523.svg new file mode 100644 index 00000000..71ac1578 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f523.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f524.svg b/Linphone/data/emoji/emojiSvgs/1f524.svg new file mode 100644 index 00000000..e3e9464c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f524.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f525.svg b/Linphone/data/emoji/emojiSvgs/1f525.svg new file mode 100644 index 00000000..e7dee6dd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f525.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f526.svg b/Linphone/data/emoji/emojiSvgs/1f526.svg new file mode 100644 index 00000000..1aff8ae2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f526.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f527.svg b/Linphone/data/emoji/emojiSvgs/1f527.svg new file mode 100644 index 00000000..73a06d0d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f528.svg b/Linphone/data/emoji/emojiSvgs/1f528.svg new file mode 100644 index 00000000..1a0485e5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f528.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f529.svg b/Linphone/data/emoji/emojiSvgs/1f529.svg new file mode 100644 index 00000000..e02eaa6f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f529.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f52a.svg b/Linphone/data/emoji/emojiSvgs/1f52a.svg new file mode 100644 index 00000000..d2ba9e7f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f52a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f52b.svg b/Linphone/data/emoji/emojiSvgs/1f52b.svg new file mode 100644 index 00000000..3c8b6e43 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f52b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f52c.svg new file mode 100644 index 00000000..e910ee89 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f52d.svg b/Linphone/data/emoji/emojiSvgs/1f52d.svg new file mode 100644 index 00000000..113c0330 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f52d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f52e.svg b/Linphone/data/emoji/emojiSvgs/1f52e.svg new file mode 100644 index 00000000..d7e09232 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f52e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f52f.svg b/Linphone/data/emoji/emojiSvgs/1f52f.svg new file mode 100644 index 00000000..7efa3724 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f52f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f530.svg b/Linphone/data/emoji/emojiSvgs/1f530.svg new file mode 100644 index 00000000..a6b9fbe1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f530.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f531.svg b/Linphone/data/emoji/emojiSvgs/1f531.svg new file mode 100644 index 00000000..20cc78d8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f531.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f532.svg b/Linphone/data/emoji/emojiSvgs/1f532.svg new file mode 100644 index 00000000..a2e37de7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f532.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f533.svg b/Linphone/data/emoji/emojiSvgs/1f533.svg new file mode 100644 index 00000000..13f35b71 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f533.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f534.svg b/Linphone/data/emoji/emojiSvgs/1f534.svg new file mode 100644 index 00000000..d98cc6d6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f534.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f535.svg b/Linphone/data/emoji/emojiSvgs/1f535.svg new file mode 100644 index 00000000..9d4ab8f5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f535.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f536.svg b/Linphone/data/emoji/emojiSvgs/1f536.svg new file mode 100644 index 00000000..9695be3e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f536.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f537.svg b/Linphone/data/emoji/emojiSvgs/1f537.svg new file mode 100644 index 00000000..44acab23 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f537.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f538.svg b/Linphone/data/emoji/emojiSvgs/1f538.svg new file mode 100644 index 00000000..842ffcc5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f538.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f539.svg b/Linphone/data/emoji/emojiSvgs/1f539.svg new file mode 100644 index 00000000..bb4865d1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f539.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f53a.svg b/Linphone/data/emoji/emojiSvgs/1f53a.svg new file mode 100644 index 00000000..96d0ebb2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f53a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f53b.svg b/Linphone/data/emoji/emojiSvgs/1f53b.svg new file mode 100644 index 00000000..f846cbfb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f53b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f53c.svg b/Linphone/data/emoji/emojiSvgs/1f53c.svg new file mode 100644 index 00000000..b057a592 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f53c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f53d.svg b/Linphone/data/emoji/emojiSvgs/1f53d.svg new file mode 100644 index 00000000..09ec8746 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f53d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f549.svg b/Linphone/data/emoji/emojiSvgs/1f549.svg new file mode 100644 index 00000000..9e6a1efb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f549.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f54a.svg b/Linphone/data/emoji/emojiSvgs/1f54a.svg new file mode 100644 index 00000000..613e4956 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f54a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f54b.svg b/Linphone/data/emoji/emojiSvgs/1f54b.svg new file mode 100644 index 00000000..3cd63ee3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f54b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f54c.svg b/Linphone/data/emoji/emojiSvgs/1f54c.svg new file mode 100644 index 00000000..6ef55165 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f54c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f54d.svg b/Linphone/data/emoji/emojiSvgs/1f54d.svg new file mode 100644 index 00000000..c82ae007 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f54d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f54e.svg b/Linphone/data/emoji/emojiSvgs/1f54e.svg new file mode 100644 index 00000000..1ebcec52 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f54e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f550.svg b/Linphone/data/emoji/emojiSvgs/1f550.svg new file mode 100644 index 00000000..da82d976 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f550.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f551.svg b/Linphone/data/emoji/emojiSvgs/1f551.svg new file mode 100644 index 00000000..96ab682e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f551.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f552.svg b/Linphone/data/emoji/emojiSvgs/1f552.svg new file mode 100644 index 00000000..ce4c487a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f552.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f553.svg b/Linphone/data/emoji/emojiSvgs/1f553.svg new file mode 100644 index 00000000..2ac4eade --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f553.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f554.svg b/Linphone/data/emoji/emojiSvgs/1f554.svg new file mode 100644 index 00000000..1a2ef1c3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f554.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f555.svg b/Linphone/data/emoji/emojiSvgs/1f555.svg new file mode 100644 index 00000000..5021b165 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f555.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f556.svg b/Linphone/data/emoji/emojiSvgs/1f556.svg new file mode 100644 index 00000000..a2eb7ef2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f556.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f557.svg b/Linphone/data/emoji/emojiSvgs/1f557.svg new file mode 100644 index 00000000..3a7ff9b0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f557.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f558.svg b/Linphone/data/emoji/emojiSvgs/1f558.svg new file mode 100644 index 00000000..e9d3cb58 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f558.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f559.svg b/Linphone/data/emoji/emojiSvgs/1f559.svg new file mode 100644 index 00000000..331f702d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f559.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f55a.svg b/Linphone/data/emoji/emojiSvgs/1f55a.svg new file mode 100644 index 00000000..58834498 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f55a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f55b.svg b/Linphone/data/emoji/emojiSvgs/1f55b.svg new file mode 100644 index 00000000..85010aee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f55b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f55c.svg b/Linphone/data/emoji/emojiSvgs/1f55c.svg new file mode 100644 index 00000000..f471871f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f55c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f55d.svg b/Linphone/data/emoji/emojiSvgs/1f55d.svg new file mode 100644 index 00000000..feb77f81 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f55d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f55e.svg b/Linphone/data/emoji/emojiSvgs/1f55e.svg new file mode 100644 index 00000000..8ab841fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f55e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f55f.svg b/Linphone/data/emoji/emojiSvgs/1f55f.svg new file mode 100644 index 00000000..81ccc7ed --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f55f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f560.svg b/Linphone/data/emoji/emojiSvgs/1f560.svg new file mode 100644 index 00000000..098c47f3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f560.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f561.svg b/Linphone/data/emoji/emojiSvgs/1f561.svg new file mode 100644 index 00000000..3a50a9ae --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f561.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f562.svg b/Linphone/data/emoji/emojiSvgs/1f562.svg new file mode 100644 index 00000000..f2c6ace6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f562.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f563.svg b/Linphone/data/emoji/emojiSvgs/1f563.svg new file mode 100644 index 00000000..a14e0dc6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f563.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f564.svg b/Linphone/data/emoji/emojiSvgs/1f564.svg new file mode 100644 index 00000000..4d6f8735 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f564.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f565.svg b/Linphone/data/emoji/emojiSvgs/1f565.svg new file mode 100644 index 00000000..f658fa32 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f565.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f566.svg b/Linphone/data/emoji/emojiSvgs/1f566.svg new file mode 100644 index 00000000..41e105ff --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f566.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f567.svg b/Linphone/data/emoji/emojiSvgs/1f567.svg new file mode 100644 index 00000000..7178a881 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f567.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f56f.svg b/Linphone/data/emoji/emojiSvgs/1f56f.svg new file mode 100644 index 00000000..c0e45ac5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f56f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f570.svg b/Linphone/data/emoji/emojiSvgs/1f570.svg new file mode 100644 index 00000000..da6fd268 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f570.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f573.svg b/Linphone/data/emoji/emojiSvgs/1f573.svg new file mode 100644 index 00000000..213a6ab6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f573.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..19175729 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..97bc7b5a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3fb.svg new file mode 100644 index 00000000..dda8bd69 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..3de7ee30 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..27c10f15 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3fc.svg new file mode 100644 index 00000000..ba0b1252 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..076acec6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..4e980b00 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3fd.svg new file mode 100644 index 00000000..a06a09df --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..f98eb126 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..88a30616 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3fe.svg new file mode 100644 index 00000000..2dde9ec8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..e8033f53 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..57aec606 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f574-1f3ff.svg new file mode 100644 index 00000000..31c17327 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-fe0f-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f574-fe0f-200d-2640-fe0f.svg new file mode 100644 index 00000000..4f80c791 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-fe0f-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574-fe0f-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f574-fe0f-200d-2642-fe0f.svg new file mode 100644 index 00000000..a834fd4b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574-fe0f-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f574.svg b/Linphone/data/emoji/emojiSvgs/1f574.svg new file mode 100644 index 00000000..d363425a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f574.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..b85b5dba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..fd521e25 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3fb.svg new file mode 100644 index 00000000..a2782993 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..dfc8aabc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..fdb8cd5b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3fc.svg new file mode 100644 index 00000000..0c94590f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..b6d0b87b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..474f2535 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3fd.svg new file mode 100644 index 00000000..9350bd1c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..67b6d0b9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..3367897a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3fe.svg new file mode 100644 index 00000000..5455c07a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..fcea54da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..eb25e644 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f575-1f3ff.svg new file mode 100644 index 00000000..0302169f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-fe0f-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f575-fe0f-200d-2640-fe0f.svg new file mode 100644 index 00000000..1f92d39d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-fe0f-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575-fe0f-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f575-fe0f-200d-2642-fe0f.svg new file mode 100644 index 00000000..bba4b943 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575-fe0f-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f575.svg b/Linphone/data/emoji/emojiSvgs/1f575.svg new file mode 100644 index 00000000..e82b8d9e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f575.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f576.svg b/Linphone/data/emoji/emojiSvgs/1f576.svg new file mode 100644 index 00000000..5d5c04fb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f576.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f577.svg b/Linphone/data/emoji/emojiSvgs/1f577.svg new file mode 100644 index 00000000..a1568651 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f577.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f578.svg b/Linphone/data/emoji/emojiSvgs/1f578.svg new file mode 100644 index 00000000..92142fd3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f578.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f579.svg b/Linphone/data/emoji/emojiSvgs/1f579.svg new file mode 100644 index 00000000..33479b50 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f579.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f57a-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f57a-1f3fb.svg new file mode 100644 index 00000000..1eb5928c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f57a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f57a-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f57a-1f3fc.svg new file mode 100644 index 00000000..37bfbee9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f57a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f57a-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f57a-1f3fd.svg new file mode 100644 index 00000000..586b6c5e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f57a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f57a-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f57a-1f3fe.svg new file mode 100644 index 00000000..02824e9c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f57a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f57a-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f57a-1f3ff.svg new file mode 100644 index 00000000..f43787a0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f57a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f57a.svg b/Linphone/data/emoji/emojiSvgs/1f57a.svg new file mode 100644 index 00000000..e63c1ec8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f57a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f587.svg b/Linphone/data/emoji/emojiSvgs/1f587.svg new file mode 100644 index 00000000..a6ef1815 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f587.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f58a.svg b/Linphone/data/emoji/emojiSvgs/1f58a.svg new file mode 100644 index 00000000..4e791e6a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f58a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f58b.svg b/Linphone/data/emoji/emojiSvgs/1f58b.svg new file mode 100644 index 00000000..8a7f7735 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f58b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f58c.svg b/Linphone/data/emoji/emojiSvgs/1f58c.svg new file mode 100644 index 00000000..b39bcbc9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f58c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f58d.svg b/Linphone/data/emoji/emojiSvgs/1f58d.svg new file mode 100644 index 00000000..5a4cbe8e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f58d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f590-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f590-1f3fb.svg new file mode 100644 index 00000000..f106ae7d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f590-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f590-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f590-1f3fc.svg new file mode 100644 index 00000000..9944090e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f590-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f590-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f590-1f3fd.svg new file mode 100644 index 00000000..296a8f79 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f590-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f590-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f590-1f3fe.svg new file mode 100644 index 00000000..9ec61de5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f590-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f590-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f590-1f3ff.svg new file mode 100644 index 00000000..0a4d174b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f590-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f590.svg b/Linphone/data/emoji/emojiSvgs/1f590.svg new file mode 100644 index 00000000..1c8dd684 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f590.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f595-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f595-1f3fb.svg new file mode 100644 index 00000000..3865d662 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f595-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f595-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f595-1f3fc.svg new file mode 100644 index 00000000..b52ea58d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f595-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f595-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f595-1f3fd.svg new file mode 100644 index 00000000..7224b212 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f595-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f595-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f595-1f3fe.svg new file mode 100644 index 00000000..571c54c3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f595-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f595-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f595-1f3ff.svg new file mode 100644 index 00000000..0fdb0ea6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f595-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f595.svg b/Linphone/data/emoji/emojiSvgs/1f595.svg new file mode 100644 index 00000000..e644c376 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f595.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f596-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f596-1f3fb.svg new file mode 100644 index 00000000..0676c0fc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f596-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f596-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f596-1f3fc.svg new file mode 100644 index 00000000..9f1d4f10 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f596-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f596-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f596-1f3fd.svg new file mode 100644 index 00000000..b2c324d5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f596-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f596-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f596-1f3fe.svg new file mode 100644 index 00000000..eb3586ee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f596-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f596-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f596-1f3ff.svg new file mode 100644 index 00000000..c8f2b5b0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f596-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f596.svg b/Linphone/data/emoji/emojiSvgs/1f596.svg new file mode 100644 index 00000000..4b834f87 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f596.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5a4.svg b/Linphone/data/emoji/emojiSvgs/1f5a4.svg new file mode 100644 index 00000000..51ec883f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5a5.svg b/Linphone/data/emoji/emojiSvgs/1f5a5.svg new file mode 100644 index 00000000..e1a06333 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5a8.svg b/Linphone/data/emoji/emojiSvgs/1f5a8.svg new file mode 100644 index 00000000..fae59fef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5b1.svg b/Linphone/data/emoji/emojiSvgs/1f5b1.svg new file mode 100644 index 00000000..961f67ee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5b2.svg b/Linphone/data/emoji/emojiSvgs/1f5b2.svg new file mode 100644 index 00000000..caea2fdc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5bc.svg b/Linphone/data/emoji/emojiSvgs/1f5bc.svg new file mode 100644 index 00000000..1a2ad727 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5c2.svg b/Linphone/data/emoji/emojiSvgs/1f5c2.svg new file mode 100644 index 00000000..822a9276 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5c3.svg b/Linphone/data/emoji/emojiSvgs/1f5c3.svg new file mode 100644 index 00000000..48dd45b8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5c4.svg b/Linphone/data/emoji/emojiSvgs/1f5c4.svg new file mode 100644 index 00000000..4c065fb4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5d1.svg b/Linphone/data/emoji/emojiSvgs/1f5d1.svg new file mode 100644 index 00000000..26695074 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5d2.svg b/Linphone/data/emoji/emojiSvgs/1f5d2.svg new file mode 100644 index 00000000..cbb6965b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5d3.svg b/Linphone/data/emoji/emojiSvgs/1f5d3.svg new file mode 100644 index 00000000..526191c0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5dc.svg b/Linphone/data/emoji/emojiSvgs/1f5dc.svg new file mode 100644 index 00000000..6f35d170 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5dd.svg b/Linphone/data/emoji/emojiSvgs/1f5dd.svg new file mode 100644 index 00000000..9e97cea6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5dd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5de.svg b/Linphone/data/emoji/emojiSvgs/1f5de.svg new file mode 100644 index 00000000..95678176 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5e1.svg b/Linphone/data/emoji/emojiSvgs/1f5e1.svg new file mode 100644 index 00000000..d1d7712c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5e3.svg b/Linphone/data/emoji/emojiSvgs/1f5e3.svg new file mode 100644 index 00000000..4e613c04 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5e8.svg b/Linphone/data/emoji/emojiSvgs/1f5e8.svg new file mode 100644 index 00000000..d0918971 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5ef.svg b/Linphone/data/emoji/emojiSvgs/1f5ef.svg new file mode 100644 index 00000000..3aba53cc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5f3.svg b/Linphone/data/emoji/emojiSvgs/1f5f3.svg new file mode 100644 index 00000000..9c643d36 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5fa.svg b/Linphone/data/emoji/emojiSvgs/1f5fa.svg new file mode 100644 index 00000000..337b3dc9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5fb.svg b/Linphone/data/emoji/emojiSvgs/1f5fb.svg new file mode 100644 index 00000000..a8ad074c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5fc.svg b/Linphone/data/emoji/emojiSvgs/1f5fc.svg new file mode 100644 index 00000000..92fd6ae0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5fd.svg b/Linphone/data/emoji/emojiSvgs/1f5fd.svg new file mode 100644 index 00000000..3191523a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5fe.svg b/Linphone/data/emoji/emojiSvgs/1f5fe.svg new file mode 100644 index 00000000..a67c561e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f5ff.svg b/Linphone/data/emoji/emojiSvgs/1f5ff.svg new file mode 100644 index 00000000..5ba18be1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f5ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f600.svg b/Linphone/data/emoji/emojiSvgs/1f600.svg new file mode 100644 index 00000000..21afce43 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f600.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f601.svg b/Linphone/data/emoji/emojiSvgs/1f601.svg new file mode 100644 index 00000000..9b792cbe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f601.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f602.svg b/Linphone/data/emoji/emojiSvgs/1f602.svg new file mode 100644 index 00000000..1ec79377 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f602.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f603.svg b/Linphone/data/emoji/emojiSvgs/1f603.svg new file mode 100644 index 00000000..25d4b962 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f603.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f604.svg b/Linphone/data/emoji/emojiSvgs/1f604.svg new file mode 100644 index 00000000..99ac39c7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f604.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f605.svg b/Linphone/data/emoji/emojiSvgs/1f605.svg new file mode 100644 index 00000000..de6eb5de --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f605.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f606.svg b/Linphone/data/emoji/emojiSvgs/1f606.svg new file mode 100644 index 00000000..e82c405a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f606.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f607.svg b/Linphone/data/emoji/emojiSvgs/1f607.svg new file mode 100644 index 00000000..f6260fdb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f607.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f608.svg b/Linphone/data/emoji/emojiSvgs/1f608.svg new file mode 100644 index 00000000..79c24804 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f608.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f609.svg b/Linphone/data/emoji/emojiSvgs/1f609.svg new file mode 100644 index 00000000..1b7bba0a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f609.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f60a.svg b/Linphone/data/emoji/emojiSvgs/1f60a.svg new file mode 100644 index 00000000..a6d9c1b5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f60a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f60b.svg b/Linphone/data/emoji/emojiSvgs/1f60b.svg new file mode 100644 index 00000000..27e0d3a4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f60b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f60c.svg b/Linphone/data/emoji/emojiSvgs/1f60c.svg new file mode 100644 index 00000000..f8d56233 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f60c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f60d.svg b/Linphone/data/emoji/emojiSvgs/1f60d.svg new file mode 100644 index 00000000..18b1867c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f60d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f60e.svg b/Linphone/data/emoji/emojiSvgs/1f60e.svg new file mode 100644 index 00000000..fff644a8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f60e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f60f.svg b/Linphone/data/emoji/emojiSvgs/1f60f.svg new file mode 100644 index 00000000..ef4f386e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f60f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f610.svg b/Linphone/data/emoji/emojiSvgs/1f610.svg new file mode 100644 index 00000000..953f9217 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f610.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f611.svg b/Linphone/data/emoji/emojiSvgs/1f611.svg new file mode 100644 index 00000000..55be4fd3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f611.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f612.svg b/Linphone/data/emoji/emojiSvgs/1f612.svg new file mode 100644 index 00000000..197089f5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f612.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f613.svg b/Linphone/data/emoji/emojiSvgs/1f613.svg new file mode 100644 index 00000000..83c65803 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f613.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f614.svg b/Linphone/data/emoji/emojiSvgs/1f614.svg new file mode 100644 index 00000000..be035300 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f614.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f615.svg b/Linphone/data/emoji/emojiSvgs/1f615.svg new file mode 100644 index 00000000..339a6a27 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f615.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f616.svg b/Linphone/data/emoji/emojiSvgs/1f616.svg new file mode 100644 index 00000000..2b8871ce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f616.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f617.svg b/Linphone/data/emoji/emojiSvgs/1f617.svg new file mode 100644 index 00000000..6b817eec --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f617.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f618.svg b/Linphone/data/emoji/emojiSvgs/1f618.svg new file mode 100644 index 00000000..5e00b8e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f618.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f619.svg b/Linphone/data/emoji/emojiSvgs/1f619.svg new file mode 100644 index 00000000..d9dfaa9d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f619.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f61a.svg b/Linphone/data/emoji/emojiSvgs/1f61a.svg new file mode 100644 index 00000000..cefa3516 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f61a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f61b.svg b/Linphone/data/emoji/emojiSvgs/1f61b.svg new file mode 100644 index 00000000..e249672d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f61b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f61c.svg b/Linphone/data/emoji/emojiSvgs/1f61c.svg new file mode 100644 index 00000000..76b205dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f61c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f61d.svg b/Linphone/data/emoji/emojiSvgs/1f61d.svg new file mode 100644 index 00000000..f6b04039 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f61d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f61e.svg b/Linphone/data/emoji/emojiSvgs/1f61e.svg new file mode 100644 index 00000000..7ae60a58 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f61e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f61f.svg b/Linphone/data/emoji/emojiSvgs/1f61f.svg new file mode 100644 index 00000000..c5cec95d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f61f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f620.svg b/Linphone/data/emoji/emojiSvgs/1f620.svg new file mode 100644 index 00000000..97e829a9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f620.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f621.svg b/Linphone/data/emoji/emojiSvgs/1f621.svg new file mode 100644 index 00000000..f370594b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f621.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f622.svg b/Linphone/data/emoji/emojiSvgs/1f622.svg new file mode 100644 index 00000000..1122bf5f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f622.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f623.svg b/Linphone/data/emoji/emojiSvgs/1f623.svg new file mode 100644 index 00000000..e548a2ef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f623.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f624.svg b/Linphone/data/emoji/emojiSvgs/1f624.svg new file mode 100644 index 00000000..c211eec5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f624.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f625.svg b/Linphone/data/emoji/emojiSvgs/1f625.svg new file mode 100644 index 00000000..0b4293f9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f625.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f626.svg b/Linphone/data/emoji/emojiSvgs/1f626.svg new file mode 100644 index 00000000..683c0d34 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f626.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f627.svg b/Linphone/data/emoji/emojiSvgs/1f627.svg new file mode 100644 index 00000000..5c338529 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f627.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f628.svg b/Linphone/data/emoji/emojiSvgs/1f628.svg new file mode 100644 index 00000000..716302e2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f628.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f629.svg b/Linphone/data/emoji/emojiSvgs/1f629.svg new file mode 100644 index 00000000..d367d484 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f629.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f62a.svg b/Linphone/data/emoji/emojiSvgs/1f62a.svg new file mode 100644 index 00000000..ede0d7a2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f62a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f62b.svg b/Linphone/data/emoji/emojiSvgs/1f62b.svg new file mode 100644 index 00000000..4253adad --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f62b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f62c.svg b/Linphone/data/emoji/emojiSvgs/1f62c.svg new file mode 100644 index 00000000..3fdb9bf2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f62c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f62d.svg b/Linphone/data/emoji/emojiSvgs/1f62d.svg new file mode 100644 index 00000000..11d1159e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f62d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f62e.svg b/Linphone/data/emoji/emojiSvgs/1f62e.svg new file mode 100644 index 00000000..21fde1f0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f62e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f62f.svg b/Linphone/data/emoji/emojiSvgs/1f62f.svg new file mode 100644 index 00000000..579bf480 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f62f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f630.svg b/Linphone/data/emoji/emojiSvgs/1f630.svg new file mode 100644 index 00000000..de3d95cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f630.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f631.svg b/Linphone/data/emoji/emojiSvgs/1f631.svg new file mode 100644 index 00000000..c70a81a7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f631.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f632.svg b/Linphone/data/emoji/emojiSvgs/1f632.svg new file mode 100644 index 00000000..e2793217 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f632.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f633.svg b/Linphone/data/emoji/emojiSvgs/1f633.svg new file mode 100644 index 00000000..80ee1fef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f633.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f634.svg b/Linphone/data/emoji/emojiSvgs/1f634.svg new file mode 100644 index 00000000..643ae221 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f634.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f635.svg b/Linphone/data/emoji/emojiSvgs/1f635.svg new file mode 100644 index 00000000..7a45cf57 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f635.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f636.svg b/Linphone/data/emoji/emojiSvgs/1f636.svg new file mode 100644 index 00000000..c208383c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f636.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f637.svg b/Linphone/data/emoji/emojiSvgs/1f637.svg new file mode 100644 index 00000000..098e6b0b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f637.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f638.svg b/Linphone/data/emoji/emojiSvgs/1f638.svg new file mode 100644 index 00000000..4e125ab9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f638.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f639.svg b/Linphone/data/emoji/emojiSvgs/1f639.svg new file mode 100644 index 00000000..92f9022d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f639.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f63a.svg b/Linphone/data/emoji/emojiSvgs/1f63a.svg new file mode 100644 index 00000000..88057ceb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f63a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f63b.svg b/Linphone/data/emoji/emojiSvgs/1f63b.svg new file mode 100644 index 00000000..a4dd7e46 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f63b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f63c.svg b/Linphone/data/emoji/emojiSvgs/1f63c.svg new file mode 100644 index 00000000..198ad47a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f63c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f63d.svg b/Linphone/data/emoji/emojiSvgs/1f63d.svg new file mode 100644 index 00000000..e982de7a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f63d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f63e.svg b/Linphone/data/emoji/emojiSvgs/1f63e.svg new file mode 100644 index 00000000..19a41d75 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f63e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f63f.svg b/Linphone/data/emoji/emojiSvgs/1f63f.svg new file mode 100644 index 00000000..cdd84393 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f63f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f640.svg b/Linphone/data/emoji/emojiSvgs/1f640.svg new file mode 100644 index 00000000..65ea8a5a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f640.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f641.svg b/Linphone/data/emoji/emojiSvgs/1f641.svg new file mode 100644 index 00000000..cf3557b1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f641.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f642.svg b/Linphone/data/emoji/emojiSvgs/1f642.svg new file mode 100644 index 00000000..ff9f989a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f642.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f643.svg b/Linphone/data/emoji/emojiSvgs/1f643.svg new file mode 100644 index 00000000..ce062371 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f643.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f644.svg b/Linphone/data/emoji/emojiSvgs/1f644.svg new file mode 100644 index 00000000..91c0b62f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f644.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..d3d6161f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..47b17497 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3fb.svg new file mode 100644 index 00000000..9c977a2a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..061e83da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..47109a9c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3fc.svg new file mode 100644 index 00000000..1b50a9c7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..3ba6194b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..5e7487e7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3fd.svg new file mode 100644 index 00000000..03a70859 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..5eacdc63 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..da7e7893 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3fe.svg new file mode 100644 index 00000000..1424c968 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..e38dfd1c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..1fb2443b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f645-1f3ff.svg new file mode 100644 index 00000000..5b3bf34f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f645-200d-2640-fe0f.svg new file mode 100644 index 00000000..2e47b671 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f645-200d-2642-fe0f.svg new file mode 100644 index 00000000..ba0fc8e8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f645.svg b/Linphone/data/emoji/emojiSvgs/1f645.svg new file mode 100644 index 00000000..d3d98541 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f645.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..1c051497 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..b8e5f156 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3fb.svg new file mode 100644 index 00000000..acc932df --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..439f4d81 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..564a775e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3fc.svg new file mode 100644 index 00000000..ec60afeb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..e5b1aea5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..b5103e3f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3fd.svg new file mode 100644 index 00000000..0eb04e91 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..b041dc16 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..4b2b3b49 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3fe.svg new file mode 100644 index 00000000..05a8ebf3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..66d5bd09 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..0411b8d4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f646-1f3ff.svg new file mode 100644 index 00000000..70e7bb82 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f646-200d-2640-fe0f.svg new file mode 100644 index 00000000..ccdb92a4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f646-200d-2642-fe0f.svg new file mode 100644 index 00000000..1c4205d5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f646.svg b/Linphone/data/emoji/emojiSvgs/1f646.svg new file mode 100644 index 00000000..351e8d88 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f646.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..139284fe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..33901095 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3fb.svg new file mode 100644 index 00000000..f16e19bb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..ba6b6eb3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..93d418cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3fc.svg new file mode 100644 index 00000000..d0f9cf9d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..e9056586 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..abd06691 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3fd.svg new file mode 100644 index 00000000..83ba2f6c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..8511aade --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..3f55ae82 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3fe.svg new file mode 100644 index 00000000..2eeb5c5c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..00ab5588 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..1ea343bb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f647-1f3ff.svg new file mode 100644 index 00000000..768d9ea9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f647-200d-2640-fe0f.svg new file mode 100644 index 00000000..0545aa2e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f647-200d-2642-fe0f.svg new file mode 100644 index 00000000..7462b006 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f647.svg b/Linphone/data/emoji/emojiSvgs/1f647.svg new file mode 100644 index 00000000..7ad69e9b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f647.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f648.svg b/Linphone/data/emoji/emojiSvgs/1f648.svg new file mode 100644 index 00000000..31e38a33 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f648.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f649.svg b/Linphone/data/emoji/emojiSvgs/1f649.svg new file mode 100644 index 00000000..377e0e6d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f649.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64a.svg b/Linphone/data/emoji/emojiSvgs/1f64a.svg new file mode 100644 index 00000000..1e4e313e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..f10a7ef7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..46819a3c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fb.svg new file mode 100644 index 00000000..4da55e82 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..34b2d325 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..177f70a6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fc.svg new file mode 100644 index 00000000..4ead5819 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..62156c38 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..b449f1c6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fd.svg new file mode 100644 index 00000000..13d04314 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..4dcde370 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..e1053e78 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fe.svg new file mode 100644 index 00000000..f16cf36d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..f939a836 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..34c358fb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f64b-1f3ff.svg new file mode 100644 index 00000000..9131dc36 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64b-200d-2640-fe0f.svg new file mode 100644 index 00000000..a5ccaa1a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64b-200d-2642-fe0f.svg new file mode 100644 index 00000000..faf2f760 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64b.svg b/Linphone/data/emoji/emojiSvgs/1f64b.svg new file mode 100644 index 00000000..197e8318 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64c-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f64c-1f3fb.svg new file mode 100644 index 00000000..b51e08e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64c-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f64c-1f3fc.svg new file mode 100644 index 00000000..6c4f43ea --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64c-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f64c-1f3fd.svg new file mode 100644 index 00000000..5624f607 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64c-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f64c-1f3fe.svg new file mode 100644 index 00000000..527cc23e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64c-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f64c-1f3ff.svg new file mode 100644 index 00000000..fc0a3332 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64c.svg b/Linphone/data/emoji/emojiSvgs/1f64c.svg new file mode 100644 index 00000000..be95511f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..3aaba503 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..24818037 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fb.svg new file mode 100644 index 00000000..b694b36b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..7198a13c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..80545343 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fc.svg new file mode 100644 index 00000000..9d0e546d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..ed14e028 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..17dee5c2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fd.svg new file mode 100644 index 00000000..ba415fbf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..47e3da25 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..a8146a4c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fe.svg new file mode 100644 index 00000000..cb7cb69d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..7e241144 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..a5f81fe0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f64d-1f3ff.svg new file mode 100644 index 00000000..b8de1547 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64d-200d-2640-fe0f.svg new file mode 100644 index 00000000..e14fb570 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64d-200d-2642-fe0f.svg new file mode 100644 index 00000000..6a5ce086 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64d.svg b/Linphone/data/emoji/emojiSvgs/1f64d.svg new file mode 100644 index 00000000..0506155c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..e283e46e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..8afcbb54 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fb.svg new file mode 100644 index 00000000..de107265 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..6f7d0fe0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..6c70ec3c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fc.svg new file mode 100644 index 00000000..cb76ab3f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..96584b4a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..4854c110 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fd.svg new file mode 100644 index 00000000..a8acc8cb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..ab993b07 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..f1cea099 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fe.svg new file mode 100644 index 00000000..8f0366d4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..5bdbed28 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..c15298ee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f64e-1f3ff.svg new file mode 100644 index 00000000..b13aab77 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64e-200d-2640-fe0f.svg new file mode 100644 index 00000000..0bd74db6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f64e-200d-2642-fe0f.svg new file mode 100644 index 00000000..97bec5bc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64e.svg b/Linphone/data/emoji/emojiSvgs/1f64e.svg new file mode 100644 index 00000000..bc4da1cc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64f-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f64f-1f3fb.svg new file mode 100644 index 00000000..c7b09690 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64f-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64f-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f64f-1f3fc.svg new file mode 100644 index 00000000..6dcbad55 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64f-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64f-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f64f-1f3fd.svg new file mode 100644 index 00000000..5d11d088 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64f-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64f-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f64f-1f3fe.svg new file mode 100644 index 00000000..7026174b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64f-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64f-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f64f-1f3ff.svg new file mode 100644 index 00000000..09831e0d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64f-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f64f.svg b/Linphone/data/emoji/emojiSvgs/1f64f.svg new file mode 100644 index 00000000..8b33d80c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f64f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f680.svg b/Linphone/data/emoji/emojiSvgs/1f680.svg new file mode 100644 index 00000000..8658d439 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f681.svg b/Linphone/data/emoji/emojiSvgs/1f681.svg new file mode 100644 index 00000000..8b7a4032 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f681.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f682.svg b/Linphone/data/emoji/emojiSvgs/1f682.svg new file mode 100644 index 00000000..c93874db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f682.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f683.svg b/Linphone/data/emoji/emojiSvgs/1f683.svg new file mode 100644 index 00000000..775ae86f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f683.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f684.svg b/Linphone/data/emoji/emojiSvgs/1f684.svg new file mode 100644 index 00000000..31e4d69f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f684.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f685.svg b/Linphone/data/emoji/emojiSvgs/1f685.svg new file mode 100644 index 00000000..2b24d9ab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f685.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f686.svg b/Linphone/data/emoji/emojiSvgs/1f686.svg new file mode 100644 index 00000000..3f5f5b85 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f686.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f687.svg b/Linphone/data/emoji/emojiSvgs/1f687.svg new file mode 100644 index 00000000..acd11bd4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f687.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f688.svg b/Linphone/data/emoji/emojiSvgs/1f688.svg new file mode 100644 index 00000000..160cc71d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f688.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f689.svg b/Linphone/data/emoji/emojiSvgs/1f689.svg new file mode 100644 index 00000000..cebf01dd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f689.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f68a.svg b/Linphone/data/emoji/emojiSvgs/1f68a.svg new file mode 100644 index 00000000..b93eab0a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f68a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f68b.svg b/Linphone/data/emoji/emojiSvgs/1f68b.svg new file mode 100644 index 00000000..da204b81 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f68b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f68c.svg b/Linphone/data/emoji/emojiSvgs/1f68c.svg new file mode 100644 index 00000000..45751690 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f68c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f68d.svg b/Linphone/data/emoji/emojiSvgs/1f68d.svg new file mode 100644 index 00000000..68ca65fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f68d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f68e.svg b/Linphone/data/emoji/emojiSvgs/1f68e.svg new file mode 100644 index 00000000..e3dc44dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f68e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f68f.svg b/Linphone/data/emoji/emojiSvgs/1f68f.svg new file mode 100644 index 00000000..f833b4aa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f68f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f690.svg b/Linphone/data/emoji/emojiSvgs/1f690.svg new file mode 100644 index 00000000..d3f10573 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f690.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f691.svg b/Linphone/data/emoji/emojiSvgs/1f691.svg new file mode 100644 index 00000000..844dd40f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f691.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f692.svg b/Linphone/data/emoji/emojiSvgs/1f692.svg new file mode 100644 index 00000000..711c9960 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f693.svg b/Linphone/data/emoji/emojiSvgs/1f693.svg new file mode 100644 index 00000000..cbf344d7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f693.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f694.svg b/Linphone/data/emoji/emojiSvgs/1f694.svg new file mode 100644 index 00000000..ef1662d9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f694.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f695.svg b/Linphone/data/emoji/emojiSvgs/1f695.svg new file mode 100644 index 00000000..5446414a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f695.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f696.svg b/Linphone/data/emoji/emojiSvgs/1f696.svg new file mode 100644 index 00000000..e066a124 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f696.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f697.svg b/Linphone/data/emoji/emojiSvgs/1f697.svg new file mode 100644 index 00000000..97b5f10d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f697.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f698.svg b/Linphone/data/emoji/emojiSvgs/1f698.svg new file mode 100644 index 00000000..25d8df01 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f698.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f699.svg b/Linphone/data/emoji/emojiSvgs/1f699.svg new file mode 100644 index 00000000..28e27719 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f699.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f69a.svg b/Linphone/data/emoji/emojiSvgs/1f69a.svg new file mode 100644 index 00000000..7441d1bb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f69a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f69b.svg b/Linphone/data/emoji/emojiSvgs/1f69b.svg new file mode 100644 index 00000000..271fec11 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f69b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f69c.svg b/Linphone/data/emoji/emojiSvgs/1f69c.svg new file mode 100644 index 00000000..014ca11d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f69c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f69d.svg b/Linphone/data/emoji/emojiSvgs/1f69d.svg new file mode 100644 index 00000000..64ab140c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f69d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f69e.svg b/Linphone/data/emoji/emojiSvgs/1f69e.svg new file mode 100644 index 00000000..79a9320c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f69e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f69f.svg b/Linphone/data/emoji/emojiSvgs/1f69f.svg new file mode 100644 index 00000000..72eac03f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f69f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a0.svg b/Linphone/data/emoji/emojiSvgs/1f6a0.svg new file mode 100644 index 00000000..8510956d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a1.svg b/Linphone/data/emoji/emojiSvgs/1f6a1.svg new file mode 100644 index 00000000..855c5664 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a2.svg b/Linphone/data/emoji/emojiSvgs/1f6a2.svg new file mode 100644 index 00000000..79077f00 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..e5c19c94 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..a9651dca --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fb.svg new file mode 100644 index 00000000..b8ae875d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..a0c9e1ce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..d5d8a1b1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fc.svg new file mode 100644 index 00000000..13cde3cb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..16b7ac0b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..350a363a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fd.svg new file mode 100644 index 00000000..1861758f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..08ab1cce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..58d8d4e8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fe.svg new file mode 100644 index 00000000..8d52d639 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..05a2304c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..d461a410 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3ff.svg new file mode 100644 index 00000000..b93ca918 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-200d-2640-fe0f.svg new file mode 100644 index 00000000..8e0c5adc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6a3-200d-2642-fe0f.svg new file mode 100644 index 00000000..d6282293 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a3.svg b/Linphone/data/emoji/emojiSvgs/1f6a3.svg new file mode 100644 index 00000000..a427ce68 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a4.svg b/Linphone/data/emoji/emojiSvgs/1f6a4.svg new file mode 100644 index 00000000..7dfe5a6b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a5.svg b/Linphone/data/emoji/emojiSvgs/1f6a5.svg new file mode 100644 index 00000000..6cb38271 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a6.svg b/Linphone/data/emoji/emojiSvgs/1f6a6.svg new file mode 100644 index 00000000..252e85cc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a7.svg b/Linphone/data/emoji/emojiSvgs/1f6a7.svg new file mode 100644 index 00000000..a5d135cb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a8.svg b/Linphone/data/emoji/emojiSvgs/1f6a8.svg new file mode 100644 index 00000000..5ed7ec85 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6a9.svg b/Linphone/data/emoji/emojiSvgs/1f6a9.svg new file mode 100644 index 00000000..a9338f19 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6aa.svg b/Linphone/data/emoji/emojiSvgs/1f6aa.svg new file mode 100644 index 00000000..1542aba5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6ab.svg b/Linphone/data/emoji/emojiSvgs/1f6ab.svg new file mode 100644 index 00000000..4b913ae5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6ac.svg b/Linphone/data/emoji/emojiSvgs/1f6ac.svg new file mode 100644 index 00000000..1c0dff27 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6ac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6ad.svg b/Linphone/data/emoji/emojiSvgs/1f6ad.svg new file mode 100644 index 00000000..bda285a5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6ae.svg b/Linphone/data/emoji/emojiSvgs/1f6ae.svg new file mode 100644 index 00000000..dadbe6ef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6af.svg b/Linphone/data/emoji/emojiSvgs/1f6af.svg new file mode 100644 index 00000000..74fad212 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b0.svg b/Linphone/data/emoji/emojiSvgs/1f6b0.svg new file mode 100644 index 00000000..40f57746 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b1.svg b/Linphone/data/emoji/emojiSvgs/1f6b1.svg new file mode 100644 index 00000000..5d2b5a01 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b2.svg b/Linphone/data/emoji/emojiSvgs/1f6b2.svg new file mode 100644 index 00000000..b3626aee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b3.svg b/Linphone/data/emoji/emojiSvgs/1f6b3.svg new file mode 100644 index 00000000..ab08b6bb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..947042da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..def3807b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fb.svg new file mode 100644 index 00000000..581a4471 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..bdabdf85 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..d163a47c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fc.svg new file mode 100644 index 00000000..565fe9f1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..c3057143 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..afc749ad --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fd.svg new file mode 100644 index 00000000..5a980097 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..fa310bfb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..55178951 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fe.svg new file mode 100644 index 00000000..2a22bf01 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..25c02de2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..c06f3593 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3ff.svg new file mode 100644 index 00000000..c62512e5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-200d-2640-fe0f.svg new file mode 100644 index 00000000..4ecaf724 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b4-200d-2642-fe0f.svg new file mode 100644 index 00000000..ae3112ed --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b4.svg b/Linphone/data/emoji/emojiSvgs/1f6b4.svg new file mode 100644 index 00000000..f1bbb724 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..b203db44 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..63627abc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fb.svg new file mode 100644 index 00000000..10e9b635 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..e94e02ef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..e629c6cf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fc.svg new file mode 100644 index 00000000..202bc22e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..79bf2041 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..c1e95693 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fd.svg new file mode 100644 index 00000000..947c5460 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..e0b6d224 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..55a8b20b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fe.svg new file mode 100644 index 00000000..99154e4f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..17a39310 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..c856c95b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3ff.svg new file mode 100644 index 00000000..9e98fb46 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-200d-2640-fe0f.svg new file mode 100644 index 00000000..aaf71dca --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b5-200d-2642-fe0f.svg new file mode 100644 index 00000000..99143083 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b5.svg b/Linphone/data/emoji/emojiSvgs/1f6b5.svg new file mode 100644 index 00000000..fb824d58 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..396c56b4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..8f5f4ce2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fb.svg new file mode 100644 index 00000000..e361a286 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..571d8f0f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..cba51a41 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fc.svg new file mode 100644 index 00000000..ff5f7045 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..65a6df4d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..84169ed7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fd.svg new file mode 100644 index 00000000..1862ab31 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..352e7af5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..591c5622 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fe.svg new file mode 100644 index 00000000..b6476fef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..ae7e4143 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..198a8377 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3ff.svg new file mode 100644 index 00000000..d410eb39 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-200d-2640-fe0f.svg new file mode 100644 index 00000000..8e187bfa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f6b6-200d-2642-fe0f.svg new file mode 100644 index 00000000..9217939d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b6.svg b/Linphone/data/emoji/emojiSvgs/1f6b6.svg new file mode 100644 index 00000000..124c2967 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b7.svg b/Linphone/data/emoji/emojiSvgs/1f6b7.svg new file mode 100644 index 00000000..ebe039fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b8.svg b/Linphone/data/emoji/emojiSvgs/1f6b8.svg new file mode 100644 index 00000000..a9dca0f9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6b9.svg b/Linphone/data/emoji/emojiSvgs/1f6b9.svg new file mode 100644 index 00000000..2f7a492d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6b9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6ba.svg b/Linphone/data/emoji/emojiSvgs/1f6ba.svg new file mode 100644 index 00000000..d73ed94b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6bb.svg b/Linphone/data/emoji/emojiSvgs/1f6bb.svg new file mode 100644 index 00000000..0ecbb535 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6bc.svg b/Linphone/data/emoji/emojiSvgs/1f6bc.svg new file mode 100644 index 00000000..300b10e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6bd.svg b/Linphone/data/emoji/emojiSvgs/1f6bd.svg new file mode 100644 index 00000000..24634484 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6be.svg b/Linphone/data/emoji/emojiSvgs/1f6be.svg new file mode 100644 index 00000000..aad724c3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6bf.svg b/Linphone/data/emoji/emojiSvgs/1f6bf.svg new file mode 100644 index 00000000..004dadf7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6c0-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f6c0-1f3fb.svg new file mode 100644 index 00000000..ad93c8c6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6c0-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6c0-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f6c0-1f3fc.svg new file mode 100644 index 00000000..4f1e2fa1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6c0-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6c0-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f6c0-1f3fd.svg new file mode 100644 index 00000000..55b04599 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6c0-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6c0-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f6c0-1f3fe.svg new file mode 100644 index 00000000..d7e88365 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6c0-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6c0-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f6c0-1f3ff.svg new file mode 100644 index 00000000..b667e460 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6c0-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6c0.svg b/Linphone/data/emoji/emojiSvgs/1f6c0.svg new file mode 100644 index 00000000..1ccfa208 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6c1.svg b/Linphone/data/emoji/emojiSvgs/1f6c1.svg new file mode 100644 index 00000000..399bd44b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6c1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6c2.svg b/Linphone/data/emoji/emojiSvgs/1f6c2.svg new file mode 100644 index 00000000..2e9dfdf7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6c3.svg b/Linphone/data/emoji/emojiSvgs/1f6c3.svg new file mode 100644 index 00000000..9e58a3be --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6c4.svg b/Linphone/data/emoji/emojiSvgs/1f6c4.svg new file mode 100644 index 00000000..63edd5a1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6c5.svg b/Linphone/data/emoji/emojiSvgs/1f6c5.svg new file mode 100644 index 00000000..f67135d5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6cb.svg b/Linphone/data/emoji/emojiSvgs/1f6cb.svg new file mode 100644 index 00000000..c80d190d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6cb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6cc-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f6cc-1f3fb.svg new file mode 100644 index 00000000..6a96af59 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6cc-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6cc-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f6cc-1f3fc.svg new file mode 100644 index 00000000..3578121b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6cc-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6cc-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f6cc-1f3fd.svg new file mode 100644 index 00000000..e16d51cb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6cc-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6cc-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f6cc-1f3fe.svg new file mode 100644 index 00000000..ea3403bd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6cc-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6cc-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f6cc-1f3ff.svg new file mode 100644 index 00000000..82d72558 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6cc-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6cc.svg b/Linphone/data/emoji/emojiSvgs/1f6cc.svg new file mode 100644 index 00000000..183ccf0e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6cd.svg b/Linphone/data/emoji/emojiSvgs/1f6cd.svg new file mode 100644 index 00000000..e2ae9167 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6cd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6ce.svg b/Linphone/data/emoji/emojiSvgs/1f6ce.svg new file mode 100644 index 00000000..80343b63 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6cf.svg b/Linphone/data/emoji/emojiSvgs/1f6cf.svg new file mode 100644 index 00000000..9c34ec0e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6d0.svg b/Linphone/data/emoji/emojiSvgs/1f6d0.svg new file mode 100644 index 00000000..086e273c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6d0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6d1.svg b/Linphone/data/emoji/emojiSvgs/1f6d1.svg new file mode 100644 index 00000000..c8eb021b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6d2.svg b/Linphone/data/emoji/emojiSvgs/1f6d2.svg new file mode 100644 index 00000000..03608d5f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6d5.svg b/Linphone/data/emoji/emojiSvgs/1f6d5.svg new file mode 100644 index 00000000..4a2e9be2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6d5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6d6.svg b/Linphone/data/emoji/emojiSvgs/1f6d6.svg new file mode 100644 index 00000000..b2866e07 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6d6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6d7.svg b/Linphone/data/emoji/emojiSvgs/1f6d7.svg new file mode 100644 index 00000000..5369e579 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6d7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6e0.svg b/Linphone/data/emoji/emojiSvgs/1f6e0.svg new file mode 100644 index 00000000..085f9025 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6e1.svg b/Linphone/data/emoji/emojiSvgs/1f6e1.svg new file mode 100644 index 00000000..97f68942 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6e2.svg b/Linphone/data/emoji/emojiSvgs/1f6e2.svg new file mode 100644 index 00000000..b7f9cc61 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6e3.svg b/Linphone/data/emoji/emojiSvgs/1f6e3.svg new file mode 100644 index 00000000..35e82158 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6e4.svg b/Linphone/data/emoji/emojiSvgs/1f6e4.svg new file mode 100644 index 00000000..f11069e8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6e5.svg b/Linphone/data/emoji/emojiSvgs/1f6e5.svg new file mode 100644 index 00000000..b9badb2e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6e5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6e9.svg b/Linphone/data/emoji/emojiSvgs/1f6e9.svg new file mode 100644 index 00000000..fce6b511 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6eb.svg b/Linphone/data/emoji/emojiSvgs/1f6eb.svg new file mode 100644 index 00000000..7bcbb8c9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6ec.svg b/Linphone/data/emoji/emojiSvgs/1f6ec.svg new file mode 100644 index 00000000..ee10becd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6f0.svg b/Linphone/data/emoji/emojiSvgs/1f6f0.svg new file mode 100644 index 00000000..6d9bb3d2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6f3.svg b/Linphone/data/emoji/emojiSvgs/1f6f3.svg new file mode 100644 index 00000000..44862135 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6f4.svg b/Linphone/data/emoji/emojiSvgs/1f6f4.svg new file mode 100644 index 00000000..e217dc43 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6f5.svg b/Linphone/data/emoji/emojiSvgs/1f6f5.svg new file mode 100644 index 00000000..a1e0f4b9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6f6.svg b/Linphone/data/emoji/emojiSvgs/1f6f6.svg new file mode 100644 index 00000000..b6a21652 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6f7.svg b/Linphone/data/emoji/emojiSvgs/1f6f7.svg new file mode 100644 index 00000000..12d776db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6f8.svg b/Linphone/data/emoji/emojiSvgs/1f6f8.svg new file mode 100644 index 00000000..5f015fe7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6f9.svg b/Linphone/data/emoji/emojiSvgs/1f6f9.svg new file mode 100644 index 00000000..1ee4bfec --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6fa.svg b/Linphone/data/emoji/emojiSvgs/1f6fa.svg new file mode 100644 index 00000000..aae4e94a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6fb.svg b/Linphone/data/emoji/emojiSvgs/1f6fb.svg new file mode 100644 index 00000000..87643ae9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f6fc.svg b/Linphone/data/emoji/emojiSvgs/1f6fc.svg new file mode 100644 index 00000000..091d51ef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f6fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f7e0.svg b/Linphone/data/emoji/emojiSvgs/1f7e0.svg new file mode 100644 index 00000000..f5e12007 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f7e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f7e1.svg b/Linphone/data/emoji/emojiSvgs/1f7e1.svg new file mode 100644 index 00000000..5c05d438 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f7e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f7e2.svg b/Linphone/data/emoji/emojiSvgs/1f7e2.svg new file mode 100644 index 00000000..3e68a3fb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f7e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f7e3.svg b/Linphone/data/emoji/emojiSvgs/1f7e3.svg new file mode 100644 index 00000000..8a034cab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f7e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f7e4.svg b/Linphone/data/emoji/emojiSvgs/1f7e4.svg new file mode 100644 index 00000000..ebbc3a73 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f7e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f7e5.svg b/Linphone/data/emoji/emojiSvgs/1f7e5.svg new file mode 100644 index 00000000..5326d657 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f7e5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f7e6.svg b/Linphone/data/emoji/emojiSvgs/1f7e6.svg new file mode 100644 index 00000000..08242260 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f7e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f7e7.svg b/Linphone/data/emoji/emojiSvgs/1f7e7.svg new file mode 100644 index 00000000..1377a4eb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f7e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f7e8.svg b/Linphone/data/emoji/emojiSvgs/1f7e8.svg new file mode 100644 index 00000000..64795b1f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f7e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f7e9.svg b/Linphone/data/emoji/emojiSvgs/1f7e9.svg new file mode 100644 index 00000000..73ed4fa4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f7e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f7ea.svg b/Linphone/data/emoji/emojiSvgs/1f7ea.svg new file mode 100644 index 00000000..c331b1f7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f7ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f7eb.svg b/Linphone/data/emoji/emojiSvgs/1f7eb.svg new file mode 100644 index 00000000..24ee9827 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f7eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90c-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f90c-1f3fb.svg new file mode 100644 index 00000000..8af45213 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90c-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f90c-1f3fc.svg new file mode 100644 index 00000000..7cee5bd5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90c-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f90c-1f3fd.svg new file mode 100644 index 00000000..2898fe39 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90c-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f90c-1f3fe.svg new file mode 100644 index 00000000..2e706ba4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90c-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f90c-1f3ff.svg new file mode 100644 index 00000000..e17d4b09 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90c.svg b/Linphone/data/emoji/emojiSvgs/1f90c.svg new file mode 100644 index 00000000..56b40f34 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90d.svg b/Linphone/data/emoji/emojiSvgs/1f90d.svg new file mode 100644 index 00000000..7deb0cd7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90e.svg b/Linphone/data/emoji/emojiSvgs/1f90e.svg new file mode 100644 index 00000000..275f3c98 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90f-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f90f-1f3fb.svg new file mode 100644 index 00000000..a14c9074 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90f-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90f-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f90f-1f3fc.svg new file mode 100644 index 00000000..8f109cde --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90f-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90f-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f90f-1f3fd.svg new file mode 100644 index 00000000..0e9b3e62 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90f-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90f-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f90f-1f3fe.svg new file mode 100644 index 00000000..07ccb2b6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90f-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90f-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f90f-1f3ff.svg new file mode 100644 index 00000000..78893d0e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90f-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f90f.svg b/Linphone/data/emoji/emojiSvgs/1f90f.svg new file mode 100644 index 00000000..626e3b5f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f90f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f910.svg b/Linphone/data/emoji/emojiSvgs/1f910.svg new file mode 100644 index 00000000..873621f3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f910.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f911.svg b/Linphone/data/emoji/emojiSvgs/1f911.svg new file mode 100644 index 00000000..5616de71 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f911.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f912.svg b/Linphone/data/emoji/emojiSvgs/1f912.svg new file mode 100644 index 00000000..b6ac0a98 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f912.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f913.svg b/Linphone/data/emoji/emojiSvgs/1f913.svg new file mode 100644 index 00000000..d430a684 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f913.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f914.svg b/Linphone/data/emoji/emojiSvgs/1f914.svg new file mode 100644 index 00000000..4e8c4cc2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f914.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f915.svg b/Linphone/data/emoji/emojiSvgs/1f915.svg new file mode 100644 index 00000000..fce67fc5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f915.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f916.svg b/Linphone/data/emoji/emojiSvgs/1f916.svg new file mode 100644 index 00000000..1dbe6d68 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f916.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f917.svg b/Linphone/data/emoji/emojiSvgs/1f917.svg new file mode 100644 index 00000000..13416754 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f917.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f918-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f918-1f3fb.svg new file mode 100644 index 00000000..56fa28a5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f918-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f918-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f918-1f3fc.svg new file mode 100644 index 00000000..bae1401c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f918-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f918-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f918-1f3fd.svg new file mode 100644 index 00000000..98ebab08 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f918-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f918-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f918-1f3fe.svg new file mode 100644 index 00000000..873cef08 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f918-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f918-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f918-1f3ff.svg new file mode 100644 index 00000000..052adbb6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f918-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f918.svg b/Linphone/data/emoji/emojiSvgs/1f918.svg new file mode 100644 index 00000000..c3a10630 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f918.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f919-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f919-1f3fb.svg new file mode 100644 index 00000000..1a9691f9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f919-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f919-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f919-1f3fc.svg new file mode 100644 index 00000000..add5b47b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f919-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f919-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f919-1f3fd.svg new file mode 100644 index 00000000..993c6f77 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f919-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f919-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f919-1f3fe.svg new file mode 100644 index 00000000..a433b38b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f919-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f919-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f919-1f3ff.svg new file mode 100644 index 00000000..226cd45d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f919-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f919.svg b/Linphone/data/emoji/emojiSvgs/1f919.svg new file mode 100644 index 00000000..4ab04541 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f919.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91a-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f91a-1f3fb.svg new file mode 100644 index 00000000..646618e6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91a-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f91a-1f3fc.svg new file mode 100644 index 00000000..4b5f9839 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91a-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f91a-1f3fd.svg new file mode 100644 index 00000000..6d85626e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91a-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f91a-1f3fe.svg new file mode 100644 index 00000000..cc36a248 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91a-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f91a-1f3ff.svg new file mode 100644 index 00000000..1345e971 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91a.svg b/Linphone/data/emoji/emojiSvgs/1f91a.svg new file mode 100644 index 00000000..a3d2b1c9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91b-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f91b-1f3fb.svg new file mode 100644 index 00000000..1deb10c5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91b-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f91b-1f3fc.svg new file mode 100644 index 00000000..7edf532b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91b-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f91b-1f3fd.svg new file mode 100644 index 00000000..d98a536c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91b-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f91b-1f3fe.svg new file mode 100644 index 00000000..e48b751a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91b-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f91b-1f3ff.svg new file mode 100644 index 00000000..3998353b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91b.svg b/Linphone/data/emoji/emojiSvgs/1f91b.svg new file mode 100644 index 00000000..a5a142b5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91c-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f91c-1f3fb.svg new file mode 100644 index 00000000..ff817fd7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91c-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f91c-1f3fc.svg new file mode 100644 index 00000000..732af9c0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91c-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f91c-1f3fd.svg new file mode 100644 index 00000000..79ed35f0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91c-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f91c-1f3fe.svg new file mode 100644 index 00000000..948472fc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91c-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f91c-1f3ff.svg new file mode 100644 index 00000000..eb89c3a8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91c.svg b/Linphone/data/emoji/emojiSvgs/1f91c.svg new file mode 100644 index 00000000..afaa803b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91d.svg b/Linphone/data/emoji/emojiSvgs/1f91d.svg new file mode 100644 index 00000000..3d797a08 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91e-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f91e-1f3fb.svg new file mode 100644 index 00000000..30a387d3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91e-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f91e-1f3fc.svg new file mode 100644 index 00000000..ec2fa508 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91e-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f91e-1f3fd.svg new file mode 100644 index 00000000..b17f2690 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91e-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f91e-1f3fe.svg new file mode 100644 index 00000000..28cbb788 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91e-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f91e-1f3ff.svg new file mode 100644 index 00000000..86e91b2a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91e.svg b/Linphone/data/emoji/emojiSvgs/1f91e.svg new file mode 100644 index 00000000..f85ba652 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91f-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f91f-1f3fb.svg new file mode 100644 index 00000000..aa262319 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91f-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91f-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f91f-1f3fc.svg new file mode 100644 index 00000000..13e4bac5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91f-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91f-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f91f-1f3fd.svg new file mode 100644 index 00000000..274170b9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91f-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91f-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f91f-1f3fe.svg new file mode 100644 index 00000000..f4f18d8d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91f-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91f-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f91f-1f3ff.svg new file mode 100644 index 00000000..d2f5581f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91f-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f91f.svg b/Linphone/data/emoji/emojiSvgs/1f91f.svg new file mode 100644 index 00000000..4f3d74f0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f91f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f920.svg b/Linphone/data/emoji/emojiSvgs/1f920.svg new file mode 100644 index 00000000..da7cfa26 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f920.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f921.svg b/Linphone/data/emoji/emojiSvgs/1f921.svg new file mode 100644 index 00000000..6d16a662 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f921.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f922.svg b/Linphone/data/emoji/emojiSvgs/1f922.svg new file mode 100644 index 00000000..ed7c86c0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f922.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f923.svg b/Linphone/data/emoji/emojiSvgs/1f923.svg new file mode 100644 index 00000000..7ddfcae3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f923.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f924.svg b/Linphone/data/emoji/emojiSvgs/1f924.svg new file mode 100644 index 00000000..9af71fc9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f924.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f925.svg b/Linphone/data/emoji/emojiSvgs/1f925.svg new file mode 100644 index 00000000..9f255307 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f925.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..01f59a19 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..90f06b3e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3fb.svg new file mode 100644 index 00000000..80e07bb5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..a479826f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..ea55c5ad --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3fc.svg new file mode 100644 index 00000000..227838db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..ece26ca0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..5df9aa23 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3fd.svg new file mode 100644 index 00000000..7ef592b7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..8e677c49 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..df48aee7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3fe.svg new file mode 100644 index 00000000..caf3e782 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..c5a86035 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..e19ae754 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f926-1f3ff.svg new file mode 100644 index 00000000..e3f244a8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f926-200d-2640-fe0f.svg new file mode 100644 index 00000000..a31d72bd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f926-200d-2642-fe0f.svg new file mode 100644 index 00000000..29cbd0bb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f926.svg b/Linphone/data/emoji/emojiSvgs/1f926.svg new file mode 100644 index 00000000..631e91c3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f926.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f927.svg b/Linphone/data/emoji/emojiSvgs/1f927.svg new file mode 100644 index 00000000..dc86ab35 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f927.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f928.svg b/Linphone/data/emoji/emojiSvgs/1f928.svg new file mode 100644 index 00000000..126e459b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f928.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f929.svg b/Linphone/data/emoji/emojiSvgs/1f929.svg new file mode 100644 index 00000000..260cd80a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f929.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f92a.svg b/Linphone/data/emoji/emojiSvgs/1f92a.svg new file mode 100644 index 00000000..baf58f21 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f92a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f92b.svg b/Linphone/data/emoji/emojiSvgs/1f92b.svg new file mode 100644 index 00000000..a00edc96 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f92b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f92c.svg b/Linphone/data/emoji/emojiSvgs/1f92c.svg new file mode 100644 index 00000000..c26a5aa4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f92c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f92d.svg b/Linphone/data/emoji/emojiSvgs/1f92d.svg new file mode 100644 index 00000000..b79e0673 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f92d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f92e.svg b/Linphone/data/emoji/emojiSvgs/1f92e.svg new file mode 100644 index 00000000..d792679f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f92e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f92f.svg b/Linphone/data/emoji/emojiSvgs/1f92f.svg new file mode 100644 index 00000000..3ac19ed4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f92f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f930-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f930-1f3fb.svg new file mode 100644 index 00000000..925d1e45 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f930-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f930-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f930-1f3fc.svg new file mode 100644 index 00000000..e308ef95 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f930-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f930-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f930-1f3fd.svg new file mode 100644 index 00000000..39d55f47 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f930-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f930-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f930-1f3fe.svg new file mode 100644 index 00000000..ee049b84 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f930-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f930-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f930-1f3ff.svg new file mode 100644 index 00000000..607d72eb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f930-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f930.svg b/Linphone/data/emoji/emojiSvgs/1f930.svg new file mode 100644 index 00000000..31a93772 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f930.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f931-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f931-1f3fb.svg new file mode 100644 index 00000000..e4815f2a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f931-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f931-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f931-1f3fc.svg new file mode 100644 index 00000000..c02ddc31 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f931-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f931-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f931-1f3fd.svg new file mode 100644 index 00000000..fc4150b9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f931-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f931-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f931-1f3fe.svg new file mode 100644 index 00000000..7cd0602f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f931-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f931-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f931-1f3ff.svg new file mode 100644 index 00000000..6ea48e4c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f931-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f931.svg b/Linphone/data/emoji/emojiSvgs/1f931.svg new file mode 100644 index 00000000..86dc551c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f931.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f932-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f932-1f3fb.svg new file mode 100644 index 00000000..c1d616ec --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f932-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f932-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f932-1f3fc.svg new file mode 100644 index 00000000..ee95f09b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f932-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f932-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f932-1f3fd.svg new file mode 100644 index 00000000..78d13a06 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f932-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f932-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f932-1f3fe.svg new file mode 100644 index 00000000..4a22a200 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f932-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f932-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f932-1f3ff.svg new file mode 100644 index 00000000..2cd1f7d7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f932-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f932.svg b/Linphone/data/emoji/emojiSvgs/1f932.svg new file mode 100644 index 00000000..96b6c65c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f932.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f933-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f933-1f3fb.svg new file mode 100644 index 00000000..066c2a83 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f933-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f933-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f933-1f3fc.svg new file mode 100644 index 00000000..6722d158 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f933-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f933-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f933-1f3fd.svg new file mode 100644 index 00000000..b3f2bd5a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f933-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f933-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f933-1f3fe.svg new file mode 100644 index 00000000..f95578a6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f933-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f933-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f933-1f3ff.svg new file mode 100644 index 00000000..1cad7851 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f933-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f933.svg b/Linphone/data/emoji/emojiSvgs/1f933.svg new file mode 100644 index 00000000..88382e13 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f933.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f934-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f934-1f3fb.svg new file mode 100644 index 00000000..eaa8fb27 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f934-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f934-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f934-1f3fc.svg new file mode 100644 index 00000000..5feff0ac --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f934-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f934-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f934-1f3fd.svg new file mode 100644 index 00000000..04db0c91 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f934-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f934-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f934-1f3fe.svg new file mode 100644 index 00000000..a26398fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f934-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f934-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f934-1f3ff.svg new file mode 100644 index 00000000..ad40c9d5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f934-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f934.svg b/Linphone/data/emoji/emojiSvgs/1f934.svg new file mode 100644 index 00000000..666ac38c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f934.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..d0e7ba4e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..abd68b8f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3fb.svg new file mode 100644 index 00000000..0994b27a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..5b10171c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..f7093beb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3fc.svg new file mode 100644 index 00000000..a674ce96 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..35d0ab5d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..5ed3aa32 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3fd.svg new file mode 100644 index 00000000..af123557 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..5b062360 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..6ed7fb36 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3fe.svg new file mode 100644 index 00000000..3e69b42c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..70f6517f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..3af34ef2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f935-1f3ff.svg new file mode 100644 index 00000000..3df4f27f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f935-200d-2640-fe0f.svg new file mode 100644 index 00000000..63ef4c95 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f935-200d-2642-fe0f.svg new file mode 100644 index 00000000..5c87be48 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f935.svg b/Linphone/data/emoji/emojiSvgs/1f935.svg new file mode 100644 index 00000000..5b0498b1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f935.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f936-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f936-1f3fb.svg new file mode 100644 index 00000000..0227456d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f936-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f936-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f936-1f3fc.svg new file mode 100644 index 00000000..5887d75e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f936-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f936-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f936-1f3fd.svg new file mode 100644 index 00000000..3e1853d2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f936-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f936-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f936-1f3fe.svg new file mode 100644 index 00000000..6d94d270 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f936-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f936-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f936-1f3ff.svg new file mode 100644 index 00000000..2178a33c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f936-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f936.svg b/Linphone/data/emoji/emojiSvgs/1f936.svg new file mode 100644 index 00000000..6cabe582 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f936.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..1c60fc38 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..0a92c44a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3fb.svg new file mode 100644 index 00000000..b44ceefc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..af1de040 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..b8791a96 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3fc.svg new file mode 100644 index 00000000..dc703ebd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..1e7109af --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..48de9945 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3fd.svg new file mode 100644 index 00000000..9037d4e2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..b5731d5e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..1ce63b9e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3fe.svg new file mode 100644 index 00000000..36763bb0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..2400a4e7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..534538c2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f937-1f3ff.svg new file mode 100644 index 00000000..e39f0707 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f937-200d-2640-fe0f.svg new file mode 100644 index 00000000..f78db073 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f937-200d-2642-fe0f.svg new file mode 100644 index 00000000..29d7e1ef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f937.svg b/Linphone/data/emoji/emojiSvgs/1f937.svg new file mode 100644 index 00000000..d5984aa1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f937.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..c5a0d1e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..24576655 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3fb.svg new file mode 100644 index 00000000..aeb71a86 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..15b2df73 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..32a69385 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3fc.svg new file mode 100644 index 00000000..99b46eac --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..58447e65 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..bb9f50ce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3fd.svg new file mode 100644 index 00000000..fb0e2798 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..b17fdb44 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..cce9c90e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3fe.svg new file mode 100644 index 00000000..41abefee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..076b69d9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..4f61ec9e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f938-1f3ff.svg new file mode 100644 index 00000000..52eb41e8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f938-200d-2640-fe0f.svg new file mode 100644 index 00000000..9cec3f99 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f938-200d-2642-fe0f.svg new file mode 100644 index 00000000..7aa23feb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f938.svg b/Linphone/data/emoji/emojiSvgs/1f938.svg new file mode 100644 index 00000000..aaf5b18d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f938.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..e6cda1aa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..8b7579bf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3fb.svg new file mode 100644 index 00000000..b794735d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..511b808e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..11006e21 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3fc.svg new file mode 100644 index 00000000..1bc4dba9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..cada29fe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..98b3b798 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3fd.svg new file mode 100644 index 00000000..fe7c94fc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..7ecc0913 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..dd367057 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3fe.svg new file mode 100644 index 00000000..5bd7d053 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..87bf7e09 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..ab10e892 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f939-1f3ff.svg new file mode 100644 index 00000000..43016b27 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f939-200d-2640-fe0f.svg new file mode 100644 index 00000000..0e3e5e4d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f939-200d-2642-fe0f.svg new file mode 100644 index 00000000..62230dc4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f939.svg b/Linphone/data/emoji/emojiSvgs/1f939.svg new file mode 100644 index 00000000..d79aad75 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f939.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93a.svg b/Linphone/data/emoji/emojiSvgs/1f93a.svg new file mode 100644 index 00000000..5cfb388e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93c-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93c-200d-2640-fe0f.svg new file mode 100644 index 00000000..9abd8337 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93c-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93c-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93c-200d-2642-fe0f.svg new file mode 100644 index 00000000..13ec50b4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93c-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93c.svg b/Linphone/data/emoji/emojiSvgs/1f93c.svg new file mode 100644 index 00000000..fcd902e7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..5f6fa5a8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..62da945e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fb.svg new file mode 100644 index 00000000..5bba0fba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..f0f9e7fc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..6df27874 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fc.svg new file mode 100644 index 00000000..ed5845ab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..49c426de --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..2b8c67d1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fd.svg new file mode 100644 index 00000000..4056ca51 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..1efd46ae --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..045d9fde --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fe.svg new file mode 100644 index 00000000..2de4cfaf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..bf063016 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..60c34455 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f93d-1f3ff.svg new file mode 100644 index 00000000..37c3616c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93d-200d-2640-fe0f.svg new file mode 100644 index 00000000..1cca2e7c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93d-200d-2642-fe0f.svg new file mode 100644 index 00000000..9469b6a0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93d.svg b/Linphone/data/emoji/emojiSvgs/1f93d.svg new file mode 100644 index 00000000..df8453d8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..46d9bdca --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..02989634 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fb.svg new file mode 100644 index 00000000..0988f267 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..2a6191fd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..ac5a4bb8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fc.svg new file mode 100644 index 00000000..8ee96e0b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..ca6f6c27 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..63fe0d4c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fd.svg new file mode 100644 index 00000000..a4e93ba4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..692ed9d3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..5639542c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fe.svg new file mode 100644 index 00000000..95c71b92 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..ec3b45f8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..1d547f9b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f93e-1f3ff.svg new file mode 100644 index 00000000..8456c783 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93e-200d-2640-fe0f.svg new file mode 100644 index 00000000..28e86b3e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f93e-200d-2642-fe0f.svg new file mode 100644 index 00000000..3efb4668 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93e.svg b/Linphone/data/emoji/emojiSvgs/1f93e.svg new file mode 100644 index 00000000..b678e656 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f93f.svg b/Linphone/data/emoji/emojiSvgs/1f93f.svg new file mode 100644 index 00000000..01239db8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f93f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f940.svg b/Linphone/data/emoji/emojiSvgs/1f940.svg new file mode 100644 index 00000000..dedff208 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f940.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f941.svg b/Linphone/data/emoji/emojiSvgs/1f941.svg new file mode 100644 index 00000000..e197d16c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f941.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f942.svg b/Linphone/data/emoji/emojiSvgs/1f942.svg new file mode 100644 index 00000000..30167b03 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f942.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f943.svg b/Linphone/data/emoji/emojiSvgs/1f943.svg new file mode 100644 index 00000000..27750ea6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f943.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f944.svg b/Linphone/data/emoji/emojiSvgs/1f944.svg new file mode 100644 index 00000000..1f2d69fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f944.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f945.svg b/Linphone/data/emoji/emojiSvgs/1f945.svg new file mode 100644 index 00000000..4d187f2f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f945.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f947.svg b/Linphone/data/emoji/emojiSvgs/1f947.svg new file mode 100644 index 00000000..c67af77c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f947.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f948.svg b/Linphone/data/emoji/emojiSvgs/1f948.svg new file mode 100644 index 00000000..685db6d1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f948.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f949.svg b/Linphone/data/emoji/emojiSvgs/1f949.svg new file mode 100644 index 00000000..6bb5f773 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f949.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f94a.svg b/Linphone/data/emoji/emojiSvgs/1f94a.svg new file mode 100644 index 00000000..fa16edbd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f94a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f94b.svg b/Linphone/data/emoji/emojiSvgs/1f94b.svg new file mode 100644 index 00000000..33d6e213 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f94b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f94c.svg b/Linphone/data/emoji/emojiSvgs/1f94c.svg new file mode 100644 index 00000000..9bc8f8a5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f94c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f94d.svg b/Linphone/data/emoji/emojiSvgs/1f94d.svg new file mode 100644 index 00000000..8c6bcb98 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f94d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f94e.svg b/Linphone/data/emoji/emojiSvgs/1f94e.svg new file mode 100644 index 00000000..1c9270ce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f94e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f94f.svg b/Linphone/data/emoji/emojiSvgs/1f94f.svg new file mode 100644 index 00000000..84fdba47 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f94f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f950.svg b/Linphone/data/emoji/emojiSvgs/1f950.svg new file mode 100644 index 00000000..eef4358d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f950.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f951.svg b/Linphone/data/emoji/emojiSvgs/1f951.svg new file mode 100644 index 00000000..ed1d9f9f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f951.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f952.svg b/Linphone/data/emoji/emojiSvgs/1f952.svg new file mode 100644 index 00000000..83cba03c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f952.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f953.svg b/Linphone/data/emoji/emojiSvgs/1f953.svg new file mode 100644 index 00000000..82d4c82b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f953.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f954.svg b/Linphone/data/emoji/emojiSvgs/1f954.svg new file mode 100644 index 00000000..b8d120d9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f954.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f955.svg b/Linphone/data/emoji/emojiSvgs/1f955.svg new file mode 100644 index 00000000..b949554f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f955.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f956.svg b/Linphone/data/emoji/emojiSvgs/1f956.svg new file mode 100644 index 00000000..8da10427 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f956.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f957.svg b/Linphone/data/emoji/emojiSvgs/1f957.svg new file mode 100644 index 00000000..f18b0965 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f957.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f958.svg b/Linphone/data/emoji/emojiSvgs/1f958.svg new file mode 100644 index 00000000..878520cf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f958.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f959.svg b/Linphone/data/emoji/emojiSvgs/1f959.svg new file mode 100644 index 00000000..baa9a4b9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f959.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f95a.svg b/Linphone/data/emoji/emojiSvgs/1f95a.svg new file mode 100644 index 00000000..1e760176 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f95a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f95b.svg b/Linphone/data/emoji/emojiSvgs/1f95b.svg new file mode 100644 index 00000000..73947e88 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f95b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f95c.svg b/Linphone/data/emoji/emojiSvgs/1f95c.svg new file mode 100644 index 00000000..c809689a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f95c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f95d.svg b/Linphone/data/emoji/emojiSvgs/1f95d.svg new file mode 100644 index 00000000..4007a720 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f95d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f95e.svg b/Linphone/data/emoji/emojiSvgs/1f95e.svg new file mode 100644 index 00000000..795fb134 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f95e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f95f.svg b/Linphone/data/emoji/emojiSvgs/1f95f.svg new file mode 100644 index 00000000..57f13af8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f95f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f960.svg b/Linphone/data/emoji/emojiSvgs/1f960.svg new file mode 100644 index 00000000..5d61144b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f960.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f961.svg b/Linphone/data/emoji/emojiSvgs/1f961.svg new file mode 100644 index 00000000..6a05c9c2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f961.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f962.svg b/Linphone/data/emoji/emojiSvgs/1f962.svg new file mode 100644 index 00000000..adde7aa5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f962.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f963.svg b/Linphone/data/emoji/emojiSvgs/1f963.svg new file mode 100644 index 00000000..00e5ae6f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f963.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f964.svg b/Linphone/data/emoji/emojiSvgs/1f964.svg new file mode 100644 index 00000000..3556dd9e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f964.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f965.svg b/Linphone/data/emoji/emojiSvgs/1f965.svg new file mode 100644 index 00000000..7f169279 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f965.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f966.svg b/Linphone/data/emoji/emojiSvgs/1f966.svg new file mode 100644 index 00000000..ee2bc1cb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f966.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f967.svg b/Linphone/data/emoji/emojiSvgs/1f967.svg new file mode 100644 index 00000000..5916cacd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f967.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f968.svg b/Linphone/data/emoji/emojiSvgs/1f968.svg new file mode 100644 index 00000000..10bd682b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f968.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f969.svg b/Linphone/data/emoji/emojiSvgs/1f969.svg new file mode 100644 index 00000000..28a6a1ac --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f969.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f96a.svg b/Linphone/data/emoji/emojiSvgs/1f96a.svg new file mode 100644 index 00000000..d514ba76 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f96a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f96b.svg b/Linphone/data/emoji/emojiSvgs/1f96b.svg new file mode 100644 index 00000000..9c451ed0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f96b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f96c.svg b/Linphone/data/emoji/emojiSvgs/1f96c.svg new file mode 100644 index 00000000..6ef36cb2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f96c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f96d.svg b/Linphone/data/emoji/emojiSvgs/1f96d.svg new file mode 100644 index 00000000..b5607c10 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f96d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f96e.svg b/Linphone/data/emoji/emojiSvgs/1f96e.svg new file mode 100644 index 00000000..ebb7ba98 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f96e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f96f.svg b/Linphone/data/emoji/emojiSvgs/1f96f.svg new file mode 100644 index 00000000..6a65f4c1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f96f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f970.svg b/Linphone/data/emoji/emojiSvgs/1f970.svg new file mode 100644 index 00000000..6b063dfc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f970.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f971.svg b/Linphone/data/emoji/emojiSvgs/1f971.svg new file mode 100644 index 00000000..26444c6a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f971.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f972.svg b/Linphone/data/emoji/emojiSvgs/1f972.svg new file mode 100644 index 00000000..f309c223 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f972.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f973.svg b/Linphone/data/emoji/emojiSvgs/1f973.svg new file mode 100644 index 00000000..c7a95387 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f973.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f974.svg b/Linphone/data/emoji/emojiSvgs/1f974.svg new file mode 100644 index 00000000..87bb859c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f974.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f975.svg b/Linphone/data/emoji/emojiSvgs/1f975.svg new file mode 100644 index 00000000..09e99a3e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f975.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f976.svg b/Linphone/data/emoji/emojiSvgs/1f976.svg new file mode 100644 index 00000000..e32efddc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f976.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f977-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f977-1f3fb.svg new file mode 100644 index 00000000..5c981c21 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f977-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f977-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f977-1f3fc.svg new file mode 100644 index 00000000..6c3545e5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f977-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f977-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f977-1f3fd.svg new file mode 100644 index 00000000..557267b7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f977-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f977-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f977-1f3fe.svg new file mode 100644 index 00000000..8b65491b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f977-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f977-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f977-1f3ff.svg new file mode 100644 index 00000000..7d328727 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f977-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f977.svg b/Linphone/data/emoji/emojiSvgs/1f977.svg new file mode 100644 index 00000000..84be7d7a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f977.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f978.svg b/Linphone/data/emoji/emojiSvgs/1f978.svg new file mode 100644 index 00000000..6d1e4e11 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f978.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f97a.svg b/Linphone/data/emoji/emojiSvgs/1f97a.svg new file mode 100644 index 00000000..fe933608 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f97a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f97b.svg b/Linphone/data/emoji/emojiSvgs/1f97b.svg new file mode 100644 index 00000000..846d591c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f97b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f97c.svg b/Linphone/data/emoji/emojiSvgs/1f97c.svg new file mode 100644 index 00000000..5d19b273 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f97c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f97d.svg b/Linphone/data/emoji/emojiSvgs/1f97d.svg new file mode 100644 index 00000000..cdb79f9f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f97d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f97e.svg b/Linphone/data/emoji/emojiSvgs/1f97e.svg new file mode 100644 index 00000000..67150285 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f97e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f97f.svg b/Linphone/data/emoji/emojiSvgs/1f97f.svg new file mode 100644 index 00000000..22063078 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f97f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f980.svg b/Linphone/data/emoji/emojiSvgs/1f980.svg new file mode 100644 index 00000000..8f45b53d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f980.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f981.svg b/Linphone/data/emoji/emojiSvgs/1f981.svg new file mode 100644 index 00000000..674ff24e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f981.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f982.svg b/Linphone/data/emoji/emojiSvgs/1f982.svg new file mode 100644 index 00000000..582c7223 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f982.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f983.svg b/Linphone/data/emoji/emojiSvgs/1f983.svg new file mode 100644 index 00000000..e9de7de9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f983.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f984.svg b/Linphone/data/emoji/emojiSvgs/1f984.svg new file mode 100644 index 00000000..19d9ff16 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f984.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f985.svg b/Linphone/data/emoji/emojiSvgs/1f985.svg new file mode 100644 index 00000000..81b7b3cc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f985.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f986.svg b/Linphone/data/emoji/emojiSvgs/1f986.svg new file mode 100644 index 00000000..085c9006 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f986.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f987.svg b/Linphone/data/emoji/emojiSvgs/1f987.svg new file mode 100644 index 00000000..4ebb5ad4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f987.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f988.svg b/Linphone/data/emoji/emojiSvgs/1f988.svg new file mode 100644 index 00000000..f6381c52 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f988.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f989.svg b/Linphone/data/emoji/emojiSvgs/1f989.svg new file mode 100644 index 00000000..bb0d461a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f989.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f98a.svg b/Linphone/data/emoji/emojiSvgs/1f98a.svg new file mode 100644 index 00000000..13704a41 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f98a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f98b.svg b/Linphone/data/emoji/emojiSvgs/1f98b.svg new file mode 100644 index 00000000..22c6ead8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f98b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f98c.svg b/Linphone/data/emoji/emojiSvgs/1f98c.svg new file mode 100644 index 00000000..86623680 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f98c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f98d.svg b/Linphone/data/emoji/emojiSvgs/1f98d.svg new file mode 100644 index 00000000..aa599232 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f98d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f98e.svg b/Linphone/data/emoji/emojiSvgs/1f98e.svg new file mode 100644 index 00000000..1164a73b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f98e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f98f.svg b/Linphone/data/emoji/emojiSvgs/1f98f.svg new file mode 100644 index 00000000..0d07017a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f98f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f990.svg b/Linphone/data/emoji/emojiSvgs/1f990.svg new file mode 100644 index 00000000..8279307e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f990.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f991.svg b/Linphone/data/emoji/emojiSvgs/1f991.svg new file mode 100644 index 00000000..e0bbf92c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f991.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f992.svg b/Linphone/data/emoji/emojiSvgs/1f992.svg new file mode 100644 index 00000000..233e3c98 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f992.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f993.svg b/Linphone/data/emoji/emojiSvgs/1f993.svg new file mode 100644 index 00000000..2cb4b9eb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f993.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f994.svg b/Linphone/data/emoji/emojiSvgs/1f994.svg new file mode 100644 index 00000000..ebbfc2ad --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f994.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f995.svg b/Linphone/data/emoji/emojiSvgs/1f995.svg new file mode 100644 index 00000000..fb046c69 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f995.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f996.svg b/Linphone/data/emoji/emojiSvgs/1f996.svg new file mode 100644 index 00000000..64b68d75 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f996.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f997.svg b/Linphone/data/emoji/emojiSvgs/1f997.svg new file mode 100644 index 00000000..f26413fd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f997.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f998.svg b/Linphone/data/emoji/emojiSvgs/1f998.svg new file mode 100644 index 00000000..8a72b40a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f998.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f999.svg b/Linphone/data/emoji/emojiSvgs/1f999.svg new file mode 100644 index 00000000..b505faf8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f999.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f99a.svg b/Linphone/data/emoji/emojiSvgs/1f99a.svg new file mode 100644 index 00000000..7606d382 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f99a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f99b.svg b/Linphone/data/emoji/emojiSvgs/1f99b.svg new file mode 100644 index 00000000..2764249c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f99b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f99c.svg b/Linphone/data/emoji/emojiSvgs/1f99c.svg new file mode 100644 index 00000000..f7f743c5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f99c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f99d.svg b/Linphone/data/emoji/emojiSvgs/1f99d.svg new file mode 100644 index 00000000..30c88720 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f99d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f99e.svg b/Linphone/data/emoji/emojiSvgs/1f99e.svg new file mode 100644 index 00000000..8df2a746 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f99e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f99f.svg b/Linphone/data/emoji/emojiSvgs/1f99f.svg new file mode 100644 index 00000000..58881512 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f99f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9a0.svg b/Linphone/data/emoji/emojiSvgs/1f9a0.svg new file mode 100644 index 00000000..cea144ea --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9a1.svg b/Linphone/data/emoji/emojiSvgs/1f9a1.svg new file mode 100644 index 00000000..92f42fd8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9a2.svg b/Linphone/data/emoji/emojiSvgs/1f9a2.svg new file mode 100644 index 00000000..9c383817 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9a2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9a3.svg b/Linphone/data/emoji/emojiSvgs/1f9a3.svg new file mode 100644 index 00000000..1aa87190 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9a3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9a4.svg b/Linphone/data/emoji/emojiSvgs/1f9a4.svg new file mode 100644 index 00000000..1dbac1e3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9a5.svg b/Linphone/data/emoji/emojiSvgs/1f9a5.svg new file mode 100644 index 00000000..7371a8ed --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9a6.svg b/Linphone/data/emoji/emojiSvgs/1f9a6.svg new file mode 100644 index 00000000..5ea0173a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9a6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9a7.svg b/Linphone/data/emoji/emojiSvgs/1f9a7.svg new file mode 100644 index 00000000..03828455 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9a8.svg b/Linphone/data/emoji/emojiSvgs/1f9a8.svg new file mode 100644 index 00000000..47478ffe --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9a9.svg b/Linphone/data/emoji/emojiSvgs/1f9a9.svg new file mode 100644 index 00000000..aaa5cfa2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9aa.svg b/Linphone/data/emoji/emojiSvgs/1f9aa.svg new file mode 100644 index 00000000..f0f47786 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ab.svg b/Linphone/data/emoji/emojiSvgs/1f9ab.svg new file mode 100644 index 00000000..7967d678 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ac.svg b/Linphone/data/emoji/emojiSvgs/1f9ac.svg new file mode 100644 index 00000000..c8156813 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ad.svg b/Linphone/data/emoji/emojiSvgs/1f9ad.svg new file mode 100644 index 00000000..6904e81a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ae.svg b/Linphone/data/emoji/emojiSvgs/1f9ae.svg new file mode 100644 index 00000000..fc635872 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f9af.svg new file mode 100644 index 00000000..aba8a980 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f9b0.svg new file mode 100644 index 00000000..5cb487ef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f9b1.svg new file mode 100644 index 00000000..414422b8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f9b2.svg new file mode 100644 index 00000000..035b6919 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f9b3.svg new file mode 100644 index 00000000..ea3072c4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b4.svg b/Linphone/data/emoji/emojiSvgs/1f9b4.svg new file mode 100644 index 00000000..624de728 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b5-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9b5-1f3fb.svg new file mode 100644 index 00000000..0a233cf4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b5-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b5-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9b5-1f3fc.svg new file mode 100644 index 00000000..229bd21d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b5-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b5-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9b5-1f3fd.svg new file mode 100644 index 00000000..dce4696f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b5-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b5-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9b5-1f3fe.svg new file mode 100644 index 00000000..5cb99073 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b5-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b5-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9b5-1f3ff.svg new file mode 100644 index 00000000..6bdc2f93 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b5-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b5.svg b/Linphone/data/emoji/emojiSvgs/1f9b5.svg new file mode 100644 index 00000000..178fd158 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b6-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9b6-1f3fb.svg new file mode 100644 index 00000000..29677fb3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b6-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b6-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9b6-1f3fc.svg new file mode 100644 index 00000000..dc679d09 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b6-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b6-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9b6-1f3fd.svg new file mode 100644 index 00000000..8f0f6892 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b6-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b6-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9b6-1f3fe.svg new file mode 100644 index 00000000..0752f698 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b6-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b6-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9b6-1f3ff.svg new file mode 100644 index 00000000..297e0b41 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b6-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b6.svg b/Linphone/data/emoji/emojiSvgs/1f9b6.svg new file mode 100644 index 00000000..abbbbac9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b7.svg b/Linphone/data/emoji/emojiSvgs/1f9b7.svg new file mode 100644 index 00000000..49cc5f9c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..f50f846a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..fc3adcb6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fb.svg new file mode 100644 index 00000000..52a50d9e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..3b0a5be2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..3e223f3e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fc.svg new file mode 100644 index 00000000..8a2fc9b6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..e87b63fd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..f3575906 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fd.svg new file mode 100644 index 00000000..a9ee6d80 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..355bbad7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..a1535bfd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fe.svg new file mode 100644 index 00000000..11d689b4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..d4126a1b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..8e5c1505 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3ff.svg new file mode 100644 index 00000000..58b200eb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-200d-2640-fe0f.svg new file mode 100644 index 00000000..120097ee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b8-200d-2642-fe0f.svg new file mode 100644 index 00000000..404dcb20 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b8.svg b/Linphone/data/emoji/emojiSvgs/1f9b8.svg new file mode 100644 index 00000000..f0122153 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..e52e0d8d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..ced012a4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fb.svg new file mode 100644 index 00000000..2070980d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..61c9be88 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..67a93de7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fc.svg new file mode 100644 index 00000000..2a0ce49f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..eeb4f074 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..091e36b2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fd.svg new file mode 100644 index 00000000..199cceb6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..463ee894 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..008a07f1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fe.svg new file mode 100644 index 00000000..63f24fd9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..a110d6d4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..ec17e3b5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3ff.svg new file mode 100644 index 00000000..bd52692b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-200d-2640-fe0f.svg new file mode 100644 index 00000000..97ee7719 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9b9-200d-2642-fe0f.svg new file mode 100644 index 00000000..6c207613 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9b9.svg b/Linphone/data/emoji/emojiSvgs/1f9b9.svg new file mode 100644 index 00000000..43922b08 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9b9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ba.svg b/Linphone/data/emoji/emojiSvgs/1f9ba.svg new file mode 100644 index 00000000..50bf8e37 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9bb-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9bb-1f3fb.svg new file mode 100644 index 00000000..b94d484a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9bb-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9bb-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9bb-1f3fc.svg new file mode 100644 index 00000000..d187bad0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9bb-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9bb-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9bb-1f3fd.svg new file mode 100644 index 00000000..51ed272c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9bb-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9bb-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9bb-1f3fe.svg new file mode 100644 index 00000000..af889ade --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9bb-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9bb-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9bb-1f3ff.svg new file mode 100644 index 00000000..818e532d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9bb-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9bb.svg b/Linphone/data/emoji/emojiSvgs/1f9bb.svg new file mode 100644 index 00000000..05bc0201 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f9bc.svg new file mode 100644 index 00000000..153f5531 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f9bd.svg new file mode 100644 index 00000000..c371d4bf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9be.svg b/Linphone/data/emoji/emojiSvgs/1f9be.svg new file mode 100644 index 00000000..c3d2db4f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9bf.svg b/Linphone/data/emoji/emojiSvgs/1f9bf.svg new file mode 100644 index 00000000..db17a633 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9c0.svg b/Linphone/data/emoji/emojiSvgs/1f9c0.svg new file mode 100644 index 00000000..20e6a92f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9c1.svg b/Linphone/data/emoji/emojiSvgs/1f9c1.svg new file mode 100644 index 00000000..1f966c36 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9c1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9c2.svg b/Linphone/data/emoji/emojiSvgs/1f9c2.svg new file mode 100644 index 00000000..40dea883 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9c3.svg b/Linphone/data/emoji/emojiSvgs/1f9c3.svg new file mode 100644 index 00000000..51a3f26d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9c4.svg b/Linphone/data/emoji/emojiSvgs/1f9c4.svg new file mode 100644 index 00000000..37a9f36e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9c5.svg b/Linphone/data/emoji/emojiSvgs/1f9c5.svg new file mode 100644 index 00000000..ab68cb1d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9c6.svg b/Linphone/data/emoji/emojiSvgs/1f9c6.svg new file mode 100644 index 00000000..c360564e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9c6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9c7.svg b/Linphone/data/emoji/emojiSvgs/1f9c7.svg new file mode 100644 index 00000000..cc92a9d1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9c7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9c8.svg b/Linphone/data/emoji/emojiSvgs/1f9c8.svg new file mode 100644 index 00000000..d7a5674c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9c8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9c9.svg b/Linphone/data/emoji/emojiSvgs/1f9c9.svg new file mode 100644 index 00000000..16b0db82 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9c9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ca.svg b/Linphone/data/emoji/emojiSvgs/1f9ca.svg new file mode 100644 index 00000000..569fe039 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ca.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cb.svg b/Linphone/data/emoji/emojiSvgs/1f9cb.svg new file mode 100644 index 00000000..8cb61784 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..d5981e34 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..8fbd6c03 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fb.svg new file mode 100644 index 00000000..3492853c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..7f81ff85 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..0ea6dafd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fc.svg new file mode 100644 index 00000000..b974f41f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..48329af5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..3197184b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fd.svg new file mode 100644 index 00000000..468edc6b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..696243dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..8b05543d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fe.svg new file mode 100644 index 00000000..db22d184 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..c96659ce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..59fb6a93 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3ff.svg new file mode 100644 index 00000000..5191b96d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-200d-2640-fe0f.svg new file mode 100644 index 00000000..1b8bfc38 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cd-200d-2642-fe0f.svg new file mode 100644 index 00000000..450561e2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cd.svg b/Linphone/data/emoji/emojiSvgs/1f9cd.svg new file mode 100644 index 00000000..331041b7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..37507496 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..97de596d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fb.svg new file mode 100644 index 00000000..6f97b1b9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..ee5bf15a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..e5186577 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fc.svg new file mode 100644 index 00000000..0977ee6d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..e210695d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..269c7cec --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fd.svg new file mode 100644 index 00000000..7fe4f06e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..e2b09309 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..54e4ba95 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fe.svg new file mode 100644 index 00000000..2f70944a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..0f2dc0c4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..b51d7ff8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3ff.svg new file mode 100644 index 00000000..542a6041 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-200d-2640-fe0f.svg new file mode 100644 index 00000000..40b5754e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9ce-200d-2642-fe0f.svg new file mode 100644 index 00000000..1c8ddcd8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ce.svg b/Linphone/data/emoji/emojiSvgs/1f9ce.svg new file mode 100644 index 00000000..86a60cb1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..9605fac0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..be0cd900 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fb.svg new file mode 100644 index 00000000..297d20ac --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..a463bd6e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..31236464 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fc.svg new file mode 100644 index 00000000..ef8f1d8c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..623b3445 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..d41a0fa6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fd.svg new file mode 100644 index 00000000..f1ed199e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..d63eee45 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..dd439266 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fe.svg new file mode 100644 index 00000000..480a1a66 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..6064882a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..748ab421 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3ff.svg new file mode 100644 index 00000000..d44bde71 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-200d-2640-fe0f.svg new file mode 100644 index 00000000..7d8f058a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9cf-200d-2642-fe0f.svg new file mode 100644 index 00000000..8c119c99 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9cf.svg b/Linphone/data/emoji/emojiSvgs/1f9cf.svg new file mode 100644 index 00000000..b6325213 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d0.svg b/Linphone/data/emoji/emojiSvgs/1f9d0.svg new file mode 100644 index 00000000..86198f7f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f33e.svg new file mode 100644 index 00000000..9963675b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f373.svg new file mode 100644 index 00000000..35898dad --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f37c.svg new file mode 100644 index 00000000..624d945f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f384.svg new file mode 100644 index 00000000..e204d68a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f393.svg new file mode 100644 index 00000000..73f9b6d0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f3a4.svg new file mode 100644 index 00000000..b093c515 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f3a8.svg new file mode 100644 index 00000000..260397c5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f3eb.svg new file mode 100644 index 00000000..09c5866a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f3ed.svg new file mode 100644 index 00000000..00836e95 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f4bb.svg new file mode 100644 index 00000000..b38cf485 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f4bc.svg new file mode 100644 index 00000000..5c448c35 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f527.svg new file mode 100644 index 00000000..94bf92c2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f52c.svg new file mode 100644 index 00000000..726e3780 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f680.svg new file mode 100644 index 00000000..45e13619 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f692.svg new file mode 100644 index 00000000..319c6877 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.svg new file mode 100644 index 00000000..872bbb01 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.svg new file mode 100644 index 00000000..fee6221e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.svg new file mode 100644 index 00000000..937470f6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.svg new file mode 100644 index 00000000..782e26e7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.svg new file mode 100644 index 00000000..93b224ad --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9af.svg new file mode 100644 index 00000000..66a5330a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9b0.svg new file mode 100644 index 00000000..d32aaaf7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9b1.svg new file mode 100644 index 00000000..81b32ae0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9b2.svg new file mode 100644 index 00000000..74beee11 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9b3.svg new file mode 100644 index 00000000..c0c69875 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9bc.svg new file mode 100644 index 00000000..0fdb383a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9bd.svg new file mode 100644 index 00000000..aaff786e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-2695-fe0f.svg new file mode 100644 index 00000000..40e3f3ee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-2696-fe0f.svg new file mode 100644 index 00000000..4eb55101 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-2708-fe0f.svg new file mode 100644 index 00000000..97c34403 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb.svg new file mode 100644 index 00000000..9235058b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f33e.svg new file mode 100644 index 00000000..ca8c8b7e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f373.svg new file mode 100644 index 00000000..9a065b5b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f37c.svg new file mode 100644 index 00000000..cd1b853e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f384.svg new file mode 100644 index 00000000..c86b6d37 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f393.svg new file mode 100644 index 00000000..6923efa5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f3a4.svg new file mode 100644 index 00000000..f35861f4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f3a8.svg new file mode 100644 index 00000000..6666557a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f3eb.svg new file mode 100644 index 00000000..c0e5cd14 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f3ed.svg new file mode 100644 index 00000000..2a9e89a0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f4bb.svg new file mode 100644 index 00000000..39c5f63d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f4bc.svg new file mode 100644 index 00000000..4ec99b23 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f527.svg new file mode 100644 index 00000000..20526c61 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f52c.svg new file mode 100644 index 00000000..5912cbce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f680.svg new file mode 100644 index 00000000..9e5eee39 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f692.svg new file mode 100644 index 00000000..c03e8ecf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.svg new file mode 100644 index 00000000..db9e577b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.svg new file mode 100644 index 00000000..91bae533 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.svg new file mode 100644 index 00000000..b76524f2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.svg new file mode 100644 index 00000000..166e2711 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.svg new file mode 100644 index 00000000..cbcf327e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9af.svg new file mode 100644 index 00000000..5dfba690 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9b0.svg new file mode 100644 index 00000000..95e52682 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9b1.svg new file mode 100644 index 00000000..27e3ad6d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9b2.svg new file mode 100644 index 00000000..4235ea03 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9b3.svg new file mode 100644 index 00000000..71bce8fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9bc.svg new file mode 100644 index 00000000..72413161 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9bd.svg new file mode 100644 index 00000000..740422fc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-2695-fe0f.svg new file mode 100644 index 00000000..8c5d1067 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-2696-fe0f.svg new file mode 100644 index 00000000..a39ad4ec --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-2708-fe0f.svg new file mode 100644 index 00000000..cbba7776 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc.svg new file mode 100644 index 00000000..e47b1b24 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f33e.svg new file mode 100644 index 00000000..4526ae45 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f373.svg new file mode 100644 index 00000000..af6f1f27 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f37c.svg new file mode 100644 index 00000000..c1d45aa3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f384.svg new file mode 100644 index 00000000..0c606663 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f393.svg new file mode 100644 index 00000000..5ca8a61e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f3a4.svg new file mode 100644 index 00000000..91929e06 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f3a8.svg new file mode 100644 index 00000000..5c9448c2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f3eb.svg new file mode 100644 index 00000000..b9e6bd7e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f3ed.svg new file mode 100644 index 00000000..98518b07 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f4bb.svg new file mode 100644 index 00000000..83db71bd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f4bc.svg new file mode 100644 index 00000000..310edfec --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f527.svg new file mode 100644 index 00000000..dbe729a9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f52c.svg new file mode 100644 index 00000000..fcf6cdb2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f680.svg new file mode 100644 index 00000000..59e3fb53 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f692.svg new file mode 100644 index 00000000..11503259 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.svg new file mode 100644 index 00000000..95b71de9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.svg new file mode 100644 index 00000000..ccf18e15 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.svg new file mode 100644 index 00000000..bd3e7124 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.svg new file mode 100644 index 00000000..37b06f9b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.svg new file mode 100644 index 00000000..4f85ab9a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9af.svg new file mode 100644 index 00000000..7db282e8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9b0.svg new file mode 100644 index 00000000..2a950baf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9b1.svg new file mode 100644 index 00000000..e6547c13 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9b2.svg new file mode 100644 index 00000000..fe56d2a9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9b3.svg new file mode 100644 index 00000000..369b9415 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9bc.svg new file mode 100644 index 00000000..a7352ece --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9bd.svg new file mode 100644 index 00000000..baac4da8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-2695-fe0f.svg new file mode 100644 index 00000000..8361c3a0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-2696-fe0f.svg new file mode 100644 index 00000000..5c8816e3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-2708-fe0f.svg new file mode 100644 index 00000000..55592e38 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd.svg new file mode 100644 index 00000000..892d2622 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f33e.svg new file mode 100644 index 00000000..c2cfa0a7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f373.svg new file mode 100644 index 00000000..1c9bbf3c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f37c.svg new file mode 100644 index 00000000..a4f6e769 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f384.svg new file mode 100644 index 00000000..fb94c66c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f393.svg new file mode 100644 index 00000000..fbf4897f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f3a4.svg new file mode 100644 index 00000000..756b24fb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f3a8.svg new file mode 100644 index 00000000..b3e5d45e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f3eb.svg new file mode 100644 index 00000000..c9769d99 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f3ed.svg new file mode 100644 index 00000000..891e38ae --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f4bb.svg new file mode 100644 index 00000000..fa7b724c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f4bc.svg new file mode 100644 index 00000000..ee31db06 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f527.svg new file mode 100644 index 00000000..e70a6168 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f52c.svg new file mode 100644 index 00000000..d9ca99fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f680.svg new file mode 100644 index 00000000..f747a932 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f692.svg new file mode 100644 index 00000000..994939d5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.svg new file mode 100644 index 00000000..c00782bf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.svg new file mode 100644 index 00000000..581eac9f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.svg new file mode 100644 index 00000000..565c1cff --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.svg new file mode 100644 index 00000000..7bad5777 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.svg new file mode 100644 index 00000000..be44c06b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9af.svg new file mode 100644 index 00000000..bc64dc3d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9b0.svg new file mode 100644 index 00000000..4a29c3fd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9b1.svg new file mode 100644 index 00000000..a1824afc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9b2.svg new file mode 100644 index 00000000..9139c2fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9b3.svg new file mode 100644 index 00000000..a5559283 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9bc.svg new file mode 100644 index 00000000..d83b937d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9bd.svg new file mode 100644 index 00000000..1f3215c1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-2695-fe0f.svg new file mode 100644 index 00000000..f0835140 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-2696-fe0f.svg new file mode 100644 index 00000000..fcf4bead --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-2708-fe0f.svg new file mode 100644 index 00000000..0f059a9c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe.svg new file mode 100644 index 00000000..ee05425f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f33e.svg new file mode 100644 index 00000000..6b9286b8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f373.svg new file mode 100644 index 00000000..bb79b4b8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f37c.svg new file mode 100644 index 00000000..4e75f50f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f384.svg new file mode 100644 index 00000000..52121d13 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f393.svg new file mode 100644 index 00000000..6d7689e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f3a4.svg new file mode 100644 index 00000000..3e4407fc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f3a8.svg new file mode 100644 index 00000000..499729b0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f3eb.svg new file mode 100644 index 00000000..b9ac5310 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f3ed.svg new file mode 100644 index 00000000..bc66d221 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f4bb.svg new file mode 100644 index 00000000..d79adc7e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f4bc.svg new file mode 100644 index 00000000..b08175e3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f527.svg new file mode 100644 index 00000000..015b39c3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f52c.svg new file mode 100644 index 00000000..ff1a170d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f680.svg new file mode 100644 index 00000000..5939ba5d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f692.svg new file mode 100644 index 00000000..c51348cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.svg new file mode 100644 index 00000000..a01b2c97 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.svg new file mode 100644 index 00000000..87d81811 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.svg new file mode 100644 index 00000000..0eb84d09 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.svg new file mode 100644 index 00000000..0526a3e0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.svg new file mode 100644 index 00000000..29dbea24 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9af.svg new file mode 100644 index 00000000..d46aa0a3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9b0.svg new file mode 100644 index 00000000..4e8b888f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9b1.svg new file mode 100644 index 00000000..e6a22f15 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9b2.svg new file mode 100644 index 00000000..a5e06b8a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9b3.svg new file mode 100644 index 00000000..a9abb979 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9bc.svg new file mode 100644 index 00000000..b82a5224 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9bd.svg new file mode 100644 index 00000000..ffa7e863 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-2695-fe0f.svg new file mode 100644 index 00000000..63a0b4bc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-2696-fe0f.svg new file mode 100644 index 00000000..10b9d96f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-2708-fe0f.svg new file mode 100644 index 00000000..0ba36868 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff.svg new file mode 100644 index 00000000..64832fee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f33e.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f33e.svg new file mode 100644 index 00000000..56eba79e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f373.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f373.svg new file mode 100644 index 00000000..21a99bf5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f37c.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f37c.svg new file mode 100644 index 00000000..f2bf5294 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f384.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f384.svg new file mode 100644 index 00000000..78bde98e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f393.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f393.svg new file mode 100644 index 00000000..1befeaa6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f3a4.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f3a4.svg new file mode 100644 index 00000000..9b138a80 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f3a8.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f3a8.svg new file mode 100644 index 00000000..6271635a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f3eb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f3eb.svg new file mode 100644 index 00000000..ec3858a5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f3ed.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f3ed.svg new file mode 100644 index 00000000..21c22e20 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f4bb.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f4bb.svg new file mode 100644 index 00000000..d89d8a0b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f4bc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f4bc.svg new file mode 100644 index 00000000..d88ae0d4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f527.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f527.svg new file mode 100644 index 00000000..489d5b3e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f52c.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f52c.svg new file mode 100644 index 00000000..6e760049 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f680.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f680.svg new file mode 100644 index 00000000..be96b03f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f692.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f692.svg new file mode 100644 index 00000000..58850013 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f91d-200d-1f9d1.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f91d-200d-1f9d1.svg new file mode 100644 index 00000000..6c3d407c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f91d-200d-1f9d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9af.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9af.svg new file mode 100644 index 00000000..a43e2807 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9b0.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9b0.svg new file mode 100644 index 00000000..682b5910 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9b1.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9b1.svg new file mode 100644 index 00000000..aa547994 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9b2.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9b2.svg new file mode 100644 index 00000000..e8732a59 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9b3.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9b3.svg new file mode 100644 index 00000000..baaf5ffd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9bc.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9bc.svg new file mode 100644 index 00000000..257d1e3b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9bd.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9bd.svg new file mode 100644 index 00000000..e6acf984 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-2695-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-2695-fe0f.svg new file mode 100644 index 00000000..c33867ab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-2696-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-2696-fe0f.svg new file mode 100644 index 00000000..34d420d4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1-200d-2708-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-2708-fe0f.svg new file mode 100644 index 00000000..ab9e11bd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d1.svg b/Linphone/data/emoji/emojiSvgs/1f9d1.svg new file mode 100644 index 00000000..3c71659e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d2-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d2-1f3fb.svg new file mode 100644 index 00000000..59fdd03f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d2-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d2-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d2-1f3fc.svg new file mode 100644 index 00000000..0b0386dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d2-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d2-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d2-1f3fd.svg new file mode 100644 index 00000000..cba8e667 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d2-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d2-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d2-1f3fe.svg new file mode 100644 index 00000000..62abe30a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d2-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d2-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d2-1f3ff.svg new file mode 100644 index 00000000..180f8f36 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d2-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d2.svg b/Linphone/data/emoji/emojiSvgs/1f9d2.svg new file mode 100644 index 00000000..23dce9f1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d3-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d3-1f3fb.svg new file mode 100644 index 00000000..28b9a2d1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d3-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d3-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d3-1f3fc.svg new file mode 100644 index 00000000..c484efd8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d3-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d3-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d3-1f3fd.svg new file mode 100644 index 00000000..5010b969 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d3-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d3-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d3-1f3fe.svg new file mode 100644 index 00000000..98df63c6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d3-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d3-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d3-1f3ff.svg new file mode 100644 index 00000000..d4f781dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d3-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d3.svg b/Linphone/data/emoji/emojiSvgs/1f9d3.svg new file mode 100644 index 00000000..ad713bb0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d4-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d4-1f3fb.svg new file mode 100644 index 00000000..f70cdfe7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d4-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d4-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d4-1f3fc.svg new file mode 100644 index 00000000..5006795a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d4-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d4-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d4-1f3fd.svg new file mode 100644 index 00000000..9caabe78 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d4-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d4-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d4-1f3fe.svg new file mode 100644 index 00000000..6dd4b0a5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d4-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d4-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d4-1f3ff.svg new file mode 100644 index 00000000..b994169b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d4-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d4.svg b/Linphone/data/emoji/emojiSvgs/1f9d4.svg new file mode 100644 index 00000000..edabdc0c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d5-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d5-1f3fb.svg new file mode 100644 index 00000000..e1db714f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d5-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d5-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d5-1f3fc.svg new file mode 100644 index 00000000..ef64ff8e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d5-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d5-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d5-1f3fd.svg new file mode 100644 index 00000000..c31d2fc3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d5-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d5-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d5-1f3fe.svg new file mode 100644 index 00000000..4f346754 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d5-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d5-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d5-1f3ff.svg new file mode 100644 index 00000000..2dcef9db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d5-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d5.svg b/Linphone/data/emoji/emojiSvgs/1f9d5.svg new file mode 100644 index 00000000..a650fee8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..98c29804 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..d3aff3dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fb.svg new file mode 100644 index 00000000..cf686c45 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..976146de --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..35f7e555 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fc.svg new file mode 100644 index 00000000..1ab495c7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..b2975007 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..42772b46 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fd.svg new file mode 100644 index 00000000..d2611e99 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..935ff329 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..4846f733 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fe.svg new file mode 100644 index 00000000..bc36bf29 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..1c0862f7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..7512a609 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3ff.svg new file mode 100644 index 00000000..4402aab3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-200d-2640-fe0f.svg new file mode 100644 index 00000000..f1d0343e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d6-200d-2642-fe0f.svg new file mode 100644 index 00000000..3ecdeee7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d6.svg b/Linphone/data/emoji/emojiSvgs/1f9d6.svg new file mode 100644 index 00000000..49744335 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..1aaa8a41 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..5d7450bd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fb.svg new file mode 100644 index 00000000..357d5054 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..28347d7b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..a8fed146 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fc.svg new file mode 100644 index 00000000..0475ced3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..6c665bf0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..8e7e2860 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fd.svg new file mode 100644 index 00000000..a208c734 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..03ab0f09 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..fc16b859 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fe.svg new file mode 100644 index 00000000..65169635 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..1253ee6c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..2a9524e2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3ff.svg new file mode 100644 index 00000000..4b64961e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-200d-2640-fe0f.svg new file mode 100644 index 00000000..c65c14a9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d7-200d-2642-fe0f.svg new file mode 100644 index 00000000..bb497099 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d7.svg b/Linphone/data/emoji/emojiSvgs/1f9d7.svg new file mode 100644 index 00000000..9709f862 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..e51d2e43 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..ce17dc94 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fb.svg new file mode 100644 index 00000000..39cbf7f7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..07972707 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..9e4c8d06 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fc.svg new file mode 100644 index 00000000..3eaa3d88 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..010541a1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..6c3b34f5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fd.svg new file mode 100644 index 00000000..6af0877b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..71bc5ad7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..c3629c6c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fe.svg new file mode 100644 index 00000000..e189a9ea --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..5cc0fb7d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..33acb808 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3ff.svg new file mode 100644 index 00000000..b09ba9e9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-200d-2640-fe0f.svg new file mode 100644 index 00000000..8fcb70fb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d8-200d-2642-fe0f.svg new file mode 100644 index 00000000..e0c1f483 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d8.svg b/Linphone/data/emoji/emojiSvgs/1f9d8.svg new file mode 100644 index 00000000..e6b30ed1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..cc9e856c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..7f07ddab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fb.svg new file mode 100644 index 00000000..9f5bd361 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..bc2fb4e8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..3b981e92 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fc.svg new file mode 100644 index 00000000..9277d4bd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..bac7c44b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..936629d2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fd.svg new file mode 100644 index 00000000..0bdb235b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..28105d8c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..f83e59ba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fe.svg new file mode 100644 index 00000000..de5dc071 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..25279175 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..91482a15 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3ff.svg new file mode 100644 index 00000000..0bd73e86 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-200d-2640-fe0f.svg new file mode 100644 index 00000000..d5b31e5e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9d9-200d-2642-fe0f.svg new file mode 100644 index 00000000..c747b344 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9d9.svg b/Linphone/data/emoji/emojiSvgs/1f9d9.svg new file mode 100644 index 00000000..55370831 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9d9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..e75c0b20 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..c8f40156 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fb.svg new file mode 100644 index 00000000..d89d1554 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..3572c60d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..89375bde --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fc.svg new file mode 100644 index 00000000..427b84da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..9af4964a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..a614bb1a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fd.svg new file mode 100644 index 00000000..108f96a9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..00d57b1e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..7c80a135 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fe.svg new file mode 100644 index 00000000..50d0f22c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..ce1e45dc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..4095948e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9da-1f3ff.svg new file mode 100644 index 00000000..68d77af8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9da-200d-2640-fe0f.svg new file mode 100644 index 00000000..7a60a49c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9da-200d-2642-fe0f.svg new file mode 100644 index 00000000..d5385361 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9da.svg b/Linphone/data/emoji/emojiSvgs/1f9da.svg new file mode 100644 index 00000000..5c9ea362 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9da.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..68c9c959 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..6c790428 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fb.svg new file mode 100644 index 00000000..a341fe99 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..93acfc13 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..fe6e755e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fc.svg new file mode 100644 index 00000000..4fed8b22 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..5bf1eee4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..abcb2589 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fd.svg new file mode 100644 index 00000000..21b2a188 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..aa373a32 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..bd9e32b8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fe.svg new file mode 100644 index 00000000..e1154e59 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..443150ac --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..d611a42c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9db-1f3ff.svg new file mode 100644 index 00000000..a30ee929 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9db-200d-2640-fe0f.svg new file mode 100644 index 00000000..53d6dde1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9db-200d-2642-fe0f.svg new file mode 100644 index 00000000..1f104d13 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9db.svg b/Linphone/data/emoji/emojiSvgs/1f9db.svg new file mode 100644 index 00000000..642dc3a9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9db.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..e211b06a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..4263e6a8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fb.svg new file mode 100644 index 00000000..7529d0eb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..de8fa732 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..18637d96 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fc.svg new file mode 100644 index 00000000..8d014d12 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..0ad162b3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..72797108 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fd.svg new file mode 100644 index 00000000..fcd5e0ab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..5f71af9d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..faeb2fa9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fe.svg new file mode 100644 index 00000000..e9e20c6e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..f2932ede --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..2d28d8d3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3ff.svg new file mode 100644 index 00000000..a075dc9a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-200d-2640-fe0f.svg new file mode 100644 index 00000000..750f2433 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dc-200d-2642-fe0f.svg new file mode 100644 index 00000000..07111b5d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dc.svg b/Linphone/data/emoji/emojiSvgs/1f9dc.svg new file mode 100644 index 00000000..52f120c4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..d561e2d6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..95c77d46 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fb.svg new file mode 100644 index 00000000..5646b908 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..e1d2b351 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..d65388c8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fc.svg new file mode 100644 index 00000000..42462486 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..a17e8888 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..9633b7df --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fd.svg new file mode 100644 index 00000000..f96868bf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..842e9a78 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..61d69acf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fe.svg new file mode 100644 index 00000000..e127507a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..0f6c8c5f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..49faa092 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3ff.svg new file mode 100644 index 00000000..47cf437e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-200d-2640-fe0f.svg new file mode 100644 index 00000000..f452ca75 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9dd-200d-2642-fe0f.svg new file mode 100644 index 00000000..f9c1e97a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9dd.svg b/Linphone/data/emoji/emojiSvgs/1f9dd.svg new file mode 100644 index 00000000..3e82899f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9dd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9de-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9de-200d-2640-fe0f.svg new file mode 100644 index 00000000..9893e0ab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9de-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9de-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9de-200d-2642-fe0f.svg new file mode 100644 index 00000000..af17a48e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9de-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9de.svg b/Linphone/data/emoji/emojiSvgs/1f9de.svg new file mode 100644 index 00000000..95be289b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9df-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9df-200d-2640-fe0f.svg new file mode 100644 index 00000000..cac9ccfc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9df-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9df-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/1f9df-200d-2642-fe0f.svg new file mode 100644 index 00000000..21674c3b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9df-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9df.svg b/Linphone/data/emoji/emojiSvgs/1f9df.svg new file mode 100644 index 00000000..596a02fd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9df.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9e0.svg b/Linphone/data/emoji/emojiSvgs/1f9e0.svg new file mode 100644 index 00000000..653427da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9e1.svg b/Linphone/data/emoji/emojiSvgs/1f9e1.svg new file mode 100644 index 00000000..0e61b148 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9e2.svg b/Linphone/data/emoji/emojiSvgs/1f9e2.svg new file mode 100644 index 00000000..c2dd6c6f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9e3.svg b/Linphone/data/emoji/emojiSvgs/1f9e3.svg new file mode 100644 index 00000000..2c959f44 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9e4.svg b/Linphone/data/emoji/emojiSvgs/1f9e4.svg new file mode 100644 index 00000000..1b028b2a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9e5.svg b/Linphone/data/emoji/emojiSvgs/1f9e5.svg new file mode 100644 index 00000000..392af563 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9e5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9e6.svg b/Linphone/data/emoji/emojiSvgs/1f9e6.svg new file mode 100644 index 00000000..44fc3108 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9e7.svg b/Linphone/data/emoji/emojiSvgs/1f9e7.svg new file mode 100644 index 00000000..203e78de --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9e8.svg b/Linphone/data/emoji/emojiSvgs/1f9e8.svg new file mode 100644 index 00000000..ff038203 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9e9.svg b/Linphone/data/emoji/emojiSvgs/1f9e9.svg new file mode 100644 index 00000000..ae4bf566 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ea.svg b/Linphone/data/emoji/emojiSvgs/1f9ea.svg new file mode 100644 index 00000000..8116cfa1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9eb.svg b/Linphone/data/emoji/emojiSvgs/1f9eb.svg new file mode 100644 index 00000000..8fdeaf9e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ec.svg b/Linphone/data/emoji/emojiSvgs/1f9ec.svg new file mode 100644 index 00000000..689cc3e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ed.svg b/Linphone/data/emoji/emojiSvgs/1f9ed.svg new file mode 100644 index 00000000..fd3d583e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ee.svg b/Linphone/data/emoji/emojiSvgs/1f9ee.svg new file mode 100644 index 00000000..c619bb0e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ef.svg b/Linphone/data/emoji/emojiSvgs/1f9ef.svg new file mode 100644 index 00000000..e8b17ac6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9f0.svg b/Linphone/data/emoji/emojiSvgs/1f9f0.svg new file mode 100644 index 00000000..ae065314 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9f1.svg b/Linphone/data/emoji/emojiSvgs/1f9f1.svg new file mode 100644 index 00000000..c7f34821 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9f2.svg b/Linphone/data/emoji/emojiSvgs/1f9f2.svg new file mode 100644 index 00000000..e81b4644 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9f3.svg b/Linphone/data/emoji/emojiSvgs/1f9f3.svg new file mode 100644 index 00000000..7de25182 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9f4.svg b/Linphone/data/emoji/emojiSvgs/1f9f4.svg new file mode 100644 index 00000000..2cb39a76 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9f5.svg b/Linphone/data/emoji/emojiSvgs/1f9f5.svg new file mode 100644 index 00000000..3210fbeb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9f6.svg b/Linphone/data/emoji/emojiSvgs/1f9f6.svg new file mode 100644 index 00000000..f402fd2a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9f7.svg b/Linphone/data/emoji/emojiSvgs/1f9f7.svg new file mode 100644 index 00000000..a37a0488 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9f8.svg b/Linphone/data/emoji/emojiSvgs/1f9f8.svg new file mode 100644 index 00000000..87af73b4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9f9.svg b/Linphone/data/emoji/emojiSvgs/1f9f9.svg new file mode 100644 index 00000000..2bcbda87 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9fa.svg b/Linphone/data/emoji/emojiSvgs/1f9fa.svg new file mode 100644 index 00000000..947d9545 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9fb.svg b/Linphone/data/emoji/emojiSvgs/1f9fb.svg new file mode 100644 index 00000000..e8f7252f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9fc.svg b/Linphone/data/emoji/emojiSvgs/1f9fc.svg new file mode 100644 index 00000000..e5b1e02e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9fd.svg b/Linphone/data/emoji/emojiSvgs/1f9fd.svg new file mode 100644 index 00000000..1c957516 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9fe.svg b/Linphone/data/emoji/emojiSvgs/1f9fe.svg new file mode 100644 index 00000000..c6d288cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1f9ff.svg b/Linphone/data/emoji/emojiSvgs/1f9ff.svg new file mode 100644 index 00000000..a45a528f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1f9ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa70.svg b/Linphone/data/emoji/emojiSvgs/1fa70.svg new file mode 100644 index 00000000..a8df4c67 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa70.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa71.svg b/Linphone/data/emoji/emojiSvgs/1fa71.svg new file mode 100644 index 00000000..df3eceba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa71.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa72.svg b/Linphone/data/emoji/emojiSvgs/1fa72.svg new file mode 100644 index 00000000..7486e6af --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa72.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa73.svg b/Linphone/data/emoji/emojiSvgs/1fa73.svg new file mode 100644 index 00000000..03e70ca8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa73.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa74.svg b/Linphone/data/emoji/emojiSvgs/1fa74.svg new file mode 100644 index 00000000..585265a4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa74.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa78.svg b/Linphone/data/emoji/emojiSvgs/1fa78.svg new file mode 100644 index 00000000..2dc83a56 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa78.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa79.svg b/Linphone/data/emoji/emojiSvgs/1fa79.svg new file mode 100644 index 00000000..41d5722a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa79.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa7a.svg b/Linphone/data/emoji/emojiSvgs/1fa7a.svg new file mode 100644 index 00000000..848c72e6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa7a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa80.svg b/Linphone/data/emoji/emojiSvgs/1fa80.svg new file mode 100644 index 00000000..fc9af9be --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa80.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa81.svg b/Linphone/data/emoji/emojiSvgs/1fa81.svg new file mode 100644 index 00000000..fd8605e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa81.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa82.svg b/Linphone/data/emoji/emojiSvgs/1fa82.svg new file mode 100644 index 00000000..acb16e26 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa82.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa83.svg b/Linphone/data/emoji/emojiSvgs/1fa83.svg new file mode 100644 index 00000000..3de58a8f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa83.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa84.svg b/Linphone/data/emoji/emojiSvgs/1fa84.svg new file mode 100644 index 00000000..988c7988 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa84.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa85.svg b/Linphone/data/emoji/emojiSvgs/1fa85.svg new file mode 100644 index 00000000..a6b0f602 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa85.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa86.svg b/Linphone/data/emoji/emojiSvgs/1fa86.svg new file mode 100644 index 00000000..fca9a3c8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa86.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa90.svg b/Linphone/data/emoji/emojiSvgs/1fa90.svg new file mode 100644 index 00000000..46a0c53c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa90.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa91.svg b/Linphone/data/emoji/emojiSvgs/1fa91.svg new file mode 100644 index 00000000..8db58019 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa91.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa92.svg b/Linphone/data/emoji/emojiSvgs/1fa92.svg new file mode 100644 index 00000000..3b261c90 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa92.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa93.svg b/Linphone/data/emoji/emojiSvgs/1fa93.svg new file mode 100644 index 00000000..f886dfae --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa93.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa94.svg b/Linphone/data/emoji/emojiSvgs/1fa94.svg new file mode 100644 index 00000000..34c5f381 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa94.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa95.svg b/Linphone/data/emoji/emojiSvgs/1fa95.svg new file mode 100644 index 00000000..da6e25d0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa95.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa96.svg b/Linphone/data/emoji/emojiSvgs/1fa96.svg new file mode 100644 index 00000000..462cbf5e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa96.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa97.svg b/Linphone/data/emoji/emojiSvgs/1fa97.svg new file mode 100644 index 00000000..c9c21ca2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa97.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa98.svg b/Linphone/data/emoji/emojiSvgs/1fa98.svg new file mode 100644 index 00000000..fa316b12 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa98.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa99.svg b/Linphone/data/emoji/emojiSvgs/1fa99.svg new file mode 100644 index 00000000..04944697 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa99.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa9a.svg b/Linphone/data/emoji/emojiSvgs/1fa9a.svg new file mode 100644 index 00000000..f33a0482 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa9a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa9b.svg b/Linphone/data/emoji/emojiSvgs/1fa9b.svg new file mode 100644 index 00000000..d0b988f6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa9b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa9c.svg b/Linphone/data/emoji/emojiSvgs/1fa9c.svg new file mode 100644 index 00000000..cd3b979e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa9c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa9d.svg b/Linphone/data/emoji/emojiSvgs/1fa9d.svg new file mode 100644 index 00000000..923a96de --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa9d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa9e.svg b/Linphone/data/emoji/emojiSvgs/1fa9e.svg new file mode 100644 index 00000000..b263f10b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa9e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fa9f.svg b/Linphone/data/emoji/emojiSvgs/1fa9f.svg new file mode 100644 index 00000000..8daaad66 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fa9f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1faa0.svg b/Linphone/data/emoji/emojiSvgs/1faa0.svg new file mode 100644 index 00000000..f5422d96 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1faa0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1faa1.svg b/Linphone/data/emoji/emojiSvgs/1faa1.svg new file mode 100644 index 00000000..a99cb160 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1faa1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1faa2.svg b/Linphone/data/emoji/emojiSvgs/1faa2.svg new file mode 100644 index 00000000..fd6a64c1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1faa2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1faa3.svg b/Linphone/data/emoji/emojiSvgs/1faa3.svg new file mode 100644 index 00000000..7be64da1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1faa3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1faa4.svg b/Linphone/data/emoji/emojiSvgs/1faa4.svg new file mode 100644 index 00000000..a680fb70 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1faa4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1faa5.svg b/Linphone/data/emoji/emojiSvgs/1faa5.svg new file mode 100644 index 00000000..9c9e6177 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1faa5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1faa6.svg b/Linphone/data/emoji/emojiSvgs/1faa6.svg new file mode 100644 index 00000000..f4f3a89e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1faa6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1faa7.svg b/Linphone/data/emoji/emojiSvgs/1faa7.svg new file mode 100644 index 00000000..ac1646ba --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1faa7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1faa8.svg b/Linphone/data/emoji/emojiSvgs/1faa8.svg new file mode 100644 index 00000000..361fc032 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1faa8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fab0.svg b/Linphone/data/emoji/emojiSvgs/1fab0.svg new file mode 100644 index 00000000..4b13d7e7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fab0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fab1.svg b/Linphone/data/emoji/emojiSvgs/1fab1.svg new file mode 100644 index 00000000..1bc9b9a9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fab1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fab2.svg b/Linphone/data/emoji/emojiSvgs/1fab2.svg new file mode 100644 index 00000000..57fd4bfa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fab2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fab3.svg b/Linphone/data/emoji/emojiSvgs/1fab3.svg new file mode 100644 index 00000000..f8c8d787 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fab3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fab4.svg b/Linphone/data/emoji/emojiSvgs/1fab4.svg new file mode 100644 index 00000000..92f1547b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fab4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fab5.svg b/Linphone/data/emoji/emojiSvgs/1fab5.svg new file mode 100644 index 00000000..981dd2d1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fab5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fab6.svg b/Linphone/data/emoji/emojiSvgs/1fab6.svg new file mode 100644 index 00000000..8e70d6cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fab6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fac0.svg b/Linphone/data/emoji/emojiSvgs/1fac0.svg new file mode 100644 index 00000000..e6916d27 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fac0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fac1.svg b/Linphone/data/emoji/emojiSvgs/1fac1.svg new file mode 100644 index 00000000..cfdf72f1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fac1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fac2.svg b/Linphone/data/emoji/emojiSvgs/1fac2.svg new file mode 100644 index 00000000..5c0413cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fac2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fad0.svg b/Linphone/data/emoji/emojiSvgs/1fad0.svg new file mode 100644 index 00000000..34e68d6b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fad0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fad1.svg b/Linphone/data/emoji/emojiSvgs/1fad1.svg new file mode 100644 index 00000000..b0d52427 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fad1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fad2.svg b/Linphone/data/emoji/emojiSvgs/1fad2.svg new file mode 100644 index 00000000..b84ce6a1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fad2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fad3.svg b/Linphone/data/emoji/emojiSvgs/1fad3.svg new file mode 100644 index 00000000..25c1842d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fad3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fad4.svg b/Linphone/data/emoji/emojiSvgs/1fad4.svg new file mode 100644 index 00000000..34a6215a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fad4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fad5.svg b/Linphone/data/emoji/emojiSvgs/1fad5.svg new file mode 100644 index 00000000..1133788d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fad5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/1fad6.svg b/Linphone/data/emoji/emojiSvgs/1fad6.svg new file mode 100644 index 00000000..9e6894da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/1fad6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/203c.svg b/Linphone/data/emoji/emojiSvgs/203c.svg new file mode 100644 index 00000000..d3579ee3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/203c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2049.svg b/Linphone/data/emoji/emojiSvgs/2049.svg new file mode 100644 index 00000000..8cf99853 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2049.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2122.svg b/Linphone/data/emoji/emojiSvgs/2122.svg new file mode 100644 index 00000000..1706c28b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2122.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2139.svg b/Linphone/data/emoji/emojiSvgs/2139.svg new file mode 100644 index 00000000..bc341553 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2139.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2194.svg b/Linphone/data/emoji/emojiSvgs/2194.svg new file mode 100644 index 00000000..9884b428 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2194.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2195.svg b/Linphone/data/emoji/emojiSvgs/2195.svg new file mode 100644 index 00000000..e7a52544 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2195.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2196.svg b/Linphone/data/emoji/emojiSvgs/2196.svg new file mode 100644 index 00000000..a6889d1e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2196.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2197.svg b/Linphone/data/emoji/emojiSvgs/2197.svg new file mode 100644 index 00000000..62e4c0ff --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2197.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2198.svg b/Linphone/data/emoji/emojiSvgs/2198.svg new file mode 100644 index 00000000..129dd629 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2198.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2199.svg b/Linphone/data/emoji/emojiSvgs/2199.svg new file mode 100644 index 00000000..f327e40f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2199.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/21a9.svg b/Linphone/data/emoji/emojiSvgs/21a9.svg new file mode 100644 index 00000000..0a390043 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/21a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/21aa.svg b/Linphone/data/emoji/emojiSvgs/21aa.svg new file mode 100644 index 00000000..a9c586eb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/21aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23-20e3.svg b/Linphone/data/emoji/emojiSvgs/23-20e3.svg new file mode 100644 index 00000000..f2f10110 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23-20e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/231a.svg b/Linphone/data/emoji/emojiSvgs/231a.svg new file mode 100644 index 00000000..53e6f6ef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/231a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/231b.svg b/Linphone/data/emoji/emojiSvgs/231b.svg new file mode 100644 index 00000000..ed66084f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/231b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2328.svg b/Linphone/data/emoji/emojiSvgs/2328.svg new file mode 100644 index 00000000..c834ed64 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2328.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23cf.svg b/Linphone/data/emoji/emojiSvgs/23cf.svg new file mode 100644 index 00000000..d53497c1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23e9.svg b/Linphone/data/emoji/emojiSvgs/23e9.svg new file mode 100644 index 00000000..1ef719cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23ea.svg b/Linphone/data/emoji/emojiSvgs/23ea.svg new file mode 100644 index 00000000..0510ac7b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23eb.svg b/Linphone/data/emoji/emojiSvgs/23eb.svg new file mode 100644 index 00000000..a33e0f84 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23ec.svg b/Linphone/data/emoji/emojiSvgs/23ec.svg new file mode 100644 index 00000000..5846faec --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23ed.svg b/Linphone/data/emoji/emojiSvgs/23ed.svg new file mode 100644 index 00000000..6e66128d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23ee.svg b/Linphone/data/emoji/emojiSvgs/23ee.svg new file mode 100644 index 00000000..889b1625 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23ef.svg b/Linphone/data/emoji/emojiSvgs/23ef.svg new file mode 100644 index 00000000..69c3d2d1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23f0.svg b/Linphone/data/emoji/emojiSvgs/23f0.svg new file mode 100644 index 00000000..ea9ad143 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23f1.svg b/Linphone/data/emoji/emojiSvgs/23f1.svg new file mode 100644 index 00000000..599d2469 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23f2.svg b/Linphone/data/emoji/emojiSvgs/23f2.svg new file mode 100644 index 00000000..7cb6e02a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23f3.svg b/Linphone/data/emoji/emojiSvgs/23f3.svg new file mode 100644 index 00000000..34915044 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23f8.svg b/Linphone/data/emoji/emojiSvgs/23f8.svg new file mode 100644 index 00000000..9cb0ac8d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23f9.svg b/Linphone/data/emoji/emojiSvgs/23f9.svg new file mode 100644 index 00000000..c38882ab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/23fa.svg b/Linphone/data/emoji/emojiSvgs/23fa.svg new file mode 100644 index 00000000..e8dfcca3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/23fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/24c2.svg b/Linphone/data/emoji/emojiSvgs/24c2.svg new file mode 100644 index 00000000..29a94297 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/24c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/25aa.svg b/Linphone/data/emoji/emojiSvgs/25aa.svg new file mode 100644 index 00000000..cb4f63bc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/25aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/25ab.svg b/Linphone/data/emoji/emojiSvgs/25ab.svg new file mode 100644 index 00000000..6d1f796a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/25ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/25b6.svg b/Linphone/data/emoji/emojiSvgs/25b6.svg new file mode 100644 index 00000000..b373a4f7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/25b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/25c0.svg b/Linphone/data/emoji/emojiSvgs/25c0.svg new file mode 100644 index 00000000..af74e9c2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/25c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/25fb.svg b/Linphone/data/emoji/emojiSvgs/25fb.svg new file mode 100644 index 00000000..eb40d149 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/25fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/25fc.svg b/Linphone/data/emoji/emojiSvgs/25fc.svg new file mode 100644 index 00000000..b91ca805 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/25fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/25fd.svg b/Linphone/data/emoji/emojiSvgs/25fd.svg new file mode 100644 index 00000000..6f737772 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/25fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/25fe.svg b/Linphone/data/emoji/emojiSvgs/25fe.svg new file mode 100644 index 00000000..9c0abf0f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/25fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2600.svg b/Linphone/data/emoji/emojiSvgs/2600.svg new file mode 100644 index 00000000..8602baef --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2600.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2601.svg b/Linphone/data/emoji/emojiSvgs/2601.svg new file mode 100644 index 00000000..928baa60 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2601.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2602.svg b/Linphone/data/emoji/emojiSvgs/2602.svg new file mode 100644 index 00000000..7c633302 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2602.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2603.svg b/Linphone/data/emoji/emojiSvgs/2603.svg new file mode 100644 index 00000000..c02380e0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2603.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2604.svg b/Linphone/data/emoji/emojiSvgs/2604.svg new file mode 100644 index 00000000..07df915c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2604.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/260e.svg b/Linphone/data/emoji/emojiSvgs/260e.svg new file mode 100644 index 00000000..e65124fa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/260e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2611.svg b/Linphone/data/emoji/emojiSvgs/2611.svg new file mode 100644 index 00000000..904d0fc8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2611.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2614.svg b/Linphone/data/emoji/emojiSvgs/2614.svg new file mode 100644 index 00000000..6240aa66 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2614.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2615.svg b/Linphone/data/emoji/emojiSvgs/2615.svg new file mode 100644 index 00000000..bb68dd5e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2615.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2618.svg b/Linphone/data/emoji/emojiSvgs/2618.svg new file mode 100644 index 00000000..72eaf475 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2618.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/261d-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/261d-1f3fb.svg new file mode 100644 index 00000000..854b494b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/261d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/261d-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/261d-1f3fc.svg new file mode 100644 index 00000000..76dac4ee --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/261d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/261d-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/261d-1f3fd.svg new file mode 100644 index 00000000..e03f60e1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/261d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/261d-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/261d-1f3fe.svg new file mode 100644 index 00000000..a8394562 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/261d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/261d-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/261d-1f3ff.svg new file mode 100644 index 00000000..85884955 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/261d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/261d.svg b/Linphone/data/emoji/emojiSvgs/261d.svg new file mode 100644 index 00000000..95d8ddd1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/261d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2620.svg b/Linphone/data/emoji/emojiSvgs/2620.svg new file mode 100644 index 00000000..66f9862c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2620.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2622.svg b/Linphone/data/emoji/emojiSvgs/2622.svg new file mode 100644 index 00000000..2039db1b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2622.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2623.svg b/Linphone/data/emoji/emojiSvgs/2623.svg new file mode 100644 index 00000000..6e7d8584 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2623.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2626.svg b/Linphone/data/emoji/emojiSvgs/2626.svg new file mode 100644 index 00000000..4d02f16e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2626.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/262a.svg b/Linphone/data/emoji/emojiSvgs/262a.svg new file mode 100644 index 00000000..678a1e8f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/262a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/262e.svg b/Linphone/data/emoji/emojiSvgs/262e.svg new file mode 100644 index 00000000..a0be08a3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/262e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/262f.svg b/Linphone/data/emoji/emojiSvgs/262f.svg new file mode 100644 index 00000000..e0aff80c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/262f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2638.svg b/Linphone/data/emoji/emojiSvgs/2638.svg new file mode 100644 index 00000000..a00bf1d4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2638.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2639.svg b/Linphone/data/emoji/emojiSvgs/2639.svg new file mode 100644 index 00000000..a2a49090 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2639.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/263a.svg b/Linphone/data/emoji/emojiSvgs/263a.svg new file mode 100644 index 00000000..50201340 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/263a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2640.svg b/Linphone/data/emoji/emojiSvgs/2640.svg new file mode 100644 index 00000000..db5291c3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2640.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2642.svg b/Linphone/data/emoji/emojiSvgs/2642.svg new file mode 100644 index 00000000..29868a85 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2642.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2648.svg b/Linphone/data/emoji/emojiSvgs/2648.svg new file mode 100644 index 00000000..0f00d2db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2648.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2649.svg b/Linphone/data/emoji/emojiSvgs/2649.svg new file mode 100644 index 00000000..6e9918a3 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2649.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/264a.svg b/Linphone/data/emoji/emojiSvgs/264a.svg new file mode 100644 index 00000000..9f056423 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/264a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/264b.svg b/Linphone/data/emoji/emojiSvgs/264b.svg new file mode 100644 index 00000000..c5c8b662 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/264b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/264c.svg b/Linphone/data/emoji/emojiSvgs/264c.svg new file mode 100644 index 00000000..e9af63db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/264c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/264d.svg b/Linphone/data/emoji/emojiSvgs/264d.svg new file mode 100644 index 00000000..98ad1a87 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/264d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/264e.svg b/Linphone/data/emoji/emojiSvgs/264e.svg new file mode 100644 index 00000000..11583c19 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/264e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/264f.svg b/Linphone/data/emoji/emojiSvgs/264f.svg new file mode 100644 index 00000000..ec1b93ae --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/264f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2650.svg b/Linphone/data/emoji/emojiSvgs/2650.svg new file mode 100644 index 00000000..df13efca --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2650.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2651.svg b/Linphone/data/emoji/emojiSvgs/2651.svg new file mode 100644 index 00000000..f3ccf92c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2651.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2652.svg b/Linphone/data/emoji/emojiSvgs/2652.svg new file mode 100644 index 00000000..41e46232 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2652.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2653.svg b/Linphone/data/emoji/emojiSvgs/2653.svg new file mode 100644 index 00000000..854032a8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2653.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/265f.svg b/Linphone/data/emoji/emojiSvgs/265f.svg new file mode 100644 index 00000000..10c880c2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/265f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2660.svg b/Linphone/data/emoji/emojiSvgs/2660.svg new file mode 100644 index 00000000..5f7b1091 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2660.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2663.svg b/Linphone/data/emoji/emojiSvgs/2663.svg new file mode 100644 index 00000000..a9dce6f2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2663.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2665.svg b/Linphone/data/emoji/emojiSvgs/2665.svg new file mode 100644 index 00000000..67f49c3d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2665.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2666.svg b/Linphone/data/emoji/emojiSvgs/2666.svg new file mode 100644 index 00000000..02f93aad --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2666.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2668.svg b/Linphone/data/emoji/emojiSvgs/2668.svg new file mode 100644 index 00000000..4a87beaa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2668.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/267b.svg b/Linphone/data/emoji/emojiSvgs/267b.svg new file mode 100644 index 00000000..06352b9f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/267b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/267e.svg b/Linphone/data/emoji/emojiSvgs/267e.svg new file mode 100644 index 00000000..03df2a6a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/267e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/267f.svg b/Linphone/data/emoji/emojiSvgs/267f.svg new file mode 100644 index 00000000..b1d1c424 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/267f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2692.svg b/Linphone/data/emoji/emojiSvgs/2692.svg new file mode 100644 index 00000000..3a8ff265 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2693.svg b/Linphone/data/emoji/emojiSvgs/2693.svg new file mode 100644 index 00000000..09f3fe41 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2693.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2694.svg b/Linphone/data/emoji/emojiSvgs/2694.svg new file mode 100644 index 00000000..325b85f1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2694.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2695.svg b/Linphone/data/emoji/emojiSvgs/2695.svg new file mode 100644 index 00000000..add4c0e7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2695.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2696.svg b/Linphone/data/emoji/emojiSvgs/2696.svg new file mode 100644 index 00000000..61af8441 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2696.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2697.svg b/Linphone/data/emoji/emojiSvgs/2697.svg new file mode 100644 index 00000000..3fe8c15b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2697.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2699.svg b/Linphone/data/emoji/emojiSvgs/2699.svg new file mode 100644 index 00000000..635ca02f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2699.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/269b.svg b/Linphone/data/emoji/emojiSvgs/269b.svg new file mode 100644 index 00000000..385c18ce --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/269b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/269c.svg b/Linphone/data/emoji/emojiSvgs/269c.svg new file mode 100644 index 00000000..27be9c33 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/269c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26a0.svg b/Linphone/data/emoji/emojiSvgs/26a0.svg new file mode 100644 index 00000000..b9ee2973 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26a1.svg b/Linphone/data/emoji/emojiSvgs/26a1.svg new file mode 100644 index 00000000..9d9ae7d9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26a7.svg b/Linphone/data/emoji/emojiSvgs/26a7.svg new file mode 100644 index 00000000..0d0b230b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26aa.svg b/Linphone/data/emoji/emojiSvgs/26aa.svg new file mode 100644 index 00000000..60b9bbc0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26ab.svg b/Linphone/data/emoji/emojiSvgs/26ab.svg new file mode 100644 index 00000000..169b72cc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26b0.svg b/Linphone/data/emoji/emojiSvgs/26b0.svg new file mode 100644 index 00000000..c1ea4d6e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26b1.svg b/Linphone/data/emoji/emojiSvgs/26b1.svg new file mode 100644 index 00000000..830c81aa --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26bd.svg b/Linphone/data/emoji/emojiSvgs/26bd.svg new file mode 100644 index 00000000..f24749cb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26be.svg b/Linphone/data/emoji/emojiSvgs/26be.svg new file mode 100644 index 00000000..210b8ef8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26c4.svg b/Linphone/data/emoji/emojiSvgs/26c4.svg new file mode 100644 index 00000000..74caddf4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26c5.svg b/Linphone/data/emoji/emojiSvgs/26c5.svg new file mode 100644 index 00000000..89d57dc5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26c8.svg b/Linphone/data/emoji/emojiSvgs/26c8.svg new file mode 100644 index 00000000..878ba81b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26c8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26ce.svg b/Linphone/data/emoji/emojiSvgs/26ce.svg new file mode 100644 index 00000000..4abec026 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26cf.svg b/Linphone/data/emoji/emojiSvgs/26cf.svg new file mode 100644 index 00000000..ac8ac017 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26d1.svg b/Linphone/data/emoji/emojiSvgs/26d1.svg new file mode 100644 index 00000000..e8457ae2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26d3.svg b/Linphone/data/emoji/emojiSvgs/26d3.svg new file mode 100644 index 00000000..a7b213e8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26d4.svg b/Linphone/data/emoji/emojiSvgs/26d4.svg new file mode 100644 index 00000000..fcab3011 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26d4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26e9.svg b/Linphone/data/emoji/emojiSvgs/26e9.svg new file mode 100644 index 00000000..395048eb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26ea.svg b/Linphone/data/emoji/emojiSvgs/26ea.svg new file mode 100644 index 00000000..79b8ce50 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f0.svg b/Linphone/data/emoji/emojiSvgs/26f0.svg new file mode 100644 index 00000000..ba331d13 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f1.svg b/Linphone/data/emoji/emojiSvgs/26f1.svg new file mode 100644 index 00000000..589f3850 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f2.svg b/Linphone/data/emoji/emojiSvgs/26f2.svg new file mode 100644 index 00000000..659c2285 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f3.svg b/Linphone/data/emoji/emojiSvgs/26f3.svg new file mode 100644 index 00000000..c4f8916c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f4.svg b/Linphone/data/emoji/emojiSvgs/26f4.svg new file mode 100644 index 00000000..70b35429 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f5.svg b/Linphone/data/emoji/emojiSvgs/26f5.svg new file mode 100644 index 00000000..c76c0ded --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f7-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/26f7-1f3fb.svg new file mode 100644 index 00000000..e62b3406 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f7-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f7-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/26f7-1f3fc.svg new file mode 100644 index 00000000..38dac4b1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f7-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f7-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/26f7-1f3fd.svg new file mode 100644 index 00000000..88013381 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f7-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f7-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/26f7-1f3fe.svg new file mode 100644 index 00000000..cb4c3011 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f7-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f7-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/26f7-1f3ff.svg new file mode 100644 index 00000000..4184e4a4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f7-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f7.svg b/Linphone/data/emoji/emojiSvgs/26f7.svg new file mode 100644 index 00000000..ade6f21b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f8.svg b/Linphone/data/emoji/emojiSvgs/26f8.svg new file mode 100644 index 00000000..022e86e7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3fb-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 00000000..8a00ebc8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3fb-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 00000000..78a8b5d4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3fb.svg new file mode 100644 index 00000000..836b94b8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3fc-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 00000000..8bcada01 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3fc-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 00000000..fb2b1e1b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3fc.svg new file mode 100644 index 00000000..0c3662e1 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3fd-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 00000000..edb6001b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3fd-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 00000000..9282cee9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3fd.svg new file mode 100644 index 00000000..ee2eb378 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3fe-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 00000000..5eee2813 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3fe-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 00000000..d618e5a4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3fe.svg new file mode 100644 index 00000000..f6687c66 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3ff-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 00000000..52dcb9be --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3ff-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 00000000..c174ef8b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/26f9-1f3ff.svg new file mode 100644 index 00000000..435b37b8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-fe0f-200d-2640-fe0f.svg b/Linphone/data/emoji/emojiSvgs/26f9-fe0f-200d-2640-fe0f.svg new file mode 100644 index 00000000..f25f03db --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-fe0f-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9-fe0f-200d-2642-fe0f.svg b/Linphone/data/emoji/emojiSvgs/26f9-fe0f-200d-2642-fe0f.svg new file mode 100644 index 00000000..ee014e40 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9-fe0f-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26f9.svg b/Linphone/data/emoji/emojiSvgs/26f9.svg new file mode 100644 index 00000000..e772c2cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26fa.svg b/Linphone/data/emoji/emojiSvgs/26fa.svg new file mode 100644 index 00000000..72c5cbdc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/26fd.svg b/Linphone/data/emoji/emojiSvgs/26fd.svg new file mode 100644 index 00000000..0081947d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/26fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2702.svg b/Linphone/data/emoji/emojiSvgs/2702.svg new file mode 100644 index 00000000..e5d3ac1f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2702.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2705.svg b/Linphone/data/emoji/emojiSvgs/2705.svg new file mode 100644 index 00000000..9817a091 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2705.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2708.svg b/Linphone/data/emoji/emojiSvgs/2708.svg new file mode 100644 index 00000000..ebce3afb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2708.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2709.svg b/Linphone/data/emoji/emojiSvgs/2709.svg new file mode 100644 index 00000000..d880c420 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2709.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270a-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/270a-1f3fb.svg new file mode 100644 index 00000000..1929efb8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270a-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/270a-1f3fc.svg new file mode 100644 index 00000000..09dc7d3b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270a-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/270a-1f3fd.svg new file mode 100644 index 00000000..329832da --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270a-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/270a-1f3fe.svg new file mode 100644 index 00000000..b4bcfc5c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270a-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/270a-1f3ff.svg new file mode 100644 index 00000000..e7dd06eb --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270a.svg b/Linphone/data/emoji/emojiSvgs/270a.svg new file mode 100644 index 00000000..99910432 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270b-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/270b-1f3fb.svg new file mode 100644 index 00000000..5b64565d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270b-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/270b-1f3fc.svg new file mode 100644 index 00000000..3f69cc70 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270b-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/270b-1f3fd.svg new file mode 100644 index 00000000..02f74174 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270b-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/270b-1f3fe.svg new file mode 100644 index 00000000..ed89dbac --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270b-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/270b-1f3ff.svg new file mode 100644 index 00000000..74072202 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270b.svg b/Linphone/data/emoji/emojiSvgs/270b.svg new file mode 100644 index 00000000..31576f16 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270c-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/270c-1f3fb.svg new file mode 100644 index 00000000..a95327ab --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270c-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/270c-1f3fc.svg new file mode 100644 index 00000000..d748f209 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270c-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/270c-1f3fd.svg new file mode 100644 index 00000000..f93272ac --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270c-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/270c-1f3fe.svg new file mode 100644 index 00000000..aca5302c --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270c-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/270c-1f3ff.svg new file mode 100644 index 00000000..3fa97429 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270c.svg b/Linphone/data/emoji/emojiSvgs/270c.svg new file mode 100644 index 00000000..730545f5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270d-1f3fb.svg b/Linphone/data/emoji/emojiSvgs/270d-1f3fb.svg new file mode 100644 index 00000000..91eaf47d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270d-1f3fc.svg b/Linphone/data/emoji/emojiSvgs/270d-1f3fc.svg new file mode 100644 index 00000000..b404d7fc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270d-1f3fd.svg b/Linphone/data/emoji/emojiSvgs/270d-1f3fd.svg new file mode 100644 index 00000000..a1cbd763 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270d-1f3fe.svg b/Linphone/data/emoji/emojiSvgs/270d-1f3fe.svg new file mode 100644 index 00000000..20b99225 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270d-1f3ff.svg b/Linphone/data/emoji/emojiSvgs/270d-1f3ff.svg new file mode 100644 index 00000000..ef0383f0 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270d.svg b/Linphone/data/emoji/emojiSvgs/270d.svg new file mode 100644 index 00000000..f1385847 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/270f.svg b/Linphone/data/emoji/emojiSvgs/270f.svg new file mode 100644 index 00000000..a9b69e1b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/270f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2712.svg b/Linphone/data/emoji/emojiSvgs/2712.svg new file mode 100644 index 00000000..8eaec690 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2712.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2714.svg b/Linphone/data/emoji/emojiSvgs/2714.svg new file mode 100644 index 00000000..17972389 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2714.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2716.svg b/Linphone/data/emoji/emojiSvgs/2716.svg new file mode 100644 index 00000000..d1023730 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2716.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/271d.svg b/Linphone/data/emoji/emojiSvgs/271d.svg new file mode 100644 index 00000000..270b812e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/271d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2721.svg b/Linphone/data/emoji/emojiSvgs/2721.svg new file mode 100644 index 00000000..bdf63ac5 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2721.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2728.svg b/Linphone/data/emoji/emojiSvgs/2728.svg new file mode 100644 index 00000000..347ad12a --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2728.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2733.svg b/Linphone/data/emoji/emojiSvgs/2733.svg new file mode 100644 index 00000000..0aac14f2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2733.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2734.svg b/Linphone/data/emoji/emojiSvgs/2734.svg new file mode 100644 index 00000000..17ed8198 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2734.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2744.svg b/Linphone/data/emoji/emojiSvgs/2744.svg new file mode 100644 index 00000000..258c161b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2744.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2747.svg b/Linphone/data/emoji/emojiSvgs/2747.svg new file mode 100644 index 00000000..61e19972 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2747.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/274c.svg b/Linphone/data/emoji/emojiSvgs/274c.svg new file mode 100644 index 00000000..4d76e24b --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/274c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/274e.svg b/Linphone/data/emoji/emojiSvgs/274e.svg new file mode 100644 index 00000000..814a6e44 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/274e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2753.svg b/Linphone/data/emoji/emojiSvgs/2753.svg new file mode 100644 index 00000000..d76931bc --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2753.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2754.svg b/Linphone/data/emoji/emojiSvgs/2754.svg new file mode 100644 index 00000000..ab6b64bf --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2754.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2755.svg b/Linphone/data/emoji/emojiSvgs/2755.svg new file mode 100644 index 00000000..40881c53 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2755.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2757.svg b/Linphone/data/emoji/emojiSvgs/2757.svg new file mode 100644 index 00000000..e730a083 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2757.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2763.svg b/Linphone/data/emoji/emojiSvgs/2763.svg new file mode 100644 index 00000000..b78e8783 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2763.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2764.svg b/Linphone/data/emoji/emojiSvgs/2764.svg new file mode 100644 index 00000000..7eb5c591 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2764.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2795.svg b/Linphone/data/emoji/emojiSvgs/2795.svg new file mode 100644 index 00000000..5d55ec2d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2795.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2796.svg b/Linphone/data/emoji/emojiSvgs/2796.svg new file mode 100644 index 00000000..589c0127 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2796.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2797.svg b/Linphone/data/emoji/emojiSvgs/2797.svg new file mode 100644 index 00000000..6b8a7c17 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2797.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/27a1.svg b/Linphone/data/emoji/emojiSvgs/27a1.svg new file mode 100644 index 00000000..55d2d628 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/27a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/27b0.svg b/Linphone/data/emoji/emojiSvgs/27b0.svg new file mode 100644 index 00000000..33abaa91 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/27b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/27bf.svg b/Linphone/data/emoji/emojiSvgs/27bf.svg new file mode 100644 index 00000000..0d7b5fac --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/27bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2934.svg b/Linphone/data/emoji/emojiSvgs/2934.svg new file mode 100644 index 00000000..7c2e6753 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2934.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2935.svg b/Linphone/data/emoji/emojiSvgs/2935.svg new file mode 100644 index 00000000..e06163b8 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2935.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2a-20e3.svg b/Linphone/data/emoji/emojiSvgs/2a-20e3.svg new file mode 100644 index 00000000..d9c53c99 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2a-20e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2b05.svg b/Linphone/data/emoji/emojiSvgs/2b05.svg new file mode 100644 index 00000000..6ac3f634 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2b05.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2b06.svg b/Linphone/data/emoji/emojiSvgs/2b06.svg new file mode 100644 index 00000000..080ca199 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2b06.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2b07.svg b/Linphone/data/emoji/emojiSvgs/2b07.svg new file mode 100644 index 00000000..ed33773f --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2b07.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2b1b.svg b/Linphone/data/emoji/emojiSvgs/2b1b.svg new file mode 100644 index 00000000..42b60e34 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2b1b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2b1c.svg b/Linphone/data/emoji/emojiSvgs/2b1c.svg new file mode 100644 index 00000000..a40e12e2 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2b1c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2b50.svg b/Linphone/data/emoji/emojiSvgs/2b50.svg new file mode 100644 index 00000000..760ad08d --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2b50.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/2b55.svg b/Linphone/data/emoji/emojiSvgs/2b55.svg new file mode 100644 index 00000000..deb4cf11 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/2b55.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/30-20e3.svg b/Linphone/data/emoji/emojiSvgs/30-20e3.svg new file mode 100644 index 00000000..8794b3a9 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/30-20e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/3030.svg b/Linphone/data/emoji/emojiSvgs/3030.svg new file mode 100644 index 00000000..8ea11410 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/3030.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/303d.svg b/Linphone/data/emoji/emojiSvgs/303d.svg new file mode 100644 index 00000000..e2c5c495 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/303d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/31-20e3.svg b/Linphone/data/emoji/emojiSvgs/31-20e3.svg new file mode 100644 index 00000000..38197ad6 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/31-20e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/32-20e3.svg b/Linphone/data/emoji/emojiSvgs/32-20e3.svg new file mode 100644 index 00000000..8d81b8cd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/32-20e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/3297.svg b/Linphone/data/emoji/emojiSvgs/3297.svg new file mode 100644 index 00000000..7adbcf19 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/3297.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/3299.svg b/Linphone/data/emoji/emojiSvgs/3299.svg new file mode 100644 index 00000000..d1a79337 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/3299.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/33-20e3.svg b/Linphone/data/emoji/emojiSvgs/33-20e3.svg new file mode 100644 index 00000000..95db6d28 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/33-20e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/34-20e3.svg b/Linphone/data/emoji/emojiSvgs/34-20e3.svg new file mode 100644 index 00000000..b1004f31 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/34-20e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/35-20e3.svg b/Linphone/data/emoji/emojiSvgs/35-20e3.svg new file mode 100644 index 00000000..be3b0627 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/35-20e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/36-20e3.svg b/Linphone/data/emoji/emojiSvgs/36-20e3.svg new file mode 100644 index 00000000..c28896e4 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/36-20e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/37-20e3.svg b/Linphone/data/emoji/emojiSvgs/37-20e3.svg new file mode 100644 index 00000000..2da4206e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/37-20e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/38-20e3.svg b/Linphone/data/emoji/emojiSvgs/38-20e3.svg new file mode 100644 index 00000000..b9122653 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/38-20e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/39-20e3.svg b/Linphone/data/emoji/emojiSvgs/39-20e3.svg new file mode 100644 index 00000000..6936cfb7 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/39-20e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/a9.svg b/Linphone/data/emoji/emojiSvgs/a9.svg new file mode 100644 index 00000000..afe4fedd --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/ae.svg b/Linphone/data/emoji/emojiSvgs/ae.svg new file mode 100644 index 00000000..bd51781e --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/emojiSvgs/e50a.svg b/Linphone/data/emoji/emojiSvgs/e50a.svg new file mode 100644 index 00000000..4fb53894 --- /dev/null +++ b/Linphone/data/emoji/emojiSvgs/e50a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/icons/close.svg b/Linphone/data/emoji/icons/close.svg new file mode 100644 index 00000000..c018fae6 --- /dev/null +++ b/Linphone/data/emoji/icons/close.svg @@ -0,0 +1 @@ +x-24 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-activity-blue.svg b/Linphone/data/emoji/icons/emoji-activity-blue.svg new file mode 100644 index 00000000..83f2b2f0 --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-activity-blue.svg @@ -0,0 +1 @@ +emoji-activity-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-activity.svg b/Linphone/data/emoji/icons/emoji-activity.svg new file mode 100644 index 00000000..3ea6011d --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-activity.svg @@ -0,0 +1 @@ +emoji-activity-outline-20 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-animal-blue.svg b/Linphone/data/emoji/icons/emoji-animal-blue.svg new file mode 100644 index 00000000..15daf2a4 --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-animal-blue.svg @@ -0,0 +1 @@ +emoji-animal-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-animal.svg b/Linphone/data/emoji/icons/emoji-animal.svg new file mode 100644 index 00000000..716191eb --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-animal.svg @@ -0,0 +1 @@ +emoji-animal-outline-20 diff --git a/Linphone/data/emoji/icons/emoji-flag-blue.svg b/Linphone/data/emoji/icons/emoji-flag-blue.svg new file mode 100644 index 00000000..0c94d207 --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-flag-blue.svg @@ -0,0 +1 @@ +emoji-flag-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-flag.svg b/Linphone/data/emoji/icons/emoji-flag.svg new file mode 100644 index 00000000..ac0a994b --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-flag.svg @@ -0,0 +1 @@ +emoji-flag-outline-20 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-food-blue.svg b/Linphone/data/emoji/icons/emoji-food-blue.svg new file mode 100644 index 00000000..fc7d630a --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-food-blue.svg @@ -0,0 +1 @@ +emoji-food-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-food.svg b/Linphone/data/emoji/icons/emoji-food.svg new file mode 100644 index 00000000..411a63ea --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-food.svg @@ -0,0 +1 @@ +emoji-food-outline-20 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-object-blue.svg b/Linphone/data/emoji/icons/emoji-object-blue.svg new file mode 100644 index 00000000..6aba4db5 --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-object-blue.svg @@ -0,0 +1 @@ +emoji-object-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-object.svg b/Linphone/data/emoji/icons/emoji-object.svg new file mode 100644 index 00000000..22cd0b2f --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-object.svg @@ -0,0 +1 @@ +emoji-object-outline-20 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-people-blue.svg b/Linphone/data/emoji/icons/emoji-people-blue.svg new file mode 100644 index 00000000..91a8ac97 --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-people-blue.svg @@ -0,0 +1 @@ +Layer 1 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-people.svg b/Linphone/data/emoji/icons/emoji-people.svg new file mode 100644 index 00000000..65a96abe --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-people.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-smiley-blue.svg b/Linphone/data/emoji/icons/emoji-smiley-blue.svg new file mode 100644 index 00000000..8e0abc4e --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-smiley-blue.svg @@ -0,0 +1 @@ +emoji-smiley-outline-24Layer 1 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-smiley.svg b/Linphone/data/emoji/icons/emoji-smiley.svg new file mode 100644 index 00000000..f4d5cd15 --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-smiley.svg @@ -0,0 +1 @@ +emoji-smiley-outline-24 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-symbol-blue.svg b/Linphone/data/emoji/icons/emoji-symbol-blue.svg new file mode 100644 index 00000000..513bbc28 --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-symbol-blue.svg @@ -0,0 +1 @@ +emoji-symbol-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-symbol.svg b/Linphone/data/emoji/icons/emoji-symbol.svg new file mode 100644 index 00000000..f833efb4 --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-symbol.svg @@ -0,0 +1 @@ +emoji-symbol-outline-20 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-travel-blue.svg b/Linphone/data/emoji/icons/emoji-travel-blue.svg new file mode 100644 index 00000000..a2a8fde8 --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-travel-blue.svg @@ -0,0 +1 @@ +emoji-travel-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/emoji-travel.svg b/Linphone/data/emoji/icons/emoji-travel.svg new file mode 100644 index 00000000..3a9ab17b --- /dev/null +++ b/Linphone/data/emoji/icons/emoji-travel.svg @@ -0,0 +1 @@ +emoji-travel-outline-20 \ No newline at end of file diff --git a/Linphone/data/emoji/icons/search.svg b/Linphone/data/emoji/icons/search.svg new file mode 100644 index 00000000..84c95928 --- /dev/null +++ b/Linphone/data/emoji/icons/search.svg @@ -0,0 +1 @@ +search-24 \ No newline at end of file diff --git a/Linphone/data/image/icons/close.svg b/Linphone/data/image/icons/close.svg new file mode 100644 index 00000000..c018fae6 --- /dev/null +++ b/Linphone/data/image/icons/close.svg @@ -0,0 +1 @@ +x-24 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-activity-blue.svg b/Linphone/data/image/icons/emoji-activity-blue.svg new file mode 100644 index 00000000..83f2b2f0 --- /dev/null +++ b/Linphone/data/image/icons/emoji-activity-blue.svg @@ -0,0 +1 @@ +emoji-activity-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-activity.svg b/Linphone/data/image/icons/emoji-activity.svg new file mode 100644 index 00000000..3ea6011d --- /dev/null +++ b/Linphone/data/image/icons/emoji-activity.svg @@ -0,0 +1 @@ +emoji-activity-outline-20 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-animal-blue.svg b/Linphone/data/image/icons/emoji-animal-blue.svg new file mode 100644 index 00000000..15daf2a4 --- /dev/null +++ b/Linphone/data/image/icons/emoji-animal-blue.svg @@ -0,0 +1 @@ +emoji-animal-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-animal.svg b/Linphone/data/image/icons/emoji-animal.svg new file mode 100644 index 00000000..716191eb --- /dev/null +++ b/Linphone/data/image/icons/emoji-animal.svg @@ -0,0 +1 @@ +emoji-animal-outline-20 diff --git a/Linphone/data/image/icons/emoji-flag-blue.svg b/Linphone/data/image/icons/emoji-flag-blue.svg new file mode 100644 index 00000000..0c94d207 --- /dev/null +++ b/Linphone/data/image/icons/emoji-flag-blue.svg @@ -0,0 +1 @@ +emoji-flag-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-flag.svg b/Linphone/data/image/icons/emoji-flag.svg new file mode 100644 index 00000000..ac0a994b --- /dev/null +++ b/Linphone/data/image/icons/emoji-flag.svg @@ -0,0 +1 @@ +emoji-flag-outline-20 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-food-blue.svg b/Linphone/data/image/icons/emoji-food-blue.svg new file mode 100644 index 00000000..fc7d630a --- /dev/null +++ b/Linphone/data/image/icons/emoji-food-blue.svg @@ -0,0 +1 @@ +emoji-food-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-food.svg b/Linphone/data/image/icons/emoji-food.svg new file mode 100644 index 00000000..411a63ea --- /dev/null +++ b/Linphone/data/image/icons/emoji-food.svg @@ -0,0 +1 @@ +emoji-food-outline-20 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-object-blue.svg b/Linphone/data/image/icons/emoji-object-blue.svg new file mode 100644 index 00000000..6aba4db5 --- /dev/null +++ b/Linphone/data/image/icons/emoji-object-blue.svg @@ -0,0 +1 @@ +emoji-object-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-object.svg b/Linphone/data/image/icons/emoji-object.svg new file mode 100644 index 00000000..22cd0b2f --- /dev/null +++ b/Linphone/data/image/icons/emoji-object.svg @@ -0,0 +1 @@ +emoji-object-outline-20 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-people-blue.svg b/Linphone/data/image/icons/emoji-people-blue.svg new file mode 100644 index 00000000..91a8ac97 --- /dev/null +++ b/Linphone/data/image/icons/emoji-people-blue.svg @@ -0,0 +1 @@ +Layer 1 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-people.svg b/Linphone/data/image/icons/emoji-people.svg new file mode 100644 index 00000000..65a96abe --- /dev/null +++ b/Linphone/data/image/icons/emoji-people.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-smiley-blue.svg b/Linphone/data/image/icons/emoji-smiley-blue.svg new file mode 100644 index 00000000..8e0abc4e --- /dev/null +++ b/Linphone/data/image/icons/emoji-smiley-blue.svg @@ -0,0 +1 @@ +emoji-smiley-outline-24Layer 1 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-smiley.svg b/Linphone/data/image/icons/emoji-smiley.svg new file mode 100644 index 00000000..f4d5cd15 --- /dev/null +++ b/Linphone/data/image/icons/emoji-smiley.svg @@ -0,0 +1 @@ +emoji-smiley-outline-24 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-symbol-blue.svg b/Linphone/data/image/icons/emoji-symbol-blue.svg new file mode 100644 index 00000000..513bbc28 --- /dev/null +++ b/Linphone/data/image/icons/emoji-symbol-blue.svg @@ -0,0 +1 @@ +emoji-symbol-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-symbol.svg b/Linphone/data/image/icons/emoji-symbol.svg new file mode 100644 index 00000000..f833efb4 --- /dev/null +++ b/Linphone/data/image/icons/emoji-symbol.svg @@ -0,0 +1 @@ +emoji-symbol-outline-20 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-travel-blue.svg b/Linphone/data/image/icons/emoji-travel-blue.svg new file mode 100644 index 00000000..a2a8fde8 --- /dev/null +++ b/Linphone/data/image/icons/emoji-travel-blue.svg @@ -0,0 +1 @@ +emoji-travel-outline-20Layer 1 \ No newline at end of file diff --git a/Linphone/data/image/icons/emoji-travel.svg b/Linphone/data/image/icons/emoji-travel.svg new file mode 100644 index 00000000..3a9ab17b --- /dev/null +++ b/Linphone/data/image/icons/emoji-travel.svg @@ -0,0 +1 @@ +emoji-travel-outline-20 \ No newline at end of file diff --git a/Linphone/data/image/icons/search.svg b/Linphone/data/image/icons/search.svg new file mode 100644 index 00000000..84c95928 --- /dev/null +++ b/Linphone/data/image/icons/search.svg @@ -0,0 +1 @@ +search-24 \ No newline at end of file diff --git a/Linphone/tool/CMakeLists.txt b/Linphone/tool/CMakeLists.txt index a11b861e..1d8c9d25 100644 --- a/Linphone/tool/CMakeLists.txt +++ b/Linphone/tool/CMakeLists.txt @@ -9,6 +9,7 @@ list(APPEND _LINPHONEAPP_SOURCES tool/thread/SafeConnection.hpp tool/thread/Thread.cpp tool/providers/AvatarProvider.cpp + tool/providers/EmojiProvider.cpp tool/providers/ImageProvider.cpp tool/providers/ScreenProvider.cpp diff --git a/Linphone/tool/providers/EmojiProvider.cpp b/Linphone/tool/providers/EmojiProvider.cpp new file mode 100644 index 00000000..86363f69 --- /dev/null +++ b/Linphone/tool/providers/EmojiProvider.cpp @@ -0,0 +1,102 @@ +/* + * Copyright (c) 2010-2024 Belledonne Communications SARL. + * + * This file is part of linphone-desktop + * (see https://www.linphone.org). + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include +#include +#include +#include + +#include "core/App.hpp" + +#include "EmojiProvider.hpp" + +#include "tool/Constants.hpp" +#include "tool/Utils.hpp" + +// ============================================================================= + +using namespace std; + +// ----------------------------------------------------------------------------- + +const QString EmojiProvider::ProviderId = "emoji"; + +EmojiAsyncImageResponse::EmojiAsyncImageResponse(const QString &id, const QSize &requestedSize) { + QString path = ":/data/emoji/"; + + mPath = path + id; + QFile file(mPath); + QFileInfo fileInfo(file); + + if (!file.exists()) { + lDebug() << QStringLiteral("[EmojiProvider] File doesn't exist: `%1`.").arg(path + id); + imageGrabbed(QImage(":/data/image/warning-circle.svg")); + return; + } + + if (Q_UNLIKELY(!file.open(QIODevice::ReadOnly))) { + qWarning() << QStringLiteral("[EmojiProvider] Unable to open file: `%1`.").arg(path); + imageGrabbed(QImage(":/data/image/warning-circle.svg")); + return; + } + + QImage image; + if (fileInfo.suffix() == "svg") { + QSvgRenderer renderer(mPath); + if (Q_UNLIKELY(!renderer.isValid())) { + qWarning() << QStringLiteral("Invalid svg file: `%1`.").arg(path); + image = QImage(mPath); // Fallback to QImage + } else { + renderer.setAspectRatioMode(Qt::KeepAspectRatio); + QSize askedSize = !requestedSize.isEmpty() + ? requestedSize + : renderer.defaultSize() * QGuiApplication::primaryScreen()->devicePixelRatio(); + // 3. Create image. + image = QImage(askedSize, QImage::Format_ARGB32_Premultiplied); + if (Q_UNLIKELY(image.isNull())) { + qWarning() << QStringLiteral("Unable to create image from path: `%1`.").arg(path); + image = QImage(mPath); // Fallback to QImage + } else { + image.fill(Qt::transparent); // Fill with transparent to set alpha channel + // 4. Paint! + QPainter painter(&image); + renderer.render(&painter); + } + } + } else image = QImage(mPath); + if (!image.isNull()) imageGrabbed(image); + else imageGrabbed(QImage(":/data/image/warning-circle.svg")); +} + +void EmojiAsyncImageResponse::imageGrabbed(QImage image) { + mImage = image; + emit finished(); +} + +QQuickTextureFactory *EmojiAsyncImageResponse::textureFactory() const { + return QQuickTextureFactory::textureFactoryForImage(mImage); +} +QQuickImageResponse *EmojiProvider::requestImageResponse(const QString &id, const QSize &requestedSize) { + EmojiAsyncImageResponse *response = new EmojiAsyncImageResponse(id, requestedSize); + return response; +} diff --git a/Linphone/tool/providers/EmojiProvider.hpp b/Linphone/tool/providers/EmojiProvider.hpp new file mode 100644 index 00000000..cee2eef0 --- /dev/null +++ b/Linphone/tool/providers/EmojiProvider.hpp @@ -0,0 +1,48 @@ +/* + * Copyright (c) 2010-2024 Belledonne Communications SARL. + * + * This file is part of linphone-desktop + * (see https://www.linphone.org). + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef EMOJI_PROVIDER_H_ +#define EMOJI_PROVIDER_H_ + +#include + +// ============================================================================= +class EmojiAsyncImageResponse : public QQuickImageResponse { +public: + EmojiAsyncImageResponse(const QString &id, const QSize &requestedSize); + + QQuickTextureFactory *textureFactory() const override; // Convert QImage into texture. + // If Image is null, then sourceSize will be egal to 0. + // So there will be no errors. + + void imageGrabbed(QImage image); + + QImage mImage; + QString mPath; +}; + +class EmojiProvider : public QQuickAsyncImageProvider { +public: + virtual QQuickImageResponse *requestImageResponse(const QString &id, const QSize &requestedSize) override; + + static const QString ProviderId; +}; + +#endif // EMOJI_PROVIDER_H_ diff --git a/Linphone/view/CMakeLists.txt b/Linphone/view/CMakeLists.txt index b3de78c2..c80c266b 100644 --- a/Linphone/view/CMakeLists.txt +++ b/Linphone/view/CMakeLists.txt @@ -65,6 +65,7 @@ list(APPEND _LINPHONEAPP_QML_FILES view/Control/Display/Contact/ContactListView.qml view/Control/Display/Contact/AllContactListView.qml view/Control/Display/Contact/Voicemail.qml + view/Control/Display/Conversation/Emoji/EmojiPicker.qml view/Control/Display/Meeting/MeetingListView.qml view/Control/Display/Participant/ParticipantDeviceListView.qml view/Control/Display/Participant/ParticipantListView.qml diff --git a/Linphone/view/Control/Display/Conversation/Emoji/EmojiPicker.qml b/Linphone/view/Control/Display/Conversation/Emoji/EmojiPicker.qml new file mode 100644 index 00000000..541de6d8 --- /dev/null +++ b/Linphone/view/Control/Display/Conversation/Emoji/EmojiPicker.qml @@ -0,0 +1,258 @@ +/* + * MIT License + +Copyright (c) 2023 AmirHosseinCH + +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. +*/ + +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import Linphone + +// import EmojiModel + +ColumnLayout { + id: mainItem + property var editor + property EmojiModel model: EmojiModel{ + id: emojiModel + iconsPath: "image://emoji/emojiSvgs/" + iconsType: '.svg' + } + property var categories: ['Smileys & Emotion', 'People & Body', 'Animals & Nature', + 'Food & Drink', 'Activities', 'Travel & Places', 'Objects', 'Symbols', 'Flags'] + property var searchModel: ListModel {} + property bool searchMode: false + property int skinColor: -1 + signal emojiClicked() + function changeSkinColor(index) { + if (index !== skinColors.current) { + skinColors.itemAt(skinColors.current + 1).scale = 0.6 + skinColors.itemAt(index + 1).scale = 1 + skinColors.current = index + mainItem.skinColor = index + } + } + function refreshSearchModel() { + searchModel.clear() + var searchResult = model.search(searchField.text, skinColor) + for (var i = 0; i < searchResult.length; ++i) { + searchModel.append({path: searchResult[i]}) + } + } + RowLayout { + id: categoriesRow + Layout.preferredWidth: parent.width - Math.round(15 * DefaultStyle.dp) + Layout.preferredHeight: Math.round(35 * DefaultStyle.dp) + Layout.leftMargin: Math.round(5 * DefaultStyle.dp) + Layout.alignment: Qt.AlignCenter + spacing: searchField.widthSize > 0 ? Math.round(7 * DefaultStyle.dp) : Math.round(17 * DefaultStyle.dp) + clip: true + Image { + id: searchIcon + source: "image://emoji/icons/search.svg" + sourceSize: Qt.size(Math.round(21 * DefaultStyle.dp), Math.round(21 * DefaultStyle.dp)) + visible: !mainItem.searchMode + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + onClicked: { + mainItem.searchMode = true + searchField.widthSize = categoriesRow.width - Math.round(25 * DefaultStyle.dp) + list.model = 1 + searchField.focus = true + } + } + } + Image { + id: closeIcon + source: "image://emoji/icons/close.svg" + sourceSize: Qt.size(Math.round(21 * DefaultStyle.dp), Math.round(21 * DefaultStyle.dp)) + visible: mainItem.searchMode + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + onClicked: { + mainItem.searchMode = false + searchField.widthSize = 0 + list.model = mainItem.categories + searchField.clear() + } + } + } + TextField { + id: searchField + property int widthSize: 0 + Layout.preferredWidth: widthSize + Layout.preferredHeight: Math.round(28 * DefaultStyle.dp) + visible: widthSize > 0 ? true : false + placeholderText: 'Search Emoji' + Behavior on widthSize { + NumberAnimation { + duration: 400 + } + } + background: Rectangle { + radius: Math.round(10 * DefaultStyle.dp) + border.color: DefaultStyle.main1_500_main + } + onTextChanged: { + text.length > 0 ? mainItem.refreshSearchModel() : mainItem.searchModel.clear() + } + } + Repeater { + id: cateIcons + property var blackSvg: ['emoji-smiley.svg', 'emoji-people.svg', 'emoji-animal.svg', 'emoji-food.svg', + 'emoji-activity.svg', 'emoji-travel.svg', 'emoji-object.svg', 'emoji-symbol.svg', 'emoji-flag.svg'] + property var blueSvg: ['emoji-smiley-blue.svg', 'emoji-people-blue.svg', 'emoji-animal-blue.svg', + 'emoji-food-blue.svg', 'emoji-activity-blue.svg', 'emoji-travel-blue.svg', 'emoji-object-blue.svg', + 'emoji-symbol-blue.svg', 'emoji-flag-blue.svg'] + property int current: 0 + model: 9 + delegate: Image { + id: icon + source: "image://emoji/icons/" + cateIcons.blackSvg[index] + sourceSize: Qt.size(Math.round(20 * DefaultStyle.dp), Math.round(20 * DefaultStyle.dp)) + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + onClicked: { + if (cateIcons.current !== index) { + icon.source = "image://emoji/icons/" + cateIcons.blueSvg[index] + cateIcons.itemAt(cateIcons.current).source = "image://emoji/icons/" + cateIcons.blackSvg[cateIcons.current] + cateIcons.current = index + } + list.positionViewAtIndex(index, ListView.Beginning) + } + } + } + Component.onCompleted: { + itemAt(0).source = "image://emoji/icons/" + cateIcons.blueSvg[0] + } + } + } + ListView { + id: list + width: mainItem.width + height: mainItem.height - categoriesRow.height + model: mainItem.categories + spacing: Math.round(30 * DefaultStyle.dp) + topMargin: Math.round(7 * DefaultStyle.dp) + bottomMargin: Math.round(7 * DefaultStyle.dp) + leftMargin: Math.round(12 * DefaultStyle.dp) + // clip: true + delegate: GridLayout { + id: grid + property string category: mainItem.searchMode ? 'Search Result' : modelData + property int columnCount: Math.round(list.width / 50 * DefaultStyle.dp) + property int sc: grid.category === 'People & Body' ? mainItem.skinColor : -1 + columns: columnCount + columnSpacing: Math.round(8 * DefaultStyle.dp) + Text { + Layout.fillWidth: true + Layout.preferredHeight: Math.round(20 * DefaultStyle.dp) + text: grid.category + color: Qt.rgba(0, 0, 0, 0.5) + font.pixelSize: Math.round(15 * DefaultStyle.dp) + horizontalAlignment: Text.AlignLeft + leftPadding: Math.round(6 * DefaultStyle.dp) + Layout.columnSpan: grid.columnCount != 0 ? grid.columnCount : 1 + Layout.bottomMargin: Math.round(8 * DefaultStyle.dp) + } + Repeater { + onCountChanged: console.log("emoji list count :", count) + model: mainItem.searchMode ? mainItem.searchModel : mainItem.model.count(grid.category) + delegate: Rectangle { + property alias es: emojiSvg + Layout.preferredWidth: Math.round(40 * DefaultStyle.dp) + Layout.preferredHeight: Math.round(40 * DefaultStyle.dp) + RectangleTest{anchors.fill: parent} + radius: Math.round(40 * DefaultStyle.dp) + color: mouseArea.containsMouse ? '#e6e6e6' : '#ffffff' + Image { + id: emojiSvg + source: mainItem.searchMode ? path : mainItem.model.path(grid.category, index, grid.sc) + sourceSize: Qt.size(Math.round(30 * DefaultStyle.dp), Math.round(30 * DefaultStyle.dp)) + anchors.centerIn: parent + asynchronous: true + } + MouseArea { + id: mouseArea + anchors.fill: parent + hoverEnabled: true + cursorShape: Qt.PointingHandCursor + onClicked: { + var tag = "" + if (mainItem.editor) mainItem.editor.insert(mainItem.editor.cursorPosition, tag.arg(emojiSvg.source)) + mainItem.emojiClicked(tag.arg(emojiSvg.source)) + } + } + } + } + } + onContentYChanged: { + var index = list.indexAt(0, contentY + 15) + if (index !== -1 && index !== cateIcons.current) { + cateIcons.itemAt(index).source = "image://emoji/icons/" + cateIcons.blueSvg[index] + cateIcons.itemAt(cateIcons.current).source = "image://emoji/icons/" + cateIcons.blackSvg[cateIcons.current] + cateIcons.current = index + } + } + } + RowLayout { + Layout.preferredHeight: Math.round(35 * DefaultStyle.dp) + Layout.alignment: Qt.AlignCenter + spacing: 10 + Repeater { + id: skinColors + property var colors: ['#ffb84d', '#ffdab3', '#d2a479', '#ac7139', '#734b26', '#26190d'] + property int current: -1 + model: 6 + delegate: Rectangle { + id: colorRect + Layout.preferredWidth: Math.round(30 * DefaultStyle.dp) + Layout.preferredHeight: Math.round(30 * DefaultStyle.dp) + Layout.bottomMargin: Math.round(3 * DefaultStyle.dp) + radius: Math.round(30 * DefaultStyle.dp) + scale: 0.65 + color: skinColors.colors[index] + Behavior on scale { + NumberAnimation { + duration: 100 + } + } + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + onClicked: { + mainItem.changeSkinColor(index - 1) + if (mainItem.searchMode) { + mainItem.refreshSearchModel(); + } + } + } + } + Component.onCompleted: { + itemAt(0).scale = 1 + } + } + } +}