From 97c02c3389b31b2459ffa157c91b7515ee1f626b Mon Sep 17 00:00:00 2001 From: aschmitz Date: Mon, 2 Oct 2017 14:28:59 -0500 Subject: Make IdsToBigints (mostly!) non-blocking (#5088) * Make IdsToBigints (mostly!) non-blocking This pulls in GitLab's MigrationHelpers, which include code to make column changes in ways that Postgres can do without locking. In general, this involves creating a new column, adding an index and any foreign keys as appropriate, adding a trigger to keep it populated alongside the old column, and then progressively copying data over to the new column, before removing the old column and replacing it with the new one. A few changes to GitLab's MigrationHelpers were necessary: * Some changes were made to remove dependencies on other GitLab code. * We explicitly wait for index creation before forging ahead on column replacements. * We use different temporary column names, to avoid running into index name length limits. * We rename the generated indices back to what they "should" be after replacing columns. * We rename the generated foreign keys to use the new column names when we had to create them. (This allows the migration to be rolled back without incident.) # Big Scary Warning There are two things here that may trip up large instances: 1. The change for tables' "id" columns is not concurrent. In particular, the stream_entries table may be big, and does not concurrently migrate its id column. (On the other hand, x_id type columns are all concurrent.) 2. This migration will take a long time to run, *but it should not lock tables during that time* (with the exception of the "id" columns as described above). That means this should probably be run in `screen` or some other session that can be run for a long time. Notably, the migration will take *longer* than it would without these changes, but the website will still be responsive during that time. These changes were tested on a relatively large statuses table (256k entries), and the service remained responsive during the migration. Migrations both forward and backward were tested. * Rubocop fixes * MigrationHelpers: Support ID columns in some cases This doesn't work in cases where the ID column is referred to as a foreign key by another table. * MigrationHelpers: support foreign keys for ID cols Note that this does not yet support foreign keys on non-primary-key columns, but Mastodon also doesn't yet have any that we've needed to migrate. This means we can perform fully "concurrent" migrations to change ID column types, and the IdsToBigints migration can happen with effectively no downtime. (A few operations require a transaction, such as renaming columns or deleting them, but these transactions should not block for noticeable amounts of time.) The algorithm for generating foreign key names has changed with this, and therefore all of those changed in schema.rb. * Provide status, allow for interruptions The MigrationHelpers now allow restarting the rename of a column if it was interrupted, by removing the old "new column" and re-starting the process. Along with this, they now provide status updates on the changes which are happening, as well as indications about when the changes can be safely interrupted (when there are at least 10 seconds estimated to be left before copying data is complete). The IdsToBigints migration now also sorts the columns it migrates by size, starting with the largest tables. This should provide administrators a worst-case scenario estimate for the length of migrations: each successive change will get faster, giving admins a chance to abort early on if they need to run the migration later. The idea is that this does not force them to try to time interruptions between smaller migrations. * Fix column sorting in IdsToBigints Not a significant change, but it impacts the order of columns in the database and db/schema.rb. * Actually pause before IdsToBigints --- lib/mastodon/migration_helpers.rb | 988 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 988 insertions(+) create mode 100644 lib/mastodon/migration_helpers.rb (limited to 'lib') diff --git a/lib/mastodon/migration_helpers.rb b/lib/mastodon/migration_helpers.rb new file mode 100644 index 000000000..ed716501e --- /dev/null +++ b/lib/mastodon/migration_helpers.rb @@ -0,0 +1,988 @@ +# frozen_string_literal: true + +# This file is copied almost entirely from GitLab, which has done a large +# amount of work to ensure that migrations can happen with minimal downtime. +# Many thanks to those engineers. + +# Changes have been made to remove dependencies on other GitLab files and to +# shorten temporary column names. + +# Documentation on using these functions (and why one might do so): +# https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/what_requires_downtime.md + +# The file itself: +# https://gitlab.com/gitlab-org/gitlab-ce/blob/master/lib/gitlab/database/migration_helpers.rb + +# It is licensed as follows: + +# Copyright (c) 2011-2017 GitLab B.V. + +# 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. + +# This is bad form, but there are enough differences that it's impractical to do +# otherwise: +# rubocop:disable all + +module Mastodon + module MigrationHelpers + # Stub for Database.postgresql? from GitLab + def self.postgresql? + ActiveRecord::Base.configurations[Rails.env]['adapter'].casecmp('postgresql').zero? + end + + # Stub for Database.mysql? from GitLab + def self.mysql? + ActiveRecord::Base.configurations[Rails.env]['adapter'].casecmp('mysql2').zero? + end + + # Model that can be used for querying permissions of a SQL user. + class Grant < ActiveRecord::Base + self.table_name = + if Mastodon::MigrationHelpers.postgresql? + 'information_schema.role_table_grants' + else + 'mysql.user' + end + + def self.scope_to_current_user + if Mastodon::MigrationHelpers.postgresql? + where('grantee = user') + else + where("CONCAT(User, '@', Host) = current_user()") + end + end + + # Returns true if the current user can create and execute triggers on the + # given table. + def self.create_and_execute_trigger?(table) + priv = + if Mastodon::MigrationHelpers.postgresql? + where(privilege_type: 'TRIGGER', table_name: table) + else + where(Trigger_priv: 'Y') + end + + priv.scope_to_current_user.any? + end + end + + BACKGROUND_MIGRATION_BATCH_SIZE = 1000 # Number of rows to process per job + BACKGROUND_MIGRATION_JOB_BUFFER_SIZE = 1000 # Number of jobs to bulk queue at a time + + # Gets an estimated number of rows for a table + def estimate_rows_in_table(table_name) + exec_query('SELECT reltuples FROM pg_class WHERE relname = ' + + "'#{table_name}'").to_a.first['reltuples'] + end + + # Adds `created_at` and `updated_at` columns with timezone information. + # + # This method is an improved version of Rails' built-in method `add_timestamps`. + # + # Available options are: + # default - The default value for the column. + # null - When set to `true` the column will allow NULL values. + # The default is to not allow NULL values. + def add_timestamps_with_timezone(table_name, options = {}) + options[:null] = false if options[:null].nil? + + [:created_at, :updated_at].each do |column_name| + if options[:default] && transaction_open? + raise '`add_timestamps_with_timezone` with default value cannot be run inside a transaction. ' \ + 'You can disable transactions by calling `disable_ddl_transaction!` ' \ + 'in the body of your migration class' + end + + # If default value is presented, use `add_column_with_default` method instead. + if options[:default] + add_column_with_default( + table_name, + column_name, + :datetime_with_timezone, + default: options[:default], + allow_null: options[:null] + ) + else + add_column(table_name, column_name, :datetime_with_timezone, options) + end + end + end + + # Creates a new index, concurrently when supported + # + # On PostgreSQL this method creates an index concurrently, on MySQL this + # creates a regular index. + # + # Example: + # + # add_concurrent_index :users, :some_column + # + # See Rails' `add_index` for more info on the available arguments. + def add_concurrent_index(table_name, column_name, options = {}) + if transaction_open? + raise 'add_concurrent_index can not be run inside a transaction, ' \ + 'you can disable transactions by calling disable_ddl_transaction! ' \ + 'in the body of your migration class' + end + + if MigrationHelpers.postgresql? + options = options.merge({ algorithm: :concurrently }) + disable_statement_timeout + end + + add_index(table_name, column_name, options) + end + + # Removes an existed index, concurrently when supported + # + # On PostgreSQL this method removes an index concurrently. + # + # Example: + # + # remove_concurrent_index :users, :some_column + # + # See Rails' `remove_index` for more info on the available arguments. + def remove_concurrent_index(table_name, column_name, options = {}) + if transaction_open? + raise 'remove_concurrent_index can not be run inside a transaction, ' \ + 'you can disable transactions by calling disable_ddl_transaction! ' \ + 'in the body of your migration class' + end + + if supports_drop_index_concurrently? + options = options.merge({ algorithm: :concurrently }) + disable_statement_timeout + end + + remove_index(table_name, options.merge({ column: column_name })) + end + + # Removes an existing index, concurrently when supported + # + # On PostgreSQL this method removes an index concurrently. + # + # Example: + # + # remove_concurrent_index :users, "index_X_by_Y" + # + # See Rails' `remove_index` for more info on the available arguments. + def remove_concurrent_index_by_name(table_name, index_name, options = {}) + if transaction_open? + raise 'remove_concurrent_index_by_name can not be run inside a transaction, ' \ + 'you can disable transactions by calling disable_ddl_transaction! ' \ + 'in the body of your migration class' + end + + if supports_drop_index_concurrently? + options = options.merge({ algorithm: :concurrently }) + disable_statement_timeout + end + + remove_index(table_name, options.merge({ name: index_name })) + end + + # Only available on Postgresql >= 9.2 + def supports_drop_index_concurrently? + return false unless MigrationHelpers.postgresql? + + version = select_one("SELECT current_setting('server_version_num') AS v")['v'].to_i + + version >= 90200 + end + + # Adds a foreign key with only minimal locking on the tables involved. + # + # This method only requires minimal locking when using PostgreSQL. When + # using MySQL this method will use Rails' default `add_foreign_key`. + # + # source - The source table containing the foreign key. + # target - The target table the key points to. + # column - The name of the column to create the foreign key on. + # on_delete - The action to perform when associated data is removed, + # defaults to "CASCADE". + def add_concurrent_foreign_key(source, target, column:, on_delete: :cascade, target_col: 'id') + # Transactions would result in ALTER TABLE locks being held for the + # duration of the transaction, defeating the purpose of this method. + if transaction_open? + raise 'add_concurrent_foreign_key can not be run inside a transaction' + end + + # While MySQL does allow disabling of foreign keys it has no equivalent + # of PostgreSQL's "VALIDATE CONSTRAINT". As a result we'll just fall + # back to the normal foreign key procedure. + if MigrationHelpers.mysql? + return add_foreign_key(source, target, + column: column, + on_delete: on_delete) + else + on_delete = 'SET NULL' if on_delete == :nullify + end + + disable_statement_timeout + + key_name = concurrent_foreign_key_name(source, column, target_col) + + # Using NOT VALID allows us to create a key without immediately + # validating it. This means we keep the ALTER TABLE lock only for a + # short period of time. The key _is_ enforced for any newly created + # data. + execute <<-EOF.strip_heredoc + ALTER TABLE #{source} + ADD CONSTRAINT #{key_name} + FOREIGN KEY (#{column}) + REFERENCES #{target} (#{target_col}) + #{on_delete ? "ON DELETE #{on_delete.upcase}" : ''} + NOT VALID; + EOF + + # Validate the existing constraint. This can potentially take a very + # long time to complete, but fortunately does not lock the source table + # while running. + execute("ALTER TABLE #{source} VALIDATE CONSTRAINT #{key_name};") + end + + # Returns the name for a concurrent foreign key. + # + # PostgreSQL constraint names have a limit of 63 bytes. The logic used + # here is based on Rails' foreign_key_name() method, which unfortunately + # is private so we can't rely on it directly. + def concurrent_foreign_key_name(table, column, target_col) + "fk_#{Digest::SHA256.hexdigest("#{table}_#{column}_#{target_col}_fk").first(10)}" + end + + # Long-running migrations may take more than the timeout allowed by + # the database. Disable the session's statement timeout to ensure + # migrations don't get killed prematurely. (PostgreSQL only) + def disable_statement_timeout + execute('SET statement_timeout TO 0') if MigrationHelpers.postgresql? + end + + # Updates the value of a column in batches. + # + # This method updates the table in batches of 5% of the total row count. + # This method will continue updating rows until no rows remain. + # + # When given a block this method will yield two values to the block: + # + # 1. An instance of `Arel::Table` for the table that is being updated. + # 2. The query to run as an Arel object. + # + # By supplying a block one can add extra conditions to the queries being + # executed. Note that the same block is used for _all_ queries. + # + # Example: + # + # update_column_in_batches(:projects, :foo, 10) do |table, query| + # query.where(table[:some_column].eq('hello')) + # end + # + # This would result in this method updating only rows where + # `projects.some_column` equals "hello". + # + # table - The name of the table. + # column - The name of the column to update. + # value - The value for the column. + # + # Rubocop's Metrics/AbcSize metric is disabled for this method as Rubocop + # determines this method to be too complex while there's no way to make it + # less "complex" without introducing extra methods (which actually will + # make things _more_ complex). + # + # rubocop: disable Metrics/AbcSize + def update_column_in_batches(table_name, column, value) + if transaction_open? + raise 'update_column_in_batches can not be run inside a transaction, ' \ + 'you can disable transactions by calling disable_ddl_transaction! ' \ + 'in the body of your migration class' + end + + table = Arel::Table.new(table_name) + + total = estimate_rows_in_table(table_name).to_i + if total == 0 + count_arel = table.project(Arel.star.count.as('count')) + count_arel = yield table, count_arel if block_given? + + total = exec_query(count_arel.to_sql).to_hash.first['count'].to_i + + return if total == 0 + end + + # Update in batches of 5% until we run out of any rows to update. + batch_size = ((total / 100.0) * 5.0).ceil + max_size = 1000 + + # The upper limit is 1000 to ensure we don't lock too many rows. For + # example, for "merge_requests" even 1% of the table is around 35 000 + # rows for GitLab.com. + batch_size = max_size if batch_size > max_size + + start_arel = table.project(table[:id]).order(table[:id].asc).take(1) + start_arel = yield table, start_arel if block_given? + start_id = exec_query(start_arel.to_sql).to_hash.first['id'].to_i + + say "Migrating #{table_name}.#{column} (~#{total.to_i} rows)" + + started_time = Time.now + last_time = Time.now + migrated = 0 + loop do + stop_row = nil + + suppress_messages do + stop_arel = table.project(table[:id]) + .where(table[:id].gteq(start_id)) + .order(table[:id].asc) + .take(1) + .skip(batch_size) + + stop_arel = yield table, stop_arel if block_given? + stop_row = exec_query(stop_arel.to_sql).to_hash.first + + update_arel = Arel::UpdateManager.new + .table(table) + .set([[table[column], value]]) + .where(table[:id].gteq(start_id)) + + if stop_row + stop_id = stop_row['id'].to_i + start_id = stop_id + update_arel = update_arel.where(table[:id].lt(stop_id)) + end + + update_arel = yield table, update_arel if block_given? + + execute(update_arel.to_sql) + end + + migrated += batch_size + if Time.now - last_time > 1 + status = "Migrated #{migrated} rows" + + percentage = 100.0 * migrated / total + status += " (~#{sprintf('%.2f', percentage)}%, " + + remaining_time = (100.0 - percentage) * (Time.now - started_time) / percentage + + status += "#{(remaining_time / 60).to_i}:" + status += sprintf('%02d', remaining_time.to_i % 60) + status += ' remaining, ' + + # Tell users not to interrupt if we're almost done. + if remaining_time > 10 + status += 'safe to interrupt' + else + status += 'DO NOT interrupt' + end + + status += ')' + + say status, true + last_time = Time.now + end + + # There are no more rows left to update. + break unless stop_row + end + end + + # Adds a column with a default value without locking an entire table. + # + # This method runs the following steps: + # + # 1. Add the column with a default value of NULL. + # 2. Change the default value of the column to the specified value. + # 3. Update all existing rows in batches. + # 4. Set a `NOT NULL` constraint on the column if desired (the default). + # + # These steps ensure a column can be added to a large and commonly used + # table without locking the entire table for the duration of the table + # modification. + # + # table - The name of the table to update. + # column - The name of the column to add. + # type - The column type (e.g. `:integer`). + # default - The default value for the column. + # limit - Sets a column limit. For example, for :integer, the default is + # 4-bytes. Set `limit: 8` to allow 8-byte integers. + # allow_null - When set to `true` the column will allow NULL values, the + # default is to not allow NULL values. + # + # This method can also take a block which is passed directly to the + # `update_column_in_batches` method. + def add_column_with_default(table, column, type, default:, limit: nil, allow_null: false, &block) + if transaction_open? + raise 'add_column_with_default can not be run inside a transaction, ' \ + 'you can disable transactions by calling disable_ddl_transaction! ' \ + 'in the body of your migration class' + end + + disable_statement_timeout + + transaction do + if limit + add_column(table, column, type, default: nil, limit: limit) + else + add_column(table, column, type, default: nil) + end + + # Changing the default before the update ensures any newly inserted + # rows already use the proper default value. + change_column_default(table, column, default) + end + + begin + update_column_in_batches(table, column, default, &block) + + change_column_null(table, column, false) unless allow_null + # We want to rescue _all_ exceptions here, even those that don't inherit + # from StandardError. + rescue Exception => error # rubocop: disable all + remove_column(table, column) + + raise error + end + end + + # Renames a column without requiring downtime. + # + # Concurrent renames work by using database triggers to ensure both the + # old and new column are in sync. However, this method will _not_ remove + # the triggers or the old column automatically; this needs to be done + # manually in a post-deployment migration. This can be done using the + # method `cleanup_concurrent_column_rename`. + # + # table - The name of the database table containing the column. + # old - The old column name. + # new - The new column name. + # type - The type of the new column. If no type is given the old column's + # type is used. + def rename_column_concurrently(table, old, new, type: nil) + if transaction_open? + raise 'rename_column_concurrently can not be run inside a transaction' + end + + check_trigger_permissions!(table) + trigger_name = rename_trigger_name(table, old, new) + + # If we were in the middle of update_column_in_batches, we should remove + # the old column and start over, as we have no idea where we were. + if column_for(table, new) + if MigrationHelpers.postgresql? + remove_rename_triggers_for_postgresql(table, trigger_name) + else + remove_rename_triggers_for_mysql(trigger_name) + end + + remove_column(table, new) + end + + old_col = column_for(table, old) + new_type = type || old_col.type + + col_opts = { + precision: old_col.precision, + scale: old_col.scale, + } + + # We may be trying to reset the limit on an integer column type, so let + # Rails handle that. + unless [:bigint, :integer].include?(new_type) + col_opts[:limit] = old_col.limit + end + + add_column(table, new, new_type, col_opts) + + # We set the default value _after_ adding the column so we don't end up + # updating any existing data with the default value. This isn't + # necessary since we copy over old values further down. + change_column_default(table, new, old_col.default) if old_col.default + + quoted_table = quote_table_name(table) + quoted_old = quote_column_name(old) + quoted_new = quote_column_name(new) + + if MigrationHelpers.postgresql? + install_rename_triggers_for_postgresql(trigger_name, quoted_table, + quoted_old, quoted_new) + else + install_rename_triggers_for_mysql(trigger_name, quoted_table, + quoted_old, quoted_new) + end + + update_column_in_batches(table, new, Arel::Table.new(table)[old]) + + change_column_null(table, new, false) unless old_col.null + + copy_indexes(table, old, new) + copy_foreign_keys(table, old, new) + end + + # Changes the type of a column concurrently. + # + # table - The table containing the column. + # column - The name of the column to change. + # new_type - The new column type. + def change_column_type_concurrently(table, column, new_type) + temp_column = rename_column_name(column) + + rename_column_concurrently(table, column, temp_column, type: new_type) + + # Primary keys don't necessarily have an associated index. + if ActiveRecord::Base.get_primary_key(table) == column.to_s + old_pk_index_name = "index_#{table}_on_#{column}" + new_pk_index_name = "index_#{table}_on_#{column}_cm" + + unless indexes_for(table, column).find{|i| i.name == old_pk_index_name} + add_concurrent_index(table, [temp_column], { + unique: true, + name: new_pk_index_name + }) + end + end + end + + # Performs cleanup of a concurrent type change. + # + # table - The table containing the column. + # column - The name of the column to change. + # new_type - The new column type. + def cleanup_concurrent_column_type_change(table, column) + temp_column = rename_column_name(column) + + # Wait for the indices to be built + indexes_for(table, column).each do |index| + expected_name = index.name + '_cm' + + puts "Waiting for index #{expected_name}" + sleep 1 until indexes_for(table, temp_column).find {|i| i.name == expected_name } + end + + was_primary = (ActiveRecord::Base.get_primary_key(table) == column.to_s) + old_default_fn = column_for(table, column).default_function + + old_fks = [] + if was_primary + # Get any foreign keys pointing at this column we need to recreate, and + # remove the old ones. + # Based on code from: + # http://errorbank.blogspot.com/2011/03/list-all-foreign-keys-references-for.html + old_fks_res = execute <<-EOF.strip_heredoc + select m.relname as src_table, + (select a.attname + from pg_attribute a + where a.attrelid = m.oid + and a.attnum = o.conkey[1] + and a.attisdropped = false) as src_col, + o.conname as name, + o.confdeltype as on_delete + from pg_constraint o + left join pg_class f on f.oid = o.confrelid + left join pg_class c on c.oid = o.conrelid + left join pg_class m on m.oid = o.conrelid + where o.contype = 'f' + and o.conrelid in ( + select oid from pg_class c where c.relkind = 'r') + and f.relname = '#{table}'; + EOF + old_fks = old_fks_res.to_a + old_fks.each do |old_fk| + add_concurrent_foreign_key( + old_fk['src_table'], + table, + column: old_fk['src_col'], + target_col: temp_column, + on_delete: extract_foreign_key_action(old_fk['on_delete']) + ) + + remove_foreign_key(old_fk['src_table'], name: old_fk['name']) + end + end + + # If there was a sequence owned by the old column, make it owned by the + # new column, as it will otherwise be deleted when we get rid of the + # old column. + if (seq_match = /^nextval\('([^']*)'(::text|::regclass)?\)/.match(old_default_fn)) + seq_name = seq_match[1] + execute("ALTER SEQUENCE #{seq_name} OWNED BY #{table}.#{temp_column}") + end + + transaction do + # This has to be performed in a transaction as otherwise we might have + # inconsistent data. + + cleanup_concurrent_column_rename(table, column, temp_column) + rename_column(table, temp_column, column) + + # If there was an old default function, we didn't copy it. Do that now + # in the transaction, so we don't miss anything. + change_column_default(table, column, -> { old_default_fn }) if old_default_fn + end + + # Rename any indices back to what they should be. + indexes_for(table, column).each do |index| + next unless index.name.end_with?('_cm') + + real_index_name = index.name.sub(/_cm$/, '') + rename_index(table, index.name, real_index_name) + end + + # Rename any foreign keys back to names based on the real column. + foreign_keys_for(table, column).each do |fk| + old_fk_name = concurrent_foreign_key_name(fk.from_table, temp_column, 'id') + new_fk_name = concurrent_foreign_key_name(fk.from_table, column, 'id') + execute("ALTER TABLE #{fk.from_table} RENAME CONSTRAINT " + + "#{old_fk_name} TO #{new_fk_name}") + end + + # Rename any foreign keys from other tables to names based on the real + # column. + old_fks.each do |old_fk| + old_fk_name = concurrent_foreign_key_name(old_fk['src_table'], + old_fk['src_col'], temp_column) + new_fk_name = concurrent_foreign_key_name(old_fk['src_table'], + old_fk['src_col'], column) + execute("ALTER TABLE #{old_fk['src_table']} RENAME CONSTRAINT " + + "#{old_fk_name} TO #{new_fk_name}") + end + + # If the old column was a primary key, mark the new one as a primary key. + if was_primary + execute("ALTER TABLE #{table} ADD PRIMARY KEY USING INDEX " + + "index_#{table}_on_#{column}") + end + end + + # Cleans up a concurrent column name. + # + # This method takes care of removing previously installed triggers as well + # as removing the old column. + # + # table - The name of the database table. + # old - The name of the old column. + # new - The name of the new column. + def cleanup_concurrent_column_rename(table, old, new) + trigger_name = rename_trigger_name(table, old, new) + + check_trigger_permissions!(table) + + if MigrationHelpers.postgresql? + remove_rename_triggers_for_postgresql(table, trigger_name) + else + remove_rename_triggers_for_mysql(trigger_name) + end + + remove_column(table, old) + end + + # Performs a concurrent column rename when using PostgreSQL. + def install_rename_triggers_for_postgresql(trigger, table, old, new) + execute <<-EOF.strip_heredoc + CREATE OR REPLACE FUNCTION #{trigger}() + RETURNS trigger AS + $BODY$ + BEGIN + NEW.#{new} := NEW.#{old}; + RETURN NEW; + END; + $BODY$ + LANGUAGE 'plpgsql' + VOLATILE + EOF + + execute <<-EOF.strip_heredoc + CREATE TRIGGER #{trigger} + BEFORE INSERT OR UPDATE + ON #{table} + FOR EACH ROW + EXECUTE PROCEDURE #{trigger}() + EOF + end + + # Installs the triggers necessary to perform a concurrent column rename on + # MySQL. + def install_rename_triggers_for_mysql(trigger, table, old, new) + execute <<-EOF.strip_heredoc + CREATE TRIGGER #{trigger}_insert + BEFORE INSERT + ON #{table} + FOR EACH ROW + SET NEW.#{new} = NEW.#{old} + EOF + + execute <<-EOF.strip_heredoc + CREATE TRIGGER #{trigger}_update + BEFORE UPDATE + ON #{table} + FOR EACH ROW + SET NEW.#{new} = NEW.#{old} + EOF + end + + # Removes the triggers used for renaming a PostgreSQL column concurrently. + def remove_rename_triggers_for_postgresql(table, trigger) + execute("DROP TRIGGER IF EXISTS #{trigger} ON #{table}") + execute("DROP FUNCTION IF EXISTS #{trigger}()") + end + + # Removes the triggers used for renaming a MySQL column concurrently. + def remove_rename_triggers_for_mysql(trigger) + execute("DROP TRIGGER IF EXISTS #{trigger}_insert") + execute("DROP TRIGGER IF EXISTS #{trigger}_update") + end + + # Returns the (base) name to use for triggers when renaming columns. + def rename_trigger_name(table, old, new) + 'trigger_' + Digest::SHA256.hexdigest("#{table}_#{old}_#{new}").first(12) + end + + # Returns the name to use for temporary rename columns. + def rename_column_name(base) + base.to_s + '_cm' + end + + # Returns an Array containing the indexes for the given column + def indexes_for(table, column) + column = column.to_s + + indexes(table).select { |index| index.columns.include?(column) } + end + + # Returns an Array containing the foreign keys for the given column. + def foreign_keys_for(table, column) + column = column.to_s + + foreign_keys(table).select { |fk| fk.column == column } + end + + # Copies all indexes for the old column to a new column. + # + # table - The table containing the columns and indexes. + # old - The old column. + # new - The new column. + def copy_indexes(table, old, new) + old = old.to_s + new = new.to_s + + indexes_for(table, old).each do |index| + new_columns = index.columns.map do |column| + column == old ? new : column + end + + # This is necessary as we can't properly rename indexes such as + # "ci_taggings_idx". + name = index.name + '_cm' + + # If the order contained the old column, map it to the new one. + order = index.orders + if order.key?(old) + order[new] = order.delete(old) + end + + options = { + unique: index.unique, + name: name, + length: index.lengths, + order: order + } + + # These options are not supported by MySQL, so we only add them if + # they were previously set. + options[:using] = index.using if index.using + options[:where] = index.where if index.where + + add_concurrent_index(table, new_columns, options) + end + end + + # Copies all foreign keys for the old column to the new column. + # + # table - The table containing the columns and indexes. + # old - The old column. + # new - The new column. + def copy_foreign_keys(table, old, new) + foreign_keys_for(table, old).each do |fk| + add_concurrent_foreign_key(fk.from_table, + fk.to_table, + column: new, + on_delete: fk.on_delete) + end + end + + # Returns the column for the given table and column name. + def column_for(table, name) + name = name.to_s + + columns(table).find { |column| column.name == name } + end + + # This will replace the first occurance of a string in a column with + # the replacement + # On postgresql we can use `regexp_replace` for that. + # On mysql we find the location of the pattern, and overwrite it + # with the replacement + def replace_sql(column, pattern, replacement) + quoted_pattern = Arel::Nodes::Quoted.new(pattern.to_s) + quoted_replacement = Arel::Nodes::Quoted.new(replacement.to_s) + + if MigrationHelpers.mysql? + locate = Arel::Nodes::NamedFunction + .new('locate', [quoted_pattern, column]) + insert_in_place = Arel::Nodes::NamedFunction + .new('insert', [column, locate, pattern.size, quoted_replacement]) + + Arel::Nodes::SqlLiteral.new(insert_in_place.to_sql) + else + replace = Arel::Nodes::NamedFunction + .new("regexp_replace", [column, quoted_pattern, quoted_replacement]) + Arel::Nodes::SqlLiteral.new(replace.to_sql) + end + end + + def remove_foreign_key_without_error(*args) + remove_foreign_key(*args) + rescue ArgumentError + end + + def sidekiq_queue_migrate(queue_from, to:) + while sidekiq_queue_length(queue_from) > 0 + Sidekiq.redis do |conn| + conn.rpoplpush "queue:#{queue_from}", "queue:#{to}" + end + end + end + + def sidekiq_queue_length(queue_name) + Sidekiq.redis do |conn| + conn.llen("queue:#{queue_name}") + end + end + + def check_trigger_permissions!(table) + unless Grant.create_and_execute_trigger?(table) + dbname = ActiveRecord::Base.configurations[Rails.env]['database'] + user = ActiveRecord::Base.configurations[Rails.env]['username'] || ENV['USER'] + + raise <<-EOF +Your database user is not allowed to create, drop, or execute triggers on the +table #{table}. + +If you are using PostgreSQL you can solve this by logging in to the GitLab +database (#{dbname}) using a super user and running: + + ALTER #{user} WITH SUPERUSER + +For MySQL you instead need to run: + + GRANT ALL PRIVILEGES ON *.* TO #{user}@'%' + +Both queries will grant the user super user permissions, ensuring you don't run +into similar problems in the future (e.g. when new tables are created). + EOF + end + end + + # Bulk queues background migration jobs for an entire table, batched by ID range. + # "Bulk" meaning many jobs will be pushed at a time for efficiency. + # If you need a delay interval per job, then use `queue_background_migration_jobs_by_range_at_intervals`. + # + # model_class - The table being iterated over + # job_class_name - The background migration job class as a string + # batch_size - The maximum number of rows per job + # + # Example: + # + # class Route < ActiveRecord::Base + # include EachBatch + # self.table_name = 'routes' + # end + # + # bulk_queue_background_migration_jobs_by_range(Route, 'ProcessRoutes') + # + # Where the model_class includes EachBatch, and the background migration exists: + # + # class Gitlab::BackgroundMigration::ProcessRoutes + # def perform(start_id, end_id) + # # do something + # end + # end + def bulk_queue_background_migration_jobs_by_range(model_class, job_class_name, batch_size: BACKGROUND_MIGRATION_BATCH_SIZE) + raise "#{model_class} does not have an ID to use for batch ranges" unless model_class.column_names.include?('id') + + jobs = [] + + model_class.each_batch(of: batch_size) do |relation| + start_id, end_id = relation.pluck('MIN(id), MAX(id)').first + + if jobs.length >= BACKGROUND_MIGRATION_JOB_BUFFER_SIZE + # Note: This code path generally only helps with many millions of rows + # We push multiple jobs at a time to reduce the time spent in + # Sidekiq/Redis operations. We're using this buffer based approach so we + # don't need to run additional queries for every range. + BackgroundMigrationWorker.perform_bulk(jobs) + jobs.clear + end + + jobs << [job_class_name, [start_id, end_id]] + end + + BackgroundMigrationWorker.perform_bulk(jobs) unless jobs.empty? + end + + # Queues background migration jobs for an entire table, batched by ID range. + # Each job is scheduled with a `delay_interval` in between. + # If you use a small interval, then some jobs may run at the same time. + # + # model_class - The table being iterated over + # job_class_name - The background migration job class as a string + # delay_interval - The duration between each job's scheduled time (must respond to `to_f`) + # batch_size - The maximum number of rows per job + # + # Example: + # + # class Route < ActiveRecord::Base + # include EachBatch + # self.table_name = 'routes' + # end + # + # queue_background_migration_jobs_by_range_at_intervals(Route, 'ProcessRoutes', 1.minute) + # + # Where the model_class includes EachBatch, and the background migration exists: + # + # class Gitlab::BackgroundMigration::ProcessRoutes + # def perform(start_id, end_id) + # # do something + # end + # end + def queue_background_migration_jobs_by_range_at_intervals(model_class, job_class_name, delay_interval, batch_size: BACKGROUND_MIGRATION_BATCH_SIZE) + raise "#{model_class} does not have an ID to use for batch ranges" unless model_class.column_names.include?('id') + + model_class.each_batch(of: batch_size) do |relation, index| + start_id, end_id = relation.pluck('MIN(id), MAX(id)').first + + # `BackgroundMigrationWorker.bulk_perform_in` schedules all jobs for + # the same time, which is not helpful in most cases where we wish to + # spread the work over time. + BackgroundMigrationWorker.perform_in(delay_interval * index, job_class_name, [start_id, end_id]) + end + end + end +end + +# rubocop:enable all -- cgit From 468523f4ad85f99d78fd341ca4f5fc96f561a533 Mon Sep 17 00:00:00 2001 From: aschmitz Date: Wed, 4 Oct 2017 02:56:37 -0500 Subject: Non-Serial ("Snowflake") IDs (#4801) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Use non-serial IDs This change makes a number of nontrivial tweaks to the data model in Mastodon: * All IDs are now 8 byte integers (rather than mixed 4- and 8-byte) * IDs are now assigned as: * Top 6 bytes: millisecond-resolution time from epoch * Bottom 2 bytes: serial (within the millisecond) sequence number * See /lib/tasks/db.rake's `define_timestamp_id` for details, but note that the purpose of these changes is to make it difficult to determine the number of objects in a table from the ID of any object. * The Redis sorted set used for the feed will have values used to look up toots, rather than scores. This is almost always the same as the existing behavior, except in the case of boosted toots. This change was made because Redis stores scores as double-precision floats, which cannot store the new ID format exactly. Note that this doesn't cause problems with sorting/pagination, because ZREVRANGEBYSCORE sorts lexicographically when scores are tied. (This will still cause sorting issues when the ID gains a new significant digit, but that's extraordinarily uncommon.) Note a couple of tradeoffs have been made in this commit: * lib/tasks/db.rake is used to enforce many/most column constraints, because this commit seems likely to take a while to bring upstream. Enforcing a post-migrate hook is an easier way to maintain the code in the interim. * Boosted toots will appear in the timeline as many times as they have been boosted. This is a tradeoff due to the way the feed is saved in Redis at the moment, but will be handled by a future commit. This would effectively close Mastodon's #1059, as it is a snowflake-like system of generating IDs. However, given how involved the changes were simply within Mastodon, it may have unexpected interactions with some clients, if they store IDs as doubles (or as 4-byte integers). This was a problem that Twitter ran into with their "snowflake" transition, particularly in JavaScript clients that treated IDs as JS integers, rather than strings. It therefore would be useful to test these changes at least in the web interface and popular clients before pushing them to all users. * Fix JavaScript interface with long IDs Somewhat predictably, the JS interface handled IDs as numbers, which in JS are IEEE double-precision floats. This loses some precision when working with numbers as large as those generated by the new ID scheme, so we instead handle them here as strings. This is relatively simple, and doesn't appear to have caused any problems, but should definitely be tested more thoroughly than the built-in tests. Several days of use appear to support this working properly. BREAKING CHANGE: The major(!) change here is that IDs are now returned as strings by the REST endpoints, rather than as integers. In practice, relatively few changes were required to make the existing JS UI work with this change, but it will likely hit API clients pretty hard: it's an entirely different type to consume. (The one API client I tested, Tusky, handles this with no problems, however.) Twitter ran into this issue when introducing Snowflake IDs, and decided to instead introduce an `id_str` field in JSON responses. I have opted to *not* do that, and instead force all IDs to 64-bit integers represented by strings in one go. (I believe Twitter exacerbated their problem by rolling out the changes three times: once for statuses, once for DMs, and once for user IDs, as well as by leaving an integer ID value in JSON. As they said, "If youโ€™re using the `id` field with JSON in a Javascript-related language, there is a very high likelihood that the integers will be silently munged by Javascript interpreters. In most cases, this will result in behavior such as being unable to load or delete a specific direct message, because the ID you're sending to the API is different than the actual identifier associated with the message." [1]) However, given that this is a significant change for API users, alternatives or a transition time may be appropriate. 1: https://blog.twitter.com/developer/en_us/a/2011/direct-messages-going-snowflake-on-sep-30-2011.html * Restructure feed pushes/unpushes This was necessary because the previous behavior used Redis zset scores to identify statuses, but those are IEEE double-precision floats, so we can't actually use them to identify all 64-bit IDs. However, it leaves the code in a much better state for refactoring reblog handling / coalescing. Feed-management code has been consolidated in FeedManager, including: * BatchedRemoveStatusService no longer directly manipulates feed zsets * RemoveStatusService no longer directly manipulates feed zsets * PrecomputeFeedService has moved its logic to FeedManager#populate_feed (PrecomputeFeedService largely made lots of calls to FeedManager, but didn't follow the normal adding-to-feed process.) This has the effect of unifying all of the feed push/unpush logic in FeedManager, making it much more tractable to update it in the future. Due to some additional checks that must be made during, for example, batch status removals, some Redis pipelining has been removed. It does not appear that this should cause significantly increased load, but if necessary, some optimizations are possible in batch cases. These were omitted in the pursuit of simplicity, but a batch_push and batch_unpush would be possible in the future. Tests were added to verify that pushes happen under expected conditions, and to verify reblog behavior (both on pushing and unpushing). In the case of unpushing, this includes testing behavior that currently leads to confusion such as Mastodon's #2817, but this codifies that the behavior is currently expected. * Rubocop fixes I could swear I made these changes already, but I must have lost them somewhere along the line. * Address review comments This addresses the first two comments from review of this feature: https://github.com/tootsuite/mastodon/pull/4801#discussion_r139336735 https://github.com/tootsuite/mastodon/pull/4801#discussion_r139336931 This adds an optional argument to FeedManager#key, the subtype of feed key to generate. It also tests to ensure that FeedManager's settings are such that reblogs won't be tracked forever. * Hardcode IdToBigints migration columns This addresses a comment during review: https://github.com/tootsuite/mastodon/pull/4801#discussion_r139337452 This means we'll need to make sure that all _id columns going forward are bigints, but that should happen automatically in most cases. * Additional fixes for stringified IDs in JSON These should be the last two. These were identified using eslint to try to identify any plain casts to JavaScript numbers. (Some such casts are legitimate, but these were not.) Adding the following to .eslintrc.yml will identify casts to numbers: ~~~ no-restricted-syntax: - warn - selector: UnaryExpression[operator='+'] > :not(Literal) message: Avoid the use of unary + - selector: CallExpression[callee.name='Number'] message: Casting with Number() may coerce string IDs to numbers ~~~ The remaining three casts appear legitimate: two casts to array indices, one in a server to turn an environment variable into a number. * Only implement timestamp IDs for Status IDs Per discussion in #4801, this is only being merged in for Status IDs at this point. We do this in a migration, as there is no longer use for a post-migration hook. We keep the initialization of the timestamp_id function as a Rake task, as it is also needed after db:schema:load (as db/schema.rb doesn't store Postgres functions). * Change internal streaming payloads to stringified IDs as well This is equivalent to 591a9af356faf2d5c7e66e3ec715502796c875cd from #5019, with an extra change for the addition to FeedManager#unpush. * Ensure we have a status_id_seq sequence Apparently this is not a given when specifying a custom ID function, so now we ensure it gets created. This uses the generic version of this function to more easily support adding additional tables with timestamp IDs in the future, although it would be possible to cut this down to a less generic version if necessary. It is only run during db:schema:load or the relevant migration, so the overhead is extraordinarily minimal. * Transition reblogs to new Redis format This provides a one-way migration to transition old Redis reblog entries into the new format, with a separate tracking entry for reblogs. It is not invertible because doing so could (if timestamp IDs are used) require a database query for each status in each users' feed, which is likely to be a significant toll on major instances. * Address review comments from @akihikodaki No functional changes. * Additional review changes * Heredoc cleanup * Run db:schema:load hooks for test in development This matches the behavior in Rails' ActiveRecord::Tasks::DatabaseTasks.each_current_configuration, which would otherwise break `rake db:setup` in development. It also moves some functionality out to a library, which will be a good place to put additional related functionality in the near future. --- .../api/v1/accounts/relationships_controller.rb | 5 +- app/lib/feed_manager.rb | 128 +++++++++++++++++---- app/models/feed.rb | 2 +- app/services/batched_remove_status_service.rb | 37 ++---- app/services/precompute_feed_service.rb | 38 +----- app/services/remove_status_service.rb | 8 +- .../20170920024819_status_ids_to_timestamp_ids.rb | 32 ++++++ db/migrate/20170920032311_fix_reblogs_in_feeds.rb | 63 ++++++++++ db/schema.rb | 2 +- lib/mastodon/timestamp_ids.rb | 126 ++++++++++++++++++++ lib/tasks/db.rake | 56 +++++++++ spec/lib/feed_manager_spec.rb | 109 ++++++++++++++++++ spec/models/feed_spec.rb | 2 +- .../services/batched_remove_status_service_spec.rb | 3 +- spec/services/precompute_feed_service_spec.rb | 2 +- 15 files changed, 509 insertions(+), 104 deletions(-) create mode 100644 db/migrate/20170920024819_status_ids_to_timestamp_ids.rb create mode 100644 db/migrate/20170920032311_fix_reblogs_in_feeds.rb create mode 100644 lib/mastodon/timestamp_ids.rb (limited to 'lib') diff --git a/app/controllers/api/v1/accounts/relationships_controller.rb b/app/controllers/api/v1/accounts/relationships_controller.rb index a88cf2021..91a942d75 100644 --- a/app/controllers/api/v1/accounts/relationships_controller.rb +++ b/app/controllers/api/v1/accounts/relationships_controller.rb @@ -7,7 +7,10 @@ class Api::V1::Accounts::RelationshipsController < Api::BaseController respond_to :json def index - @accounts = Account.where(id: account_ids).select('id') + accounts = Account.where(id: account_ids).select('id') + # .where doesn't guarantee that our results are in the same order + # we requested them, so return the "right" order to the requestor. + @accounts = accounts.index_by(&:id).values_at(*account_ids) render json: @accounts, each_serializer: REST::RelationshipSerializer, relationships: relationships end diff --git a/app/lib/feed_manager.rb b/app/lib/feed_manager.rb index b1ae11084..c509c5702 100644 --- a/app/lib/feed_manager.rb +++ b/app/lib/feed_manager.rb @@ -7,8 +7,13 @@ class FeedManager MAX_ITEMS = 400 - def key(type, id) - "feed:#{type}:#{id}" + # Must be <= MAX_ITEMS or the tracking sets will grow forever + REBLOG_FALLOFF = 40 + + def key(type, id, subtype = nil) + return "feed:#{type}:#{id}" unless subtype + + "feed:#{type}:#{id}:#{subtype}" end def filter?(timeline_type, status, receiver_id) @@ -22,23 +27,36 @@ class FeedManager end def push(timeline_type, account, status) - timeline_key = key(timeline_type, account.id) + return false unless add_to_feed(timeline_type, account, status) - if status.reblog? - # If the original status is within 40 statuses from top, do not re-insert it into the feed - rank = redis.zrevrank(timeline_key, status.reblog_of_id) - return if !rank.nil? && rank < 40 - redis.zadd(timeline_key, status.id, status.reblog_of_id) - else - redis.zadd(timeline_key, status.id, status.id) - trim(timeline_type, account.id) - end + trim(timeline_type, account.id) PushUpdateWorker.perform_async(account.id, status.id) if push_update_required?(timeline_type, account.id) + + true + end + + def unpush(timeline_type, account, status) + return false unless remove_from_feed(timeline_type, account, status) + + payload = Oj.dump(event: :delete, payload: status.id.to_s) + Redis.current.publish("timeline:#{account.id}", payload) + + true end def trim(type, account_id) - redis.zremrangebyrank(key(type, account_id), '0', (-(FeedManager::MAX_ITEMS + 1)).to_s) + timeline_key = key(type, account_id) + reblog_key = key(type, account_id, 'reblogs') + # Remove any items past the MAX_ITEMS'th entry in our feed + redis.zremrangebyrank(timeline_key, '0', (-(FeedManager::MAX_ITEMS + 1)).to_s) + + # Get the score of the REBLOG_FALLOFF'th item in our feed, and stop + # tracking anything after it for deduplication purposes. + falloff_rank = FeedManager::REBLOG_FALLOFF - 1 + falloff_range = redis.zrevrange(timeline_key, falloff_rank, falloff_rank, with_scores: true) + falloff_score = falloff_range&.first&.last&.to_i || 0 + redis.zremrangebyscore(reblog_key, 0, falloff_score) end def push_update_required?(timeline_type, account_id) @@ -54,11 +72,9 @@ class FeedManager query = query.where('id > ?', oldest_home_score) end - redis.pipelined do - query.each do |status| - next if status.direct_visibility? || filter?(:home, status, into_account) - redis.zadd(timeline_key, status.id, status.id) - end + query.each do |status| + next if status.direct_visibility? || filter?(:home, status, into_account) + add_to_feed(:home, into_account, status) end trim(:home, into_account.id) @@ -69,11 +85,8 @@ class FeedManager oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true)&.first&.last&.to_i || 0 from_account.statuses.select('id').where('id > ?', oldest_home_score).reorder(nil).find_in_batches do |statuses| - redis.pipelined do - statuses.each do |status| - redis.zrem(timeline_key, status.id) - redis.zremrangebyscore(timeline_key, status.id, status.id) - end + statuses.each do |status| + unpush(:home, into_account, status) end end end @@ -81,9 +94,20 @@ class FeedManager def clear_from_timeline(account, target_account) timeline_key = key(:home, account.id) timeline_status_ids = redis.zrange(timeline_key, 0, -1) - target_status_ids = Status.where(id: timeline_status_ids, account: target_account).ids + target_statuses = Status.where(id: timeline_status_ids, account: target_account) - redis.zrem(timeline_key, target_status_ids) if target_status_ids.present? + target_statuses.each do |status| + unpush(:home, account, status) + end + end + + def populate_feed(account) + prepopulate_limit = FeedManager::MAX_ITEMS / 4 + statuses = Status.as_home_timeline(account).order(account_id: :desc).limit(prepopulate_limit) + statuses.reverse_each do |status| + next if filter_from_home?(status, account) + add_to_feed(:home, account, status) + end end private @@ -131,4 +155,58 @@ class FeedManager should_filter end + + # Adds a status to an account's feed, returning true if a status was + # added, and false if it was not added to the feed. Note that this is + # an internal helper: callers must call trim or push updates if + # either action is appropriate. + def add_to_feed(timeline_type, account, status) + timeline_key = key(timeline_type, account.id) + reblog_key = key(timeline_type, account.id, 'reblogs') + + if status.reblog? + # If the original status or a reblog of it is within + # REBLOG_FALLOFF statuses from the top, do not re-insert it into + # the feed + rank = redis.zrevrank(timeline_key, status.reblog_of_id) + return false if !rank.nil? && rank < FeedManager::REBLOG_FALLOFF + + reblog_rank = redis.zrevrank(reblog_key, status.reblog_of_id) + return false unless reblog_rank.nil? + + redis.zadd(timeline_key, status.id, status.id) + redis.zadd(reblog_key, status.id, status.reblog_of_id) + else + redis.zadd(timeline_key, status.id, status.id) + end + + true + end + + # Removes an individual status from a feed, correctly handling cases + # with reblogs, and returning true if a status was removed. As with + # `add_to_feed`, this does not trigger push updates, so callers must + # do so if appropriate. + def remove_from_feed(timeline_type, account, status) + timeline_key = key(timeline_type, account.id) + reblog_key = key(timeline_type, account.id, 'reblogs') + + if status.reblog? + # 1. If the reblogging status is not in the feed, stop. + status_rank = redis.zrevrank(timeline_key, status.id) + return false if status_rank.nil? + + # 2. Remove the reblogged status from the `:reblogs` zset. + redis.zrem(reblog_key, status.reblog_of_id) + + # 3. Add the reblogged status to the feed using the reblogging + # status' ID as its score, and the reblogged status' ID as its + # value. + redis.zadd(timeline_key, status.id, status.reblog_of_id) + + # 4. Remove the reblogging status from the feed (as normal) + end + + redis.zrem(timeline_key, status.id) + end end diff --git a/app/models/feed.rb b/app/models/feed.rb index beb4a8de3..5f7b7877a 100644 --- a/app/models/feed.rb +++ b/app/models/feed.rb @@ -19,7 +19,7 @@ class Feed def from_redis(limit, max_id, since_id) max_id = '+inf' if max_id.blank? since_id = '-inf' if since_id.blank? - unhydrated = redis.zrevrangebyscore(key, "(#{max_id}", "(#{since_id}", limit: [0, limit], with_scores: true).map(&:last).map(&:to_i) + unhydrated = redis.zrevrangebyscore(key, "(#{max_id}", "(#{since_id}", limit: [0, limit], with_scores: true).map(&:first).map(&:to_i) Status.where(id: unhydrated).cache_ids end diff --git a/app/services/batched_remove_status_service.rb b/app/services/batched_remove_status_service.rb index 2fd623922..5d83771c9 100644 --- a/app/services/batched_remove_status_service.rb +++ b/app/services/batched_remove_status_service.rb @@ -29,7 +29,7 @@ class BatchedRemoveStatusService < BaseService statuses.group_by(&:account_id).each do |_, account_statuses| account = account_statuses.first.account - unpush_from_home_timelines(account_statuses) + unpush_from_home_timelines(account, account_statuses) if account.local? batch_stream_entries(account, account_statuses) @@ -72,14 +72,15 @@ class BatchedRemoveStatusService < BaseService end end - def unpush_from_home_timelines(statuses) - account = statuses.first.account - recipients = account.followers.local.pluck(:id) + def unpush_from_home_timelines(account, statuses) + recipients = account.followers.local.to_a - recipients << account.id if account.local? + recipients << account if account.local? - recipients.each do |follower_id| - unpush(follower_id, statuses) + recipients.each do |follower| + statuses.each do |status| + FeedManager.instance.unpush(:home, follower, status) + end end end @@ -109,28 +110,6 @@ class BatchedRemoveStatusService < BaseService end end - def unpush(follower_id, statuses) - key = FeedManager.instance.key(:home, follower_id) - - originals = statuses.reject(&:reblog?) - reblogs = statuses.select(&:reblog?) - - # Quickly remove all originals - redis.pipelined do - originals.each do |status| - redis.zremrangebyscore(key, status.id, status.id) - redis.publish("timeline:#{follower_id}", @json_payloads[status.id]) - end - end - - # For reblogs, re-add original status to feed, unless the reblog - # was not in the feed in the first place - reblogs.each do |status| - redis.zadd(key, status.reblog_of_id, status.reblog_of_id) unless redis.zscore(key, status.reblog_of_id).nil? - redis.publish("timeline:#{follower_id}", @json_payloads[status.id]) - end - end - def redis Redis.current end diff --git a/app/services/precompute_feed_service.rb b/app/services/precompute_feed_service.rb index 85635a008..36aabaa00 100644 --- a/app/services/precompute_feed_service.rb +++ b/app/services/precompute_feed_service.rb @@ -1,43 +1,7 @@ # frozen_string_literal: true class PrecomputeFeedService < BaseService - LIMIT = FeedManager::MAX_ITEMS / 4 - def call(account) - @account = account - populate_feed - end - - private - - attr_reader :account - - def populate_feed - pairs = statuses.reverse_each.lazy.reject(&method(:status_filtered?)).map(&method(:process_status)).to_a - - redis.pipelined do - redis.zadd(account_home_key, pairs) if pairs.any? - redis.del("account:#{@account.id}:regeneration") - end - end - - def process_status(status) - [status.id, status.reblog? ? status.reblog_of_id : status.id] - end - - def status_filtered?(status) - FeedManager.instance.filter?(:home, status, account.id) - end - - def account_home_key - FeedManager.instance.key(:home, account.id) - end - - def statuses - Status.as_home_timeline(account).order(account_id: :desc).limit(LIMIT) - end - - def redis - Redis.current + FeedManager.instance.populate_feed(account) end end diff --git a/app/services/remove_status_service.rb b/app/services/remove_status_service.rb index 14f24908c..96d9208cc 100644 --- a/app/services/remove_status_service.rb +++ b/app/services/remove_status_service.rb @@ -102,13 +102,7 @@ class RemoveStatusService < BaseService end def unpush(type, receiver, status) - if status.reblog? && !redis.zscore(FeedManager.instance.key(type, receiver.id), status.reblog_of_id).nil? - redis.zadd(FeedManager.instance.key(type, receiver.id), status.reblog_of_id, status.reblog_of_id) - else - redis.zremrangebyscore(FeedManager.instance.key(type, receiver.id), status.id, status.id) - end - - Redis.current.publish("timeline:#{receiver.id}", @payload) + FeedManager.instance.unpush(type, receiver, status) end def remove_from_hashtags diff --git a/db/migrate/20170920024819_status_ids_to_timestamp_ids.rb b/db/migrate/20170920024819_status_ids_to_timestamp_ids.rb new file mode 100644 index 000000000..5d15817bd --- /dev/null +++ b/db/migrate/20170920024819_status_ids_to_timestamp_ids.rb @@ -0,0 +1,32 @@ +class StatusIdsToTimestampIds < ActiveRecord::Migration[5.1] + def up + # Prepare the function we will use to generate IDs. + Rake::Task['db:define_timestamp_id'].execute + + # Set up the statuses.id column to use our timestamp-based IDs. + ActiveRecord::Base.connection.execute(<<~SQL) + ALTER TABLE statuses + ALTER COLUMN id + SET DEFAULT timestamp_id('statuses') + SQL + + # Make sure we have a sequence to use. + Rake::Task['db:ensure_id_sequences_exist'].execute + end + + def down + # Revert the column to the old method of just using the sequence + # value for new IDs. Set the current ID sequence to the maximum + # existing ID, such that the next sequence will be one higher. + + # We lock the table during this so that the ID won't get clobbered, + # but ID is indexed, so this should be a fast operation. + ActiveRecord::Base.connection.execute(<<~SQL) + LOCK statuses; + SELECT setval('statuses_id_seq', (SELECT MAX(id) FROM statuses)); + ALTER TABLE statuses + ALTER COLUMN id + SET DEFAULT nextval('statuses_id_seq');" + SQL + end +end diff --git a/db/migrate/20170920032311_fix_reblogs_in_feeds.rb b/db/migrate/20170920032311_fix_reblogs_in_feeds.rb new file mode 100644 index 000000000..c813ecd46 --- /dev/null +++ b/db/migrate/20170920032311_fix_reblogs_in_feeds.rb @@ -0,0 +1,63 @@ +class FixReblogsInFeeds < ActiveRecord::Migration[5.1] + def up + redis = Redis.current + fm = FeedManager.instance + + # find_each is batched on the database side. + User.includes(:account).find_each do |user| + account = user.account + + # Old scheme: + # Each user's feed zset had a series of score:value entries, + # where "regular" statuses had the same score and value (their + # ID). Reblogs had a score of the reblogging status' ID, and a + # value of the reblogged status' ID. + + # New scheme: + # The feed contains only entries with the same score and value. + # Reblogs result in the reblogging status being added to the + # feed, with an entry in a reblog tracking zset (where the score + # is once again set to the reblogging status' ID, and the value + # is set to the reblogged status' ID). This is safe for Redis' + # float coersion because in this reblog tracking zset, we only + # need the rebloggging status' ID to be able to stop tracking + # entries after they have gotten too far down the feed, which + # does not require an exact value. + + # So, first, we iterate over the user's feed to find any reblogs. + timeline_key = fm.key(:home, account.id) + reblog_key = fm.key(:home, account.id, 'reblogs') + redis.zrange(timeline_key, 0, -1, with_scores: true).each do |entry| + next if entry[0] == entry[1] + + # The score and value don't match, so this is a reblog. + # (note that we're transitioning from IDs < 53 bits so we + # don't have to worry about the loss of precision) + + reblogged_id, reblogging_id = entry + + # Remove the old entry + redis.zrem(timeline_key, reblogged_id) + + # Add a new one for the reblogging status + redis.zadd(timeline_key, reblogging_id, reblogging_id) + + # Track the fact that this was a reblog + redis.zadd(reblog_key, reblogging_id, reblogged_id) + end + end + end + + def down + # We *deliberately* do nothing here. This means that reverting + # this and the associated changes to the FeedManager code could + # allow one superfluous reblog of any given status, but in the case + # where things have gone wrong and a revert is necessary, this + # appears preferable to requiring a database hit for every status + # in every users' feed simply to revert. + + # Note that this is operating under the assumption that entries + # with >53-bit IDs have already been entered. Otherwise, we could + # just use the data in Redis to reverse this transition. + end +end diff --git a/db/schema.rb b/db/schema.rb index 2cb105553..00cc24bae 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -321,7 +321,7 @@ ActiveRecord::Schema.define(version: 20170927215609) do t.index ["account_id", "status_id"], name: "index_status_pins_on_account_id_and_status_id", unique: true end - create_table "statuses", force: :cascade do |t| + create_table "statuses", id: :bigint, default: -> { "timestamp_id('statuses'::text)" }, force: :cascade do |t| t.string "uri" t.text "text", default: "", null: false t.datetime "created_at", null: false diff --git a/lib/mastodon/timestamp_ids.rb b/lib/mastodon/timestamp_ids.rb new file mode 100644 index 000000000..d49b5c1b5 --- /dev/null +++ b/lib/mastodon/timestamp_ids.rb @@ -0,0 +1,126 @@ +# frozen_string_literal: true + +module Mastodon + module TimestampIds + def self.define_timestamp_id + conn = ActiveRecord::Base.connection + + # Make sure we don't already have a `timestamp_id` function. + unless conn.execute(<<~SQL).values.first.first + SELECT EXISTS( + SELECT * FROM pg_proc WHERE proname = 'timestamp_id' + ); + SQL + # The function doesn't exist, so we'll define it. + conn.execute(<<~SQL) + CREATE OR REPLACE FUNCTION timestamp_id(table_name text) + RETURNS bigint AS + $$ + DECLARE + time_part bigint; + sequence_base bigint; + tail bigint; + BEGIN + -- Our ID will be composed of the following: + -- 6 bytes (48 bits) of millisecond-level timestamp + -- 2 bytes (16 bits) of sequence data + + -- The 'sequence data' is intended to be unique within a + -- given millisecond, yet obscure the 'serial number' of + -- this row. + + -- To do this, we hash the following data: + -- * Table name (if provided, skipped if not) + -- * Secret salt (should not be guessable) + -- * Timestamp (again, millisecond-level granularity) + + -- We then take the first two bytes of that value, and add + -- the lowest two bytes of the table ID sequence number + -- (`table_name`_id_seq). This means that even if we insert + -- two rows at the same millisecond, they will have + -- distinct 'sequence data' portions. + + -- If this happens, and an attacker can see both such IDs, + -- they can determine which of the two entries was inserted + -- first, but not the total number of entries in the table + -- (even mod 2**16). + + -- The table name is included in the hash to ensure that + -- different tables derive separate sequence bases so rows + -- inserted in the same millisecond in different tables do + -- not reveal the table ID sequence number for one another. + + -- The secret salt is included in the hash to ensure that + -- external users cannot derive the sequence base given the + -- timestamp and table name, which would allow them to + -- compute the table ID sequence number. + + time_part := ( + -- Get the time in milliseconds + ((date_part('epoch', now()) * 1000))::bigint + -- And shift it over two bytes + << 16); + + sequence_base := ( + 'x' || + -- Take the first two bytes (four hex characters) + substr( + -- Of the MD5 hash of the data we documented + md5(table_name || + '#{SecureRandom.hex(16)}' || + time_part::text + ), + 1, 4 + ) + -- And turn it into a bigint + )::bit(16)::bigint; + + -- Finally, add our sequence number to our base, and chop + -- it to the last two bytes + tail := ( + (sequence_base + nextval(table_name || '_id_seq')) + & 65535); + + -- Return the time part and the sequence part. OR appears + -- faster here than addition, but they're equivalent: + -- time_part has no trailing two bytes, and tail is only + -- the last two bytes. + RETURN time_part | tail; + END + $$ LANGUAGE plpgsql VOLATILE; + SQL + end + end + + def self.ensure_id_sequences_exist + conn = ActiveRecord::Base.connection + + # Find tables using timestamp IDs. + default_regex = /timestamp_id\('(?\w+)'/ + conn.tables.each do |table| + # We're only concerned with "id" columns. + next unless (id_col = conn.columns(table).find { |col| col.name == 'id' }) + + # And only those that are using timestamp_id. + next unless (data = default_regex.match(id_col.default_function)) + + seq_name = data[:seq_prefix] + '_id_seq' + # If we were on Postgres 9.5+, we could do CREATE SEQUENCE IF + # NOT EXISTS, but we can't depend on that. Instead, catch the + # possible exception and ignore it. + # Note that seq_name isn't a column name, but it's a + # relation, like a column, and follows the same quoting rules + # in Postgres. + conn.execute(<<~SQL) + DO $$ + BEGIN + CREATE SEQUENCE #{conn.quote_column_name(seq_name)}; + EXCEPTION WHEN duplicate_table THEN + -- Do nothing, we have the sequence already. + END + $$ LANGUAGE plpgsql; + SQL + end + end + end +end diff --git a/lib/tasks/db.rake b/lib/tasks/db.rake index 7a055bf25..66468d999 100644 --- a/lib/tasks/db.rake +++ b/lib/tasks/db.rake @@ -1,5 +1,36 @@ # frozen_string_literal: true +require Rails.root.join('lib', 'mastodon', 'timestamp_ids') + +def each_schema_load_environment + # If we're in development, also run this for the test environment. + # This is a somewhat hacky way to do this, so here's why: + # 1. We have to define this before we load the schema, or we won't + # have a timestamp_id function when we get to it in the schema. + # 2. db:setup calls db:schema:load_if_ruby, which calls + # db:schema:load, which we define above as having a prerequisite + # of this task. + # 3. db:schema:load ends up running + # ActiveRecord::Tasks::DatabaseTasks.load_schema_current, which + # calls a private method `each_current_configuration`, which + # explicitly also does the loading for the `test` environment + # if the current environment is `development`, so we end up + # needing to do the same, and we can't even use the same method + # to do it. + + if Rails.env == 'development' + test_conf = ActiveRecord::Base.configurations['test'] + if test_conf['database']&.present? + ActiveRecord::Base.establish_connection(:test) + yield + + ActiveRecord::Base.establish_connection(Rails.env.to_sym) + end + end + + yield +end + namespace :db do namespace :migrate do desc 'Setup the db or migrate depending on state of db' @@ -16,4 +47,29 @@ namespace :db do end end end + + # Before we load the schema, define the timestamp_id function. + # Idiomatically, we might do this in a migration, but then it + # wouldn't end up in schema.rb, so we'd need to figure out a way to + # get it in before doing db:setup as well. This is simpler, and + # ensures it's always in place. + Rake::Task['db:schema:load'].enhance ['db:define_timestamp_id'] + + # After we load the schema, make sure we have sequences for each + # table using timestamp IDs. + Rake::Task['db:schema:load'].enhance do + Rake::Task['db:ensure_id_sequences_exist'].invoke + end + + task :define_timestamp_id do + each_schema_load_environment do + Mastodon::TimestampIds.define_timestamp_id + end + end + + task :ensure_id_sequences_exist do + each_schema_load_environment do + Mastodon::TimestampIds.ensure_id_sequences_exist + end + end end diff --git a/spec/lib/feed_manager_spec.rb b/spec/lib/feed_manager_spec.rb index 22439cf35..923894ccb 100644 --- a/spec/lib/feed_manager_spec.rb +++ b/spec/lib/feed_manager_spec.rb @@ -1,6 +1,10 @@ require 'rails_helper' RSpec.describe FeedManager do + it 'tracks at least as many statuses as reblogs' do + expect(FeedManager::REBLOG_FALLOFF).to be <= FeedManager::MAX_ITEMS + end + describe '#key' do subject { FeedManager.instance.key(:home, 1) } @@ -150,5 +154,110 @@ RSpec.describe FeedManager do expect(Redis.current.zcard("feed:type:#{account.id}")).to eq FeedManager::MAX_ITEMS end + + it 'sends push updates for non-home timelines' do + account = Fabricate(:account) + status = Fabricate(:status) + allow(Redis.current).to receive_messages(publish: nil) + + FeedManager.instance.push('type', account, status) + + expect(Redis.current).to have_received(:publish).with("timeline:#{account.id}", any_args).at_least(:once) + end + + context 'reblogs' do + it 'saves reblogs of unseen statuses' do + account = Fabricate(:account) + reblogged = Fabricate(:status) + reblog = Fabricate(:status, reblog: reblogged) + + expect(FeedManager.instance.push('type', account, reblog)).to be true + end + + it 'does not save a new reblog of a recent status' do + account = Fabricate(:account) + reblogged = Fabricate(:status) + reblog = Fabricate(:status, reblog: reblogged) + + FeedManager.instance.push('type', account, reblogged) + + expect(FeedManager.instance.push('type', account, reblog)).to be false + end + + it 'saves a new reblog of an old status' do + account = Fabricate(:account) + reblogged = Fabricate(:status) + reblog = Fabricate(:status, reblog: reblogged) + + FeedManager.instance.push('type', account, reblogged) + + # Fill the feed with intervening statuses + FeedManager::REBLOG_FALLOFF.times do + FeedManager.instance.push('type', account, Fabricate(:status)) + end + + expect(FeedManager.instance.push('type', account, reblog)).to be true + end + + it 'does not save a new reblog of a recently-reblogged status' do + account = Fabricate(:account) + reblogged = Fabricate(:status) + reblogs = 2.times.map { Fabricate(:status, reblog: reblogged) } + + # The first reblog will be accepted + FeedManager.instance.push('type', account, reblogs.first) + + # The second reblog should be ignored + expect(FeedManager.instance.push('type', account, reblogs.last)).to be false + end + + it 'saves a new reblog of a long-ago-reblogged status' do + account = Fabricate(:account) + reblogged = Fabricate(:status) + reblogs = 2.times.map { Fabricate(:status, reblog: reblogged) } + + # The first reblog will be accepted + FeedManager.instance.push('type', account, reblogs.first) + + # Fill the feed with intervening statuses + FeedManager::REBLOG_FALLOFF.times do + FeedManager.instance.push('type', account, Fabricate(:status)) + end + + # The second reblog should also be accepted + expect(FeedManager.instance.push('type', account, reblogs.last)).to be true + end + end + end + + describe '#unpush' do + it 'leaves a reblogged status when deleting the reblog' do + account = Fabricate(:account) + reblogged = Fabricate(:status) + status = Fabricate(:status, reblog: reblogged) + + FeedManager.instance.push('type', account, status) + + # The reblogging status should show up under normal conditions. + expect(Redis.current.zrange("feed:type:#{account.id}", 0, -1)).to eq [status.id.to_s] + + FeedManager.instance.unpush('type', account, status) + + # Because we couldn't tell if the status showed up any other way, + # we had to stick the reblogged status in by itself. + expect(Redis.current.zrange("feed:type:#{account.id}", 0, -1)).to eq [reblogged.id.to_s] + end + + it 'sends push updates' do + account = Fabricate(:account) + status = Fabricate(:status) + FeedManager.instance.push('type', account, status) + + allow(Redis.current).to receive_messages(publish: nil) + FeedManager.instance.unpush('type', account, status) + + deletion = Oj.dump(event: :delete, payload: status.id.to_s) + expect(Redis.current).to have_received(:publish).with("timeline:#{account.id}", deletion) + end end end diff --git a/spec/models/feed_spec.rb b/spec/models/feed_spec.rb index 1c377c17f..5433f44bd 100644 --- a/spec/models/feed_spec.rb +++ b/spec/models/feed_spec.rb @@ -9,7 +9,7 @@ RSpec.describe Feed, type: :model do Fabricate(:status, account: account, id: 3) Fabricate(:status, account: account, id: 10) Redis.current.zadd(FeedManager.instance.key(:home, account.id), - [[4, 'deleted'], [3, 'val3'], [2, 'val2'], [1, 'val1']]) + [[4, 4], [3, 3], [2, 2], [1, 1]]) feed = Feed.new(:home, account) results = feed.get(3) diff --git a/spec/services/batched_remove_status_service_spec.rb b/spec/services/batched_remove_status_service_spec.rb index f5c9adfb5..c82c45e09 100644 --- a/spec/services/batched_remove_status_service_spec.rb +++ b/spec/services/batched_remove_status_service_spec.rb @@ -5,7 +5,7 @@ RSpec.describe BatchedRemoveStatusService do let!(:alice) { Fabricate(:account) } let!(:bob) { Fabricate(:account, username: 'bob', domain: 'example.com', salmon_url: 'http://example.com/salmon') } - let!(:jeff) { Fabricate(:account) } + let!(:jeff) { Fabricate(:user).account } let!(:hank) { Fabricate(:account, username: 'hank', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox') } let(:status1) { PostStatusService.new.call(alice, 'Hello @bob@example.com') } @@ -19,6 +19,7 @@ RSpec.describe BatchedRemoveStatusService do stub_request(:post, 'http://example.com/inbox').to_return(status: 200) Fabricate(:subscription, account: alice, callback_url: 'http://example.com/push', confirmed: true, expires_at: 30.days.from_now) + jeff.user.update(current_sign_in_at: Time.now) jeff.follow!(alice) hank.follow!(alice) diff --git a/spec/services/precompute_feed_service_spec.rb b/spec/services/precompute_feed_service_spec.rb index dbd08ac1b..d1ef6c184 100644 --- a/spec/services/precompute_feed_service_spec.rb +++ b/spec/services/precompute_feed_service_spec.rb @@ -16,7 +16,7 @@ RSpec.describe PrecomputeFeedService do subject.call(account) - expect(Redis.current.zscore(FeedManager.instance.key(:home, account.id), reblog.id)).to eq status.id + expect(Redis.current.zscore(FeedManager.instance.key(:home, account.id), reblog.id)).to eq status.id.to_f end it 'does not raise an error even if it could not find any status' do -- cgit From eb5ac234342db46c881d8e69644d3292b5eabb54 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 6 Oct 2017 03:42:21 +0200 Subject: Clean up code style of Mastodon::TimestampId module (#5232) * Clean up code style of Mastodon::TimestampId module * Update brakeman config --- config/brakeman.ignore | 42 ++++----- lib/mastodon/timestamp_ids.rb | 201 ++++++++++++++++++++++-------------------- lib/tasks/db.rake | 2 +- 3 files changed, 125 insertions(+), 120 deletions(-) (limited to 'lib') diff --git a/config/brakeman.ignore b/config/brakeman.ignore index ed6e121d2..2a1bc1997 100644 --- a/config/brakeman.ignore +++ b/config/brakeman.ignore @@ -57,6 +57,26 @@ "confidence": "Weak", "note": "" }, + { + "warning_type": "SQL Injection", + "warning_code": 0, + "fingerprint": "34efc76883080f8b1110a30c34ec4f903946ee56651aae46c62477f45d4fc412", + "check_name": "SQL", + "message": "Possible SQL injection", + "file": "lib/mastodon/timestamp_ids.rb", + "line": 63, + "link": "http://brakemanscanner.org/docs/warning_types/sql_injection/", + "code": "connection.execute(\" CREATE OR REPLACE FUNCTION timestamp_id(table_name text)\\n RETURNS bigint AS\\n $$\\n DECLARE\\n time_part bigint;\\n sequence_base bigint;\\n tail bigint;\\n BEGIN\\n time_part := (\\n -- Get the time in milliseconds\\n ((date_part('epoch', now()) * 1000))::bigint\\n -- And shift it over two bytes\\n << 16);\\n\\n sequence_base := (\\n 'x' ||\\n -- Take the first two bytes (four hex characters)\\n substr(\\n -- Of the MD5 hash of the data we documented\\n md5(table_name ||\\n '#{SecureRandom.hex(16)}' ||\\n time_part::text\\n ),\\n 1, 4\\n )\\n -- And turn it into a bigint\\n )::bit(16)::bigint;\\n\\n -- Finally, add our sequence number to our base, and chop\\n -- it to the last two bytes\\n tail := (\\n (sequence_base + nextval(table_name || '_id_seq'))\\n & 65535);\\n\\n -- Return the time part and the sequence part. OR appears\\n -- faster here than addition, but they're equivalent:\\n -- time_part has no trailing two bytes, and tail is only\\n -- the last two bytes.\\n RETURN time_part | tail;\\n END\\n $$ LANGUAGE plpgsql VOLATILE;\\n\")", + "render_path": null, + "location": { + "type": "method", + "class": "Mastodon::TimestampIds", + "method": "define_timestamp_id" + }, + "user_input": "SecureRandom.hex(16)", + "confidence": "Medium", + "note": "" + }, { "warning_type": "Dynamic Render Path", "warning_code": 15, @@ -210,26 +230,6 @@ "confidence": "Weak", "note": "" }, - { - "warning_type": "SQL Injection", - "warning_code": 0, - "fingerprint": "cd440d9d0bcb76225f4142030cec0bdec6ad119c537c108c9d514bf87bc34d29", - "check_name": "SQL", - "message": "Possible SQL injection", - "file": "lib/mastodon/timestamp_ids.rb", - "line": 69, - "link": "http://brakemanscanner.org/docs/warning_types/sql_injection/", - "code": "ActiveRecord::Base.connection.execute(\" CREATE OR REPLACE FUNCTION timestamp_id(table_name text)\\n RETURNS bigint AS\\n $$\\n DECLARE\\n time_part bigint;\\n sequence_base bigint;\\n tail bigint;\\n BEGIN\\n -- Our ID will be composed of the following:\\n -- 6 bytes (48 bits) of millisecond-level timestamp\\n -- 2 bytes (16 bits) of sequence data\\n\\n -- The 'sequence data' is intended to be unique within a\\n -- given millisecond, yet obscure the 'serial number' of\\n -- this row.\\n\\n -- To do this, we hash the following data:\\n -- * Table name (if provided, skipped if not)\\n -- * Secret salt (should not be guessable)\\n -- * Timestamp (again, millisecond-level granularity)\\n\\n -- We then take the first two bytes of that value, and add\\n -- the lowest two bytes of the table ID sequence number\\n -- (`table_name`_id_seq). This means that even if we insert\\n -- two rows at the same millisecond, they will have\\n -- distinct 'sequence data' portions.\\n\\n -- If this happens, and an attacker can see both such IDs,\\n -- they can determine which of the two entries was inserted\\n -- first, but not the total number of entries in the table\\n -- (even mod 2**16).\\n\\n -- The table name is included in the hash to ensure that\\n -- different tables derive separate sequence bases so rows\\n -- inserted in the same millisecond in different tables do\\n -- not reveal the table ID sequence number for one another.\\n\\n -- The secret salt is included in the hash to ensure that\\n -- external users cannot derive the sequence base given the\\n -- timestamp and table name, which would allow them to\\n -- compute the table ID sequence number.\\n\\n time_part := (\\n -- Get the time in milliseconds\\n ((date_part('epoch', now()) * 1000))::bigint\\n -- And shift it over two bytes\\n << 16);\\n\\n sequence_base := (\\n 'x' ||\\n -- Take the first two bytes (four hex characters)\\n substr(\\n -- Of the MD5 hash of the data we documented\\n md5(table_name ||\\n '#{SecureRandom.hex(16)}' ||\\n time_part::text\\n ),\\n 1, 4\\n )\\n -- And turn it into a bigint\\n )::bit(16)::bigint;\\n\\n -- Finally, add our sequence number to our base, and chop\\n -- it to the last two bytes\\n tail := (\\n (sequence_base + nextval(table_name || '_id_seq'))\\n & 65535);\\n\\n -- Return the time part and the sequence part. OR appears\\n -- faster here than addition, but they're equivalent:\\n -- time_part has no trailing two bytes, and tail is only\\n -- the last two bytes.\\n RETURN time_part | tail;\\n END\\n $$ LANGUAGE plpgsql VOLATILE;\\n\")", - "render_path": null, - "location": { - "type": "method", - "class": "Mastodon::TimestampIds", - "method": "s(:self).define_timestamp_id" - }, - "user_input": "SecureRandom.hex(16)", - "confidence": "Medium", - "note": "" - }, { "warning_type": "Cross-Site Scripting", "warning_code": 4, @@ -269,6 +269,6 @@ "note": "" } ], - "updated": "2017-10-05 20:06:40 +0200", + "updated": "2017-10-06 03:27:46 +0200", "brakeman_version": "4.0.1" } diff --git a/lib/mastodon/timestamp_ids.rb b/lib/mastodon/timestamp_ids.rb index d49b5c1b5..3b048a50c 100644 --- a/lib/mastodon/timestamp_ids.rb +++ b/lib/mastodon/timestamp_ids.rb @@ -1,120 +1,111 @@ # frozen_string_literal: true -module Mastodon - module TimestampIds - def self.define_timestamp_id - conn = ActiveRecord::Base.connection - - # Make sure we don't already have a `timestamp_id` function. - unless conn.execute(<<~SQL).values.first.first - SELECT EXISTS( - SELECT * FROM pg_proc WHERE proname = 'timestamp_id' - ); +module Mastodon::TimestampIds + DEFAULT_REGEX = /timestamp_id\('(?\w+)'/ + + class << self + # Our ID will be composed of the following: + # 6 bytes (48 bits) of millisecond-level timestamp + # 2 bytes (16 bits) of sequence data + # + # The 'sequence data' is intended to be unique within a + # given millisecond, yet obscure the 'serial number' of + # this row. + # + # To do this, we hash the following data: + # * Table name (if provided, skipped if not) + # * Secret salt (should not be guessable) + # * Timestamp (again, millisecond-level granularity) + # + # We then take the first two bytes of that value, and add + # the lowest two bytes of the table ID sequence number + # (`table_name`_id_seq). This means that even if we insert + # two rows at the same millisecond, they will have + # distinct 'sequence data' portions. + # + # If this happens, and an attacker can see both such IDs, + # they can determine which of the two entries was inserted + # first, but not the total number of entries in the table + # (even mod 2**16). + # + # The table name is included in the hash to ensure that + # different tables derive separate sequence bases so rows + # inserted in the same millisecond in different tables do + # not reveal the table ID sequence number for one another. + # + # The secret salt is included in the hash to ensure that + # external users cannot derive the sequence base given the + # timestamp and table name, which would allow them to + # compute the table ID sequence number. + def define_timestamp_id + return if already_defined? + + connection.execute(<<~SQL) + CREATE OR REPLACE FUNCTION timestamp_id(table_name text) + RETURNS bigint AS + $$ + DECLARE + time_part bigint; + sequence_base bigint; + tail bigint; + BEGIN + time_part := ( + -- Get the time in milliseconds + ((date_part('epoch', now()) * 1000))::bigint + -- And shift it over two bytes + << 16); + + sequence_base := ( + 'x' || + -- Take the first two bytes (four hex characters) + substr( + -- Of the MD5 hash of the data we documented + md5(table_name || + '#{SecureRandom.hex(16)}' || + time_part::text + ), + 1, 4 + ) + -- And turn it into a bigint + )::bit(16)::bigint; + + -- Finally, add our sequence number to our base, and chop + -- it to the last two bytes + tail := ( + (sequence_base + nextval(table_name || '_id_seq')) + & 65535); + + -- Return the time part and the sequence part. OR appears + -- faster here than addition, but they're equivalent: + -- time_part has no trailing two bytes, and tail is only + -- the last two bytes. + RETURN time_part | tail; + END + $$ LANGUAGE plpgsql VOLATILE; SQL - # The function doesn't exist, so we'll define it. - conn.execute(<<~SQL) - CREATE OR REPLACE FUNCTION timestamp_id(table_name text) - RETURNS bigint AS - $$ - DECLARE - time_part bigint; - sequence_base bigint; - tail bigint; - BEGIN - -- Our ID will be composed of the following: - -- 6 bytes (48 bits) of millisecond-level timestamp - -- 2 bytes (16 bits) of sequence data - - -- The 'sequence data' is intended to be unique within a - -- given millisecond, yet obscure the 'serial number' of - -- this row. - - -- To do this, we hash the following data: - -- * Table name (if provided, skipped if not) - -- * Secret salt (should not be guessable) - -- * Timestamp (again, millisecond-level granularity) - - -- We then take the first two bytes of that value, and add - -- the lowest two bytes of the table ID sequence number - -- (`table_name`_id_seq). This means that even if we insert - -- two rows at the same millisecond, they will have - -- distinct 'sequence data' portions. - - -- If this happens, and an attacker can see both such IDs, - -- they can determine which of the two entries was inserted - -- first, but not the total number of entries in the table - -- (even mod 2**16). - - -- The table name is included in the hash to ensure that - -- different tables derive separate sequence bases so rows - -- inserted in the same millisecond in different tables do - -- not reveal the table ID sequence number for one another. - - -- The secret salt is included in the hash to ensure that - -- external users cannot derive the sequence base given the - -- timestamp and table name, which would allow them to - -- compute the table ID sequence number. - - time_part := ( - -- Get the time in milliseconds - ((date_part('epoch', now()) * 1000))::bigint - -- And shift it over two bytes - << 16); - - sequence_base := ( - 'x' || - -- Take the first two bytes (four hex characters) - substr( - -- Of the MD5 hash of the data we documented - md5(table_name || - '#{SecureRandom.hex(16)}' || - time_part::text - ), - 1, 4 - ) - -- And turn it into a bigint - )::bit(16)::bigint; - - -- Finally, add our sequence number to our base, and chop - -- it to the last two bytes - tail := ( - (sequence_base + nextval(table_name || '_id_seq')) - & 65535); - - -- Return the time part and the sequence part. OR appears - -- faster here than addition, but they're equivalent: - -- time_part has no trailing two bytes, and tail is only - -- the last two bytes. - RETURN time_part | tail; - END - $$ LANGUAGE plpgsql VOLATILE; - SQL - end end - def self.ensure_id_sequences_exist - conn = ActiveRecord::Base.connection - + def ensure_id_sequences_exist # Find tables using timestamp IDs. - default_regex = /timestamp_id\('(?\w+)'/ - conn.tables.each do |table| + connection.tables.each do |table| # We're only concerned with "id" columns. - next unless (id_col = conn.columns(table).find { |col| col.name == 'id' }) + next unless (id_col = connection.columns(table).find { |col| col.name == 'id' }) # And only those that are using timestamp_id. - next unless (data = default_regex.match(id_col.default_function)) + next unless (data = DEFAULT_REGEX.match(id_col.default_function)) seq_name = data[:seq_prefix] + '_id_seq' + # If we were on Postgres 9.5+, we could do CREATE SEQUENCE IF # NOT EXISTS, but we can't depend on that. Instead, catch the # possible exception and ignore it. # Note that seq_name isn't a column name, but it's a # relation, like a column, and follows the same quoting rules # in Postgres. - conn.execute(<<~SQL) + connection.execute(<<~SQL) DO $$ BEGIN - CREATE SEQUENCE #{conn.quote_column_name(seq_name)}; + CREATE SEQUENCE #{connection.quote_column_name(seq_name)}; EXCEPTION WHEN duplicate_table THEN -- Do nothing, we have the sequence already. END @@ -122,5 +113,19 @@ module Mastodon SQL end end + + private + + def already_defined? + connection.execute(<<~SQL).values.first.first + SELECT EXISTS( + SELECT * FROM pg_proc WHERE proname = 'timestamp_id' + ); + SQL + end + + def connection + ActiveRecord::Base.connection + end end end diff --git a/lib/tasks/db.rake b/lib/tasks/db.rake index 66468d999..6af6bb6fb 100644 --- a/lib/tasks/db.rake +++ b/lib/tasks/db.rake @@ -20,10 +20,10 @@ def each_schema_load_environment if Rails.env == 'development' test_conf = ActiveRecord::Base.configurations['test'] + if test_conf['database']&.present? ActiveRecord::Base.establish_connection(:test) yield - ActiveRecord::Base.establish_connection(Rails.env.to_sym) end end -- cgit From fd7f0732fe26554c51218c4f67955e8050590d2c Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Thu, 5 Oct 2017 18:42:34 -0700 Subject: Compress and combine emoji data (#5229) --- app/javascript/mastodon/actions/compose.js | 2 +- .../mastodon/components/autosuggest_emoji.js | 4 +- app/javascript/mastodon/emoji.js | 71 ---------- app/javascript/mastodon/emoji_data_compressed.js | 22 --- app/javascript/mastodon/emoji_data_light.js | 16 --- app/javascript/mastodon/emoji_index_light.js | 154 --------------------- app/javascript/mastodon/emoji_map.json | 1 - app/javascript/mastodon/emoji_utils.js | 137 ------------------ app/javascript/mastodon/emojione_light.js | 38 ----- .../compose/components/emoji_picker_dropdown.js | 2 +- app/javascript/mastodon/features/emoji/emoji.js | 72 ++++++++++ .../mastodon/features/emoji/emoji_compressed.js | 90 ++++++++++++ .../mastodon/features/emoji/emoji_map.json | 1 + .../features/emoji/emoji_mart_data_light.js | 41 ++++++ .../features/emoji/emoji_mart_search_light.js | 154 +++++++++++++++++++++ .../features/emoji/emoji_unicode_mapping_light.js | 35 +++++ .../mastodon/features/emoji/emoji_utils.js | 137 ++++++++++++++++++ .../mastodon/features/emoji/unicode_to_filename.js | 26 ++++ .../features/emoji/unicode_to_unified_name.js | 17 +++ app/javascript/mastodon/reducers/accounts.js | 2 +- app/javascript/mastodon/reducers/custom_emojis.js | 4 +- app/javascript/mastodon/reducers/statuses.js | 2 +- app/javascript/packs/public.js | 2 +- lib/tasks/emojis.rake | 2 +- spec/javascript/components/emoji_index.test.js | 20 ++- spec/javascript/components/emojify.test.js | 11 +- 26 files changed, 612 insertions(+), 451 deletions(-) delete mode 100644 app/javascript/mastodon/emoji.js delete mode 100644 app/javascript/mastodon/emoji_data_compressed.js delete mode 100644 app/javascript/mastodon/emoji_data_light.js delete mode 100644 app/javascript/mastodon/emoji_index_light.js delete mode 100644 app/javascript/mastodon/emoji_map.json delete mode 100644 app/javascript/mastodon/emoji_utils.js delete mode 100644 app/javascript/mastodon/emojione_light.js create mode 100644 app/javascript/mastodon/features/emoji/emoji.js create mode 100644 app/javascript/mastodon/features/emoji/emoji_compressed.js create mode 100644 app/javascript/mastodon/features/emoji/emoji_map.json create mode 100644 app/javascript/mastodon/features/emoji/emoji_mart_data_light.js create mode 100644 app/javascript/mastodon/features/emoji/emoji_mart_search_light.js create mode 100644 app/javascript/mastodon/features/emoji/emoji_unicode_mapping_light.js create mode 100644 app/javascript/mastodon/features/emoji/emoji_utils.js create mode 100644 app/javascript/mastodon/features/emoji/unicode_to_filename.js create mode 100644 app/javascript/mastodon/features/emoji/unicode_to_unified_name.js (limited to 'lib') diff --git a/app/javascript/mastodon/actions/compose.js b/app/javascript/mastodon/actions/compose.js index ed4837ebd..560c00720 100644 --- a/app/javascript/mastodon/actions/compose.js +++ b/app/javascript/mastodon/actions/compose.js @@ -1,6 +1,6 @@ import api from '../api'; import { throttle } from 'lodash'; -import { search as emojiSearch } from '../emoji_index_light'; +import { search as emojiSearch } from '../features/emoji/emoji_mart_search_light'; import { updateTimeline, diff --git a/app/javascript/mastodon/components/autosuggest_emoji.js b/app/javascript/mastodon/components/autosuggest_emoji.js index 31dc1dbb1..ce4383a60 100644 --- a/app/javascript/mastodon/components/autosuggest_emoji.js +++ b/app/javascript/mastodon/components/autosuggest_emoji.js @@ -1,6 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { unicodeMapping } from '../emojione_light'; +import unicodeMapping from '../features/emoji/emoji_unicode_mapping_light'; const assetHost = process.env.CDN_HOST || ''; @@ -23,7 +23,7 @@ export default class AutosuggestEmoji extends React.PureComponent { return null; } - url = `${assetHost}/emoji/${mapping[0]}.svg`; + url = `${assetHost}/emoji/${mapping.filename}.svg`; } return ( diff --git a/app/javascript/mastodon/emoji.js b/app/javascript/mastodon/emoji.js deleted file mode 100644 index cf0077958..000000000 --- a/app/javascript/mastodon/emoji.js +++ /dev/null @@ -1,71 +0,0 @@ -import { unicodeMapping } from './emojione_light'; -import Trie from 'substring-trie'; - -const trie = new Trie(Object.keys(unicodeMapping)); - -const assetHost = process.env.CDN_HOST || ''; - -const emojify = (str, customEmojis = {}) => { - let rtn = ''; - for (;;) { - let match, i = 0, tag; - while (i < str.length && (tag = '<&:'.indexOf(str[i])) === -1 && !(match = trie.search(str.slice(i)))) { - i += str.codePointAt(i) < 65536 ? 1 : 2; - } - let rend, replacement = ''; - if (i === str.length) { - break; - } else if (str[i] === ':') { - if (!(() => { - rend = str.indexOf(':', i + 1) + 1; - if (!rend) return false; // no pair of ':' - const lt = str.indexOf('<', i + 1); - if (!(lt === -1 || lt >= rend)) return false; // tag appeared before closing ':' - const shortname = str.slice(i, rend); - // now got a replacee as ':shortname:' - // if you want additional emoji handler, add statements below which set replacement and return true. - if (shortname in customEmojis) { - replacement = `${shortname}`; - return true; - } - return false; - })()) rend = ++i; - } else if (tag >= 0) { // <, & - rend = str.indexOf('>;'[tag], i + 1) + 1; - if (!rend) break; - i = rend; - } else { // matched to unicode emoji - const [filename, shortCode] = unicodeMapping[match]; - replacement = `${match}`; - rend = i + match.length; - } - rtn += str.slice(0, i) + replacement; - str = str.slice(rend); - } - return rtn + str; -}; - -export default emojify; - -export const buildCustomEmojis = customEmojis => { - const emojis = []; - - customEmojis.forEach(emoji => { - const shortcode = emoji.get('shortcode'); - const url = emoji.get('static_url'); - const name = shortcode.replace(':', ''); - - emojis.push({ - id: name, - name, - short_names: [name], - text: '', - emoticons: [], - keywords: [name], - imageUrl: url, - custom: true, - }); - }); - - return emojis; -}; diff --git a/app/javascript/mastodon/emoji_data_compressed.js b/app/javascript/mastodon/emoji_data_compressed.js deleted file mode 100644 index f69a3e46a..000000000 --- a/app/javascript/mastodon/emoji_data_compressed.js +++ /dev/null @@ -1,22 +0,0 @@ -// @preval -const data = require('emoji-mart/dist/data').default; -const pick = require('lodash/pick'); -const values = require('lodash/values'); - -const condensedEmojis = Object.keys(data.emojis).map(key => { - if (!data.emojis[key].short_names[0] === key) { - throw new Error('The condenser expects the first short_code to be the ' + - 'key. It may need to be rewritten if the emoji change such that this ' + - 'is no longer the case.'); - } - return values(pick(data.emojis[key], ['short_names', 'unified', 'search'])); -}); - -// JSON.parse/stringify is to emulate what @preval is doing and avoid any -// inconsistent behavior in dev mode -module.exports = JSON.parse(JSON.stringify({ - emojis: condensedEmojis, - skins: data.skins, - categories: data.categories, - short_names: data.short_names, -})); diff --git a/app/javascript/mastodon/emoji_data_light.js b/app/javascript/mastodon/emoji_data_light.js deleted file mode 100644 index f91ee592e..000000000 --- a/app/javascript/mastodon/emoji_data_light.js +++ /dev/null @@ -1,16 +0,0 @@ -const data = require('./emoji_data_compressed'); - -// decompress -const emojis = {}; -data.emojis.forEach(compressedEmoji => { - const [ short_names, unified, search ] = compressedEmoji; - emojis[short_names[0]] = { - short_names, - unified, - search, - }; -}); - -data.emojis = emojis; - -module.exports = data; diff --git a/app/javascript/mastodon/emoji_index_light.js b/app/javascript/mastodon/emoji_index_light.js deleted file mode 100644 index 0719eda5e..000000000 --- a/app/javascript/mastodon/emoji_index_light.js +++ /dev/null @@ -1,154 +0,0 @@ -// This code is largely borrowed from: -// https://github.com/missive/emoji-mart/blob/bbd4fbe/src/utils/emoji-index.js - -import data from './emoji_data_light'; -import { getData, getSanitizedData, intersect } from './emoji_utils'; - -let index = {}; -let emojisList = {}; -let emoticonsList = {}; -let previousInclude = []; -let previousExclude = []; - -for (let emoji in data.emojis) { - let emojiData = data.emojis[emoji], - { short_names, emoticons } = emojiData, - id = short_names[0]; - - for (let emoticon of (emoticons || [])) { - if (!emoticonsList[emoticon]) { - emoticonsList[emoticon] = id; - } - } - - emojisList[id] = getSanitizedData(id); -} - -function search(value, { emojisToShowFilter, maxResults, include, exclude, custom = [] } = {}) { - maxResults = maxResults || 75; - include = include || []; - exclude = exclude || []; - - if (custom.length) { - for (const emoji of custom) { - data.emojis[emoji.id] = getData(emoji); - emojisList[emoji.id] = getSanitizedData(emoji); - } - - data.categories.push({ - name: 'Custom', - emojis: custom.map(emoji => emoji.id), - }); - } - - let results = null; - let pool = data.emojis; - - if (value.length) { - if (value === '-' || value === '-1') { - return [emojisList['-1']]; - } - - let values = value.toLowerCase().split(/[\s|,|\-|_]+/); - - if (values.length > 2) { - values = [values[0], values[1]]; - } - - if (include.length || exclude.length) { - pool = {}; - - if (previousInclude !== include.sort().join(',') || previousExclude !== exclude.sort().join(',')) { - previousInclude = include.sort().join(','); - previousExclude = exclude.sort().join(','); - index = {}; - } - - for (let category of data.categories) { - let isIncluded = include && include.length ? include.indexOf(category.name.toLowerCase()) > -1 : true; - let isExcluded = exclude && exclude.length ? exclude.indexOf(category.name.toLowerCase()) > -1 : false; - if (!isIncluded || isExcluded) { - continue; - } - - for (let emojiId of category.emojis) { - pool[emojiId] = data.emojis[emojiId]; - } - } - } else if (previousInclude.length || previousExclude.length) { - index = {}; - } - - let allResults = values.map((value) => { - let aPool = pool; - let aIndex = index; - let length = 0; - - for (let char of value.split('')) { - length++; - - aIndex[char] = aIndex[char] || {}; - aIndex = aIndex[char]; - - if (!aIndex.results) { - let scores = {}; - - aIndex.results = []; - aIndex.pool = {}; - - for (let id in aPool) { - let emoji = aPool[id], - { search } = emoji, - sub = value.substr(0, length), - subIndex = search.indexOf(sub); - - if (subIndex !== -1) { - let score = subIndex + 1; - if (sub === id) { - score = 0; - } - - aIndex.results.push(emojisList[id]); - aIndex.pool[id] = emoji; - - scores[id] = score; - } - } - - aIndex.results.sort((a, b) => { - let aScore = scores[a.id], - bScore = scores[b.id]; - - return aScore - bScore; - }); - } - - aPool = aIndex.pool; - } - - return aIndex.results; - }).filter(a => a); - - if (allResults.length > 1) { - results = intersect(...allResults); - } else if (allResults.length) { - results = allResults[0]; - } else { - results = []; - } - } - - if (results) { - if (emojisToShowFilter) { - results = results.filter((result) => emojisToShowFilter(data.emojis[result.id].unified)); - } - - if (results && results.length > maxResults) { - results = results.slice(0, maxResults); - } - } - - return results; -} - -export { search }; diff --git a/app/javascript/mastodon/emoji_map.json b/app/javascript/mastodon/emoji_map.json deleted file mode 100644 index 13753ba84..000000000 --- a/app/javascript/mastodon/emoji_map.json +++ /dev/null @@ -1 +0,0 @@ -{"๐Ÿ˜€":"1f600","๐Ÿ˜":"1f601","๐Ÿ˜‚":"1f602","๐Ÿคฃ":"1f923","๐Ÿ˜ƒ":"1f603","๐Ÿ˜„":"1f604","๐Ÿ˜…":"1f605","๐Ÿ˜†":"1f606","๐Ÿ˜‰":"1f609","๐Ÿ˜Š":"1f60a","๐Ÿ˜‹":"1f60b","๐Ÿ˜Ž":"1f60e","๐Ÿ˜":"1f60d","๐Ÿ˜˜":"1f618","๐Ÿ˜—":"1f617","๐Ÿ˜™":"1f619","๐Ÿ˜š":"1f61a","โ˜บ":"263a","๐Ÿ™‚":"1f642","๐Ÿค—":"1f917","๐Ÿคฉ":"1f929","๐Ÿค”":"1f914","๐Ÿคจ":"1f928","๐Ÿ˜":"1f610","๐Ÿ˜‘":"1f611","๐Ÿ˜ถ":"1f636","๐Ÿ™„":"1f644","๐Ÿ˜":"1f60f","๐Ÿ˜ฃ":"1f623","๐Ÿ˜ฅ":"1f625","๐Ÿ˜ฎ":"1f62e","๐Ÿค":"1f910","๐Ÿ˜ฏ":"1f62f","๐Ÿ˜ช":"1f62a","๐Ÿ˜ซ":"1f62b","๐Ÿ˜ด":"1f634","๐Ÿ˜Œ":"1f60c","๐Ÿ˜›":"1f61b","๐Ÿ˜œ":"1f61c","๐Ÿ˜":"1f61d","๐Ÿคค":"1f924","๐Ÿ˜’":"1f612","๐Ÿ˜“":"1f613","๐Ÿ˜”":"1f614","๐Ÿ˜•":"1f615","๐Ÿ™ƒ":"1f643","๐Ÿค‘":"1f911","๐Ÿ˜ฒ":"1f632","โ˜น":"2639","๐Ÿ™":"1f641","๐Ÿ˜–":"1f616","๐Ÿ˜ž":"1f61e","๐Ÿ˜Ÿ":"1f61f","๐Ÿ˜ค":"1f624","๐Ÿ˜ข":"1f622","๐Ÿ˜ญ":"1f62d","๐Ÿ˜ฆ":"1f626","๐Ÿ˜ง":"1f627","๐Ÿ˜จ":"1f628","๐Ÿ˜ฉ":"1f629","๐Ÿคฏ":"1f92f","๐Ÿ˜ฌ":"1f62c","๐Ÿ˜ฐ":"1f630","๐Ÿ˜ฑ":"1f631","๐Ÿ˜ณ":"1f633","๐Ÿคช":"1f92a","๐Ÿ˜ต":"1f635","๐Ÿ˜ก":"1f621","๐Ÿ˜ ":"1f620","๐Ÿคฌ":"1f92c","๐Ÿ˜ท":"1f637","๐Ÿค’":"1f912","๐Ÿค•":"1f915","๐Ÿคข":"1f922","๐Ÿคฎ":"1f92e","๐Ÿคง":"1f927","๐Ÿ˜‡":"1f607","๐Ÿค ":"1f920","๐Ÿคก":"1f921","๐Ÿคฅ":"1f925","๐Ÿคซ":"1f92b","๐Ÿคญ":"1f92d","๐Ÿง":"1f9d0","๐Ÿค“":"1f913","๐Ÿ˜ˆ":"1f608","๐Ÿ‘ฟ":"1f47f","๐Ÿ‘น":"1f479","๐Ÿ‘บ":"1f47a","๐Ÿ’€":"1f480","โ˜ ":"2620","๐Ÿ‘ป":"1f47b","๐Ÿ‘ฝ":"1f47d","๐Ÿ‘พ":"1f47e","๐Ÿค–":"1f916","๐Ÿ’ฉ":"1f4a9","๐Ÿ˜บ":"1f63a","๐Ÿ˜ธ":"1f638","๐Ÿ˜น":"1f639","๐Ÿ˜ป":"1f63b","๐Ÿ˜ผ":"1f63c","๐Ÿ˜ฝ":"1f63d","๐Ÿ™€":"1f640","๐Ÿ˜ฟ":"1f63f","๐Ÿ˜พ":"1f63e","๐Ÿ™ˆ":"1f648","๐Ÿ™‰":"1f649","๐Ÿ™Š":"1f64a","๐Ÿ‘ถ":"1f476","๐Ÿง’":"1f9d2","๐Ÿ‘ฆ":"1f466","๐Ÿ‘ง":"1f467","๐Ÿง‘":"1f9d1","๐Ÿ‘จ":"1f468","๐Ÿ‘ฉ":"1f469","๐Ÿง“":"1f9d3","๐Ÿ‘ด":"1f474","๐Ÿ‘ต":"1f475","๐Ÿ‘ฎ":"1f46e","๐Ÿ•ต":"1f575","๐Ÿ’‚":"1f482","๐Ÿ‘ท":"1f477","๐Ÿคด":"1f934","๐Ÿ‘ธ":"1f478","๐Ÿ‘ณ":"1f473","๐Ÿ‘ฒ":"1f472","๐Ÿง•":"1f9d5","๐Ÿง”":"1f9d4","๐Ÿ‘ฑ":"1f471","๐Ÿคต":"1f935","๐Ÿ‘ฐ":"1f470","๐Ÿคฐ":"1f930","๐Ÿคฑ":"1f931","๐Ÿ‘ผ":"1f47c","๐ŸŽ…":"1f385","๐Ÿคถ":"1f936","๐Ÿง™":"1f9d9","๐Ÿงš":"1f9da","๐Ÿง›":"1f9db","๐Ÿงœ":"1f9dc","๐Ÿง":"1f9dd","๐Ÿงž":"1f9de","๐ŸงŸ":"1f9df","๐Ÿ™":"1f64d","๐Ÿ™Ž":"1f64e","๐Ÿ™…":"1f645","๐Ÿ™†":"1f646","๐Ÿ’":"1f481","๐Ÿ™‹":"1f64b","๐Ÿ™‡":"1f647","๐Ÿคฆ":"1f926","๐Ÿคท":"1f937","๐Ÿ’†":"1f486","๐Ÿ’‡":"1f487","๐Ÿšถ":"1f6b6","๐Ÿƒ":"1f3c3","๐Ÿ’ƒ":"1f483","๐Ÿ•บ":"1f57a","๐Ÿ‘ฏ":"1f46f","๐Ÿง–":"1f9d6","๐Ÿง—":"1f9d7","๐Ÿง˜":"1f9d8","๐Ÿ›€":"1f6c0","๐Ÿ›Œ":"1f6cc","๐Ÿ•ด":"1f574","๐Ÿ—ฃ":"1f5e3","๐Ÿ‘ค":"1f464","๐Ÿ‘ฅ":"1f465","๐Ÿคบ":"1f93a","๐Ÿ‡":"1f3c7","โ›ท":"26f7","๐Ÿ‚":"1f3c2","๐ŸŒ":"1f3cc","๐Ÿ„":"1f3c4","๐Ÿšฃ":"1f6a3","๐ŸŠ":"1f3ca","โ›น":"26f9","๐Ÿ‹":"1f3cb","๐Ÿšด":"1f6b4","๐Ÿšต":"1f6b5","๐ŸŽ":"1f3ce","๐Ÿ":"1f3cd","๐Ÿคธ":"1f938","๐Ÿคผ":"1f93c","๐Ÿคฝ":"1f93d","๐Ÿคพ":"1f93e","๐Ÿคน":"1f939","๐Ÿ‘ซ":"1f46b","๐Ÿ‘ฌ":"1f46c","๐Ÿ‘ญ":"1f46d","๐Ÿ’":"1f48f","๐Ÿ’‘":"1f491","๐Ÿ‘ช":"1f46a","๐Ÿคณ":"1f933","๐Ÿ’ช":"1f4aa","๐Ÿ‘ˆ":"1f448","๐Ÿ‘‰":"1f449","โ˜":"261d","๐Ÿ‘†":"1f446","๐Ÿ–•":"1f595","๐Ÿ‘‡":"1f447","โœŒ":"270c","๐Ÿคž":"1f91e","๐Ÿ––":"1f596","๐Ÿค˜":"1f918","๐Ÿค™":"1f919","๐Ÿ–":"1f590","โœ‹":"270b","๐Ÿ‘Œ":"1f44c","๐Ÿ‘":"1f44d","๐Ÿ‘Ž":"1f44e","โœŠ":"270a","๐Ÿ‘Š":"1f44a","๐Ÿค›":"1f91b","๐Ÿคœ":"1f91c","๐Ÿคš":"1f91a","๐Ÿ‘‹":"1f44b","๐ŸคŸ":"1f91f","โœ":"270d","๐Ÿ‘":"1f44f","๐Ÿ‘":"1f450","๐Ÿ™Œ":"1f64c","๐Ÿคฒ":"1f932","๐Ÿ™":"1f64f","๐Ÿค":"1f91d","๐Ÿ’…":"1f485","๐Ÿ‘‚":"1f442","๐Ÿ‘ƒ":"1f443","๐Ÿ‘ฃ":"1f463","๐Ÿ‘€":"1f440","๐Ÿ‘":"1f441","๐Ÿง ":"1f9e0","๐Ÿ‘…":"1f445","๐Ÿ‘„":"1f444","๐Ÿ’‹":"1f48b","๐Ÿ’˜":"1f498","โค":"2764","๐Ÿ’“":"1f493","๐Ÿ’”":"1f494","๐Ÿ’•":"1f495","๐Ÿ’–":"1f496","๐Ÿ’—":"1f497","๐Ÿ’™":"1f499","๐Ÿ’š":"1f49a","๐Ÿ’›":"1f49b","๐Ÿงก":"1f9e1","๐Ÿ’œ":"1f49c","๐Ÿ–ค":"1f5a4","๐Ÿ’":"1f49d","๐Ÿ’ž":"1f49e","๐Ÿ’Ÿ":"1f49f","โฃ":"2763","๐Ÿ’Œ":"1f48c","๐Ÿ’ค":"1f4a4","๐Ÿ’ข":"1f4a2","๐Ÿ’ฃ":"1f4a3","๐Ÿ’ฅ":"1f4a5","๐Ÿ’ฆ":"1f4a6","๐Ÿ’จ":"1f4a8","๐Ÿ’ซ":"1f4ab","๐Ÿ’ฌ":"1f4ac","๐Ÿ—จ":"1f5e8","๐Ÿ—ฏ":"1f5ef","๐Ÿ’ญ":"1f4ad","๐Ÿ•ณ":"1f573","๐Ÿ‘“":"1f453","๐Ÿ•ถ":"1f576","๐Ÿ‘”":"1f454","๐Ÿ‘•":"1f455","๐Ÿ‘–":"1f456","๐Ÿงฃ":"1f9e3","๐Ÿงค":"1f9e4","๐Ÿงฅ":"1f9e5","๐Ÿงฆ":"1f9e6","๐Ÿ‘—":"1f457","๐Ÿ‘˜":"1f458","๐Ÿ‘™":"1f459","๐Ÿ‘š":"1f45a","๐Ÿ‘›":"1f45b","๐Ÿ‘œ":"1f45c","๐Ÿ‘":"1f45d","๐Ÿ›":"1f6cd","๐ŸŽ’":"1f392","๐Ÿ‘ž":"1f45e","๐Ÿ‘Ÿ":"1f45f","๐Ÿ‘ ":"1f460","๐Ÿ‘ก":"1f461","๐Ÿ‘ข":"1f462","๐Ÿ‘‘":"1f451","๐Ÿ‘’":"1f452","๐ŸŽฉ":"1f3a9","๐ŸŽ“":"1f393","๐Ÿงข":"1f9e2","โ›‘":"26d1","๐Ÿ“ฟ":"1f4ff","๐Ÿ’„":"1f484","๐Ÿ’":"1f48d","๐Ÿ’Ž":"1f48e","๐Ÿต":"1f435","๐Ÿ’":"1f412","๐Ÿฆ":"1f98d","๐Ÿถ":"1f436","๐Ÿ•":"1f415","๐Ÿฉ":"1f429","๐Ÿบ":"1f43a","๐ŸฆŠ":"1f98a","๐Ÿฑ":"1f431","๐Ÿˆ":"1f408","๐Ÿฆ":"1f981","๐Ÿฏ":"1f42f","๐Ÿ…":"1f405","๐Ÿ†":"1f406","๐Ÿด":"1f434","๐ŸŽ":"1f40e","๐Ÿฆ„":"1f984","๐Ÿฆ“":"1f993","๐ŸฆŒ":"1f98c","๐Ÿฎ":"1f42e","๐Ÿ‚":"1f402","๐Ÿƒ":"1f403","๐Ÿ„":"1f404","๐Ÿท":"1f437","๐Ÿ–":"1f416","๐Ÿ—":"1f417","๐Ÿฝ":"1f43d","๐Ÿ":"1f40f","๐Ÿ‘":"1f411","๐Ÿ":"1f410","๐Ÿช":"1f42a","๐Ÿซ":"1f42b","๐Ÿฆ’":"1f992","๐Ÿ˜":"1f418","๐Ÿฆ":"1f98f","๐Ÿญ":"1f42d","๐Ÿ":"1f401","๐Ÿ€":"1f400","๐Ÿน":"1f439","๐Ÿฐ":"1f430","๐Ÿ‡":"1f407","๐Ÿฟ":"1f43f","๐Ÿฆ”":"1f994","๐Ÿฆ‡":"1f987","๐Ÿป":"1f43b","๐Ÿจ":"1f428","๐Ÿผ":"1f43c","๐Ÿพ":"1f43e","๐Ÿฆƒ":"1f983","๐Ÿ”":"1f414","๐Ÿ“":"1f413","๐Ÿฃ":"1f423","๐Ÿค":"1f424","๐Ÿฅ":"1f425","๐Ÿฆ":"1f426","๐Ÿง":"1f427","๐Ÿ•Š":"1f54a","๐Ÿฆ…":"1f985","๐Ÿฆ†":"1f986","๐Ÿฆ‰":"1f989","๐Ÿธ":"1f438","๐ŸŠ":"1f40a","๐Ÿข":"1f422","๐ŸฆŽ":"1f98e","๐Ÿ":"1f40d","๐Ÿฒ":"1f432","๐Ÿ‰":"1f409","๐Ÿฆ•":"1f995","๐Ÿฆ–":"1f996","๐Ÿณ":"1f433","๐Ÿ‹":"1f40b","๐Ÿฌ":"1f42c","๐ŸŸ":"1f41f","๐Ÿ ":"1f420","๐Ÿก":"1f421","๐Ÿฆˆ":"1f988","๐Ÿ™":"1f419","๐Ÿš":"1f41a","๐Ÿฆ€":"1f980","๐Ÿฆ":"1f990","๐Ÿฆ‘":"1f991","๐ŸŒ":"1f40c","๐Ÿฆ‹":"1f98b","๐Ÿ›":"1f41b","๐Ÿœ":"1f41c","๐Ÿ":"1f41d","๐Ÿž":"1f41e","๐Ÿฆ—":"1f997","๐Ÿ•ท":"1f577","๐Ÿ•ธ":"1f578","๐Ÿฆ‚":"1f982","๐Ÿ’":"1f490","๐ŸŒธ":"1f338","๐Ÿ’ฎ":"1f4ae","๐Ÿต":"1f3f5","๐ŸŒน":"1f339","๐Ÿฅ€":"1f940","๐ŸŒบ":"1f33a","๐ŸŒป":"1f33b","๐ŸŒผ":"1f33c","๐ŸŒท":"1f337","๐ŸŒฑ":"1f331","๐ŸŒฒ":"1f332","๐ŸŒณ":"1f333","๐ŸŒด":"1f334","๐ŸŒต":"1f335","๐ŸŒพ":"1f33e","๐ŸŒฟ":"1f33f","โ˜˜":"2618","๐Ÿ€":"1f340","๐Ÿ":"1f341","๐Ÿ‚":"1f342","๐Ÿƒ":"1f343","๐Ÿ‡":"1f347","๐Ÿˆ":"1f348","๐Ÿ‰":"1f349","๐ŸŠ":"1f34a","๐Ÿ‹":"1f34b","๐ŸŒ":"1f34c","๐Ÿ":"1f34d","๐ŸŽ":"1f34e","๐Ÿ":"1f34f","๐Ÿ":"1f350","๐Ÿ‘":"1f351","๐Ÿ’":"1f352","๐Ÿ“":"1f353","๐Ÿฅ":"1f95d","๐Ÿ…":"1f345","๐Ÿฅฅ":"1f965","๐Ÿฅ‘":"1f951","๐Ÿ†":"1f346","๐Ÿฅ”":"1f954","๐Ÿฅ•":"1f955","๐ŸŒฝ":"1f33d","๐ŸŒถ":"1f336","๐Ÿฅ’":"1f952","๐Ÿฅฆ":"1f966","๐Ÿ„":"1f344","๐Ÿฅœ":"1f95c","๐ŸŒฐ":"1f330","๐Ÿž":"1f35e","๐Ÿฅ":"1f950","๐Ÿฅ–":"1f956","๐Ÿฅจ":"1f968","๐Ÿฅž":"1f95e","๐Ÿง€":"1f9c0","๐Ÿ–":"1f356","๐Ÿ—":"1f357","๐Ÿฅฉ":"1f969","๐Ÿฅ“":"1f953","๐Ÿ”":"1f354","๐ŸŸ":"1f35f","๐Ÿ•":"1f355","๐ŸŒญ":"1f32d","๐Ÿฅช":"1f96a","๐ŸŒฎ":"1f32e","๐ŸŒฏ":"1f32f","๐Ÿฅ™":"1f959","๐Ÿฅš":"1f95a","๐Ÿณ":"1f373","๐Ÿฅ˜":"1f958","๐Ÿฒ":"1f372","๐Ÿฅฃ":"1f963","๐Ÿฅ—":"1f957","๐Ÿฟ":"1f37f","๐Ÿฅซ":"1f96b","๐Ÿฑ":"1f371","๐Ÿ˜":"1f358","๐Ÿ™":"1f359","๐Ÿš":"1f35a","๐Ÿ›":"1f35b","๐Ÿœ":"1f35c","๐Ÿ":"1f35d","๐Ÿ ":"1f360","๐Ÿข":"1f362","๐Ÿฃ":"1f363","๐Ÿค":"1f364","๐Ÿฅ":"1f365","๐Ÿก":"1f361","๐ŸฅŸ":"1f95f","๐Ÿฅ ":"1f960","๐Ÿฅก":"1f961","๐Ÿฆ":"1f366","๐Ÿง":"1f367","๐Ÿจ":"1f368","๐Ÿฉ":"1f369","๐Ÿช":"1f36a","๐ŸŽ‚":"1f382","๐Ÿฐ":"1f370","๐Ÿฅง":"1f967","๐Ÿซ":"1f36b","๐Ÿฌ":"1f36c","๐Ÿญ":"1f36d","๐Ÿฎ":"1f36e","๐Ÿฏ":"1f36f","๐Ÿผ":"1f37c","๐Ÿฅ›":"1f95b","โ˜•":"2615","๐Ÿต":"1f375","๐Ÿถ":"1f376","๐Ÿพ":"1f37e","๐Ÿท":"1f377","๐Ÿธ":"1f378","๐Ÿน":"1f379","๐Ÿบ":"1f37a","๐Ÿป":"1f37b","๐Ÿฅ‚":"1f942","๐Ÿฅƒ":"1f943","๐Ÿฅค":"1f964","๐Ÿฅข":"1f962","๐Ÿฝ":"1f37d","๐Ÿด":"1f374","๐Ÿฅ„":"1f944","๐Ÿ”ช":"1f52a","๐Ÿบ":"1f3fa","๐ŸŒ":"1f30d","๐ŸŒŽ":"1f30e","๐ŸŒ":"1f30f","๐ŸŒ":"1f310","๐Ÿ—บ":"1f5fa","๐Ÿ—พ":"1f5fe","๐Ÿ”":"1f3d4","โ›ฐ":"26f0","๐ŸŒ‹":"1f30b","๐Ÿ—ป":"1f5fb","๐Ÿ•":"1f3d5","๐Ÿ–":"1f3d6","๐Ÿœ":"1f3dc","๐Ÿ":"1f3dd","๐Ÿž":"1f3de","๐ŸŸ":"1f3df","๐Ÿ›":"1f3db","๐Ÿ—":"1f3d7","๐Ÿ˜":"1f3d8","๐Ÿ™":"1f3d9","๐Ÿš":"1f3da","๐Ÿ ":"1f3e0","๐Ÿก":"1f3e1","๐Ÿข":"1f3e2","๐Ÿฃ":"1f3e3","๐Ÿค":"1f3e4","๐Ÿฅ":"1f3e5","๐Ÿฆ":"1f3e6","๐Ÿจ":"1f3e8","๐Ÿฉ":"1f3e9","๐Ÿช":"1f3ea","๐Ÿซ":"1f3eb","๐Ÿฌ":"1f3ec","๐Ÿญ":"1f3ed","๐Ÿฏ":"1f3ef","๐Ÿฐ":"1f3f0","๐Ÿ’’":"1f492","๐Ÿ—ผ":"1f5fc","๐Ÿ—ฝ":"1f5fd","โ›ช":"26ea","๐Ÿ•Œ":"1f54c","๐Ÿ•":"1f54d","โ›ฉ":"26e9","๐Ÿ•‹":"1f54b","โ›ฒ":"26f2","โ›บ":"26fa","๐ŸŒ":"1f301","๐ŸŒƒ":"1f303","๐ŸŒ„":"1f304","๐ŸŒ…":"1f305","๐ŸŒ†":"1f306","๐ŸŒ‡":"1f307","๐ŸŒ‰":"1f309","โ™จ":"2668","๐ŸŒŒ":"1f30c","๐ŸŽ ":"1f3a0","๐ŸŽก":"1f3a1","๐ŸŽข":"1f3a2","๐Ÿ’ˆ":"1f488","๐ŸŽช":"1f3aa","๐ŸŽญ":"1f3ad","๐Ÿ–ผ":"1f5bc","๐ŸŽจ":"1f3a8","๐ŸŽฐ":"1f3b0","๐Ÿš‚":"1f682","๐Ÿšƒ":"1f683","๐Ÿš„":"1f684","๐Ÿš…":"1f685","๐Ÿš†":"1f686","๐Ÿš‡":"1f687","๐Ÿšˆ":"1f688","๐Ÿš‰":"1f689","๐ŸšŠ":"1f68a","๐Ÿš":"1f69d","๐Ÿšž":"1f69e","๐Ÿš‹":"1f68b","๐ŸšŒ":"1f68c","๐Ÿš":"1f68d","๐ŸšŽ":"1f68e","๐Ÿš":"1f690","๐Ÿš‘":"1f691","๐Ÿš’":"1f692","๐Ÿš“":"1f693","๐Ÿš”":"1f694","๐Ÿš•":"1f695","๐Ÿš–":"1f696","๐Ÿš—":"1f697","๐Ÿš˜":"1f698","๐Ÿš™":"1f699","๐Ÿšš":"1f69a","๐Ÿš›":"1f69b","๐Ÿšœ":"1f69c","๐Ÿšฒ":"1f6b2","๐Ÿ›ด":"1f6f4","๐Ÿ›ต":"1f6f5","๐Ÿš":"1f68f","๐Ÿ›ฃ":"1f6e3","๐Ÿ›ค":"1f6e4","โ›ฝ":"26fd","๐Ÿšจ":"1f6a8","๐Ÿšฅ":"1f6a5","๐Ÿšฆ":"1f6a6","๐Ÿšง":"1f6a7","๐Ÿ›‘":"1f6d1","โš“":"2693","โ›ต":"26f5","๐Ÿ›ถ":"1f6f6","๐Ÿšค":"1f6a4","๐Ÿ›ณ":"1f6f3","โ›ด":"26f4","๐Ÿ›ฅ":"1f6e5","๐Ÿšข":"1f6a2","โœˆ":"2708","๐Ÿ›ฉ":"1f6e9","๐Ÿ›ซ":"1f6eb","๐Ÿ›ฌ":"1f6ec","๐Ÿ’บ":"1f4ba","๐Ÿš":"1f681","๐ŸšŸ":"1f69f","๐Ÿš ":"1f6a0","๐Ÿšก":"1f6a1","๐Ÿ›ฐ":"1f6f0","๐Ÿš€":"1f680","๐Ÿ›ธ":"1f6f8","๐Ÿ›Ž":"1f6ce","๐Ÿšช":"1f6aa","๐Ÿ›":"1f6cf","๐Ÿ›‹":"1f6cb","๐Ÿšฝ":"1f6bd","๐Ÿšฟ":"1f6bf","๐Ÿ›":"1f6c1","โŒ›":"231b","โณ":"23f3","โŒš":"231a","โฐ":"23f0","โฑ":"23f1","โฒ":"23f2","๐Ÿ•ฐ":"1f570","๐Ÿ•›":"1f55b","๐Ÿ•ง":"1f567","๐Ÿ•":"1f550","๐Ÿ•œ":"1f55c","๐Ÿ•‘":"1f551","๐Ÿ•":"1f55d","๐Ÿ•’":"1f552","๐Ÿ•ž":"1f55e","๐Ÿ•“":"1f553","๐Ÿ•Ÿ":"1f55f","๐Ÿ•”":"1f554","๐Ÿ• ":"1f560","๐Ÿ••":"1f555","๐Ÿ•ก":"1f561","๐Ÿ•–":"1f556","๐Ÿ•ข":"1f562","๐Ÿ•—":"1f557","๐Ÿ•ฃ":"1f563","๐Ÿ•˜":"1f558","๐Ÿ•ค":"1f564","๐Ÿ•™":"1f559","๐Ÿ•ฅ":"1f565","๐Ÿ•š":"1f55a","๐Ÿ•ฆ":"1f566","๐ŸŒ‘":"1f311","๐ŸŒ’":"1f312","๐ŸŒ“":"1f313","๐ŸŒ”":"1f314","๐ŸŒ•":"1f315","๐ŸŒ–":"1f316","๐ŸŒ—":"1f317","๐ŸŒ˜":"1f318","๐ŸŒ™":"1f319","๐ŸŒš":"1f31a","๐ŸŒ›":"1f31b","๐ŸŒœ":"1f31c","๐ŸŒก":"1f321","โ˜€":"2600","๐ŸŒ":"1f31d","๐ŸŒž":"1f31e","โญ":"2b50","๐ŸŒŸ":"1f31f","๐ŸŒ ":"1f320","โ˜":"2601","โ›…":"26c5","โ›ˆ":"26c8","๐ŸŒค":"1f324","๐ŸŒฅ":"1f325","๐ŸŒฆ":"1f326","๐ŸŒง":"1f327","๐ŸŒจ":"1f328","๐ŸŒฉ":"1f329","๐ŸŒช":"1f32a","๐ŸŒซ":"1f32b","๐ŸŒฌ":"1f32c","๐ŸŒ€":"1f300","๐ŸŒˆ":"1f308","๐ŸŒ‚":"1f302","โ˜‚":"2602","โ˜”":"2614","โ›ฑ":"26f1","โšก":"26a1","โ„":"2744","โ˜ƒ":"2603","โ›„":"26c4","โ˜„":"2604","๐Ÿ”ฅ":"1f525","๐Ÿ’ง":"1f4a7","๐ŸŒŠ":"1f30a","๐ŸŽƒ":"1f383","๐ŸŽ„":"1f384","๐ŸŽ†":"1f386","๐ŸŽ‡":"1f387","โœจ":"2728","๐ŸŽˆ":"1f388","๐ŸŽ‰":"1f389","๐ŸŽŠ":"1f38a","๐ŸŽ‹":"1f38b","๐ŸŽ":"1f38d","๐ŸŽŽ":"1f38e","๐ŸŽ":"1f38f","๐ŸŽ":"1f390","๐ŸŽ‘":"1f391","๐ŸŽ€":"1f380","๐ŸŽ":"1f381","๐ŸŽ—":"1f397","๐ŸŽŸ":"1f39f","๐ŸŽซ":"1f3ab","๐ŸŽ–":"1f396","๐Ÿ†":"1f3c6","๐Ÿ…":"1f3c5","๐Ÿฅ‡":"1f947","๐Ÿฅˆ":"1f948","๐Ÿฅ‰":"1f949","โšฝ":"26bd","โšพ":"26be","๐Ÿ€":"1f3c0","๐Ÿ":"1f3d0","๐Ÿˆ":"1f3c8","๐Ÿ‰":"1f3c9","๐ŸŽพ":"1f3be","๐ŸŽฑ":"1f3b1","๐ŸŽณ":"1f3b3","๐Ÿ":"1f3cf","๐Ÿ‘":"1f3d1","๐Ÿ’":"1f3d2","๐Ÿ“":"1f3d3","๐Ÿธ":"1f3f8","๐ŸฅŠ":"1f94a","๐Ÿฅ‹":"1f94b","๐Ÿฅ…":"1f945","๐ŸŽฏ":"1f3af","โ›ณ":"26f3","โ›ธ":"26f8","๐ŸŽฃ":"1f3a3","๐ŸŽฝ":"1f3bd","๐ŸŽฟ":"1f3bf","๐Ÿ›ท":"1f6f7","๐ŸฅŒ":"1f94c","๐ŸŽฎ":"1f3ae","๐Ÿ•น":"1f579","๐ŸŽฒ":"1f3b2","โ™ ":"2660","โ™ฅ":"2665","โ™ฆ":"2666","โ™ฃ":"2663","๐Ÿƒ":"1f0cf","๐Ÿ€„":"1f004","๐ŸŽด":"1f3b4","๐Ÿ”‡":"1f507","๐Ÿ”ˆ":"1f508","๐Ÿ”‰":"1f509","๐Ÿ”Š":"1f50a","๐Ÿ“ข":"1f4e2","๐Ÿ“ฃ":"1f4e3","๐Ÿ“ฏ":"1f4ef","๐Ÿ””":"1f514","๐Ÿ”•":"1f515","๐ŸŽผ":"1f3bc","๐ŸŽต":"1f3b5","๐ŸŽถ":"1f3b6","๐ŸŽ™":"1f399","๐ŸŽš":"1f39a","๐ŸŽ›":"1f39b","๐ŸŽค":"1f3a4","๐ŸŽง":"1f3a7","๐Ÿ“ป":"1f4fb","๐ŸŽท":"1f3b7","๐ŸŽธ":"1f3b8","๐ŸŽน":"1f3b9","๐ŸŽบ":"1f3ba","๐ŸŽป":"1f3bb","๐Ÿฅ":"1f941","๐Ÿ“ฑ":"1f4f1","๐Ÿ“ฒ":"1f4f2","โ˜Ž":"260e","๐Ÿ“ž":"1f4de","๐Ÿ“Ÿ":"1f4df","๐Ÿ“ ":"1f4e0","๐Ÿ”‹":"1f50b","๐Ÿ”Œ":"1f50c","๐Ÿ’ป":"1f4bb","๐Ÿ–ฅ":"1f5a5","๐Ÿ–จ":"1f5a8","โŒจ":"2328","๐Ÿ–ฑ":"1f5b1","๐Ÿ–ฒ":"1f5b2","๐Ÿ’ฝ":"1f4bd","๐Ÿ’พ":"1f4be","๐Ÿ’ฟ":"1f4bf","๐Ÿ“€":"1f4c0","๐ŸŽฅ":"1f3a5","๐ŸŽž":"1f39e","๐Ÿ“ฝ":"1f4fd","๐ŸŽฌ":"1f3ac","๐Ÿ“บ":"1f4fa","๐Ÿ“ท":"1f4f7","๐Ÿ“ธ":"1f4f8","๐Ÿ“น":"1f4f9","๐Ÿ“ผ":"1f4fc","๐Ÿ”":"1f50d","๐Ÿ”Ž":"1f50e","๐Ÿ”ฌ":"1f52c","๐Ÿ”ญ":"1f52d","๐Ÿ“ก":"1f4e1","๐Ÿ•ฏ":"1f56f","๐Ÿ’ก":"1f4a1","๐Ÿ”ฆ":"1f526","๐Ÿฎ":"1f3ee","๐Ÿ“”":"1f4d4","๐Ÿ“•":"1f4d5","๐Ÿ“–":"1f4d6","๐Ÿ“—":"1f4d7","๐Ÿ“˜":"1f4d8","๐Ÿ“™":"1f4d9","๐Ÿ“š":"1f4da","๐Ÿ““":"1f4d3","๐Ÿ“’":"1f4d2","๐Ÿ“ƒ":"1f4c3","๐Ÿ“œ":"1f4dc","๐Ÿ“„":"1f4c4","๐Ÿ“ฐ":"1f4f0","๐Ÿ—ž":"1f5de","๐Ÿ“‘":"1f4d1","๐Ÿ”–":"1f516","๐Ÿท":"1f3f7","๐Ÿ’ฐ":"1f4b0","๐Ÿ’ด":"1f4b4","๐Ÿ’ต":"1f4b5","๐Ÿ’ถ":"1f4b6","๐Ÿ’ท":"1f4b7","๐Ÿ’ธ":"1f4b8","๐Ÿ’ณ":"1f4b3","๐Ÿ’น":"1f4b9","๐Ÿ’ฑ":"1f4b1","๐Ÿ’ฒ":"1f4b2","โœ‰":"2709","๐Ÿ“ง":"1f4e7","๐Ÿ“จ":"1f4e8","๐Ÿ“ฉ":"1f4e9","๐Ÿ“ค":"1f4e4","๐Ÿ“ฅ":"1f4e5","๐Ÿ“ฆ":"1f4e6","๐Ÿ“ซ":"1f4eb","๐Ÿ“ช":"1f4ea","๐Ÿ“ฌ":"1f4ec","๐Ÿ“ญ":"1f4ed","๐Ÿ“ฎ":"1f4ee","๐Ÿ—ณ":"1f5f3","โœ":"270f","โœ’":"2712","๐Ÿ–‹":"1f58b","๐Ÿ–Š":"1f58a","๐Ÿ–Œ":"1f58c","๐Ÿ–":"1f58d","๐Ÿ“":"1f4dd","๐Ÿ’ผ":"1f4bc","๐Ÿ“":"1f4c1","๐Ÿ“‚":"1f4c2","๐Ÿ—‚":"1f5c2","๐Ÿ“…":"1f4c5","๐Ÿ“†":"1f4c6","๐Ÿ—’":"1f5d2","๐Ÿ—“":"1f5d3","๐Ÿ“‡":"1f4c7","๐Ÿ“ˆ":"1f4c8","๐Ÿ“‰":"1f4c9","๐Ÿ“Š":"1f4ca","๐Ÿ“‹":"1f4cb","๐Ÿ“Œ":"1f4cc","๐Ÿ“":"1f4cd","๐Ÿ“Ž":"1f4ce","๐Ÿ–‡":"1f587","๐Ÿ“":"1f4cf","๐Ÿ“":"1f4d0","โœ‚":"2702","๐Ÿ—ƒ":"1f5c3","๐Ÿ—„":"1f5c4","๐Ÿ—‘":"1f5d1","๐Ÿ”’":"1f512","๐Ÿ”“":"1f513","๐Ÿ”":"1f50f","๐Ÿ”":"1f510","๐Ÿ”‘":"1f511","๐Ÿ—":"1f5dd","๐Ÿ”จ":"1f528","โ›":"26cf","โš’":"2692","๐Ÿ› ":"1f6e0","๐Ÿ—ก":"1f5e1","โš”":"2694","๐Ÿ”ซ":"1f52b","๐Ÿน":"1f3f9","๐Ÿ›ก":"1f6e1","๐Ÿ”ง":"1f527","๐Ÿ”ฉ":"1f529","โš™":"2699","๐Ÿ—œ":"1f5dc","โš—":"2697","โš–":"2696","๐Ÿ”—":"1f517","โ›“":"26d3","๐Ÿ’‰":"1f489","๐Ÿ’Š":"1f48a","๐Ÿšฌ":"1f6ac","โšฐ":"26b0","โšฑ":"26b1","๐Ÿ—ฟ":"1f5ff","๐Ÿ›ข":"1f6e2","๐Ÿ”ฎ":"1f52e","๐Ÿ›’":"1f6d2","๐Ÿง":"1f3e7","๐Ÿšฎ":"1f6ae","๐Ÿšฐ":"1f6b0","โ™ฟ":"267f","๐Ÿšน":"1f6b9","๐Ÿšบ":"1f6ba","๐Ÿšป":"1f6bb","๐Ÿšผ":"1f6bc","๐Ÿšพ":"1f6be","๐Ÿ›‚":"1f6c2","๐Ÿ›ƒ":"1f6c3","๐Ÿ›„":"1f6c4","๐Ÿ›…":"1f6c5","โš ":"26a0","๐Ÿšธ":"1f6b8","โ›”":"26d4","๐Ÿšซ":"1f6ab","๐Ÿšณ":"1f6b3","๐Ÿšญ":"1f6ad","๐Ÿšฏ":"1f6af","๐Ÿšฑ":"1f6b1","๐Ÿšท":"1f6b7","๐Ÿ“ต":"1f4f5","๐Ÿ”ž":"1f51e","โ˜ข":"2622","โ˜ฃ":"2623","โฌ†":"2b06","โ†—":"2197","โžก":"27a1","โ†˜":"2198","โฌ‡":"2b07","โ†™":"2199","โฌ…":"2b05","โ†–":"2196","โ†•":"2195","โ†”":"2194","โ†ฉ":"21a9","โ†ช":"21aa","โคด":"2934","โคต":"2935","๐Ÿ”ƒ":"1f503","๐Ÿ”„":"1f504","๐Ÿ”™":"1f519","๐Ÿ”š":"1f51a","๐Ÿ”›":"1f51b","๐Ÿ”œ":"1f51c","๐Ÿ”":"1f51d","๐Ÿ›":"1f6d0","โš›":"269b","๐Ÿ•‰":"1f549","โœก":"2721","โ˜ธ":"2638","โ˜ฏ":"262f","โœ":"271d","โ˜ฆ":"2626","โ˜ช":"262a","โ˜ฎ":"262e","๐Ÿ•Ž":"1f54e","๐Ÿ”ฏ":"1f52f","โ™ˆ":"2648","โ™‰":"2649","โ™Š":"264a","โ™‹":"264b","โ™Œ":"264c","โ™":"264d","โ™Ž":"264e","โ™":"264f","โ™":"2650","โ™‘":"2651","โ™’":"2652","โ™“":"2653","โ›Ž":"26ce","๐Ÿ”€":"1f500","๐Ÿ”":"1f501","๐Ÿ”‚":"1f502","โ–ถ":"25b6","โฉ":"23e9","โญ":"23ed","โฏ":"23ef","โ—€":"25c0","โช":"23ea","โฎ":"23ee","๐Ÿ”ผ":"1f53c","โซ":"23eb","๐Ÿ”ฝ":"1f53d","โฌ":"23ec","โธ":"23f8","โน":"23f9","โบ":"23fa","โ":"23cf","๐ŸŽฆ":"1f3a6","๐Ÿ”…":"1f505","๐Ÿ”†":"1f506","๐Ÿ“ถ":"1f4f6","๐Ÿ“ณ":"1f4f3","๐Ÿ“ด":"1f4f4","โ™€":"2640","โ™‚":"2642","โš•":"2695","โ™ป":"267b","โšœ":"269c","๐Ÿ”ฑ":"1f531","๐Ÿ“›":"1f4db","๐Ÿ”ฐ":"1f530","โญ•":"2b55","โœ…":"2705","โ˜‘":"2611","โœ”":"2714","โœ–":"2716","โŒ":"274c","โŽ":"274e","โž•":"2795","โž–":"2796","โž—":"2797","โžฐ":"27b0","โžฟ":"27bf","ใ€ฝ":"303d","โœณ":"2733","โœด":"2734","โ‡":"2747","โ€ผ":"203c","โ‰":"2049","โ“":"2753","โ”":"2754","โ•":"2755","โ—":"2757","ใ€ฐ":"3030","ยฉ":"a9","ยฎ":"ae","โ„ข":"2122","๐Ÿ”Ÿ":"1f51f","๐Ÿ’ฏ":"1f4af","๐Ÿ” ":"1f520","๐Ÿ”ก":"1f521","๐Ÿ”ข":"1f522","๐Ÿ”ฃ":"1f523","๐Ÿ”ค":"1f524","๐Ÿ…ฐ":"1f170","๐Ÿ†Ž":"1f18e","๐Ÿ…ฑ":"1f171","๐Ÿ†‘":"1f191","๐Ÿ†’":"1f192","๐Ÿ†“":"1f193","โ„น":"2139","๐Ÿ†”":"1f194","โ“‚":"24c2","๐Ÿ†•":"1f195","๐Ÿ†–":"1f196","๐Ÿ…พ":"1f17e","๐Ÿ†—":"1f197","๐Ÿ…ฟ":"1f17f","๐Ÿ†˜":"1f198","๐Ÿ†™":"1f199","๐Ÿ†š":"1f19a","๐Ÿˆ":"1f201","๐Ÿˆ‚":"1f202","๐Ÿˆท":"1f237","๐Ÿˆถ":"1f236","๐Ÿˆฏ":"1f22f","๐Ÿ‰":"1f250","๐Ÿˆน":"1f239","๐Ÿˆš":"1f21a","๐Ÿˆฒ":"1f232","๐Ÿ‰‘":"1f251","๐Ÿˆธ":"1f238","๐Ÿˆด":"1f234","๐Ÿˆณ":"1f233","ใŠ—":"3297","ใŠ™":"3299","๐Ÿˆบ":"1f23a","๐Ÿˆต":"1f235","โ–ช":"25aa","โ–ซ":"25ab","โ—ป":"25fb","โ—ผ":"25fc","โ—ฝ":"25fd","โ—พ":"25fe","โฌ›":"2b1b","โฌœ":"2b1c","๐Ÿ”ถ":"1f536","๐Ÿ”ท":"1f537","๐Ÿ”ธ":"1f538","๐Ÿ”น":"1f539","๐Ÿ”บ":"1f53a","๐Ÿ”ป":"1f53b","๐Ÿ’ ":"1f4a0","๐Ÿ”˜":"1f518","๐Ÿ”ฒ":"1f532","๐Ÿ”ณ":"1f533","โšช":"26aa","โšซ":"26ab","๐Ÿ”ด":"1f534","๐Ÿ”ต":"1f535","๐Ÿ":"1f3c1","๐Ÿšฉ":"1f6a9","๐ŸŽŒ":"1f38c","๐Ÿด":"1f3f4","๐Ÿณ":"1f3f3","โ˜บ๏ธ":"263a","โ˜น๏ธ":"2639","โ˜ ๏ธ":"2620","๐Ÿ‘ถ๐Ÿป":"1f476-1f3fb","๐Ÿ‘ถ๐Ÿผ":"1f476-1f3fc","๐Ÿ‘ถ๐Ÿฝ":"1f476-1f3fd","๐Ÿ‘ถ๐Ÿพ":"1f476-1f3fe","๐Ÿ‘ถ๐Ÿฟ":"1f476-1f3ff","๐Ÿง’๐Ÿป":"1f9d2-1f3fb","๐Ÿง’๐Ÿผ":"1f9d2-1f3fc","๐Ÿง’๐Ÿฝ":"1f9d2-1f3fd","๐Ÿง’๐Ÿพ":"1f9d2-1f3fe","๐Ÿง’๐Ÿฟ":"1f9d2-1f3ff","๐Ÿ‘ฆ๐Ÿป":"1f466-1f3fb","๐Ÿ‘ฆ๐Ÿผ":"1f466-1f3fc","๐Ÿ‘ฆ๐Ÿฝ":"1f466-1f3fd","๐Ÿ‘ฆ๐Ÿพ":"1f466-1f3fe","๐Ÿ‘ฆ๐Ÿฟ":"1f466-1f3ff","๐Ÿ‘ง๐Ÿป":"1f467-1f3fb","๐Ÿ‘ง๐Ÿผ":"1f467-1f3fc","๐Ÿ‘ง๐Ÿฝ":"1f467-1f3fd","๐Ÿ‘ง๐Ÿพ":"1f467-1f3fe","๐Ÿ‘ง๐Ÿฟ":"1f467-1f3ff","๐Ÿง‘๐Ÿป":"1f9d1-1f3fb","๐Ÿง‘๐Ÿผ":"1f9d1-1f3fc","๐Ÿง‘๐Ÿฝ":"1f9d1-1f3fd","๐Ÿง‘๐Ÿพ":"1f9d1-1f3fe","๐Ÿง‘๐Ÿฟ":"1f9d1-1f3ff","๐Ÿ‘จ๐Ÿป":"1f468-1f3fb","๐Ÿ‘จ๐Ÿผ":"1f468-1f3fc","๐Ÿ‘จ๐Ÿฝ":"1f468-1f3fd","๐Ÿ‘จ๐Ÿพ":"1f468-1f3fe","๐Ÿ‘จ๐Ÿฟ":"1f468-1f3ff","๐Ÿ‘ฉ๐Ÿป":"1f469-1f3fb","๐Ÿ‘ฉ๐Ÿผ":"1f469-1f3fc","๐Ÿ‘ฉ๐Ÿฝ":"1f469-1f3fd","๐Ÿ‘ฉ๐Ÿพ":"1f469-1f3fe","๐Ÿ‘ฉ๐Ÿฟ":"1f469-1f3ff","๐Ÿง“๐Ÿป":"1f9d3-1f3fb","๐Ÿง“๐Ÿผ":"1f9d3-1f3fc","๐Ÿง“๐Ÿฝ":"1f9d3-1f3fd","๐Ÿง“๐Ÿพ":"1f9d3-1f3fe","๐Ÿง“๐Ÿฟ":"1f9d3-1f3ff","๐Ÿ‘ด๐Ÿป":"1f474-1f3fb","๐Ÿ‘ด๐Ÿผ":"1f474-1f3fc","๐Ÿ‘ด๐Ÿฝ":"1f474-1f3fd","๐Ÿ‘ด๐Ÿพ":"1f474-1f3fe","๐Ÿ‘ด๐Ÿฟ":"1f474-1f3ff","๐Ÿ‘ต๐Ÿป":"1f475-1f3fb","๐Ÿ‘ต๐Ÿผ":"1f475-1f3fc","๐Ÿ‘ต๐Ÿฝ":"1f475-1f3fd","๐Ÿ‘ต๐Ÿพ":"1f475-1f3fe","๐Ÿ‘ต๐Ÿฟ":"1f475-1f3ff","๐Ÿ‘ฎ๐Ÿป":"1f46e-1f3fb","๐Ÿ‘ฎ๐Ÿผ":"1f46e-1f3fc","๐Ÿ‘ฎ๐Ÿฝ":"1f46e-1f3fd","๐Ÿ‘ฎ๐Ÿพ":"1f46e-1f3fe","๐Ÿ‘ฎ๐Ÿฟ":"1f46e-1f3ff","๐Ÿ•ต๏ธ":"1f575","๐Ÿ•ต๐Ÿป":"1f575-1f3fb","๐Ÿ•ต๐Ÿผ":"1f575-1f3fc","๐Ÿ•ต๐Ÿฝ":"1f575-1f3fd","๐Ÿ•ต๐Ÿพ":"1f575-1f3fe","๐Ÿ•ต๐Ÿฟ":"1f575-1f3ff","๐Ÿ’‚๐Ÿป":"1f482-1f3fb","๐Ÿ’‚๐Ÿผ":"1f482-1f3fc","๐Ÿ’‚๐Ÿฝ":"1f482-1f3fd","๐Ÿ’‚๐Ÿพ":"1f482-1f3fe","๐Ÿ’‚๐Ÿฟ":"1f482-1f3ff","๐Ÿ‘ท๐Ÿป":"1f477-1f3fb","๐Ÿ‘ท๐Ÿผ":"1f477-1f3fc","๐Ÿ‘ท๐Ÿฝ":"1f477-1f3fd","๐Ÿ‘ท๐Ÿพ":"1f477-1f3fe","๐Ÿ‘ท๐Ÿฟ":"1f477-1f3ff","๐Ÿคด๐Ÿป":"1f934-1f3fb","๐Ÿคด๐Ÿผ":"1f934-1f3fc","๐Ÿคด๐Ÿฝ":"1f934-1f3fd","๐Ÿคด๐Ÿพ":"1f934-1f3fe","๐Ÿคด๐Ÿฟ":"1f934-1f3ff","๐Ÿ‘ธ๐Ÿป":"1f478-1f3fb","๐Ÿ‘ธ๐Ÿผ":"1f478-1f3fc","๐Ÿ‘ธ๐Ÿฝ":"1f478-1f3fd","๐Ÿ‘ธ๐Ÿพ":"1f478-1f3fe","๐Ÿ‘ธ๐Ÿฟ":"1f478-1f3ff","๐Ÿ‘ณ๐Ÿป":"1f473-1f3fb","๐Ÿ‘ณ๐Ÿผ":"1f473-1f3fc","๐Ÿ‘ณ๐Ÿฝ":"1f473-1f3fd","๐Ÿ‘ณ๐Ÿพ":"1f473-1f3fe","๐Ÿ‘ณ๐Ÿฟ":"1f473-1f3ff","๐Ÿ‘ฒ๐Ÿป":"1f472-1f3fb","๐Ÿ‘ฒ๐Ÿผ":"1f472-1f3fc","๐Ÿ‘ฒ๐Ÿฝ":"1f472-1f3fd","๐Ÿ‘ฒ๐Ÿพ":"1f472-1f3fe","๐Ÿ‘ฒ๐Ÿฟ":"1f472-1f3ff","๐Ÿง•๐Ÿป":"1f9d5-1f3fb","๐Ÿง•๐Ÿผ":"1f9d5-1f3fc","๐Ÿง•๐Ÿฝ":"1f9d5-1f3fd","๐Ÿง•๐Ÿพ":"1f9d5-1f3fe","๐Ÿง•๐Ÿฟ":"1f9d5-1f3ff","๐Ÿง”๐Ÿป":"1f9d4-1f3fb","๐Ÿง”๐Ÿผ":"1f9d4-1f3fc","๐Ÿง”๐Ÿฝ":"1f9d4-1f3fd","๐Ÿง”๐Ÿพ":"1f9d4-1f3fe","๐Ÿง”๐Ÿฟ":"1f9d4-1f3ff","๐Ÿ‘ฑ๐Ÿป":"1f471-1f3fb","๐Ÿ‘ฑ๐Ÿผ":"1f471-1f3fc","๐Ÿ‘ฑ๐Ÿฝ":"1f471-1f3fd","๐Ÿ‘ฑ๐Ÿพ":"1f471-1f3fe","๐Ÿ‘ฑ๐Ÿฟ":"1f471-1f3ff","๐Ÿคต๐Ÿป":"1f935-1f3fb","๐Ÿคต๐Ÿผ":"1f935-1f3fc","๐Ÿคต๐Ÿฝ":"1f935-1f3fd","๐Ÿคต๐Ÿพ":"1f935-1f3fe","๐Ÿคต๐Ÿฟ":"1f935-1f3ff","๐Ÿ‘ฐ๐Ÿป":"1f470-1f3fb","๐Ÿ‘ฐ๐Ÿผ":"1f470-1f3fc","๐Ÿ‘ฐ๐Ÿฝ":"1f470-1f3fd","๐Ÿ‘ฐ๐Ÿพ":"1f470-1f3fe","๐Ÿ‘ฐ๐Ÿฟ":"1f470-1f3ff","๐Ÿคฐ๐Ÿป":"1f930-1f3fb","๐Ÿคฐ๐Ÿผ":"1f930-1f3fc","๐Ÿคฐ๐Ÿฝ":"1f930-1f3fd","๐Ÿคฐ๐Ÿพ":"1f930-1f3fe","๐Ÿคฐ๐Ÿฟ":"1f930-1f3ff","๐Ÿคฑ๐Ÿป":"1f931-1f3fb","๐Ÿคฑ๐Ÿผ":"1f931-1f3fc","๐Ÿคฑ๐Ÿฝ":"1f931-1f3fd","๐Ÿคฑ๐Ÿพ":"1f931-1f3fe","๐Ÿคฑ๐Ÿฟ":"1f931-1f3ff","๐Ÿ‘ผ๐Ÿป":"1f47c-1f3fb","๐Ÿ‘ผ๐Ÿผ":"1f47c-1f3fc","๐Ÿ‘ผ๐Ÿฝ":"1f47c-1f3fd","๐Ÿ‘ผ๐Ÿพ":"1f47c-1f3fe","๐Ÿ‘ผ๐Ÿฟ":"1f47c-1f3ff","๐ŸŽ…๐Ÿป":"1f385-1f3fb","๐ŸŽ…๐Ÿผ":"1f385-1f3fc","๐ŸŽ…๐Ÿฝ":"1f385-1f3fd","๐ŸŽ…๐Ÿพ":"1f385-1f3fe","๐ŸŽ…๐Ÿฟ":"1f385-1f3ff","๐Ÿคถ๐Ÿป":"1f936-1f3fb","๐Ÿคถ๐Ÿผ":"1f936-1f3fc","๐Ÿคถ๐Ÿฝ":"1f936-1f3fd","๐Ÿคถ๐Ÿพ":"1f936-1f3fe","๐Ÿคถ๐Ÿฟ":"1f936-1f3ff","๐Ÿง™๐Ÿป":"1f9d9-1f3fb","๐Ÿง™๐Ÿผ":"1f9d9-1f3fc","๐Ÿง™๐Ÿฝ":"1f9d9-1f3fd","๐Ÿง™๐Ÿพ":"1f9d9-1f3fe","๐Ÿง™๐Ÿฟ":"1f9d9-1f3ff","๐Ÿงš๐Ÿป":"1f9da-1f3fb","๐Ÿงš๐Ÿผ":"1f9da-1f3fc","๐Ÿงš๐Ÿฝ":"1f9da-1f3fd","๐Ÿงš๐Ÿพ":"1f9da-1f3fe","๐Ÿงš๐Ÿฟ":"1f9da-1f3ff","๐Ÿง›๐Ÿป":"1f9db-1f3fb","๐Ÿง›๐Ÿผ":"1f9db-1f3fc","๐Ÿง›๐Ÿฝ":"1f9db-1f3fd","๐Ÿง›๐Ÿพ":"1f9db-1f3fe","๐Ÿง›๐Ÿฟ":"1f9db-1f3ff","๐Ÿงœ๐Ÿป":"1f9dc-1f3fb","๐Ÿงœ๐Ÿผ":"1f9dc-1f3fc","๐Ÿงœ๐Ÿฝ":"1f9dc-1f3fd","๐Ÿงœ๐Ÿพ":"1f9dc-1f3fe","๐Ÿงœ๐Ÿฟ":"1f9dc-1f3ff","๐Ÿง๐Ÿป":"1f9dd-1f3fb","๐Ÿง๐Ÿผ":"1f9dd-1f3fc","๐Ÿง๐Ÿฝ":"1f9dd-1f3fd","๐Ÿง๐Ÿพ":"1f9dd-1f3fe","๐Ÿง๐Ÿฟ":"1f9dd-1f3ff","๐Ÿ™๐Ÿป":"1f64d-1f3fb","๐Ÿ™๐Ÿผ":"1f64d-1f3fc","๐Ÿ™๐Ÿฝ":"1f64d-1f3fd","๐Ÿ™๐Ÿพ":"1f64d-1f3fe","๐Ÿ™๐Ÿฟ":"1f64d-1f3ff","๐Ÿ™Ž๐Ÿป":"1f64e-1f3fb","๐Ÿ™Ž๐Ÿผ":"1f64e-1f3fc","๐Ÿ™Ž๐Ÿฝ":"1f64e-1f3fd","๐Ÿ™Ž๐Ÿพ":"1f64e-1f3fe","๐Ÿ™Ž๐Ÿฟ":"1f64e-1f3ff","๐Ÿ™…๐Ÿป":"1f645-1f3fb","๐Ÿ™…๐Ÿผ":"1f645-1f3fc","๐Ÿ™…๐Ÿฝ":"1f645-1f3fd","๐Ÿ™…๐Ÿพ":"1f645-1f3fe","๐Ÿ™…๐Ÿฟ":"1f645-1f3ff","๐Ÿ™†๐Ÿป":"1f646-1f3fb","๐Ÿ™†๐Ÿผ":"1f646-1f3fc","๐Ÿ™†๐Ÿฝ":"1f646-1f3fd","๐Ÿ™†๐Ÿพ":"1f646-1f3fe","๐Ÿ™†๐Ÿฟ":"1f646-1f3ff","๐Ÿ’๐Ÿป":"1f481-1f3fb","๐Ÿ’๐Ÿผ":"1f481-1f3fc","๐Ÿ’๐Ÿฝ":"1f481-1f3fd","๐Ÿ’๐Ÿพ":"1f481-1f3fe","๐Ÿ’๐Ÿฟ":"1f481-1f3ff","๐Ÿ™‹๐Ÿป":"1f64b-1f3fb","๐Ÿ™‹๐Ÿผ":"1f64b-1f3fc","๐Ÿ™‹๐Ÿฝ":"1f64b-1f3fd","๐Ÿ™‹๐Ÿพ":"1f64b-1f3fe","๐Ÿ™‹๐Ÿฟ":"1f64b-1f3ff","๐Ÿ™‡๐Ÿป":"1f647-1f3fb","๐Ÿ™‡๐Ÿผ":"1f647-1f3fc","๐Ÿ™‡๐Ÿฝ":"1f647-1f3fd","๐Ÿ™‡๐Ÿพ":"1f647-1f3fe","๐Ÿ™‡๐Ÿฟ":"1f647-1f3ff","๐Ÿคฆ๐Ÿป":"1f926-1f3fb","๐Ÿคฆ๐Ÿผ":"1f926-1f3fc","๐Ÿคฆ๐Ÿฝ":"1f926-1f3fd","๐Ÿคฆ๐Ÿพ":"1f926-1f3fe","๐Ÿคฆ๐Ÿฟ":"1f926-1f3ff","๐Ÿคท๐Ÿป":"1f937-1f3fb","๐Ÿคท๐Ÿผ":"1f937-1f3fc","๐Ÿคท๐Ÿฝ":"1f937-1f3fd","๐Ÿคท๐Ÿพ":"1f937-1f3fe","๐Ÿคท๐Ÿฟ":"1f937-1f3ff","๐Ÿ’†๐Ÿป":"1f486-1f3fb","๐Ÿ’†๐Ÿผ":"1f486-1f3fc","๐Ÿ’†๐Ÿฝ":"1f486-1f3fd","๐Ÿ’†๐Ÿพ":"1f486-1f3fe","๐Ÿ’†๐Ÿฟ":"1f486-1f3ff","๐Ÿ’‡๐Ÿป":"1f487-1f3fb","๐Ÿ’‡๐Ÿผ":"1f487-1f3fc","๐Ÿ’‡๐Ÿฝ":"1f487-1f3fd","๐Ÿ’‡๐Ÿพ":"1f487-1f3fe","๐Ÿ’‡๐Ÿฟ":"1f487-1f3ff","๐Ÿšถ๐Ÿป":"1f6b6-1f3fb","๐Ÿšถ๐Ÿผ":"1f6b6-1f3fc","๐Ÿšถ๐Ÿฝ":"1f6b6-1f3fd","๐Ÿšถ๐Ÿพ":"1f6b6-1f3fe","๐Ÿšถ๐Ÿฟ":"1f6b6-1f3ff","๐Ÿƒ๐Ÿป":"1f3c3-1f3fb","๐Ÿƒ๐Ÿผ":"1f3c3-1f3fc","๐Ÿƒ๐Ÿฝ":"1f3c3-1f3fd","๐Ÿƒ๐Ÿพ":"1f3c3-1f3fe","๐Ÿƒ๐Ÿฟ":"1f3c3-1f3ff","๐Ÿ’ƒ๐Ÿป":"1f483-1f3fb","๐Ÿ’ƒ๐Ÿผ":"1f483-1f3fc","๐Ÿ’ƒ๐Ÿฝ":"1f483-1f3fd","๐Ÿ’ƒ๐Ÿพ":"1f483-1f3fe","๐Ÿ’ƒ๐Ÿฟ":"1f483-1f3ff","๐Ÿ•บ๐Ÿป":"1f57a-1f3fb","๐Ÿ•บ๐Ÿผ":"1f57a-1f3fc","๐Ÿ•บ๐Ÿฝ":"1f57a-1f3fd","๐Ÿ•บ๐Ÿพ":"1f57a-1f3fe","๐Ÿ•บ๐Ÿฟ":"1f57a-1f3ff","๐Ÿง–๐Ÿป":"1f9d6-1f3fb","๐Ÿง–๐Ÿผ":"1f9d6-1f3fc","๐Ÿง–๐Ÿฝ":"1f9d6-1f3fd","๐Ÿง–๐Ÿพ":"1f9d6-1f3fe","๐Ÿง–๐Ÿฟ":"1f9d6-1f3ff","๐Ÿง—๐Ÿป":"1f9d7-1f3fb","๐Ÿง—๐Ÿผ":"1f9d7-1f3fc","๐Ÿง—๐Ÿฝ":"1f9d7-1f3fd","๐Ÿง—๐Ÿพ":"1f9d7-1f3fe","๐Ÿง—๐Ÿฟ":"1f9d7-1f3ff","๐Ÿง˜๐Ÿป":"1f9d8-1f3fb","๐Ÿง˜๐Ÿผ":"1f9d8-1f3fc","๐Ÿง˜๐Ÿฝ":"1f9d8-1f3fd","๐Ÿง˜๐Ÿพ":"1f9d8-1f3fe","๐Ÿง˜๐Ÿฟ":"1f9d8-1f3ff","๐Ÿ›€๐Ÿป":"1f6c0-1f3fb","๐Ÿ›€๐Ÿผ":"1f6c0-1f3fc","๐Ÿ›€๐Ÿฝ":"1f6c0-1f3fd","๐Ÿ›€๐Ÿพ":"1f6c0-1f3fe","๐Ÿ›€๐Ÿฟ":"1f6c0-1f3ff","๐Ÿ›Œ๐Ÿป":"1f6cc-1f3fb","๐Ÿ›Œ๐Ÿผ":"1f6cc-1f3fc","๐Ÿ›Œ๐Ÿฝ":"1f6cc-1f3fd","๐Ÿ›Œ๐Ÿพ":"1f6cc-1f3fe","๐Ÿ›Œ๐Ÿฟ":"1f6cc-1f3ff","๐Ÿ•ด๏ธ":"1f574","๐Ÿ•ด๐Ÿป":"1f574-1f3fb","๐Ÿ•ด๐Ÿผ":"1f574-1f3fc","๐Ÿ•ด๐Ÿฝ":"1f574-1f3fd","๐Ÿ•ด๐Ÿพ":"1f574-1f3fe","๐Ÿ•ด๐Ÿฟ":"1f574-1f3ff","๐Ÿ—ฃ๏ธ":"1f5e3","๐Ÿ‡๐Ÿป":"1f3c7-1f3fb","๐Ÿ‡๐Ÿผ":"1f3c7-1f3fc","๐Ÿ‡๐Ÿฝ":"1f3c7-1f3fd","๐Ÿ‡๐Ÿพ":"1f3c7-1f3fe","๐Ÿ‡๐Ÿฟ":"1f3c7-1f3ff","โ›ท๏ธ":"26f7","๐Ÿ‚๐Ÿป":"1f3c2-1f3fb","๐Ÿ‚๐Ÿผ":"1f3c2-1f3fc","๐Ÿ‚๐Ÿฝ":"1f3c2-1f3fd","๐Ÿ‚๐Ÿพ":"1f3c2-1f3fe","๐Ÿ‚๐Ÿฟ":"1f3c2-1f3ff","๐ŸŒ๏ธ":"1f3cc","๐ŸŒ๐Ÿป":"1f3cc-1f3fb","๐ŸŒ๐Ÿผ":"1f3cc-1f3fc","๐ŸŒ๐Ÿฝ":"1f3cc-1f3fd","๐ŸŒ๐Ÿพ":"1f3cc-1f3fe","๐ŸŒ๐Ÿฟ":"1f3cc-1f3ff","๐Ÿ„๐Ÿป":"1f3c4-1f3fb","๐Ÿ„๐Ÿผ":"1f3c4-1f3fc","๐Ÿ„๐Ÿฝ":"1f3c4-1f3fd","๐Ÿ„๐Ÿพ":"1f3c4-1f3fe","๐Ÿ„๐Ÿฟ":"1f3c4-1f3ff","๐Ÿšฃ๐Ÿป":"1f6a3-1f3fb","๐Ÿšฃ๐Ÿผ":"1f6a3-1f3fc","๐Ÿšฃ๐Ÿฝ":"1f6a3-1f3fd","๐Ÿšฃ๐Ÿพ":"1f6a3-1f3fe","๐Ÿšฃ๐Ÿฟ":"1f6a3-1f3ff","๐ŸŠ๐Ÿป":"1f3ca-1f3fb","๐ŸŠ๐Ÿผ":"1f3ca-1f3fc","๐ŸŠ๐Ÿฝ":"1f3ca-1f3fd","๐ŸŠ๐Ÿพ":"1f3ca-1f3fe","๐ŸŠ๐Ÿฟ":"1f3ca-1f3ff","โ›น๏ธ":"26f9","โ›น๐Ÿป":"26f9-1f3fb","โ›น๐Ÿผ":"26f9-1f3fc","โ›น๐Ÿฝ":"26f9-1f3fd","โ›น๐Ÿพ":"26f9-1f3fe","โ›น๐Ÿฟ":"26f9-1f3ff","๐Ÿ‹๏ธ":"1f3cb","๐Ÿ‹๐Ÿป":"1f3cb-1f3fb","๐Ÿ‹๐Ÿผ":"1f3cb-1f3fc","๐Ÿ‹๐Ÿฝ":"1f3cb-1f3fd","๐Ÿ‹๐Ÿพ":"1f3cb-1f3fe","๐Ÿ‹๐Ÿฟ":"1f3cb-1f3ff","๐Ÿšด๐Ÿป":"1f6b4-1f3fb","๐Ÿšด๐Ÿผ":"1f6b4-1f3fc","๐Ÿšด๐Ÿฝ":"1f6b4-1f3fd","๐Ÿšด๐Ÿพ":"1f6b4-1f3fe","๐Ÿšด๐Ÿฟ":"1f6b4-1f3ff","๐Ÿšต๐Ÿป":"1f6b5-1f3fb","๐Ÿšต๐Ÿผ":"1f6b5-1f3fc","๐Ÿšต๐Ÿฝ":"1f6b5-1f3fd","๐Ÿšต๐Ÿพ":"1f6b5-1f3fe","๐Ÿšต๐Ÿฟ":"1f6b5-1f3ff","๐ŸŽ๏ธ":"1f3ce","๐Ÿ๏ธ":"1f3cd","๐Ÿคธ๐Ÿป":"1f938-1f3fb","๐Ÿคธ๐Ÿผ":"1f938-1f3fc","๐Ÿคธ๐Ÿฝ":"1f938-1f3fd","๐Ÿคธ๐Ÿพ":"1f938-1f3fe","๐Ÿคธ๐Ÿฟ":"1f938-1f3ff","๐Ÿคฝ๐Ÿป":"1f93d-1f3fb","๐Ÿคฝ๐Ÿผ":"1f93d-1f3fc","๐Ÿคฝ๐Ÿฝ":"1f93d-1f3fd","๐Ÿคฝ๐Ÿพ":"1f93d-1f3fe","๐Ÿคฝ๐Ÿฟ":"1f93d-1f3ff","๐Ÿคพ๐Ÿป":"1f93e-1f3fb","๐Ÿคพ๐Ÿผ":"1f93e-1f3fc","๐Ÿคพ๐Ÿฝ":"1f93e-1f3fd","๐Ÿคพ๐Ÿพ":"1f93e-1f3fe","๐Ÿคพ๐Ÿฟ":"1f93e-1f3ff","๐Ÿคน๐Ÿป":"1f939-1f3fb","๐Ÿคน๐Ÿผ":"1f939-1f3fc","๐Ÿคน๐Ÿฝ":"1f939-1f3fd","๐Ÿคน๐Ÿพ":"1f939-1f3fe","๐Ÿคน๐Ÿฟ":"1f939-1f3ff","๐Ÿคณ๐Ÿป":"1f933-1f3fb","๐Ÿคณ๐Ÿผ":"1f933-1f3fc","๐Ÿคณ๐Ÿฝ":"1f933-1f3fd","๐Ÿคณ๐Ÿพ":"1f933-1f3fe","๐Ÿคณ๐Ÿฟ":"1f933-1f3ff","๐Ÿ’ช๐Ÿป":"1f4aa-1f3fb","๐Ÿ’ช๐Ÿผ":"1f4aa-1f3fc","๐Ÿ’ช๐Ÿฝ":"1f4aa-1f3fd","๐Ÿ’ช๐Ÿพ":"1f4aa-1f3fe","๐Ÿ’ช๐Ÿฟ":"1f4aa-1f3ff","๐Ÿ‘ˆ๐Ÿป":"1f448-1f3fb","๐Ÿ‘ˆ๐Ÿผ":"1f448-1f3fc","๐Ÿ‘ˆ๐Ÿฝ":"1f448-1f3fd","๐Ÿ‘ˆ๐Ÿพ":"1f448-1f3fe","๐Ÿ‘ˆ๐Ÿฟ":"1f448-1f3ff","๐Ÿ‘‰๐Ÿป":"1f449-1f3fb","๐Ÿ‘‰๐Ÿผ":"1f449-1f3fc","๐Ÿ‘‰๐Ÿฝ":"1f449-1f3fd","๐Ÿ‘‰๐Ÿพ":"1f449-1f3fe","๐Ÿ‘‰๐Ÿฟ":"1f449-1f3ff","โ˜๏ธ":"261d","โ˜๐Ÿป":"261d-1f3fb","โ˜๐Ÿผ":"261d-1f3fc","โ˜๐Ÿฝ":"261d-1f3fd","โ˜๐Ÿพ":"261d-1f3fe","โ˜๐Ÿฟ":"261d-1f3ff","๐Ÿ‘†๐Ÿป":"1f446-1f3fb","๐Ÿ‘†๐Ÿผ":"1f446-1f3fc","๐Ÿ‘†๐Ÿฝ":"1f446-1f3fd","๐Ÿ‘†๐Ÿพ":"1f446-1f3fe","๐Ÿ‘†๐Ÿฟ":"1f446-1f3ff","๐Ÿ–•๐Ÿป":"1f595-1f3fb","๐Ÿ–•๐Ÿผ":"1f595-1f3fc","๐Ÿ–•๐Ÿฝ":"1f595-1f3fd","๐Ÿ–•๐Ÿพ":"1f595-1f3fe","๐Ÿ–•๐Ÿฟ":"1f595-1f3ff","๐Ÿ‘‡๐Ÿป":"1f447-1f3fb","๐Ÿ‘‡๐Ÿผ":"1f447-1f3fc","๐Ÿ‘‡๐Ÿฝ":"1f447-1f3fd","๐Ÿ‘‡๐Ÿพ":"1f447-1f3fe","๐Ÿ‘‡๐Ÿฟ":"1f447-1f3ff","โœŒ๏ธ":"270c","โœŒ๐Ÿป":"270c-1f3fb","โœŒ๐Ÿผ":"270c-1f3fc","โœŒ๐Ÿฝ":"270c-1f3fd","โœŒ๐Ÿพ":"270c-1f3fe","โœŒ๐Ÿฟ":"270c-1f3ff","๐Ÿคž๐Ÿป":"1f91e-1f3fb","๐Ÿคž๐Ÿผ":"1f91e-1f3fc","๐Ÿคž๐Ÿฝ":"1f91e-1f3fd","๐Ÿคž๐Ÿพ":"1f91e-1f3fe","๐Ÿคž๐Ÿฟ":"1f91e-1f3ff","๐Ÿ––๐Ÿป":"1f596-1f3fb","๐Ÿ––๐Ÿผ":"1f596-1f3fc","๐Ÿ––๐Ÿฝ":"1f596-1f3fd","๐Ÿ––๐Ÿพ":"1f596-1f3fe","๐Ÿ––๐Ÿฟ":"1f596-1f3ff","๐Ÿค˜๐Ÿป":"1f918-1f3fb","๐Ÿค˜๐Ÿผ":"1f918-1f3fc","๐Ÿค˜๐Ÿฝ":"1f918-1f3fd","๐Ÿค˜๐Ÿพ":"1f918-1f3fe","๐Ÿค˜๐Ÿฟ":"1f918-1f3ff","๐Ÿค™๐Ÿป":"1f919-1f3fb","๐Ÿค™๐Ÿผ":"1f919-1f3fc","๐Ÿค™๐Ÿฝ":"1f919-1f3fd","๐Ÿค™๐Ÿพ":"1f919-1f3fe","๐Ÿค™๐Ÿฟ":"1f919-1f3ff","๐Ÿ–๏ธ":"1f590","๐Ÿ–๐Ÿป":"1f590-1f3fb","๐Ÿ–๐Ÿผ":"1f590-1f3fc","๐Ÿ–๐Ÿฝ":"1f590-1f3fd","๐Ÿ–๐Ÿพ":"1f590-1f3fe","๐Ÿ–๐Ÿฟ":"1f590-1f3ff","โœ‹๐Ÿป":"270b-1f3fb","โœ‹๐Ÿผ":"270b-1f3fc","โœ‹๐Ÿฝ":"270b-1f3fd","โœ‹๐Ÿพ":"270b-1f3fe","โœ‹๐Ÿฟ":"270b-1f3ff","๐Ÿ‘Œ๐Ÿป":"1f44c-1f3fb","๐Ÿ‘Œ๐Ÿผ":"1f44c-1f3fc","๐Ÿ‘Œ๐Ÿฝ":"1f44c-1f3fd","๐Ÿ‘Œ๐Ÿพ":"1f44c-1f3fe","๐Ÿ‘Œ๐Ÿฟ":"1f44c-1f3ff","๐Ÿ‘๐Ÿป":"1f44d-1f3fb","๐Ÿ‘๐Ÿผ":"1f44d-1f3fc","๐Ÿ‘๐Ÿฝ":"1f44d-1f3fd","๐Ÿ‘๐Ÿพ":"1f44d-1f3fe","๐Ÿ‘๐Ÿฟ":"1f44d-1f3ff","๐Ÿ‘Ž๐Ÿป":"1f44e-1f3fb","๐Ÿ‘Ž๐Ÿผ":"1f44e-1f3fc","๐Ÿ‘Ž๐Ÿฝ":"1f44e-1f3fd","๐Ÿ‘Ž๐Ÿพ":"1f44e-1f3fe","๐Ÿ‘Ž๐Ÿฟ":"1f44e-1f3ff","โœŠ๐Ÿป":"270a-1f3fb","โœŠ๐Ÿผ":"270a-1f3fc","โœŠ๐Ÿฝ":"270a-1f3fd","โœŠ๐Ÿพ":"270a-1f3fe","โœŠ๐Ÿฟ":"270a-1f3ff","๐Ÿ‘Š๐Ÿป":"1f44a-1f3fb","๐Ÿ‘Š๐Ÿผ":"1f44a-1f3fc","๐Ÿ‘Š๐Ÿฝ":"1f44a-1f3fd","๐Ÿ‘Š๐Ÿพ":"1f44a-1f3fe","๐Ÿ‘Š๐Ÿฟ":"1f44a-1f3ff","๐Ÿค›๐Ÿป":"1f91b-1f3fb","๐Ÿค›๐Ÿผ":"1f91b-1f3fc","๐Ÿค›๐Ÿฝ":"1f91b-1f3fd","๐Ÿค›๐Ÿพ":"1f91b-1f3fe","๐Ÿค›๐Ÿฟ":"1f91b-1f3ff","๐Ÿคœ๐Ÿป":"1f91c-1f3fb","๐Ÿคœ๐Ÿผ":"1f91c-1f3fc","๐Ÿคœ๐Ÿฝ":"1f91c-1f3fd","๐Ÿคœ๐Ÿพ":"1f91c-1f3fe","๐Ÿคœ๐Ÿฟ":"1f91c-1f3ff","๐Ÿคš๐Ÿป":"1f91a-1f3fb","๐Ÿคš๐Ÿผ":"1f91a-1f3fc","๐Ÿคš๐Ÿฝ":"1f91a-1f3fd","๐Ÿคš๐Ÿพ":"1f91a-1f3fe","๐Ÿคš๐Ÿฟ":"1f91a-1f3ff","๐Ÿ‘‹๐Ÿป":"1f44b-1f3fb","๐Ÿ‘‹๐Ÿผ":"1f44b-1f3fc","๐Ÿ‘‹๐Ÿฝ":"1f44b-1f3fd","๐Ÿ‘‹๐Ÿพ":"1f44b-1f3fe","๐Ÿ‘‹๐Ÿฟ":"1f44b-1f3ff","๐ŸคŸ๐Ÿป":"1f91f-1f3fb","๐ŸคŸ๐Ÿผ":"1f91f-1f3fc","๐ŸคŸ๐Ÿฝ":"1f91f-1f3fd","๐ŸคŸ๐Ÿพ":"1f91f-1f3fe","๐ŸคŸ๐Ÿฟ":"1f91f-1f3ff","โœ๏ธ":"270d","โœ๐Ÿป":"270d-1f3fb","โœ๐Ÿผ":"270d-1f3fc","โœ๐Ÿฝ":"270d-1f3fd","โœ๐Ÿพ":"270d-1f3fe","โœ๐Ÿฟ":"270d-1f3ff","๐Ÿ‘๐Ÿป":"1f44f-1f3fb","๐Ÿ‘๐Ÿผ":"1f44f-1f3fc","๐Ÿ‘๐Ÿฝ":"1f44f-1f3fd","๐Ÿ‘๐Ÿพ":"1f44f-1f3fe","๐Ÿ‘๐Ÿฟ":"1f44f-1f3ff","๐Ÿ‘๐Ÿป":"1f450-1f3fb","๐Ÿ‘๐Ÿผ":"1f450-1f3fc","๐Ÿ‘๐Ÿฝ":"1f450-1f3fd","๐Ÿ‘๐Ÿพ":"1f450-1f3fe","๐Ÿ‘๐Ÿฟ":"1f450-1f3ff","๐Ÿ™Œ๐Ÿป":"1f64c-1f3fb","๐Ÿ™Œ๐Ÿผ":"1f64c-1f3fc","๐Ÿ™Œ๐Ÿฝ":"1f64c-1f3fd","๐Ÿ™Œ๐Ÿพ":"1f64c-1f3fe","๐Ÿ™Œ๐Ÿฟ":"1f64c-1f3ff","๐Ÿคฒ๐Ÿป":"1f932-1f3fb","๐Ÿคฒ๐Ÿผ":"1f932-1f3fc","๐Ÿคฒ๐Ÿฝ":"1f932-1f3fd","๐Ÿคฒ๐Ÿพ":"1f932-1f3fe","๐Ÿคฒ๐Ÿฟ":"1f932-1f3ff","๐Ÿ™๐Ÿป":"1f64f-1f3fb","๐Ÿ™๐Ÿผ":"1f64f-1f3fc","๐Ÿ™๐Ÿฝ":"1f64f-1f3fd","๐Ÿ™๐Ÿพ":"1f64f-1f3fe","๐Ÿ™๐Ÿฟ":"1f64f-1f3ff","๐Ÿ’…๐Ÿป":"1f485-1f3fb","๐Ÿ’…๐Ÿผ":"1f485-1f3fc","๐Ÿ’…๐Ÿฝ":"1f485-1f3fd","๐Ÿ’…๐Ÿพ":"1f485-1f3fe","๐Ÿ’…๐Ÿฟ":"1f485-1f3ff","๐Ÿ‘‚๐Ÿป":"1f442-1f3fb","๐Ÿ‘‚๐Ÿผ":"1f442-1f3fc","๐Ÿ‘‚๐Ÿฝ":"1f442-1f3fd","๐Ÿ‘‚๐Ÿพ":"1f442-1f3fe","๐Ÿ‘‚๐Ÿฟ":"1f442-1f3ff","๐Ÿ‘ƒ๐Ÿป":"1f443-1f3fb","๐Ÿ‘ƒ๐Ÿผ":"1f443-1f3fc","๐Ÿ‘ƒ๐Ÿฝ":"1f443-1f3fd","๐Ÿ‘ƒ๐Ÿพ":"1f443-1f3fe","๐Ÿ‘ƒ๐Ÿฟ":"1f443-1f3ff","๐Ÿ‘๏ธ":"1f441","โค๏ธ":"2764","โฃ๏ธ":"2763","๐Ÿ—จ๏ธ":"1f5e8","๐Ÿ—ฏ๏ธ":"1f5ef","๐Ÿ•ณ๏ธ":"1f573","๐Ÿ•ถ๏ธ":"1f576","๐Ÿ›๏ธ":"1f6cd","โ›‘๏ธ":"26d1","๐Ÿฟ๏ธ":"1f43f","๐Ÿ•Š๏ธ":"1f54a","๐Ÿ•ท๏ธ":"1f577","๐Ÿ•ธ๏ธ":"1f578","๐Ÿต๏ธ":"1f3f5","โ˜˜๏ธ":"2618","๐ŸŒถ๏ธ":"1f336","๐Ÿฝ๏ธ":"1f37d","๐Ÿ—บ๏ธ":"1f5fa","๐Ÿ”๏ธ":"1f3d4","โ›ฐ๏ธ":"26f0","๐Ÿ•๏ธ":"1f3d5","๐Ÿ–๏ธ":"1f3d6","๐Ÿœ๏ธ":"1f3dc","๐Ÿ๏ธ":"1f3dd","๐Ÿž๏ธ":"1f3de","๐ŸŸ๏ธ":"1f3df","๐Ÿ›๏ธ":"1f3db","๐Ÿ—๏ธ":"1f3d7","๐Ÿ˜๏ธ":"1f3d8","๐Ÿ™๏ธ":"1f3d9","๐Ÿš๏ธ":"1f3da","โ›ฉ๏ธ":"26e9","โ™จ๏ธ":"2668","๐Ÿ–ผ๏ธ":"1f5bc","๐Ÿ›ฃ๏ธ":"1f6e3","๐Ÿ›ค๏ธ":"1f6e4","๐Ÿ›ณ๏ธ":"1f6f3","โ›ด๏ธ":"26f4","๐Ÿ›ฅ๏ธ":"1f6e5","โœˆ๏ธ":"2708","๐Ÿ›ฉ๏ธ":"1f6e9","๐Ÿ›ฐ๏ธ":"1f6f0","๐Ÿ›Ž๏ธ":"1f6ce","๐Ÿ›๏ธ":"1f6cf","๐Ÿ›‹๏ธ":"1f6cb","โฑ๏ธ":"23f1","โฒ๏ธ":"23f2","๐Ÿ•ฐ๏ธ":"1f570","๐ŸŒก๏ธ":"1f321","โ˜€๏ธ":"2600","โ˜๏ธ":"2601","โ›ˆ๏ธ":"26c8","๐ŸŒค๏ธ":"1f324","๐ŸŒฅ๏ธ":"1f325","๐ŸŒฆ๏ธ":"1f326","๐ŸŒง๏ธ":"1f327","๐ŸŒจ๏ธ":"1f328","๐ŸŒฉ๏ธ":"1f329","๐ŸŒช๏ธ":"1f32a","๐ŸŒซ๏ธ":"1f32b","๐ŸŒฌ๏ธ":"1f32c","โ˜‚๏ธ":"2602","โ›ฑ๏ธ":"26f1","โ„๏ธ":"2744","โ˜ƒ๏ธ":"2603","โ˜„๏ธ":"2604","๐ŸŽ—๏ธ":"1f397","๐ŸŽŸ๏ธ":"1f39f","๐ŸŽ–๏ธ":"1f396","โ›ธ๏ธ":"26f8","๐Ÿ•น๏ธ":"1f579","โ™ ๏ธ":"2660","โ™ฅ๏ธ":"2665","โ™ฆ๏ธ":"2666","โ™ฃ๏ธ":"2663","๐ŸŽ™๏ธ":"1f399","๐ŸŽš๏ธ":"1f39a","๐ŸŽ›๏ธ":"1f39b","โ˜Ž๏ธ":"260e","๐Ÿ–ฅ๏ธ":"1f5a5","๐Ÿ–จ๏ธ":"1f5a8","โŒจ๏ธ":"2328","๐Ÿ–ฑ๏ธ":"1f5b1","๐Ÿ–ฒ๏ธ":"1f5b2","๐ŸŽž๏ธ":"1f39e","๐Ÿ“ฝ๏ธ":"1f4fd","๐Ÿ•ฏ๏ธ":"1f56f","๐Ÿ—ž๏ธ":"1f5de","๐Ÿท๏ธ":"1f3f7","โœ‰๏ธ":"2709","๐Ÿ—ณ๏ธ":"1f5f3","โœ๏ธ":"270f","โœ’๏ธ":"2712","๐Ÿ–‹๏ธ":"1f58b","๐Ÿ–Š๏ธ":"1f58a","๐Ÿ–Œ๏ธ":"1f58c","๐Ÿ–๏ธ":"1f58d","๐Ÿ—‚๏ธ":"1f5c2","๐Ÿ—’๏ธ":"1f5d2","๐Ÿ—“๏ธ":"1f5d3","๐Ÿ–‡๏ธ":"1f587","โœ‚๏ธ":"2702","๐Ÿ—ƒ๏ธ":"1f5c3","๐Ÿ—„๏ธ":"1f5c4","๐Ÿ—‘๏ธ":"1f5d1","๐Ÿ—๏ธ":"1f5dd","โ›๏ธ":"26cf","โš’๏ธ":"2692","๐Ÿ› ๏ธ":"1f6e0","๐Ÿ—ก๏ธ":"1f5e1","โš”๏ธ":"2694","๐Ÿ›ก๏ธ":"1f6e1","โš™๏ธ":"2699","๐Ÿ—œ๏ธ":"1f5dc","โš—๏ธ":"2697","โš–๏ธ":"2696","โ›“๏ธ":"26d3","โšฐ๏ธ":"26b0","โšฑ๏ธ":"26b1","๐Ÿ›ข๏ธ":"1f6e2","โš ๏ธ":"26a0","โ˜ข๏ธ":"2622","โ˜ฃ๏ธ":"2623","โฌ†๏ธ":"2b06","โ†—๏ธ":"2197","โžก๏ธ":"27a1","โ†˜๏ธ":"2198","โฌ‡๏ธ":"2b07","โ†™๏ธ":"2199","โฌ…๏ธ":"2b05","โ†–๏ธ":"2196","โ†•๏ธ":"2195","โ†”๏ธ":"2194","โ†ฉ๏ธ":"21a9","โ†ช๏ธ":"21aa","โคด๏ธ":"2934","โคต๏ธ":"2935","โš›๏ธ":"269b","๐Ÿ•‰๏ธ":"1f549","โœก๏ธ":"2721","โ˜ธ๏ธ":"2638","โ˜ฏ๏ธ":"262f","โœ๏ธ":"271d","โ˜ฆ๏ธ":"2626","โ˜ช๏ธ":"262a","โ˜ฎ๏ธ":"262e","โ–ถ๏ธ":"25b6","โญ๏ธ":"23ed","โฏ๏ธ":"23ef","โ—€๏ธ":"25c0","โฎ๏ธ":"23ee","โธ๏ธ":"23f8","โน๏ธ":"23f9","โบ๏ธ":"23fa","โ๏ธ":"23cf","โ™€๏ธ":"2640","โ™‚๏ธ":"2642","โš•๏ธ":"2695","โ™ป๏ธ":"267b","โšœ๏ธ":"269c","โ˜‘๏ธ":"2611","โœ”๏ธ":"2714","โœ–๏ธ":"2716","ใ€ฝ๏ธ":"303d","โœณ๏ธ":"2733","โœด๏ธ":"2734","โ‡๏ธ":"2747","โ€ผ๏ธ":"203c","โ‰๏ธ":"2049","ใ€ฐ๏ธ":"3030","ยฉ๏ธ":"a9","ยฎ๏ธ":"ae","โ„ข๏ธ":"2122","#โƒฃ":"23-20e3","*โƒฃ":"2a-20e3","0โƒฃ":"30-20e3","1โƒฃ":"31-20e3","2โƒฃ":"32-20e3","3โƒฃ":"33-20e3","4โƒฃ":"34-20e3","5โƒฃ":"35-20e3","6โƒฃ":"36-20e3","7โƒฃ":"37-20e3","8โƒฃ":"38-20e3","9โƒฃ":"39-20e3","๐Ÿ…ฐ๏ธ":"1f170","๐Ÿ…ฑ๏ธ":"1f171","โ„น๏ธ":"2139","โ“‚๏ธ":"24c2","๐Ÿ…พ๏ธ":"1f17e","๐Ÿ…ฟ๏ธ":"1f17f","๐Ÿˆ‚๏ธ":"1f202","๐Ÿˆท๏ธ":"1f237","ใŠ—๏ธ":"3297","ใŠ™๏ธ":"3299","โ–ช๏ธ":"25aa","โ–ซ๏ธ":"25ab","โ—ป๏ธ":"25fb","โ—ผ๏ธ":"25fc","๐Ÿณ๏ธ":"1f3f3","๐Ÿ‡ฆ๐Ÿ‡จ":"1f1e6-1f1e8","๐Ÿ‡ฆ๐Ÿ‡ฉ":"1f1e6-1f1e9","๐Ÿ‡ฆ๐Ÿ‡ช":"1f1e6-1f1ea","๐Ÿ‡ฆ๐Ÿ‡ซ":"1f1e6-1f1eb","๐Ÿ‡ฆ๐Ÿ‡ฌ":"1f1e6-1f1ec","๐Ÿ‡ฆ๐Ÿ‡ฎ":"1f1e6-1f1ee","๐Ÿ‡ฆ๐Ÿ‡ฑ":"1f1e6-1f1f1","๐Ÿ‡ฆ๐Ÿ‡ฒ":"1f1e6-1f1f2","๐Ÿ‡ฆ๐Ÿ‡ด":"1f1e6-1f1f4","๐Ÿ‡ฆ๐Ÿ‡ถ":"1f1e6-1f1f6","๐Ÿ‡ฆ๐Ÿ‡ท":"1f1e6-1f1f7","๐Ÿ‡ฆ๐Ÿ‡ธ":"1f1e6-1f1f8","๐Ÿ‡ฆ๐Ÿ‡น":"1f1e6-1f1f9","๐Ÿ‡ฆ๐Ÿ‡บ":"1f1e6-1f1fa","๐Ÿ‡ฆ๐Ÿ‡ผ":"1f1e6-1f1fc","๐Ÿ‡ฆ๐Ÿ‡ฝ":"1f1e6-1f1fd","๐Ÿ‡ฆ๐Ÿ‡ฟ":"1f1e6-1f1ff","๐Ÿ‡ง๐Ÿ‡ฆ":"1f1e7-1f1e6","๐Ÿ‡ง๐Ÿ‡ง":"1f1e7-1f1e7","๐Ÿ‡ง๐Ÿ‡ฉ":"1f1e7-1f1e9","๐Ÿ‡ง๐Ÿ‡ช":"1f1e7-1f1ea","๐Ÿ‡ง๐Ÿ‡ซ":"1f1e7-1f1eb","๐Ÿ‡ง๐Ÿ‡ฌ":"1f1e7-1f1ec","๐Ÿ‡ง๐Ÿ‡ญ":"1f1e7-1f1ed","๐Ÿ‡ง๐Ÿ‡ฎ":"1f1e7-1f1ee","๐Ÿ‡ง๐Ÿ‡ฏ":"1f1e7-1f1ef","๐Ÿ‡ง๐Ÿ‡ฑ":"1f1e7-1f1f1","๐Ÿ‡ง๐Ÿ‡ฒ":"1f1e7-1f1f2","๐Ÿ‡ง๐Ÿ‡ณ":"1f1e7-1f1f3","๐Ÿ‡ง๐Ÿ‡ด":"1f1e7-1f1f4","๐Ÿ‡ง๐Ÿ‡ถ":"1f1e7-1f1f6","๐Ÿ‡ง๐Ÿ‡ท":"1f1e7-1f1f7","๐Ÿ‡ง๐Ÿ‡ธ":"1f1e7-1f1f8","๐Ÿ‡ง๐Ÿ‡น":"1f1e7-1f1f9","๐Ÿ‡ง๐Ÿ‡ป":"1f1e7-1f1fb","๐Ÿ‡ง๐Ÿ‡ผ":"1f1e7-1f1fc","๐Ÿ‡ง๐Ÿ‡พ":"1f1e7-1f1fe","๐Ÿ‡ง๐Ÿ‡ฟ":"1f1e7-1f1ff","๐Ÿ‡จ๐Ÿ‡ฆ":"1f1e8-1f1e6","๐Ÿ‡จ๐Ÿ‡จ":"1f1e8-1f1e8","๐Ÿ‡จ๐Ÿ‡ฉ":"1f1e8-1f1e9","๐Ÿ‡จ๐Ÿ‡ซ":"1f1e8-1f1eb","๐Ÿ‡จ๐Ÿ‡ฌ":"1f1e8-1f1ec","๐Ÿ‡จ๐Ÿ‡ญ":"1f1e8-1f1ed","๐Ÿ‡จ๐Ÿ‡ฎ":"1f1e8-1f1ee","๐Ÿ‡จ๐Ÿ‡ฐ":"1f1e8-1f1f0","๐Ÿ‡จ๐Ÿ‡ฑ":"1f1e8-1f1f1","๐Ÿ‡จ๐Ÿ‡ฒ":"1f1e8-1f1f2","๐Ÿ‡จ๐Ÿ‡ณ":"1f1e8-1f1f3","๐Ÿ‡จ๐Ÿ‡ด":"1f1e8-1f1f4","๐Ÿ‡จ๐Ÿ‡ต":"1f1e8-1f1f5","๐Ÿ‡จ๐Ÿ‡ท":"1f1e8-1f1f7","๐Ÿ‡จ๐Ÿ‡บ":"1f1e8-1f1fa","๐Ÿ‡จ๐Ÿ‡ป":"1f1e8-1f1fb","๐Ÿ‡จ๐Ÿ‡ผ":"1f1e8-1f1fc","๐Ÿ‡จ๐Ÿ‡ฝ":"1f1e8-1f1fd","๐Ÿ‡จ๐Ÿ‡พ":"1f1e8-1f1fe","๐Ÿ‡จ๐Ÿ‡ฟ":"1f1e8-1f1ff","๐Ÿ‡ฉ๐Ÿ‡ช":"1f1e9-1f1ea","๐Ÿ‡ฉ๐Ÿ‡ฌ":"1f1e9-1f1ec","๐Ÿ‡ฉ๐Ÿ‡ฏ":"1f1e9-1f1ef","๐Ÿ‡ฉ๐Ÿ‡ฐ":"1f1e9-1f1f0","๐Ÿ‡ฉ๐Ÿ‡ฒ":"1f1e9-1f1f2","๐Ÿ‡ฉ๐Ÿ‡ด":"1f1e9-1f1f4","๐Ÿ‡ฉ๐Ÿ‡ฟ":"1f1e9-1f1ff","๐Ÿ‡ช๐Ÿ‡ฆ":"1f1ea-1f1e6","๐Ÿ‡ช๐Ÿ‡จ":"1f1ea-1f1e8","๐Ÿ‡ช๐Ÿ‡ช":"1f1ea-1f1ea","๐Ÿ‡ช๐Ÿ‡ฌ":"1f1ea-1f1ec","๐Ÿ‡ช๐Ÿ‡ญ":"1f1ea-1f1ed","๐Ÿ‡ช๐Ÿ‡ท":"1f1ea-1f1f7","๐Ÿ‡ช๐Ÿ‡ธ":"1f1ea-1f1f8","๐Ÿ‡ช๐Ÿ‡น":"1f1ea-1f1f9","๐Ÿ‡ช๐Ÿ‡บ":"1f1ea-1f1fa","๐Ÿ‡ซ๐Ÿ‡ฎ":"1f1eb-1f1ee","๐Ÿ‡ซ๐Ÿ‡ฏ":"1f1eb-1f1ef","๐Ÿ‡ซ๐Ÿ‡ฐ":"1f1eb-1f1f0","๐Ÿ‡ซ๐Ÿ‡ฒ":"1f1eb-1f1f2","๐Ÿ‡ซ๐Ÿ‡ด":"1f1eb-1f1f4","๐Ÿ‡ซ๐Ÿ‡ท":"1f1eb-1f1f7","๐Ÿ‡ฌ๐Ÿ‡ฆ":"1f1ec-1f1e6","๐Ÿ‡ฌ๐Ÿ‡ง":"1f1ec-1f1e7","๐Ÿ‡ฌ๐Ÿ‡ฉ":"1f1ec-1f1e9","๐Ÿ‡ฌ๐Ÿ‡ช":"1f1ec-1f1ea","๐Ÿ‡ฌ๐Ÿ‡ซ":"1f1ec-1f1eb","๐Ÿ‡ฌ๐Ÿ‡ฌ":"1f1ec-1f1ec","๐Ÿ‡ฌ๐Ÿ‡ญ":"1f1ec-1f1ed","๐Ÿ‡ฌ๐Ÿ‡ฎ":"1f1ec-1f1ee","๐Ÿ‡ฌ๐Ÿ‡ฑ":"1f1ec-1f1f1","๐Ÿ‡ฌ๐Ÿ‡ฒ":"1f1ec-1f1f2","๐Ÿ‡ฌ๐Ÿ‡ณ":"1f1ec-1f1f3","๐Ÿ‡ฌ๐Ÿ‡ต":"1f1ec-1f1f5","๐Ÿ‡ฌ๐Ÿ‡ถ":"1f1ec-1f1f6","๐Ÿ‡ฌ๐Ÿ‡ท":"1f1ec-1f1f7","๐Ÿ‡ฌ๐Ÿ‡ธ":"1f1ec-1f1f8","๐Ÿ‡ฌ๐Ÿ‡น":"1f1ec-1f1f9","๐Ÿ‡ฌ๐Ÿ‡บ":"1f1ec-1f1fa","๐Ÿ‡ฌ๐Ÿ‡ผ":"1f1ec-1f1fc","๐Ÿ‡ฌ๐Ÿ‡พ":"1f1ec-1f1fe","๐Ÿ‡ญ๐Ÿ‡ฐ":"1f1ed-1f1f0","๐Ÿ‡ญ๐Ÿ‡ฒ":"1f1ed-1f1f2","๐Ÿ‡ญ๐Ÿ‡ณ":"1f1ed-1f1f3","๐Ÿ‡ญ๐Ÿ‡ท":"1f1ed-1f1f7","๐Ÿ‡ญ๐Ÿ‡น":"1f1ed-1f1f9","๐Ÿ‡ญ๐Ÿ‡บ":"1f1ed-1f1fa","๐Ÿ‡ฎ๐Ÿ‡จ":"1f1ee-1f1e8","๐Ÿ‡ฎ๐Ÿ‡ฉ":"1f1ee-1f1e9","๐Ÿ‡ฎ๐Ÿ‡ช":"1f1ee-1f1ea","๐Ÿ‡ฎ๐Ÿ‡ฑ":"1f1ee-1f1f1","๐Ÿ‡ฎ๐Ÿ‡ฒ":"1f1ee-1f1f2","๐Ÿ‡ฎ๐Ÿ‡ณ":"1f1ee-1f1f3","๐Ÿ‡ฎ๐Ÿ‡ด":"1f1ee-1f1f4","๐Ÿ‡ฎ๐Ÿ‡ถ":"1f1ee-1f1f6","๐Ÿ‡ฎ๐Ÿ‡ท":"1f1ee-1f1f7","๐Ÿ‡ฎ๐Ÿ‡ธ":"1f1ee-1f1f8","๐Ÿ‡ฎ๐Ÿ‡น":"1f1ee-1f1f9","๐Ÿ‡ฏ๐Ÿ‡ช":"1f1ef-1f1ea","๐Ÿ‡ฏ๐Ÿ‡ฒ":"1f1ef-1f1f2","๐Ÿ‡ฏ๐Ÿ‡ด":"1f1ef-1f1f4","๐Ÿ‡ฏ๐Ÿ‡ต":"1f1ef-1f1f5","๐Ÿ‡ฐ๐Ÿ‡ช":"1f1f0-1f1ea","๐Ÿ‡ฐ๐Ÿ‡ฌ":"1f1f0-1f1ec","๐Ÿ‡ฐ๐Ÿ‡ญ":"1f1f0-1f1ed","๐Ÿ‡ฐ๐Ÿ‡ฎ":"1f1f0-1f1ee","๐Ÿ‡ฐ๐Ÿ‡ฒ":"1f1f0-1f1f2","๐Ÿ‡ฐ๐Ÿ‡ณ":"1f1f0-1f1f3","๐Ÿ‡ฐ๐Ÿ‡ต":"1f1f0-1f1f5","๐Ÿ‡ฐ๐Ÿ‡ท":"1f1f0-1f1f7","๐Ÿ‡ฐ๐Ÿ‡ผ":"1f1f0-1f1fc","๐Ÿ‡ฐ๐Ÿ‡พ":"1f1f0-1f1fe","๐Ÿ‡ฐ๐Ÿ‡ฟ":"1f1f0-1f1ff","๐Ÿ‡ฑ๐Ÿ‡ฆ":"1f1f1-1f1e6","๐Ÿ‡ฑ๐Ÿ‡ง":"1f1f1-1f1e7","๐Ÿ‡ฑ๐Ÿ‡จ":"1f1f1-1f1e8","๐Ÿ‡ฑ๐Ÿ‡ฎ":"1f1f1-1f1ee","๐Ÿ‡ฑ๐Ÿ‡ฐ":"1f1f1-1f1f0","๐Ÿ‡ฑ๐Ÿ‡ท":"1f1f1-1f1f7","๐Ÿ‡ฑ๐Ÿ‡ธ":"1f1f1-1f1f8","๐Ÿ‡ฑ๐Ÿ‡น":"1f1f1-1f1f9","๐Ÿ‡ฑ๐Ÿ‡บ":"1f1f1-1f1fa","๐Ÿ‡ฑ๐Ÿ‡ป":"1f1f1-1f1fb","๐Ÿ‡ฑ๐Ÿ‡พ":"1f1f1-1f1fe","๐Ÿ‡ฒ๐Ÿ‡ฆ":"1f1f2-1f1e6","๐Ÿ‡ฒ๐Ÿ‡จ":"1f1f2-1f1e8","๐Ÿ‡ฒ๐Ÿ‡ฉ":"1f1f2-1f1e9","๐Ÿ‡ฒ๐Ÿ‡ช":"1f1f2-1f1ea","๐Ÿ‡ฒ๐Ÿ‡ซ":"1f1f2-1f1eb","๐Ÿ‡ฒ๐Ÿ‡ฌ":"1f1f2-1f1ec","๐Ÿ‡ฒ๐Ÿ‡ญ":"1f1f2-1f1ed","๐Ÿ‡ฒ๐Ÿ‡ฐ":"1f1f2-1f1f0","๐Ÿ‡ฒ๐Ÿ‡ฑ":"1f1f2-1f1f1","๐Ÿ‡ฒ๐Ÿ‡ฒ":"1f1f2-1f1f2","๐Ÿ‡ฒ๐Ÿ‡ณ":"1f1f2-1f1f3","๐Ÿ‡ฒ๐Ÿ‡ด":"1f1f2-1f1f4","๐Ÿ‡ฒ๐Ÿ‡ต":"1f1f2-1f1f5","๐Ÿ‡ฒ๐Ÿ‡ถ":"1f1f2-1f1f6","๐Ÿ‡ฒ๐Ÿ‡ท":"1f1f2-1f1f7","๐Ÿ‡ฒ๐Ÿ‡ธ":"1f1f2-1f1f8","๐Ÿ‡ฒ๐Ÿ‡น":"1f1f2-1f1f9","๐Ÿ‡ฒ๐Ÿ‡บ":"1f1f2-1f1fa","๐Ÿ‡ฒ๐Ÿ‡ป":"1f1f2-1f1fb","๐Ÿ‡ฒ๐Ÿ‡ผ":"1f1f2-1f1fc","๐Ÿ‡ฒ๐Ÿ‡ฝ":"1f1f2-1f1fd","๐Ÿ‡ฒ๐Ÿ‡พ":"1f1f2-1f1fe","๐Ÿ‡ฒ๐Ÿ‡ฟ":"1f1f2-1f1ff","๐Ÿ‡ณ๐Ÿ‡ฆ":"1f1f3-1f1e6","๐Ÿ‡ณ๐Ÿ‡จ":"1f1f3-1f1e8","๐Ÿ‡ณ๐Ÿ‡ช":"1f1f3-1f1ea","๐Ÿ‡ณ๐Ÿ‡ซ":"1f1f3-1f1eb","๐Ÿ‡ณ๐Ÿ‡ฌ":"1f1f3-1f1ec","๐Ÿ‡ณ๐Ÿ‡ฎ":"1f1f3-1f1ee","๐Ÿ‡ณ๐Ÿ‡ฑ":"1f1f3-1f1f1","๐Ÿ‡ณ๐Ÿ‡ด":"1f1f3-1f1f4","๐Ÿ‡ณ๐Ÿ‡ต":"1f1f3-1f1f5","๐Ÿ‡ณ๐Ÿ‡ท":"1f1f3-1f1f7","๐Ÿ‡ณ๐Ÿ‡บ":"1f1f3-1f1fa","๐Ÿ‡ณ๐Ÿ‡ฟ":"1f1f3-1f1ff","๐Ÿ‡ด๐Ÿ‡ฒ":"1f1f4-1f1f2","๐Ÿ‡ต๐Ÿ‡ฆ":"1f1f5-1f1e6","๐Ÿ‡ต๐Ÿ‡ช":"1f1f5-1f1ea","๐Ÿ‡ต๐Ÿ‡ซ":"1f1f5-1f1eb","๐Ÿ‡ต๐Ÿ‡ฌ":"1f1f5-1f1ec","๐Ÿ‡ต๐Ÿ‡ญ":"1f1f5-1f1ed","๐Ÿ‡ต๐Ÿ‡ฐ":"1f1f5-1f1f0","๐Ÿ‡ต๐Ÿ‡ฑ":"1f1f5-1f1f1","๐Ÿ‡ต๐Ÿ‡ฒ":"1f1f5-1f1f2","๐Ÿ‡ต๐Ÿ‡ณ":"1f1f5-1f1f3","๐Ÿ‡ต๐Ÿ‡ท":"1f1f5-1f1f7","๐Ÿ‡ต๐Ÿ‡ธ":"1f1f5-1f1f8","๐Ÿ‡ต๐Ÿ‡น":"1f1f5-1f1f9","๐Ÿ‡ต๐Ÿ‡ผ":"1f1f5-1f1fc","๐Ÿ‡ต๐Ÿ‡พ":"1f1f5-1f1fe","๐Ÿ‡ถ๐Ÿ‡ฆ":"1f1f6-1f1e6","๐Ÿ‡ท๐Ÿ‡ช":"1f1f7-1f1ea","๐Ÿ‡ท๐Ÿ‡ด":"1f1f7-1f1f4","๐Ÿ‡ท๐Ÿ‡ธ":"1f1f7-1f1f8","๐Ÿ‡ท๐Ÿ‡บ":"1f1f7-1f1fa","๐Ÿ‡ท๐Ÿ‡ผ":"1f1f7-1f1fc","๐Ÿ‡ธ๐Ÿ‡ฆ":"1f1f8-1f1e6","๐Ÿ‡ธ๐Ÿ‡ง":"1f1f8-1f1e7","๐Ÿ‡ธ๐Ÿ‡จ":"1f1f8-1f1e8","๐Ÿ‡ธ๐Ÿ‡ฉ":"1f1f8-1f1e9","๐Ÿ‡ธ๐Ÿ‡ช":"1f1f8-1f1ea","๐Ÿ‡ธ๐Ÿ‡ฌ":"1f1f8-1f1ec","๐Ÿ‡ธ๐Ÿ‡ญ":"1f1f8-1f1ed","๐Ÿ‡ธ๐Ÿ‡ฎ":"1f1f8-1f1ee","๐Ÿ‡ธ๐Ÿ‡ฏ":"1f1f8-1f1ef","๐Ÿ‡ธ๐Ÿ‡ฐ":"1f1f8-1f1f0","๐Ÿ‡ธ๐Ÿ‡ฑ":"1f1f8-1f1f1","๐Ÿ‡ธ๐Ÿ‡ฒ":"1f1f8-1f1f2","๐Ÿ‡ธ๐Ÿ‡ณ":"1f1f8-1f1f3","๐Ÿ‡ธ๐Ÿ‡ด":"1f1f8-1f1f4","๐Ÿ‡ธ๐Ÿ‡ท":"1f1f8-1f1f7","๐Ÿ‡ธ๐Ÿ‡ธ":"1f1f8-1f1f8","๐Ÿ‡ธ๐Ÿ‡น":"1f1f8-1f1f9","๐Ÿ‡ธ๐Ÿ‡ป":"1f1f8-1f1fb","๐Ÿ‡ธ๐Ÿ‡ฝ":"1f1f8-1f1fd","๐Ÿ‡ธ๐Ÿ‡พ":"1f1f8-1f1fe","๐Ÿ‡ธ๐Ÿ‡ฟ":"1f1f8-1f1ff","๐Ÿ‡น๐Ÿ‡ฆ":"1f1f9-1f1e6","๐Ÿ‡น๐Ÿ‡จ":"1f1f9-1f1e8","๐Ÿ‡น๐Ÿ‡ฉ":"1f1f9-1f1e9","๐Ÿ‡น๐Ÿ‡ซ":"1f1f9-1f1eb","๐Ÿ‡น๐Ÿ‡ฌ":"1f1f9-1f1ec","๐Ÿ‡น๐Ÿ‡ญ":"1f1f9-1f1ed","๐Ÿ‡น๐Ÿ‡ฏ":"1f1f9-1f1ef","๐Ÿ‡น๐Ÿ‡ฐ":"1f1f9-1f1f0","๐Ÿ‡น๐Ÿ‡ฑ":"1f1f9-1f1f1","๐Ÿ‡น๐Ÿ‡ฒ":"1f1f9-1f1f2","๐Ÿ‡น๐Ÿ‡ณ":"1f1f9-1f1f3","๐Ÿ‡น๐Ÿ‡ด":"1f1f9-1f1f4","๐Ÿ‡น๐Ÿ‡ท":"1f1f9-1f1f7","๐Ÿ‡น๐Ÿ‡น":"1f1f9-1f1f9","๐Ÿ‡น๐Ÿ‡ป":"1f1f9-1f1fb","๐Ÿ‡น๐Ÿ‡ผ":"1f1f9-1f1fc","๐Ÿ‡น๐Ÿ‡ฟ":"1f1f9-1f1ff","๐Ÿ‡บ๐Ÿ‡ฆ":"1f1fa-1f1e6","๐Ÿ‡บ๐Ÿ‡ฌ":"1f1fa-1f1ec","๐Ÿ‡บ๐Ÿ‡ฒ":"1f1fa-1f1f2","๐Ÿ‡บ๐Ÿ‡ณ":"1f1fa-1f1f3","๐Ÿ‡บ๐Ÿ‡ธ":"1f1fa-1f1f8","๐Ÿ‡บ๐Ÿ‡พ":"1f1fa-1f1fe","๐Ÿ‡บ๐Ÿ‡ฟ":"1f1fa-1f1ff","๐Ÿ‡ป๐Ÿ‡ฆ":"1f1fb-1f1e6","๐Ÿ‡ป๐Ÿ‡จ":"1f1fb-1f1e8","๐Ÿ‡ป๐Ÿ‡ช":"1f1fb-1f1ea","๐Ÿ‡ป๐Ÿ‡ฌ":"1f1fb-1f1ec","๐Ÿ‡ป๐Ÿ‡ฎ":"1f1fb-1f1ee","๐Ÿ‡ป๐Ÿ‡ณ":"1f1fb-1f1f3","๐Ÿ‡ป๐Ÿ‡บ":"1f1fb-1f1fa","๐Ÿ‡ผ๐Ÿ‡ซ":"1f1fc-1f1eb","๐Ÿ‡ผ๐Ÿ‡ธ":"1f1fc-1f1f8","๐Ÿ‡ฝ๐Ÿ‡ฐ":"1f1fd-1f1f0","๐Ÿ‡พ๐Ÿ‡ช":"1f1fe-1f1ea","๐Ÿ‡พ๐Ÿ‡น":"1f1fe-1f1f9","๐Ÿ‡ฟ๐Ÿ‡ฆ":"1f1ff-1f1e6","๐Ÿ‡ฟ๐Ÿ‡ฒ":"1f1ff-1f1f2","๐Ÿ‡ฟ๐Ÿ‡ผ":"1f1ff-1f1fc","๐Ÿ‘จโ€โš•":"1f468-200d-2695-fe0f","๐Ÿ‘ฉโ€โš•":"1f469-200d-2695-fe0f","๐Ÿ‘จโ€๐ŸŽ“":"1f468-200d-1f393","๐Ÿ‘ฉโ€๐ŸŽ“":"1f469-200d-1f393","๐Ÿ‘จโ€๐Ÿซ":"1f468-200d-1f3eb","๐Ÿ‘ฉโ€๐Ÿซ":"1f469-200d-1f3eb","๐Ÿ‘จโ€โš–":"1f468-200d-2696-fe0f","๐Ÿ‘ฉโ€โš–":"1f469-200d-2696-fe0f","๐Ÿ‘จโ€๐ŸŒพ":"1f468-200d-1f33e","๐Ÿ‘ฉโ€๐ŸŒพ":"1f469-200d-1f33e","๐Ÿ‘จโ€๐Ÿณ":"1f468-200d-1f373","๐Ÿ‘ฉโ€๐Ÿณ":"1f469-200d-1f373","๐Ÿ‘จโ€๐Ÿ”ง":"1f468-200d-1f527","๐Ÿ‘ฉโ€๐Ÿ”ง":"1f469-200d-1f527","๐Ÿ‘จโ€๐Ÿญ":"1f468-200d-1f3ed","๐Ÿ‘ฉโ€๐Ÿญ":"1f469-200d-1f3ed","๐Ÿ‘จโ€๐Ÿ’ผ":"1f468-200d-1f4bc","๐Ÿ‘ฉโ€๐Ÿ’ผ":"1f469-200d-1f4bc","๐Ÿ‘จโ€๐Ÿ”ฌ":"1f468-200d-1f52c","๐Ÿ‘ฉโ€๐Ÿ”ฌ":"1f469-200d-1f52c","๐Ÿ‘จโ€๐Ÿ’ป":"1f468-200d-1f4bb","๐Ÿ‘ฉโ€๐Ÿ’ป":"1f469-200d-1f4bb","๐Ÿ‘จโ€๐ŸŽค":"1f468-200d-1f3a4","๐Ÿ‘ฉโ€๐ŸŽค":"1f469-200d-1f3a4","๐Ÿ‘จโ€๐ŸŽจ":"1f468-200d-1f3a8","๐Ÿ‘ฉโ€๐ŸŽจ":"1f469-200d-1f3a8","๐Ÿ‘จโ€โœˆ":"1f468-200d-2708-fe0f","๐Ÿ‘ฉโ€โœˆ":"1f469-200d-2708-fe0f","๐Ÿ‘จโ€๐Ÿš€":"1f468-200d-1f680","๐Ÿ‘ฉโ€๐Ÿš€":"1f469-200d-1f680","๐Ÿ‘จโ€๐Ÿš’":"1f468-200d-1f692","๐Ÿ‘ฉโ€๐Ÿš’":"1f469-200d-1f692","๐Ÿ‘ฎโ€โ™‚":"1f46e-200d-2642-fe0f","๐Ÿ‘ฎโ€โ™€":"1f46e-200d-2640-fe0f","๐Ÿ•ตโ€โ™‚":"1f575-fe0f-200d-2642-fe0f","๐Ÿ•ตโ€โ™€":"1f575-fe0f-200d-2640-fe0f","๐Ÿ’‚โ€โ™‚":"1f482-200d-2642-fe0f","๐Ÿ’‚โ€โ™€":"1f482-200d-2640-fe0f","๐Ÿ‘ทโ€โ™‚":"1f477-200d-2642-fe0f","๐Ÿ‘ทโ€โ™€":"1f477-200d-2640-fe0f","๐Ÿ‘ณโ€โ™‚":"1f473-200d-2642-fe0f","๐Ÿ‘ณโ€โ™€":"1f473-200d-2640-fe0f","๐Ÿ‘ฑโ€โ™‚":"1f471-200d-2642-fe0f","๐Ÿ‘ฑโ€โ™€":"1f471-200d-2640-fe0f","๐Ÿง™โ€โ™€":"1f9d9-200d-2640-fe0f","๐Ÿง™โ€โ™‚":"1f9d9-200d-2642-fe0f","๐Ÿงšโ€โ™€":"1f9da-200d-2640-fe0f","๐Ÿงšโ€โ™‚":"1f9da-200d-2642-fe0f","๐Ÿง›โ€โ™€":"1f9db-200d-2640-fe0f","๐Ÿง›โ€โ™‚":"1f9db-200d-2642-fe0f","๐Ÿงœโ€โ™€":"1f9dc-200d-2640-fe0f","๐Ÿงœโ€โ™‚":"1f9dc-200d-2642-fe0f","๐Ÿงโ€โ™€":"1f9dd-200d-2640-fe0f","๐Ÿงโ€โ™‚":"1f9dd-200d-2642-fe0f","๐Ÿงžโ€โ™€":"1f9de-200d-2640-fe0f","๐Ÿงžโ€โ™‚":"1f9de-200d-2642-fe0f","๐ŸงŸโ€โ™€":"1f9df-200d-2640-fe0f","๐ŸงŸโ€โ™‚":"1f9df-200d-2642-fe0f","๐Ÿ™โ€โ™‚":"1f64d-200d-2642-fe0f","๐Ÿ™โ€โ™€":"1f64d-200d-2640-fe0f","๐Ÿ™Žโ€โ™‚":"1f64e-200d-2642-fe0f","๐Ÿ™Žโ€โ™€":"1f64e-200d-2640-fe0f","๐Ÿ™…โ€โ™‚":"1f645-200d-2642-fe0f","๐Ÿ™…โ€โ™€":"1f645-200d-2640-fe0f","๐Ÿ™†โ€โ™‚":"1f646-200d-2642-fe0f","๐Ÿ™†โ€โ™€":"1f646-200d-2640-fe0f","๐Ÿ’โ€โ™‚":"1f481-200d-2642-fe0f","๐Ÿ’โ€โ™€":"1f481-200d-2640-fe0f","๐Ÿ™‹โ€โ™‚":"1f64b-200d-2642-fe0f","๐Ÿ™‹โ€โ™€":"1f64b-200d-2640-fe0f","๐Ÿ™‡โ€โ™‚":"1f647-200d-2642-fe0f","๐Ÿ™‡โ€โ™€":"1f647-200d-2640-fe0f","๐Ÿคฆโ€โ™‚":"1f926-200d-2642-fe0f","๐Ÿคฆโ€โ™€":"1f926-200d-2640-fe0f","๐Ÿคทโ€โ™‚":"1f937-200d-2642-fe0f","๐Ÿคทโ€โ™€":"1f937-200d-2640-fe0f","๐Ÿ’†โ€โ™‚":"1f486-200d-2642-fe0f","๐Ÿ’†โ€โ™€":"1f486-200d-2640-fe0f","๐Ÿ’‡โ€โ™‚":"1f487-200d-2642-fe0f","๐Ÿ’‡โ€โ™€":"1f487-200d-2640-fe0f","๐Ÿšถโ€โ™‚":"1f6b6-200d-2642-fe0f","๐Ÿšถโ€โ™€":"1f6b6-200d-2640-fe0f","๐Ÿƒโ€โ™‚":"1f3c3-200d-2642-fe0f","๐Ÿƒโ€โ™€":"1f3c3-200d-2640-fe0f","๐Ÿ‘ฏโ€โ™‚":"1f46f-200d-2642-fe0f","๐Ÿ‘ฏโ€โ™€":"1f46f-200d-2640-fe0f","๐Ÿง–โ€โ™€":"1f9d6-200d-2640-fe0f","๐Ÿง–โ€โ™‚":"1f9d6-200d-2642-fe0f","๐Ÿง—โ€โ™€":"1f9d7-200d-2640-fe0f","๐Ÿง—โ€โ™‚":"1f9d7-200d-2642-fe0f","๐Ÿง˜โ€โ™€":"1f9d8-200d-2640-fe0f","๐Ÿง˜โ€โ™‚":"1f9d8-200d-2642-fe0f","๐ŸŒโ€โ™‚":"1f3cc-fe0f-200d-2642-fe0f","๐ŸŒโ€โ™€":"1f3cc-fe0f-200d-2640-fe0f","๐Ÿ„โ€โ™‚":"1f3c4-200d-2642-fe0f","๐Ÿ„โ€โ™€":"1f3c4-200d-2640-fe0f","๐Ÿšฃโ€โ™‚":"1f6a3-200d-2642-fe0f","๐Ÿšฃโ€โ™€":"1f6a3-200d-2640-fe0f","๐ŸŠโ€โ™‚":"1f3ca-200d-2642-fe0f","๐ŸŠโ€โ™€":"1f3ca-200d-2640-fe0f","โ›นโ€โ™‚":"26f9-fe0f-200d-2642-fe0f","โ›นโ€โ™€":"26f9-fe0f-200d-2640-fe0f","๐Ÿ‹โ€โ™‚":"1f3cb-fe0f-200d-2642-fe0f","๐Ÿ‹โ€โ™€":"1f3cb-fe0f-200d-2640-fe0f","๐Ÿšดโ€โ™‚":"1f6b4-200d-2642-fe0f","๐Ÿšดโ€โ™€":"1f6b4-200d-2640-fe0f","๐Ÿšตโ€โ™‚":"1f6b5-200d-2642-fe0f","๐Ÿšตโ€โ™€":"1f6b5-200d-2640-fe0f","๐Ÿคธโ€โ™‚":"1f938-200d-2642-fe0f","๐Ÿคธโ€โ™€":"1f938-200d-2640-fe0f","๐Ÿคผโ€โ™‚":"1f93c-200d-2642-fe0f","๐Ÿคผโ€โ™€":"1f93c-200d-2640-fe0f","๐Ÿคฝโ€โ™‚":"1f93d-200d-2642-fe0f","๐Ÿคฝโ€โ™€":"1f93d-200d-2640-fe0f","๐Ÿคพโ€โ™‚":"1f93e-200d-2642-fe0f","๐Ÿคพโ€โ™€":"1f93e-200d-2640-fe0f","๐Ÿคนโ€โ™‚":"1f939-200d-2642-fe0f","๐Ÿคนโ€โ™€":"1f939-200d-2640-fe0f","๐Ÿ‘จโ€๐Ÿ‘ฆ":"1f468-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘ง":"1f468-200d-1f467","๐Ÿ‘ฉโ€๐Ÿ‘ฆ":"1f469-200d-1f466","๐Ÿ‘ฉโ€๐Ÿ‘ง":"1f469-200d-1f467","๐Ÿ‘โ€๐Ÿ—จ":"1f441-200d-1f5e8","#๏ธโƒฃ":"23-20e3","*๏ธโƒฃ":"2a-20e3","0๏ธโƒฃ":"30-20e3","1๏ธโƒฃ":"31-20e3","2๏ธโƒฃ":"32-20e3","3๏ธโƒฃ":"33-20e3","4๏ธโƒฃ":"34-20e3","5๏ธโƒฃ":"35-20e3","6๏ธโƒฃ":"36-20e3","7๏ธโƒฃ":"37-20e3","8๏ธโƒฃ":"38-20e3","9๏ธโƒฃ":"39-20e3","๐Ÿณโ€๐ŸŒˆ":"1f3f3-fe0f-200d-1f308","๐Ÿ‘จโ€โš•๏ธ":"1f468-200d-2695-fe0f","๐Ÿ‘จ๐Ÿปโ€โš•":"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","๐Ÿ‘ฉโ€โš•๏ธ":"1f469-200d-2695-fe0f","๐Ÿ‘ฉ๐Ÿปโ€โš•":"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","๐Ÿ‘จ๐Ÿปโ€๐ŸŽ“":"1f468-1f3fb-200d-1f393","๐Ÿ‘จ๐Ÿผโ€๐ŸŽ“":"1f468-1f3fc-200d-1f393","๐Ÿ‘จ๐Ÿฝโ€๐ŸŽ“":"1f468-1f3fd-200d-1f393","๐Ÿ‘จ๐Ÿพโ€๐ŸŽ“":"1f468-1f3fe-200d-1f393","๐Ÿ‘จ๐Ÿฟโ€๐ŸŽ“":"1f468-1f3ff-200d-1f393","๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽ“":"1f469-1f3fb-200d-1f393","๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽ“":"1f469-1f3fc-200d-1f393","๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽ“":"1f469-1f3fd-200d-1f393","๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽ“":"1f469-1f3fe-200d-1f393","๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽ“":"1f469-1f3ff-200d-1f393","๐Ÿ‘จ๐Ÿปโ€๐Ÿซ":"1f468-1f3fb-200d-1f3eb","๐Ÿ‘จ๐Ÿผโ€๐Ÿซ":"1f468-1f3fc-200d-1f3eb","๐Ÿ‘จ๐Ÿฝโ€๐Ÿซ":"1f468-1f3fd-200d-1f3eb","๐Ÿ‘จ๐Ÿพโ€๐Ÿซ":"1f468-1f3fe-200d-1f3eb","๐Ÿ‘จ๐Ÿฟโ€๐Ÿซ":"1f468-1f3ff-200d-1f3eb","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿซ":"1f469-1f3fb-200d-1f3eb","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿซ":"1f469-1f3fc-200d-1f3eb","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿซ":"1f469-1f3fd-200d-1f3eb","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿซ":"1f469-1f3fe-200d-1f3eb","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿซ":"1f469-1f3ff-200d-1f3eb","๐Ÿ‘จโ€โš–๏ธ":"1f468-200d-2696-fe0f","๐Ÿ‘จ๐Ÿปโ€โš–":"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","๐Ÿ‘ฉโ€โš–๏ธ":"1f469-200d-2696-fe0f","๐Ÿ‘ฉ๐Ÿปโ€โš–":"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","๐Ÿ‘จ๐Ÿปโ€๐ŸŒพ":"1f468-1f3fb-200d-1f33e","๐Ÿ‘จ๐Ÿผโ€๐ŸŒพ":"1f468-1f3fc-200d-1f33e","๐Ÿ‘จ๐Ÿฝโ€๐ŸŒพ":"1f468-1f3fd-200d-1f33e","๐Ÿ‘จ๐Ÿพโ€๐ŸŒพ":"1f468-1f3fe-200d-1f33e","๐Ÿ‘จ๐Ÿฟโ€๐ŸŒพ":"1f468-1f3ff-200d-1f33e","๐Ÿ‘ฉ๐Ÿปโ€๐ŸŒพ":"1f469-1f3fb-200d-1f33e","๐Ÿ‘ฉ๐Ÿผโ€๐ŸŒพ":"1f469-1f3fc-200d-1f33e","๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŒพ":"1f469-1f3fd-200d-1f33e","๐Ÿ‘ฉ๐Ÿพโ€๐ŸŒพ":"1f469-1f3fe-200d-1f33e","๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŒพ":"1f469-1f3ff-200d-1f33e","๐Ÿ‘จ๐Ÿปโ€๐Ÿณ":"1f468-1f3fb-200d-1f373","๐Ÿ‘จ๐Ÿผโ€๐Ÿณ":"1f468-1f3fc-200d-1f373","๐Ÿ‘จ๐Ÿฝโ€๐Ÿณ":"1f468-1f3fd-200d-1f373","๐Ÿ‘จ๐Ÿพโ€๐Ÿณ":"1f468-1f3fe-200d-1f373","๐Ÿ‘จ๐Ÿฟโ€๐Ÿณ":"1f468-1f3ff-200d-1f373","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿณ":"1f469-1f3fb-200d-1f373","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿณ":"1f469-1f3fc-200d-1f373","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿณ":"1f469-1f3fd-200d-1f373","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿณ":"1f469-1f3fe-200d-1f373","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿณ":"1f469-1f3ff-200d-1f373","๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ง":"1f468-1f3fb-200d-1f527","๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ง":"1f468-1f3fc-200d-1f527","๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ง":"1f468-1f3fd-200d-1f527","๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ง":"1f468-1f3fe-200d-1f527","๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ง":"1f468-1f3ff-200d-1f527","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ง":"1f469-1f3fb-200d-1f527","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ง":"1f469-1f3fc-200d-1f527","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ง":"1f469-1f3fd-200d-1f527","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ง":"1f469-1f3fe-200d-1f527","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ง":"1f469-1f3ff-200d-1f527","๐Ÿ‘จ๐Ÿปโ€๐Ÿญ":"1f468-1f3fb-200d-1f3ed","๐Ÿ‘จ๐Ÿผโ€๐Ÿญ":"1f468-1f3fc-200d-1f3ed","๐Ÿ‘จ๐Ÿฝโ€๐Ÿญ":"1f468-1f3fd-200d-1f3ed","๐Ÿ‘จ๐Ÿพโ€๐Ÿญ":"1f468-1f3fe-200d-1f3ed","๐Ÿ‘จ๐Ÿฟโ€๐Ÿญ":"1f468-1f3ff-200d-1f3ed","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿญ":"1f469-1f3fb-200d-1f3ed","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿญ":"1f469-1f3fc-200d-1f3ed","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿญ":"1f469-1f3fd-200d-1f3ed","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿญ":"1f469-1f3fe-200d-1f3ed","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿญ":"1f469-1f3ff-200d-1f3ed","๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ผ":"1f468-1f3fb-200d-1f4bc","๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ":"1f468-1f3fc-200d-1f4bc","๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ผ":"1f468-1f3fd-200d-1f4bc","๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ผ":"1f468-1f3fe-200d-1f4bc","๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ผ":"1f468-1f3ff-200d-1f4bc","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ผ":"1f469-1f3fb-200d-1f4bc","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ผ":"1f469-1f3fc-200d-1f4bc","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ผ":"1f469-1f3fd-200d-1f4bc","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ผ":"1f469-1f3fe-200d-1f4bc","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ผ":"1f469-1f3ff-200d-1f4bc","๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ฌ":"1f468-1f3fb-200d-1f52c","๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ฌ":"1f468-1f3fc-200d-1f52c","๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ฌ":"1f468-1f3fd-200d-1f52c","๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ฌ":"1f468-1f3fe-200d-1f52c","๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ฌ":"1f468-1f3ff-200d-1f52c","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ฌ":"1f469-1f3fb-200d-1f52c","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ฌ":"1f469-1f3fc-200d-1f52c","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ฌ":"1f469-1f3fd-200d-1f52c","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ฌ":"1f469-1f3fe-200d-1f52c","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ฌ":"1f469-1f3ff-200d-1f52c","๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป":"1f468-1f3fb-200d-1f4bb","๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป":"1f468-1f3fc-200d-1f4bb","๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ป":"1f468-1f3fd-200d-1f4bb","๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป":"1f468-1f3fe-200d-1f4bb","๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ป":"1f468-1f3ff-200d-1f4bb","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป":"1f469-1f3fb-200d-1f4bb","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ป":"1f469-1f3fc-200d-1f4bb","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป":"1f469-1f3fd-200d-1f4bb","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ป":"1f469-1f3fe-200d-1f4bb","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ป":"1f469-1f3ff-200d-1f4bb","๐Ÿ‘จ๐Ÿปโ€๐ŸŽค":"1f468-1f3fb-200d-1f3a4","๐Ÿ‘จ๐Ÿผโ€๐ŸŽค":"1f468-1f3fc-200d-1f3a4","๐Ÿ‘จ๐Ÿฝโ€๐ŸŽค":"1f468-1f3fd-200d-1f3a4","๐Ÿ‘จ๐Ÿพโ€๐ŸŽค":"1f468-1f3fe-200d-1f3a4","๐Ÿ‘จ๐Ÿฟโ€๐ŸŽค":"1f468-1f3ff-200d-1f3a4","๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽค":"1f469-1f3fb-200d-1f3a4","๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽค":"1f469-1f3fc-200d-1f3a4","๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽค":"1f469-1f3fd-200d-1f3a4","๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽค":"1f469-1f3fe-200d-1f3a4","๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽค":"1f469-1f3ff-200d-1f3a4","๐Ÿ‘จ๐Ÿปโ€๐ŸŽจ":"1f468-1f3fb-200d-1f3a8","๐Ÿ‘จ๐Ÿผโ€๐ŸŽจ":"1f468-1f3fc-200d-1f3a8","๐Ÿ‘จ๐Ÿฝโ€๐ŸŽจ":"1f468-1f3fd-200d-1f3a8","๐Ÿ‘จ๐Ÿพโ€๐ŸŽจ":"1f468-1f3fe-200d-1f3a8","๐Ÿ‘จ๐Ÿฟโ€๐ŸŽจ":"1f468-1f3ff-200d-1f3a8","๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽจ":"1f469-1f3fb-200d-1f3a8","๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽจ":"1f469-1f3fc-200d-1f3a8","๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽจ":"1f469-1f3fd-200d-1f3a8","๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽจ":"1f469-1f3fe-200d-1f3a8","๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽจ":"1f469-1f3ff-200d-1f3a8","๐Ÿ‘จโ€โœˆ๏ธ":"1f468-200d-2708-fe0f","๐Ÿ‘จ๐Ÿปโ€โœˆ":"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","๐Ÿ‘ฉโ€โœˆ๏ธ":"1f469-200d-2708-fe0f","๐Ÿ‘ฉ๐Ÿปโ€โœˆ":"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","๐Ÿ‘จ๐Ÿปโ€๐Ÿš€":"1f468-1f3fb-200d-1f680","๐Ÿ‘จ๐Ÿผโ€๐Ÿš€":"1f468-1f3fc-200d-1f680","๐Ÿ‘จ๐Ÿฝโ€๐Ÿš€":"1f468-1f3fd-200d-1f680","๐Ÿ‘จ๐Ÿพโ€๐Ÿš€":"1f468-1f3fe-200d-1f680","๐Ÿ‘จ๐Ÿฟโ€๐Ÿš€":"1f468-1f3ff-200d-1f680","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš€":"1f469-1f3fb-200d-1f680","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš€":"1f469-1f3fc-200d-1f680","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš€":"1f469-1f3fd-200d-1f680","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš€":"1f469-1f3fe-200d-1f680","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš€":"1f469-1f3ff-200d-1f680","๐Ÿ‘จ๐Ÿปโ€๐Ÿš’":"1f468-1f3fb-200d-1f692","๐Ÿ‘จ๐Ÿผโ€๐Ÿš’":"1f468-1f3fc-200d-1f692","๐Ÿ‘จ๐Ÿฝโ€๐Ÿš’":"1f468-1f3fd-200d-1f692","๐Ÿ‘จ๐Ÿพโ€๐Ÿš’":"1f468-1f3fe-200d-1f692","๐Ÿ‘จ๐Ÿฟโ€๐Ÿš’":"1f468-1f3ff-200d-1f692","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš’":"1f469-1f3fb-200d-1f692","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš’":"1f469-1f3fc-200d-1f692","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš’":"1f469-1f3fd-200d-1f692","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš’":"1f469-1f3fe-200d-1f692","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš’":"1f469-1f3ff-200d-1f692","๐Ÿ‘ฎโ€โ™‚๏ธ":"1f46e-200d-2642-fe0f","๐Ÿ‘ฎ๐Ÿปโ€โ™‚":"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","๐Ÿ‘ฎโ€โ™€๏ธ":"1f46e-200d-2640-fe0f","๐Ÿ‘ฎ๐Ÿปโ€โ™€":"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","๐Ÿ•ตโ€โ™‚๏ธ":"1f575-fe0f-200d-2642-fe0f","๐Ÿ•ต๏ธโ€โ™‚":"1f575-fe0f-200d-2642-fe0f","๐Ÿ•ต๐Ÿปโ€โ™‚":"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","๐Ÿ•ตโ€โ™€๏ธ":"1f575-fe0f-200d-2640-fe0f","๐Ÿ•ต๏ธโ€โ™€":"1f575-fe0f-200d-2640-fe0f","๐Ÿ•ต๐Ÿปโ€โ™€":"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","๐Ÿ’‚โ€โ™‚๏ธ":"1f482-200d-2642-fe0f","๐Ÿ’‚๐Ÿปโ€โ™‚":"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","๐Ÿ’‚โ€โ™€๏ธ":"1f482-200d-2640-fe0f","๐Ÿ’‚๐Ÿปโ€โ™€":"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","๐Ÿ‘ทโ€โ™‚๏ธ":"1f477-200d-2642-fe0f","๐Ÿ‘ท๐Ÿปโ€โ™‚":"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","๐Ÿ‘ทโ€โ™€๏ธ":"1f477-200d-2640-fe0f","๐Ÿ‘ท๐Ÿปโ€โ™€":"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","๐Ÿ‘ณโ€โ™‚๏ธ":"1f473-200d-2642-fe0f","๐Ÿ‘ณ๐Ÿปโ€โ™‚":"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","๐Ÿ‘ณโ€โ™€๏ธ":"1f473-200d-2640-fe0f","๐Ÿ‘ณ๐Ÿปโ€โ™€":"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","๐Ÿ‘ฑโ€โ™‚๏ธ":"1f471-200d-2642-fe0f","๐Ÿ‘ฑ๐Ÿปโ€โ™‚":"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","๐Ÿ‘ฑโ€โ™€๏ธ":"1f471-200d-2640-fe0f","๐Ÿ‘ฑ๐Ÿปโ€โ™€":"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","๐Ÿง™โ€โ™€๏ธ":"1f9d9-200d-2640-fe0f","๐Ÿง™๐Ÿปโ€โ™€":"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","๐Ÿง™โ€โ™‚๏ธ":"1f9d9-200d-2642-fe0f","๐Ÿง™๐Ÿปโ€โ™‚":"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","๐Ÿงšโ€โ™€๏ธ":"1f9da-200d-2640-fe0f","๐Ÿงš๐Ÿปโ€โ™€":"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","๐Ÿงšโ€โ™‚๏ธ":"1f9da-200d-2642-fe0f","๐Ÿงš๐Ÿปโ€โ™‚":"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","๐Ÿง›โ€โ™€๏ธ":"1f9db-200d-2640-fe0f","๐Ÿง›๐Ÿปโ€โ™€":"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","๐Ÿง›โ€โ™‚๏ธ":"1f9db-200d-2642-fe0f","๐Ÿง›๐Ÿปโ€โ™‚":"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","๐Ÿงœโ€โ™€๏ธ":"1f9dc-200d-2640-fe0f","๐Ÿงœ๐Ÿปโ€โ™€":"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","๐Ÿงœโ€โ™‚๏ธ":"1f9dc-200d-2642-fe0f","๐Ÿงœ๐Ÿปโ€โ™‚":"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","๐Ÿงโ€โ™€๏ธ":"1f9dd-200d-2640-fe0f","๐Ÿง๐Ÿปโ€โ™€":"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","๐Ÿงโ€โ™‚๏ธ":"1f9dd-200d-2642-fe0f","๐Ÿง๐Ÿปโ€โ™‚":"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","๐Ÿงžโ€โ™€๏ธ":"1f9de-200d-2640-fe0f","๐Ÿงžโ€โ™‚๏ธ":"1f9de-200d-2642-fe0f","๐ŸงŸโ€โ™€๏ธ":"1f9df-200d-2640-fe0f","๐ŸงŸโ€โ™‚๏ธ":"1f9df-200d-2642-fe0f","๐Ÿ™โ€โ™‚๏ธ":"1f64d-200d-2642-fe0f","๐Ÿ™๐Ÿปโ€โ™‚":"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","๐Ÿ™โ€โ™€๏ธ":"1f64d-200d-2640-fe0f","๐Ÿ™๐Ÿปโ€โ™€":"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","๐Ÿ™Žโ€โ™‚๏ธ":"1f64e-200d-2642-fe0f","๐Ÿ™Ž๐Ÿปโ€โ™‚":"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","๐Ÿ™Žโ€โ™€๏ธ":"1f64e-200d-2640-fe0f","๐Ÿ™Ž๐Ÿปโ€โ™€":"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","๐Ÿ™…โ€โ™‚๏ธ":"1f645-200d-2642-fe0f","๐Ÿ™…๐Ÿปโ€โ™‚":"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","๐Ÿ™…โ€โ™€๏ธ":"1f645-200d-2640-fe0f","๐Ÿ™…๐Ÿปโ€โ™€":"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","๐Ÿ™†โ€โ™‚๏ธ":"1f646-200d-2642-fe0f","๐Ÿ™†๐Ÿปโ€โ™‚":"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","๐Ÿ™†โ€โ™€๏ธ":"1f646-200d-2640-fe0f","๐Ÿ™†๐Ÿปโ€โ™€":"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","๐Ÿ’โ€โ™‚๏ธ":"1f481-200d-2642-fe0f","๐Ÿ’๐Ÿปโ€โ™‚":"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","๐Ÿ’โ€โ™€๏ธ":"1f481-200d-2640-fe0f","๐Ÿ’๐Ÿปโ€โ™€":"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","๐Ÿ™‹โ€โ™‚๏ธ":"1f64b-200d-2642-fe0f","๐Ÿ™‹๐Ÿปโ€โ™‚":"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","๐Ÿ™‹โ€โ™€๏ธ":"1f64b-200d-2640-fe0f","๐Ÿ™‹๐Ÿปโ€โ™€":"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","๐Ÿ™‡โ€โ™‚๏ธ":"1f647-200d-2642-fe0f","๐Ÿ™‡๐Ÿปโ€โ™‚":"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","๐Ÿ™‡โ€โ™€๏ธ":"1f647-200d-2640-fe0f","๐Ÿ™‡๐Ÿปโ€โ™€":"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","๐Ÿคฆโ€โ™‚๏ธ":"1f926-200d-2642-fe0f","๐Ÿคฆ๐Ÿปโ€โ™‚":"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","๐Ÿคฆโ€โ™€๏ธ":"1f926-200d-2640-fe0f","๐Ÿคฆ๐Ÿปโ€โ™€":"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","๐Ÿคทโ€โ™‚๏ธ":"1f937-200d-2642-fe0f","๐Ÿคท๐Ÿปโ€โ™‚":"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","๐Ÿคทโ€โ™€๏ธ":"1f937-200d-2640-fe0f","๐Ÿคท๐Ÿปโ€โ™€":"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","๐Ÿ’†โ€โ™‚๏ธ":"1f486-200d-2642-fe0f","๐Ÿ’†๐Ÿปโ€โ™‚":"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","๐Ÿ’†โ€โ™€๏ธ":"1f486-200d-2640-fe0f","๐Ÿ’†๐Ÿปโ€โ™€":"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","๐Ÿ’‡โ€โ™‚๏ธ":"1f487-200d-2642-fe0f","๐Ÿ’‡๐Ÿปโ€โ™‚":"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","๐Ÿ’‡โ€โ™€๏ธ":"1f487-200d-2640-fe0f","๐Ÿ’‡๐Ÿปโ€โ™€":"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","๐Ÿšถโ€โ™‚๏ธ":"1f6b6-200d-2642-fe0f","๐Ÿšถ๐Ÿปโ€โ™‚":"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","๐Ÿšถโ€โ™€๏ธ":"1f6b6-200d-2640-fe0f","๐Ÿšถ๐Ÿปโ€โ™€":"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","๐Ÿƒโ€โ™‚๏ธ":"1f3c3-200d-2642-fe0f","๐Ÿƒ๐Ÿปโ€โ™‚":"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","๐Ÿƒโ€โ™€๏ธ":"1f3c3-200d-2640-fe0f","๐Ÿƒ๐Ÿปโ€โ™€":"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","๐Ÿ‘ฏโ€โ™‚๏ธ":"1f46f-200d-2642-fe0f","๐Ÿ‘ฏโ€โ™€๏ธ":"1f46f-200d-2640-fe0f","๐Ÿง–โ€โ™€๏ธ":"1f9d6-200d-2640-fe0f","๐Ÿง–๐Ÿปโ€โ™€":"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","๐Ÿง–โ€โ™‚๏ธ":"1f9d6-200d-2642-fe0f","๐Ÿง–๐Ÿปโ€โ™‚":"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","๐Ÿง—โ€โ™€๏ธ":"1f9d7-200d-2640-fe0f","๐Ÿง—๐Ÿปโ€โ™€":"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","๐Ÿง—โ€โ™‚๏ธ":"1f9d7-200d-2642-fe0f","๐Ÿง—๐Ÿปโ€โ™‚":"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","๐Ÿง˜โ€โ™€๏ธ":"1f9d8-200d-2640-fe0f","๐Ÿง˜๐Ÿปโ€โ™€":"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","๐Ÿง˜โ€โ™‚๏ธ":"1f9d8-200d-2642-fe0f","๐Ÿง˜๐Ÿปโ€โ™‚":"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","๐ŸŒโ€โ™‚๏ธ":"1f3cc-fe0f-200d-2642-fe0f","๐ŸŒ๏ธโ€โ™‚":"1f3cc-fe0f-200d-2642-fe0f","๐ŸŒ๐Ÿปโ€โ™‚":"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","๐ŸŒโ€โ™€๏ธ":"1f3cc-fe0f-200d-2640-fe0f","๐ŸŒ๏ธโ€โ™€":"1f3cc-fe0f-200d-2640-fe0f","๐ŸŒ๐Ÿปโ€โ™€":"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","๐Ÿ„โ€โ™‚๏ธ":"1f3c4-200d-2642-fe0f","๐Ÿ„๐Ÿปโ€โ™‚":"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","๐Ÿ„โ€โ™€๏ธ":"1f3c4-200d-2640-fe0f","๐Ÿ„๐Ÿปโ€โ™€":"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","๐Ÿšฃโ€โ™‚๏ธ":"1f6a3-200d-2642-fe0f","๐Ÿšฃ๐Ÿปโ€โ™‚":"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","๐Ÿšฃโ€โ™€๏ธ":"1f6a3-200d-2640-fe0f","๐Ÿšฃ๐Ÿปโ€โ™€":"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","๐ŸŠโ€โ™‚๏ธ":"1f3ca-200d-2642-fe0f","๐ŸŠ๐Ÿปโ€โ™‚":"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","๐ŸŠโ€โ™€๏ธ":"1f3ca-200d-2640-fe0f","๐ŸŠ๐Ÿปโ€โ™€":"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","โ›นโ€โ™‚๏ธ":"26f9-fe0f-200d-2642-fe0f","โ›น๏ธโ€โ™‚":"26f9-fe0f-200d-2642-fe0f","โ›น๐Ÿปโ€โ™‚":"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","โ›นโ€โ™€๏ธ":"26f9-fe0f-200d-2640-fe0f","โ›น๏ธโ€โ™€":"26f9-fe0f-200d-2640-fe0f","โ›น๐Ÿปโ€โ™€":"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","๐Ÿ‹โ€โ™‚๏ธ":"1f3cb-fe0f-200d-2642-fe0f","๐Ÿ‹๏ธโ€โ™‚":"1f3cb-fe0f-200d-2642-fe0f","๐Ÿ‹๐Ÿปโ€โ™‚":"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","๐Ÿ‹โ€โ™€๏ธ":"1f3cb-fe0f-200d-2640-fe0f","๐Ÿ‹๏ธโ€โ™€":"1f3cb-fe0f-200d-2640-fe0f","๐Ÿ‹๐Ÿปโ€โ™€":"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","๐Ÿšดโ€โ™‚๏ธ":"1f6b4-200d-2642-fe0f","๐Ÿšด๐Ÿปโ€โ™‚":"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","๐Ÿšดโ€โ™€๏ธ":"1f6b4-200d-2640-fe0f","๐Ÿšด๐Ÿปโ€โ™€":"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","๐Ÿšตโ€โ™‚๏ธ":"1f6b5-200d-2642-fe0f","๐Ÿšต๐Ÿปโ€โ™‚":"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","๐Ÿšตโ€โ™€๏ธ":"1f6b5-200d-2640-fe0f","๐Ÿšต๐Ÿปโ€โ™€":"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","๐Ÿคธโ€โ™‚๏ธ":"1f938-200d-2642-fe0f","๐Ÿคธ๐Ÿปโ€โ™‚":"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","๐Ÿคธโ€โ™€๏ธ":"1f938-200d-2640-fe0f","๐Ÿคธ๐Ÿปโ€โ™€":"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","๐Ÿคผโ€โ™‚๏ธ":"1f93c-200d-2642-fe0f","๐Ÿคผโ€โ™€๏ธ":"1f93c-200d-2640-fe0f","๐Ÿคฝโ€โ™‚๏ธ":"1f93d-200d-2642-fe0f","๐Ÿคฝ๐Ÿปโ€โ™‚":"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","๐Ÿคฝโ€โ™€๏ธ":"1f93d-200d-2640-fe0f","๐Ÿคฝ๐Ÿปโ€โ™€":"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","๐Ÿคพโ€โ™‚๏ธ":"1f93e-200d-2642-fe0f","๐Ÿคพ๐Ÿปโ€โ™‚":"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","๐Ÿคพโ€โ™€๏ธ":"1f93e-200d-2640-fe0f","๐Ÿคพ๐Ÿปโ€โ™€":"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","๐Ÿคนโ€โ™‚๏ธ":"1f939-200d-2642-fe0f","๐Ÿคน๐Ÿปโ€โ™‚":"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","๐Ÿคนโ€โ™€๏ธ":"1f939-200d-2640-fe0f","๐Ÿคน๐Ÿปโ€โ™€":"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","๐Ÿ‘โ€๐Ÿ—จ๏ธ":"1f441-200d-1f5e8","๐Ÿ‘๏ธโ€๐Ÿ—จ":"1f441-200d-1f5e8","๐Ÿณ๏ธโ€๐ŸŒˆ":"1f3f3-fe0f-200d-1f308","๐Ÿ‘จ๐Ÿปโ€โš•๏ธ":"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","๐Ÿ‘ฉ๐Ÿปโ€โš•๏ธ":"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","๐Ÿ‘จ๐Ÿปโ€โš–๏ธ":"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","๐Ÿ‘ฉ๐Ÿปโ€โš–๏ธ":"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","๐Ÿ‘จ๐Ÿปโ€โœˆ๏ธ":"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","๐Ÿ‘ฉ๐Ÿปโ€โœˆ๏ธ":"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","๐Ÿ‘ฎ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ‘ฎ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ•ต๏ธโ€โ™‚๏ธ":"1f575-fe0f-200d-2642-fe0f","๐Ÿ•ต๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ•ต๏ธโ€โ™€๏ธ":"1f575-fe0f-200d-2640-fe0f","๐Ÿ•ต๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ’‚๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ’‚๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ‘ท๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ‘ท๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ‘ณ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ‘ณ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ‘ฑ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ‘ฑ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง™๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง™๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿงš๐Ÿปโ€โ™€๏ธ":"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","๐Ÿงš๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿง›๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง›๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿงœ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿงœ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿง๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ™Ž๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™Ž๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ™…๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™…๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ™†๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™†๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ’๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ’๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ™‹๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™‹๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ™‡๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™‡๐Ÿปโ€โ™€๏ธ":"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","๐Ÿคฆ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿคฆ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿคท๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿคท๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ’†๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ’†๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ’‡๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ’‡๐Ÿปโ€โ™€๏ธ":"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","๐Ÿšถ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿšถ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿƒ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿƒ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง–๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง–๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿง—๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง—๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿง˜๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง˜๐Ÿปโ€โ™‚๏ธ":"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","๐ŸŒ๏ธโ€โ™‚๏ธ":"1f3cc-fe0f-200d-2642-fe0f","๐ŸŒ๐Ÿปโ€โ™‚๏ธ":"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","๐ŸŒ๏ธโ€โ™€๏ธ":"1f3cc-fe0f-200d-2640-fe0f","๐ŸŒ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ„๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ„๐Ÿปโ€โ™€๏ธ":"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","๐Ÿšฃ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿšฃ๐Ÿปโ€โ™€๏ธ":"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","๐ŸŠ๐Ÿปโ€โ™‚๏ธ":"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","๐ŸŠ๐Ÿปโ€โ™€๏ธ":"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","โ›น๏ธโ€โ™‚๏ธ":"26f9-fe0f-200d-2642-fe0f","โ›น๐Ÿปโ€โ™‚๏ธ":"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","โ›น๏ธโ€โ™€๏ธ":"26f9-fe0f-200d-2640-fe0f","โ›น๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ‹๏ธโ€โ™‚๏ธ":"1f3cb-fe0f-200d-2642-fe0f","๐Ÿ‹๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ‹๏ธโ€โ™€๏ธ":"1f3cb-fe0f-200d-2640-fe0f","๐Ÿ‹๐Ÿปโ€โ™€๏ธ":"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","๐Ÿšด๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿšด๐Ÿปโ€โ™€๏ธ":"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","๐Ÿšต๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿšต๐Ÿปโ€โ™€๏ธ":"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","๐Ÿคธ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿคธ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿคฝ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿคฝ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿคพ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿคพ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿคน๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿคน๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ‘ฉโ€โคโ€๐Ÿ‘จ":"1f469-200d-2764-fe0f-200d-1f468","๐Ÿ‘จโ€โคโ€๐Ÿ‘จ":"1f468-200d-2764-fe0f-200d-1f468","๐Ÿ‘ฉโ€โคโ€๐Ÿ‘ฉ":"1f469-200d-2764-fe0f-200d-1f469","๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ":"1f468-200d-1f469-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง":"1f468-200d-1f469-200d-1f467","๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ":"1f468-200d-1f468-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง":"1f468-200d-1f468-200d-1f467","๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ":"1f469-200d-1f469-200d-1f466","๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง":"1f469-200d-1f469-200d-1f467","๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ":"1f468-200d-1f466-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ":"1f468-200d-1f467-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง":"1f468-200d-1f467-200d-1f467","๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ":"1f469-200d-1f466-200d-1f466","๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ":"1f469-200d-1f467-200d-1f466","๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง":"1f469-200d-1f467-200d-1f467","๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ":"1f441-200d-1f5e8","๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ":"1f469-200d-2764-fe0f-200d-1f468","๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ":"1f468-200d-2764-fe0f-200d-1f468","๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ":"1f469-200d-2764-fe0f-200d-1f469","๐Ÿ‘ฉโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468","๐Ÿ‘จโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ":"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468","๐Ÿ‘ฉโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469","๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ":"1f468-200d-1f469-200d-1f467-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ":"1f468-200d-1f469-200d-1f466-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง":"1f468-200d-1f469-200d-1f467-200d-1f467","๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ":"1f468-200d-1f468-200d-1f467-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ":"1f468-200d-1f468-200d-1f466-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง":"1f468-200d-1f468-200d-1f467-200d-1f467","๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ":"1f469-200d-1f469-200d-1f467-200d-1f466","๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ":"1f469-200d-1f469-200d-1f466-200d-1f466","๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง":"1f469-200d-1f469-200d-1f467-200d-1f467","๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ":"1f3f4-e0067-e0062-e0065-e006e-e0067-e007f","๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ":"1f3f4-e0067-e0062-e0073-e0063-e0074-e007f","๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ":"1f3f4-e0067-e0062-e0077-e006c-e0073-e007f","๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468","๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ":"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468","๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469"} \ No newline at end of file diff --git a/app/javascript/mastodon/emoji_utils.js b/app/javascript/mastodon/emoji_utils.js deleted file mode 100644 index 6475df571..000000000 --- a/app/javascript/mastodon/emoji_utils.js +++ /dev/null @@ -1,137 +0,0 @@ -// This code is largely borrowed from: -// https://github.com/missive/emoji-mart/blob/bbd4fbe/src/utils/index.js - -import data from './emoji_data_light'; - -const COLONS_REGEX = /^(?:\:([^\:]+)\:)(?:\:skin-tone-(\d)\:)?$/; - -function buildSearch(thisData) { - const search = []; - - let addToSearch = (strings, split) => { - if (!strings) { - return; - } - - (Array.isArray(strings) ? strings : [strings]).forEach((string) => { - (split ? string.split(/[-|_|\s]+/) : [string]).forEach((s) => { - s = s.toLowerCase(); - - if (search.indexOf(s) === -1) { - search.push(s); - } - }); - }); - }; - - addToSearch(thisData.short_names, true); - addToSearch(thisData.name, true); - addToSearch(thisData.keywords, false); - addToSearch(thisData.emoticons, false); - - return search; -} - -function unifiedToNative(unified) { - let unicodes = unified.split('-'), - codePoints = unicodes.map((u) => `0x${u}`); - - return String.fromCodePoint(...codePoints); -} - -function sanitize(emoji) { - let { name, short_names, skin_tone, skin_variations, emoticons, unified, custom, imageUrl } = emoji, - id = emoji.id || short_names[0], - colons = `:${id}:`; - - if (custom) { - return { - id, - name, - colons, - emoticons, - custom, - imageUrl, - }; - } - - if (skin_tone) { - colons += `:skin-tone-${skin_tone}:`; - } - - return { - id, - name, - colons, - emoticons, - unified: unified.toLowerCase(), - skin: skin_tone || (skin_variations ? 1 : null), - native: unifiedToNative(unified), - }; -} - -function getSanitizedData(emoji) { - return sanitize(getData(emoji)); -} - -function getData(emoji) { - let emojiData = {}; - - if (typeof emoji === 'string') { - let matches = emoji.match(COLONS_REGEX); - - if (matches) { - emoji = matches[1]; - - } - - if (data.short_names.hasOwnProperty(emoji)) { - emoji = data.short_names[emoji]; - } - - if (data.emojis.hasOwnProperty(emoji)) { - emojiData = data.emojis[emoji]; - } - } else if (emoji.custom) { - emojiData = emoji; - - emojiData.search = buildSearch({ - short_names: emoji.short_names, - name: emoji.name, - keywords: emoji.keywords, - emoticons: emoji.emoticons, - }); - - emojiData.search = emojiData.search.join(','); - } else if (emoji.id) { - if (data.short_names.hasOwnProperty(emoji.id)) { - emoji.id = data.short_names[emoji.id]; - } - - if (data.emojis.hasOwnProperty(emoji.id)) { - emojiData = data.emojis[emoji.id]; - } - } - - emojiData.emoticons = emojiData.emoticons || []; - emojiData.variations = emojiData.variations || []; - - if (emojiData.variations && emojiData.variations.length) { - emojiData = JSON.parse(JSON.stringify(emojiData)); - emojiData.unified = emojiData.variations.shift(); - } - - return emojiData; -} - -function intersect(a, b) { - let aSet = new Set(a); - let bSet = new Set(b); - let intersection = new Set( - [...aSet].filter(x => bSet.has(x)) - ); - - return Array.from(intersection); -} - -export { getData, getSanitizedData, intersect }; diff --git a/app/javascript/mastodon/emojione_light.js b/app/javascript/mastodon/emojione_light.js deleted file mode 100644 index 2296497b0..000000000 --- a/app/javascript/mastodon/emojione_light.js +++ /dev/null @@ -1,38 +0,0 @@ -// @preval -// http://www.unicode.org/Public/emoji/5.0/emoji-test.txt - -const emojis = require('./emoji_map.json'); -const { emojiIndex } = require('emoji-mart'); -const excluded = ['ยฎ', 'ยฉ', 'โ„ข']; -const skins = ['๐Ÿป', '๐Ÿผ', '๐Ÿฝ', '๐Ÿพ', '๐Ÿฟ']; -const shortcodeMap = {}; - -Object.keys(emojiIndex.emojis).forEach(key => { - shortcodeMap[emojiIndex.emojis[key].native] = emojiIndex.emojis[key].id; -}); - -const stripModifiers = unicode => { - skins.forEach(tone => { - unicode = unicode.replace(tone, ''); - }); - - return unicode; -}; - -Object.keys(emojis).forEach(key => { - if (excluded.includes(key)) { - delete emojis[key]; - return; - } - - const normalizedKey = stripModifiers(key); - let shortcode = shortcodeMap[normalizedKey]; - - if (!shortcode) { - shortcode = shortcodeMap[normalizedKey + '\uFE0F']; - } - - emojis[key] = [emojis[key], shortcode]; -}); - -module.exports.unicodeMapping = emojis; diff --git a/app/javascript/mastodon/features/compose/components/emoji_picker_dropdown.js b/app/javascript/mastodon/features/compose/components/emoji_picker_dropdown.js index bbc6b7a16..2bea5e2b1 100644 --- a/app/javascript/mastodon/features/compose/components/emoji_picker_dropdown.js +++ b/app/javascript/mastodon/features/compose/components/emoji_picker_dropdown.js @@ -6,7 +6,7 @@ import Overlay from 'react-overlays/lib/Overlay'; import classNames from 'classnames'; import ImmutablePropTypes from 'react-immutable-proptypes'; import detectPassiveEvents from 'detect-passive-events'; -import { buildCustomEmojis } from '../../../emoji'; +import { buildCustomEmojis } from '../../emoji/emoji'; const messages = defineMessages({ emoji: { id: 'emoji_button.label', defaultMessage: 'Insert emoji' }, diff --git a/app/javascript/mastodon/features/emoji/emoji.js b/app/javascript/mastodon/features/emoji/emoji.js new file mode 100644 index 000000000..998cb0a06 --- /dev/null +++ b/app/javascript/mastodon/features/emoji/emoji.js @@ -0,0 +1,72 @@ +import unicodeMapping from './emoji_unicode_mapping_light'; +import Trie from 'substring-trie'; + +const trie = new Trie(Object.keys(unicodeMapping)); + +const assetHost = process.env.CDN_HOST || ''; + +const emojify = (str, customEmojis = {}) => { + let rtn = ''; + for (;;) { + let match, i = 0, tag; + while (i < str.length && (tag = '<&:'.indexOf(str[i])) === -1 && !(match = trie.search(str.slice(i)))) { + i += str.codePointAt(i) < 65536 ? 1 : 2; + } + let rend, replacement = ''; + if (i === str.length) { + break; + } else if (str[i] === ':') { + if (!(() => { + rend = str.indexOf(':', i + 1) + 1; + if (!rend) return false; // no pair of ':' + const lt = str.indexOf('<', i + 1); + if (!(lt === -1 || lt >= rend)) return false; // tag appeared before closing ':' + const shortname = str.slice(i, rend); + // now got a replacee as ':shortname:' + // if you want additional emoji handler, add statements below which set replacement and return true. + if (shortname in customEmojis) { + replacement = `${shortname}`; + return true; + } + return false; + })()) rend = ++i; + } else if (tag >= 0) { // <, & + rend = str.indexOf('>;'[tag], i + 1) + 1; + if (!rend) break; + i = rend; + } else { // matched to unicode emoji + const { filename, shortCode } = unicodeMapping[match]; + const title = shortCode ? `:${shortCode}:` : ''; + replacement = `${match}`; + rend = i + match.length; + } + rtn += str.slice(0, i) + replacement; + str = str.slice(rend); + } + return rtn + str; +}; + +export default emojify; + +export const buildCustomEmojis = customEmojis => { + const emojis = []; + + customEmojis.forEach(emoji => { + const shortcode = emoji.get('shortcode'); + const url = emoji.get('static_url'); + const name = shortcode.replace(':', ''); + + emojis.push({ + id: name, + name, + short_names: [name], + text: '', + emoticons: [], + keywords: [name], + imageUrl: url, + custom: true, + }); + }); + + return emojis; +}; diff --git a/app/javascript/mastodon/features/emoji/emoji_compressed.js b/app/javascript/mastodon/features/emoji/emoji_compressed.js new file mode 100644 index 000000000..3ed4dc82b --- /dev/null +++ b/app/javascript/mastodon/features/emoji/emoji_compressed.js @@ -0,0 +1,90 @@ +// @preval +// http://www.unicode.org/Public/emoji/5.0/emoji-test.txt +// This file contains the compressed version of the emoji data from +// both emoji_map.json and from emoji-mart's emojiIndex and data objects. +// It's designed to be emitted in an array format to take up less space +// over the wire. + +const { unicodeToFilename } = require('./unicode_to_filename'); +const { unicodeToUnifiedName } = require('./unicode_to_unified_name'); +const emojiMap = require('./emoji_map.json'); +const { emojiIndex } = require('emoji-mart'); +const emojiMartData = require('emoji-mart/dist/data').default; +const excluded = ['ยฎ', 'ยฉ', 'โ„ข']; +const skins = ['๐Ÿป', '๐Ÿผ', '๐Ÿฝ', '๐Ÿพ', '๐Ÿฟ']; +const shortcodeMap = {}; + +const shortCodesToEmojiData = {}; +const emojisWithoutShortCodes = []; + +Object.keys(emojiIndex.emojis).forEach(key => { + shortcodeMap[emojiIndex.emojis[key].native] = emojiIndex.emojis[key].id; +}); + +const stripModifiers = unicode => { + skins.forEach(tone => { + unicode = unicode.replace(tone, ''); + }); + + return unicode; +}; + +Object.keys(emojiMap).forEach(key => { + if (excluded.includes(key)) { + delete emojiMap[key]; + return; + } + + const normalizedKey = stripModifiers(key); + let shortcode = shortcodeMap[normalizedKey]; + + if (!shortcode) { + shortcode = shortcodeMap[normalizedKey + '\uFE0F']; + } + + const filename = emojiMap[key]; + + const filenameData = [key]; + + if (unicodeToFilename(key) !== filename) { + // filename can't be derived using unicodeToFilename + filenameData.push(filename); + } + + if (typeof shortcode === 'undefined') { + emojisWithoutShortCodes.push(filenameData); + } else { + shortCodesToEmojiData[shortcode] = shortCodesToEmojiData[shortcode] || [[]]; + shortCodesToEmojiData[shortcode][0].push(filenameData); + } +}); + +Object.keys(emojiIndex.emojis).forEach(key => { + const { native } = emojiIndex.emojis[key]; + const { short_names, search, unified } = emojiMartData.emojis[key]; + if (short_names[0] !== key) { + throw new Error('The compresser expects the first short_code to be the ' + + 'key. It may need to be rewritten if the emoji change such that this ' + + 'is no longer the case.'); + } + + short_names.splice(0, 1); // first short name can be inferred from the key + + const searchData = [native, short_names, search]; + if (unicodeToUnifiedName(native) !== unified) { + // unified name can't be derived from unicodeToUnifiedName + searchData.push(unified); + } + + shortCodesToEmojiData[key].push(searchData); +}); + +// JSON.parse/stringify is to emulate what @preval is doing and avoid any +// inconsistent behavior in dev mode +module.exports = JSON.parse(JSON.stringify([ + shortCodesToEmojiData, + emojiMartData.skins, + emojiMartData.categories, + emojiMartData.short_names, + emojisWithoutShortCodes, +])); diff --git a/app/javascript/mastodon/features/emoji/emoji_map.json b/app/javascript/mastodon/features/emoji/emoji_map.json new file mode 100644 index 000000000..13753ba84 --- /dev/null +++ b/app/javascript/mastodon/features/emoji/emoji_map.json @@ -0,0 +1 @@ +{"๐Ÿ˜€":"1f600","๐Ÿ˜":"1f601","๐Ÿ˜‚":"1f602","๐Ÿคฃ":"1f923","๐Ÿ˜ƒ":"1f603","๐Ÿ˜„":"1f604","๐Ÿ˜…":"1f605","๐Ÿ˜†":"1f606","๐Ÿ˜‰":"1f609","๐Ÿ˜Š":"1f60a","๐Ÿ˜‹":"1f60b","๐Ÿ˜Ž":"1f60e","๐Ÿ˜":"1f60d","๐Ÿ˜˜":"1f618","๐Ÿ˜—":"1f617","๐Ÿ˜™":"1f619","๐Ÿ˜š":"1f61a","โ˜บ":"263a","๐Ÿ™‚":"1f642","๐Ÿค—":"1f917","๐Ÿคฉ":"1f929","๐Ÿค”":"1f914","๐Ÿคจ":"1f928","๐Ÿ˜":"1f610","๐Ÿ˜‘":"1f611","๐Ÿ˜ถ":"1f636","๐Ÿ™„":"1f644","๐Ÿ˜":"1f60f","๐Ÿ˜ฃ":"1f623","๐Ÿ˜ฅ":"1f625","๐Ÿ˜ฎ":"1f62e","๐Ÿค":"1f910","๐Ÿ˜ฏ":"1f62f","๐Ÿ˜ช":"1f62a","๐Ÿ˜ซ":"1f62b","๐Ÿ˜ด":"1f634","๐Ÿ˜Œ":"1f60c","๐Ÿ˜›":"1f61b","๐Ÿ˜œ":"1f61c","๐Ÿ˜":"1f61d","๐Ÿคค":"1f924","๐Ÿ˜’":"1f612","๐Ÿ˜“":"1f613","๐Ÿ˜”":"1f614","๐Ÿ˜•":"1f615","๐Ÿ™ƒ":"1f643","๐Ÿค‘":"1f911","๐Ÿ˜ฒ":"1f632","โ˜น":"2639","๐Ÿ™":"1f641","๐Ÿ˜–":"1f616","๐Ÿ˜ž":"1f61e","๐Ÿ˜Ÿ":"1f61f","๐Ÿ˜ค":"1f624","๐Ÿ˜ข":"1f622","๐Ÿ˜ญ":"1f62d","๐Ÿ˜ฆ":"1f626","๐Ÿ˜ง":"1f627","๐Ÿ˜จ":"1f628","๐Ÿ˜ฉ":"1f629","๐Ÿคฏ":"1f92f","๐Ÿ˜ฌ":"1f62c","๐Ÿ˜ฐ":"1f630","๐Ÿ˜ฑ":"1f631","๐Ÿ˜ณ":"1f633","๐Ÿคช":"1f92a","๐Ÿ˜ต":"1f635","๐Ÿ˜ก":"1f621","๐Ÿ˜ ":"1f620","๐Ÿคฌ":"1f92c","๐Ÿ˜ท":"1f637","๐Ÿค’":"1f912","๐Ÿค•":"1f915","๐Ÿคข":"1f922","๐Ÿคฎ":"1f92e","๐Ÿคง":"1f927","๐Ÿ˜‡":"1f607","๐Ÿค ":"1f920","๐Ÿคก":"1f921","๐Ÿคฅ":"1f925","๐Ÿคซ":"1f92b","๐Ÿคญ":"1f92d","๐Ÿง":"1f9d0","๐Ÿค“":"1f913","๐Ÿ˜ˆ":"1f608","๐Ÿ‘ฟ":"1f47f","๐Ÿ‘น":"1f479","๐Ÿ‘บ":"1f47a","๐Ÿ’€":"1f480","โ˜ ":"2620","๐Ÿ‘ป":"1f47b","๐Ÿ‘ฝ":"1f47d","๐Ÿ‘พ":"1f47e","๐Ÿค–":"1f916","๐Ÿ’ฉ":"1f4a9","๐Ÿ˜บ":"1f63a","๐Ÿ˜ธ":"1f638","๐Ÿ˜น":"1f639","๐Ÿ˜ป":"1f63b","๐Ÿ˜ผ":"1f63c","๐Ÿ˜ฝ":"1f63d","๐Ÿ™€":"1f640","๐Ÿ˜ฟ":"1f63f","๐Ÿ˜พ":"1f63e","๐Ÿ™ˆ":"1f648","๐Ÿ™‰":"1f649","๐Ÿ™Š":"1f64a","๐Ÿ‘ถ":"1f476","๐Ÿง’":"1f9d2","๐Ÿ‘ฆ":"1f466","๐Ÿ‘ง":"1f467","๐Ÿง‘":"1f9d1","๐Ÿ‘จ":"1f468","๐Ÿ‘ฉ":"1f469","๐Ÿง“":"1f9d3","๐Ÿ‘ด":"1f474","๐Ÿ‘ต":"1f475","๐Ÿ‘ฎ":"1f46e","๐Ÿ•ต":"1f575","๐Ÿ’‚":"1f482","๐Ÿ‘ท":"1f477","๐Ÿคด":"1f934","๐Ÿ‘ธ":"1f478","๐Ÿ‘ณ":"1f473","๐Ÿ‘ฒ":"1f472","๐Ÿง•":"1f9d5","๐Ÿง”":"1f9d4","๐Ÿ‘ฑ":"1f471","๐Ÿคต":"1f935","๐Ÿ‘ฐ":"1f470","๐Ÿคฐ":"1f930","๐Ÿคฑ":"1f931","๐Ÿ‘ผ":"1f47c","๐ŸŽ…":"1f385","๐Ÿคถ":"1f936","๐Ÿง™":"1f9d9","๐Ÿงš":"1f9da","๐Ÿง›":"1f9db","๐Ÿงœ":"1f9dc","๐Ÿง":"1f9dd","๐Ÿงž":"1f9de","๐ŸงŸ":"1f9df","๐Ÿ™":"1f64d","๐Ÿ™Ž":"1f64e","๐Ÿ™…":"1f645","๐Ÿ™†":"1f646","๐Ÿ’":"1f481","๐Ÿ™‹":"1f64b","๐Ÿ™‡":"1f647","๐Ÿคฆ":"1f926","๐Ÿคท":"1f937","๐Ÿ’†":"1f486","๐Ÿ’‡":"1f487","๐Ÿšถ":"1f6b6","๐Ÿƒ":"1f3c3","๐Ÿ’ƒ":"1f483","๐Ÿ•บ":"1f57a","๐Ÿ‘ฏ":"1f46f","๐Ÿง–":"1f9d6","๐Ÿง—":"1f9d7","๐Ÿง˜":"1f9d8","๐Ÿ›€":"1f6c0","๐Ÿ›Œ":"1f6cc","๐Ÿ•ด":"1f574","๐Ÿ—ฃ":"1f5e3","๐Ÿ‘ค":"1f464","๐Ÿ‘ฅ":"1f465","๐Ÿคบ":"1f93a","๐Ÿ‡":"1f3c7","โ›ท":"26f7","๐Ÿ‚":"1f3c2","๐ŸŒ":"1f3cc","๐Ÿ„":"1f3c4","๐Ÿšฃ":"1f6a3","๐ŸŠ":"1f3ca","โ›น":"26f9","๐Ÿ‹":"1f3cb","๐Ÿšด":"1f6b4","๐Ÿšต":"1f6b5","๐ŸŽ":"1f3ce","๐Ÿ":"1f3cd","๐Ÿคธ":"1f938","๐Ÿคผ":"1f93c","๐Ÿคฝ":"1f93d","๐Ÿคพ":"1f93e","๐Ÿคน":"1f939","๐Ÿ‘ซ":"1f46b","๐Ÿ‘ฌ":"1f46c","๐Ÿ‘ญ":"1f46d","๐Ÿ’":"1f48f","๐Ÿ’‘":"1f491","๐Ÿ‘ช":"1f46a","๐Ÿคณ":"1f933","๐Ÿ’ช":"1f4aa","๐Ÿ‘ˆ":"1f448","๐Ÿ‘‰":"1f449","โ˜":"261d","๐Ÿ‘†":"1f446","๐Ÿ–•":"1f595","๐Ÿ‘‡":"1f447","โœŒ":"270c","๐Ÿคž":"1f91e","๐Ÿ––":"1f596","๐Ÿค˜":"1f918","๐Ÿค™":"1f919","๐Ÿ–":"1f590","โœ‹":"270b","๐Ÿ‘Œ":"1f44c","๐Ÿ‘":"1f44d","๐Ÿ‘Ž":"1f44e","โœŠ":"270a","๐Ÿ‘Š":"1f44a","๐Ÿค›":"1f91b","๐Ÿคœ":"1f91c","๐Ÿคš":"1f91a","๐Ÿ‘‹":"1f44b","๐ŸคŸ":"1f91f","โœ":"270d","๐Ÿ‘":"1f44f","๐Ÿ‘":"1f450","๐Ÿ™Œ":"1f64c","๐Ÿคฒ":"1f932","๐Ÿ™":"1f64f","๐Ÿค":"1f91d","๐Ÿ’…":"1f485","๐Ÿ‘‚":"1f442","๐Ÿ‘ƒ":"1f443","๐Ÿ‘ฃ":"1f463","๐Ÿ‘€":"1f440","๐Ÿ‘":"1f441","๐Ÿง ":"1f9e0","๐Ÿ‘…":"1f445","๐Ÿ‘„":"1f444","๐Ÿ’‹":"1f48b","๐Ÿ’˜":"1f498","โค":"2764","๐Ÿ’“":"1f493","๐Ÿ’”":"1f494","๐Ÿ’•":"1f495","๐Ÿ’–":"1f496","๐Ÿ’—":"1f497","๐Ÿ’™":"1f499","๐Ÿ’š":"1f49a","๐Ÿ’›":"1f49b","๐Ÿงก":"1f9e1","๐Ÿ’œ":"1f49c","๐Ÿ–ค":"1f5a4","๐Ÿ’":"1f49d","๐Ÿ’ž":"1f49e","๐Ÿ’Ÿ":"1f49f","โฃ":"2763","๐Ÿ’Œ":"1f48c","๐Ÿ’ค":"1f4a4","๐Ÿ’ข":"1f4a2","๐Ÿ’ฃ":"1f4a3","๐Ÿ’ฅ":"1f4a5","๐Ÿ’ฆ":"1f4a6","๐Ÿ’จ":"1f4a8","๐Ÿ’ซ":"1f4ab","๐Ÿ’ฌ":"1f4ac","๐Ÿ—จ":"1f5e8","๐Ÿ—ฏ":"1f5ef","๐Ÿ’ญ":"1f4ad","๐Ÿ•ณ":"1f573","๐Ÿ‘“":"1f453","๐Ÿ•ถ":"1f576","๐Ÿ‘”":"1f454","๐Ÿ‘•":"1f455","๐Ÿ‘–":"1f456","๐Ÿงฃ":"1f9e3","๐Ÿงค":"1f9e4","๐Ÿงฅ":"1f9e5","๐Ÿงฆ":"1f9e6","๐Ÿ‘—":"1f457","๐Ÿ‘˜":"1f458","๐Ÿ‘™":"1f459","๐Ÿ‘š":"1f45a","๐Ÿ‘›":"1f45b","๐Ÿ‘œ":"1f45c","๐Ÿ‘":"1f45d","๐Ÿ›":"1f6cd","๐ŸŽ’":"1f392","๐Ÿ‘ž":"1f45e","๐Ÿ‘Ÿ":"1f45f","๐Ÿ‘ ":"1f460","๐Ÿ‘ก":"1f461","๐Ÿ‘ข":"1f462","๐Ÿ‘‘":"1f451","๐Ÿ‘’":"1f452","๐ŸŽฉ":"1f3a9","๐ŸŽ“":"1f393","๐Ÿงข":"1f9e2","โ›‘":"26d1","๐Ÿ“ฟ":"1f4ff","๐Ÿ’„":"1f484","๐Ÿ’":"1f48d","๐Ÿ’Ž":"1f48e","๐Ÿต":"1f435","๐Ÿ’":"1f412","๐Ÿฆ":"1f98d","๐Ÿถ":"1f436","๐Ÿ•":"1f415","๐Ÿฉ":"1f429","๐Ÿบ":"1f43a","๐ŸฆŠ":"1f98a","๐Ÿฑ":"1f431","๐Ÿˆ":"1f408","๐Ÿฆ":"1f981","๐Ÿฏ":"1f42f","๐Ÿ…":"1f405","๐Ÿ†":"1f406","๐Ÿด":"1f434","๐ŸŽ":"1f40e","๐Ÿฆ„":"1f984","๐Ÿฆ“":"1f993","๐ŸฆŒ":"1f98c","๐Ÿฎ":"1f42e","๐Ÿ‚":"1f402","๐Ÿƒ":"1f403","๐Ÿ„":"1f404","๐Ÿท":"1f437","๐Ÿ–":"1f416","๐Ÿ—":"1f417","๐Ÿฝ":"1f43d","๐Ÿ":"1f40f","๐Ÿ‘":"1f411","๐Ÿ":"1f410","๐Ÿช":"1f42a","๐Ÿซ":"1f42b","๐Ÿฆ’":"1f992","๐Ÿ˜":"1f418","๐Ÿฆ":"1f98f","๐Ÿญ":"1f42d","๐Ÿ":"1f401","๐Ÿ€":"1f400","๐Ÿน":"1f439","๐Ÿฐ":"1f430","๐Ÿ‡":"1f407","๐Ÿฟ":"1f43f","๐Ÿฆ”":"1f994","๐Ÿฆ‡":"1f987","๐Ÿป":"1f43b","๐Ÿจ":"1f428","๐Ÿผ":"1f43c","๐Ÿพ":"1f43e","๐Ÿฆƒ":"1f983","๐Ÿ”":"1f414","๐Ÿ“":"1f413","๐Ÿฃ":"1f423","๐Ÿค":"1f424","๐Ÿฅ":"1f425","๐Ÿฆ":"1f426","๐Ÿง":"1f427","๐Ÿ•Š":"1f54a","๐Ÿฆ…":"1f985","๐Ÿฆ†":"1f986","๐Ÿฆ‰":"1f989","๐Ÿธ":"1f438","๐ŸŠ":"1f40a","๐Ÿข":"1f422","๐ŸฆŽ":"1f98e","๐Ÿ":"1f40d","๐Ÿฒ":"1f432","๐Ÿ‰":"1f409","๐Ÿฆ•":"1f995","๐Ÿฆ–":"1f996","๐Ÿณ":"1f433","๐Ÿ‹":"1f40b","๐Ÿฌ":"1f42c","๐ŸŸ":"1f41f","๐Ÿ ":"1f420","๐Ÿก":"1f421","๐Ÿฆˆ":"1f988","๐Ÿ™":"1f419","๐Ÿš":"1f41a","๐Ÿฆ€":"1f980","๐Ÿฆ":"1f990","๐Ÿฆ‘":"1f991","๐ŸŒ":"1f40c","๐Ÿฆ‹":"1f98b","๐Ÿ›":"1f41b","๐Ÿœ":"1f41c","๐Ÿ":"1f41d","๐Ÿž":"1f41e","๐Ÿฆ—":"1f997","๐Ÿ•ท":"1f577","๐Ÿ•ธ":"1f578","๐Ÿฆ‚":"1f982","๐Ÿ’":"1f490","๐ŸŒธ":"1f338","๐Ÿ’ฎ":"1f4ae","๐Ÿต":"1f3f5","๐ŸŒน":"1f339","๐Ÿฅ€":"1f940","๐ŸŒบ":"1f33a","๐ŸŒป":"1f33b","๐ŸŒผ":"1f33c","๐ŸŒท":"1f337","๐ŸŒฑ":"1f331","๐ŸŒฒ":"1f332","๐ŸŒณ":"1f333","๐ŸŒด":"1f334","๐ŸŒต":"1f335","๐ŸŒพ":"1f33e","๐ŸŒฟ":"1f33f","โ˜˜":"2618","๐Ÿ€":"1f340","๐Ÿ":"1f341","๐Ÿ‚":"1f342","๐Ÿƒ":"1f343","๐Ÿ‡":"1f347","๐Ÿˆ":"1f348","๐Ÿ‰":"1f349","๐ŸŠ":"1f34a","๐Ÿ‹":"1f34b","๐ŸŒ":"1f34c","๐Ÿ":"1f34d","๐ŸŽ":"1f34e","๐Ÿ":"1f34f","๐Ÿ":"1f350","๐Ÿ‘":"1f351","๐Ÿ’":"1f352","๐Ÿ“":"1f353","๐Ÿฅ":"1f95d","๐Ÿ…":"1f345","๐Ÿฅฅ":"1f965","๐Ÿฅ‘":"1f951","๐Ÿ†":"1f346","๐Ÿฅ”":"1f954","๐Ÿฅ•":"1f955","๐ŸŒฝ":"1f33d","๐ŸŒถ":"1f336","๐Ÿฅ’":"1f952","๐Ÿฅฆ":"1f966","๐Ÿ„":"1f344","๐Ÿฅœ":"1f95c","๐ŸŒฐ":"1f330","๐Ÿž":"1f35e","๐Ÿฅ":"1f950","๐Ÿฅ–":"1f956","๐Ÿฅจ":"1f968","๐Ÿฅž":"1f95e","๐Ÿง€":"1f9c0","๐Ÿ–":"1f356","๐Ÿ—":"1f357","๐Ÿฅฉ":"1f969","๐Ÿฅ“":"1f953","๐Ÿ”":"1f354","๐ŸŸ":"1f35f","๐Ÿ•":"1f355","๐ŸŒญ":"1f32d","๐Ÿฅช":"1f96a","๐ŸŒฎ":"1f32e","๐ŸŒฏ":"1f32f","๐Ÿฅ™":"1f959","๐Ÿฅš":"1f95a","๐Ÿณ":"1f373","๐Ÿฅ˜":"1f958","๐Ÿฒ":"1f372","๐Ÿฅฃ":"1f963","๐Ÿฅ—":"1f957","๐Ÿฟ":"1f37f","๐Ÿฅซ":"1f96b","๐Ÿฑ":"1f371","๐Ÿ˜":"1f358","๐Ÿ™":"1f359","๐Ÿš":"1f35a","๐Ÿ›":"1f35b","๐Ÿœ":"1f35c","๐Ÿ":"1f35d","๐Ÿ ":"1f360","๐Ÿข":"1f362","๐Ÿฃ":"1f363","๐Ÿค":"1f364","๐Ÿฅ":"1f365","๐Ÿก":"1f361","๐ŸฅŸ":"1f95f","๐Ÿฅ ":"1f960","๐Ÿฅก":"1f961","๐Ÿฆ":"1f366","๐Ÿง":"1f367","๐Ÿจ":"1f368","๐Ÿฉ":"1f369","๐Ÿช":"1f36a","๐ŸŽ‚":"1f382","๐Ÿฐ":"1f370","๐Ÿฅง":"1f967","๐Ÿซ":"1f36b","๐Ÿฌ":"1f36c","๐Ÿญ":"1f36d","๐Ÿฎ":"1f36e","๐Ÿฏ":"1f36f","๐Ÿผ":"1f37c","๐Ÿฅ›":"1f95b","โ˜•":"2615","๐Ÿต":"1f375","๐Ÿถ":"1f376","๐Ÿพ":"1f37e","๐Ÿท":"1f377","๐Ÿธ":"1f378","๐Ÿน":"1f379","๐Ÿบ":"1f37a","๐Ÿป":"1f37b","๐Ÿฅ‚":"1f942","๐Ÿฅƒ":"1f943","๐Ÿฅค":"1f964","๐Ÿฅข":"1f962","๐Ÿฝ":"1f37d","๐Ÿด":"1f374","๐Ÿฅ„":"1f944","๐Ÿ”ช":"1f52a","๐Ÿบ":"1f3fa","๐ŸŒ":"1f30d","๐ŸŒŽ":"1f30e","๐ŸŒ":"1f30f","๐ŸŒ":"1f310","๐Ÿ—บ":"1f5fa","๐Ÿ—พ":"1f5fe","๐Ÿ”":"1f3d4","โ›ฐ":"26f0","๐ŸŒ‹":"1f30b","๐Ÿ—ป":"1f5fb","๐Ÿ•":"1f3d5","๐Ÿ–":"1f3d6","๐Ÿœ":"1f3dc","๐Ÿ":"1f3dd","๐Ÿž":"1f3de","๐ŸŸ":"1f3df","๐Ÿ›":"1f3db","๐Ÿ—":"1f3d7","๐Ÿ˜":"1f3d8","๐Ÿ™":"1f3d9","๐Ÿš":"1f3da","๐Ÿ ":"1f3e0","๐Ÿก":"1f3e1","๐Ÿข":"1f3e2","๐Ÿฃ":"1f3e3","๐Ÿค":"1f3e4","๐Ÿฅ":"1f3e5","๐Ÿฆ":"1f3e6","๐Ÿจ":"1f3e8","๐Ÿฉ":"1f3e9","๐Ÿช":"1f3ea","๐Ÿซ":"1f3eb","๐Ÿฌ":"1f3ec","๐Ÿญ":"1f3ed","๐Ÿฏ":"1f3ef","๐Ÿฐ":"1f3f0","๐Ÿ’’":"1f492","๐Ÿ—ผ":"1f5fc","๐Ÿ—ฝ":"1f5fd","โ›ช":"26ea","๐Ÿ•Œ":"1f54c","๐Ÿ•":"1f54d","โ›ฉ":"26e9","๐Ÿ•‹":"1f54b","โ›ฒ":"26f2","โ›บ":"26fa","๐ŸŒ":"1f301","๐ŸŒƒ":"1f303","๐ŸŒ„":"1f304","๐ŸŒ…":"1f305","๐ŸŒ†":"1f306","๐ŸŒ‡":"1f307","๐ŸŒ‰":"1f309","โ™จ":"2668","๐ŸŒŒ":"1f30c","๐ŸŽ ":"1f3a0","๐ŸŽก":"1f3a1","๐ŸŽข":"1f3a2","๐Ÿ’ˆ":"1f488","๐ŸŽช":"1f3aa","๐ŸŽญ":"1f3ad","๐Ÿ–ผ":"1f5bc","๐ŸŽจ":"1f3a8","๐ŸŽฐ":"1f3b0","๐Ÿš‚":"1f682","๐Ÿšƒ":"1f683","๐Ÿš„":"1f684","๐Ÿš…":"1f685","๐Ÿš†":"1f686","๐Ÿš‡":"1f687","๐Ÿšˆ":"1f688","๐Ÿš‰":"1f689","๐ŸšŠ":"1f68a","๐Ÿš":"1f69d","๐Ÿšž":"1f69e","๐Ÿš‹":"1f68b","๐ŸšŒ":"1f68c","๐Ÿš":"1f68d","๐ŸšŽ":"1f68e","๐Ÿš":"1f690","๐Ÿš‘":"1f691","๐Ÿš’":"1f692","๐Ÿš“":"1f693","๐Ÿš”":"1f694","๐Ÿš•":"1f695","๐Ÿš–":"1f696","๐Ÿš—":"1f697","๐Ÿš˜":"1f698","๐Ÿš™":"1f699","๐Ÿšš":"1f69a","๐Ÿš›":"1f69b","๐Ÿšœ":"1f69c","๐Ÿšฒ":"1f6b2","๐Ÿ›ด":"1f6f4","๐Ÿ›ต":"1f6f5","๐Ÿš":"1f68f","๐Ÿ›ฃ":"1f6e3","๐Ÿ›ค":"1f6e4","โ›ฝ":"26fd","๐Ÿšจ":"1f6a8","๐Ÿšฅ":"1f6a5","๐Ÿšฆ":"1f6a6","๐Ÿšง":"1f6a7","๐Ÿ›‘":"1f6d1","โš“":"2693","โ›ต":"26f5","๐Ÿ›ถ":"1f6f6","๐Ÿšค":"1f6a4","๐Ÿ›ณ":"1f6f3","โ›ด":"26f4","๐Ÿ›ฅ":"1f6e5","๐Ÿšข":"1f6a2","โœˆ":"2708","๐Ÿ›ฉ":"1f6e9","๐Ÿ›ซ":"1f6eb","๐Ÿ›ฌ":"1f6ec","๐Ÿ’บ":"1f4ba","๐Ÿš":"1f681","๐ŸšŸ":"1f69f","๐Ÿš ":"1f6a0","๐Ÿšก":"1f6a1","๐Ÿ›ฐ":"1f6f0","๐Ÿš€":"1f680","๐Ÿ›ธ":"1f6f8","๐Ÿ›Ž":"1f6ce","๐Ÿšช":"1f6aa","๐Ÿ›":"1f6cf","๐Ÿ›‹":"1f6cb","๐Ÿšฝ":"1f6bd","๐Ÿšฟ":"1f6bf","๐Ÿ›":"1f6c1","โŒ›":"231b","โณ":"23f3","โŒš":"231a","โฐ":"23f0","โฑ":"23f1","โฒ":"23f2","๐Ÿ•ฐ":"1f570","๐Ÿ•›":"1f55b","๐Ÿ•ง":"1f567","๐Ÿ•":"1f550","๐Ÿ•œ":"1f55c","๐Ÿ•‘":"1f551","๐Ÿ•":"1f55d","๐Ÿ•’":"1f552","๐Ÿ•ž":"1f55e","๐Ÿ•“":"1f553","๐Ÿ•Ÿ":"1f55f","๐Ÿ•”":"1f554","๐Ÿ• ":"1f560","๐Ÿ••":"1f555","๐Ÿ•ก":"1f561","๐Ÿ•–":"1f556","๐Ÿ•ข":"1f562","๐Ÿ•—":"1f557","๐Ÿ•ฃ":"1f563","๐Ÿ•˜":"1f558","๐Ÿ•ค":"1f564","๐Ÿ•™":"1f559","๐Ÿ•ฅ":"1f565","๐Ÿ•š":"1f55a","๐Ÿ•ฆ":"1f566","๐ŸŒ‘":"1f311","๐ŸŒ’":"1f312","๐ŸŒ“":"1f313","๐ŸŒ”":"1f314","๐ŸŒ•":"1f315","๐ŸŒ–":"1f316","๐ŸŒ—":"1f317","๐ŸŒ˜":"1f318","๐ŸŒ™":"1f319","๐ŸŒš":"1f31a","๐ŸŒ›":"1f31b","๐ŸŒœ":"1f31c","๐ŸŒก":"1f321","โ˜€":"2600","๐ŸŒ":"1f31d","๐ŸŒž":"1f31e","โญ":"2b50","๐ŸŒŸ":"1f31f","๐ŸŒ ":"1f320","โ˜":"2601","โ›…":"26c5","โ›ˆ":"26c8","๐ŸŒค":"1f324","๐ŸŒฅ":"1f325","๐ŸŒฆ":"1f326","๐ŸŒง":"1f327","๐ŸŒจ":"1f328","๐ŸŒฉ":"1f329","๐ŸŒช":"1f32a","๐ŸŒซ":"1f32b","๐ŸŒฌ":"1f32c","๐ŸŒ€":"1f300","๐ŸŒˆ":"1f308","๐ŸŒ‚":"1f302","โ˜‚":"2602","โ˜”":"2614","โ›ฑ":"26f1","โšก":"26a1","โ„":"2744","โ˜ƒ":"2603","โ›„":"26c4","โ˜„":"2604","๐Ÿ”ฅ":"1f525","๐Ÿ’ง":"1f4a7","๐ŸŒŠ":"1f30a","๐ŸŽƒ":"1f383","๐ŸŽ„":"1f384","๐ŸŽ†":"1f386","๐ŸŽ‡":"1f387","โœจ":"2728","๐ŸŽˆ":"1f388","๐ŸŽ‰":"1f389","๐ŸŽŠ":"1f38a","๐ŸŽ‹":"1f38b","๐ŸŽ":"1f38d","๐ŸŽŽ":"1f38e","๐ŸŽ":"1f38f","๐ŸŽ":"1f390","๐ŸŽ‘":"1f391","๐ŸŽ€":"1f380","๐ŸŽ":"1f381","๐ŸŽ—":"1f397","๐ŸŽŸ":"1f39f","๐ŸŽซ":"1f3ab","๐ŸŽ–":"1f396","๐Ÿ†":"1f3c6","๐Ÿ…":"1f3c5","๐Ÿฅ‡":"1f947","๐Ÿฅˆ":"1f948","๐Ÿฅ‰":"1f949","โšฝ":"26bd","โšพ":"26be","๐Ÿ€":"1f3c0","๐Ÿ":"1f3d0","๐Ÿˆ":"1f3c8","๐Ÿ‰":"1f3c9","๐ŸŽพ":"1f3be","๐ŸŽฑ":"1f3b1","๐ŸŽณ":"1f3b3","๐Ÿ":"1f3cf","๐Ÿ‘":"1f3d1","๐Ÿ’":"1f3d2","๐Ÿ“":"1f3d3","๐Ÿธ":"1f3f8","๐ŸฅŠ":"1f94a","๐Ÿฅ‹":"1f94b","๐Ÿฅ…":"1f945","๐ŸŽฏ":"1f3af","โ›ณ":"26f3","โ›ธ":"26f8","๐ŸŽฃ":"1f3a3","๐ŸŽฝ":"1f3bd","๐ŸŽฟ":"1f3bf","๐Ÿ›ท":"1f6f7","๐ŸฅŒ":"1f94c","๐ŸŽฎ":"1f3ae","๐Ÿ•น":"1f579","๐ŸŽฒ":"1f3b2","โ™ ":"2660","โ™ฅ":"2665","โ™ฆ":"2666","โ™ฃ":"2663","๐Ÿƒ":"1f0cf","๐Ÿ€„":"1f004","๐ŸŽด":"1f3b4","๐Ÿ”‡":"1f507","๐Ÿ”ˆ":"1f508","๐Ÿ”‰":"1f509","๐Ÿ”Š":"1f50a","๐Ÿ“ข":"1f4e2","๐Ÿ“ฃ":"1f4e3","๐Ÿ“ฏ":"1f4ef","๐Ÿ””":"1f514","๐Ÿ”•":"1f515","๐ŸŽผ":"1f3bc","๐ŸŽต":"1f3b5","๐ŸŽถ":"1f3b6","๐ŸŽ™":"1f399","๐ŸŽš":"1f39a","๐ŸŽ›":"1f39b","๐ŸŽค":"1f3a4","๐ŸŽง":"1f3a7","๐Ÿ“ป":"1f4fb","๐ŸŽท":"1f3b7","๐ŸŽธ":"1f3b8","๐ŸŽน":"1f3b9","๐ŸŽบ":"1f3ba","๐ŸŽป":"1f3bb","๐Ÿฅ":"1f941","๐Ÿ“ฑ":"1f4f1","๐Ÿ“ฒ":"1f4f2","โ˜Ž":"260e","๐Ÿ“ž":"1f4de","๐Ÿ“Ÿ":"1f4df","๐Ÿ“ ":"1f4e0","๐Ÿ”‹":"1f50b","๐Ÿ”Œ":"1f50c","๐Ÿ’ป":"1f4bb","๐Ÿ–ฅ":"1f5a5","๐Ÿ–จ":"1f5a8","โŒจ":"2328","๐Ÿ–ฑ":"1f5b1","๐Ÿ–ฒ":"1f5b2","๐Ÿ’ฝ":"1f4bd","๐Ÿ’พ":"1f4be","๐Ÿ’ฟ":"1f4bf","๐Ÿ“€":"1f4c0","๐ŸŽฅ":"1f3a5","๐ŸŽž":"1f39e","๐Ÿ“ฝ":"1f4fd","๐ŸŽฌ":"1f3ac","๐Ÿ“บ":"1f4fa","๐Ÿ“ท":"1f4f7","๐Ÿ“ธ":"1f4f8","๐Ÿ“น":"1f4f9","๐Ÿ“ผ":"1f4fc","๐Ÿ”":"1f50d","๐Ÿ”Ž":"1f50e","๐Ÿ”ฌ":"1f52c","๐Ÿ”ญ":"1f52d","๐Ÿ“ก":"1f4e1","๐Ÿ•ฏ":"1f56f","๐Ÿ’ก":"1f4a1","๐Ÿ”ฆ":"1f526","๐Ÿฎ":"1f3ee","๐Ÿ“”":"1f4d4","๐Ÿ“•":"1f4d5","๐Ÿ“–":"1f4d6","๐Ÿ“—":"1f4d7","๐Ÿ“˜":"1f4d8","๐Ÿ“™":"1f4d9","๐Ÿ“š":"1f4da","๐Ÿ““":"1f4d3","๐Ÿ“’":"1f4d2","๐Ÿ“ƒ":"1f4c3","๐Ÿ“œ":"1f4dc","๐Ÿ“„":"1f4c4","๐Ÿ“ฐ":"1f4f0","๐Ÿ—ž":"1f5de","๐Ÿ“‘":"1f4d1","๐Ÿ”–":"1f516","๐Ÿท":"1f3f7","๐Ÿ’ฐ":"1f4b0","๐Ÿ’ด":"1f4b4","๐Ÿ’ต":"1f4b5","๐Ÿ’ถ":"1f4b6","๐Ÿ’ท":"1f4b7","๐Ÿ’ธ":"1f4b8","๐Ÿ’ณ":"1f4b3","๐Ÿ’น":"1f4b9","๐Ÿ’ฑ":"1f4b1","๐Ÿ’ฒ":"1f4b2","โœ‰":"2709","๐Ÿ“ง":"1f4e7","๐Ÿ“จ":"1f4e8","๐Ÿ“ฉ":"1f4e9","๐Ÿ“ค":"1f4e4","๐Ÿ“ฅ":"1f4e5","๐Ÿ“ฆ":"1f4e6","๐Ÿ“ซ":"1f4eb","๐Ÿ“ช":"1f4ea","๐Ÿ“ฌ":"1f4ec","๐Ÿ“ญ":"1f4ed","๐Ÿ“ฎ":"1f4ee","๐Ÿ—ณ":"1f5f3","โœ":"270f","โœ’":"2712","๐Ÿ–‹":"1f58b","๐Ÿ–Š":"1f58a","๐Ÿ–Œ":"1f58c","๐Ÿ–":"1f58d","๐Ÿ“":"1f4dd","๐Ÿ’ผ":"1f4bc","๐Ÿ“":"1f4c1","๐Ÿ“‚":"1f4c2","๐Ÿ—‚":"1f5c2","๐Ÿ“…":"1f4c5","๐Ÿ“†":"1f4c6","๐Ÿ—’":"1f5d2","๐Ÿ—“":"1f5d3","๐Ÿ“‡":"1f4c7","๐Ÿ“ˆ":"1f4c8","๐Ÿ“‰":"1f4c9","๐Ÿ“Š":"1f4ca","๐Ÿ“‹":"1f4cb","๐Ÿ“Œ":"1f4cc","๐Ÿ“":"1f4cd","๐Ÿ“Ž":"1f4ce","๐Ÿ–‡":"1f587","๐Ÿ“":"1f4cf","๐Ÿ“":"1f4d0","โœ‚":"2702","๐Ÿ—ƒ":"1f5c3","๐Ÿ—„":"1f5c4","๐Ÿ—‘":"1f5d1","๐Ÿ”’":"1f512","๐Ÿ”“":"1f513","๐Ÿ”":"1f50f","๐Ÿ”":"1f510","๐Ÿ”‘":"1f511","๐Ÿ—":"1f5dd","๐Ÿ”จ":"1f528","โ›":"26cf","โš’":"2692","๐Ÿ› ":"1f6e0","๐Ÿ—ก":"1f5e1","โš”":"2694","๐Ÿ”ซ":"1f52b","๐Ÿน":"1f3f9","๐Ÿ›ก":"1f6e1","๐Ÿ”ง":"1f527","๐Ÿ”ฉ":"1f529","โš™":"2699","๐Ÿ—œ":"1f5dc","โš—":"2697","โš–":"2696","๐Ÿ”—":"1f517","โ›“":"26d3","๐Ÿ’‰":"1f489","๐Ÿ’Š":"1f48a","๐Ÿšฌ":"1f6ac","โšฐ":"26b0","โšฑ":"26b1","๐Ÿ—ฟ":"1f5ff","๐Ÿ›ข":"1f6e2","๐Ÿ”ฎ":"1f52e","๐Ÿ›’":"1f6d2","๐Ÿง":"1f3e7","๐Ÿšฎ":"1f6ae","๐Ÿšฐ":"1f6b0","โ™ฟ":"267f","๐Ÿšน":"1f6b9","๐Ÿšบ":"1f6ba","๐Ÿšป":"1f6bb","๐Ÿšผ":"1f6bc","๐Ÿšพ":"1f6be","๐Ÿ›‚":"1f6c2","๐Ÿ›ƒ":"1f6c3","๐Ÿ›„":"1f6c4","๐Ÿ›…":"1f6c5","โš ":"26a0","๐Ÿšธ":"1f6b8","โ›”":"26d4","๐Ÿšซ":"1f6ab","๐Ÿšณ":"1f6b3","๐Ÿšญ":"1f6ad","๐Ÿšฏ":"1f6af","๐Ÿšฑ":"1f6b1","๐Ÿšท":"1f6b7","๐Ÿ“ต":"1f4f5","๐Ÿ”ž":"1f51e","โ˜ข":"2622","โ˜ฃ":"2623","โฌ†":"2b06","โ†—":"2197","โžก":"27a1","โ†˜":"2198","โฌ‡":"2b07","โ†™":"2199","โฌ…":"2b05","โ†–":"2196","โ†•":"2195","โ†”":"2194","โ†ฉ":"21a9","โ†ช":"21aa","โคด":"2934","โคต":"2935","๐Ÿ”ƒ":"1f503","๐Ÿ”„":"1f504","๐Ÿ”™":"1f519","๐Ÿ”š":"1f51a","๐Ÿ”›":"1f51b","๐Ÿ”œ":"1f51c","๐Ÿ”":"1f51d","๐Ÿ›":"1f6d0","โš›":"269b","๐Ÿ•‰":"1f549","โœก":"2721","โ˜ธ":"2638","โ˜ฏ":"262f","โœ":"271d","โ˜ฆ":"2626","โ˜ช":"262a","โ˜ฎ":"262e","๐Ÿ•Ž":"1f54e","๐Ÿ”ฏ":"1f52f","โ™ˆ":"2648","โ™‰":"2649","โ™Š":"264a","โ™‹":"264b","โ™Œ":"264c","โ™":"264d","โ™Ž":"264e","โ™":"264f","โ™":"2650","โ™‘":"2651","โ™’":"2652","โ™“":"2653","โ›Ž":"26ce","๐Ÿ”€":"1f500","๐Ÿ”":"1f501","๐Ÿ”‚":"1f502","โ–ถ":"25b6","โฉ":"23e9","โญ":"23ed","โฏ":"23ef","โ—€":"25c0","โช":"23ea","โฎ":"23ee","๐Ÿ”ผ":"1f53c","โซ":"23eb","๐Ÿ”ฝ":"1f53d","โฌ":"23ec","โธ":"23f8","โน":"23f9","โบ":"23fa","โ":"23cf","๐ŸŽฆ":"1f3a6","๐Ÿ”…":"1f505","๐Ÿ”†":"1f506","๐Ÿ“ถ":"1f4f6","๐Ÿ“ณ":"1f4f3","๐Ÿ“ด":"1f4f4","โ™€":"2640","โ™‚":"2642","โš•":"2695","โ™ป":"267b","โšœ":"269c","๐Ÿ”ฑ":"1f531","๐Ÿ“›":"1f4db","๐Ÿ”ฐ":"1f530","โญ•":"2b55","โœ…":"2705","โ˜‘":"2611","โœ”":"2714","โœ–":"2716","โŒ":"274c","โŽ":"274e","โž•":"2795","โž–":"2796","โž—":"2797","โžฐ":"27b0","โžฟ":"27bf","ใ€ฝ":"303d","โœณ":"2733","โœด":"2734","โ‡":"2747","โ€ผ":"203c","โ‰":"2049","โ“":"2753","โ”":"2754","โ•":"2755","โ—":"2757","ใ€ฐ":"3030","ยฉ":"a9","ยฎ":"ae","โ„ข":"2122","๐Ÿ”Ÿ":"1f51f","๐Ÿ’ฏ":"1f4af","๐Ÿ” ":"1f520","๐Ÿ”ก":"1f521","๐Ÿ”ข":"1f522","๐Ÿ”ฃ":"1f523","๐Ÿ”ค":"1f524","๐Ÿ…ฐ":"1f170","๐Ÿ†Ž":"1f18e","๐Ÿ…ฑ":"1f171","๐Ÿ†‘":"1f191","๐Ÿ†’":"1f192","๐Ÿ†“":"1f193","โ„น":"2139","๐Ÿ†”":"1f194","โ“‚":"24c2","๐Ÿ†•":"1f195","๐Ÿ†–":"1f196","๐Ÿ…พ":"1f17e","๐Ÿ†—":"1f197","๐Ÿ…ฟ":"1f17f","๐Ÿ†˜":"1f198","๐Ÿ†™":"1f199","๐Ÿ†š":"1f19a","๐Ÿˆ":"1f201","๐Ÿˆ‚":"1f202","๐Ÿˆท":"1f237","๐Ÿˆถ":"1f236","๐Ÿˆฏ":"1f22f","๐Ÿ‰":"1f250","๐Ÿˆน":"1f239","๐Ÿˆš":"1f21a","๐Ÿˆฒ":"1f232","๐Ÿ‰‘":"1f251","๐Ÿˆธ":"1f238","๐Ÿˆด":"1f234","๐Ÿˆณ":"1f233","ใŠ—":"3297","ใŠ™":"3299","๐Ÿˆบ":"1f23a","๐Ÿˆต":"1f235","โ–ช":"25aa","โ–ซ":"25ab","โ—ป":"25fb","โ—ผ":"25fc","โ—ฝ":"25fd","โ—พ":"25fe","โฌ›":"2b1b","โฌœ":"2b1c","๐Ÿ”ถ":"1f536","๐Ÿ”ท":"1f537","๐Ÿ”ธ":"1f538","๐Ÿ”น":"1f539","๐Ÿ”บ":"1f53a","๐Ÿ”ป":"1f53b","๐Ÿ’ ":"1f4a0","๐Ÿ”˜":"1f518","๐Ÿ”ฒ":"1f532","๐Ÿ”ณ":"1f533","โšช":"26aa","โšซ":"26ab","๐Ÿ”ด":"1f534","๐Ÿ”ต":"1f535","๐Ÿ":"1f3c1","๐Ÿšฉ":"1f6a9","๐ŸŽŒ":"1f38c","๐Ÿด":"1f3f4","๐Ÿณ":"1f3f3","โ˜บ๏ธ":"263a","โ˜น๏ธ":"2639","โ˜ ๏ธ":"2620","๐Ÿ‘ถ๐Ÿป":"1f476-1f3fb","๐Ÿ‘ถ๐Ÿผ":"1f476-1f3fc","๐Ÿ‘ถ๐Ÿฝ":"1f476-1f3fd","๐Ÿ‘ถ๐Ÿพ":"1f476-1f3fe","๐Ÿ‘ถ๐Ÿฟ":"1f476-1f3ff","๐Ÿง’๐Ÿป":"1f9d2-1f3fb","๐Ÿง’๐Ÿผ":"1f9d2-1f3fc","๐Ÿง’๐Ÿฝ":"1f9d2-1f3fd","๐Ÿง’๐Ÿพ":"1f9d2-1f3fe","๐Ÿง’๐Ÿฟ":"1f9d2-1f3ff","๐Ÿ‘ฆ๐Ÿป":"1f466-1f3fb","๐Ÿ‘ฆ๐Ÿผ":"1f466-1f3fc","๐Ÿ‘ฆ๐Ÿฝ":"1f466-1f3fd","๐Ÿ‘ฆ๐Ÿพ":"1f466-1f3fe","๐Ÿ‘ฆ๐Ÿฟ":"1f466-1f3ff","๐Ÿ‘ง๐Ÿป":"1f467-1f3fb","๐Ÿ‘ง๐Ÿผ":"1f467-1f3fc","๐Ÿ‘ง๐Ÿฝ":"1f467-1f3fd","๐Ÿ‘ง๐Ÿพ":"1f467-1f3fe","๐Ÿ‘ง๐Ÿฟ":"1f467-1f3ff","๐Ÿง‘๐Ÿป":"1f9d1-1f3fb","๐Ÿง‘๐Ÿผ":"1f9d1-1f3fc","๐Ÿง‘๐Ÿฝ":"1f9d1-1f3fd","๐Ÿง‘๐Ÿพ":"1f9d1-1f3fe","๐Ÿง‘๐Ÿฟ":"1f9d1-1f3ff","๐Ÿ‘จ๐Ÿป":"1f468-1f3fb","๐Ÿ‘จ๐Ÿผ":"1f468-1f3fc","๐Ÿ‘จ๐Ÿฝ":"1f468-1f3fd","๐Ÿ‘จ๐Ÿพ":"1f468-1f3fe","๐Ÿ‘จ๐Ÿฟ":"1f468-1f3ff","๐Ÿ‘ฉ๐Ÿป":"1f469-1f3fb","๐Ÿ‘ฉ๐Ÿผ":"1f469-1f3fc","๐Ÿ‘ฉ๐Ÿฝ":"1f469-1f3fd","๐Ÿ‘ฉ๐Ÿพ":"1f469-1f3fe","๐Ÿ‘ฉ๐Ÿฟ":"1f469-1f3ff","๐Ÿง“๐Ÿป":"1f9d3-1f3fb","๐Ÿง“๐Ÿผ":"1f9d3-1f3fc","๐Ÿง“๐Ÿฝ":"1f9d3-1f3fd","๐Ÿง“๐Ÿพ":"1f9d3-1f3fe","๐Ÿง“๐Ÿฟ":"1f9d3-1f3ff","๐Ÿ‘ด๐Ÿป":"1f474-1f3fb","๐Ÿ‘ด๐Ÿผ":"1f474-1f3fc","๐Ÿ‘ด๐Ÿฝ":"1f474-1f3fd","๐Ÿ‘ด๐Ÿพ":"1f474-1f3fe","๐Ÿ‘ด๐Ÿฟ":"1f474-1f3ff","๐Ÿ‘ต๐Ÿป":"1f475-1f3fb","๐Ÿ‘ต๐Ÿผ":"1f475-1f3fc","๐Ÿ‘ต๐Ÿฝ":"1f475-1f3fd","๐Ÿ‘ต๐Ÿพ":"1f475-1f3fe","๐Ÿ‘ต๐Ÿฟ":"1f475-1f3ff","๐Ÿ‘ฎ๐Ÿป":"1f46e-1f3fb","๐Ÿ‘ฎ๐Ÿผ":"1f46e-1f3fc","๐Ÿ‘ฎ๐Ÿฝ":"1f46e-1f3fd","๐Ÿ‘ฎ๐Ÿพ":"1f46e-1f3fe","๐Ÿ‘ฎ๐Ÿฟ":"1f46e-1f3ff","๐Ÿ•ต๏ธ":"1f575","๐Ÿ•ต๐Ÿป":"1f575-1f3fb","๐Ÿ•ต๐Ÿผ":"1f575-1f3fc","๐Ÿ•ต๐Ÿฝ":"1f575-1f3fd","๐Ÿ•ต๐Ÿพ":"1f575-1f3fe","๐Ÿ•ต๐Ÿฟ":"1f575-1f3ff","๐Ÿ’‚๐Ÿป":"1f482-1f3fb","๐Ÿ’‚๐Ÿผ":"1f482-1f3fc","๐Ÿ’‚๐Ÿฝ":"1f482-1f3fd","๐Ÿ’‚๐Ÿพ":"1f482-1f3fe","๐Ÿ’‚๐Ÿฟ":"1f482-1f3ff","๐Ÿ‘ท๐Ÿป":"1f477-1f3fb","๐Ÿ‘ท๐Ÿผ":"1f477-1f3fc","๐Ÿ‘ท๐Ÿฝ":"1f477-1f3fd","๐Ÿ‘ท๐Ÿพ":"1f477-1f3fe","๐Ÿ‘ท๐Ÿฟ":"1f477-1f3ff","๐Ÿคด๐Ÿป":"1f934-1f3fb","๐Ÿคด๐Ÿผ":"1f934-1f3fc","๐Ÿคด๐Ÿฝ":"1f934-1f3fd","๐Ÿคด๐Ÿพ":"1f934-1f3fe","๐Ÿคด๐Ÿฟ":"1f934-1f3ff","๐Ÿ‘ธ๐Ÿป":"1f478-1f3fb","๐Ÿ‘ธ๐Ÿผ":"1f478-1f3fc","๐Ÿ‘ธ๐Ÿฝ":"1f478-1f3fd","๐Ÿ‘ธ๐Ÿพ":"1f478-1f3fe","๐Ÿ‘ธ๐Ÿฟ":"1f478-1f3ff","๐Ÿ‘ณ๐Ÿป":"1f473-1f3fb","๐Ÿ‘ณ๐Ÿผ":"1f473-1f3fc","๐Ÿ‘ณ๐Ÿฝ":"1f473-1f3fd","๐Ÿ‘ณ๐Ÿพ":"1f473-1f3fe","๐Ÿ‘ณ๐Ÿฟ":"1f473-1f3ff","๐Ÿ‘ฒ๐Ÿป":"1f472-1f3fb","๐Ÿ‘ฒ๐Ÿผ":"1f472-1f3fc","๐Ÿ‘ฒ๐Ÿฝ":"1f472-1f3fd","๐Ÿ‘ฒ๐Ÿพ":"1f472-1f3fe","๐Ÿ‘ฒ๐Ÿฟ":"1f472-1f3ff","๐Ÿง•๐Ÿป":"1f9d5-1f3fb","๐Ÿง•๐Ÿผ":"1f9d5-1f3fc","๐Ÿง•๐Ÿฝ":"1f9d5-1f3fd","๐Ÿง•๐Ÿพ":"1f9d5-1f3fe","๐Ÿง•๐Ÿฟ":"1f9d5-1f3ff","๐Ÿง”๐Ÿป":"1f9d4-1f3fb","๐Ÿง”๐Ÿผ":"1f9d4-1f3fc","๐Ÿง”๐Ÿฝ":"1f9d4-1f3fd","๐Ÿง”๐Ÿพ":"1f9d4-1f3fe","๐Ÿง”๐Ÿฟ":"1f9d4-1f3ff","๐Ÿ‘ฑ๐Ÿป":"1f471-1f3fb","๐Ÿ‘ฑ๐Ÿผ":"1f471-1f3fc","๐Ÿ‘ฑ๐Ÿฝ":"1f471-1f3fd","๐Ÿ‘ฑ๐Ÿพ":"1f471-1f3fe","๐Ÿ‘ฑ๐Ÿฟ":"1f471-1f3ff","๐Ÿคต๐Ÿป":"1f935-1f3fb","๐Ÿคต๐Ÿผ":"1f935-1f3fc","๐Ÿคต๐Ÿฝ":"1f935-1f3fd","๐Ÿคต๐Ÿพ":"1f935-1f3fe","๐Ÿคต๐Ÿฟ":"1f935-1f3ff","๐Ÿ‘ฐ๐Ÿป":"1f470-1f3fb","๐Ÿ‘ฐ๐Ÿผ":"1f470-1f3fc","๐Ÿ‘ฐ๐Ÿฝ":"1f470-1f3fd","๐Ÿ‘ฐ๐Ÿพ":"1f470-1f3fe","๐Ÿ‘ฐ๐Ÿฟ":"1f470-1f3ff","๐Ÿคฐ๐Ÿป":"1f930-1f3fb","๐Ÿคฐ๐Ÿผ":"1f930-1f3fc","๐Ÿคฐ๐Ÿฝ":"1f930-1f3fd","๐Ÿคฐ๐Ÿพ":"1f930-1f3fe","๐Ÿคฐ๐Ÿฟ":"1f930-1f3ff","๐Ÿคฑ๐Ÿป":"1f931-1f3fb","๐Ÿคฑ๐Ÿผ":"1f931-1f3fc","๐Ÿคฑ๐Ÿฝ":"1f931-1f3fd","๐Ÿคฑ๐Ÿพ":"1f931-1f3fe","๐Ÿคฑ๐Ÿฟ":"1f931-1f3ff","๐Ÿ‘ผ๐Ÿป":"1f47c-1f3fb","๐Ÿ‘ผ๐Ÿผ":"1f47c-1f3fc","๐Ÿ‘ผ๐Ÿฝ":"1f47c-1f3fd","๐Ÿ‘ผ๐Ÿพ":"1f47c-1f3fe","๐Ÿ‘ผ๐Ÿฟ":"1f47c-1f3ff","๐ŸŽ…๐Ÿป":"1f385-1f3fb","๐ŸŽ…๐Ÿผ":"1f385-1f3fc","๐ŸŽ…๐Ÿฝ":"1f385-1f3fd","๐ŸŽ…๐Ÿพ":"1f385-1f3fe","๐ŸŽ…๐Ÿฟ":"1f385-1f3ff","๐Ÿคถ๐Ÿป":"1f936-1f3fb","๐Ÿคถ๐Ÿผ":"1f936-1f3fc","๐Ÿคถ๐Ÿฝ":"1f936-1f3fd","๐Ÿคถ๐Ÿพ":"1f936-1f3fe","๐Ÿคถ๐Ÿฟ":"1f936-1f3ff","๐Ÿง™๐Ÿป":"1f9d9-1f3fb","๐Ÿง™๐Ÿผ":"1f9d9-1f3fc","๐Ÿง™๐Ÿฝ":"1f9d9-1f3fd","๐Ÿง™๐Ÿพ":"1f9d9-1f3fe","๐Ÿง™๐Ÿฟ":"1f9d9-1f3ff","๐Ÿงš๐Ÿป":"1f9da-1f3fb","๐Ÿงš๐Ÿผ":"1f9da-1f3fc","๐Ÿงš๐Ÿฝ":"1f9da-1f3fd","๐Ÿงš๐Ÿพ":"1f9da-1f3fe","๐Ÿงš๐Ÿฟ":"1f9da-1f3ff","๐Ÿง›๐Ÿป":"1f9db-1f3fb","๐Ÿง›๐Ÿผ":"1f9db-1f3fc","๐Ÿง›๐Ÿฝ":"1f9db-1f3fd","๐Ÿง›๐Ÿพ":"1f9db-1f3fe","๐Ÿง›๐Ÿฟ":"1f9db-1f3ff","๐Ÿงœ๐Ÿป":"1f9dc-1f3fb","๐Ÿงœ๐Ÿผ":"1f9dc-1f3fc","๐Ÿงœ๐Ÿฝ":"1f9dc-1f3fd","๐Ÿงœ๐Ÿพ":"1f9dc-1f3fe","๐Ÿงœ๐Ÿฟ":"1f9dc-1f3ff","๐Ÿง๐Ÿป":"1f9dd-1f3fb","๐Ÿง๐Ÿผ":"1f9dd-1f3fc","๐Ÿง๐Ÿฝ":"1f9dd-1f3fd","๐Ÿง๐Ÿพ":"1f9dd-1f3fe","๐Ÿง๐Ÿฟ":"1f9dd-1f3ff","๐Ÿ™๐Ÿป":"1f64d-1f3fb","๐Ÿ™๐Ÿผ":"1f64d-1f3fc","๐Ÿ™๐Ÿฝ":"1f64d-1f3fd","๐Ÿ™๐Ÿพ":"1f64d-1f3fe","๐Ÿ™๐Ÿฟ":"1f64d-1f3ff","๐Ÿ™Ž๐Ÿป":"1f64e-1f3fb","๐Ÿ™Ž๐Ÿผ":"1f64e-1f3fc","๐Ÿ™Ž๐Ÿฝ":"1f64e-1f3fd","๐Ÿ™Ž๐Ÿพ":"1f64e-1f3fe","๐Ÿ™Ž๐Ÿฟ":"1f64e-1f3ff","๐Ÿ™…๐Ÿป":"1f645-1f3fb","๐Ÿ™…๐Ÿผ":"1f645-1f3fc","๐Ÿ™…๐Ÿฝ":"1f645-1f3fd","๐Ÿ™…๐Ÿพ":"1f645-1f3fe","๐Ÿ™…๐Ÿฟ":"1f645-1f3ff","๐Ÿ™†๐Ÿป":"1f646-1f3fb","๐Ÿ™†๐Ÿผ":"1f646-1f3fc","๐Ÿ™†๐Ÿฝ":"1f646-1f3fd","๐Ÿ™†๐Ÿพ":"1f646-1f3fe","๐Ÿ™†๐Ÿฟ":"1f646-1f3ff","๐Ÿ’๐Ÿป":"1f481-1f3fb","๐Ÿ’๐Ÿผ":"1f481-1f3fc","๐Ÿ’๐Ÿฝ":"1f481-1f3fd","๐Ÿ’๐Ÿพ":"1f481-1f3fe","๐Ÿ’๐Ÿฟ":"1f481-1f3ff","๐Ÿ™‹๐Ÿป":"1f64b-1f3fb","๐Ÿ™‹๐Ÿผ":"1f64b-1f3fc","๐Ÿ™‹๐Ÿฝ":"1f64b-1f3fd","๐Ÿ™‹๐Ÿพ":"1f64b-1f3fe","๐Ÿ™‹๐Ÿฟ":"1f64b-1f3ff","๐Ÿ™‡๐Ÿป":"1f647-1f3fb","๐Ÿ™‡๐Ÿผ":"1f647-1f3fc","๐Ÿ™‡๐Ÿฝ":"1f647-1f3fd","๐Ÿ™‡๐Ÿพ":"1f647-1f3fe","๐Ÿ™‡๐Ÿฟ":"1f647-1f3ff","๐Ÿคฆ๐Ÿป":"1f926-1f3fb","๐Ÿคฆ๐Ÿผ":"1f926-1f3fc","๐Ÿคฆ๐Ÿฝ":"1f926-1f3fd","๐Ÿคฆ๐Ÿพ":"1f926-1f3fe","๐Ÿคฆ๐Ÿฟ":"1f926-1f3ff","๐Ÿคท๐Ÿป":"1f937-1f3fb","๐Ÿคท๐Ÿผ":"1f937-1f3fc","๐Ÿคท๐Ÿฝ":"1f937-1f3fd","๐Ÿคท๐Ÿพ":"1f937-1f3fe","๐Ÿคท๐Ÿฟ":"1f937-1f3ff","๐Ÿ’†๐Ÿป":"1f486-1f3fb","๐Ÿ’†๐Ÿผ":"1f486-1f3fc","๐Ÿ’†๐Ÿฝ":"1f486-1f3fd","๐Ÿ’†๐Ÿพ":"1f486-1f3fe","๐Ÿ’†๐Ÿฟ":"1f486-1f3ff","๐Ÿ’‡๐Ÿป":"1f487-1f3fb","๐Ÿ’‡๐Ÿผ":"1f487-1f3fc","๐Ÿ’‡๐Ÿฝ":"1f487-1f3fd","๐Ÿ’‡๐Ÿพ":"1f487-1f3fe","๐Ÿ’‡๐Ÿฟ":"1f487-1f3ff","๐Ÿšถ๐Ÿป":"1f6b6-1f3fb","๐Ÿšถ๐Ÿผ":"1f6b6-1f3fc","๐Ÿšถ๐Ÿฝ":"1f6b6-1f3fd","๐Ÿšถ๐Ÿพ":"1f6b6-1f3fe","๐Ÿšถ๐Ÿฟ":"1f6b6-1f3ff","๐Ÿƒ๐Ÿป":"1f3c3-1f3fb","๐Ÿƒ๐Ÿผ":"1f3c3-1f3fc","๐Ÿƒ๐Ÿฝ":"1f3c3-1f3fd","๐Ÿƒ๐Ÿพ":"1f3c3-1f3fe","๐Ÿƒ๐Ÿฟ":"1f3c3-1f3ff","๐Ÿ’ƒ๐Ÿป":"1f483-1f3fb","๐Ÿ’ƒ๐Ÿผ":"1f483-1f3fc","๐Ÿ’ƒ๐Ÿฝ":"1f483-1f3fd","๐Ÿ’ƒ๐Ÿพ":"1f483-1f3fe","๐Ÿ’ƒ๐Ÿฟ":"1f483-1f3ff","๐Ÿ•บ๐Ÿป":"1f57a-1f3fb","๐Ÿ•บ๐Ÿผ":"1f57a-1f3fc","๐Ÿ•บ๐Ÿฝ":"1f57a-1f3fd","๐Ÿ•บ๐Ÿพ":"1f57a-1f3fe","๐Ÿ•บ๐Ÿฟ":"1f57a-1f3ff","๐Ÿง–๐Ÿป":"1f9d6-1f3fb","๐Ÿง–๐Ÿผ":"1f9d6-1f3fc","๐Ÿง–๐Ÿฝ":"1f9d6-1f3fd","๐Ÿง–๐Ÿพ":"1f9d6-1f3fe","๐Ÿง–๐Ÿฟ":"1f9d6-1f3ff","๐Ÿง—๐Ÿป":"1f9d7-1f3fb","๐Ÿง—๐Ÿผ":"1f9d7-1f3fc","๐Ÿง—๐Ÿฝ":"1f9d7-1f3fd","๐Ÿง—๐Ÿพ":"1f9d7-1f3fe","๐Ÿง—๐Ÿฟ":"1f9d7-1f3ff","๐Ÿง˜๐Ÿป":"1f9d8-1f3fb","๐Ÿง˜๐Ÿผ":"1f9d8-1f3fc","๐Ÿง˜๐Ÿฝ":"1f9d8-1f3fd","๐Ÿง˜๐Ÿพ":"1f9d8-1f3fe","๐Ÿง˜๐Ÿฟ":"1f9d8-1f3ff","๐Ÿ›€๐Ÿป":"1f6c0-1f3fb","๐Ÿ›€๐Ÿผ":"1f6c0-1f3fc","๐Ÿ›€๐Ÿฝ":"1f6c0-1f3fd","๐Ÿ›€๐Ÿพ":"1f6c0-1f3fe","๐Ÿ›€๐Ÿฟ":"1f6c0-1f3ff","๐Ÿ›Œ๐Ÿป":"1f6cc-1f3fb","๐Ÿ›Œ๐Ÿผ":"1f6cc-1f3fc","๐Ÿ›Œ๐Ÿฝ":"1f6cc-1f3fd","๐Ÿ›Œ๐Ÿพ":"1f6cc-1f3fe","๐Ÿ›Œ๐Ÿฟ":"1f6cc-1f3ff","๐Ÿ•ด๏ธ":"1f574","๐Ÿ•ด๐Ÿป":"1f574-1f3fb","๐Ÿ•ด๐Ÿผ":"1f574-1f3fc","๐Ÿ•ด๐Ÿฝ":"1f574-1f3fd","๐Ÿ•ด๐Ÿพ":"1f574-1f3fe","๐Ÿ•ด๐Ÿฟ":"1f574-1f3ff","๐Ÿ—ฃ๏ธ":"1f5e3","๐Ÿ‡๐Ÿป":"1f3c7-1f3fb","๐Ÿ‡๐Ÿผ":"1f3c7-1f3fc","๐Ÿ‡๐Ÿฝ":"1f3c7-1f3fd","๐Ÿ‡๐Ÿพ":"1f3c7-1f3fe","๐Ÿ‡๐Ÿฟ":"1f3c7-1f3ff","โ›ท๏ธ":"26f7","๐Ÿ‚๐Ÿป":"1f3c2-1f3fb","๐Ÿ‚๐Ÿผ":"1f3c2-1f3fc","๐Ÿ‚๐Ÿฝ":"1f3c2-1f3fd","๐Ÿ‚๐Ÿพ":"1f3c2-1f3fe","๐Ÿ‚๐Ÿฟ":"1f3c2-1f3ff","๐ŸŒ๏ธ":"1f3cc","๐ŸŒ๐Ÿป":"1f3cc-1f3fb","๐ŸŒ๐Ÿผ":"1f3cc-1f3fc","๐ŸŒ๐Ÿฝ":"1f3cc-1f3fd","๐ŸŒ๐Ÿพ":"1f3cc-1f3fe","๐ŸŒ๐Ÿฟ":"1f3cc-1f3ff","๐Ÿ„๐Ÿป":"1f3c4-1f3fb","๐Ÿ„๐Ÿผ":"1f3c4-1f3fc","๐Ÿ„๐Ÿฝ":"1f3c4-1f3fd","๐Ÿ„๐Ÿพ":"1f3c4-1f3fe","๐Ÿ„๐Ÿฟ":"1f3c4-1f3ff","๐Ÿšฃ๐Ÿป":"1f6a3-1f3fb","๐Ÿšฃ๐Ÿผ":"1f6a3-1f3fc","๐Ÿšฃ๐Ÿฝ":"1f6a3-1f3fd","๐Ÿšฃ๐Ÿพ":"1f6a3-1f3fe","๐Ÿšฃ๐Ÿฟ":"1f6a3-1f3ff","๐ŸŠ๐Ÿป":"1f3ca-1f3fb","๐ŸŠ๐Ÿผ":"1f3ca-1f3fc","๐ŸŠ๐Ÿฝ":"1f3ca-1f3fd","๐ŸŠ๐Ÿพ":"1f3ca-1f3fe","๐ŸŠ๐Ÿฟ":"1f3ca-1f3ff","โ›น๏ธ":"26f9","โ›น๐Ÿป":"26f9-1f3fb","โ›น๐Ÿผ":"26f9-1f3fc","โ›น๐Ÿฝ":"26f9-1f3fd","โ›น๐Ÿพ":"26f9-1f3fe","โ›น๐Ÿฟ":"26f9-1f3ff","๐Ÿ‹๏ธ":"1f3cb","๐Ÿ‹๐Ÿป":"1f3cb-1f3fb","๐Ÿ‹๐Ÿผ":"1f3cb-1f3fc","๐Ÿ‹๐Ÿฝ":"1f3cb-1f3fd","๐Ÿ‹๐Ÿพ":"1f3cb-1f3fe","๐Ÿ‹๐Ÿฟ":"1f3cb-1f3ff","๐Ÿšด๐Ÿป":"1f6b4-1f3fb","๐Ÿšด๐Ÿผ":"1f6b4-1f3fc","๐Ÿšด๐Ÿฝ":"1f6b4-1f3fd","๐Ÿšด๐Ÿพ":"1f6b4-1f3fe","๐Ÿšด๐Ÿฟ":"1f6b4-1f3ff","๐Ÿšต๐Ÿป":"1f6b5-1f3fb","๐Ÿšต๐Ÿผ":"1f6b5-1f3fc","๐Ÿšต๐Ÿฝ":"1f6b5-1f3fd","๐Ÿšต๐Ÿพ":"1f6b5-1f3fe","๐Ÿšต๐Ÿฟ":"1f6b5-1f3ff","๐ŸŽ๏ธ":"1f3ce","๐Ÿ๏ธ":"1f3cd","๐Ÿคธ๐Ÿป":"1f938-1f3fb","๐Ÿคธ๐Ÿผ":"1f938-1f3fc","๐Ÿคธ๐Ÿฝ":"1f938-1f3fd","๐Ÿคธ๐Ÿพ":"1f938-1f3fe","๐Ÿคธ๐Ÿฟ":"1f938-1f3ff","๐Ÿคฝ๐Ÿป":"1f93d-1f3fb","๐Ÿคฝ๐Ÿผ":"1f93d-1f3fc","๐Ÿคฝ๐Ÿฝ":"1f93d-1f3fd","๐Ÿคฝ๐Ÿพ":"1f93d-1f3fe","๐Ÿคฝ๐Ÿฟ":"1f93d-1f3ff","๐Ÿคพ๐Ÿป":"1f93e-1f3fb","๐Ÿคพ๐Ÿผ":"1f93e-1f3fc","๐Ÿคพ๐Ÿฝ":"1f93e-1f3fd","๐Ÿคพ๐Ÿพ":"1f93e-1f3fe","๐Ÿคพ๐Ÿฟ":"1f93e-1f3ff","๐Ÿคน๐Ÿป":"1f939-1f3fb","๐Ÿคน๐Ÿผ":"1f939-1f3fc","๐Ÿคน๐Ÿฝ":"1f939-1f3fd","๐Ÿคน๐Ÿพ":"1f939-1f3fe","๐Ÿคน๐Ÿฟ":"1f939-1f3ff","๐Ÿคณ๐Ÿป":"1f933-1f3fb","๐Ÿคณ๐Ÿผ":"1f933-1f3fc","๐Ÿคณ๐Ÿฝ":"1f933-1f3fd","๐Ÿคณ๐Ÿพ":"1f933-1f3fe","๐Ÿคณ๐Ÿฟ":"1f933-1f3ff","๐Ÿ’ช๐Ÿป":"1f4aa-1f3fb","๐Ÿ’ช๐Ÿผ":"1f4aa-1f3fc","๐Ÿ’ช๐Ÿฝ":"1f4aa-1f3fd","๐Ÿ’ช๐Ÿพ":"1f4aa-1f3fe","๐Ÿ’ช๐Ÿฟ":"1f4aa-1f3ff","๐Ÿ‘ˆ๐Ÿป":"1f448-1f3fb","๐Ÿ‘ˆ๐Ÿผ":"1f448-1f3fc","๐Ÿ‘ˆ๐Ÿฝ":"1f448-1f3fd","๐Ÿ‘ˆ๐Ÿพ":"1f448-1f3fe","๐Ÿ‘ˆ๐Ÿฟ":"1f448-1f3ff","๐Ÿ‘‰๐Ÿป":"1f449-1f3fb","๐Ÿ‘‰๐Ÿผ":"1f449-1f3fc","๐Ÿ‘‰๐Ÿฝ":"1f449-1f3fd","๐Ÿ‘‰๐Ÿพ":"1f449-1f3fe","๐Ÿ‘‰๐Ÿฟ":"1f449-1f3ff","โ˜๏ธ":"261d","โ˜๐Ÿป":"261d-1f3fb","โ˜๐Ÿผ":"261d-1f3fc","โ˜๐Ÿฝ":"261d-1f3fd","โ˜๐Ÿพ":"261d-1f3fe","โ˜๐Ÿฟ":"261d-1f3ff","๐Ÿ‘†๐Ÿป":"1f446-1f3fb","๐Ÿ‘†๐Ÿผ":"1f446-1f3fc","๐Ÿ‘†๐Ÿฝ":"1f446-1f3fd","๐Ÿ‘†๐Ÿพ":"1f446-1f3fe","๐Ÿ‘†๐Ÿฟ":"1f446-1f3ff","๐Ÿ–•๐Ÿป":"1f595-1f3fb","๐Ÿ–•๐Ÿผ":"1f595-1f3fc","๐Ÿ–•๐Ÿฝ":"1f595-1f3fd","๐Ÿ–•๐Ÿพ":"1f595-1f3fe","๐Ÿ–•๐Ÿฟ":"1f595-1f3ff","๐Ÿ‘‡๐Ÿป":"1f447-1f3fb","๐Ÿ‘‡๐Ÿผ":"1f447-1f3fc","๐Ÿ‘‡๐Ÿฝ":"1f447-1f3fd","๐Ÿ‘‡๐Ÿพ":"1f447-1f3fe","๐Ÿ‘‡๐Ÿฟ":"1f447-1f3ff","โœŒ๏ธ":"270c","โœŒ๐Ÿป":"270c-1f3fb","โœŒ๐Ÿผ":"270c-1f3fc","โœŒ๐Ÿฝ":"270c-1f3fd","โœŒ๐Ÿพ":"270c-1f3fe","โœŒ๐Ÿฟ":"270c-1f3ff","๐Ÿคž๐Ÿป":"1f91e-1f3fb","๐Ÿคž๐Ÿผ":"1f91e-1f3fc","๐Ÿคž๐Ÿฝ":"1f91e-1f3fd","๐Ÿคž๐Ÿพ":"1f91e-1f3fe","๐Ÿคž๐Ÿฟ":"1f91e-1f3ff","๐Ÿ––๐Ÿป":"1f596-1f3fb","๐Ÿ––๐Ÿผ":"1f596-1f3fc","๐Ÿ––๐Ÿฝ":"1f596-1f3fd","๐Ÿ––๐Ÿพ":"1f596-1f3fe","๐Ÿ––๐Ÿฟ":"1f596-1f3ff","๐Ÿค˜๐Ÿป":"1f918-1f3fb","๐Ÿค˜๐Ÿผ":"1f918-1f3fc","๐Ÿค˜๐Ÿฝ":"1f918-1f3fd","๐Ÿค˜๐Ÿพ":"1f918-1f3fe","๐Ÿค˜๐Ÿฟ":"1f918-1f3ff","๐Ÿค™๐Ÿป":"1f919-1f3fb","๐Ÿค™๐Ÿผ":"1f919-1f3fc","๐Ÿค™๐Ÿฝ":"1f919-1f3fd","๐Ÿค™๐Ÿพ":"1f919-1f3fe","๐Ÿค™๐Ÿฟ":"1f919-1f3ff","๐Ÿ–๏ธ":"1f590","๐Ÿ–๐Ÿป":"1f590-1f3fb","๐Ÿ–๐Ÿผ":"1f590-1f3fc","๐Ÿ–๐Ÿฝ":"1f590-1f3fd","๐Ÿ–๐Ÿพ":"1f590-1f3fe","๐Ÿ–๐Ÿฟ":"1f590-1f3ff","โœ‹๐Ÿป":"270b-1f3fb","โœ‹๐Ÿผ":"270b-1f3fc","โœ‹๐Ÿฝ":"270b-1f3fd","โœ‹๐Ÿพ":"270b-1f3fe","โœ‹๐Ÿฟ":"270b-1f3ff","๐Ÿ‘Œ๐Ÿป":"1f44c-1f3fb","๐Ÿ‘Œ๐Ÿผ":"1f44c-1f3fc","๐Ÿ‘Œ๐Ÿฝ":"1f44c-1f3fd","๐Ÿ‘Œ๐Ÿพ":"1f44c-1f3fe","๐Ÿ‘Œ๐Ÿฟ":"1f44c-1f3ff","๐Ÿ‘๐Ÿป":"1f44d-1f3fb","๐Ÿ‘๐Ÿผ":"1f44d-1f3fc","๐Ÿ‘๐Ÿฝ":"1f44d-1f3fd","๐Ÿ‘๐Ÿพ":"1f44d-1f3fe","๐Ÿ‘๐Ÿฟ":"1f44d-1f3ff","๐Ÿ‘Ž๐Ÿป":"1f44e-1f3fb","๐Ÿ‘Ž๐Ÿผ":"1f44e-1f3fc","๐Ÿ‘Ž๐Ÿฝ":"1f44e-1f3fd","๐Ÿ‘Ž๐Ÿพ":"1f44e-1f3fe","๐Ÿ‘Ž๐Ÿฟ":"1f44e-1f3ff","โœŠ๐Ÿป":"270a-1f3fb","โœŠ๐Ÿผ":"270a-1f3fc","โœŠ๐Ÿฝ":"270a-1f3fd","โœŠ๐Ÿพ":"270a-1f3fe","โœŠ๐Ÿฟ":"270a-1f3ff","๐Ÿ‘Š๐Ÿป":"1f44a-1f3fb","๐Ÿ‘Š๐Ÿผ":"1f44a-1f3fc","๐Ÿ‘Š๐Ÿฝ":"1f44a-1f3fd","๐Ÿ‘Š๐Ÿพ":"1f44a-1f3fe","๐Ÿ‘Š๐Ÿฟ":"1f44a-1f3ff","๐Ÿค›๐Ÿป":"1f91b-1f3fb","๐Ÿค›๐Ÿผ":"1f91b-1f3fc","๐Ÿค›๐Ÿฝ":"1f91b-1f3fd","๐Ÿค›๐Ÿพ":"1f91b-1f3fe","๐Ÿค›๐Ÿฟ":"1f91b-1f3ff","๐Ÿคœ๐Ÿป":"1f91c-1f3fb","๐Ÿคœ๐Ÿผ":"1f91c-1f3fc","๐Ÿคœ๐Ÿฝ":"1f91c-1f3fd","๐Ÿคœ๐Ÿพ":"1f91c-1f3fe","๐Ÿคœ๐Ÿฟ":"1f91c-1f3ff","๐Ÿคš๐Ÿป":"1f91a-1f3fb","๐Ÿคš๐Ÿผ":"1f91a-1f3fc","๐Ÿคš๐Ÿฝ":"1f91a-1f3fd","๐Ÿคš๐Ÿพ":"1f91a-1f3fe","๐Ÿคš๐Ÿฟ":"1f91a-1f3ff","๐Ÿ‘‹๐Ÿป":"1f44b-1f3fb","๐Ÿ‘‹๐Ÿผ":"1f44b-1f3fc","๐Ÿ‘‹๐Ÿฝ":"1f44b-1f3fd","๐Ÿ‘‹๐Ÿพ":"1f44b-1f3fe","๐Ÿ‘‹๐Ÿฟ":"1f44b-1f3ff","๐ŸคŸ๐Ÿป":"1f91f-1f3fb","๐ŸคŸ๐Ÿผ":"1f91f-1f3fc","๐ŸคŸ๐Ÿฝ":"1f91f-1f3fd","๐ŸคŸ๐Ÿพ":"1f91f-1f3fe","๐ŸคŸ๐Ÿฟ":"1f91f-1f3ff","โœ๏ธ":"270d","โœ๐Ÿป":"270d-1f3fb","โœ๐Ÿผ":"270d-1f3fc","โœ๐Ÿฝ":"270d-1f3fd","โœ๐Ÿพ":"270d-1f3fe","โœ๐Ÿฟ":"270d-1f3ff","๐Ÿ‘๐Ÿป":"1f44f-1f3fb","๐Ÿ‘๐Ÿผ":"1f44f-1f3fc","๐Ÿ‘๐Ÿฝ":"1f44f-1f3fd","๐Ÿ‘๐Ÿพ":"1f44f-1f3fe","๐Ÿ‘๐Ÿฟ":"1f44f-1f3ff","๐Ÿ‘๐Ÿป":"1f450-1f3fb","๐Ÿ‘๐Ÿผ":"1f450-1f3fc","๐Ÿ‘๐Ÿฝ":"1f450-1f3fd","๐Ÿ‘๐Ÿพ":"1f450-1f3fe","๐Ÿ‘๐Ÿฟ":"1f450-1f3ff","๐Ÿ™Œ๐Ÿป":"1f64c-1f3fb","๐Ÿ™Œ๐Ÿผ":"1f64c-1f3fc","๐Ÿ™Œ๐Ÿฝ":"1f64c-1f3fd","๐Ÿ™Œ๐Ÿพ":"1f64c-1f3fe","๐Ÿ™Œ๐Ÿฟ":"1f64c-1f3ff","๐Ÿคฒ๐Ÿป":"1f932-1f3fb","๐Ÿคฒ๐Ÿผ":"1f932-1f3fc","๐Ÿคฒ๐Ÿฝ":"1f932-1f3fd","๐Ÿคฒ๐Ÿพ":"1f932-1f3fe","๐Ÿคฒ๐Ÿฟ":"1f932-1f3ff","๐Ÿ™๐Ÿป":"1f64f-1f3fb","๐Ÿ™๐Ÿผ":"1f64f-1f3fc","๐Ÿ™๐Ÿฝ":"1f64f-1f3fd","๐Ÿ™๐Ÿพ":"1f64f-1f3fe","๐Ÿ™๐Ÿฟ":"1f64f-1f3ff","๐Ÿ’…๐Ÿป":"1f485-1f3fb","๐Ÿ’…๐Ÿผ":"1f485-1f3fc","๐Ÿ’…๐Ÿฝ":"1f485-1f3fd","๐Ÿ’…๐Ÿพ":"1f485-1f3fe","๐Ÿ’…๐Ÿฟ":"1f485-1f3ff","๐Ÿ‘‚๐Ÿป":"1f442-1f3fb","๐Ÿ‘‚๐Ÿผ":"1f442-1f3fc","๐Ÿ‘‚๐Ÿฝ":"1f442-1f3fd","๐Ÿ‘‚๐Ÿพ":"1f442-1f3fe","๐Ÿ‘‚๐Ÿฟ":"1f442-1f3ff","๐Ÿ‘ƒ๐Ÿป":"1f443-1f3fb","๐Ÿ‘ƒ๐Ÿผ":"1f443-1f3fc","๐Ÿ‘ƒ๐Ÿฝ":"1f443-1f3fd","๐Ÿ‘ƒ๐Ÿพ":"1f443-1f3fe","๐Ÿ‘ƒ๐Ÿฟ":"1f443-1f3ff","๐Ÿ‘๏ธ":"1f441","โค๏ธ":"2764","โฃ๏ธ":"2763","๐Ÿ—จ๏ธ":"1f5e8","๐Ÿ—ฏ๏ธ":"1f5ef","๐Ÿ•ณ๏ธ":"1f573","๐Ÿ•ถ๏ธ":"1f576","๐Ÿ›๏ธ":"1f6cd","โ›‘๏ธ":"26d1","๐Ÿฟ๏ธ":"1f43f","๐Ÿ•Š๏ธ":"1f54a","๐Ÿ•ท๏ธ":"1f577","๐Ÿ•ธ๏ธ":"1f578","๐Ÿต๏ธ":"1f3f5","โ˜˜๏ธ":"2618","๐ŸŒถ๏ธ":"1f336","๐Ÿฝ๏ธ":"1f37d","๐Ÿ—บ๏ธ":"1f5fa","๐Ÿ”๏ธ":"1f3d4","โ›ฐ๏ธ":"26f0","๐Ÿ•๏ธ":"1f3d5","๐Ÿ–๏ธ":"1f3d6","๐Ÿœ๏ธ":"1f3dc","๐Ÿ๏ธ":"1f3dd","๐Ÿž๏ธ":"1f3de","๐ŸŸ๏ธ":"1f3df","๐Ÿ›๏ธ":"1f3db","๐Ÿ—๏ธ":"1f3d7","๐Ÿ˜๏ธ":"1f3d8","๐Ÿ™๏ธ":"1f3d9","๐Ÿš๏ธ":"1f3da","โ›ฉ๏ธ":"26e9","โ™จ๏ธ":"2668","๐Ÿ–ผ๏ธ":"1f5bc","๐Ÿ›ฃ๏ธ":"1f6e3","๐Ÿ›ค๏ธ":"1f6e4","๐Ÿ›ณ๏ธ":"1f6f3","โ›ด๏ธ":"26f4","๐Ÿ›ฅ๏ธ":"1f6e5","โœˆ๏ธ":"2708","๐Ÿ›ฉ๏ธ":"1f6e9","๐Ÿ›ฐ๏ธ":"1f6f0","๐Ÿ›Ž๏ธ":"1f6ce","๐Ÿ›๏ธ":"1f6cf","๐Ÿ›‹๏ธ":"1f6cb","โฑ๏ธ":"23f1","โฒ๏ธ":"23f2","๐Ÿ•ฐ๏ธ":"1f570","๐ŸŒก๏ธ":"1f321","โ˜€๏ธ":"2600","โ˜๏ธ":"2601","โ›ˆ๏ธ":"26c8","๐ŸŒค๏ธ":"1f324","๐ŸŒฅ๏ธ":"1f325","๐ŸŒฆ๏ธ":"1f326","๐ŸŒง๏ธ":"1f327","๐ŸŒจ๏ธ":"1f328","๐ŸŒฉ๏ธ":"1f329","๐ŸŒช๏ธ":"1f32a","๐ŸŒซ๏ธ":"1f32b","๐ŸŒฌ๏ธ":"1f32c","โ˜‚๏ธ":"2602","โ›ฑ๏ธ":"26f1","โ„๏ธ":"2744","โ˜ƒ๏ธ":"2603","โ˜„๏ธ":"2604","๐ŸŽ—๏ธ":"1f397","๐ŸŽŸ๏ธ":"1f39f","๐ŸŽ–๏ธ":"1f396","โ›ธ๏ธ":"26f8","๐Ÿ•น๏ธ":"1f579","โ™ ๏ธ":"2660","โ™ฅ๏ธ":"2665","โ™ฆ๏ธ":"2666","โ™ฃ๏ธ":"2663","๐ŸŽ™๏ธ":"1f399","๐ŸŽš๏ธ":"1f39a","๐ŸŽ›๏ธ":"1f39b","โ˜Ž๏ธ":"260e","๐Ÿ–ฅ๏ธ":"1f5a5","๐Ÿ–จ๏ธ":"1f5a8","โŒจ๏ธ":"2328","๐Ÿ–ฑ๏ธ":"1f5b1","๐Ÿ–ฒ๏ธ":"1f5b2","๐ŸŽž๏ธ":"1f39e","๐Ÿ“ฝ๏ธ":"1f4fd","๐Ÿ•ฏ๏ธ":"1f56f","๐Ÿ—ž๏ธ":"1f5de","๐Ÿท๏ธ":"1f3f7","โœ‰๏ธ":"2709","๐Ÿ—ณ๏ธ":"1f5f3","โœ๏ธ":"270f","โœ’๏ธ":"2712","๐Ÿ–‹๏ธ":"1f58b","๐Ÿ–Š๏ธ":"1f58a","๐Ÿ–Œ๏ธ":"1f58c","๐Ÿ–๏ธ":"1f58d","๐Ÿ—‚๏ธ":"1f5c2","๐Ÿ—’๏ธ":"1f5d2","๐Ÿ—“๏ธ":"1f5d3","๐Ÿ–‡๏ธ":"1f587","โœ‚๏ธ":"2702","๐Ÿ—ƒ๏ธ":"1f5c3","๐Ÿ—„๏ธ":"1f5c4","๐Ÿ—‘๏ธ":"1f5d1","๐Ÿ—๏ธ":"1f5dd","โ›๏ธ":"26cf","โš’๏ธ":"2692","๐Ÿ› ๏ธ":"1f6e0","๐Ÿ—ก๏ธ":"1f5e1","โš”๏ธ":"2694","๐Ÿ›ก๏ธ":"1f6e1","โš™๏ธ":"2699","๐Ÿ—œ๏ธ":"1f5dc","โš—๏ธ":"2697","โš–๏ธ":"2696","โ›“๏ธ":"26d3","โšฐ๏ธ":"26b0","โšฑ๏ธ":"26b1","๐Ÿ›ข๏ธ":"1f6e2","โš ๏ธ":"26a0","โ˜ข๏ธ":"2622","โ˜ฃ๏ธ":"2623","โฌ†๏ธ":"2b06","โ†—๏ธ":"2197","โžก๏ธ":"27a1","โ†˜๏ธ":"2198","โฌ‡๏ธ":"2b07","โ†™๏ธ":"2199","โฌ…๏ธ":"2b05","โ†–๏ธ":"2196","โ†•๏ธ":"2195","โ†”๏ธ":"2194","โ†ฉ๏ธ":"21a9","โ†ช๏ธ":"21aa","โคด๏ธ":"2934","โคต๏ธ":"2935","โš›๏ธ":"269b","๐Ÿ•‰๏ธ":"1f549","โœก๏ธ":"2721","โ˜ธ๏ธ":"2638","โ˜ฏ๏ธ":"262f","โœ๏ธ":"271d","โ˜ฆ๏ธ":"2626","โ˜ช๏ธ":"262a","โ˜ฎ๏ธ":"262e","โ–ถ๏ธ":"25b6","โญ๏ธ":"23ed","โฏ๏ธ":"23ef","โ—€๏ธ":"25c0","โฎ๏ธ":"23ee","โธ๏ธ":"23f8","โน๏ธ":"23f9","โบ๏ธ":"23fa","โ๏ธ":"23cf","โ™€๏ธ":"2640","โ™‚๏ธ":"2642","โš•๏ธ":"2695","โ™ป๏ธ":"267b","โšœ๏ธ":"269c","โ˜‘๏ธ":"2611","โœ”๏ธ":"2714","โœ–๏ธ":"2716","ใ€ฝ๏ธ":"303d","โœณ๏ธ":"2733","โœด๏ธ":"2734","โ‡๏ธ":"2747","โ€ผ๏ธ":"203c","โ‰๏ธ":"2049","ใ€ฐ๏ธ":"3030","ยฉ๏ธ":"a9","ยฎ๏ธ":"ae","โ„ข๏ธ":"2122","#โƒฃ":"23-20e3","*โƒฃ":"2a-20e3","0โƒฃ":"30-20e3","1โƒฃ":"31-20e3","2โƒฃ":"32-20e3","3โƒฃ":"33-20e3","4โƒฃ":"34-20e3","5โƒฃ":"35-20e3","6โƒฃ":"36-20e3","7โƒฃ":"37-20e3","8โƒฃ":"38-20e3","9โƒฃ":"39-20e3","๐Ÿ…ฐ๏ธ":"1f170","๐Ÿ…ฑ๏ธ":"1f171","โ„น๏ธ":"2139","โ“‚๏ธ":"24c2","๐Ÿ…พ๏ธ":"1f17e","๐Ÿ…ฟ๏ธ":"1f17f","๐Ÿˆ‚๏ธ":"1f202","๐Ÿˆท๏ธ":"1f237","ใŠ—๏ธ":"3297","ใŠ™๏ธ":"3299","โ–ช๏ธ":"25aa","โ–ซ๏ธ":"25ab","โ—ป๏ธ":"25fb","โ—ผ๏ธ":"25fc","๐Ÿณ๏ธ":"1f3f3","๐Ÿ‡ฆ๐Ÿ‡จ":"1f1e6-1f1e8","๐Ÿ‡ฆ๐Ÿ‡ฉ":"1f1e6-1f1e9","๐Ÿ‡ฆ๐Ÿ‡ช":"1f1e6-1f1ea","๐Ÿ‡ฆ๐Ÿ‡ซ":"1f1e6-1f1eb","๐Ÿ‡ฆ๐Ÿ‡ฌ":"1f1e6-1f1ec","๐Ÿ‡ฆ๐Ÿ‡ฎ":"1f1e6-1f1ee","๐Ÿ‡ฆ๐Ÿ‡ฑ":"1f1e6-1f1f1","๐Ÿ‡ฆ๐Ÿ‡ฒ":"1f1e6-1f1f2","๐Ÿ‡ฆ๐Ÿ‡ด":"1f1e6-1f1f4","๐Ÿ‡ฆ๐Ÿ‡ถ":"1f1e6-1f1f6","๐Ÿ‡ฆ๐Ÿ‡ท":"1f1e6-1f1f7","๐Ÿ‡ฆ๐Ÿ‡ธ":"1f1e6-1f1f8","๐Ÿ‡ฆ๐Ÿ‡น":"1f1e6-1f1f9","๐Ÿ‡ฆ๐Ÿ‡บ":"1f1e6-1f1fa","๐Ÿ‡ฆ๐Ÿ‡ผ":"1f1e6-1f1fc","๐Ÿ‡ฆ๐Ÿ‡ฝ":"1f1e6-1f1fd","๐Ÿ‡ฆ๐Ÿ‡ฟ":"1f1e6-1f1ff","๐Ÿ‡ง๐Ÿ‡ฆ":"1f1e7-1f1e6","๐Ÿ‡ง๐Ÿ‡ง":"1f1e7-1f1e7","๐Ÿ‡ง๐Ÿ‡ฉ":"1f1e7-1f1e9","๐Ÿ‡ง๐Ÿ‡ช":"1f1e7-1f1ea","๐Ÿ‡ง๐Ÿ‡ซ":"1f1e7-1f1eb","๐Ÿ‡ง๐Ÿ‡ฌ":"1f1e7-1f1ec","๐Ÿ‡ง๐Ÿ‡ญ":"1f1e7-1f1ed","๐Ÿ‡ง๐Ÿ‡ฎ":"1f1e7-1f1ee","๐Ÿ‡ง๐Ÿ‡ฏ":"1f1e7-1f1ef","๐Ÿ‡ง๐Ÿ‡ฑ":"1f1e7-1f1f1","๐Ÿ‡ง๐Ÿ‡ฒ":"1f1e7-1f1f2","๐Ÿ‡ง๐Ÿ‡ณ":"1f1e7-1f1f3","๐Ÿ‡ง๐Ÿ‡ด":"1f1e7-1f1f4","๐Ÿ‡ง๐Ÿ‡ถ":"1f1e7-1f1f6","๐Ÿ‡ง๐Ÿ‡ท":"1f1e7-1f1f7","๐Ÿ‡ง๐Ÿ‡ธ":"1f1e7-1f1f8","๐Ÿ‡ง๐Ÿ‡น":"1f1e7-1f1f9","๐Ÿ‡ง๐Ÿ‡ป":"1f1e7-1f1fb","๐Ÿ‡ง๐Ÿ‡ผ":"1f1e7-1f1fc","๐Ÿ‡ง๐Ÿ‡พ":"1f1e7-1f1fe","๐Ÿ‡ง๐Ÿ‡ฟ":"1f1e7-1f1ff","๐Ÿ‡จ๐Ÿ‡ฆ":"1f1e8-1f1e6","๐Ÿ‡จ๐Ÿ‡จ":"1f1e8-1f1e8","๐Ÿ‡จ๐Ÿ‡ฉ":"1f1e8-1f1e9","๐Ÿ‡จ๐Ÿ‡ซ":"1f1e8-1f1eb","๐Ÿ‡จ๐Ÿ‡ฌ":"1f1e8-1f1ec","๐Ÿ‡จ๐Ÿ‡ญ":"1f1e8-1f1ed","๐Ÿ‡จ๐Ÿ‡ฎ":"1f1e8-1f1ee","๐Ÿ‡จ๐Ÿ‡ฐ":"1f1e8-1f1f0","๐Ÿ‡จ๐Ÿ‡ฑ":"1f1e8-1f1f1","๐Ÿ‡จ๐Ÿ‡ฒ":"1f1e8-1f1f2","๐Ÿ‡จ๐Ÿ‡ณ":"1f1e8-1f1f3","๐Ÿ‡จ๐Ÿ‡ด":"1f1e8-1f1f4","๐Ÿ‡จ๐Ÿ‡ต":"1f1e8-1f1f5","๐Ÿ‡จ๐Ÿ‡ท":"1f1e8-1f1f7","๐Ÿ‡จ๐Ÿ‡บ":"1f1e8-1f1fa","๐Ÿ‡จ๐Ÿ‡ป":"1f1e8-1f1fb","๐Ÿ‡จ๐Ÿ‡ผ":"1f1e8-1f1fc","๐Ÿ‡จ๐Ÿ‡ฝ":"1f1e8-1f1fd","๐Ÿ‡จ๐Ÿ‡พ":"1f1e8-1f1fe","๐Ÿ‡จ๐Ÿ‡ฟ":"1f1e8-1f1ff","๐Ÿ‡ฉ๐Ÿ‡ช":"1f1e9-1f1ea","๐Ÿ‡ฉ๐Ÿ‡ฌ":"1f1e9-1f1ec","๐Ÿ‡ฉ๐Ÿ‡ฏ":"1f1e9-1f1ef","๐Ÿ‡ฉ๐Ÿ‡ฐ":"1f1e9-1f1f0","๐Ÿ‡ฉ๐Ÿ‡ฒ":"1f1e9-1f1f2","๐Ÿ‡ฉ๐Ÿ‡ด":"1f1e9-1f1f4","๐Ÿ‡ฉ๐Ÿ‡ฟ":"1f1e9-1f1ff","๐Ÿ‡ช๐Ÿ‡ฆ":"1f1ea-1f1e6","๐Ÿ‡ช๐Ÿ‡จ":"1f1ea-1f1e8","๐Ÿ‡ช๐Ÿ‡ช":"1f1ea-1f1ea","๐Ÿ‡ช๐Ÿ‡ฌ":"1f1ea-1f1ec","๐Ÿ‡ช๐Ÿ‡ญ":"1f1ea-1f1ed","๐Ÿ‡ช๐Ÿ‡ท":"1f1ea-1f1f7","๐Ÿ‡ช๐Ÿ‡ธ":"1f1ea-1f1f8","๐Ÿ‡ช๐Ÿ‡น":"1f1ea-1f1f9","๐Ÿ‡ช๐Ÿ‡บ":"1f1ea-1f1fa","๐Ÿ‡ซ๐Ÿ‡ฎ":"1f1eb-1f1ee","๐Ÿ‡ซ๐Ÿ‡ฏ":"1f1eb-1f1ef","๐Ÿ‡ซ๐Ÿ‡ฐ":"1f1eb-1f1f0","๐Ÿ‡ซ๐Ÿ‡ฒ":"1f1eb-1f1f2","๐Ÿ‡ซ๐Ÿ‡ด":"1f1eb-1f1f4","๐Ÿ‡ซ๐Ÿ‡ท":"1f1eb-1f1f7","๐Ÿ‡ฌ๐Ÿ‡ฆ":"1f1ec-1f1e6","๐Ÿ‡ฌ๐Ÿ‡ง":"1f1ec-1f1e7","๐Ÿ‡ฌ๐Ÿ‡ฉ":"1f1ec-1f1e9","๐Ÿ‡ฌ๐Ÿ‡ช":"1f1ec-1f1ea","๐Ÿ‡ฌ๐Ÿ‡ซ":"1f1ec-1f1eb","๐Ÿ‡ฌ๐Ÿ‡ฌ":"1f1ec-1f1ec","๐Ÿ‡ฌ๐Ÿ‡ญ":"1f1ec-1f1ed","๐Ÿ‡ฌ๐Ÿ‡ฎ":"1f1ec-1f1ee","๐Ÿ‡ฌ๐Ÿ‡ฑ":"1f1ec-1f1f1","๐Ÿ‡ฌ๐Ÿ‡ฒ":"1f1ec-1f1f2","๐Ÿ‡ฌ๐Ÿ‡ณ":"1f1ec-1f1f3","๐Ÿ‡ฌ๐Ÿ‡ต":"1f1ec-1f1f5","๐Ÿ‡ฌ๐Ÿ‡ถ":"1f1ec-1f1f6","๐Ÿ‡ฌ๐Ÿ‡ท":"1f1ec-1f1f7","๐Ÿ‡ฌ๐Ÿ‡ธ":"1f1ec-1f1f8","๐Ÿ‡ฌ๐Ÿ‡น":"1f1ec-1f1f9","๐Ÿ‡ฌ๐Ÿ‡บ":"1f1ec-1f1fa","๐Ÿ‡ฌ๐Ÿ‡ผ":"1f1ec-1f1fc","๐Ÿ‡ฌ๐Ÿ‡พ":"1f1ec-1f1fe","๐Ÿ‡ญ๐Ÿ‡ฐ":"1f1ed-1f1f0","๐Ÿ‡ญ๐Ÿ‡ฒ":"1f1ed-1f1f2","๐Ÿ‡ญ๐Ÿ‡ณ":"1f1ed-1f1f3","๐Ÿ‡ญ๐Ÿ‡ท":"1f1ed-1f1f7","๐Ÿ‡ญ๐Ÿ‡น":"1f1ed-1f1f9","๐Ÿ‡ญ๐Ÿ‡บ":"1f1ed-1f1fa","๐Ÿ‡ฎ๐Ÿ‡จ":"1f1ee-1f1e8","๐Ÿ‡ฎ๐Ÿ‡ฉ":"1f1ee-1f1e9","๐Ÿ‡ฎ๐Ÿ‡ช":"1f1ee-1f1ea","๐Ÿ‡ฎ๐Ÿ‡ฑ":"1f1ee-1f1f1","๐Ÿ‡ฎ๐Ÿ‡ฒ":"1f1ee-1f1f2","๐Ÿ‡ฎ๐Ÿ‡ณ":"1f1ee-1f1f3","๐Ÿ‡ฎ๐Ÿ‡ด":"1f1ee-1f1f4","๐Ÿ‡ฎ๐Ÿ‡ถ":"1f1ee-1f1f6","๐Ÿ‡ฎ๐Ÿ‡ท":"1f1ee-1f1f7","๐Ÿ‡ฎ๐Ÿ‡ธ":"1f1ee-1f1f8","๐Ÿ‡ฎ๐Ÿ‡น":"1f1ee-1f1f9","๐Ÿ‡ฏ๐Ÿ‡ช":"1f1ef-1f1ea","๐Ÿ‡ฏ๐Ÿ‡ฒ":"1f1ef-1f1f2","๐Ÿ‡ฏ๐Ÿ‡ด":"1f1ef-1f1f4","๐Ÿ‡ฏ๐Ÿ‡ต":"1f1ef-1f1f5","๐Ÿ‡ฐ๐Ÿ‡ช":"1f1f0-1f1ea","๐Ÿ‡ฐ๐Ÿ‡ฌ":"1f1f0-1f1ec","๐Ÿ‡ฐ๐Ÿ‡ญ":"1f1f0-1f1ed","๐Ÿ‡ฐ๐Ÿ‡ฎ":"1f1f0-1f1ee","๐Ÿ‡ฐ๐Ÿ‡ฒ":"1f1f0-1f1f2","๐Ÿ‡ฐ๐Ÿ‡ณ":"1f1f0-1f1f3","๐Ÿ‡ฐ๐Ÿ‡ต":"1f1f0-1f1f5","๐Ÿ‡ฐ๐Ÿ‡ท":"1f1f0-1f1f7","๐Ÿ‡ฐ๐Ÿ‡ผ":"1f1f0-1f1fc","๐Ÿ‡ฐ๐Ÿ‡พ":"1f1f0-1f1fe","๐Ÿ‡ฐ๐Ÿ‡ฟ":"1f1f0-1f1ff","๐Ÿ‡ฑ๐Ÿ‡ฆ":"1f1f1-1f1e6","๐Ÿ‡ฑ๐Ÿ‡ง":"1f1f1-1f1e7","๐Ÿ‡ฑ๐Ÿ‡จ":"1f1f1-1f1e8","๐Ÿ‡ฑ๐Ÿ‡ฎ":"1f1f1-1f1ee","๐Ÿ‡ฑ๐Ÿ‡ฐ":"1f1f1-1f1f0","๐Ÿ‡ฑ๐Ÿ‡ท":"1f1f1-1f1f7","๐Ÿ‡ฑ๐Ÿ‡ธ":"1f1f1-1f1f8","๐Ÿ‡ฑ๐Ÿ‡น":"1f1f1-1f1f9","๐Ÿ‡ฑ๐Ÿ‡บ":"1f1f1-1f1fa","๐Ÿ‡ฑ๐Ÿ‡ป":"1f1f1-1f1fb","๐Ÿ‡ฑ๐Ÿ‡พ":"1f1f1-1f1fe","๐Ÿ‡ฒ๐Ÿ‡ฆ":"1f1f2-1f1e6","๐Ÿ‡ฒ๐Ÿ‡จ":"1f1f2-1f1e8","๐Ÿ‡ฒ๐Ÿ‡ฉ":"1f1f2-1f1e9","๐Ÿ‡ฒ๐Ÿ‡ช":"1f1f2-1f1ea","๐Ÿ‡ฒ๐Ÿ‡ซ":"1f1f2-1f1eb","๐Ÿ‡ฒ๐Ÿ‡ฌ":"1f1f2-1f1ec","๐Ÿ‡ฒ๐Ÿ‡ญ":"1f1f2-1f1ed","๐Ÿ‡ฒ๐Ÿ‡ฐ":"1f1f2-1f1f0","๐Ÿ‡ฒ๐Ÿ‡ฑ":"1f1f2-1f1f1","๐Ÿ‡ฒ๐Ÿ‡ฒ":"1f1f2-1f1f2","๐Ÿ‡ฒ๐Ÿ‡ณ":"1f1f2-1f1f3","๐Ÿ‡ฒ๐Ÿ‡ด":"1f1f2-1f1f4","๐Ÿ‡ฒ๐Ÿ‡ต":"1f1f2-1f1f5","๐Ÿ‡ฒ๐Ÿ‡ถ":"1f1f2-1f1f6","๐Ÿ‡ฒ๐Ÿ‡ท":"1f1f2-1f1f7","๐Ÿ‡ฒ๐Ÿ‡ธ":"1f1f2-1f1f8","๐Ÿ‡ฒ๐Ÿ‡น":"1f1f2-1f1f9","๐Ÿ‡ฒ๐Ÿ‡บ":"1f1f2-1f1fa","๐Ÿ‡ฒ๐Ÿ‡ป":"1f1f2-1f1fb","๐Ÿ‡ฒ๐Ÿ‡ผ":"1f1f2-1f1fc","๐Ÿ‡ฒ๐Ÿ‡ฝ":"1f1f2-1f1fd","๐Ÿ‡ฒ๐Ÿ‡พ":"1f1f2-1f1fe","๐Ÿ‡ฒ๐Ÿ‡ฟ":"1f1f2-1f1ff","๐Ÿ‡ณ๐Ÿ‡ฆ":"1f1f3-1f1e6","๐Ÿ‡ณ๐Ÿ‡จ":"1f1f3-1f1e8","๐Ÿ‡ณ๐Ÿ‡ช":"1f1f3-1f1ea","๐Ÿ‡ณ๐Ÿ‡ซ":"1f1f3-1f1eb","๐Ÿ‡ณ๐Ÿ‡ฌ":"1f1f3-1f1ec","๐Ÿ‡ณ๐Ÿ‡ฎ":"1f1f3-1f1ee","๐Ÿ‡ณ๐Ÿ‡ฑ":"1f1f3-1f1f1","๐Ÿ‡ณ๐Ÿ‡ด":"1f1f3-1f1f4","๐Ÿ‡ณ๐Ÿ‡ต":"1f1f3-1f1f5","๐Ÿ‡ณ๐Ÿ‡ท":"1f1f3-1f1f7","๐Ÿ‡ณ๐Ÿ‡บ":"1f1f3-1f1fa","๐Ÿ‡ณ๐Ÿ‡ฟ":"1f1f3-1f1ff","๐Ÿ‡ด๐Ÿ‡ฒ":"1f1f4-1f1f2","๐Ÿ‡ต๐Ÿ‡ฆ":"1f1f5-1f1e6","๐Ÿ‡ต๐Ÿ‡ช":"1f1f5-1f1ea","๐Ÿ‡ต๐Ÿ‡ซ":"1f1f5-1f1eb","๐Ÿ‡ต๐Ÿ‡ฌ":"1f1f5-1f1ec","๐Ÿ‡ต๐Ÿ‡ญ":"1f1f5-1f1ed","๐Ÿ‡ต๐Ÿ‡ฐ":"1f1f5-1f1f0","๐Ÿ‡ต๐Ÿ‡ฑ":"1f1f5-1f1f1","๐Ÿ‡ต๐Ÿ‡ฒ":"1f1f5-1f1f2","๐Ÿ‡ต๐Ÿ‡ณ":"1f1f5-1f1f3","๐Ÿ‡ต๐Ÿ‡ท":"1f1f5-1f1f7","๐Ÿ‡ต๐Ÿ‡ธ":"1f1f5-1f1f8","๐Ÿ‡ต๐Ÿ‡น":"1f1f5-1f1f9","๐Ÿ‡ต๐Ÿ‡ผ":"1f1f5-1f1fc","๐Ÿ‡ต๐Ÿ‡พ":"1f1f5-1f1fe","๐Ÿ‡ถ๐Ÿ‡ฆ":"1f1f6-1f1e6","๐Ÿ‡ท๐Ÿ‡ช":"1f1f7-1f1ea","๐Ÿ‡ท๐Ÿ‡ด":"1f1f7-1f1f4","๐Ÿ‡ท๐Ÿ‡ธ":"1f1f7-1f1f8","๐Ÿ‡ท๐Ÿ‡บ":"1f1f7-1f1fa","๐Ÿ‡ท๐Ÿ‡ผ":"1f1f7-1f1fc","๐Ÿ‡ธ๐Ÿ‡ฆ":"1f1f8-1f1e6","๐Ÿ‡ธ๐Ÿ‡ง":"1f1f8-1f1e7","๐Ÿ‡ธ๐Ÿ‡จ":"1f1f8-1f1e8","๐Ÿ‡ธ๐Ÿ‡ฉ":"1f1f8-1f1e9","๐Ÿ‡ธ๐Ÿ‡ช":"1f1f8-1f1ea","๐Ÿ‡ธ๐Ÿ‡ฌ":"1f1f8-1f1ec","๐Ÿ‡ธ๐Ÿ‡ญ":"1f1f8-1f1ed","๐Ÿ‡ธ๐Ÿ‡ฎ":"1f1f8-1f1ee","๐Ÿ‡ธ๐Ÿ‡ฏ":"1f1f8-1f1ef","๐Ÿ‡ธ๐Ÿ‡ฐ":"1f1f8-1f1f0","๐Ÿ‡ธ๐Ÿ‡ฑ":"1f1f8-1f1f1","๐Ÿ‡ธ๐Ÿ‡ฒ":"1f1f8-1f1f2","๐Ÿ‡ธ๐Ÿ‡ณ":"1f1f8-1f1f3","๐Ÿ‡ธ๐Ÿ‡ด":"1f1f8-1f1f4","๐Ÿ‡ธ๐Ÿ‡ท":"1f1f8-1f1f7","๐Ÿ‡ธ๐Ÿ‡ธ":"1f1f8-1f1f8","๐Ÿ‡ธ๐Ÿ‡น":"1f1f8-1f1f9","๐Ÿ‡ธ๐Ÿ‡ป":"1f1f8-1f1fb","๐Ÿ‡ธ๐Ÿ‡ฝ":"1f1f8-1f1fd","๐Ÿ‡ธ๐Ÿ‡พ":"1f1f8-1f1fe","๐Ÿ‡ธ๐Ÿ‡ฟ":"1f1f8-1f1ff","๐Ÿ‡น๐Ÿ‡ฆ":"1f1f9-1f1e6","๐Ÿ‡น๐Ÿ‡จ":"1f1f9-1f1e8","๐Ÿ‡น๐Ÿ‡ฉ":"1f1f9-1f1e9","๐Ÿ‡น๐Ÿ‡ซ":"1f1f9-1f1eb","๐Ÿ‡น๐Ÿ‡ฌ":"1f1f9-1f1ec","๐Ÿ‡น๐Ÿ‡ญ":"1f1f9-1f1ed","๐Ÿ‡น๐Ÿ‡ฏ":"1f1f9-1f1ef","๐Ÿ‡น๐Ÿ‡ฐ":"1f1f9-1f1f0","๐Ÿ‡น๐Ÿ‡ฑ":"1f1f9-1f1f1","๐Ÿ‡น๐Ÿ‡ฒ":"1f1f9-1f1f2","๐Ÿ‡น๐Ÿ‡ณ":"1f1f9-1f1f3","๐Ÿ‡น๐Ÿ‡ด":"1f1f9-1f1f4","๐Ÿ‡น๐Ÿ‡ท":"1f1f9-1f1f7","๐Ÿ‡น๐Ÿ‡น":"1f1f9-1f1f9","๐Ÿ‡น๐Ÿ‡ป":"1f1f9-1f1fb","๐Ÿ‡น๐Ÿ‡ผ":"1f1f9-1f1fc","๐Ÿ‡น๐Ÿ‡ฟ":"1f1f9-1f1ff","๐Ÿ‡บ๐Ÿ‡ฆ":"1f1fa-1f1e6","๐Ÿ‡บ๐Ÿ‡ฌ":"1f1fa-1f1ec","๐Ÿ‡บ๐Ÿ‡ฒ":"1f1fa-1f1f2","๐Ÿ‡บ๐Ÿ‡ณ":"1f1fa-1f1f3","๐Ÿ‡บ๐Ÿ‡ธ":"1f1fa-1f1f8","๐Ÿ‡บ๐Ÿ‡พ":"1f1fa-1f1fe","๐Ÿ‡บ๐Ÿ‡ฟ":"1f1fa-1f1ff","๐Ÿ‡ป๐Ÿ‡ฆ":"1f1fb-1f1e6","๐Ÿ‡ป๐Ÿ‡จ":"1f1fb-1f1e8","๐Ÿ‡ป๐Ÿ‡ช":"1f1fb-1f1ea","๐Ÿ‡ป๐Ÿ‡ฌ":"1f1fb-1f1ec","๐Ÿ‡ป๐Ÿ‡ฎ":"1f1fb-1f1ee","๐Ÿ‡ป๐Ÿ‡ณ":"1f1fb-1f1f3","๐Ÿ‡ป๐Ÿ‡บ":"1f1fb-1f1fa","๐Ÿ‡ผ๐Ÿ‡ซ":"1f1fc-1f1eb","๐Ÿ‡ผ๐Ÿ‡ธ":"1f1fc-1f1f8","๐Ÿ‡ฝ๐Ÿ‡ฐ":"1f1fd-1f1f0","๐Ÿ‡พ๐Ÿ‡ช":"1f1fe-1f1ea","๐Ÿ‡พ๐Ÿ‡น":"1f1fe-1f1f9","๐Ÿ‡ฟ๐Ÿ‡ฆ":"1f1ff-1f1e6","๐Ÿ‡ฟ๐Ÿ‡ฒ":"1f1ff-1f1f2","๐Ÿ‡ฟ๐Ÿ‡ผ":"1f1ff-1f1fc","๐Ÿ‘จโ€โš•":"1f468-200d-2695-fe0f","๐Ÿ‘ฉโ€โš•":"1f469-200d-2695-fe0f","๐Ÿ‘จโ€๐ŸŽ“":"1f468-200d-1f393","๐Ÿ‘ฉโ€๐ŸŽ“":"1f469-200d-1f393","๐Ÿ‘จโ€๐Ÿซ":"1f468-200d-1f3eb","๐Ÿ‘ฉโ€๐Ÿซ":"1f469-200d-1f3eb","๐Ÿ‘จโ€โš–":"1f468-200d-2696-fe0f","๐Ÿ‘ฉโ€โš–":"1f469-200d-2696-fe0f","๐Ÿ‘จโ€๐ŸŒพ":"1f468-200d-1f33e","๐Ÿ‘ฉโ€๐ŸŒพ":"1f469-200d-1f33e","๐Ÿ‘จโ€๐Ÿณ":"1f468-200d-1f373","๐Ÿ‘ฉโ€๐Ÿณ":"1f469-200d-1f373","๐Ÿ‘จโ€๐Ÿ”ง":"1f468-200d-1f527","๐Ÿ‘ฉโ€๐Ÿ”ง":"1f469-200d-1f527","๐Ÿ‘จโ€๐Ÿญ":"1f468-200d-1f3ed","๐Ÿ‘ฉโ€๐Ÿญ":"1f469-200d-1f3ed","๐Ÿ‘จโ€๐Ÿ’ผ":"1f468-200d-1f4bc","๐Ÿ‘ฉโ€๐Ÿ’ผ":"1f469-200d-1f4bc","๐Ÿ‘จโ€๐Ÿ”ฌ":"1f468-200d-1f52c","๐Ÿ‘ฉโ€๐Ÿ”ฌ":"1f469-200d-1f52c","๐Ÿ‘จโ€๐Ÿ’ป":"1f468-200d-1f4bb","๐Ÿ‘ฉโ€๐Ÿ’ป":"1f469-200d-1f4bb","๐Ÿ‘จโ€๐ŸŽค":"1f468-200d-1f3a4","๐Ÿ‘ฉโ€๐ŸŽค":"1f469-200d-1f3a4","๐Ÿ‘จโ€๐ŸŽจ":"1f468-200d-1f3a8","๐Ÿ‘ฉโ€๐ŸŽจ":"1f469-200d-1f3a8","๐Ÿ‘จโ€โœˆ":"1f468-200d-2708-fe0f","๐Ÿ‘ฉโ€โœˆ":"1f469-200d-2708-fe0f","๐Ÿ‘จโ€๐Ÿš€":"1f468-200d-1f680","๐Ÿ‘ฉโ€๐Ÿš€":"1f469-200d-1f680","๐Ÿ‘จโ€๐Ÿš’":"1f468-200d-1f692","๐Ÿ‘ฉโ€๐Ÿš’":"1f469-200d-1f692","๐Ÿ‘ฎโ€โ™‚":"1f46e-200d-2642-fe0f","๐Ÿ‘ฎโ€โ™€":"1f46e-200d-2640-fe0f","๐Ÿ•ตโ€โ™‚":"1f575-fe0f-200d-2642-fe0f","๐Ÿ•ตโ€โ™€":"1f575-fe0f-200d-2640-fe0f","๐Ÿ’‚โ€โ™‚":"1f482-200d-2642-fe0f","๐Ÿ’‚โ€โ™€":"1f482-200d-2640-fe0f","๐Ÿ‘ทโ€โ™‚":"1f477-200d-2642-fe0f","๐Ÿ‘ทโ€โ™€":"1f477-200d-2640-fe0f","๐Ÿ‘ณโ€โ™‚":"1f473-200d-2642-fe0f","๐Ÿ‘ณโ€โ™€":"1f473-200d-2640-fe0f","๐Ÿ‘ฑโ€โ™‚":"1f471-200d-2642-fe0f","๐Ÿ‘ฑโ€โ™€":"1f471-200d-2640-fe0f","๐Ÿง™โ€โ™€":"1f9d9-200d-2640-fe0f","๐Ÿง™โ€โ™‚":"1f9d9-200d-2642-fe0f","๐Ÿงšโ€โ™€":"1f9da-200d-2640-fe0f","๐Ÿงšโ€โ™‚":"1f9da-200d-2642-fe0f","๐Ÿง›โ€โ™€":"1f9db-200d-2640-fe0f","๐Ÿง›โ€โ™‚":"1f9db-200d-2642-fe0f","๐Ÿงœโ€โ™€":"1f9dc-200d-2640-fe0f","๐Ÿงœโ€โ™‚":"1f9dc-200d-2642-fe0f","๐Ÿงโ€โ™€":"1f9dd-200d-2640-fe0f","๐Ÿงโ€โ™‚":"1f9dd-200d-2642-fe0f","๐Ÿงžโ€โ™€":"1f9de-200d-2640-fe0f","๐Ÿงžโ€โ™‚":"1f9de-200d-2642-fe0f","๐ŸงŸโ€โ™€":"1f9df-200d-2640-fe0f","๐ŸงŸโ€โ™‚":"1f9df-200d-2642-fe0f","๐Ÿ™โ€โ™‚":"1f64d-200d-2642-fe0f","๐Ÿ™โ€โ™€":"1f64d-200d-2640-fe0f","๐Ÿ™Žโ€โ™‚":"1f64e-200d-2642-fe0f","๐Ÿ™Žโ€โ™€":"1f64e-200d-2640-fe0f","๐Ÿ™…โ€โ™‚":"1f645-200d-2642-fe0f","๐Ÿ™…โ€โ™€":"1f645-200d-2640-fe0f","๐Ÿ™†โ€โ™‚":"1f646-200d-2642-fe0f","๐Ÿ™†โ€โ™€":"1f646-200d-2640-fe0f","๐Ÿ’โ€โ™‚":"1f481-200d-2642-fe0f","๐Ÿ’โ€โ™€":"1f481-200d-2640-fe0f","๐Ÿ™‹โ€โ™‚":"1f64b-200d-2642-fe0f","๐Ÿ™‹โ€โ™€":"1f64b-200d-2640-fe0f","๐Ÿ™‡โ€โ™‚":"1f647-200d-2642-fe0f","๐Ÿ™‡โ€โ™€":"1f647-200d-2640-fe0f","๐Ÿคฆโ€โ™‚":"1f926-200d-2642-fe0f","๐Ÿคฆโ€โ™€":"1f926-200d-2640-fe0f","๐Ÿคทโ€โ™‚":"1f937-200d-2642-fe0f","๐Ÿคทโ€โ™€":"1f937-200d-2640-fe0f","๐Ÿ’†โ€โ™‚":"1f486-200d-2642-fe0f","๐Ÿ’†โ€โ™€":"1f486-200d-2640-fe0f","๐Ÿ’‡โ€โ™‚":"1f487-200d-2642-fe0f","๐Ÿ’‡โ€โ™€":"1f487-200d-2640-fe0f","๐Ÿšถโ€โ™‚":"1f6b6-200d-2642-fe0f","๐Ÿšถโ€โ™€":"1f6b6-200d-2640-fe0f","๐Ÿƒโ€โ™‚":"1f3c3-200d-2642-fe0f","๐Ÿƒโ€โ™€":"1f3c3-200d-2640-fe0f","๐Ÿ‘ฏโ€โ™‚":"1f46f-200d-2642-fe0f","๐Ÿ‘ฏโ€โ™€":"1f46f-200d-2640-fe0f","๐Ÿง–โ€โ™€":"1f9d6-200d-2640-fe0f","๐Ÿง–โ€โ™‚":"1f9d6-200d-2642-fe0f","๐Ÿง—โ€โ™€":"1f9d7-200d-2640-fe0f","๐Ÿง—โ€โ™‚":"1f9d7-200d-2642-fe0f","๐Ÿง˜โ€โ™€":"1f9d8-200d-2640-fe0f","๐Ÿง˜โ€โ™‚":"1f9d8-200d-2642-fe0f","๐ŸŒโ€โ™‚":"1f3cc-fe0f-200d-2642-fe0f","๐ŸŒโ€โ™€":"1f3cc-fe0f-200d-2640-fe0f","๐Ÿ„โ€โ™‚":"1f3c4-200d-2642-fe0f","๐Ÿ„โ€โ™€":"1f3c4-200d-2640-fe0f","๐Ÿšฃโ€โ™‚":"1f6a3-200d-2642-fe0f","๐Ÿšฃโ€โ™€":"1f6a3-200d-2640-fe0f","๐ŸŠโ€โ™‚":"1f3ca-200d-2642-fe0f","๐ŸŠโ€โ™€":"1f3ca-200d-2640-fe0f","โ›นโ€โ™‚":"26f9-fe0f-200d-2642-fe0f","โ›นโ€โ™€":"26f9-fe0f-200d-2640-fe0f","๐Ÿ‹โ€โ™‚":"1f3cb-fe0f-200d-2642-fe0f","๐Ÿ‹โ€โ™€":"1f3cb-fe0f-200d-2640-fe0f","๐Ÿšดโ€โ™‚":"1f6b4-200d-2642-fe0f","๐Ÿšดโ€โ™€":"1f6b4-200d-2640-fe0f","๐Ÿšตโ€โ™‚":"1f6b5-200d-2642-fe0f","๐Ÿšตโ€โ™€":"1f6b5-200d-2640-fe0f","๐Ÿคธโ€โ™‚":"1f938-200d-2642-fe0f","๐Ÿคธโ€โ™€":"1f938-200d-2640-fe0f","๐Ÿคผโ€โ™‚":"1f93c-200d-2642-fe0f","๐Ÿคผโ€โ™€":"1f93c-200d-2640-fe0f","๐Ÿคฝโ€โ™‚":"1f93d-200d-2642-fe0f","๐Ÿคฝโ€โ™€":"1f93d-200d-2640-fe0f","๐Ÿคพโ€โ™‚":"1f93e-200d-2642-fe0f","๐Ÿคพโ€โ™€":"1f93e-200d-2640-fe0f","๐Ÿคนโ€โ™‚":"1f939-200d-2642-fe0f","๐Ÿคนโ€โ™€":"1f939-200d-2640-fe0f","๐Ÿ‘จโ€๐Ÿ‘ฆ":"1f468-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘ง":"1f468-200d-1f467","๐Ÿ‘ฉโ€๐Ÿ‘ฆ":"1f469-200d-1f466","๐Ÿ‘ฉโ€๐Ÿ‘ง":"1f469-200d-1f467","๐Ÿ‘โ€๐Ÿ—จ":"1f441-200d-1f5e8","#๏ธโƒฃ":"23-20e3","*๏ธโƒฃ":"2a-20e3","0๏ธโƒฃ":"30-20e3","1๏ธโƒฃ":"31-20e3","2๏ธโƒฃ":"32-20e3","3๏ธโƒฃ":"33-20e3","4๏ธโƒฃ":"34-20e3","5๏ธโƒฃ":"35-20e3","6๏ธโƒฃ":"36-20e3","7๏ธโƒฃ":"37-20e3","8๏ธโƒฃ":"38-20e3","9๏ธโƒฃ":"39-20e3","๐Ÿณโ€๐ŸŒˆ":"1f3f3-fe0f-200d-1f308","๐Ÿ‘จโ€โš•๏ธ":"1f468-200d-2695-fe0f","๐Ÿ‘จ๐Ÿปโ€โš•":"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","๐Ÿ‘ฉโ€โš•๏ธ":"1f469-200d-2695-fe0f","๐Ÿ‘ฉ๐Ÿปโ€โš•":"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","๐Ÿ‘จ๐Ÿปโ€๐ŸŽ“":"1f468-1f3fb-200d-1f393","๐Ÿ‘จ๐Ÿผโ€๐ŸŽ“":"1f468-1f3fc-200d-1f393","๐Ÿ‘จ๐Ÿฝโ€๐ŸŽ“":"1f468-1f3fd-200d-1f393","๐Ÿ‘จ๐Ÿพโ€๐ŸŽ“":"1f468-1f3fe-200d-1f393","๐Ÿ‘จ๐Ÿฟโ€๐ŸŽ“":"1f468-1f3ff-200d-1f393","๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽ“":"1f469-1f3fb-200d-1f393","๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽ“":"1f469-1f3fc-200d-1f393","๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽ“":"1f469-1f3fd-200d-1f393","๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽ“":"1f469-1f3fe-200d-1f393","๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽ“":"1f469-1f3ff-200d-1f393","๐Ÿ‘จ๐Ÿปโ€๐Ÿซ":"1f468-1f3fb-200d-1f3eb","๐Ÿ‘จ๐Ÿผโ€๐Ÿซ":"1f468-1f3fc-200d-1f3eb","๐Ÿ‘จ๐Ÿฝโ€๐Ÿซ":"1f468-1f3fd-200d-1f3eb","๐Ÿ‘จ๐Ÿพโ€๐Ÿซ":"1f468-1f3fe-200d-1f3eb","๐Ÿ‘จ๐Ÿฟโ€๐Ÿซ":"1f468-1f3ff-200d-1f3eb","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿซ":"1f469-1f3fb-200d-1f3eb","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿซ":"1f469-1f3fc-200d-1f3eb","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿซ":"1f469-1f3fd-200d-1f3eb","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿซ":"1f469-1f3fe-200d-1f3eb","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿซ":"1f469-1f3ff-200d-1f3eb","๐Ÿ‘จโ€โš–๏ธ":"1f468-200d-2696-fe0f","๐Ÿ‘จ๐Ÿปโ€โš–":"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","๐Ÿ‘ฉโ€โš–๏ธ":"1f469-200d-2696-fe0f","๐Ÿ‘ฉ๐Ÿปโ€โš–":"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","๐Ÿ‘จ๐Ÿปโ€๐ŸŒพ":"1f468-1f3fb-200d-1f33e","๐Ÿ‘จ๐Ÿผโ€๐ŸŒพ":"1f468-1f3fc-200d-1f33e","๐Ÿ‘จ๐Ÿฝโ€๐ŸŒพ":"1f468-1f3fd-200d-1f33e","๐Ÿ‘จ๐Ÿพโ€๐ŸŒพ":"1f468-1f3fe-200d-1f33e","๐Ÿ‘จ๐Ÿฟโ€๐ŸŒพ":"1f468-1f3ff-200d-1f33e","๐Ÿ‘ฉ๐Ÿปโ€๐ŸŒพ":"1f469-1f3fb-200d-1f33e","๐Ÿ‘ฉ๐Ÿผโ€๐ŸŒพ":"1f469-1f3fc-200d-1f33e","๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŒพ":"1f469-1f3fd-200d-1f33e","๐Ÿ‘ฉ๐Ÿพโ€๐ŸŒพ":"1f469-1f3fe-200d-1f33e","๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŒพ":"1f469-1f3ff-200d-1f33e","๐Ÿ‘จ๐Ÿปโ€๐Ÿณ":"1f468-1f3fb-200d-1f373","๐Ÿ‘จ๐Ÿผโ€๐Ÿณ":"1f468-1f3fc-200d-1f373","๐Ÿ‘จ๐Ÿฝโ€๐Ÿณ":"1f468-1f3fd-200d-1f373","๐Ÿ‘จ๐Ÿพโ€๐Ÿณ":"1f468-1f3fe-200d-1f373","๐Ÿ‘จ๐Ÿฟโ€๐Ÿณ":"1f468-1f3ff-200d-1f373","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿณ":"1f469-1f3fb-200d-1f373","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿณ":"1f469-1f3fc-200d-1f373","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿณ":"1f469-1f3fd-200d-1f373","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿณ":"1f469-1f3fe-200d-1f373","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿณ":"1f469-1f3ff-200d-1f373","๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ง":"1f468-1f3fb-200d-1f527","๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ง":"1f468-1f3fc-200d-1f527","๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ง":"1f468-1f3fd-200d-1f527","๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ง":"1f468-1f3fe-200d-1f527","๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ง":"1f468-1f3ff-200d-1f527","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ง":"1f469-1f3fb-200d-1f527","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ง":"1f469-1f3fc-200d-1f527","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ง":"1f469-1f3fd-200d-1f527","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ง":"1f469-1f3fe-200d-1f527","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ง":"1f469-1f3ff-200d-1f527","๐Ÿ‘จ๐Ÿปโ€๐Ÿญ":"1f468-1f3fb-200d-1f3ed","๐Ÿ‘จ๐Ÿผโ€๐Ÿญ":"1f468-1f3fc-200d-1f3ed","๐Ÿ‘จ๐Ÿฝโ€๐Ÿญ":"1f468-1f3fd-200d-1f3ed","๐Ÿ‘จ๐Ÿพโ€๐Ÿญ":"1f468-1f3fe-200d-1f3ed","๐Ÿ‘จ๐Ÿฟโ€๐Ÿญ":"1f468-1f3ff-200d-1f3ed","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿญ":"1f469-1f3fb-200d-1f3ed","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿญ":"1f469-1f3fc-200d-1f3ed","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿญ":"1f469-1f3fd-200d-1f3ed","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿญ":"1f469-1f3fe-200d-1f3ed","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿญ":"1f469-1f3ff-200d-1f3ed","๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ผ":"1f468-1f3fb-200d-1f4bc","๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ":"1f468-1f3fc-200d-1f4bc","๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ผ":"1f468-1f3fd-200d-1f4bc","๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ผ":"1f468-1f3fe-200d-1f4bc","๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ผ":"1f468-1f3ff-200d-1f4bc","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ผ":"1f469-1f3fb-200d-1f4bc","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ผ":"1f469-1f3fc-200d-1f4bc","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ผ":"1f469-1f3fd-200d-1f4bc","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ผ":"1f469-1f3fe-200d-1f4bc","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ผ":"1f469-1f3ff-200d-1f4bc","๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ฌ":"1f468-1f3fb-200d-1f52c","๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ฌ":"1f468-1f3fc-200d-1f52c","๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ฌ":"1f468-1f3fd-200d-1f52c","๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ฌ":"1f468-1f3fe-200d-1f52c","๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ฌ":"1f468-1f3ff-200d-1f52c","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ฌ":"1f469-1f3fb-200d-1f52c","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ฌ":"1f469-1f3fc-200d-1f52c","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ฌ":"1f469-1f3fd-200d-1f52c","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ฌ":"1f469-1f3fe-200d-1f52c","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ฌ":"1f469-1f3ff-200d-1f52c","๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป":"1f468-1f3fb-200d-1f4bb","๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป":"1f468-1f3fc-200d-1f4bb","๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ป":"1f468-1f3fd-200d-1f4bb","๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป":"1f468-1f3fe-200d-1f4bb","๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ป":"1f468-1f3ff-200d-1f4bb","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป":"1f469-1f3fb-200d-1f4bb","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ป":"1f469-1f3fc-200d-1f4bb","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป":"1f469-1f3fd-200d-1f4bb","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ป":"1f469-1f3fe-200d-1f4bb","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ป":"1f469-1f3ff-200d-1f4bb","๐Ÿ‘จ๐Ÿปโ€๐ŸŽค":"1f468-1f3fb-200d-1f3a4","๐Ÿ‘จ๐Ÿผโ€๐ŸŽค":"1f468-1f3fc-200d-1f3a4","๐Ÿ‘จ๐Ÿฝโ€๐ŸŽค":"1f468-1f3fd-200d-1f3a4","๐Ÿ‘จ๐Ÿพโ€๐ŸŽค":"1f468-1f3fe-200d-1f3a4","๐Ÿ‘จ๐Ÿฟโ€๐ŸŽค":"1f468-1f3ff-200d-1f3a4","๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽค":"1f469-1f3fb-200d-1f3a4","๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽค":"1f469-1f3fc-200d-1f3a4","๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽค":"1f469-1f3fd-200d-1f3a4","๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽค":"1f469-1f3fe-200d-1f3a4","๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽค":"1f469-1f3ff-200d-1f3a4","๐Ÿ‘จ๐Ÿปโ€๐ŸŽจ":"1f468-1f3fb-200d-1f3a8","๐Ÿ‘จ๐Ÿผโ€๐ŸŽจ":"1f468-1f3fc-200d-1f3a8","๐Ÿ‘จ๐Ÿฝโ€๐ŸŽจ":"1f468-1f3fd-200d-1f3a8","๐Ÿ‘จ๐Ÿพโ€๐ŸŽจ":"1f468-1f3fe-200d-1f3a8","๐Ÿ‘จ๐Ÿฟโ€๐ŸŽจ":"1f468-1f3ff-200d-1f3a8","๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽจ":"1f469-1f3fb-200d-1f3a8","๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽจ":"1f469-1f3fc-200d-1f3a8","๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽจ":"1f469-1f3fd-200d-1f3a8","๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽจ":"1f469-1f3fe-200d-1f3a8","๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽจ":"1f469-1f3ff-200d-1f3a8","๐Ÿ‘จโ€โœˆ๏ธ":"1f468-200d-2708-fe0f","๐Ÿ‘จ๐Ÿปโ€โœˆ":"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","๐Ÿ‘ฉโ€โœˆ๏ธ":"1f469-200d-2708-fe0f","๐Ÿ‘ฉ๐Ÿปโ€โœˆ":"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","๐Ÿ‘จ๐Ÿปโ€๐Ÿš€":"1f468-1f3fb-200d-1f680","๐Ÿ‘จ๐Ÿผโ€๐Ÿš€":"1f468-1f3fc-200d-1f680","๐Ÿ‘จ๐Ÿฝโ€๐Ÿš€":"1f468-1f3fd-200d-1f680","๐Ÿ‘จ๐Ÿพโ€๐Ÿš€":"1f468-1f3fe-200d-1f680","๐Ÿ‘จ๐Ÿฟโ€๐Ÿš€":"1f468-1f3ff-200d-1f680","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš€":"1f469-1f3fb-200d-1f680","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš€":"1f469-1f3fc-200d-1f680","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš€":"1f469-1f3fd-200d-1f680","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš€":"1f469-1f3fe-200d-1f680","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš€":"1f469-1f3ff-200d-1f680","๐Ÿ‘จ๐Ÿปโ€๐Ÿš’":"1f468-1f3fb-200d-1f692","๐Ÿ‘จ๐Ÿผโ€๐Ÿš’":"1f468-1f3fc-200d-1f692","๐Ÿ‘จ๐Ÿฝโ€๐Ÿš’":"1f468-1f3fd-200d-1f692","๐Ÿ‘จ๐Ÿพโ€๐Ÿš’":"1f468-1f3fe-200d-1f692","๐Ÿ‘จ๐Ÿฟโ€๐Ÿš’":"1f468-1f3ff-200d-1f692","๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš’":"1f469-1f3fb-200d-1f692","๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš’":"1f469-1f3fc-200d-1f692","๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš’":"1f469-1f3fd-200d-1f692","๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš’":"1f469-1f3fe-200d-1f692","๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš’":"1f469-1f3ff-200d-1f692","๐Ÿ‘ฎโ€โ™‚๏ธ":"1f46e-200d-2642-fe0f","๐Ÿ‘ฎ๐Ÿปโ€โ™‚":"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","๐Ÿ‘ฎโ€โ™€๏ธ":"1f46e-200d-2640-fe0f","๐Ÿ‘ฎ๐Ÿปโ€โ™€":"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","๐Ÿ•ตโ€โ™‚๏ธ":"1f575-fe0f-200d-2642-fe0f","๐Ÿ•ต๏ธโ€โ™‚":"1f575-fe0f-200d-2642-fe0f","๐Ÿ•ต๐Ÿปโ€โ™‚":"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","๐Ÿ•ตโ€โ™€๏ธ":"1f575-fe0f-200d-2640-fe0f","๐Ÿ•ต๏ธโ€โ™€":"1f575-fe0f-200d-2640-fe0f","๐Ÿ•ต๐Ÿปโ€โ™€":"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","๐Ÿ’‚โ€โ™‚๏ธ":"1f482-200d-2642-fe0f","๐Ÿ’‚๐Ÿปโ€โ™‚":"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","๐Ÿ’‚โ€โ™€๏ธ":"1f482-200d-2640-fe0f","๐Ÿ’‚๐Ÿปโ€โ™€":"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","๐Ÿ‘ทโ€โ™‚๏ธ":"1f477-200d-2642-fe0f","๐Ÿ‘ท๐Ÿปโ€โ™‚":"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","๐Ÿ‘ทโ€โ™€๏ธ":"1f477-200d-2640-fe0f","๐Ÿ‘ท๐Ÿปโ€โ™€":"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","๐Ÿ‘ณโ€โ™‚๏ธ":"1f473-200d-2642-fe0f","๐Ÿ‘ณ๐Ÿปโ€โ™‚":"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","๐Ÿ‘ณโ€โ™€๏ธ":"1f473-200d-2640-fe0f","๐Ÿ‘ณ๐Ÿปโ€โ™€":"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","๐Ÿ‘ฑโ€โ™‚๏ธ":"1f471-200d-2642-fe0f","๐Ÿ‘ฑ๐Ÿปโ€โ™‚":"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","๐Ÿ‘ฑโ€โ™€๏ธ":"1f471-200d-2640-fe0f","๐Ÿ‘ฑ๐Ÿปโ€โ™€":"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","๐Ÿง™โ€โ™€๏ธ":"1f9d9-200d-2640-fe0f","๐Ÿง™๐Ÿปโ€โ™€":"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","๐Ÿง™โ€โ™‚๏ธ":"1f9d9-200d-2642-fe0f","๐Ÿง™๐Ÿปโ€โ™‚":"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","๐Ÿงšโ€โ™€๏ธ":"1f9da-200d-2640-fe0f","๐Ÿงš๐Ÿปโ€โ™€":"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","๐Ÿงšโ€โ™‚๏ธ":"1f9da-200d-2642-fe0f","๐Ÿงš๐Ÿปโ€โ™‚":"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","๐Ÿง›โ€โ™€๏ธ":"1f9db-200d-2640-fe0f","๐Ÿง›๐Ÿปโ€โ™€":"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","๐Ÿง›โ€โ™‚๏ธ":"1f9db-200d-2642-fe0f","๐Ÿง›๐Ÿปโ€โ™‚":"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","๐Ÿงœโ€โ™€๏ธ":"1f9dc-200d-2640-fe0f","๐Ÿงœ๐Ÿปโ€โ™€":"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","๐Ÿงœโ€โ™‚๏ธ":"1f9dc-200d-2642-fe0f","๐Ÿงœ๐Ÿปโ€โ™‚":"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","๐Ÿงโ€โ™€๏ธ":"1f9dd-200d-2640-fe0f","๐Ÿง๐Ÿปโ€โ™€":"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","๐Ÿงโ€โ™‚๏ธ":"1f9dd-200d-2642-fe0f","๐Ÿง๐Ÿปโ€โ™‚":"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","๐Ÿงžโ€โ™€๏ธ":"1f9de-200d-2640-fe0f","๐Ÿงžโ€โ™‚๏ธ":"1f9de-200d-2642-fe0f","๐ŸงŸโ€โ™€๏ธ":"1f9df-200d-2640-fe0f","๐ŸงŸโ€โ™‚๏ธ":"1f9df-200d-2642-fe0f","๐Ÿ™โ€โ™‚๏ธ":"1f64d-200d-2642-fe0f","๐Ÿ™๐Ÿปโ€โ™‚":"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","๐Ÿ™โ€โ™€๏ธ":"1f64d-200d-2640-fe0f","๐Ÿ™๐Ÿปโ€โ™€":"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","๐Ÿ™Žโ€โ™‚๏ธ":"1f64e-200d-2642-fe0f","๐Ÿ™Ž๐Ÿปโ€โ™‚":"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","๐Ÿ™Žโ€โ™€๏ธ":"1f64e-200d-2640-fe0f","๐Ÿ™Ž๐Ÿปโ€โ™€":"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","๐Ÿ™…โ€โ™‚๏ธ":"1f645-200d-2642-fe0f","๐Ÿ™…๐Ÿปโ€โ™‚":"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","๐Ÿ™…โ€โ™€๏ธ":"1f645-200d-2640-fe0f","๐Ÿ™…๐Ÿปโ€โ™€":"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","๐Ÿ™†โ€โ™‚๏ธ":"1f646-200d-2642-fe0f","๐Ÿ™†๐Ÿปโ€โ™‚":"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","๐Ÿ™†โ€โ™€๏ธ":"1f646-200d-2640-fe0f","๐Ÿ™†๐Ÿปโ€โ™€":"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","๐Ÿ’โ€โ™‚๏ธ":"1f481-200d-2642-fe0f","๐Ÿ’๐Ÿปโ€โ™‚":"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","๐Ÿ’โ€โ™€๏ธ":"1f481-200d-2640-fe0f","๐Ÿ’๐Ÿปโ€โ™€":"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","๐Ÿ™‹โ€โ™‚๏ธ":"1f64b-200d-2642-fe0f","๐Ÿ™‹๐Ÿปโ€โ™‚":"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","๐Ÿ™‹โ€โ™€๏ธ":"1f64b-200d-2640-fe0f","๐Ÿ™‹๐Ÿปโ€โ™€":"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","๐Ÿ™‡โ€โ™‚๏ธ":"1f647-200d-2642-fe0f","๐Ÿ™‡๐Ÿปโ€โ™‚":"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","๐Ÿ™‡โ€โ™€๏ธ":"1f647-200d-2640-fe0f","๐Ÿ™‡๐Ÿปโ€โ™€":"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","๐Ÿคฆโ€โ™‚๏ธ":"1f926-200d-2642-fe0f","๐Ÿคฆ๐Ÿปโ€โ™‚":"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","๐Ÿคฆโ€โ™€๏ธ":"1f926-200d-2640-fe0f","๐Ÿคฆ๐Ÿปโ€โ™€":"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","๐Ÿคทโ€โ™‚๏ธ":"1f937-200d-2642-fe0f","๐Ÿคท๐Ÿปโ€โ™‚":"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","๐Ÿคทโ€โ™€๏ธ":"1f937-200d-2640-fe0f","๐Ÿคท๐Ÿปโ€โ™€":"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","๐Ÿ’†โ€โ™‚๏ธ":"1f486-200d-2642-fe0f","๐Ÿ’†๐Ÿปโ€โ™‚":"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","๐Ÿ’†โ€โ™€๏ธ":"1f486-200d-2640-fe0f","๐Ÿ’†๐Ÿปโ€โ™€":"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","๐Ÿ’‡โ€โ™‚๏ธ":"1f487-200d-2642-fe0f","๐Ÿ’‡๐Ÿปโ€โ™‚":"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","๐Ÿ’‡โ€โ™€๏ธ":"1f487-200d-2640-fe0f","๐Ÿ’‡๐Ÿปโ€โ™€":"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","๐Ÿšถโ€โ™‚๏ธ":"1f6b6-200d-2642-fe0f","๐Ÿšถ๐Ÿปโ€โ™‚":"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","๐Ÿšถโ€โ™€๏ธ":"1f6b6-200d-2640-fe0f","๐Ÿšถ๐Ÿปโ€โ™€":"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","๐Ÿƒโ€โ™‚๏ธ":"1f3c3-200d-2642-fe0f","๐Ÿƒ๐Ÿปโ€โ™‚":"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","๐Ÿƒโ€โ™€๏ธ":"1f3c3-200d-2640-fe0f","๐Ÿƒ๐Ÿปโ€โ™€":"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","๐Ÿ‘ฏโ€โ™‚๏ธ":"1f46f-200d-2642-fe0f","๐Ÿ‘ฏโ€โ™€๏ธ":"1f46f-200d-2640-fe0f","๐Ÿง–โ€โ™€๏ธ":"1f9d6-200d-2640-fe0f","๐Ÿง–๐Ÿปโ€โ™€":"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","๐Ÿง–โ€โ™‚๏ธ":"1f9d6-200d-2642-fe0f","๐Ÿง–๐Ÿปโ€โ™‚":"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","๐Ÿง—โ€โ™€๏ธ":"1f9d7-200d-2640-fe0f","๐Ÿง—๐Ÿปโ€โ™€":"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","๐Ÿง—โ€โ™‚๏ธ":"1f9d7-200d-2642-fe0f","๐Ÿง—๐Ÿปโ€โ™‚":"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","๐Ÿง˜โ€โ™€๏ธ":"1f9d8-200d-2640-fe0f","๐Ÿง˜๐Ÿปโ€โ™€":"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","๐Ÿง˜โ€โ™‚๏ธ":"1f9d8-200d-2642-fe0f","๐Ÿง˜๐Ÿปโ€โ™‚":"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","๐ŸŒโ€โ™‚๏ธ":"1f3cc-fe0f-200d-2642-fe0f","๐ŸŒ๏ธโ€โ™‚":"1f3cc-fe0f-200d-2642-fe0f","๐ŸŒ๐Ÿปโ€โ™‚":"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","๐ŸŒโ€โ™€๏ธ":"1f3cc-fe0f-200d-2640-fe0f","๐ŸŒ๏ธโ€โ™€":"1f3cc-fe0f-200d-2640-fe0f","๐ŸŒ๐Ÿปโ€โ™€":"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","๐Ÿ„โ€โ™‚๏ธ":"1f3c4-200d-2642-fe0f","๐Ÿ„๐Ÿปโ€โ™‚":"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","๐Ÿ„โ€โ™€๏ธ":"1f3c4-200d-2640-fe0f","๐Ÿ„๐Ÿปโ€โ™€":"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","๐Ÿšฃโ€โ™‚๏ธ":"1f6a3-200d-2642-fe0f","๐Ÿšฃ๐Ÿปโ€โ™‚":"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","๐Ÿšฃโ€โ™€๏ธ":"1f6a3-200d-2640-fe0f","๐Ÿšฃ๐Ÿปโ€โ™€":"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","๐ŸŠโ€โ™‚๏ธ":"1f3ca-200d-2642-fe0f","๐ŸŠ๐Ÿปโ€โ™‚":"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","๐ŸŠโ€โ™€๏ธ":"1f3ca-200d-2640-fe0f","๐ŸŠ๐Ÿปโ€โ™€":"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","โ›นโ€โ™‚๏ธ":"26f9-fe0f-200d-2642-fe0f","โ›น๏ธโ€โ™‚":"26f9-fe0f-200d-2642-fe0f","โ›น๐Ÿปโ€โ™‚":"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","โ›นโ€โ™€๏ธ":"26f9-fe0f-200d-2640-fe0f","โ›น๏ธโ€โ™€":"26f9-fe0f-200d-2640-fe0f","โ›น๐Ÿปโ€โ™€":"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","๐Ÿ‹โ€โ™‚๏ธ":"1f3cb-fe0f-200d-2642-fe0f","๐Ÿ‹๏ธโ€โ™‚":"1f3cb-fe0f-200d-2642-fe0f","๐Ÿ‹๐Ÿปโ€โ™‚":"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","๐Ÿ‹โ€โ™€๏ธ":"1f3cb-fe0f-200d-2640-fe0f","๐Ÿ‹๏ธโ€โ™€":"1f3cb-fe0f-200d-2640-fe0f","๐Ÿ‹๐Ÿปโ€โ™€":"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","๐Ÿšดโ€โ™‚๏ธ":"1f6b4-200d-2642-fe0f","๐Ÿšด๐Ÿปโ€โ™‚":"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","๐Ÿšดโ€โ™€๏ธ":"1f6b4-200d-2640-fe0f","๐Ÿšด๐Ÿปโ€โ™€":"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","๐Ÿšตโ€โ™‚๏ธ":"1f6b5-200d-2642-fe0f","๐Ÿšต๐Ÿปโ€โ™‚":"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","๐Ÿšตโ€โ™€๏ธ":"1f6b5-200d-2640-fe0f","๐Ÿšต๐Ÿปโ€โ™€":"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","๐Ÿคธโ€โ™‚๏ธ":"1f938-200d-2642-fe0f","๐Ÿคธ๐Ÿปโ€โ™‚":"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","๐Ÿคธโ€โ™€๏ธ":"1f938-200d-2640-fe0f","๐Ÿคธ๐Ÿปโ€โ™€":"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","๐Ÿคผโ€โ™‚๏ธ":"1f93c-200d-2642-fe0f","๐Ÿคผโ€โ™€๏ธ":"1f93c-200d-2640-fe0f","๐Ÿคฝโ€โ™‚๏ธ":"1f93d-200d-2642-fe0f","๐Ÿคฝ๐Ÿปโ€โ™‚":"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","๐Ÿคฝโ€โ™€๏ธ":"1f93d-200d-2640-fe0f","๐Ÿคฝ๐Ÿปโ€โ™€":"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","๐Ÿคพโ€โ™‚๏ธ":"1f93e-200d-2642-fe0f","๐Ÿคพ๐Ÿปโ€โ™‚":"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","๐Ÿคพโ€โ™€๏ธ":"1f93e-200d-2640-fe0f","๐Ÿคพ๐Ÿปโ€โ™€":"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","๐Ÿคนโ€โ™‚๏ธ":"1f939-200d-2642-fe0f","๐Ÿคน๐Ÿปโ€โ™‚":"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","๐Ÿคนโ€โ™€๏ธ":"1f939-200d-2640-fe0f","๐Ÿคน๐Ÿปโ€โ™€":"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","๐Ÿ‘โ€๐Ÿ—จ๏ธ":"1f441-200d-1f5e8","๐Ÿ‘๏ธโ€๐Ÿ—จ":"1f441-200d-1f5e8","๐Ÿณ๏ธโ€๐ŸŒˆ":"1f3f3-fe0f-200d-1f308","๐Ÿ‘จ๐Ÿปโ€โš•๏ธ":"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","๐Ÿ‘ฉ๐Ÿปโ€โš•๏ธ":"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","๐Ÿ‘จ๐Ÿปโ€โš–๏ธ":"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","๐Ÿ‘ฉ๐Ÿปโ€โš–๏ธ":"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","๐Ÿ‘จ๐Ÿปโ€โœˆ๏ธ":"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","๐Ÿ‘ฉ๐Ÿปโ€โœˆ๏ธ":"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","๐Ÿ‘ฎ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ‘ฎ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ•ต๏ธโ€โ™‚๏ธ":"1f575-fe0f-200d-2642-fe0f","๐Ÿ•ต๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ•ต๏ธโ€โ™€๏ธ":"1f575-fe0f-200d-2640-fe0f","๐Ÿ•ต๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ’‚๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ’‚๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ‘ท๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ‘ท๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ‘ณ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ‘ณ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ‘ฑ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ‘ฑ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง™๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง™๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿงš๐Ÿปโ€โ™€๏ธ":"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","๐Ÿงš๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿง›๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง›๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿงœ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿงœ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿง๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ™Ž๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™Ž๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ™…๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™…๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ™†๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™†๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ’๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ’๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ™‹๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™‹๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ™‡๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ™‡๐Ÿปโ€โ™€๏ธ":"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","๐Ÿคฆ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿคฆ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿคท๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿคท๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ’†๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ’†๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ’‡๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ’‡๐Ÿปโ€โ™€๏ธ":"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","๐Ÿšถ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿšถ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿƒ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿƒ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง–๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง–๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿง—๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง—๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿง˜๐Ÿปโ€โ™€๏ธ":"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","๐Ÿง˜๐Ÿปโ€โ™‚๏ธ":"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","๐ŸŒ๏ธโ€โ™‚๏ธ":"1f3cc-fe0f-200d-2642-fe0f","๐ŸŒ๐Ÿปโ€โ™‚๏ธ":"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","๐ŸŒ๏ธโ€โ™€๏ธ":"1f3cc-fe0f-200d-2640-fe0f","๐ŸŒ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ„๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ„๐Ÿปโ€โ™€๏ธ":"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","๐Ÿšฃ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿšฃ๐Ÿปโ€โ™€๏ธ":"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","๐ŸŠ๐Ÿปโ€โ™‚๏ธ":"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","๐ŸŠ๐Ÿปโ€โ™€๏ธ":"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","โ›น๏ธโ€โ™‚๏ธ":"26f9-fe0f-200d-2642-fe0f","โ›น๐Ÿปโ€โ™‚๏ธ":"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","โ›น๏ธโ€โ™€๏ธ":"26f9-fe0f-200d-2640-fe0f","โ›น๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ‹๏ธโ€โ™‚๏ธ":"1f3cb-fe0f-200d-2642-fe0f","๐Ÿ‹๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿ‹๏ธโ€โ™€๏ธ":"1f3cb-fe0f-200d-2640-fe0f","๐Ÿ‹๐Ÿปโ€โ™€๏ธ":"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","๐Ÿšด๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿšด๐Ÿปโ€โ™€๏ธ":"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","๐Ÿšต๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿšต๐Ÿปโ€โ™€๏ธ":"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","๐Ÿคธ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿคธ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿคฝ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿคฝ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿคพ๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿคพ๐Ÿปโ€โ™€๏ธ":"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","๐Ÿคน๐Ÿปโ€โ™‚๏ธ":"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","๐Ÿคน๐Ÿปโ€โ™€๏ธ":"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","๐Ÿ‘ฉโ€โคโ€๐Ÿ‘จ":"1f469-200d-2764-fe0f-200d-1f468","๐Ÿ‘จโ€โคโ€๐Ÿ‘จ":"1f468-200d-2764-fe0f-200d-1f468","๐Ÿ‘ฉโ€โคโ€๐Ÿ‘ฉ":"1f469-200d-2764-fe0f-200d-1f469","๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ":"1f468-200d-1f469-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง":"1f468-200d-1f469-200d-1f467","๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ":"1f468-200d-1f468-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง":"1f468-200d-1f468-200d-1f467","๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ":"1f469-200d-1f469-200d-1f466","๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง":"1f469-200d-1f469-200d-1f467","๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ":"1f468-200d-1f466-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ":"1f468-200d-1f467-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง":"1f468-200d-1f467-200d-1f467","๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ":"1f469-200d-1f466-200d-1f466","๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ":"1f469-200d-1f467-200d-1f466","๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง":"1f469-200d-1f467-200d-1f467","๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ":"1f441-200d-1f5e8","๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ":"1f469-200d-2764-fe0f-200d-1f468","๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ":"1f468-200d-2764-fe0f-200d-1f468","๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ":"1f469-200d-2764-fe0f-200d-1f469","๐Ÿ‘ฉโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468","๐Ÿ‘จโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘จ":"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468","๐Ÿ‘ฉโ€โคโ€๐Ÿ’‹โ€๐Ÿ‘ฉ":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469","๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ":"1f468-200d-1f469-200d-1f467-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ":"1f468-200d-1f469-200d-1f466-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง":"1f468-200d-1f469-200d-1f467-200d-1f467","๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ":"1f468-200d-1f468-200d-1f467-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ":"1f468-200d-1f468-200d-1f466-200d-1f466","๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง":"1f468-200d-1f468-200d-1f467-200d-1f467","๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ":"1f469-200d-1f469-200d-1f467-200d-1f466","๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ":"1f469-200d-1f469-200d-1f466-200d-1f466","๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง":"1f469-200d-1f469-200d-1f467-200d-1f467","๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ":"1f3f4-e0067-e0062-e0065-e006e-e0067-e007f","๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ":"1f3f4-e0067-e0062-e0073-e0063-e0074-e007f","๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ":"1f3f4-e0067-e0062-e0077-e006c-e0073-e007f","๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468","๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ":"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468","๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469"} \ No newline at end of file diff --git a/app/javascript/mastodon/features/emoji/emoji_mart_data_light.js b/app/javascript/mastodon/features/emoji/emoji_mart_data_light.js new file mode 100644 index 000000000..45086fc4c --- /dev/null +++ b/app/javascript/mastodon/features/emoji/emoji_mart_data_light.js @@ -0,0 +1,41 @@ +// The output of this module is designed to mimic emoji-mart's +// "data" object, such that we can use it for a light version of emoji-mart's +// emojiIndex.search functionality. +const { unicodeToUnifiedName } = require('./unicode_to_unified_name'); +const [ shortCodesToEmojiData, skins, categories, short_names ] = require('./emoji_compressed'); + +const emojis = {}; + +// decompress +Object.keys(shortCodesToEmojiData).forEach((shortCode) => { + let [ + filenameData, // eslint-disable-line no-unused-vars + searchData, + ] = shortCodesToEmojiData[shortCode]; + let [ + native, + short_names, + search, + unified, + ] = searchData; + + if (!unified) { + // unified name can be derived from unicodeToUnifiedName + unified = unicodeToUnifiedName(native); + } + + short_names = [shortCode].concat(short_names); + emojis[shortCode] = { + native, + search, + short_names, + unified, + }; +}); + +module.exports = { + emojis, + skins, + categories, + short_names, +}; diff --git a/app/javascript/mastodon/features/emoji/emoji_mart_search_light.js b/app/javascript/mastodon/features/emoji/emoji_mart_search_light.js new file mode 100644 index 000000000..5da8de1cf --- /dev/null +++ b/app/javascript/mastodon/features/emoji/emoji_mart_search_light.js @@ -0,0 +1,154 @@ +// This code is largely borrowed from: +// https://github.com/missive/emoji-mart/blob/bbd4fbe/src/utils/emoji-index.js + +import data from './emoji_mart_data_light'; +import { getData, getSanitizedData, intersect } from './emoji_utils'; + +let index = {}; +let emojisList = {}; +let emoticonsList = {}; +let previousInclude = []; +let previousExclude = []; + +for (let emoji in data.emojis) { + let emojiData = data.emojis[emoji], + { short_names, emoticons } = emojiData, + id = short_names[0]; + + for (let emoticon of (emoticons || [])) { + if (!emoticonsList[emoticon]) { + emoticonsList[emoticon] = id; + } + } + + emojisList[id] = getSanitizedData(id); +} + +function search(value, { emojisToShowFilter, maxResults, include, exclude, custom = [] } = {}) { + maxResults = maxResults || 75; + include = include || []; + exclude = exclude || []; + + if (custom.length) { + for (const emoji of custom) { + data.emojis[emoji.id] = getData(emoji); + emojisList[emoji.id] = getSanitizedData(emoji); + } + + data.categories.push({ + name: 'Custom', + emojis: custom.map(emoji => emoji.id), + }); + } + + let results = null; + let pool = data.emojis; + + if (value.length) { + if (value === '-' || value === '-1') { + return [emojisList['-1']]; + } + + let values = value.toLowerCase().split(/[\s|,|\-|_]+/); + + if (values.length > 2) { + values = [values[0], values[1]]; + } + + if (include.length || exclude.length) { + pool = {}; + + if (previousInclude !== include.sort().join(',') || previousExclude !== exclude.sort().join(',')) { + previousInclude = include.sort().join(','); + previousExclude = exclude.sort().join(','); + index = {}; + } + + for (let category of data.categories) { + let isIncluded = include && include.length ? include.indexOf(category.name.toLowerCase()) > -1 : true; + let isExcluded = exclude && exclude.length ? exclude.indexOf(category.name.toLowerCase()) > -1 : false; + if (!isIncluded || isExcluded) { + continue; + } + + for (let emojiId of category.emojis) { + pool[emojiId] = data.emojis[emojiId]; + } + } + } else if (previousInclude.length || previousExclude.length) { + index = {}; + } + + let allResults = values.map((value) => { + let aPool = pool; + let aIndex = index; + let length = 0; + + for (let char of value.split('')) { + length++; + + aIndex[char] = aIndex[char] || {}; + aIndex = aIndex[char]; + + if (!aIndex.results) { + let scores = {}; + + aIndex.results = []; + aIndex.pool = {}; + + for (let id in aPool) { + let emoji = aPool[id], + { search } = emoji, + sub = value.substr(0, length), + subIndex = search.indexOf(sub); + + if (subIndex !== -1) { + let score = subIndex + 1; + if (sub === id) { + score = 0; + } + + aIndex.results.push(emojisList[id]); + aIndex.pool[id] = emoji; + + scores[id] = score; + } + } + + aIndex.results.sort((a, b) => { + let aScore = scores[a.id], + bScore = scores[b.id]; + + return aScore - bScore; + }); + } + + aPool = aIndex.pool; + } + + return aIndex.results; + }).filter(a => a); + + if (allResults.length > 1) { + results = intersect(...allResults); + } else if (allResults.length) { + results = allResults[0]; + } else { + results = []; + } + } + + if (results) { + if (emojisToShowFilter) { + results = results.filter((result) => emojisToShowFilter(data.emojis[result.id].unified)); + } + + if (results && results.length > maxResults) { + results = results.slice(0, maxResults); + } + } + + return results; +} + +export { search }; diff --git a/app/javascript/mastodon/features/emoji/emoji_unicode_mapping_light.js b/app/javascript/mastodon/features/emoji/emoji_unicode_mapping_light.js new file mode 100644 index 000000000..918684c31 --- /dev/null +++ b/app/javascript/mastodon/features/emoji/emoji_unicode_mapping_light.js @@ -0,0 +1,35 @@ +// A mapping of unicode strings to an object containing the filename +// (i.e. the svg filename) and a shortCode intended to be shown +// as a "title" attribute in an HTML element (aka tooltip). + +const [ + shortCodesToEmojiData, + skins, // eslint-disable-line no-unused-vars + categories, // eslint-disable-line no-unused-vars + short_names, // eslint-disable-line no-unused-vars + emojisWithoutShortCodes, +] = require('./emoji_compressed'); +const { unicodeToFilename } = require('./unicode_to_filename'); + +// decompress +const unicodeMapping = {}; + +function processEmojiMapData(emojiMapData, shortCode) { + let [ native, filename ] = emojiMapData; + if (!filename) { + // filename name can be derived from unicodeToFilename + filename = unicodeToFilename(native); + } + unicodeMapping[native] = { + shortCode: shortCode, + filename: filename, + }; +} + +Object.keys(shortCodesToEmojiData).forEach((shortCode) => { + let [ filenameData ] = shortCodesToEmojiData[shortCode]; + filenameData.forEach(emojiMapData => processEmojiMapData(emojiMapData, shortCode)); +}); +emojisWithoutShortCodes.forEach(emojiMapData => processEmojiMapData(emojiMapData)); + +module.exports = unicodeMapping; diff --git a/app/javascript/mastodon/features/emoji/emoji_utils.js b/app/javascript/mastodon/features/emoji/emoji_utils.js new file mode 100644 index 000000000..6ef2785d9 --- /dev/null +++ b/app/javascript/mastodon/features/emoji/emoji_utils.js @@ -0,0 +1,137 @@ +// This code is largely borrowed from: +// https://github.com/missive/emoji-mart/blob/bbd4fbe/src/utils/index.js + +import data from './emoji_mart_data_light'; + +const COLONS_REGEX = /^(?:\:([^\:]+)\:)(?:\:skin-tone-(\d)\:)?$/; + +function buildSearch(thisData) { + const search = []; + + let addToSearch = (strings, split) => { + if (!strings) { + return; + } + + (Array.isArray(strings) ? strings : [strings]).forEach((string) => { + (split ? string.split(/[-|_|\s]+/) : [string]).forEach((s) => { + s = s.toLowerCase(); + + if (search.indexOf(s) === -1) { + search.push(s); + } + }); + }); + }; + + addToSearch(thisData.short_names, true); + addToSearch(thisData.name, true); + addToSearch(thisData.keywords, false); + addToSearch(thisData.emoticons, false); + + return search; +} + +function unifiedToNative(unified) { + let unicodes = unified.split('-'), + codePoints = unicodes.map((u) => `0x${u}`); + + return String.fromCodePoint(...codePoints); +} + +function sanitize(emoji) { + let { name, short_names, skin_tone, skin_variations, emoticons, unified, custom, imageUrl } = emoji, + id = emoji.id || short_names[0], + colons = `:${id}:`; + + if (custom) { + return { + id, + name, + colons, + emoticons, + custom, + imageUrl, + }; + } + + if (skin_tone) { + colons += `:skin-tone-${skin_tone}:`; + } + + return { + id, + name, + colons, + emoticons, + unified: unified.toLowerCase(), + skin: skin_tone || (skin_variations ? 1 : null), + native: unifiedToNative(unified), + }; +} + +function getSanitizedData(emoji) { + return sanitize(getData(emoji)); +} + +function getData(emoji) { + let emojiData = {}; + + if (typeof emoji === 'string') { + let matches = emoji.match(COLONS_REGEX); + + if (matches) { + emoji = matches[1]; + + } + + if (data.short_names.hasOwnProperty(emoji)) { + emoji = data.short_names[emoji]; + } + + if (data.emojis.hasOwnProperty(emoji)) { + emojiData = data.emojis[emoji]; + } + } else if (emoji.custom) { + emojiData = emoji; + + emojiData.search = buildSearch({ + short_names: emoji.short_names, + name: emoji.name, + keywords: emoji.keywords, + emoticons: emoji.emoticons, + }); + + emojiData.search = emojiData.search.join(','); + } else if (emoji.id) { + if (data.short_names.hasOwnProperty(emoji.id)) { + emoji.id = data.short_names[emoji.id]; + } + + if (data.emojis.hasOwnProperty(emoji.id)) { + emojiData = data.emojis[emoji.id]; + } + } + + emojiData.emoticons = emojiData.emoticons || []; + emojiData.variations = emojiData.variations || []; + + if (emojiData.variations && emojiData.variations.length) { + emojiData = JSON.parse(JSON.stringify(emojiData)); + emojiData.unified = emojiData.variations.shift(); + } + + return emojiData; +} + +function intersect(a, b) { + let aSet = new Set(a); + let bSet = new Set(b); + let intersection = new Set( + [...aSet].filter(x => bSet.has(x)) + ); + + return Array.from(intersection); +} + +export { getData, getSanitizedData, intersect }; diff --git a/app/javascript/mastodon/features/emoji/unicode_to_filename.js b/app/javascript/mastodon/features/emoji/unicode_to_filename.js new file mode 100644 index 000000000..c75c4cd7d --- /dev/null +++ b/app/javascript/mastodon/features/emoji/unicode_to_filename.js @@ -0,0 +1,26 @@ +// taken from: +// https://github.com/twitter/twemoji/blob/47732c7/twemoji-generator.js#L848-L866 +exports.unicodeToFilename = (str) => { + let result = ''; + let charCode = 0; + let p = 0; + let i = 0; + while (i < str.length) { + charCode = str.charCodeAt(i++); + if (p) { + if (result.length > 0) { + result += '-'; + } + result += (0x10000 + ((p - 0xD800) << 10) + (charCode - 0xDC00)).toString(16); + p = 0; + } else if (0xD800 <= charCode && charCode <= 0xDBFF) { + p = charCode; + } else { + if (result.length > 0) { + result += '-'; + } + result += charCode.toString(16); + } + } + return result; +}; diff --git a/app/javascript/mastodon/features/emoji/unicode_to_unified_name.js b/app/javascript/mastodon/features/emoji/unicode_to_unified_name.js new file mode 100644 index 000000000..808ac197e --- /dev/null +++ b/app/javascript/mastodon/features/emoji/unicode_to_unified_name.js @@ -0,0 +1,17 @@ +function padLeft(str, num) { + while (str.length < num) { + str = '0' + str; + } + return str; +} + +exports.unicodeToUnifiedName = (str) => { + let output = ''; + for (let i = 0; i < str.length; i += 2) { + if (i > 0) { + output += '-'; + } + output += padLeft(str.codePointAt(i).toString(16).toUpperCase(), 4); + } + return output; +}; diff --git a/app/javascript/mastodon/reducers/accounts.js b/app/javascript/mastodon/reducers/accounts.js index 5391a93ae..8a4d69f26 100644 --- a/app/javascript/mastodon/reducers/accounts.js +++ b/app/javascript/mastodon/reducers/accounts.js @@ -44,7 +44,7 @@ import { FAVOURITED_STATUSES_EXPAND_SUCCESS, } from '../actions/favourites'; import { STORE_HYDRATE } from '../actions/store'; -import emojify from '../emoji'; +import emojify from '../features/emoji/emoji'; import { Map as ImmutableMap, fromJS } from 'immutable'; import escapeTextContentForBrowser from 'escape-html'; diff --git a/app/javascript/mastodon/reducers/custom_emojis.js b/app/javascript/mastodon/reducers/custom_emojis.js index b7c9b1d7c..307bcc7dc 100644 --- a/app/javascript/mastodon/reducers/custom_emojis.js +++ b/app/javascript/mastodon/reducers/custom_emojis.js @@ -1,7 +1,7 @@ import { List as ImmutableList } from 'immutable'; import { STORE_HYDRATE } from '../actions/store'; -import { search as emojiSearch } from '../emoji_index_light'; -import { buildCustomEmojis } from '../emoji'; +import { search as emojiSearch } from '../features/emoji/emoji_mart_search_light'; +import { buildCustomEmojis } from '../features/emoji/emoji'; const initialState = ImmutableList(); diff --git a/app/javascript/mastodon/reducers/statuses.js b/app/javascript/mastodon/reducers/statuses.js index ed16e016f..32772fff7 100644 --- a/app/javascript/mastodon/reducers/statuses.js +++ b/app/javascript/mastodon/reducers/statuses.js @@ -39,7 +39,7 @@ import { PINNED_STATUSES_FETCH_SUCCESS, } from '../actions/pin_statuses'; import { SEARCH_FETCH_SUCCESS } from '../actions/search'; -import emojify from '../emoji'; +import emojify from '../features/emoji/emoji'; import { Map as ImmutableMap, fromJS } from 'immutable'; import escapeTextContentForBrowser from 'escape-html'; diff --git a/app/javascript/packs/public.js b/app/javascript/packs/public.js index 6f72a8050..a47fc2830 100644 --- a/app/javascript/packs/public.js +++ b/app/javascript/packs/public.js @@ -21,7 +21,7 @@ function main() { const { length } = require('stringz'); const IntlRelativeFormat = require('intl-relativeformat').default; const { delegate } = require('rails-ujs'); - const emojify = require('../mastodon/emoji').default; + const emojify = require('../mastodon/features/emoji/emoji').default; const { getLocale } = require('../mastodon/locales'); const { localeData } = getLocale(); const VideoContainer = require('../mastodon/containers/video_container').default; diff --git a/lib/tasks/emojis.rake b/lib/tasks/emojis.rake index cd5e30e96..625a6e55d 100644 --- a/lib/tasks/emojis.rake +++ b/lib/tasks/emojis.rake @@ -17,7 +17,7 @@ namespace :emojis do task :generate do source = 'http://www.unicode.org/Public/emoji/5.0/emoji-test.txt' codes = [] - dest = Rails.root.join('app', 'javascript', 'mastodon', 'emoji_map.json') + dest = Rails.root.join('app', 'javascript', 'mastodon', 'features', 'emoji', 'emoji_map.json') puts "Downloading emojos from source... (#{source})" diff --git a/spec/javascript/components/emoji_index.test.js b/spec/javascript/components/emoji_index.test.js index 8c6d2cedb..4bff79265 100644 --- a/spec/javascript/components/emoji_index.test.js +++ b/spec/javascript/components/emoji_index.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import { search } from '../../../app/javascript/mastodon/emoji_index_light'; +import { search } from '../../../app/javascript/mastodon/features/emoji/emoji_mart_search_light'; import { emojiIndex } from 'emoji-mart'; import { pick } from 'lodash'; @@ -78,4 +78,22 @@ describe('emoji_index', () => { expect(emojiIndex.search('flag', { include: ['people'] })) .to.deep.equal([]); }); + + it('does an emoji whose unified name is irregular', () => { + let expected = [{ + 'id': 'water_polo', + 'unified': '1f93d', + 'native': '๐Ÿคฝ', + }, { + 'id': 'man-playing-water-polo', + 'unified': '1f93d-200d-2642-fe0f', + 'native': '๐Ÿคฝโ€โ™‚๏ธ', + }, { + 'id': 'woman-playing-water-polo', + 'unified': '1f93d-200d-2640-fe0f', + 'native': '๐Ÿคฝโ€โ™€๏ธ', + }]; + expect(search('polo').map(trimEmojis)).to.deep.equal(expected); + expect(emojiIndex.search('polo').map(trimEmojis)).to.deep.equal(expected); + }); }); diff --git a/spec/javascript/components/emojify.test.js b/spec/javascript/components/emojify.test.js index 4202e52e1..3105c8e3f 100644 --- a/spec/javascript/components/emojify.test.js +++ b/spec/javascript/components/emojify.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import emojify from '../../../app/javascript/mastodon/emoji'; +import emojify from '../../../app/javascript/mastodon/features/emoji/emoji'; describe('emojify', () => { it('ignores unknown shortcodes', () => { @@ -49,4 +49,13 @@ describe('emojify', () => { expect(emojify('๐Ÿ‘Œ๐ŸŒˆ๐Ÿ’•')).to.equal('๐Ÿ‘Œ๐ŸŒˆ๐Ÿ’•'); expect(emojify('๐Ÿ‘Œ ๐ŸŒˆ ๐Ÿ’•')).to.equal('๐Ÿ‘Œ ๐ŸŒˆ ๐Ÿ’•'); }); + + it('does an emoji that has no shortcode', () => { + expect(emojify('๐Ÿ•‰๏ธ')).to.equal('๐Ÿ•‰๏ธ'); + }); + + it('does an emoji whose filename is irregular', () => { + expect(emojify('โ†™๏ธ')).to.equal('โ†™๏ธ'); + }); + }); -- cgit From 0717d9b3e6904a4dcd5d2dc9e680cc5b21c50e51 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 8 Oct 2017 17:34:34 +0200 Subject: Set snowflake IDs for backdated statuses (#5260) - Rename Mastodon::TimestampIds into Mastodon::Snowflake for clarity - Skip for statuses coming from inbox, aka delivered in real-time - Skip for statuses that claim to be from the future --- app/lib/activitypub/activity.rb | 7 +- app/lib/activitypub/activity/announce.rb | 3 +- app/lib/activitypub/activity/create.rb | 2 +- app/lib/ostatus/activity/base.rb | 5 +- app/lib/ostatus/activity/creation.rb | 2 +- app/lib/ostatus/activity/general.rb | 2 +- app/models/status.rb | 2 + .../activitypub/process_collection_service.rb | 5 +- app/services/process_feed_service.rb | 6 +- app/workers/activitypub/processing_worker.rb | 2 +- app/workers/processing_worker.rb | 2 +- config/application.rb | 1 + config/brakeman.ignore | 44 +++--- lib/mastodon/snowflake.rb | 162 +++++++++++++++++++++ lib/mastodon/timestamp_ids.rb | 131 ----------------- lib/tasks/db.rake | 6 +- .../activitypub/process_collection_service_spec.rb | 4 +- 17 files changed, 213 insertions(+), 173 deletions(-) create mode 100644 lib/mastodon/snowflake.rb delete mode 100644 lib/mastodon/timestamp_ids.rb (limited to 'lib') diff --git a/app/lib/activitypub/activity.rb b/app/lib/activitypub/activity.rb index b06dd6194..9688f57a6 100644 --- a/app/lib/activitypub/activity.rb +++ b/app/lib/activitypub/activity.rb @@ -3,10 +3,11 @@ class ActivityPub::Activity include JsonLdHelper - def initialize(json, account) + def initialize(json, account, options = {}) @json = json @account = account @object = @json['object'] + @options = options end def perform @@ -14,9 +15,9 @@ class ActivityPub::Activity end class << self - def factory(json, account) + def factory(json, account, options = {}) @json = json - klass&.new(json, account) + klass&.new(json, account, options) end private diff --git a/app/lib/activitypub/activity/announce.rb b/app/lib/activitypub/activity/announce.rb index 1cf844281..b84098933 100644 --- a/app/lib/activitypub/activity/announce.rb +++ b/app/lib/activitypub/activity/announce.rb @@ -15,8 +15,9 @@ class ActivityPub::Activity::Announce < ActivityPub::Activity account: @account, reblog: original_status, uri: @json['id'], - created_at: @json['published'] || Time.now.utc + created_at: @options[:override_timestamps] ? nil : @json['published'] ) + distribute(status) status end diff --git a/app/lib/activitypub/activity/create.rb b/app/lib/activitypub/activity/create.rb index 9421a0aa7..d6e9bc1de 100644 --- a/app/lib/activitypub/activity/create.rb +++ b/app/lib/activitypub/activity/create.rb @@ -43,7 +43,7 @@ class ActivityPub::Activity::Create < ActivityPub::Activity text: text_from_content || '', language: language_from_content, spoiler_text: @object['summary'] || '', - created_at: @object['published'] || Time.now.utc, + created_at: @options[:override_timestamps] ? nil : @object['published'], reply: @object['inReplyTo'].present?, sensitive: @object['sensitive'] || false, visibility: visibility_from_audience, diff --git a/app/lib/ostatus/activity/base.rb b/app/lib/ostatus/activity/base.rb index 039381397..8b27b124f 100644 --- a/app/lib/ostatus/activity/base.rb +++ b/app/lib/ostatus/activity/base.rb @@ -1,9 +1,10 @@ # frozen_string_literal: true class OStatus::Activity::Base - def initialize(xml, account = nil) - @xml = xml + def initialize(xml, account = nil, options = {}) + @xml = xml @account = account + @options = options end def status? diff --git a/app/lib/ostatus/activity/creation.rb b/app/lib/ostatus/activity/creation.rb index 511c462d4..a1ab522e2 100644 --- a/app/lib/ostatus/activity/creation.rb +++ b/app/lib/ostatus/activity/creation.rb @@ -34,7 +34,7 @@ class OStatus::Activity::Creation < OStatus::Activity::Base reblog: cached_reblog, text: content, spoiler_text: content_warning, - created_at: published, + created_at: @options[:override_timestamps] ? nil : published, reply: thread?, language: content_language, visibility: visibility_scope, diff --git a/app/lib/ostatus/activity/general.rb b/app/lib/ostatus/activity/general.rb index b3bef9861..8a6aabc33 100644 --- a/app/lib/ostatus/activity/general.rb +++ b/app/lib/ostatus/activity/general.rb @@ -2,7 +2,7 @@ class OStatus::Activity::General < OStatus::Activity::Base def specialize - special_class&.new(@xml, @account) + special_class&.new(@xml, @account, @options) end private diff --git a/app/models/status.rb b/app/models/status.rb index ea4c097bf..0d249244f 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -136,6 +136,8 @@ class Status < ApplicationRecord after_create :store_uri, if: :local? + around_create Mastodon::Snowflake::Callbacks + before_validation :prepare_contents, if: :local? before_validation :set_reblog before_validation :set_visibility diff --git a/app/services/activitypub/process_collection_service.rb b/app/services/activitypub/process_collection_service.rb index 59cb65c65..db4d1b4bc 100644 --- a/app/services/activitypub/process_collection_service.rb +++ b/app/services/activitypub/process_collection_service.rb @@ -3,9 +3,10 @@ class ActivityPub::ProcessCollectionService < BaseService include JsonLdHelper - def call(body, account) + def call(body, account, options = {}) @account = account @json = Oj.load(body, mode: :strict) + @options = options return unless supported_context? return if different_actor? && verify_account!.nil? @@ -38,7 +39,7 @@ class ActivityPub::ProcessCollectionService < BaseService end def process_item(item) - activity = ActivityPub::Activity.factory(item, @account) + activity = ActivityPub::Activity.factory(item, @account, @options) activity&.perform end diff --git a/app/services/process_feed_service.rb b/app/services/process_feed_service.rb index 2a5f1e2bc..60eff135e 100644 --- a/app/services/process_feed_service.rb +++ b/app/services/process_feed_service.rb @@ -1,7 +1,9 @@ # frozen_string_literal: true class ProcessFeedService < BaseService - def call(body, account) + def call(body, account, options = {}) + @options = options + xml = Nokogiri::XML(body) xml.encoding = 'utf-8' @@ -20,7 +22,7 @@ class ProcessFeedService < BaseService end def process_entry(xml, account) - activity = OStatus::Activity::General.new(xml, account) + activity = OStatus::Activity::General.new(xml, account, @options) activity.specialize&.perform if activity.status? rescue ActiveRecord::RecordInvalid => e Rails.logger.debug "Nothing was saved for #{activity.id} because: #{e}" diff --git a/app/workers/activitypub/processing_worker.rb b/app/workers/activitypub/processing_worker.rb index bb9adf64b..0e2e0eddd 100644 --- a/app/workers/activitypub/processing_worker.rb +++ b/app/workers/activitypub/processing_worker.rb @@ -6,6 +6,6 @@ class ActivityPub::ProcessingWorker sidekiq_options backtrace: true def perform(account_id, body) - ActivityPub::ProcessCollectionService.new.call(body, Account.find(account_id)) + ActivityPub::ProcessCollectionService.new.call(body, Account.find(account_id), override_timestamps: true) end end diff --git a/app/workers/processing_worker.rb b/app/workers/processing_worker.rb index 5df404bcc..978c3aba2 100644 --- a/app/workers/processing_worker.rb +++ b/app/workers/processing_worker.rb @@ -6,6 +6,6 @@ class ProcessingWorker sidekiq_options backtrace: true def perform(account_id, body) - ProcessFeedService.new.call(body, Account.find(account_id)) + ProcessFeedService.new.call(body, Account.find(account_id), override_timestamps: true) end end diff --git a/config/application.rb b/config/application.rb index b6ce74147..4860a08a1 100644 --- a/config/application.rb +++ b/config/application.rb @@ -9,6 +9,7 @@ Bundler.require(*Rails.groups) require_relative '../app/lib/exceptions' require_relative '../lib/paperclip/gif_transcoder' require_relative '../lib/paperclip/video_transcoder' +require_relative '../lib/mastodon/snowflake' require_relative '../lib/mastodon/version' Dotenv::Railtie.load diff --git a/config/brakeman.ignore b/config/brakeman.ignore index 2a1bc1997..f198eebac 100644 --- a/config/brakeman.ignore +++ b/config/brakeman.ignore @@ -57,26 +57,6 @@ "confidence": "Weak", "note": "" }, - { - "warning_type": "SQL Injection", - "warning_code": 0, - "fingerprint": "34efc76883080f8b1110a30c34ec4f903946ee56651aae46c62477f45d4fc412", - "check_name": "SQL", - "message": "Possible SQL injection", - "file": "lib/mastodon/timestamp_ids.rb", - "line": 63, - "link": "http://brakemanscanner.org/docs/warning_types/sql_injection/", - "code": "connection.execute(\" CREATE OR REPLACE FUNCTION timestamp_id(table_name text)\\n RETURNS bigint AS\\n $$\\n DECLARE\\n time_part bigint;\\n sequence_base bigint;\\n tail bigint;\\n BEGIN\\n time_part := (\\n -- Get the time in milliseconds\\n ((date_part('epoch', now()) * 1000))::bigint\\n -- And shift it over two bytes\\n << 16);\\n\\n sequence_base := (\\n 'x' ||\\n -- Take the first two bytes (four hex characters)\\n substr(\\n -- Of the MD5 hash of the data we documented\\n md5(table_name ||\\n '#{SecureRandom.hex(16)}' ||\\n time_part::text\\n ),\\n 1, 4\\n )\\n -- And turn it into a bigint\\n )::bit(16)::bigint;\\n\\n -- Finally, add our sequence number to our base, and chop\\n -- it to the last two bytes\\n tail := (\\n (sequence_base + nextval(table_name || '_id_seq'))\\n & 65535);\\n\\n -- Return the time part and the sequence part. OR appears\\n -- faster here than addition, but they're equivalent:\\n -- time_part has no trailing two bytes, and tail is only\\n -- the last two bytes.\\n RETURN time_part | tail;\\n END\\n $$ LANGUAGE plpgsql VOLATILE;\\n\")", - "render_path": null, - "location": { - "type": "method", - "class": "Mastodon::TimestampIds", - "method": "define_timestamp_id" - }, - "user_input": "SecureRandom.hex(16)", - "confidence": "Medium", - "note": "" - }, { "warning_type": "Dynamic Render Path", "warning_code": 15, @@ -106,7 +86,7 @@ "line": 3, "link": "http://brakemanscanner.org/docs/warning_types/dynamic_render_path/", "code": "render(action => \"stream_entries/#{Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase}\", { Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase.to_sym => Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity, :centered => true })", - "render_path": [{"type":"controller","class":"StatusesController","method":"embed","line":35,"file":"app/controllers/statuses_controller.rb"}], + "render_path": [{"type":"controller","class":"StatusesController","method":"embed","line":41,"file":"app/controllers/statuses_controller.rb"}], "location": { "type": "template", "template": "stream_entries/embed" @@ -153,6 +133,26 @@ "confidence": "Weak", "note": "" }, + { + "warning_type": "SQL Injection", + "warning_code": 0, + "fingerprint": "9ccb9ba6a6947400e187d515e0bf719d22993d37cfc123c824d7fafa6caa9ac3", + "check_name": "SQL", + "message": "Possible SQL injection", + "file": "lib/mastodon/snowflake.rb", + "line": 86, + "link": "http://brakemanscanner.org/docs/warning_types/sql_injection/", + "code": "connection.execute(\" CREATE OR REPLACE FUNCTION timestamp_id(table_name text)\\n RETURNS bigint AS\\n $$\\n DECLARE\\n time_part bigint;\\n sequence_base bigint;\\n tail bigint;\\n BEGIN\\n time_part := (\\n -- Get the time in milliseconds\\n ((date_part('epoch', now()) * 1000))::bigint\\n -- And shift it over two bytes\\n << 16);\\n\\n sequence_base := (\\n 'x' ||\\n -- Take the first two bytes (four hex characters)\\n substr(\\n -- Of the MD5 hash of the data we documented\\n md5(table_name ||\\n '#{SecureRandom.hex(16)}' ||\\n time_part::text\\n ),\\n 1, 4\\n )\\n -- And turn it into a bigint\\n )::bit(16)::bigint;\\n\\n -- Finally, add our sequence number to our base, and chop\\n -- it to the last two bytes\\n tail := (\\n (sequence_base + nextval(table_name || '_id_seq'))\\n & 65535);\\n\\n -- Return the time part and the sequence part. OR appears\\n -- faster here than addition, but they're equivalent:\\n -- time_part has no trailing two bytes, and tail is only\\n -- the last two bytes.\\n RETURN time_part | tail;\\n END\\n $$ LANGUAGE plpgsql VOLATILE;\\n\")", + "render_path": null, + "location": { + "type": "method", + "class": "Mastodon::Snowflake", + "method": "define_timestamp_id" + }, + "user_input": "SecureRandom.hex(16)", + "confidence": "Medium", + "note": "" + }, { "warning_type": "Dynamic Render Path", "warning_code": 15, @@ -269,6 +269,6 @@ "note": "" } ], - "updated": "2017-10-06 03:27:46 +0200", + "updated": "2017-10-07 19:24:02 +0200", "brakeman_version": "4.0.1" } diff --git a/lib/mastodon/snowflake.rb b/lib/mastodon/snowflake.rb new file mode 100644 index 000000000..219e323d4 --- /dev/null +++ b/lib/mastodon/snowflake.rb @@ -0,0 +1,162 @@ +# frozen_string_literal: true + +module Mastodon::Snowflake + DEFAULT_REGEX = /timestamp_id\('(?\w+)'/ + + class Callbacks + def self.around_create(record) + now = Time.now.utc + + if record.created_at.nil? || record.created_at >= now || record.created_at == record.updated_at + yield + else + record.id = Mastodon::Snowflake.id_at(record.created_at) + tries = 0 + + begin + yield + rescue ActiveRecord::RecordNotUnique + raise if tries > 100 + + tries += 1 + record.id += rand(100) + + retry + end + end + end + end + + class << self + # Our ID will be composed of the following: + # 6 bytes (48 bits) of millisecond-level timestamp + # 2 bytes (16 bits) of sequence data + # + # The 'sequence data' is intended to be unique within a + # given millisecond, yet obscure the 'serial number' of + # this row. + # + # To do this, we hash the following data: + # * Table name (if provided, skipped if not) + # * Secret salt (should not be guessable) + # * Timestamp (again, millisecond-level granularity) + # + # We then take the first two bytes of that value, and add + # the lowest two bytes of the table ID sequence number + # (`table_name`_id_seq). This means that even if we insert + # two rows at the same millisecond, they will have + # distinct 'sequence data' portions. + # + # If this happens, and an attacker can see both such IDs, + # they can determine which of the two entries was inserted + # first, but not the total number of entries in the table + # (even mod 2**16). + # + # The table name is included in the hash to ensure that + # different tables derive separate sequence bases so rows + # inserted in the same millisecond in different tables do + # not reveal the table ID sequence number for one another. + # + # The secret salt is included in the hash to ensure that + # external users cannot derive the sequence base given the + # timestamp and table name, which would allow them to + # compute the table ID sequence number. + def define_timestamp_id + return if already_defined? + + connection.execute(<<~SQL) + CREATE OR REPLACE FUNCTION timestamp_id(table_name text) + RETURNS bigint AS + $$ + DECLARE + time_part bigint; + sequence_base bigint; + tail bigint; + BEGIN + time_part := ( + -- Get the time in milliseconds + ((date_part('epoch', now()) * 1000))::bigint + -- And shift it over two bytes + << 16); + + sequence_base := ( + 'x' || + -- Take the first two bytes (four hex characters) + substr( + -- Of the MD5 hash of the data we documented + md5(table_name || + '#{SecureRandom.hex(16)}' || + time_part::text + ), + 1, 4 + ) + -- And turn it into a bigint + )::bit(16)::bigint; + + -- Finally, add our sequence number to our base, and chop + -- it to the last two bytes + tail := ( + (sequence_base + nextval(table_name || '_id_seq')) + & 65535); + + -- Return the time part and the sequence part. OR appears + -- faster here than addition, but they're equivalent: + -- time_part has no trailing two bytes, and tail is only + -- the last two bytes. + RETURN time_part | tail; + END + $$ LANGUAGE plpgsql VOLATILE; + SQL + end + + def ensure_id_sequences_exist + # Find tables using timestamp IDs. + connection.tables.each do |table| + # We're only concerned with "id" columns. + next unless (id_col = connection.columns(table).find { |col| col.name == 'id' }) + + # And only those that are using timestamp_id. + next unless (data = DEFAULT_REGEX.match(id_col.default_function)) + + seq_name = data[:seq_prefix] + '_id_seq' + + # If we were on Postgres 9.5+, we could do CREATE SEQUENCE IF + # NOT EXISTS, but we can't depend on that. Instead, catch the + # possible exception and ignore it. + # Note that seq_name isn't a column name, but it's a + # relation, like a column, and follows the same quoting rules + # in Postgres. + connection.execute(<<~SQL) + DO $$ + BEGIN + CREATE SEQUENCE #{connection.quote_column_name(seq_name)}; + EXCEPTION WHEN duplicate_table THEN + -- Do nothing, we have the sequence already. + END + $$ LANGUAGE plpgsql; + SQL + end + end + + def id_at(timestamp) + id = timestamp.to_i * 1000 + rand(1000) + id = id << 16 + id += rand(2**16) + id + end + + private + + def already_defined? + connection.execute(<<~SQL).values.first.first + SELECT EXISTS( + SELECT * FROM pg_proc WHERE proname = 'timestamp_id' + ); + SQL + end + + def connection + ActiveRecord::Base.connection + end + end +end diff --git a/lib/mastodon/timestamp_ids.rb b/lib/mastodon/timestamp_ids.rb deleted file mode 100644 index 3b048a50c..000000000 --- a/lib/mastodon/timestamp_ids.rb +++ /dev/null @@ -1,131 +0,0 @@ -# frozen_string_literal: true - -module Mastodon::TimestampIds - DEFAULT_REGEX = /timestamp_id\('(?\w+)'/ - - class << self - # Our ID will be composed of the following: - # 6 bytes (48 bits) of millisecond-level timestamp - # 2 bytes (16 bits) of sequence data - # - # The 'sequence data' is intended to be unique within a - # given millisecond, yet obscure the 'serial number' of - # this row. - # - # To do this, we hash the following data: - # * Table name (if provided, skipped if not) - # * Secret salt (should not be guessable) - # * Timestamp (again, millisecond-level granularity) - # - # We then take the first two bytes of that value, and add - # the lowest two bytes of the table ID sequence number - # (`table_name`_id_seq). This means that even if we insert - # two rows at the same millisecond, they will have - # distinct 'sequence data' portions. - # - # If this happens, and an attacker can see both such IDs, - # they can determine which of the two entries was inserted - # first, but not the total number of entries in the table - # (even mod 2**16). - # - # The table name is included in the hash to ensure that - # different tables derive separate sequence bases so rows - # inserted in the same millisecond in different tables do - # not reveal the table ID sequence number for one another. - # - # The secret salt is included in the hash to ensure that - # external users cannot derive the sequence base given the - # timestamp and table name, which would allow them to - # compute the table ID sequence number. - def define_timestamp_id - return if already_defined? - - connection.execute(<<~SQL) - CREATE OR REPLACE FUNCTION timestamp_id(table_name text) - RETURNS bigint AS - $$ - DECLARE - time_part bigint; - sequence_base bigint; - tail bigint; - BEGIN - time_part := ( - -- Get the time in milliseconds - ((date_part('epoch', now()) * 1000))::bigint - -- And shift it over two bytes - << 16); - - sequence_base := ( - 'x' || - -- Take the first two bytes (four hex characters) - substr( - -- Of the MD5 hash of the data we documented - md5(table_name || - '#{SecureRandom.hex(16)}' || - time_part::text - ), - 1, 4 - ) - -- And turn it into a bigint - )::bit(16)::bigint; - - -- Finally, add our sequence number to our base, and chop - -- it to the last two bytes - tail := ( - (sequence_base + nextval(table_name || '_id_seq')) - & 65535); - - -- Return the time part and the sequence part. OR appears - -- faster here than addition, but they're equivalent: - -- time_part has no trailing two bytes, and tail is only - -- the last two bytes. - RETURN time_part | tail; - END - $$ LANGUAGE plpgsql VOLATILE; - SQL - end - - def ensure_id_sequences_exist - # Find tables using timestamp IDs. - connection.tables.each do |table| - # We're only concerned with "id" columns. - next unless (id_col = connection.columns(table).find { |col| col.name == 'id' }) - - # And only those that are using timestamp_id. - next unless (data = DEFAULT_REGEX.match(id_col.default_function)) - - seq_name = data[:seq_prefix] + '_id_seq' - - # If we were on Postgres 9.5+, we could do CREATE SEQUENCE IF - # NOT EXISTS, but we can't depend on that. Instead, catch the - # possible exception and ignore it. - # Note that seq_name isn't a column name, but it's a - # relation, like a column, and follows the same quoting rules - # in Postgres. - connection.execute(<<~SQL) - DO $$ - BEGIN - CREATE SEQUENCE #{connection.quote_column_name(seq_name)}; - EXCEPTION WHEN duplicate_table THEN - -- Do nothing, we have the sequence already. - END - $$ LANGUAGE plpgsql; - SQL - end - end - - private - - def already_defined? - connection.execute(<<~SQL).values.first.first - SELECT EXISTS( - SELECT * FROM pg_proc WHERE proname = 'timestamp_id' - ); - SQL - end - - def connection - ActiveRecord::Base.connection - end - end -end diff --git a/lib/tasks/db.rake b/lib/tasks/db.rake index 6af6bb6fb..32039c31d 100644 --- a/lib/tasks/db.rake +++ b/lib/tasks/db.rake @@ -1,6 +1,6 @@ # frozen_string_literal: true -require Rails.root.join('lib', 'mastodon', 'timestamp_ids') +require_relative '../mastodon/snowflake' def each_schema_load_environment # If we're in development, also run this for the test environment. @@ -63,13 +63,13 @@ namespace :db do task :define_timestamp_id do each_schema_load_environment do - Mastodon::TimestampIds.define_timestamp_id + Mastodon::Snowflake.define_timestamp_id end end task :ensure_id_sequences_exist do each_schema_load_environment do - Mastodon::TimestampIds.ensure_id_sequences_exist + Mastodon::Snowflake.ensure_id_sequences_exist end end end diff --git a/spec/services/activitypub/process_collection_service_spec.rb b/spec/services/activitypub/process_collection_service_spec.rb index c1cc22523..3cea970cf 100644 --- a/spec/services/activitypub/process_collection_service_spec.rb +++ b/spec/services/activitypub/process_collection_service_spec.rb @@ -28,7 +28,7 @@ RSpec.describe ActivityPub::ProcessCollectionService do it 'processes payload with sender if no signature exists' do expect_any_instance_of(ActivityPub::LinkedDataSignature).not_to receive(:verify_account!) - expect(ActivityPub::Activity).to receive(:factory).with(instance_of(Hash), forwarder) + expect(ActivityPub::Activity).to receive(:factory).with(instance_of(Hash), forwarder, instance_of(Hash)) subject.call(json, forwarder) end @@ -37,7 +37,7 @@ RSpec.describe ActivityPub::ProcessCollectionService do payload['signature'] = {'type' => 'RsaSignature2017'} expect_any_instance_of(ActivityPub::LinkedDataSignature).to receive(:verify_account!).and_return(actor) - expect(ActivityPub::Activity).to receive(:factory).with(instance_of(Hash), actor) + expect(ActivityPub::Activity).to receive(:factory).with(instance_of(Hash), actor, instance_of(Hash)) subject.call(json, forwarder) end -- cgit From 0aa810f9c82c77dbb3da31879467b99b87db6241 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 8 Oct 2017 22:03:44 +0200 Subject: Bump version to 2.0.0rc1 (#5209) --- lib/mastodon/version.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb index 8b692c29d..7f54469e6 100644 --- a/lib/mastodon/version.rb +++ b/lib/mastodon/version.rb @@ -5,15 +5,15 @@ module Mastodon module_function def major - 1 + 2 end def minor - 6 + 0 end def patch - 1 + 0 end def pre @@ -21,7 +21,7 @@ module Mastodon end def flags - '' + 'rc1' end def to_a -- cgit From 92e7815d1dce96ac5e01b10bcfa110aa96487c35 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 9 Oct 2017 20:51:24 +0200 Subject: Fix #5274 - Create symlink from public/500.html to public/assets/500.html (#5288) --- .gitignore | 1 - lib/tasks/assets.rake | 2 +- public/500.html | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) create mode 120000 public/500.html (limited to 'lib') diff --git a/.gitignore b/.gitignore index 2f5f1e71a..38ebc934f 100644 --- a/.gitignore +++ b/.gitignore @@ -21,7 +21,6 @@ public/system public/assets public/packs public/packs-test -public/500.html .env .env.production node_modules/ diff --git a/lib/tasks/assets.rake b/lib/tasks/assets.rake index 44896afc7..f60c1b9f2 100644 --- a/lib/tasks/assets.rake +++ b/lib/tasks/assets.rake @@ -10,7 +10,7 @@ end namespace :assets do desc 'Generate static pages' task :generate_static_pages do - render_static_page 'errors/500', layout: 'error', dest: Rails.root.join('public', '500.html') + render_static_page 'errors/500', layout: 'error', dest: Rails.root.join('public', 'assets', '500.html') end end diff --git a/public/500.html b/public/500.html new file mode 120000 index 000000000..45a907808 --- /dev/null +++ b/public/500.html @@ -0,0 +1 @@ +assets/500.html \ No newline at end of file -- cgit From 7c33da45f08fec0d55a113ccb863be083d588ffc Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 10 Oct 2017 20:48:26 +0200 Subject: Bump version to 2.0.0rc2 --- lib/mastodon/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb index 7f54469e6..0f2fc5ac6 100644 --- a/lib/mastodon/version.rb +++ b/lib/mastodon/version.rb @@ -21,7 +21,7 @@ module Mastodon end def flags - 'rc1' + 'rc2' end def to_a -- cgit