aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dotfiles/.config/alacritty/alacritty.toml2
-rw-r--r--dotfiles/.config/alacritty/ultramar-dark.toml2
-rw-r--r--dotfiles/.config/alacritty/ultramar-light.toml2
-rw-r--r--dotfiles/.config/beets/config.yaml2
-rw-r--r--dotfiles/.config/calcurse/conf33
-rwxr-xr-xdotfiles/.config/calcurse/hooks/post-save34
-rwxr-xr-xdotfiles/.config/calcurse/hooks/pre-load28
-rw-r--r--dotfiles/.config/calcurse/keys56
-rw-r--r--dotfiles/.config/fontconfig/fonts.conf4
-rw-r--r--dotfiles/.config/lf/lfrc4
-rw-r--r--dotfiles/.config/mimeapps.list1
-rw-r--r--dotfiles/.config/mpv/input.conf2
-rw-r--r--dotfiles/.config/mpv/mpv.conf2
-rw-r--r--dotfiles/.config/niri/config.kdl166
-rw-r--r--dotfiles/.config/qutebrowser/config.py4
-rw-r--r--dotfiles/.config/rofi/config.rasi2
-rw-r--r--dotfiles/.config/swaylock/config6
-rw-r--r--dotfiles/.config/waybar/config220
-rw-r--r--dotfiles/.config/waybar/modules.json181
-rw-r--r--dotfiles/.config/waybar/style.css94
-rwxr-xr-xdotfiles/.local/bin/barweather2
-rwxr-xr-xdotfiles/.local/bin/mailsync2
-rwxr-xr-xdotfiles/.local/bin/menumako2
-rwxr-xr-xdotfiles/.local/bin/setbg1
-rwxr-xr-xdotfiles/.local/bin/sshwiz18
-rw-r--r--dotfiles/.local/share/oculante/config.json154
-rw-r--r--dotfiles/.local/share/script-data/emoji2048
-rw-r--r--dotfiles/.profile2
28 files changed, 2722 insertions, 352 deletions
diff --git a/dotfiles/.config/alacritty/alacritty.toml b/dotfiles/.config/alacritty/alacritty.toml
index e21168c..93aaf56 100644
--- a/dotfiles/.config/alacritty/alacritty.toml
+++ b/dotfiles/.config/alacritty/alacritty.toml
@@ -11,7 +11,7 @@ args = ["-i", "Oxygen-Sys-App-Message"]
program = "canberra-gtk-play"
[font]
-size = 9.0
+size = 10.0
[scrolling]
multiplier = 10
diff --git a/dotfiles/.config/alacritty/ultramar-dark.toml b/dotfiles/.config/alacritty/ultramar-dark.toml
index cd2ac69..37d46b0 100644
--- a/dotfiles/.config/alacritty/ultramar-dark.toml
+++ b/dotfiles/.config/alacritty/ultramar-dark.toml
@@ -1,5 +1,5 @@
[colors.primary]
-background = "#151517"
+background = "#0d0906"
foreground = "#fcf8e2"
[colors.bright]
diff --git a/dotfiles/.config/alacritty/ultramar-light.toml b/dotfiles/.config/alacritty/ultramar-light.toml
index b93e837..ffea003 100644
--- a/dotfiles/.config/alacritty/ultramar-light.toml
+++ b/dotfiles/.config/alacritty/ultramar-light.toml
@@ -1,5 +1,5 @@
[colors.primary]
-background = "#faf6e5"
+background = "#fcf6da"
foreground = "#1b1e25"
[colors.bright]
diff --git a/dotfiles/.config/beets/config.yaml b/dotfiles/.config/beets/config.yaml
index f6f2a28..b5eb190 100644
--- a/dotfiles/.config/beets/config.yaml
+++ b/dotfiles/.config/beets/config.yaml
@@ -1,5 +1,5 @@
directory: "~/music"
-plugins: convert fetchart embedart
+plugins: musicbrainz convert fetchart embedart
convert:
auto: no
never_convert_lossy_files: yes
diff --git a/dotfiles/.config/calcurse/conf b/dotfiles/.config/calcurse/conf
new file mode 100644
index 0000000..d1b5f1d
--- /dev/null
+++ b/dotfiles/.config/calcurse/conf
@@ -0,0 +1,33 @@
+appearance.calendarview=monthly
+appearance.compactpanels=no
+appearance.defaultpanel=todo
+appearance.layout=1
+appearance.headerline=yes
+appearance.eventseparator=yes
+appearance.dayseparator=yes
+appearance.emptyline=yes
+appearance.emptyday=--
+appearance.notifybar=yes
+appearance.sidebarwidth=38
+appearance.theme=cyan on default
+appearance.todoview=hide-completed
+appearance.headingpos=right-justified
+daemon.enable=no
+daemon.log=no
+format.inputdate=1
+format.notifydate=%a %F
+format.notifytime=%T
+format.appointmenttime=%H:%M
+format.outputdate=%D
+format.dayheading=%B %e, %Y
+general.autogc=no
+general.autosave=yes
+general.confirmdelete=yes
+general.confirmquit=yes
+general.firstdayofweek=monday
+general.multipledays=yes
+general.periodicsave=0
+general.systemevents=yes
+notification.command=printf '\a'
+notification.notifyall=flagged-only
+notification.warning=300
diff --git a/dotfiles/.config/calcurse/hooks/post-save b/dotfiles/.config/calcurse/hooks/post-save
new file mode 100755
index 0000000..d797649
--- /dev/null
+++ b/dotfiles/.config/calcurse/hooks/post-save
@@ -0,0 +1,34 @@
+#!/bin/sh
+
+data_dir="$HOME/.calcurse"
+config_dir="$HOME/.calcurse"
+
+if [ ! -d "$data_dir" ]; then
+ data_dir="${XDG_DATA_HOME:-$HOME/.local/share}/calcurse"
+ config_dir="${XDG_CONFIG_HOME:-$HOME/.config}/calcurse"
+fi
+
+cd "$data_dir" || exit
+
+# Do not do anything when synchronizing with a CalDAV server.
+[ -f caldav/lock ] && exit
+
+# Run the CalDAV synchronization script.
+if [ -d caldav ] && command -v calcurse-caldav >/dev/null; then
+ (
+ date="$(date +'%b %d %H:%M:%S')"
+ notify-send "๐Ÿ“… Calcurse" "Saving and syncing with caldav server..."
+ echo "$date Running calcurse-caldav from the post-save hook..."
+ timeout 60 calcurse-caldav
+ rc=$?
+ if [ $rc -eq 124 ]; then
+ notify-send "๐Ÿ“… Calcurse" "โŒ Syncing timed out"
+ elif [ $rc -gt 0 ]; then
+ notify-send "๐Ÿ“… Calcurse" "โŒ Syncing failed (see logs)"
+ else
+ notify-send "๐Ÿ“… Calcurse" "Calendar saved and synced"
+ fi
+ echo
+ rm caldav/lock
+ ) >>caldav/log 2>&1
+fi
diff --git a/dotfiles/.config/calcurse/hooks/pre-load b/dotfiles/.config/calcurse/hooks/pre-load
new file mode 100755
index 0000000..20787fe
--- /dev/null
+++ b/dotfiles/.config/calcurse/hooks/pre-load
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+[ -d "$HOME/.calcurse" ] && data_dir="$HOME/.calcurse" || data_dir="${XDG_DATA_HOME:-$HOME/.local/share}/calcurse"
+
+cd "$data_dir" || exit
+
+# Do not do anything when synchronizing with a CalDAV server.
+[ -f caldav/lock ] && exit
+
+# Run the CalDAV synchronization script.
+if [ -d caldav ] && command -v calcurse-caldav >/dev/null; then
+ (
+ date="$(date +'%b %d %H:%M:%S')"
+ notify-send "๐Ÿ“… Calcurse" "Loading and syncing with caldav server..."
+ echo "$date Running calcurse-caldav from the pre-load hook..."
+ timeout 60 calcurse-caldav
+ rc=$?
+ if [ $rc -eq 124 ]; then
+ notify-send "๐Ÿ“… Calcurse" "โŒ Syncing timed out"
+ elif [ $rc -gt 0 ]; then
+ notify-send "๐Ÿ“… Calcurse" "โŒ Syncing failed (see logs)"
+ else
+ notify-send "๐Ÿ“… Calcurse" "Calendar synced"
+ fi
+ echo
+ rm caldav/lock
+ ) >>caldav/log 2>&1
+fi
diff --git a/dotfiles/.config/calcurse/keys b/dotfiles/.config/calcurse/keys
new file mode 100644
index 0000000..3304bbb
--- /dev/null
+++ b/dotfiles/.config/calcurse/keys
@@ -0,0 +1,56 @@
+#
+# Calcurse keys configuration file
+#
+# In this file the keybindings used by Calcurse are defined.
+# It is generated automatically by Calcurse and is maintained
+# via the key configuration menu of the interactive user
+# interface. It should not be edited directly.
+
+generic-cancel ESC
+generic-select SPC
+generic-credits @
+generic-help ?
+generic-quit q Q
+generic-save s S ^S
+generic-reload R
+generic-copy c
+generic-paste p ^V
+generic-change-view TAB
+generic-prev-view KEY_BTAB
+generic-import i I
+generic-export x X
+generic-goto g G
+generic-other-cmd o O
+generic-config-menu C
+generic-redraw ^R
+generic-add-appt ^A
+generic-add-todo ^T
+generic-prev-day T ^H
+generic-next-day t ^L
+generic-prev-week W ^K
+generic-next-week w
+generic-prev-month M
+generic-next-month m
+generic-prev-year Y
+generic-next-year y
+generic-scroll-down ^N
+generic-scroll-up ^P
+generic-goto-today ^G
+generic-command :
+move-right l L RGT
+move-left h H LFT
+move-down j J DWN
+move-up k K UP
+start-of-week 0
+end-of-week $
+add-item a A
+del-item d D
+edit-item e E
+view-item v V RET
+pipe-item |
+flag-item !
+repeat r
+edit-note n N
+view-note >
+raise-priority +
+lower-priority -
diff --git a/dotfiles/.config/fontconfig/fonts.conf b/dotfiles/.config/fontconfig/fonts.conf
index 144d7e5..d12f5c7 100644
--- a/dotfiles/.config/fontconfig/fonts.conf
+++ b/dotfiles/.config/fontconfig/fonts.conf
@@ -7,6 +7,7 @@
<family>IBM Plex Serif</family>
<family>JetBrainsMono NF</family>
<family>Noto Color Emoji</family>
+ <family>Sarasa UI J</family>
</prefer>
</alias>
<alias>
@@ -15,6 +16,7 @@
<family>IBM Plex Sans</family>
<family>JetBrainsMono NF</family>
<family>Noto Color Emoji</family>
+ <family>Sarasa UI J</family>
</prefer>
</alias>
<alias>
@@ -23,6 +25,7 @@
<family>IBM Plex Sans</family>
<family>JetBrainsMono NF</family>
<family>Noto Color Emoji</family>
+ <family>Sarasa UI J</family>
</prefer>
</alias>
<alias>
@@ -30,6 +33,7 @@
<prefer>
<family>JetBrainsMono NF</family>
<family>Noto Color Emoji</family>
+ <family>Sarasa Mono J</family>
</prefer>
</alias>
</fontconfig>
diff --git a/dotfiles/.config/lf/lfrc b/dotfiles/.config/lf/lfrc
index 4069f05..72d39c7 100644
--- a/dotfiles/.config/lf/lfrc
+++ b/dotfiles/.config/lf/lfrc
@@ -149,7 +149,7 @@ map i push A<a-b><a-b><a-f> # rename before extention
map a push A<a-b> # rename after extention
map <c-n> push :mkdir<space>
map <c-t> push :$touch<space>
-map <c-r> reload
+map r reload
map <enter> shell
map D delete
map <enter> shell
@@ -162,7 +162,7 @@ map Y :yank-path
map L $LESSOPEN='| ~/.local/bin/scope %s' less -r $f # open file preview in pager
map P hard_link
map <a-p> soft_link
-map r archive
+map R archive
# Mouse bindings
map <m-3> :dragon
diff --git a/dotfiles/.config/mimeapps.list b/dotfiles/.config/mimeapps.list
index 374bff8..c6f9ba6 100644
--- a/dotfiles/.config/mimeapps.list
+++ b/dotfiles/.config/mimeapps.list
@@ -1,6 +1,7 @@
[Default Applications]
application/pdf=org.pwmt.zathura.desktop;
application/epub+zip=org.pwmt.zathura.desktop;
+application/x-fictionbook+xml=org.pwmt.zathura.desktop;
application/rdf+xml=org.qutebrowser.qutebrowser.desktop;
application/xhtml+xml=org.qutebrowser.qutebrowser.desktop;
application/xml=org.qutebrowser.qutebrowser.desktop;
diff --git a/dotfiles/.config/mpv/input.conf b/dotfiles/.config/mpv/input.conf
index 6e789ac..2798fee 100644
--- a/dotfiles/.config/mpv/input.conf
+++ b/dotfiles/.config/mpv/input.conf
@@ -205,6 +205,8 @@ k add volume 2
s cycle sub
S cycle sub down
+Ctrl+s cycle secondary-sid
+Ctrl+S cycle secondary-sid down
a cycle audio
A cycle audio down
diff --git a/dotfiles/.config/mpv/mpv.conf b/dotfiles/.config/mpv/mpv.conf
index 136a5e6..c0d4e43 100644
--- a/dotfiles/.config/mpv/mpv.conf
+++ b/dotfiles/.config/mpv/mpv.conf
@@ -7,8 +7,10 @@ slang=en,eng,es,spa,ru,rus
osd-font=monospace
osd-msg3="${?core-idle==yes:๏Œ}${?core-idle==no:๏‹} ${time-pos}/${duration} ${media-title}"
input-ipc-server=/tmp/mpvsock
+keep-open=yes
sub-auto=fuzzy
+sub-file-paths=sub:subs:subtitles
ytdl-format="bestvideo[height<=1440]+bestaudio"
diff --git a/dotfiles/.config/niri/config.kdl b/dotfiles/.config/niri/config.kdl
index 469fd71..fa4b408 100644
--- a/dotfiles/.config/niri/config.kdl
+++ b/dotfiles/.config/niri/config.kdl
@@ -12,7 +12,7 @@ input {
// You can set rules, model, layout, variant and options.
// For more information, see xkeyboard-config(7).
layout "us,es,ru"
- options "lv3:ralt_switch,grp:alt_shift_toggle,misc:typo,caps:escape,grp_led:caps"
+ options "lv3:ralt_switch,grp:alt_space_toggle,misc:typo,caps:escape_shifted_capslock"
}
}
@@ -65,49 +65,9 @@ cursor {
hide-when-typing
}
-
-// You can configure outputs by their name, which you can find
-// by running `niri msg outputs` while inside a niri instance.
-// The built-in laptop monitor is usually called "eDP-1".
-// Find more information on the wiki:
-// https://github.com/YaLTeR/niri/wiki/Configuration:-Outputs
-// Remember to uncomment the node by removing "/-"!
-output "eDP-1" {
- // Uncomment this line to disable this output.
- // off
-
- background-color "#000000"
-
- // Resolution and, optionally, refresh rate of the output.
- // The format is "<width>x<height>" or "<width>x<height>@<refresh rate>".
- // If the refresh rate is omitted, niri will pick the highest refresh rate
- // for the resolution.
- // If the mode is omitted altogether or is invalid, niri will pick one automatically.
- // Run `niri msg outputs` while inside a niri instance to list all outputs and their modes.
- // mode "1920x1080@120.030"
-
- // You can use integer or fractional scale, for example use 1.5 for 150% scale.
- // scale 2
-
- // Transform allows to rotate the output counter-clockwise, valid values are:
- // normal, 90, 180, 270, flipped, flipped-90, flipped-180 and flipped-270.
- // transform "normal"
-
- // Position of the output in the global coordinate space.
- // This affects directional monitor actions like "focus-monitor-left", and cursor movement.
- // The cursor can only move between directly adjacent outputs.
- // Output scale and rotation has to be taken into account for positioning:
- // outputs are sized in logical, or scaled, pixels.
- // For example, a 3840ร—2160 output with scale 2.0 will have a logical size of 1920ร—1080,
- // so to put another output directly adjacent to it on the right, set its x to 1920.
- // If the position is unset or results in an overlap, the output is instead placed
- // automatically.
- position x=0 y=800
-}
-
-output "DP-1" {
- background-color "#000000"
- position x=1536 y=0
+overview {
+ zoom 0.33
+ backdrop-color "#00807F"
}
// Settings that influence how windows are positioned and sized.
@@ -115,7 +75,9 @@ output "DP-1" {
// https://github.com/YaLTeR/niri/wiki/Configuration:-Layout
layout {
// Set gaps around windows in logical pixels.
- gaps 5
+ gaps 10
+
+ background-color "#00000000"
// When to center a column when changing focus, options are:
// - "never", default behavior, focusing an off-screen column will keep at the left
@@ -202,7 +164,7 @@ layout {
// active-color "#5b8277"
// inactive-color "#4d4d42"
- active-gradient from="#1f5c9a" to="#99d0b5" angle=60
+ active-gradient from="#89b6a0" to="#0fc0d0" angle=90
inactive-gradient from="#252832" to="#676775" angle=45
}
@@ -244,6 +206,36 @@ layout {
insert-hint {
color "#5b8277"
}
+
+ tab-indicator {
+ // off
+ // hide-when-single-tab
+ place-within-column
+ gap 0
+ width 10
+ length total-proportion=0.8
+ // position "bottom"
+ gaps-between-tabs 6
+ corner-radius 2
+ // active-color "#89b6a0"
+ // inactive-color "#ccbe99"
+ active-gradient from="#0fc0d0" to="#89b6a0" angle=180
+ inactive-gradient from="#000000" to="#ccbe99" angle=180
+ }
+}
+
+gestures {
+ dnd-edge-view-scroll {
+ trigger-width 200
+ delay-ms 200
+ max-speed 4000
+ }
+
+ dnd-edge-workspace-switch {
+ trigger-height 100
+ delay-ms 200
+ max-speed 4000
+ }
}
// Add lines like this to spawn processes at startup.
@@ -307,6 +299,8 @@ window-rule {
window-rule {
match app-id="GLava"
+ match app-id="com.libretro.RetroArch"
+
border { off; }
shadow { off; }
}
@@ -314,14 +308,21 @@ window-rule {
window-rule {
match app-id="Alacritty"
match app-id="Mattermost"
+ match app-id="org.telegram.desktop"
+
+ default-column-width { fixed 770; }
+}
+
+window-rule {
+ match app-id="org.pwmt.zathura"
- default-column-width { proportion 0.31; }
+ default-column-width { fixed 900; }
}
window-rule {
match app-id="org.qutebrowser.qutebrowser"
- default-column-width { proportion 0.69; }
+ default-column-width { fixed 1150; }
}
// Example: block out two password managers from screen capture.
@@ -366,14 +367,7 @@ spawn-at-startup "gsettings" "set" "org.gnome.desktop.interface" "color-scheme"
spawn-at-startup "swaybg" "-i" "/home/yaroslav/.config/wall1.png" "-m" "fill"
-// Just a nice jingle on startup because why not
-spawn-at-startup "canberra-gtk-play" "-i" "Oxygen-Sys-App-Positive"
-
binds {
- // Keys consist of modifiers separated by + signs, followed by an XKB key name
- // in the end. To find an XKB name for a particular key, you may use a program
- // like wev.
- //
// "Mod" is a special modifier equal to Super when running on a TTY, and to Alt
// when running as a winit window.
//
@@ -384,11 +378,18 @@ binds {
// shows a list of important hotkeys.
Mod+Shift+Slash { show-hotkey-overlay; }
- // Suggested binds for running programs: terminal, app launcher, screen locker.
Mod+Return { spawn "alacritty"; }
- Mod+D { spawn "rofi" "-show" "drun" "-sidebar-mode" "-modi" "drun,run,filebrowser,ssh,combi"; }
- Mod+X { spawn "lock-color"; }
- Mod+Shift+X { spawn "lock-color" "screenon"; }
+ Mod+D {
+ spawn "rofi" "-show" "drun" "-sidebar-mode" "-modi" "window,drun,run";
+ }
+ // this isn't dry but whatever
+ Menu {
+ spawn "rofi" "-show" "drun" "-sidebar-mode" "-modi" "window,drun,run";
+ }
+ Mod+S { toggle-overview; }
+ XF86VoiceCommand { toggle-overview; } // For my remote
+ Mod+X { spawn "lock-color"; }
+ Mod+Shift+X { spawn "lock-color" "screenon"; }
// Example volume keys mappings for PipeWire & WirePlumber.
// The allow-when-locked=true property makes them work even when the session is locked.
@@ -398,6 +399,10 @@ binds {
XF86AudioMicMute allow-when-locked=true { spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SOURCE@" "toggle"; }
+ XF86AudioPrev allow-when-locked=true { spawn "lmc" "prev"; }
+ XF86AudioPlay allow-when-locked=true { spawn "lmc" "toggle"; }
+ XF86AudioNext allow-when-locked=true { spawn "lmc" "next"; }
+
Mod+Shift+F5 allow-when-locked=true { spawn "lmc" "back" "5"; }
Mod+F5 allow-when-locked=true { spawn "lmc" "prev"; }
Mod+F6 allow-when-locked=true { spawn "lmc" "toggle"; }
@@ -499,22 +504,22 @@ binds {
// To avoid scrolling through workspaces really fast, you can use
// the cooldown-ms property. The bind will be rate-limited to this value.
// You can set a cooldown on any bind, but it's most useful for the wheel.
- Mod+WheelScrollDown cooldown-ms=200 { focus-workspace-down; }
- Mod+WheelScrollUp cooldown-ms=200 { focus-workspace-up; }
- Mod+Ctrl+WheelScrollDown cooldown-ms=200 { move-column-to-workspace-down; }
- Mod+Ctrl+WheelScrollUp cooldown-ms=200 { move-column-to-workspace-up; }
+ Mod+WheelScrollDown { focus-workspace-down; }
+ Mod+WheelScrollUp { focus-workspace-up; }
+ Mod+Ctrl+WheelScrollDown { move-column-to-workspace-down; }
+ Mod+Ctrl+WheelScrollUp { move-column-to-workspace-up; }
- Mod+WheelScrollRight cooldown-ms=200 { focus-column-right; }
- Mod+WheelScrollLeft cooldown-ms=200 { focus-column-left; }
- Mod+Ctrl+WheelScrollRight cooldown-ms=200 { move-column-right; }
- Mod+Ctrl+WheelScrollLeft cooldown-ms=200 { move-column-left; }
+ Mod+WheelScrollRight { focus-column-right; }
+ Mod+WheelScrollLeft { focus-column-left; }
+ Mod+Ctrl+WheelScrollRight { move-column-right; }
+ Mod+Ctrl+WheelScrollLeft { move-column-left; }
// Usually scrolling up and down with Shift in applications results in
// horizontal scrolling; these binds replicate that.
- Mod+Shift+WheelScrollDown cooldown-ms=200 { focus-column-right; }
- Mod+Shift+WheelScrollUp cooldown-ms=200 { focus-column-left; }
- Mod+Ctrl+Shift+WheelScrollDown cooldown-ms=200 { move-column-right; }
- Mod+Ctrl+Shift+WheelScrollUp cooldown-ms=200 { move-column-left; }
+ Mod+Shift+WheelScrollDown { focus-column-right; }
+ Mod+Shift+WheelScrollUp { focus-column-left; }
+ Mod+Ctrl+Shift+WheelScrollDown { move-column-right; }
+ Mod+Ctrl+Shift+WheelScrollUp { move-column-left; }
// Similarly, you can bind touchpad scroll "ticks".
// Touchpad scrolling is continuous, so for these binds it is split into
@@ -581,8 +586,9 @@ binds {
Mod+R { switch-preset-column-width; }
Mod+Shift+R { switch-preset-window-height; }
Mod+Ctrl+R { reset-window-height; }
- Mod+F { maximize-column; }
+ Mod+F { maximize-window-to-edges; }
Mod+Shift+F { fullscreen-window; }
+ Mod+Ctrl+F { maximize-column; }
Mod+C { center-column; }
// Finer width adjustments.
@@ -593,17 +599,22 @@ binds {
// * adjust width as a percentage of screen width: "-10%" or "+10%"
// Pixel sizes use logical, or scaled, pixels. I.e. on an output with scale 2.0,
// set-column-width "100" will make the column occupy 200 physical screen pixels.
- Mod+Minus { set-column-width "-10%"; }
- Mod+Equal { set-column-width "+10%"; }
+ Mod+Minus { set-column-width "-5%"; }
+ Mod+Equal { set-column-width "+5%"; }
// Finer height adjustments when in column with other windows.
- Mod+Shift+Minus { set-window-height "-10%"; }
- Mod+Shift+Equal { set-window-height "+10%"; }
+ Mod+Shift+Minus { set-window-height "-5%"; }
+ Mod+Shift+Equal { set-window-height "+5%"; }
// Switch between floating and tiling.
Mod+Shift+Space { toggle-window-floating; }
Mod+Space { switch-focus-between-floating-and-tiling; }
+ // Toggle tabbed column display mode.
+ // Windows in this column will appear as vertical tabs,
+ // rather than stacked on top of each other.
+ Mod+W { toggle-column-tabbed-display; }
+
// Actions to switch layouts.
// Note: if you uncomment these, make sure you do NOT have
// a matching layout switch hotkey configured in xkb options above.
@@ -644,6 +655,7 @@ binds {
Mod+M { spawn "sh" "-c" "$TERM -e ncmpcpp"; }
Mod+A { spawn "sh" "-c" "$TERM -T 'neomutt' -e neomutt"; }
Mod+N { spawn "sh" "-c" "$TERM -T 'newsboat' -e newsboat && killall -42 waybar"; }
+ Mod+B { spawn "sh" "-c" "$TERM -T 'calcurse' -e calcurse"; }
Mod+T { spawn "toggletorrent"; }
Mod+Ctrl+T { spawn "launch-transmission"; }
@@ -657,3 +669,5 @@ binds {
switch-events {
lid-close { spawn "swaysession" "suspend"; }
}
+
+include "local.kdl"
diff --git a/dotfiles/.config/qutebrowser/config.py b/dotfiles/.config/qutebrowser/config.py
index b2d7492..e1e1fdf 100644
--- a/dotfiles/.config/qutebrowser/config.py
+++ b/dotfiles/.config/qutebrowser/config.py
@@ -73,8 +73,8 @@ c.downloads.remove_finished = 3000
c.url.searchengines = { "DEFAULT": "https://search.rhscz.eu/search?q={}" }
-c.url.default_page = "https://takeoff.mriya.space/"
-c.url.start_pages = "https://takeoff.mriya.space/"
+c.url.default_page = "https://duckduckgo.com/"
+c.url.start_pages = "https://duckduckgo.com/"
## Default fonts
c.fonts.default_size = "11pt"
diff --git a/dotfiles/.config/rofi/config.rasi b/dotfiles/.config/rofi/config.rasi
index 33fce35..b4e5827 100644
--- a/dotfiles/.config/rofi/config.rasi
+++ b/dotfiles/.config/rofi/config.rasi
@@ -17,7 +17,7 @@ configuration {
/* icon-theme: ;*/
/* drun-match-fields: "name,generic,exec,categories,keywords";*/
/* drun-categories: ;*/
-/* drun-show-actions: false;*/
+ drun-show-actions: true;
/* drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>]";*/
/* drun-url-launcher: "xdg-open";*/
/* disable-history: false;*/
diff --git a/dotfiles/.config/swaylock/config b/dotfiles/.config/swaylock/config
index bb4dec0..19576ae 100644
--- a/dotfiles/.config/swaylock/config
+++ b/dotfiles/.config/swaylock/config
@@ -3,7 +3,7 @@ font=monospace
scaling=fill
indicator-radius=120
show-failed-attempts
-inside-color=#000000bb
+inside-color=#00000033
inside-ver-color=#3f6e90
inside-wrong-color=#b73030
inside-clear-color=#a1a6b2cc
@@ -27,6 +27,6 @@ clock
indicator
image=~/.config/wall1.png
datestr=%a, %F
-effect-blur=10x5
+#effect-blur=10x5
show-keyboard-layout
-layout-bg-color=#000000bb
+layout-bg-color=#00000033
diff --git a/dotfiles/.config/waybar/config b/dotfiles/.config/waybar/config
index f3a71da..403da07 100644
--- a/dotfiles/.config/waybar/config
+++ b/dotfiles/.config/waybar/config
@@ -1,224 +1,28 @@
// vim: filetype=json
-{
+[{
"layer": "top",
- "height": 32,
+ "height": 34,
+ "include": [ "~/.config/waybar/modules.json" ],
"modules-left": [
- "sway/workspaces",
+ "clock",
"niri/workspaces",
- "sway/mode",
- "custom/waybar-mpris",
- "pulseaudio"
+ "mpris",
+ "wireplumber"
],
"modules-center": [
- "clock",
- "custom/weather"
],
"modules-right": [
- "custom/rec-status",
- "custom/swaykbd",
+ "custom/weather",
"custom/mail-status",
+ "cpu",
"memory",
"backlight",
"battery#bat0",
"battery#bat1",
"custom/batwatt",
+ "custom/torrent-status",
"network",
"niri/language",
- "custom/torrent-status",
- "tray"
- ],
- "sway/mode": {
- "format": "<span style=\"italic\">{}</span>"
- },
- "custom/waybar-mpris": {
- "return-type": "json",
- "exec": "waybar-mpris --autofocus --text-format=\"%i [%p] %a - %t\" --tooltip-format=\"%t by %a from %A\n%p/%d\n(%P)\" --pause='<span color=\"#5b8277\">๏‹</span>' --play='๏Œ' --max-title 30",
- "on-click": "lmc toggle",
- "on-click-right": "lmc next"
- },
- "mpd": {
- "format": " {stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon} [{elapsedTime:%M:%S}] {artist} - {title}",
- "format-disconnected": " Connection lost ",
- "format-stopped": " ๏ {consumeIcon}{randomIcon}{repeatIcon}{singleIcon} [--:--] -- - --",
- "unknown-tag": "N/A",
- "interval": 2,
- "max-length": 60,
- "consume-icons": {
- "on": "๏ƒ„ "
- },
- "random-icons": {
- "on": "๏ด"
- },
- "repeat-icons": {
- "on": "๏€ž "
- },
- "single-icons": {
- "on": "[s]"
- },
- "state-icons": {
- "paused": "<span color=\"#b2872f\">๏Œ</span>",
- "playing": "<span color=\"#5b8277\">๏‹</span>"
- },
- "tooltip-format": "MPD now playing: {artist} - {title}",
- "tooltip-format-disconnected": "MPD disconnected"
- },
- "idle_inhibitor": {
- "format": "{icon}",
- "format-icons": {
- "activated": "๏ฎ",
- "deactivated": "๏ฐ"
- }
- },
- "tray": {
- "icon-size": 16,
- "spacing": 10
- },
- "clock": {
- "format": "{:%Yๅนด%mๆœˆ%dๆ—ฅ %H:%M:%S}",
- "tooltip-format": "{calendar}",
- "calendar": {
- "mode": "year",
- "mode-mon-col": 3
- },
- "interval": 1
- },
- "cpu": {
- "format": "{usage}% ๏‹›",
- "tooltip": false
- },
- "memory": {
- "format": "<span color=\"#5b8277\">๏ƒ‰</span> {used:0.3f}G",
- "states": {
- "warning": 90
- },
- "interval": 10
- },
- "temperature": {
- // "thermal-zone": 2,
- // "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input",
- "critical-threshold": 80,
- // "format-critical": "{temperatureC}ยฐC {icon}",
- "format": "{temperatureC}ยฐC {icon}",
- "format-icons": ["๏ซ", "๏‹‰", "๏ฉ"]
- },
- "backlight": {
- // "device": "acpi_video1",
- "format": "<span color=\"#5b8277\">{icon}</span> {percent}%",
- "format-icons": ["๏’ช", "๏†…"]
- },
- "battery#bat0": {
- "bat": "BAT0",
- "format": "{icon} {capacity}%",
- "format-charging": " <span color=\"#5b8277\">๏‡ฆ</span> {capacity}%",
- "format-plugged": "<span color=\"#5b8277\">๏‡ฆ</span> {capacity}%",
- "format-icons": [
- "<span color=\"#b73030\">๏‰„</span>",
- "<span color=\"#b2872f\">๏‰ƒ</span>",
- "<span color=\"#5b8277\">๏‰‚</span>",
- "<span color=\"#5b8277\">๏‰</span>",
- "<span color=\"#5b8277\">๏‰€</span>"
- ]
- },
- "battery#bat1": {
- "bat": "BAT1",
- "format": "{icon} {capacity}%",
- "format-charging": " <span color=\"#5b8277\">๏‡ฆ</span> {capacity}%",
- "format-plugged": "<span color=\"#5b8277\">๏‡ฆ</span> {capacity}%",
- "format-icons": [
- "<span color=\"#b73030\">๏‰„</span>",
- "<span color=\"#b2872f\">๏‰ƒ</span>",
- "<span color=\"#5b8277\">๏‰‚</span>",
- "<span color=\"#5b8277\">๏‰</span>",
- "<span color=\"#5b8277\">๏‰€</span>"
- ]
- },
- "network": {
- // "interface": "wlp2*", // (Optional) To force the use of this interface
- "format-wifi": "<span color=\"#5b8277\">๏‡ซ</span> {essid}",
- "format-ethernet": "<span color=\"#5b8277\">๏ƒจ</span> {ifname}",
- "format-linked": "<span color=\"#5b8277\">๏ƒจ</span> {ifname}",
- "format-disconnected": "๎ซ disconnected",
- "format-alt": "{ifname}: {ipaddr}/{cidr}",
- "tooltip-format": "{ifname}: {ipaddr}/{cidr}"
- },
- "pulseaudio": {
- "scroll-step": 2, // %, can be a float
- "format": "<span color=\"#5b8277\">{icon}</span> {volume}%",
- "format-bluetooth": "<span color=\"#5b8277\">{icon}๏Š”</span> {volume}% {format_source}",
- "format-muted": "<span color=\"#b2872f\">๏€ฆ</span>",
- "format-source": "{volume}% ๏„ฐ",
- "format-source-muted": "๏„ฑ",
- "format-icons": {
- "headphone": "๏€ฅ",
- "handsfree": "๏–",
- "headset": "๏–",
- "phone": "๏‚•",
- "portable": "๏‚•",
- "car": "๏†น",
- "default": ["๏€ฆ", "๏€ง", "๏€จ"]
- },
- "on-click": "$TERMINAL -e ncpamixer"
- },
- "custom/rec-status": {
- "format": "<span color=\"#5b8277\">{}</span>",
- "signal": 5,
- "interval": "once",
- "exec": "barrecstatus"
- },
- "custom/torrent-status": {
- "format": "<span color=\"#5b8277\">{}</span>",
- "signal": 10,
- "interval": "once",
- "exec": "bartorrentstatus"
- },
- "custom/mail-status": {
- "format": "<span color=\"#5b8277\">๐Ÿ“ง</span> {}",
- "signal": 9,
- "interval": "once",
- "exec": "barmailstatus",
- "tooltip": false
- },
- "custom/pac-status": {
- "format": "<span color=\"#5b8277\">๏†‡</span> {}",
- "signal": 7,
- "interval": "once",
- "exec": "barpacstatus"
- },
- "custom/news-status": {
- "format": "<span color=\"#5b8277\">๏‡ช</span> {}",
- "signal": 8,
- "interval": "once",
- "exec": "barnewsstatus",
- "tooltip": false
- },
- "custom/weather": {
- "format": "{}",
- "interval": 180,
- "exec": "barweather"
- },
- "custom/ds4battery": {
- "format": "๐ŸŽฎ {}",
- "interval": 180,
- "exec": "bards4battery"
- },
- "custom/batwatt": {
- "return-type": "json",
- "interval": 10,
- "exec-if": "test -e /sys/class/power_supply/BAT0",
- "exec": "barbatwatt",
- "exec-on-event": true,
- "on-click": ""
- },
- "custom/swaykbd": {
- "format": "{}",
- "exec": "swaykbd",
- "tooltip": false
- },
- "niri/language": {
- "on-click": "niri msg action switch-layout next",
- "on-click-right": "niri msg action switch-layout prev",
- "format-en": " ๐Ÿ‡บ๐Ÿ‡ธ EN ",
- "format-es": " ๐Ÿ‡ฒ๐Ÿ‡ฝ ES ",
- "format-ru": " ๐Ÿ‡ท๐Ÿ‡บ RU "
- }
-}
+ "tray",
+ ]
+}]
diff --git a/dotfiles/.config/waybar/modules.json b/dotfiles/.config/waybar/modules.json
new file mode 100644
index 0000000..7f0f591
--- /dev/null
+++ b/dotfiles/.config/waybar/modules.json
@@ -0,0 +1,181 @@
+{
+ "sway/mode": {
+ "format": "<span style=\"italic\">{}</span>"
+ },
+ "mpris": {
+ "format": "{status_icon} {artist} - {title}",
+ "format-stopped": "{status_icon} - ",
+ "status-icons": {
+ "stopped": "<span color=\"#d6cda3\">๏</span>",
+ "paused": "<span color=\"#d6cda3\">๏Œ</span>",
+ "playing": "<span color=\"#5b8277\">๏‹</span>"
+ },
+ "artist-len": 20,
+ "title-len": 30
+ },
+ "tray": {
+ "icon-size": 16,
+ "spacing": 10
+ },
+ "clock": {
+ "locale": "ja_JP.UTF-8",
+ "format": "<span font='Sarasa Mono J' weight='600'>{:L%Yๅนด%mๆœˆ%dๆ—ฅ๏ผˆ%a๏ผ‰%H:%M:%S}</span>",
+ "format-alt": "<span font='Sarasa Mono J' weight='600'>{:%H:%M:%S}</span>",
+ "tooltip-format": "<span font='Sarasa Mono J'>{calendar}</span>",
+ "calendar": {
+ "mode": "month",
+ "on-scroll": 1,
+ "format": {
+ "months": "<span size='13pt' weight='600'>{}</span>",
+ "weekdays": "{}",
+ "today": "<span color=\"#b73030\"><b>{}</b></span>"
+ }
+ },
+ "actions": {
+ "on-scroll-up": "shift_up",
+ "on-scroll-down": "shift_down"
+ },
+ "interval": 1
+ },
+ "cpu": {
+ "format": "<span color=\"#d6cda3\">๏‹›</span> {usage}%",
+ "interval": 3
+ },
+ "memory": {
+ "format": "<span color=\"#d6cda3\">๎ฟ…</span> {used:0.3f}G",
+ "states": {
+ "warning": 90
+ },
+ "interval": 10
+ },
+ "temperature": {
+ // "thermal-zone": 2,
+ // "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input",
+ "critical-threshold": 80,
+ // "format-critical": "{temperatureC}ยฐC {icon}",
+ "format": "{temperatureC}ยฐC {icon}",
+ "format-icons": ["๏ซ", "๏‹‰", "๏ฉ"]
+ },
+ "backlight": {
+ // "device": "acpi_video1",
+ "format": "<span color=\"#d6cda3\">{icon}</span> {percent}%",
+ "format-icons": ["๏’ช", "๏†…"]
+ },
+ "battery#bat0": {
+ "bat": "BAT0",
+ "format": "{icon} {capacity}%",
+ "format-charging": "<span color=\"#5b8277\">๏‡ฆ</span> {capacity}%",
+ "format-plugged": "<span color=\"#5b8277\">๏‡ฆ</span> {capacity}%",
+ "format-icons": [
+ "<span color=\"#b73030\">๏‰„</span>",
+ "<span color=\"#b2872f\">๏‰ƒ</span>",
+ "<span color=\"#5b8277\">๏‰‚</span>",
+ "<span color=\"#5b8277\">๏‰</span>",
+ "<span color=\"#5b8277\">๏‰€</span>"
+ ]
+ },
+ "battery#bat1": {
+ "bat": "BAT1",
+ "format": "{icon} {capacity}%",
+ "format-charging": "<span color=\"#5b8277\">๏‡ฆ</span> {capacity}%",
+ "format-plugged": "<span color=\"#5b8277\">๏‡ฆ</span> {capacity}%",
+ "format-icons": [
+ "<span color=\"#b73030\">๏‰„</span>",
+ "<span color=\"#b2872f\">๏‰ƒ</span>",
+ "<span color=\"#5b8277\">๏‰‚</span>",
+ "<span color=\"#5b8277\">๏‰</span>",
+ "<span color=\"#5b8277\">๏‰€</span>"
+ ]
+ },
+ "network": {
+ // "interface": "wlp2*", // (Optional) To force the use of this interface
+ "format-wifi": "<span color=\"#5b8277\">๏‡ซ</span>",
+ "format-ethernet": "<span color=\"#5b8277\">๓ฐŒ˜</span>",
+ "format-linked": "<span color=\"#b2872f\">๓ฐฒŠ</span>",
+ "format-disconnected": "<span color=\"#b2872f\">๓ฐŒ™</span>",
+ "format-disabled": "<span color=\"#b73030\">๓ฐŒ™</span>",
+ "format-alt": "<span color=\"#d6cda3\">๓ฐŒ˜</span> {ifname}: {bandwidthUpBits}<span color=\"#d6cda3\">๎ชก</span> {bandwidthDownBits}<span color=\"#d6cda3\">๎ชš</span>",
+ "tooltip-format": "{ifname}: {essid} {ipaddr}/{cidr} {bandwidthUpBits}<span color=\"#d6cda3\">๎ชก</span> {bandwidthDownBits}<span color=\"#d6cda3\">๎ชš</span>",
+ "interval": 3
+ },
+ "wireplumber": {
+ "scroll-step": 2, // %, can be a float
+ "format": "<span color=\"#5b8277\">{icon}</span> {volume}%",
+ "format-bluetooth": "<span color=\"#5b8277\">{icon}๏Š”</span> {volume}% {format_source}",
+ "format-muted": "<span color=\"#b2872f\">๏€ฆ</span>",
+ "format-source": "{volume}% ๏„ฐ",
+ "format-source-muted": "๏„ฑ",
+ "format-icons": {
+ "headphone": "๏€ฅ",
+ "handsfree": "๏–",
+ "headset": "๏–",
+ "phone": "๏‚•",
+ "portable": "๏‚•",
+ "car": "๏†น",
+ "default": ["๏€ฆ", "๏€ง", "๏€จ"]
+ },
+ "on-click": "$TERMINAL -e ncpamixer"
+ },
+ "custom/rec-status": {
+ "format": "<span color=\"#5b8277\">{}</span>",
+ "signal": 5,
+ "interval": "once",
+ "exec": "barrecstatus"
+ },
+ "custom/torrent-status": {
+ "format": "<span color=\"#d6cda3\">{}</span>",
+ "signal": 10,
+ "interval": "once",
+ "exec": "bartorrentstatus"
+ },
+ "custom/mail-status": {
+ "format": "<span color=\"#d6cda3\">๓ฐบป </span>{}",
+ "signal": 9,
+ "interval": "once",
+ "exec": "barmailstatus",
+ "tooltip": false
+ },
+ "custom/pac-status": {
+ "format": "๏†‡ {}",
+ "signal": 7,
+ "interval": "once",
+ "exec": "barpacstatus"
+ },
+ "custom/news-status": {
+ "format": "๏‡ช {}",
+ "signal": 8,
+ "interval": "once",
+ "exec": "barnewsstatus",
+ "tooltip": false
+ },
+ "custom/weather": {
+ "format": "{}",
+ "interval": 180,
+ "exec": "barweather"
+ },
+ "custom/ds4battery": {
+ "format": "๐ŸŽฎ {}",
+ "interval": 180,
+ "exec": "bards4battery"
+ },
+ "custom/batwatt": {
+ "return-type": "json",
+ "interval": 10,
+ "exec-if": "test -e /sys/class/power_supply/BAT0",
+ "exec": "barbatwatt",
+ "exec-on-event": true,
+ "on-click": ""
+ },
+ "custom/swaykbd": {
+ "format": "{}",
+ "exec": "swaykbd",
+ "tooltip": false
+ },
+ "niri/language": {
+ "on-click": "niri msg action switch-layout next",
+ "on-click-right": "niri msg action switch-layout prev",
+ "format-en": " ๐Ÿ‡บ๐Ÿ‡ธ",
+ "format-es": " ๐Ÿ‡ฒ๐Ÿ‡ฝ",
+ "format-ru": " ๐Ÿ‡ท๐Ÿ‡บ"
+ }
+}
diff --git a/dotfiles/.config/waybar/style.css b/dotfiles/.config/waybar/style.css
index a8026f1..7f8c7ba 100644
--- a/dotfiles/.config/waybar/style.css
+++ b/dotfiles/.config/waybar/style.css
@@ -1,67 +1,28 @@
* {
- font-size: 13px;
+ font-size: 14px;
font-family: monospace;
}
window#waybar {
- background: #000000;
- /* background: linear-gradient(#000000, #151515); */
- color: #f2eccf;
+ background: #1e1c1a;
+ color: #fcf8e2;
min-height: 0;
- border-bottom: 2px solid #33333a;
-}
-#tray,
-#language,
-#custom-torrent-status,
-#workspaces {
- background: #151517;
- margin: 3px 0 3px 0;
- border-style: solid;
- border-color: #33333a;
+ border: 2px solid #33333a;
}
#memory.warning {
color: #b2872f;
}
-#tray{
- border-width: 2px 2px 2px 0;
-}
-#custom-torrent-status{
- border-width: 2px 0 2px 0;
-}
-#language {
- border-width: 2px 0 2px 2px;
-}
-#workspaces {
- padding: 0;
- margin-right: 6px;
- border-width: 2px;
-}
-#workspaces button {
- padding: 0 0.6em;
- color: #fcf8e2;
- border-radius: 0;
- border: 1px solid rgba(0, 0, 0, 0);
-}
-#workspaces button.visible {
- color: #7fac96;
- border-color: #7fac96;
-}
-#workspaces button.focused {
- color: #000000;
- border-color: #7fac96;
- background: linear-gradient(60deg, #5b8277, #99d0b5);
-}
-#workspaces button:hover {
- border: 1px solid #5b8277;
-}
+#cpu,
#mpd,
#tray,
-#clock,
+#mpris,
#memory,
#battery,
#network,
+#language,
#backlight,
-#pulseaudio,
+#workspaces,
#temperature,
+#wireplumber,
#custom-weather,
#custom-swaykbd,
#custom-ds4battery,
@@ -69,12 +30,41 @@ window#waybar {
#custom-pac-status,
#custom-mail-status,
#custom-news-status,
-#custom-waybar-mpris,
#custom-batwatt,
#custom-torrent-status {
color: #fcf8e2;
- padding: 0 6px;
+ padding: 0 0.4em;
+ margin: 2px;
+}
+#clock {
+ font-weight: 500;
+ color: #d6cda3;
+ background: #0d0906;
+ border: 2px inset #1e1e23;
+ margin: 4px 2px 4px 4px;
+ padding: 0 0.4em;
}
-#custom-weather {
- color: #5b8277;
+#workspaces {
+ padding: 0;
+ margin: 6px;
+ background: #4a4842;
+}
+#workspaces button {
+ padding: 0 0.5em;
+ color: #fcf8e2;
+ border-radius: 0;
+ border: 2px solid #1e1e23;
+}
+#workspaces button.visible,
+#workspaces button.active {
+ color: #7fac96;
+ border-color: #7fac96;
+}
+#workspaces button.focused {
+ color: #000000;
+ border-color: #7fac96;
+ background: linear-gradient(60deg, #5b8277, #99d0b5);
+}
+#workspaces button:hover {
+ border-color: #5b8277;
}
diff --git a/dotfiles/.local/bin/barweather b/dotfiles/.local/bin/barweather
index 3fc7f42..a608b80 100755
--- a/dotfiles/.local/bin/barweather
+++ b/dotfiles/.local/bin/barweather
@@ -12,7 +12,7 @@ update_forecast() {
forecast=$(curl -s wttr.in/"$location"?format=1)
if [ ${#forecast} -lt 30 ]; then
- printf "%s\n" "$forecast" > "$cachefile"
+ printf "%s\n" "$forecast" | sed -e 's/ / /g' > "$cachefile"
fi
}
diff --git a/dotfiles/.local/bin/mailsync b/dotfiles/.local/bin/mailsync
index d67db06..7c644f6 100755
--- a/dotfiles/.local/bin/mailsync
+++ b/dotfiles/.local/bin/mailsync
@@ -39,7 +39,7 @@ do
done
if [ $thereis = 1 ]; then
- mpv --really-quiet "$HOME/.local/share/soundalerts/mail.ogg"
+ mpv --keep-open=no --really-quiet "$HOME/.local/share/soundalerts/mail.ogg"
killall -43 waybar
fi
diff --git a/dotfiles/.local/bin/menumako b/dotfiles/.local/bin/menumako
index 628a93a..96c564b 100755
--- a/dotfiles/.local/bin/menumako
+++ b/dotfiles/.local/bin/menumako
@@ -1,3 +1,3 @@
#!/bin/sh
-makoctl menu rofi -dmenu -p "What to do?"
+makoctl menu -- rofi -dmenu -p "What to do?"
diff --git a/dotfiles/.local/bin/setbg b/dotfiles/.local/bin/setbg
index 2e6dfba..bc8b8a2 100755
--- a/dotfiles/.local/bin/setbg
+++ b/dotfiles/.local/bin/setbg
@@ -10,6 +10,7 @@ cp "$1" "$dest"
if [ -n "$SWAYSOCK" ]; then
updisplay
elif [ -n "$NIRI_SOCKET" ]; then
+ niri msg action do-screen-transition -d 200
killall swaybg
setsid swaybg -i "$dest" -m fill&
fi
diff --git a/dotfiles/.local/bin/sshwiz b/dotfiles/.local/bin/sshwiz
new file mode 100755
index 0000000..ba71b08
--- /dev/null
+++ b/dotfiles/.local/bin/sshwiz
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+# SSH "wizard" script. Copies the public key and installs terminfo for first
+# time use of a host.
+
+if [ -z "$1" ]; then
+ echo "usage: sshwiz <destination>"
+ exit 1
+fi
+
+target=$1
+
+ssh-copy-id $target
+echo "installing terminfo..."
+infocmp $TERM > /tmp/$TERM.terminfo
+rsync /tmp/$TERM.terminfo ${target}:
+ssh $target "tic -x $TERM.terminfo"
+echo "done"
diff --git a/dotfiles/.local/share/oculante/config.json b/dotfiles/.local/share/oculante/config.json
new file mode 100644
index 0000000..87bc4ca
--- /dev/null
+++ b/dotfiles/.local/share/oculante/config.json
@@ -0,0 +1,154 @@
+{
+ "accent_color": [
+ 137,
+ 182,
+ 160
+ ],
+ "background_color": [
+ 0,
+ 0,
+ 0
+ ],
+ "vsync": true,
+ "force_redraw": false,
+ "shortcuts": {
+ "AlwaysOnTop": [
+ "T"
+ ],
+ "Fullscreen": [
+ "F"
+ ],
+ "InfoMode": [
+ "I"
+ ],
+ "EditMode": [
+ "E"
+ ],
+ "NextImage": [
+ "N"
+ ],
+ "FirstImage": [
+ "Home"
+ ],
+ "LastImage": [
+ "End"
+ ],
+ "PreviousImage": [
+ "P"
+ ],
+ "RedChannel": [
+ "R"
+ ],
+ "GreenChannel": [
+ "G"
+ ],
+ "BlueChannel": [
+ "B"
+ ],
+ "AlphaChannel": [
+ "A"
+ ],
+ "RGBChannel": [
+ "U"
+ ],
+ "RGBAChannel": [
+ "C"
+ ],
+ "ResetView": [
+ "V"
+ ],
+ "ZoomOut": [
+ "Minus"
+ ],
+ "ZoomIn": [
+ "Equals"
+ ],
+ "ZoomActualSize": [
+ "Key1"
+ ],
+ "ZoomDouble": [
+ "Key2"
+ ],
+ "ZoomThree": [
+ "Key3"
+ ],
+ "ZoomFour": [
+ "Key4"
+ ],
+ "ZoomFive": [
+ "Key5"
+ ],
+ "CompareNext": [
+ "C",
+ "LShift"
+ ],
+ "PanLeft": [
+ "L"
+ ],
+ "PanRight": [
+ "H"
+ ],
+ "PanUp": [
+ "J"
+ ],
+ "PanDown": [
+ "K"
+ ],
+ "DeleteFile": [
+ "Delete"
+ ],
+ "ClearImage": [
+ "Delete",
+ "LShift"
+ ],
+ "LosslessRotateRight": [
+ "RBracket"
+ ],
+ "LosslessRotateLeft": [
+ "LBracket"
+ ],
+ "Copy": [
+ "C",
+ "LControl"
+ ],
+ "Paste": [
+ "LControl",
+ "V"
+ ],
+ "Browse": [
+ "LControl",
+ "O"
+ ],
+ "Quit": [
+ "Q"
+ ],
+ "ZenMode": [
+ "Z"
+ ]
+ },
+ "keep_view": true,
+ "max_cache": 30,
+ "show_scrub_bar": true,
+ "wrap_folder": true,
+ "keep_edits": false,
+ "title_format": "{APP} | {VERSION} | {FULLPATH}",
+ "info_enabled": true,
+ "edit_enabled": false,
+ "show_checker_background": false,
+ "show_minimap": false,
+ "show_frame": false,
+ "svg_scale": 1.0,
+ "zen_mode": false,
+ "theme": "System",
+ "linear_mag_filter": false,
+ "linear_min_filter": true,
+ "use_mipmaps": true,
+ "fit_image_on_window_resize": true,
+ "zoom_multiplier": 1.0,
+ "borderless": false,
+ "min_window_size": [
+ 100,
+ 100
+ ],
+ "experimental_features": false
+} \ No newline at end of file
diff --git a/dotfiles/.local/share/script-data/emoji b/dotfiles/.local/share/script-data/emoji
index 42fc271..d3db56e 100644
--- a/dotfiles/.local/share/script-data/emoji
+++ b/dotfiles/.local/share/script-data/emoji
@@ -1628,6 +1628,2054 @@
๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ flag: England
๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ flag: Scotland
๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ flag: Wales
+โ˜๐Ÿป index pointing up: white skin
+โ˜๐Ÿผ index pointing up: tan skin
+โ˜๐Ÿฝ index pointing up: olive skin
+โ˜๐Ÿพ index pointing up: brown skin
+โ˜๐Ÿฟ index pointing up: black skin
+โ›น๐Ÿป person bouncing ball: white skin
+โ›น๐Ÿผ person bouncing ball: tan skin
+โ›น๐Ÿฝ person bouncing ball: olive skin
+โ›น๐Ÿพ person bouncing ball: brown skin
+โ›น๐Ÿฟ person bouncing ball: black skin
+โœŠ๐Ÿป raised fist: white skin
+โœŠ๐Ÿผ raised fist: tan skin
+โœŠ๐Ÿฝ raised fist: olive skin
+โœŠ๐Ÿพ raised fist: brown skin
+โœŠ๐Ÿฟ raised fist: black skin
+โœ‹๐Ÿป raised hand: white skin
+โœ‹๐Ÿผ raised hand: tan skin
+โœ‹๐Ÿฝ raised hand: olive skin
+โœ‹๐Ÿพ raised hand: brown skin
+โœ‹๐Ÿฟ raised hand: black skin
+โœŒ๐Ÿป victory hand: white skin
+โœŒ๐Ÿผ victory hand: tan skin
+โœŒ๐Ÿฝ victory hand: olive skin
+โœŒ๐Ÿพ victory hand: brown skin
+โœŒ๐Ÿฟ victory hand: black skin
+โœ๐Ÿป writing hand: white skin
+โœ๐Ÿผ writing hand: tan skin
+โœ๐Ÿฝ writing hand: olive skin
+โœ๐Ÿพ writing hand: brown skin
+โœ๐Ÿฟ writing hand: black skin
+๐ŸŽ…๐Ÿป Santa Claus: white skin
+๐ŸŽ…๐Ÿผ Santa Claus: tan skin
+๐ŸŽ…๐Ÿฝ Santa Claus: olive skin
+๐ŸŽ…๐Ÿพ Santa Claus: brown skin
+๐ŸŽ…๐Ÿฟ Santa Claus: black skin
+๐Ÿ‚๐Ÿป snowboarder: white skin
+๐Ÿ‚๐Ÿผ snowboarder: tan skin
+๐Ÿ‚๐Ÿฝ snowboarder: olive skin
+๐Ÿ‚๐Ÿพ snowboarder: brown skin
+๐Ÿ‚๐Ÿฟ snowboarder: black skin
+๐Ÿƒ๐Ÿป person running: white skin
+๐Ÿƒ๐Ÿผ person running: tan skin
+๐Ÿƒ๐Ÿฝ person running: olive skin
+๐Ÿƒ๐Ÿพ person running: brown skin
+๐Ÿƒ๐Ÿฟ person running: black skin
+๐Ÿ„๐Ÿป person surfing: white skin
+๐Ÿ„๐Ÿผ person surfing: tan skin
+๐Ÿ„๐Ÿฝ person surfing: olive skin
+๐Ÿ„๐Ÿพ person surfing: brown skin
+๐Ÿ„๐Ÿฟ person surfing: black skin
+๐Ÿ‡๐Ÿป horse racing: white skin
+๐Ÿ‡๐Ÿผ horse racing: tan skin
+๐Ÿ‡๐Ÿฝ horse racing: olive skin
+๐Ÿ‡๐Ÿพ horse racing: brown skin
+๐Ÿ‡๐Ÿฟ horse racing: black skin
+๐ŸŠ๐Ÿป person swimming: white skin
+๐ŸŠ๐Ÿผ person swimming: tan skin
+๐ŸŠ๐Ÿฝ person swimming: olive skin
+๐ŸŠ๐Ÿพ person swimming: brown skin
+๐ŸŠ๐Ÿฟ person swimming: black skin
+๐Ÿ‹๐Ÿป person lifting weights: white skin
+๐Ÿ‹๐Ÿผ person lifting weights: tan skin
+๐Ÿ‹๐Ÿฝ person lifting weights: olive skin
+๐Ÿ‹๐Ÿพ person lifting weights: brown skin
+๐Ÿ‹๐Ÿฟ person lifting weights: black skin
+๐ŸŒ๐Ÿป person golfing: white skin
+๐ŸŒ๐Ÿผ person golfing: tan skin
+๐ŸŒ๐Ÿฝ person golfing: olive skin
+๐ŸŒ๐Ÿพ person golfing: brown skin
+๐ŸŒ๐Ÿฟ person golfing: black skin
+๐Ÿ‘‚๐Ÿป ear: white skin
+๐Ÿ‘‚๐Ÿผ ear: tan skin
+๐Ÿ‘‚๐Ÿฝ ear: olive skin
+๐Ÿ‘‚๐Ÿพ ear: brown skin
+๐Ÿ‘‚๐Ÿฟ ear: black skin
+๐Ÿ‘ƒ๐Ÿป nose: white skin
+๐Ÿ‘ƒ๐Ÿผ nose: tan skin
+๐Ÿ‘ƒ๐Ÿฝ nose: olive skin
+๐Ÿ‘ƒ๐Ÿพ nose: brown skin
+๐Ÿ‘ƒ๐Ÿฟ nose: black skin
+๐Ÿ‘†๐Ÿป backhand index pointing up: white skin
+๐Ÿ‘†๐Ÿผ backhand index pointing up: tan skin
+๐Ÿ‘†๐Ÿฝ backhand index pointing up: olive skin
+๐Ÿ‘†๐Ÿพ backhand index pointing up: brown skin
+๐Ÿ‘†๐Ÿฟ backhand index pointing up: black skin
+๐Ÿ‘‡๐Ÿป backhand index pointing down: white skin
+๐Ÿ‘‡๐Ÿผ backhand index pointing down: tan skin
+๐Ÿ‘‡๐Ÿฝ backhand index pointing down: olive skin
+๐Ÿ‘‡๐Ÿพ backhand index pointing down: brown skin
+๐Ÿ‘‡๐Ÿฟ backhand index pointing down: black skin
+๐Ÿ‘ˆ๐Ÿป backhand index pointing left: white skin
+๐Ÿ‘ˆ๐Ÿผ backhand index pointing left: tan skin
+๐Ÿ‘ˆ๐Ÿฝ backhand index pointing left: olive skin
+๐Ÿ‘ˆ๐Ÿพ backhand index pointing left: brown skin
+๐Ÿ‘ˆ๐Ÿฟ backhand index pointing left: black skin
+๐Ÿ‘‰๐Ÿป backhand index pointing right: white skin
+๐Ÿ‘‰๐Ÿผ backhand index pointing right: tan skin
+๐Ÿ‘‰๐Ÿฝ backhand index pointing right: olive skin
+๐Ÿ‘‰๐Ÿพ backhand index pointing right: brown skin
+๐Ÿ‘‰๐Ÿฟ backhand index pointing right: black skin
+๐Ÿ‘Š๐Ÿป oncoming fist: white skin
+๐Ÿ‘Š๐Ÿผ oncoming fist: tan skin
+๐Ÿ‘Š๐Ÿฝ oncoming fist: olive skin
+๐Ÿ‘Š๐Ÿพ oncoming fist: brown skin
+๐Ÿ‘Š๐Ÿฟ oncoming fist: black skin
+๐Ÿ‘‹๐Ÿป waving hand: white skin
+๐Ÿ‘‹๐Ÿผ waving hand: tan skin
+๐Ÿ‘‹๐Ÿฝ waving hand: olive skin
+๐Ÿ‘‹๐Ÿพ waving hand: brown skin
+๐Ÿ‘‹๐Ÿฟ waving hand: black skin
+๐Ÿ‘Œ๐Ÿป OK hand: white skin
+๐Ÿ‘Œ๐Ÿผ OK hand: tan skin
+๐Ÿ‘Œ๐Ÿฝ OK hand: olive skin
+๐Ÿ‘Œ๐Ÿพ OK hand: brown skin
+๐Ÿ‘Œ๐Ÿฟ OK hand: black skin
+๐Ÿ‘๐Ÿป thumbs up: white skin
+๐Ÿ‘๐Ÿผ thumbs up: tan skin
+๐Ÿ‘๐Ÿฝ thumbs up: olive skin
+๐Ÿ‘๐Ÿพ thumbs up: brown skin
+๐Ÿ‘๐Ÿฟ thumbs up: black skin
+๐Ÿ‘Ž๐Ÿป thumbs down: white skin
+๐Ÿ‘Ž๐Ÿผ thumbs down: tan skin
+๐Ÿ‘Ž๐Ÿฝ thumbs down: olive skin
+๐Ÿ‘Ž๐Ÿพ thumbs down: brown skin
+๐Ÿ‘Ž๐Ÿฟ thumbs down: black skin
+๐Ÿ‘๐Ÿป clapping hands: white skin
+๐Ÿ‘๐Ÿผ clapping hands: tan skin
+๐Ÿ‘๐Ÿฝ clapping hands: olive skin
+๐Ÿ‘๐Ÿพ clapping hands: brown skin
+๐Ÿ‘๐Ÿฟ clapping hands: black skin
+๐Ÿ‘๐Ÿป open hands: white skin
+๐Ÿ‘๐Ÿผ open hands: tan skin
+๐Ÿ‘๐Ÿฝ open hands: olive skin
+๐Ÿ‘๐Ÿพ open hands: brown skin
+๐Ÿ‘๐Ÿฟ open hands: black skin
+๐Ÿ‘ฆ๐Ÿป boy: white skin
+๐Ÿ‘ฆ๐Ÿผ boy: tan skin
+๐Ÿ‘ฆ๐Ÿฝ boy: olive skin
+๐Ÿ‘ฆ๐Ÿพ boy: brown skin
+๐Ÿ‘ฆ๐Ÿฟ boy: black skin
+๐Ÿ‘ง๐Ÿป girl: white skin
+๐Ÿ‘ง๐Ÿผ girl: tan skin
+๐Ÿ‘ง๐Ÿฝ girl: olive skin
+๐Ÿ‘ง๐Ÿพ girl: brown skin
+๐Ÿ‘ง๐Ÿฟ girl: black skin
+๐Ÿ‘จ๐Ÿป man: white skin
+๐Ÿ‘จ๐Ÿผ man: tan skin
+๐Ÿ‘จ๐Ÿฝ man: olive skin
+๐Ÿ‘จ๐Ÿพ man: brown skin
+๐Ÿ‘จ๐Ÿฟ man: black skin
+๐Ÿ‘ฉ๐Ÿป woman: white skin
+๐Ÿ‘ฉ๐Ÿผ woman: tan skin
+๐Ÿ‘ฉ๐Ÿฝ woman: olive skin
+๐Ÿ‘ฉ๐Ÿพ woman: brown skin
+๐Ÿ‘ฉ๐Ÿฟ woman: black skin
+๐Ÿ‘ซ๐Ÿป woman and man holding hands: white skin
+๐Ÿ‘ซ๐Ÿผ woman and man holding hands: tan skin
+๐Ÿ‘ซ๐Ÿฝ woman and man holding hands: olive skin
+๐Ÿ‘ซ๐Ÿพ woman and man holding hands: brown skin
+๐Ÿ‘ซ๐Ÿฟ woman and man holding hands: black skin
+๐Ÿ‘ฌ๐Ÿป men holding hands: white skin
+๐Ÿ‘ฌ๐Ÿผ men holding hands: tan skin
+๐Ÿ‘ฌ๐Ÿฝ men holding hands: olive skin
+๐Ÿ‘ฌ๐Ÿพ men holding hands: brown skin
+๐Ÿ‘ฌ๐Ÿฟ men holding hands: black skin
+๐Ÿ‘ญ๐Ÿป women holding hands: white skin
+๐Ÿ‘ญ๐Ÿผ women holding hands: tan skin
+๐Ÿ‘ญ๐Ÿฝ women holding hands: olive skin
+๐Ÿ‘ญ๐Ÿพ women holding hands: brown skin
+๐Ÿ‘ญ๐Ÿฟ women holding hands: black skin
+๐Ÿ‘ฎ๐Ÿป police officer: white skin
+๐Ÿ‘ฎ๐Ÿผ police officer: tan skin
+๐Ÿ‘ฎ๐Ÿฝ police officer: olive skin
+๐Ÿ‘ฎ๐Ÿพ police officer: brown skin
+๐Ÿ‘ฎ๐Ÿฟ police officer: black skin
+๐Ÿ‘ฐ๐Ÿป person with veil: white skin
+๐Ÿ‘ฐ๐Ÿผ person with veil: tan skin
+๐Ÿ‘ฐ๐Ÿฝ person with veil: olive skin
+๐Ÿ‘ฐ๐Ÿพ person with veil: brown skin
+๐Ÿ‘ฐ๐Ÿฟ person with veil: black skin
+๐Ÿ‘ฑ๐Ÿป person: white skin, blond hair
+๐Ÿ‘ฑ๐Ÿผ person: tan skin, blond hair
+๐Ÿ‘ฑ๐Ÿฝ person: olive skin, blond hair
+๐Ÿ‘ฑ๐Ÿพ person: brown skin, blond hair
+๐Ÿ‘ฑ๐Ÿฟ person: black skin, blond hair
+๐Ÿ‘ฒ๐Ÿป person with skullcap: white skin
+๐Ÿ‘ฒ๐Ÿผ person with skullcap: tan skin
+๐Ÿ‘ฒ๐Ÿฝ person with skullcap: olive skin
+๐Ÿ‘ฒ๐Ÿพ person with skullcap: brown skin
+๐Ÿ‘ฒ๐Ÿฟ person with skullcap: black skin
+๐Ÿ‘ณ๐Ÿป person wearing turban: white skin
+๐Ÿ‘ณ๐Ÿผ person wearing turban: tan skin
+๐Ÿ‘ณ๐Ÿฝ person wearing turban: olive skin
+๐Ÿ‘ณ๐Ÿพ person wearing turban: brown skin
+๐Ÿ‘ณ๐Ÿฟ person wearing turban: black skin
+๐Ÿ‘ด๐Ÿป old man: white skin
+๐Ÿ‘ด๐Ÿผ old man: tan skin
+๐Ÿ‘ด๐Ÿฝ old man: olive skin
+๐Ÿ‘ด๐Ÿพ old man: brown skin
+๐Ÿ‘ด๐Ÿฟ old man: black skin
+๐Ÿ‘ต๐Ÿป old woman: white skin
+๐Ÿ‘ต๐Ÿผ old woman: tan skin
+๐Ÿ‘ต๐Ÿฝ old woman: olive skin
+๐Ÿ‘ต๐Ÿพ old woman: brown skin
+๐Ÿ‘ต๐Ÿฟ old woman: black skin
+๐Ÿ‘ถ๐Ÿป baby: white skin
+๐Ÿ‘ถ๐Ÿผ baby: tan skin
+๐Ÿ‘ถ๐Ÿฝ baby: olive skin
+๐Ÿ‘ถ๐Ÿพ baby: brown skin
+๐Ÿ‘ถ๐Ÿฟ baby: black skin
+๐Ÿ‘ท๐Ÿป construction worker: white skin
+๐Ÿ‘ท๐Ÿผ construction worker: tan skin
+๐Ÿ‘ท๐Ÿฝ construction worker: olive skin
+๐Ÿ‘ท๐Ÿพ construction worker: brown skin
+๐Ÿ‘ท๐Ÿฟ construction worker: black skin
+๐Ÿ‘ธ๐Ÿป princess: white skin
+๐Ÿ‘ธ๐Ÿผ princess: tan skin
+๐Ÿ‘ธ๐Ÿฝ princess: olive skin
+๐Ÿ‘ธ๐Ÿพ princess: brown skin
+๐Ÿ‘ธ๐Ÿฟ princess: black skin
+๐Ÿ‘ผ๐Ÿป baby angel: white skin
+๐Ÿ‘ผ๐Ÿผ baby angel: tan skin
+๐Ÿ‘ผ๐Ÿฝ baby angel: olive skin
+๐Ÿ‘ผ๐Ÿพ baby angel: brown skin
+๐Ÿ‘ผ๐Ÿฟ baby angel: black skin
+๐Ÿ’๐Ÿป person tipping hand: white skin
+๐Ÿ’๐Ÿผ person tipping hand: tan skin
+๐Ÿ’๐Ÿฝ person tipping hand: olive skin
+๐Ÿ’๐Ÿพ person tipping hand: brown skin
+๐Ÿ’๐Ÿฟ person tipping hand: black skin
+๐Ÿ’‚๐Ÿป guard: white skin
+๐Ÿ’‚๐Ÿผ guard: tan skin
+๐Ÿ’‚๐Ÿฝ guard: olive skin
+๐Ÿ’‚๐Ÿพ guard: brown skin
+๐Ÿ’‚๐Ÿฟ guard: black skin
+๐Ÿ’ƒ๐Ÿป woman dancing: white skin
+๐Ÿ’ƒ๐Ÿผ woman dancing: tan skin
+๐Ÿ’ƒ๐Ÿฝ woman dancing: olive skin
+๐Ÿ’ƒ๐Ÿพ woman dancing: brown skin
+๐Ÿ’ƒ๐Ÿฟ woman dancing: black skin
+๐Ÿ’…๐Ÿป nail polish: white skin
+๐Ÿ’…๐Ÿผ nail polish: tan skin
+๐Ÿ’…๐Ÿฝ nail polish: olive skin
+๐Ÿ’…๐Ÿพ nail polish: brown skin
+๐Ÿ’…๐Ÿฟ nail polish: black skin
+๐Ÿ’†๐Ÿป person getting massage: white skin
+๐Ÿ’†๐Ÿผ person getting massage: tan skin
+๐Ÿ’†๐Ÿฝ person getting massage: olive skin
+๐Ÿ’†๐Ÿพ person getting massage: brown skin
+๐Ÿ’†๐Ÿฟ person getting massage: black skin
+๐Ÿ’‡๐Ÿป person getting haircut: white skin
+๐Ÿ’‡๐Ÿผ person getting haircut: tan skin
+๐Ÿ’‡๐Ÿฝ person getting haircut: olive skin
+๐Ÿ’‡๐Ÿพ person getting haircut: brown skin
+๐Ÿ’‡๐Ÿฟ person getting haircut: black skin
+๐Ÿ’๐Ÿป kiss: white skin
+๐Ÿ’๐Ÿผ kiss: tan skin
+๐Ÿ’๐Ÿฝ kiss: olive skin
+๐Ÿ’๐Ÿพ kiss: brown skin
+๐Ÿ’๐Ÿฟ kiss: black skin
+๐Ÿ’‘๐Ÿป couple with heart: white skin
+๐Ÿ’‘๐Ÿผ couple with heart: tan skin
+๐Ÿ’‘๐Ÿฝ couple with heart: olive skin
+๐Ÿ’‘๐Ÿพ couple with heart: brown skin
+๐Ÿ’‘๐Ÿฟ couple with heart: black skin
+๐Ÿ’ช๐Ÿป flexed biceps: white skin
+๐Ÿ’ช๐Ÿผ flexed biceps: tan skin
+๐Ÿ’ช๐Ÿฝ flexed biceps: olive skin
+๐Ÿ’ช๐Ÿพ flexed biceps: brown skin
+๐Ÿ’ช๐Ÿฟ flexed biceps: black skin
+๐Ÿ•ด๐Ÿป person in suit levitating: white skin
+๐Ÿ•ด๐Ÿผ person in suit levitating: tan skin
+๐Ÿ•ด๐Ÿฝ person in suit levitating: olive skin
+๐Ÿ•ด๐Ÿพ person in suit levitating: brown skin
+๐Ÿ•ด๐Ÿฟ person in suit levitating: black skin
+๐Ÿ•ต๐Ÿป detective: white skin
+๐Ÿ•ต๐Ÿผ detective: tan skin
+๐Ÿ•ต๐Ÿฝ detective: olive skin
+๐Ÿ•ต๐Ÿพ detective: brown skin
+๐Ÿ•ต๐Ÿฟ detective: black skin
+๐Ÿ•บ๐Ÿป man dancing: white skin
+๐Ÿ•บ๐Ÿผ man dancing: tan skin
+๐Ÿ•บ๐Ÿฝ man dancing: olive skin
+๐Ÿ•บ๐Ÿพ man dancing: brown skin
+๐Ÿ•บ๐Ÿฟ man dancing: black skin
+๐Ÿ–๐Ÿป hand with fingers splayed: white skin
+๐Ÿ–๐Ÿผ hand with fingers splayed: tan skin
+๐Ÿ–๐Ÿฝ hand with fingers splayed: olive skin
+๐Ÿ–๐Ÿพ hand with fingers splayed: brown skin
+๐Ÿ–๐Ÿฟ hand with fingers splayed: black skin
+๐Ÿ–•๐Ÿป middle finger: white skin
+๐Ÿ–•๐Ÿผ middle finger: tan skin
+๐Ÿ–•๐Ÿฝ middle finger: olive skin
+๐Ÿ–•๐Ÿพ middle finger: brown skin
+๐Ÿ–•๐Ÿฟ middle finger: black skin
+๐Ÿ––๐Ÿป vulcan salute: white skin
+๐Ÿ––๐Ÿผ vulcan salute: tan skin
+๐Ÿ––๐Ÿฝ vulcan salute: olive skin
+๐Ÿ––๐Ÿพ vulcan salute: brown skin
+๐Ÿ––๐Ÿฟ vulcan salute: black skin
+๐Ÿ™…๐Ÿป person gesturing NO: white skin
+๐Ÿ™…๐Ÿผ person gesturing NO: tan skin
+๐Ÿ™…๐Ÿฝ person gesturing NO: olive skin
+๐Ÿ™…๐Ÿพ person gesturing NO: brown skin
+๐Ÿ™…๐Ÿฟ person gesturing NO: black skin
+๐Ÿ™†๐Ÿป person gesturing OK: white skin
+๐Ÿ™†๐Ÿผ person gesturing OK: tan skin
+๐Ÿ™†๐Ÿฝ person gesturing OK: olive skin
+๐Ÿ™†๐Ÿพ person gesturing OK: brown skin
+๐Ÿ™†๐Ÿฟ person gesturing OK: black skin
+๐Ÿ™‡๐Ÿป person bowing: white skin
+๐Ÿ™‡๐Ÿผ person bowing: tan skin
+๐Ÿ™‡๐Ÿฝ person bowing: olive skin
+๐Ÿ™‡๐Ÿพ person bowing: brown skin
+๐Ÿ™‡๐Ÿฟ person bowing: black skin
+๐Ÿ™‹๐Ÿป person raising hand: white skin
+๐Ÿ™‹๐Ÿผ person raising hand: tan skin
+๐Ÿ™‹๐Ÿฝ person raising hand: olive skin
+๐Ÿ™‹๐Ÿพ person raising hand: brown skin
+๐Ÿ™‹๐Ÿฟ person raising hand: black skin
+๐Ÿ™Œ๐Ÿป raising hands: white skin
+๐Ÿ™Œ๐Ÿผ raising hands: tan skin
+๐Ÿ™Œ๐Ÿฝ raising hands: olive skin
+๐Ÿ™Œ๐Ÿพ raising hands: brown skin
+๐Ÿ™Œ๐Ÿฟ raising hands: black skin
+๐Ÿ™๐Ÿป person frowning: white skin
+๐Ÿ™๐Ÿผ person frowning: tan skin
+๐Ÿ™๐Ÿฝ person frowning: olive skin
+๐Ÿ™๐Ÿพ person frowning: brown skin
+๐Ÿ™๐Ÿฟ person frowning: black skin
+๐Ÿ™Ž๐Ÿป person pouting: white skin
+๐Ÿ™Ž๐Ÿผ person pouting: tan skin
+๐Ÿ™Ž๐Ÿฝ person pouting: olive skin
+๐Ÿ™Ž๐Ÿพ person pouting: brown skin
+๐Ÿ™Ž๐Ÿฟ person pouting: black skin
+๐Ÿ™๐Ÿป folded hands: white skin
+๐Ÿ™๐Ÿผ folded hands: tan skin
+๐Ÿ™๐Ÿฝ folded hands: olive skin
+๐Ÿ™๐Ÿพ folded hands: brown skin
+๐Ÿ™๐Ÿฟ folded hands: black skin
+๐Ÿšฃ๐Ÿป person rowing boat: white skin
+๐Ÿšฃ๐Ÿผ person rowing boat: tan skin
+๐Ÿšฃ๐Ÿฝ person rowing boat: olive skin
+๐Ÿšฃ๐Ÿพ person rowing boat: brown skin
+๐Ÿšฃ๐Ÿฟ person rowing boat: black skin
+๐Ÿšด๐Ÿป person biking: white skin
+๐Ÿšด๐Ÿผ person biking: tan skin
+๐Ÿšด๐Ÿฝ person biking: olive skin
+๐Ÿšด๐Ÿพ person biking: brown skin
+๐Ÿšด๐Ÿฟ person biking: black skin
+๐Ÿšต๐Ÿป person mountain biking: white skin
+๐Ÿšต๐Ÿผ person mountain biking: tan skin
+๐Ÿšต๐Ÿฝ person mountain biking: olive skin
+๐Ÿšต๐Ÿพ person mountain biking: brown skin
+๐Ÿšต๐Ÿฟ person mountain biking: black skin
+๐Ÿšถ๐Ÿป person walking: white skin
+๐Ÿšถ๐Ÿผ person walking: tan skin
+๐Ÿšถ๐Ÿฝ person walking: olive skin
+๐Ÿšถ๐Ÿพ person walking: brown skin
+๐Ÿšถ๐Ÿฟ person walking: black skin
+๐Ÿ›€๐Ÿป person taking bath: white skin
+๐Ÿ›€๐Ÿผ person taking bath: tan skin
+๐Ÿ›€๐Ÿฝ person taking bath: olive skin
+๐Ÿ›€๐Ÿพ person taking bath: brown skin
+๐Ÿ›€๐Ÿฟ person taking bath: black skin
+๐Ÿ›Œ๐Ÿป person in bed: white skin
+๐Ÿ›Œ๐Ÿผ person in bed: tan skin
+๐Ÿ›Œ๐Ÿฝ person in bed: olive skin
+๐Ÿ›Œ๐Ÿพ person in bed: brown skin
+๐Ÿ›Œ๐Ÿฟ person in bed: black skin
+๐ŸคŒ๐Ÿป pinched fingers: white skin
+๐ŸคŒ๐Ÿผ pinched fingers: tan skin
+๐ŸคŒ๐Ÿฝ pinched fingers: olive skin
+๐ŸคŒ๐Ÿพ pinched fingers: brown skin
+๐ŸคŒ๐Ÿฟ pinched fingers: black skin
+๐Ÿค๐Ÿป pinching hand: white skin
+๐Ÿค๐Ÿผ pinching hand: tan skin
+๐Ÿค๐Ÿฝ pinching hand: olive skin
+๐Ÿค๐Ÿพ pinching hand: brown skin
+๐Ÿค๐Ÿฟ pinching hand: black skin
+๐Ÿค˜๐Ÿป sign of the horns: white skin
+๐Ÿค˜๐Ÿผ sign of the horns: tan skin
+๐Ÿค˜๐Ÿฝ sign of the horns: olive skin
+๐Ÿค˜๐Ÿพ sign of the horns: brown skin
+๐Ÿค˜๐Ÿฟ sign of the horns: black skin
+๐Ÿค™๐Ÿป call me hand: white skin
+๐Ÿค™๐Ÿผ call me hand: tan skin
+๐Ÿค™๐Ÿฝ call me hand: olive skin
+๐Ÿค™๐Ÿพ call me hand: brown skin
+๐Ÿค™๐Ÿฟ call me hand: black skin
+๐Ÿคš๐Ÿป raised back of hand: white skin
+๐Ÿคš๐Ÿผ raised back of hand: tan skin
+๐Ÿคš๐Ÿฝ raised back of hand: olive skin
+๐Ÿคš๐Ÿพ raised back of hand: brown skin
+๐Ÿคš๐Ÿฟ raised back of hand: black skin
+๐Ÿค›๐Ÿป left-facing fist: white skin
+๐Ÿค›๐Ÿผ left-facing fist: tan skin
+๐Ÿค›๐Ÿฝ left-facing fist: olive skin
+๐Ÿค›๐Ÿพ left-facing fist: brown skin
+๐Ÿค›๐Ÿฟ left-facing fist: black skin
+๐Ÿคœ๐Ÿป right-facing fist: white skin
+๐Ÿคœ๐Ÿผ right-facing fist: tan skin
+๐Ÿคœ๐Ÿฝ right-facing fist: olive skin
+๐Ÿคœ๐Ÿพ right-facing fist: brown skin
+๐Ÿคœ๐Ÿฟ right-facing fist: black skin
+๐Ÿค๐Ÿป handshake: white skin
+๐Ÿค๐Ÿผ handshake: tan skin
+๐Ÿค๐Ÿฝ handshake: olive skin
+๐Ÿค๐Ÿพ handshake: brown skin
+๐Ÿค๐Ÿฟ handshake: black skin
+๐Ÿคž๐Ÿป crossed fingers: white skin
+๐Ÿคž๐Ÿผ crossed fingers: tan skin
+๐Ÿคž๐Ÿฝ crossed fingers: olive skin
+๐Ÿคž๐Ÿพ crossed fingers: brown skin
+๐Ÿคž๐Ÿฟ crossed fingers: black skin
+๐ŸคŸ๐Ÿป love-you gesture: white skin
+๐ŸคŸ๐Ÿผ love-you gesture: tan skin
+๐ŸคŸ๐Ÿฝ love-you gesture: olive skin
+๐ŸคŸ๐Ÿพ love-you gesture: brown skin
+๐ŸคŸ๐Ÿฟ love-you gesture: black skin
+๐Ÿคฆ๐Ÿป person facepalming: white skin
+๐Ÿคฆ๐Ÿผ person facepalming: tan skin
+๐Ÿคฆ๐Ÿฝ person facepalming: olive skin
+๐Ÿคฆ๐Ÿพ person facepalming: brown skin
+๐Ÿคฆ๐Ÿฟ person facepalming: black skin
+๐Ÿคฐ๐Ÿป pregnant woman: white skin
+๐Ÿคฐ๐Ÿผ pregnant woman: tan skin
+๐Ÿคฐ๐Ÿฝ pregnant woman: olive skin
+๐Ÿคฐ๐Ÿพ pregnant woman: brown skin
+๐Ÿคฐ๐Ÿฟ pregnant woman: black skin
+๐Ÿคฑ๐Ÿป breast-feeding: white skin
+๐Ÿคฑ๐Ÿผ breast-feeding: tan skin
+๐Ÿคฑ๐Ÿฝ breast-feeding: olive skin
+๐Ÿคฑ๐Ÿพ breast-feeding: brown skin
+๐Ÿคฑ๐Ÿฟ breast-feeding: black skin
+๐Ÿคฒ๐Ÿป palms up together: white skin
+๐Ÿคฒ๐Ÿผ palms up together: tan skin
+๐Ÿคฒ๐Ÿฝ palms up together: olive skin
+๐Ÿคฒ๐Ÿพ palms up together: brown skin
+๐Ÿคฒ๐Ÿฟ palms up together: black skin
+๐Ÿคณ๐Ÿป selfie: white skin
+๐Ÿคณ๐Ÿผ selfie: tan skin
+๐Ÿคณ๐Ÿฝ selfie: olive skin
+๐Ÿคณ๐Ÿพ selfie: brown skin
+๐Ÿคณ๐Ÿฟ selfie: black skin
+๐Ÿคด๐Ÿป prince: white skin
+๐Ÿคด๐Ÿผ prince: tan skin
+๐Ÿคด๐Ÿฝ prince: olive skin
+๐Ÿคด๐Ÿพ prince: brown skin
+๐Ÿคด๐Ÿฟ prince: black skin
+๐Ÿคต๐Ÿป person in tuxedo: white skin
+๐Ÿคต๐Ÿผ person in tuxedo: tan skin
+๐Ÿคต๐Ÿฝ person in tuxedo: olive skin
+๐Ÿคต๐Ÿพ person in tuxedo: brown skin
+๐Ÿคต๐Ÿฟ person in tuxedo: black skin
+๐Ÿคถ๐Ÿป Mrs. Claus: white skin
+๐Ÿคถ๐Ÿผ Mrs. Claus: tan skin
+๐Ÿคถ๐Ÿฝ Mrs. Claus: olive skin
+๐Ÿคถ๐Ÿพ Mrs. Claus: brown skin
+๐Ÿคถ๐Ÿฟ Mrs. Claus: black skin
+๐Ÿคท๐Ÿป person shrugging: white skin
+๐Ÿคท๐Ÿผ person shrugging: tan skin
+๐Ÿคท๐Ÿฝ person shrugging: olive skin
+๐Ÿคท๐Ÿพ person shrugging: brown skin
+๐Ÿคท๐Ÿฟ person shrugging: black skin
+๐Ÿคธ๐Ÿป person cartwheeling: white skin
+๐Ÿคธ๐Ÿผ person cartwheeling: tan skin
+๐Ÿคธ๐Ÿฝ person cartwheeling: olive skin
+๐Ÿคธ๐Ÿพ person cartwheeling: brown skin
+๐Ÿคธ๐Ÿฟ person cartwheeling: black skin
+๐Ÿคน๐Ÿป person juggling: white skin
+๐Ÿคน๐Ÿผ person juggling: tan skin
+๐Ÿคน๐Ÿฝ person juggling: olive skin
+๐Ÿคน๐Ÿพ person juggling: brown skin
+๐Ÿคน๐Ÿฟ person juggling: black skin
+๐Ÿคฝ๐Ÿป person playing water polo: white skin
+๐Ÿคฝ๐Ÿผ person playing water polo: tan skin
+๐Ÿคฝ๐Ÿฝ person playing water polo: olive skin
+๐Ÿคฝ๐Ÿพ person playing water polo: brown skin
+๐Ÿคฝ๐Ÿฟ person playing water polo: black skin
+๐Ÿคพ๐Ÿป person playing handball: white skin
+๐Ÿคพ๐Ÿผ person playing handball: tan skin
+๐Ÿคพ๐Ÿฝ person playing handball: olive skin
+๐Ÿคพ๐Ÿพ person playing handball: brown skin
+๐Ÿคพ๐Ÿฟ person playing handball: black skin
+๐Ÿฅท๐Ÿป ninja: white skin
+๐Ÿฅท๐Ÿผ ninja: tan skin
+๐Ÿฅท๐Ÿฝ ninja: olive skin
+๐Ÿฅท๐Ÿพ ninja: brown skin
+๐Ÿฅท๐Ÿฟ ninja: black skin
+๐Ÿฆต๐Ÿป leg: white skin
+๐Ÿฆต๐Ÿผ leg: tan skin
+๐Ÿฆต๐Ÿฝ leg: olive skin
+๐Ÿฆต๐Ÿพ leg: brown skin
+๐Ÿฆต๐Ÿฟ leg: black skin
+๐Ÿฆถ๐Ÿป foot: white skin
+๐Ÿฆถ๐Ÿผ foot: tan skin
+๐Ÿฆถ๐Ÿฝ foot: olive skin
+๐Ÿฆถ๐Ÿพ foot: brown skin
+๐Ÿฆถ๐Ÿฟ foot: black skin
+๐Ÿฆธ๐Ÿป superhero: white skin
+๐Ÿฆธ๐Ÿผ superhero: tan skin
+๐Ÿฆธ๐Ÿฝ superhero: olive skin
+๐Ÿฆธ๐Ÿพ superhero: brown skin
+๐Ÿฆธ๐Ÿฟ superhero: black skin
+๐Ÿฆน๐Ÿป supervillain: white skin
+๐Ÿฆน๐Ÿผ supervillain: tan skin
+๐Ÿฆน๐Ÿฝ supervillain: olive skin
+๐Ÿฆน๐Ÿพ supervillain: brown skin
+๐Ÿฆน๐Ÿฟ supervillain: black skin
+๐Ÿฆป๐Ÿป ear with hearing aid: white skin
+๐Ÿฆป๐Ÿผ ear with hearing aid: tan skin
+๐Ÿฆป๐Ÿฝ ear with hearing aid: olive skin
+๐Ÿฆป๐Ÿพ ear with hearing aid: brown skin
+๐Ÿฆป๐Ÿฟ ear with hearing aid: black skin
+๐Ÿง๐Ÿป person standing: white skin
+๐Ÿง๐Ÿผ person standing: tan skin
+๐Ÿง๐Ÿฝ person standing: olive skin
+๐Ÿง๐Ÿพ person standing: brown skin
+๐Ÿง๐Ÿฟ person standing: black skin
+๐ŸงŽ๐Ÿป person kneeling: white skin
+๐ŸงŽ๐Ÿผ person kneeling: tan skin
+๐ŸงŽ๐Ÿฝ person kneeling: olive skin
+๐ŸงŽ๐Ÿพ person kneeling: brown skin
+๐ŸงŽ๐Ÿฟ person kneeling: black skin
+๐Ÿง๐Ÿป deaf person: white skin
+๐Ÿง๐Ÿผ deaf person: tan skin
+๐Ÿง๐Ÿฝ deaf person: olive skin
+๐Ÿง๐Ÿพ deaf person: brown skin
+๐Ÿง๐Ÿฟ deaf person: black skin
+๐Ÿง‘๐Ÿป person: white skin
+๐Ÿง‘๐Ÿผ person: tan skin
+๐Ÿง‘๐Ÿฝ person: olive skin
+๐Ÿง‘๐Ÿพ person: brown skin
+๐Ÿง‘๐Ÿฟ person: black skin
+๐Ÿง’๐Ÿป child: white skin
+๐Ÿง’๐Ÿผ child: tan skin
+๐Ÿง’๐Ÿฝ child: olive skin
+๐Ÿง’๐Ÿพ child: brown skin
+๐Ÿง’๐Ÿฟ child: black skin
+๐Ÿง“๐Ÿป older person: white skin
+๐Ÿง“๐Ÿผ older person: tan skin
+๐Ÿง“๐Ÿฝ older person: olive skin
+๐Ÿง“๐Ÿพ older person: brown skin
+๐Ÿง“๐Ÿฟ older person: black skin
+๐Ÿง”๐Ÿป person: white skin, beard
+๐Ÿง”๐Ÿผ person: tan skin, beard
+๐Ÿง”๐Ÿฝ person: olive skin, beard
+๐Ÿง”๐Ÿพ person: brown skin, beard
+๐Ÿง”๐Ÿฟ person: black skin, beard
+๐Ÿง•๐Ÿป woman with headscarf: white skin
+๐Ÿง•๐Ÿผ woman with headscarf: tan skin
+๐Ÿง•๐Ÿฝ woman with headscarf: olive skin
+๐Ÿง•๐Ÿพ woman with headscarf: brown skin
+๐Ÿง•๐Ÿฟ woman with headscarf: black skin
+๐Ÿง–๐Ÿป person in steamy room: white skin
+๐Ÿง–๐Ÿผ person in steamy room: tan skin
+๐Ÿง–๐Ÿฝ person in steamy room: olive skin
+๐Ÿง–๐Ÿพ person in steamy room: brown skin
+๐Ÿง–๐Ÿฟ person in steamy room: black skin
+๐Ÿง—๐Ÿป person climbing: white skin
+๐Ÿง—๐Ÿผ person climbing: tan skin
+๐Ÿง—๐Ÿฝ person climbing: olive skin
+๐Ÿง—๐Ÿพ person climbing: brown skin
+๐Ÿง—๐Ÿฟ person climbing: black skin
+๐Ÿง˜๐Ÿป person in lotus position: white skin
+๐Ÿง˜๐Ÿผ person in lotus position: tan skin
+๐Ÿง˜๐Ÿฝ person in lotus position: olive skin
+๐Ÿง˜๐Ÿพ person in lotus position: brown skin
+๐Ÿง˜๐Ÿฟ person in lotus position: black skin
+๐Ÿง™๐Ÿป mage: white skin
+๐Ÿง™๐Ÿผ mage: tan skin
+๐Ÿง™๐Ÿฝ mage: olive skin
+๐Ÿง™๐Ÿพ mage: brown skin
+๐Ÿง™๐Ÿฟ mage: black skin
+๐Ÿงš๐Ÿป fairy: white skin
+๐Ÿงš๐Ÿผ fairy: tan skin
+๐Ÿงš๐Ÿฝ fairy: olive skin
+๐Ÿงš๐Ÿพ fairy: brown skin
+๐Ÿงš๐Ÿฟ fairy: black skin
+๐Ÿง›๐Ÿป vampire: white skin
+๐Ÿง›๐Ÿผ vampire: tan skin
+๐Ÿง›๐Ÿฝ vampire: olive skin
+๐Ÿง›๐Ÿพ vampire: brown skin
+๐Ÿง›๐Ÿฟ vampire: black skin
+๐Ÿงœ๐Ÿป merperson: white skin
+๐Ÿงœ๐Ÿผ merperson: tan skin
+๐Ÿงœ๐Ÿฝ merperson: olive skin
+๐Ÿงœ๐Ÿพ merperson: brown skin
+๐Ÿงœ๐Ÿฟ merperson: black skin
+๐Ÿง๐Ÿป elf: white skin
+๐Ÿง๐Ÿผ elf: tan skin
+๐Ÿง๐Ÿฝ elf: olive skin
+๐Ÿง๐Ÿพ elf: brown skin
+๐Ÿง๐Ÿฟ elf: black skin
+๐Ÿซ…๐Ÿป person with crown: white skin
+๐Ÿซ…๐Ÿผ person with crown: tan skin
+๐Ÿซ…๐Ÿฝ person with crown: olive skin
+๐Ÿซ…๐Ÿพ person with crown: brown skin
+๐Ÿซ…๐Ÿฟ person with crown: black skin
+๐Ÿซฐ๐Ÿป hand with index finger and thumb crossed: white skin
+๐Ÿซฐ๐Ÿผ hand with index finger and thumb crossed: tan skin
+๐Ÿซฐ๐Ÿฝ hand with index finger and thumb crossed: olive skin
+๐Ÿซฐ๐Ÿพ hand with index finger and thumb crossed: brown skin
+๐Ÿซฐ๐Ÿฟ hand with index finger and thumb crossed: black skin
+๐Ÿซฑ๐Ÿป rightwards hand: white skin
+๐Ÿซฑ๐Ÿผ rightwards hand: tan skin
+๐Ÿซฑ๐Ÿฝ rightwards hand: olive skin
+๐Ÿซฑ๐Ÿพ rightwards hand: brown skin
+๐Ÿซฑ๐Ÿฟ rightwards hand: black skin
+๐Ÿซฒ๐Ÿป leftwards hand: white skin
+๐Ÿซฒ๐Ÿผ leftwards hand: tan skin
+๐Ÿซฒ๐Ÿฝ leftwards hand: olive skin
+๐Ÿซฒ๐Ÿพ leftwards hand: brown skin
+๐Ÿซฒ๐Ÿฟ leftwards hand: black skin
+๐Ÿซณ๐Ÿป palm down hand: white skin
+๐Ÿซณ๐Ÿผ palm down hand: tan skin
+๐Ÿซณ๐Ÿฝ palm down hand: olive skin
+๐Ÿซณ๐Ÿพ palm down hand: brown skin
+๐Ÿซณ๐Ÿฟ palm down hand: black skin
+๐Ÿซด๐Ÿป palm up hand: white skin
+๐Ÿซด๐Ÿผ palm up hand: tan skin
+๐Ÿซด๐Ÿฝ palm up hand: olive skin
+๐Ÿซด๐Ÿพ palm up hand: brown skin
+๐Ÿซด๐Ÿฟ palm up hand: black skin
+๐Ÿซต๐Ÿป index pointing at the viewer: white skin
+๐Ÿซต๐Ÿผ index pointing at the viewer: tan skin
+๐Ÿซต๐Ÿฝ index pointing at the viewer: olive skin
+๐Ÿซต๐Ÿพ index pointing at the viewer: brown skin
+๐Ÿซต๐Ÿฟ index pointing at the viewer: black skin
+๐Ÿซถ๐Ÿป heart hands: white skin
+๐Ÿซถ๐Ÿผ heart hands: tan skin
+๐Ÿซถ๐Ÿฝ heart hands: olive skin
+๐Ÿซถ๐Ÿพ heart hands: brown skin
+๐Ÿซถ๐Ÿฟ heart hands: black skin
+๐Ÿซท๐Ÿป leftwards pushing hand: white skin
+๐Ÿซท๐Ÿผ leftwards pushing hand: tan skin
+๐Ÿซท๐Ÿฝ leftwards pushing hand: olive skin
+๐Ÿซท๐Ÿพ leftwards pushing hand: brown skin
+๐Ÿซท๐Ÿฟ leftwards pushing hand: black skin
+๐Ÿซธ๐Ÿป rightwards pushing hand: white skin
+๐Ÿซธ๐Ÿผ rightwards pushing hand: tan skin
+๐Ÿซธ๐Ÿฝ rightwards pushing hand: olive skin
+๐Ÿซธ๐Ÿพ rightwards pushing hand: brown skin
+๐Ÿซธ๐Ÿฟ rightwards pushing hand: black skin
+๐Ÿ‘จโ€๐Ÿ‘ฆ family: man, boy
+๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ family: man, boy, boy
+๐Ÿ‘จโ€๐Ÿ‘ง family: man, girl
+๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ family: man, girl, boy
+๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง family: man, girl, girl
+๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ family: man, woman, boy
+๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ family: man, woman, boy, boy
+๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง family: man, woman, girl
+๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ family: man, woman, girl, boy
+๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง family: man, woman, girl, girl
+๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ men holding hands: white skin, tan skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ men holding hands: white skin, olive skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ men holding hands: white skin, brown skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ men holding hands: white skin, black skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป men holding hands: tan skin, white skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ men holding hands: tan skin, olive skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ men holding hands: tan skin, brown skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ men holding hands: tan skin, black skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป men holding hands: olive skin, white skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ men holding hands: olive skin, tan skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ men holding hands: olive skin, brown skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ men holding hands: olive skin, black skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป men holding hands: brown skin, white skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ men holding hands: brown skin, tan skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ men holding hands: brown skin, olive skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ men holding hands: brown skin, black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป men holding hands: black skin, white skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ men holding hands: black skin, tan skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ men holding hands: black skin, olive skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ men holding hands: black skin, brown skin
+๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ couple with heart: woman, man
+๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ couple with heart: woman, woman
+๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ kiss: woman, man
+๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ kiss: woman, woman
+๐Ÿ‘ฉโ€๐Ÿ‘ฆ family: woman, boy
+๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ family: woman, boy, boy
+๐Ÿ‘ฉโ€๐Ÿ‘ง family: woman, girl
+๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ family: woman, girl, boy
+๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง family: woman, girl, girl
+๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ family: woman, woman, boy
+๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ family: woman, woman, boy, boy
+๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง family: woman, woman, girl
+๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ family: woman, woman, girl, boy
+๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง family: woman, woman, girl, girl
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, white skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, white skin, tan skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, white skin, olive skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, white skin, brown skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, white skin, black skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, white skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, white skin, tan skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, white skin, olive skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, white skin, brown skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, white skin, black skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, white skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, white skin, tan skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, white skin, olive skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, white skin, brown skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, white skin, black skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, white skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, white skin, tan skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, white skin, olive skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, white skin, brown skin
+๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, white skin, black skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ woman and man holding hands: white skin, tan skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ woman and man holding hands: white skin, olive skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ woman and man holding hands: white skin, brown skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ woman and man holding hands: white skin, black skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ women holding hands: white skin, tan skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ women holding hands: white skin, olive skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ women holding hands: white skin, brown skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ women holding hands: white skin, black skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, tan skin, white skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, tan skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, tan skin, olive skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, tan skin, brown skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, tan skin, black skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, tan skin, white skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, tan skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, tan skin, olive skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, tan skin, brown skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, tan skin, black skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, tan skin, white skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, tan skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, tan skin, olive skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, tan skin, brown skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, tan skin, black skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, tan skin, white skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, tan skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, tan skin, olive skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, tan skin, brown skin
+๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, tan skin, black skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป woman and man holding hands: tan skin, white skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ woman and man holding hands: tan skin, olive skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ woman and man holding hands: tan skin, brown skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ woman and man holding hands: tan skin, black skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป women holding hands: tan skin, white skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ women holding hands: tan skin, olive skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ women holding hands: tan skin, brown skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ women holding hands: tan skin, black skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, olive skin, white skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, olive skin, tan skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, olive skin, brown skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, olive skin, black skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, olive skin, white skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, olive skin, tan skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, olive skin, brown skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, olive skin, black skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, olive skin, white skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, olive skin, tan skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, olive skin, brown skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, olive skin, black skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, olive skin, white skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, olive skin, tan skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, olive skin, brown skin
+๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, olive skin, black skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป woman and man holding hands: olive skin, white skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ woman and man holding hands: olive skin, tan skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ woman and man holding hands: olive skin, brown skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ woman and man holding hands: olive skin, black skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป women holding hands: olive skin, white skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ women holding hands: olive skin, tan skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ women holding hands: olive skin, brown skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ women holding hands: olive skin, black skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, brown skin, white skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, brown skin, tan skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, brown skin, olive skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, brown skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, brown skin, black skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, brown skin, white skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, brown skin, tan skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, brown skin, olive skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, brown skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, brown skin, black skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, brown skin, white skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, brown skin, tan skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, brown skin, olive skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, brown skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, brown skin, black skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, brown skin, white skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, brown skin, tan skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, brown skin, olive skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, brown skin
+๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, brown skin, black skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป woman and man holding hands: brown skin, white skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ woman and man holding hands: brown skin, tan skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ woman and man holding hands: brown skin, olive skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ woman and man holding hands: brown skin, black skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป women holding hands: brown skin, white skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ women holding hands: brown skin, tan skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ women holding hands: brown skin, olive skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ women holding hands: brown skin, black skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป couple with heart: woman, man, black skin, white skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ couple with heart: woman, man, black skin, tan skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ couple with heart: woman, man, black skin, olive skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ couple with heart: woman, man, black skin, brown skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ couple with heart: woman, man, black skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป couple with heart: woman, woman, black skin, white skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ couple with heart: woman, woman, black skin, tan skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ couple with heart: woman, woman, black skin, olive skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ couple with heart: woman, woman, black skin, brown skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ couple with heart: woman, woman, black skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป kiss: woman, man, black skin, white skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ kiss: woman, man, black skin, tan skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ kiss: woman, man, black skin, olive skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ kiss: woman, man, black skin, brown skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ kiss: woman, man, black skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป kiss: woman, woman, black skin, white skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ kiss: woman, woman, black skin, tan skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ kiss: woman, woman, black skin, olive skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ kiss: woman, woman, black skin, brown skin
+๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ kiss: woman, woman, black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป woman and man holding hands: black skin, white skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ woman and man holding hands: black skin, tan skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ woman and man holding hands: black skin, olive skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ woman and man holding hands: black skin, brown skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป women holding hands: black skin, white skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ women holding hands: black skin, tan skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ women holding hands: black skin, olive skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ women holding hands: black skin, brown skin
+๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘ people holding hands
+๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’ family: adult, adult, child
+๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’ family: adult, adult, child, child
+๐Ÿง‘โ€๐Ÿง’ family: adult, child
+๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’ family: adult, child, child
+๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ kiss: person, person, white skin, tan skin
+๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ kiss: person, person, white skin, olive skin
+๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ kiss: person, person, white skin, brown skin
+๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ kiss: person, person, white skin, black skin
+๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿผ couple with heart: person, person, white skin, tan skin
+๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ couple with heart: person, person, white skin, olive skin
+๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿพ couple with heart: person, person, white skin, brown skin
+๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ couple with heart: person, person, white skin, black skin
+๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿป people holding hands: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ people holding hands: white skin, tan skin
+๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ people holding hands: white skin, olive skin
+๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ people holding hands: white skin, brown skin
+๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ people holding hands: white skin, black skin
+๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป kiss: person, person, tan skin, white skin
+๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ kiss: person, person, tan skin, olive skin
+๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ kiss: person, person, tan skin, brown skin
+๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ kiss: person, person, tan skin, black skin
+๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿป couple with heart: person, person, tan skin, white skin
+๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ couple with heart: person, person, tan skin, olive skin
+๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿพ couple with heart: person, person, tan skin, brown skin
+๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ couple with heart: person, person, tan skin, black skin
+๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿป people holding hands: tan skin, white skin
+๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ people holding hands: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ people holding hands: tan skin, olive skin
+๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ people holding hands: tan skin, brown skin
+๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ people holding hands: tan skin, black skin
+๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป kiss: person, person, olive skin, white skin
+๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ kiss: person, person, olive skin, tan skin
+๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ kiss: person, person, olive skin, brown skin
+๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ kiss: person, person, olive skin, black skin
+๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿป couple with heart: person, person, olive skin, white skin
+๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿผ couple with heart: person, person, olive skin, tan skin
+๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿพ couple with heart: person, person, olive skin, brown skin
+๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ couple with heart: person, person, olive skin, black skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿป people holding hands: olive skin, white skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ people holding hands: olive skin, tan skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ people holding hands: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ people holding hands: olive skin, brown skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ people holding hands: olive skin, black skin
+๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป kiss: person, person, brown skin, white skin
+๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ kiss: person, person, brown skin, tan skin
+๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ kiss: person, person, brown skin, olive skin
+๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ kiss: person, person, brown skin, black skin
+๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿป couple with heart: person, person, brown skin, white skin
+๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿผ couple with heart: person, person, brown skin, tan skin
+๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ couple with heart: person, person, brown skin, olive skin
+๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ couple with heart: person, person, brown skin, black skin
+๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿป people holding hands: brown skin, white skin
+๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ people holding hands: brown skin, tan skin
+๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ people holding hands: brown skin, olive skin
+๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ people holding hands: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ people holding hands: brown skin, black skin
+๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป kiss: person, person, black skin, white skin
+๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ kiss: person, person, black skin, tan skin
+๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ kiss: person, person, black skin, olive skin
+๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ kiss: person, person, black skin, brown skin
+๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿป couple with heart: person, person, black skin, white skin
+๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿผ couple with heart: person, person, black skin, tan skin
+๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ couple with heart: person, person, black skin, olive skin
+๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿพ couple with heart: person, person, black skin, brown skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿป people holding hands: black skin, white skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ people holding hands: black skin, tan skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ people holding hands: black skin, olive skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ people holding hands: black skin, brown skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ people holding hands: black skin
+๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿผ handshake: white skin, tan skin
+๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿฝ handshake: white skin, olive skin
+๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿพ handshake: white skin, brown skin
+๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿฟ handshake: white skin, black skin
+๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿป handshake: tan skin, white skin
+๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿฝ handshake: tan skin, olive skin
+๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿพ handshake: tan skin, brown skin
+๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿฟ handshake: tan skin, black skin
+๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿป handshake: olive skin, white skin
+๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿผ handshake: olive skin, tan skin
+๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿพ handshake: olive skin, brown skin
+๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿฟ handshake: olive skin, black skin
+๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿป handshake: brown skin, white skin
+๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿผ handshake: brown skin, tan skin
+๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿฝ handshake: brown skin, olive skin
+๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿฟ handshake: brown skin, black skin
+๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿป handshake: black skin, white skin
+๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿผ handshake: black skin, tan skin
+๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿฝ handshake: black skin, olive skin
+๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿพ handshake: black skin, brown skin
+๐Ÿƒโ€โžก๏ธ person running facing right
+๐Ÿƒ๐Ÿปโ€โžก๏ธ person running facing right: white skin
+๐Ÿƒ๐Ÿผโ€โžก๏ธ person running facing right: tan skin
+๐Ÿƒ๐Ÿฝโ€โžก๏ธ person running facing right: olive skin
+๐Ÿƒ๐Ÿพโ€โžก๏ธ person running facing right: brown skin
+๐Ÿƒ๐Ÿฟโ€โžก๏ธ person running facing right: black skin
+๐Ÿ‘จโ€โš•๏ธ man health worker
+๐Ÿ‘จโ€โš–๏ธ man judge
+๐Ÿ‘จโ€โœˆ๏ธ man pilot
+๐Ÿ‘จโ€๐ŸŒพ man farmer
+๐Ÿ‘จโ€๐Ÿณ man cook
+๐Ÿ‘จโ€๐Ÿผ man feeding baby
+๐Ÿ‘จโ€๐ŸŽ“ man student
+๐Ÿ‘จโ€๐ŸŽค man singer
+๐Ÿ‘จโ€๐ŸŽจ man artist
+๐Ÿ‘จโ€๐Ÿซ man teacher
+๐Ÿ‘จโ€๐Ÿญ man factory worker
+๐Ÿ‘จโ€๐Ÿ’ป man technologist
+๐Ÿ‘จโ€๐Ÿ’ผ man office worker
+๐Ÿ‘จโ€๐Ÿ”ง man mechanic
+๐Ÿ‘จโ€๐Ÿ”ฌ man scientist
+๐Ÿ‘จโ€๐Ÿš€ man astronaut
+๐Ÿ‘จโ€๐Ÿš’ man firefighter
+๐Ÿ‘จโ€๐Ÿฆฏ man with white cane
+๐Ÿ‘จโ€๐Ÿฆฏโ€โžก๏ธ man with white cane facing right
+๐Ÿ‘จโ€๐Ÿฆผ man in motorized wheelchair
+๐Ÿ‘จโ€๐Ÿฆผโ€โžก๏ธ man in motorized wheelchair facing right
+๐Ÿ‘จโ€๐Ÿฆฝ man in manual wheelchair
+๐Ÿ‘จโ€๐Ÿฆฝโ€โžก๏ธ man in manual wheelchair facing right
+๐Ÿ‘จ๐Ÿปโ€โš•๏ธ man health worker: white skin
+๐Ÿ‘จ๐Ÿปโ€โš–๏ธ man judge: white skin
+๐Ÿ‘จ๐Ÿปโ€โœˆ๏ธ man pilot: white skin
+๐Ÿ‘จ๐Ÿปโ€๐ŸŒพ man farmer: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿณ man cook: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿผ man feeding baby: white skin
+๐Ÿ‘จ๐Ÿปโ€๐ŸŽ“ man student: white skin
+๐Ÿ‘จ๐Ÿปโ€๐ŸŽค man singer: white skin
+๐Ÿ‘จ๐Ÿปโ€๐ŸŽจ man artist: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿซ man teacher: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿญ man factory worker: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป man technologist: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ผ man office worker: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ง man mechanic: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ฌ man scientist: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿš€ man astronaut: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿš’ man firefighter: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏ man with white cane: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ man with white cane facing right: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผ man in motorized wheelchair: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ man in motorized wheelchair facing right: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝ man in manual wheelchair: white skin
+๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ man in manual wheelchair facing right: white skin
+๐Ÿ‘จ๐Ÿผโ€โš•๏ธ man health worker: tan skin
+๐Ÿ‘จ๐Ÿผโ€โš–๏ธ man judge: tan skin
+๐Ÿ‘จ๐Ÿผโ€โœˆ๏ธ man pilot: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐ŸŒพ man farmer: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿณ man cook: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿผ man feeding baby: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐ŸŽ“ man student: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐ŸŽค man singer: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐ŸŽจ man artist: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿซ man teacher: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿญ man factory worker: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป man technologist: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ man office worker: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ง man mechanic: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ฌ man scientist: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿš€ man astronaut: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿš’ man firefighter: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏ man with white cane: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ man with white cane facing right: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผ man in motorized wheelchair: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ man in motorized wheelchair facing right: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝ man in manual wheelchair: tan skin
+๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ man in manual wheelchair facing right: tan skin
+๐Ÿ‘จ๐Ÿฝโ€โš•๏ธ man health worker: olive skin
+๐Ÿ‘จ๐Ÿฝโ€โš–๏ธ man judge: olive skin
+๐Ÿ‘จ๐Ÿฝโ€โœˆ๏ธ man pilot: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐ŸŒพ man farmer: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿณ man cook: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿผ man feeding baby: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐ŸŽ“ man student: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐ŸŽค man singer: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐ŸŽจ man artist: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿซ man teacher: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿญ man factory worker: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ป man technologist: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ผ man office worker: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ง man mechanic: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ฌ man scientist: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿš€ man astronaut: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿš’ man firefighter: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏ man with white cane: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ man with white cane facing right: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผ man in motorized wheelchair: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ man in motorized wheelchair facing right: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝ man in manual wheelchair: olive skin
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ man in manual wheelchair facing right: olive skin
+๐Ÿ‘จ๐Ÿพโ€โš•๏ธ man health worker: brown skin
+๐Ÿ‘จ๐Ÿพโ€โš–๏ธ man judge: brown skin
+๐Ÿ‘จ๐Ÿพโ€โœˆ๏ธ man pilot: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐ŸŒพ man farmer: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿณ man cook: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿผ man feeding baby: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐ŸŽ“ man student: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐ŸŽค man singer: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐ŸŽจ man artist: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿซ man teacher: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿญ man factory worker: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป man technologist: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ผ man office worker: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ง man mechanic: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ฌ man scientist: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿš€ man astronaut: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿš’ man firefighter: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏ man with white cane: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ man with white cane facing right: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผ man in motorized wheelchair: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ man in motorized wheelchair facing right: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝ man in manual wheelchair: brown skin
+๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ man in manual wheelchair facing right: brown skin
+๐Ÿ‘จ๐Ÿฟโ€โš•๏ธ man health worker: black skin
+๐Ÿ‘จ๐Ÿฟโ€โš–๏ธ man judge: black skin
+๐Ÿ‘จ๐Ÿฟโ€โœˆ๏ธ man pilot: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐ŸŒพ man farmer: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿณ man cook: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿผ man feeding baby: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐ŸŽ“ man student: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐ŸŽค man singer: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐ŸŽจ man artist: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿซ man teacher: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿญ man factory worker: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ป man technologist: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ผ man office worker: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ง man mechanic: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ฌ man scientist: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿš€ man astronaut: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿš’ man firefighter: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏ man with white cane: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ man with white cane facing right: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผ man in motorized wheelchair: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ man in motorized wheelchair facing right: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝ man in manual wheelchair: black skin
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ man in manual wheelchair facing right: black skin
+๐Ÿ‘ฉโ€โš•๏ธ woman health worker
+๐Ÿ‘ฉโ€โš–๏ธ woman judge
+๐Ÿ‘ฉโ€โœˆ๏ธ woman pilot
+๐Ÿ‘ฉโ€๐ŸŒพ woman farmer
+๐Ÿ‘ฉโ€๐Ÿณ woman cook
+๐Ÿ‘ฉโ€๐Ÿผ woman feeding baby
+๐Ÿ‘ฉโ€๐ŸŽ“ woman student
+๐Ÿ‘ฉโ€๐ŸŽค woman singer
+๐Ÿ‘ฉโ€๐ŸŽจ woman artist
+๐Ÿ‘ฉโ€๐Ÿซ woman teacher
+๐Ÿ‘ฉโ€๐Ÿญ woman factory worker
+๐Ÿ‘ฉโ€๐Ÿ’ป woman technologist
+๐Ÿ‘ฉโ€๐Ÿ’ผ woman office worker
+๐Ÿ‘ฉโ€๐Ÿ”ง woman mechanic
+๐Ÿ‘ฉโ€๐Ÿ”ฌ woman scientist
+๐Ÿ‘ฉโ€๐Ÿš€ woman astronaut
+๐Ÿ‘ฉโ€๐Ÿš’ woman firefighter
+๐Ÿ‘ฉโ€๐Ÿฆฏ woman with white cane
+๐Ÿ‘ฉโ€๐Ÿฆฏโ€โžก๏ธ woman with white cane facing right
+๐Ÿ‘ฉโ€๐Ÿฆผ woman in motorized wheelchair
+๐Ÿ‘ฉโ€๐Ÿฆผโ€โžก๏ธ woman in motorized wheelchair facing right
+๐Ÿ‘ฉโ€๐Ÿฆฝ woman in manual wheelchair
+๐Ÿ‘ฉโ€๐Ÿฆฝโ€โžก๏ธ woman in manual wheelchair facing right
+๐Ÿ‘ฉ๐Ÿปโ€โš•๏ธ woman health worker: white skin
+๐Ÿ‘ฉ๐Ÿปโ€โš–๏ธ woman judge: white skin
+๐Ÿ‘ฉ๐Ÿปโ€โœˆ๏ธ woman pilot: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐ŸŒพ woman farmer: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿณ woman cook: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿผ woman feeding baby: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽ“ woman student: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽค woman singer: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽจ woman artist: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿซ woman teacher: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿญ woman factory worker: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป woman technologist: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ผ woman office worker: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ง woman mechanic: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ฌ woman scientist: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš€ woman astronaut: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš’ woman firefighter: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏ woman with white cane: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ woman with white cane facing right: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผ woman in motorized wheelchair: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ woman in motorized wheelchair facing right: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝ woman in manual wheelchair: white skin
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ woman in manual wheelchair facing right: white skin
+๐Ÿ‘ฉ๐Ÿผโ€โš•๏ธ woman health worker: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€โš–๏ธ woman judge: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€โœˆ๏ธ woman pilot: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐ŸŒพ woman farmer: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿณ woman cook: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿผ woman feeding baby: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽ“ woman student: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽค woman singer: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽจ woman artist: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿซ woman teacher: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿญ woman factory worker: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ป woman technologist: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ผ woman office worker: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ง woman mechanic: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ฌ woman scientist: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš€ woman astronaut: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš’ woman firefighter: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏ woman with white cane: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ woman with white cane facing right: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผ woman in motorized wheelchair: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ woman in motorized wheelchair facing right: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝ woman in manual wheelchair: tan skin
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ woman in manual wheelchair facing right: tan skin
+๐Ÿ‘ฉ๐Ÿฝโ€โš•๏ธ woman health worker: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€โš–๏ธ woman judge: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€โœˆ๏ธ woman pilot: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŒพ woman farmer: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿณ woman cook: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿผ woman feeding baby: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽ“ woman student: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽค woman singer: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽจ woman artist: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿซ woman teacher: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿญ woman factory worker: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป woman technologist: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ผ woman office worker: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ง woman mechanic: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ฌ woman scientist: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš€ woman astronaut: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš’ woman firefighter: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏ woman with white cane: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ woman with white cane facing right: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผ woman in motorized wheelchair: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ woman in motorized wheelchair facing right: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝ woman in manual wheelchair: olive skin
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ woman in manual wheelchair facing right: olive skin
+๐Ÿ‘ฉ๐Ÿพโ€โš•๏ธ woman health worker: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€โš–๏ธ woman judge: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€โœˆ๏ธ woman pilot: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐ŸŒพ woman farmer: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿณ woman cook: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿผ woman feeding baby: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽ“ woman student: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽค woman singer: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽจ woman artist: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿซ woman teacher: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿญ woman factory worker: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ป woman technologist: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ผ woman office worker: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ง woman mechanic: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ฌ woman scientist: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš€ woman astronaut: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš’ woman firefighter: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏ woman with white cane: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ woman with white cane facing right: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผ woman in motorized wheelchair: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ woman in motorized wheelchair facing right: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝ woman in manual wheelchair: brown skin
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ woman in manual wheelchair facing right: brown skin
+๐Ÿ‘ฉ๐Ÿฟโ€โš•๏ธ woman health worker: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€โš–๏ธ woman judge: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€โœˆ๏ธ woman pilot: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŒพ woman farmer: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿณ woman cook: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿผ woman feeding baby: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽ“ woman student: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽค woman singer: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽจ woman artist: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿซ woman teacher: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿญ woman factory worker: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ป woman technologist: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ผ woman office worker: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ง woman mechanic: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ฌ woman scientist: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš€ woman astronaut: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš’ woman firefighter: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏ woman with white cane: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ woman with white cane facing right: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผ woman in motorized wheelchair: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ woman in motorized wheelchair facing right: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝ woman in manual wheelchair: black skin
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ woman in manual wheelchair facing right: black skin
+๐Ÿšถโ€โžก๏ธ person walking facing right
+๐Ÿšถ๐Ÿปโ€โžก๏ธ person walking facing right: white skin
+๐Ÿšถ๐Ÿผโ€โžก๏ธ person walking facing right: tan skin
+๐Ÿšถ๐Ÿฝโ€โžก๏ธ person walking facing right: olive skin
+๐Ÿšถ๐Ÿพโ€โžก๏ธ person walking facing right: brown skin
+๐Ÿšถ๐Ÿฟโ€โžก๏ธ person walking facing right: black skin
+๐ŸงŽโ€โžก๏ธ person kneeling facing right
+๐ŸงŽ๐Ÿปโ€โžก๏ธ person kneeling facing right: white skin
+๐ŸงŽ๐Ÿผโ€โžก๏ธ person kneeling facing right: tan skin
+๐ŸงŽ๐Ÿฝโ€โžก๏ธ person kneeling facing right: olive skin
+๐ŸงŽ๐Ÿพโ€โžก๏ธ person kneeling facing right: brown skin
+๐ŸงŽ๐Ÿฟโ€โžก๏ธ person kneeling facing right: black skin
+๐Ÿง‘โ€โš•๏ธ health worker
+๐Ÿง‘โ€โš–๏ธ judge
+๐Ÿง‘โ€โœˆ๏ธ pilot
+๐Ÿง‘โ€๐ŸŒพ farmer
+๐Ÿง‘โ€๐Ÿณ cook
+๐Ÿง‘โ€๐Ÿผ person feeding baby
+๐Ÿง‘โ€๐ŸŽ„ Mx Claus
+๐Ÿง‘โ€๐ŸŽ“ student
+๐Ÿง‘โ€๐ŸŽค singer
+๐Ÿง‘โ€๐ŸŽจ artist
+๐Ÿง‘โ€๐Ÿซ teacher
+๐Ÿง‘โ€๐Ÿญ factory worker
+๐Ÿง‘โ€๐Ÿ’ป technologist
+๐Ÿง‘โ€๐Ÿ’ผ office worker
+๐Ÿง‘โ€๐Ÿ”ง mechanic
+๐Ÿง‘โ€๐Ÿ”ฌ scientist
+๐Ÿง‘โ€๐Ÿš€ astronaut
+๐Ÿง‘โ€๐Ÿš’ firefighter
+๐Ÿง‘โ€๐Ÿฆฏ person with white cane
+๐Ÿง‘โ€๐Ÿฆฏโ€โžก๏ธ person with white cane facing right
+๐Ÿง‘โ€๐Ÿฆผ person in motorized wheelchair
+๐Ÿง‘โ€๐Ÿฆผโ€โžก๏ธ person in motorized wheelchair facing right
+๐Ÿง‘โ€๐Ÿฆฝ person in manual wheelchair
+๐Ÿง‘โ€๐Ÿฆฝโ€โžก๏ธ person in manual wheelchair facing right
+๐Ÿง‘๐Ÿปโ€โš•๏ธ health worker: white skin
+๐Ÿง‘๐Ÿปโ€โš–๏ธ judge: white skin
+๐Ÿง‘๐Ÿปโ€โœˆ๏ธ pilot: white skin
+๐Ÿง‘๐Ÿปโ€๐ŸŒพ farmer: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿณ cook: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿผ person feeding baby: white skin
+๐Ÿง‘๐Ÿปโ€๐ŸŽ„ Mx Claus: white skin
+๐Ÿง‘๐Ÿปโ€๐ŸŽ“ student: white skin
+๐Ÿง‘๐Ÿปโ€๐ŸŽค singer: white skin
+๐Ÿง‘๐Ÿปโ€๐ŸŽจ artist: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿซ teacher: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿญ factory worker: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿ’ป technologist: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿ’ผ office worker: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿ”ง mechanic: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿ”ฌ scientist: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿš€ astronaut: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿš’ firefighter: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿฆฏ person with white cane: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ person with white cane facing right: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿฆผ person in motorized wheelchair: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ person in motorized wheelchair facing right: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿฆฝ person in manual wheelchair: white skin
+๐Ÿง‘๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ person in manual wheelchair facing right: white skin
+๐Ÿง‘๐Ÿผโ€โš•๏ธ health worker: tan skin
+๐Ÿง‘๐Ÿผโ€โš–๏ธ judge: tan skin
+๐Ÿง‘๐Ÿผโ€โœˆ๏ธ pilot: tan skin
+๐Ÿง‘๐Ÿผโ€๐ŸŒพ farmer: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿณ cook: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿผ person feeding baby: tan skin
+๐Ÿง‘๐Ÿผโ€๐ŸŽ„ Mx Claus: tan skin
+๐Ÿง‘๐Ÿผโ€๐ŸŽ“ student: tan skin
+๐Ÿง‘๐Ÿผโ€๐ŸŽค singer: tan skin
+๐Ÿง‘๐Ÿผโ€๐ŸŽจ artist: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿซ teacher: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿญ factory worker: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿ’ป technologist: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿ’ผ office worker: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿ”ง mechanic: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿ”ฌ scientist: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿš€ astronaut: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿš’ firefighter: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿฆฏ person with white cane: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ person with white cane facing right: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿฆผ person in motorized wheelchair: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ person in motorized wheelchair facing right: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿฆฝ person in manual wheelchair: tan skin
+๐Ÿง‘๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ person in manual wheelchair facing right: tan skin
+๐Ÿง‘๐Ÿฝโ€โš•๏ธ health worker: olive skin
+๐Ÿง‘๐Ÿฝโ€โš–๏ธ judge: olive skin
+๐Ÿง‘๐Ÿฝโ€โœˆ๏ธ pilot: olive skin
+๐Ÿง‘๐Ÿฝโ€๐ŸŒพ farmer: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿณ cook: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿผ person feeding baby: olive skin
+๐Ÿง‘๐Ÿฝโ€๐ŸŽ„ Mx Claus: olive skin
+๐Ÿง‘๐Ÿฝโ€๐ŸŽ“ student: olive skin
+๐Ÿง‘๐Ÿฝโ€๐ŸŽค singer: olive skin
+๐Ÿง‘๐Ÿฝโ€๐ŸŽจ artist: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿซ teacher: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿญ factory worker: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿ’ป technologist: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿ’ผ office worker: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿ”ง mechanic: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿ”ฌ scientist: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿš€ astronaut: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿš’ firefighter: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏ person with white cane: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ person with white cane facing right: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿฆผ person in motorized wheelchair: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ person in motorized wheelchair facing right: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝ person in manual wheelchair: olive skin
+๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ person in manual wheelchair facing right: olive skin
+๐Ÿง‘๐Ÿพโ€โš•๏ธ health worker: brown skin
+๐Ÿง‘๐Ÿพโ€โš–๏ธ judge: brown skin
+๐Ÿง‘๐Ÿพโ€โœˆ๏ธ pilot: brown skin
+๐Ÿง‘๐Ÿพโ€๐ŸŒพ farmer: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿณ cook: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿผ person feeding baby: brown skin
+๐Ÿง‘๐Ÿพโ€๐ŸŽ„ Mx Claus: brown skin
+๐Ÿง‘๐Ÿพโ€๐ŸŽ“ student: brown skin
+๐Ÿง‘๐Ÿพโ€๐ŸŽค singer: brown skin
+๐Ÿง‘๐Ÿพโ€๐ŸŽจ artist: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿซ teacher: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿญ factory worker: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿ’ป technologist: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿ’ผ office worker: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿ”ง mechanic: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿ”ฌ scientist: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿš€ astronaut: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿš’ firefighter: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿฆฏ person with white cane: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ person with white cane facing right: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿฆผ person in motorized wheelchair: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ person in motorized wheelchair facing right: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿฆฝ person in manual wheelchair: brown skin
+๐Ÿง‘๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ person in manual wheelchair facing right: brown skin
+๐Ÿง‘๐Ÿฟโ€โš•๏ธ health worker: black skin
+๐Ÿง‘๐Ÿฟโ€โš–๏ธ judge: black skin
+๐Ÿง‘๐Ÿฟโ€โœˆ๏ธ pilot: black skin
+๐Ÿง‘๐Ÿฟโ€๐ŸŒพ farmer: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿณ cook: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿผ person feeding baby: black skin
+๐Ÿง‘๐Ÿฟโ€๐ŸŽ„ Mx Claus: black skin
+๐Ÿง‘๐Ÿฟโ€๐ŸŽ“ student: black skin
+๐Ÿง‘๐Ÿฟโ€๐ŸŽค singer: black skin
+๐Ÿง‘๐Ÿฟโ€๐ŸŽจ artist: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿซ teacher: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿญ factory worker: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿ’ป technologist: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿ’ผ office worker: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿ”ง mechanic: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿ”ฌ scientist: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿš€ astronaut: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿš’ firefighter: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏ person with white cane: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ person with white cane facing right: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿฆผ person in motorized wheelchair: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ person in motorized wheelchair facing right: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝ person in manual wheelchair: black skin
+๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ person in manual wheelchair facing right: black skin
+โ›น๐Ÿปโ€โ™€๏ธ woman bouncing ball: white skin
+โ›น๐Ÿปโ€โ™‚๏ธ man bouncing ball: white skin
+โ›น๐Ÿผโ€โ™€๏ธ woman bouncing ball: tan skin
+โ›น๐Ÿผโ€โ™‚๏ธ man bouncing ball: tan skin
+โ›น๐Ÿฝโ€โ™€๏ธ woman bouncing ball: olive skin
+โ›น๐Ÿฝโ€โ™‚๏ธ man bouncing ball: olive skin
+โ›น๐Ÿพโ€โ™€๏ธ woman bouncing ball: brown skin
+โ›น๐Ÿพโ€โ™‚๏ธ man bouncing ball: brown skin
+โ›น๐Ÿฟโ€โ™€๏ธ woman bouncing ball: black skin
+โ›น๐Ÿฟโ€โ™‚๏ธ man bouncing ball: black skin
+โ›น๏ธโ€โ™€๏ธ woman bouncing ball
+โ›น๏ธโ€โ™‚๏ธ man bouncing ball
+๐Ÿƒโ€โ™€๏ธ woman running
+๐Ÿƒโ€โ™€๏ธโ€โžก๏ธ woman running facing right
+๐Ÿƒโ€โ™‚๏ธ man running
+๐Ÿƒโ€โ™‚๏ธโ€โžก๏ธ man running facing right
+๐Ÿƒ๐Ÿปโ€โ™€๏ธ woman running: white skin
+๐Ÿƒ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ woman running facing right: white skin
+๐Ÿƒ๐Ÿปโ€โ™‚๏ธ man running: white skin
+๐Ÿƒ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ man running facing right: white skin
+๐Ÿƒ๐Ÿผโ€โ™€๏ธ woman running: tan skin
+๐Ÿƒ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ woman running facing right: tan skin
+๐Ÿƒ๐Ÿผโ€โ™‚๏ธ man running: tan skin
+๐Ÿƒ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ man running facing right: tan skin
+๐Ÿƒ๐Ÿฝโ€โ™€๏ธ woman running: olive skin
+๐Ÿƒ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ woman running facing right: olive skin
+๐Ÿƒ๐Ÿฝโ€โ™‚๏ธ man running: olive skin
+๐Ÿƒ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ man running facing right: olive skin
+๐Ÿƒ๐Ÿพโ€โ™€๏ธ woman running: brown skin
+๐Ÿƒ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ woman running facing right: brown skin
+๐Ÿƒ๐Ÿพโ€โ™‚๏ธ man running: brown skin
+๐Ÿƒ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ man running facing right: brown skin
+๐Ÿƒ๐Ÿฟโ€โ™€๏ธ woman running: black skin
+๐Ÿƒ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ woman running facing right: black skin
+๐Ÿƒ๐Ÿฟโ€โ™‚๏ธ man running: black skin
+๐Ÿƒ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ man running facing right: black skin
+๐Ÿ„โ€โ™€๏ธ woman surfing
+๐Ÿ„โ€โ™‚๏ธ man surfing
+๐Ÿ„๐Ÿปโ€โ™€๏ธ woman surfing: white skin
+๐Ÿ„๐Ÿปโ€โ™‚๏ธ man surfing: white skin
+๐Ÿ„๐Ÿผโ€โ™€๏ธ woman surfing: tan skin
+๐Ÿ„๐Ÿผโ€โ™‚๏ธ man surfing: tan skin
+๐Ÿ„๐Ÿฝโ€โ™€๏ธ woman surfing: olive skin
+๐Ÿ„๐Ÿฝโ€โ™‚๏ธ man surfing: olive skin
+๐Ÿ„๐Ÿพโ€โ™€๏ธ woman surfing: brown skin
+๐Ÿ„๐Ÿพโ€โ™‚๏ธ man surfing: brown skin
+๐Ÿ„๐Ÿฟโ€โ™€๏ธ woman surfing: black skin
+๐Ÿ„๐Ÿฟโ€โ™‚๏ธ man surfing: black skin
+๐ŸŠโ€โ™€๏ธ woman swimming
+๐ŸŠโ€โ™‚๏ธ man swimming
+๐ŸŠ๐Ÿปโ€โ™€๏ธ woman swimming: white skin
+๐ŸŠ๐Ÿปโ€โ™‚๏ธ man swimming: white skin
+๐ŸŠ๐Ÿผโ€โ™€๏ธ woman swimming: tan skin
+๐ŸŠ๐Ÿผโ€โ™‚๏ธ man swimming: tan skin
+๐ŸŠ๐Ÿฝโ€โ™€๏ธ woman swimming: olive skin
+๐ŸŠ๐Ÿฝโ€โ™‚๏ธ man swimming: olive skin
+๐ŸŠ๐Ÿพโ€โ™€๏ธ woman swimming: brown skin
+๐ŸŠ๐Ÿพโ€โ™‚๏ธ man swimming: brown skin
+๐ŸŠ๐Ÿฟโ€โ™€๏ธ woman swimming: black skin
+๐ŸŠ๐Ÿฟโ€โ™‚๏ธ man swimming: black skin
+๐Ÿ‹๐Ÿปโ€โ™€๏ธ woman lifting weights: white skin
+๐Ÿ‹๐Ÿปโ€โ™‚๏ธ man lifting weights: white skin
+๐Ÿ‹๐Ÿผโ€โ™€๏ธ woman lifting weights: tan skin
+๐Ÿ‹๐Ÿผโ€โ™‚๏ธ man lifting weights: tan skin
+๐Ÿ‹๐Ÿฝโ€โ™€๏ธ woman lifting weights: olive skin
+๐Ÿ‹๐Ÿฝโ€โ™‚๏ธ man lifting weights: olive skin
+๐Ÿ‹๐Ÿพโ€โ™€๏ธ woman lifting weights: brown skin
+๐Ÿ‹๐Ÿพโ€โ™‚๏ธ man lifting weights: brown skin
+๐Ÿ‹๐Ÿฟโ€โ™€๏ธ woman lifting weights: black skin
+๐Ÿ‹๐Ÿฟโ€โ™‚๏ธ man lifting weights: black skin
+๐Ÿ‹๏ธโ€โ™€๏ธ woman lifting weights
+๐Ÿ‹๏ธโ€โ™‚๏ธ man lifting weights
+๐ŸŒ๐Ÿปโ€โ™€๏ธ woman golfing: white skin
+๐ŸŒ๐Ÿปโ€โ™‚๏ธ man golfing: white skin
+๐ŸŒ๐Ÿผโ€โ™€๏ธ woman golfing: tan skin
+๐ŸŒ๐Ÿผโ€โ™‚๏ธ man golfing: tan skin
+๐ŸŒ๐Ÿฝโ€โ™€๏ธ woman golfing: olive skin
+๐ŸŒ๐Ÿฝโ€โ™‚๏ธ man golfing: olive skin
+๐ŸŒ๐Ÿพโ€โ™€๏ธ woman golfing: brown skin
+๐ŸŒ๐Ÿพโ€โ™‚๏ธ man golfing: brown skin
+๐ŸŒ๐Ÿฟโ€โ™€๏ธ woman golfing: black skin
+๐ŸŒ๐Ÿฟโ€โ™‚๏ธ man golfing: black skin
+๐ŸŒ๏ธโ€โ™€๏ธ woman golfing
+๐ŸŒ๏ธโ€โ™‚๏ธ man golfing
+๐Ÿ‘ฎโ€โ™€๏ธ woman police officer
+๐Ÿ‘ฎโ€โ™‚๏ธ man police officer
+๐Ÿ‘ฎ๐Ÿปโ€โ™€๏ธ woman police officer: white skin
+๐Ÿ‘ฎ๐Ÿปโ€โ™‚๏ธ man police officer: white skin
+๐Ÿ‘ฎ๐Ÿผโ€โ™€๏ธ woman police officer: tan skin
+๐Ÿ‘ฎ๐Ÿผโ€โ™‚๏ธ man police officer: tan skin
+๐Ÿ‘ฎ๐Ÿฝโ€โ™€๏ธ woman police officer: olive skin
+๐Ÿ‘ฎ๐Ÿฝโ€โ™‚๏ธ man police officer: olive skin
+๐Ÿ‘ฎ๐Ÿพโ€โ™€๏ธ woman police officer: brown skin
+๐Ÿ‘ฎ๐Ÿพโ€โ™‚๏ธ man police officer: brown skin
+๐Ÿ‘ฎ๐Ÿฟโ€โ™€๏ธ woman police officer: black skin
+๐Ÿ‘ฎ๐Ÿฟโ€โ™‚๏ธ man police officer: black skin
+๐Ÿ‘ฏโ€โ™€๏ธ women with bunny ears
+๐Ÿ‘ฏโ€โ™‚๏ธ men with bunny ears
+๐Ÿ‘ฐโ€โ™€๏ธ woman with veil
+๐Ÿ‘ฐโ€โ™‚๏ธ man with veil
+๐Ÿ‘ฐ๐Ÿปโ€โ™€๏ธ woman with veil: white skin
+๐Ÿ‘ฐ๐Ÿปโ€โ™‚๏ธ man with veil: white skin
+๐Ÿ‘ฐ๐Ÿผโ€โ™€๏ธ woman with veil: tan skin
+๐Ÿ‘ฐ๐Ÿผโ€โ™‚๏ธ man with veil: tan skin
+๐Ÿ‘ฐ๐Ÿฝโ€โ™€๏ธ woman with veil: olive skin
+๐Ÿ‘ฐ๐Ÿฝโ€โ™‚๏ธ man with veil: olive skin
+๐Ÿ‘ฐ๐Ÿพโ€โ™€๏ธ woman with veil: brown skin
+๐Ÿ‘ฐ๐Ÿพโ€โ™‚๏ธ man with veil: brown skin
+๐Ÿ‘ฐ๐Ÿฟโ€โ™€๏ธ woman with veil: black skin
+๐Ÿ‘ฐ๐Ÿฟโ€โ™‚๏ธ man with veil: black skin
+๐Ÿ‘ฑโ€โ™€๏ธ woman: blond hair
+๐Ÿ‘ฑโ€โ™‚๏ธ man: blond hair
+๐Ÿ‘ฑ๐Ÿปโ€โ™€๏ธ woman: white skin, blond hair
+๐Ÿ‘ฑ๐Ÿปโ€โ™‚๏ธ man: white skin, blond hair
+๐Ÿ‘ฑ๐Ÿผโ€โ™€๏ธ woman: tan skin, blond hair
+๐Ÿ‘ฑ๐Ÿผโ€โ™‚๏ธ man: tan skin, blond hair
+๐Ÿ‘ฑ๐Ÿฝโ€โ™€๏ธ woman: olive skin, blond hair
+๐Ÿ‘ฑ๐Ÿฝโ€โ™‚๏ธ man: olive skin, blond hair
+๐Ÿ‘ฑ๐Ÿพโ€โ™€๏ธ woman: brown skin, blond hair
+๐Ÿ‘ฑ๐Ÿพโ€โ™‚๏ธ man: brown skin, blond hair
+๐Ÿ‘ฑ๐Ÿฟโ€โ™€๏ธ woman: black skin, blond hair
+๐Ÿ‘ฑ๐Ÿฟโ€โ™‚๏ธ man: black skin, blond hair
+๐Ÿ‘ณโ€โ™€๏ธ woman wearing turban
+๐Ÿ‘ณโ€โ™‚๏ธ man wearing turban
+๐Ÿ‘ณ๐Ÿปโ€โ™€๏ธ woman wearing turban: white skin
+๐Ÿ‘ณ๐Ÿปโ€โ™‚๏ธ man wearing turban: white skin
+๐Ÿ‘ณ๐Ÿผโ€โ™€๏ธ woman wearing turban: tan skin
+๐Ÿ‘ณ๐Ÿผโ€โ™‚๏ธ man wearing turban: tan skin
+๐Ÿ‘ณ๐Ÿฝโ€โ™€๏ธ woman wearing turban: olive skin
+๐Ÿ‘ณ๐Ÿฝโ€โ™‚๏ธ man wearing turban: olive skin
+๐Ÿ‘ณ๐Ÿพโ€โ™€๏ธ woman wearing turban: brown skin
+๐Ÿ‘ณ๐Ÿพโ€โ™‚๏ธ man wearing turban: brown skin
+๐Ÿ‘ณ๐Ÿฟโ€โ™€๏ธ woman wearing turban: black skin
+๐Ÿ‘ณ๐Ÿฟโ€โ™‚๏ธ man wearing turban: black skin
+๐Ÿ‘ทโ€โ™€๏ธ woman construction worker
+๐Ÿ‘ทโ€โ™‚๏ธ man construction worker
+๐Ÿ‘ท๐Ÿปโ€โ™€๏ธ woman construction worker: white skin
+๐Ÿ‘ท๐Ÿปโ€โ™‚๏ธ man construction worker: white skin
+๐Ÿ‘ท๐Ÿผโ€โ™€๏ธ woman construction worker: tan skin
+๐Ÿ‘ท๐Ÿผโ€โ™‚๏ธ man construction worker: tan skin
+๐Ÿ‘ท๐Ÿฝโ€โ™€๏ธ woman construction worker: olive skin
+๐Ÿ‘ท๐Ÿฝโ€โ™‚๏ธ man construction worker: olive skin
+๐Ÿ‘ท๐Ÿพโ€โ™€๏ธ woman construction worker: brown skin
+๐Ÿ‘ท๐Ÿพโ€โ™‚๏ธ man construction worker: brown skin
+๐Ÿ‘ท๐Ÿฟโ€โ™€๏ธ woman construction worker: black skin
+๐Ÿ‘ท๐Ÿฟโ€โ™‚๏ธ man construction worker: black skin
+๐Ÿ’โ€โ™€๏ธ woman tipping hand
+๐Ÿ’โ€โ™‚๏ธ man tipping hand
+๐Ÿ’๐Ÿปโ€โ™€๏ธ woman tipping hand: white skin
+๐Ÿ’๐Ÿปโ€โ™‚๏ธ man tipping hand: white skin
+๐Ÿ’๐Ÿผโ€โ™€๏ธ woman tipping hand: tan skin
+๐Ÿ’๐Ÿผโ€โ™‚๏ธ man tipping hand: tan skin
+๐Ÿ’๐Ÿฝโ€โ™€๏ธ woman tipping hand: olive skin
+๐Ÿ’๐Ÿฝโ€โ™‚๏ธ man tipping hand: olive skin
+๐Ÿ’๐Ÿพโ€โ™€๏ธ woman tipping hand: brown skin
+๐Ÿ’๐Ÿพโ€โ™‚๏ธ man tipping hand: brown skin
+๐Ÿ’๐Ÿฟโ€โ™€๏ธ woman tipping hand: black skin
+๐Ÿ’๐Ÿฟโ€โ™‚๏ธ man tipping hand: black skin
+๐Ÿ’‚โ€โ™€๏ธ woman guard
+๐Ÿ’‚โ€โ™‚๏ธ man guard
+๐Ÿ’‚๐Ÿปโ€โ™€๏ธ woman guard: white skin
+๐Ÿ’‚๐Ÿปโ€โ™‚๏ธ man guard: white skin
+๐Ÿ’‚๐Ÿผโ€โ™€๏ธ woman guard: tan skin
+๐Ÿ’‚๐Ÿผโ€โ™‚๏ธ man guard: tan skin
+๐Ÿ’‚๐Ÿฝโ€โ™€๏ธ woman guard: olive skin
+๐Ÿ’‚๐Ÿฝโ€โ™‚๏ธ man guard: olive skin
+๐Ÿ’‚๐Ÿพโ€โ™€๏ธ woman guard: brown skin
+๐Ÿ’‚๐Ÿพโ€โ™‚๏ธ man guard: brown skin
+๐Ÿ’‚๐Ÿฟโ€โ™€๏ธ woman guard: black skin
+๐Ÿ’‚๐Ÿฟโ€โ™‚๏ธ man guard: black skin
+๐Ÿ’†โ€โ™€๏ธ woman getting massage
+๐Ÿ’†โ€โ™‚๏ธ man getting massage
+๐Ÿ’†๐Ÿปโ€โ™€๏ธ woman getting massage: white skin
+๐Ÿ’†๐Ÿปโ€โ™‚๏ธ man getting massage: white skin
+๐Ÿ’†๐Ÿผโ€โ™€๏ธ woman getting massage: tan skin
+๐Ÿ’†๐Ÿผโ€โ™‚๏ธ man getting massage: tan skin
+๐Ÿ’†๐Ÿฝโ€โ™€๏ธ woman getting massage: olive skin
+๐Ÿ’†๐Ÿฝโ€โ™‚๏ธ man getting massage: olive skin
+๐Ÿ’†๐Ÿพโ€โ™€๏ธ woman getting massage: brown skin
+๐Ÿ’†๐Ÿพโ€โ™‚๏ธ man getting massage: brown skin
+๐Ÿ’†๐Ÿฟโ€โ™€๏ธ woman getting massage: black skin
+๐Ÿ’†๐Ÿฟโ€โ™‚๏ธ man getting massage: black skin
+๐Ÿ’‡โ€โ™€๏ธ woman getting haircut
+๐Ÿ’‡โ€โ™‚๏ธ man getting haircut
+๐Ÿ’‡๐Ÿปโ€โ™€๏ธ woman getting haircut: white skin
+๐Ÿ’‡๐Ÿปโ€โ™‚๏ธ man getting haircut: white skin
+๐Ÿ’‡๐Ÿผโ€โ™€๏ธ woman getting haircut: tan skin
+๐Ÿ’‡๐Ÿผโ€โ™‚๏ธ man getting haircut: tan skin
+๐Ÿ’‡๐Ÿฝโ€โ™€๏ธ woman getting haircut: olive skin
+๐Ÿ’‡๐Ÿฝโ€โ™‚๏ธ man getting haircut: olive skin
+๐Ÿ’‡๐Ÿพโ€โ™€๏ธ woman getting haircut: brown skin
+๐Ÿ’‡๐Ÿพโ€โ™‚๏ธ man getting haircut: brown skin
+๐Ÿ’‡๐Ÿฟโ€โ™€๏ธ woman getting haircut: black skin
+๐Ÿ’‡๐Ÿฟโ€โ™‚๏ธ man getting haircut: black skin
+๐Ÿ•ต๐Ÿปโ€โ™€๏ธ woman detective: white skin
+๐Ÿ•ต๐Ÿปโ€โ™‚๏ธ man detective: white skin
+๐Ÿ•ต๐Ÿผโ€โ™€๏ธ woman detective: tan skin
+๐Ÿ•ต๐Ÿผโ€โ™‚๏ธ man detective: tan skin
+๐Ÿ•ต๐Ÿฝโ€โ™€๏ธ woman detective: olive skin
+๐Ÿ•ต๐Ÿฝโ€โ™‚๏ธ man detective: olive skin
+๐Ÿ•ต๐Ÿพโ€โ™€๏ธ woman detective: brown skin
+๐Ÿ•ต๐Ÿพโ€โ™‚๏ธ man detective: brown skin
+๐Ÿ•ต๐Ÿฟโ€โ™€๏ธ woman detective: black skin
+๐Ÿ•ต๐Ÿฟโ€โ™‚๏ธ man detective: black skin
+๐Ÿ•ต๏ธโ€โ™€๏ธ woman detective
+๐Ÿ•ต๏ธโ€โ™‚๏ธ man detective
+๐Ÿ™…โ€โ™€๏ธ woman gesturing NO
+๐Ÿ™…โ€โ™‚๏ธ man gesturing NO
+๐Ÿ™…๐Ÿปโ€โ™€๏ธ woman gesturing NO: white skin
+๐Ÿ™…๐Ÿปโ€โ™‚๏ธ man gesturing NO: white skin
+๐Ÿ™…๐Ÿผโ€โ™€๏ธ woman gesturing NO: tan skin
+๐Ÿ™…๐Ÿผโ€โ™‚๏ธ man gesturing NO: tan skin
+๐Ÿ™…๐Ÿฝโ€โ™€๏ธ woman gesturing NO: olive skin
+๐Ÿ™…๐Ÿฝโ€โ™‚๏ธ man gesturing NO: olive skin
+๐Ÿ™…๐Ÿพโ€โ™€๏ธ woman gesturing NO: brown skin
+๐Ÿ™…๐Ÿพโ€โ™‚๏ธ man gesturing NO: brown skin
+๐Ÿ™…๐Ÿฟโ€โ™€๏ธ woman gesturing NO: black skin
+๐Ÿ™…๐Ÿฟโ€โ™‚๏ธ man gesturing NO: black skin
+๐Ÿ™†โ€โ™€๏ธ woman gesturing OK
+๐Ÿ™†โ€โ™‚๏ธ man gesturing OK
+๐Ÿ™†๐Ÿปโ€โ™€๏ธ woman gesturing OK: white skin
+๐Ÿ™†๐Ÿปโ€โ™‚๏ธ man gesturing OK: white skin
+๐Ÿ™†๐Ÿผโ€โ™€๏ธ woman gesturing OK: tan skin
+๐Ÿ™†๐Ÿผโ€โ™‚๏ธ man gesturing OK: tan skin
+๐Ÿ™†๐Ÿฝโ€โ™€๏ธ woman gesturing OK: olive skin
+๐Ÿ™†๐Ÿฝโ€โ™‚๏ธ man gesturing OK: olive skin
+๐Ÿ™†๐Ÿพโ€โ™€๏ธ woman gesturing OK: brown skin
+๐Ÿ™†๐Ÿพโ€โ™‚๏ธ man gesturing OK: brown skin
+๐Ÿ™†๐Ÿฟโ€โ™€๏ธ woman gesturing OK: black skin
+๐Ÿ™†๐Ÿฟโ€โ™‚๏ธ man gesturing OK: black skin
+๐Ÿ™‡โ€โ™€๏ธ woman bowing
+๐Ÿ™‡โ€โ™‚๏ธ man bowing
+๐Ÿ™‡๐Ÿปโ€โ™€๏ธ woman bowing: white skin
+๐Ÿ™‡๐Ÿปโ€โ™‚๏ธ man bowing: white skin
+๐Ÿ™‡๐Ÿผโ€โ™€๏ธ woman bowing: tan skin
+๐Ÿ™‡๐Ÿผโ€โ™‚๏ธ man bowing: tan skin
+๐Ÿ™‡๐Ÿฝโ€โ™€๏ธ woman bowing: olive skin
+๐Ÿ™‡๐Ÿฝโ€โ™‚๏ธ man bowing: olive skin
+๐Ÿ™‡๐Ÿพโ€โ™€๏ธ woman bowing: brown skin
+๐Ÿ™‡๐Ÿพโ€โ™‚๏ธ man bowing: brown skin
+๐Ÿ™‡๐Ÿฟโ€โ™€๏ธ woman bowing: black skin
+๐Ÿ™‡๐Ÿฟโ€โ™‚๏ธ man bowing: black skin
+๐Ÿ™‹โ€โ™€๏ธ woman raising hand
+๐Ÿ™‹โ€โ™‚๏ธ man raising hand
+๐Ÿ™‹๐Ÿปโ€โ™€๏ธ woman raising hand: white skin
+๐Ÿ™‹๐Ÿปโ€โ™‚๏ธ man raising hand: white skin
+๐Ÿ™‹๐Ÿผโ€โ™€๏ธ woman raising hand: tan skin
+๐Ÿ™‹๐Ÿผโ€โ™‚๏ธ man raising hand: tan skin
+๐Ÿ™‹๐Ÿฝโ€โ™€๏ธ woman raising hand: olive skin
+๐Ÿ™‹๐Ÿฝโ€โ™‚๏ธ man raising hand: olive skin
+๐Ÿ™‹๐Ÿพโ€โ™€๏ธ woman raising hand: brown skin
+๐Ÿ™‹๐Ÿพโ€โ™‚๏ธ man raising hand: brown skin
+๐Ÿ™‹๐Ÿฟโ€โ™€๏ธ woman raising hand: black skin
+๐Ÿ™‹๐Ÿฟโ€โ™‚๏ธ man raising hand: black skin
+๐Ÿ™โ€โ™€๏ธ woman frowning
+๐Ÿ™โ€โ™‚๏ธ man frowning
+๐Ÿ™๐Ÿปโ€โ™€๏ธ woman frowning: white skin
+๐Ÿ™๐Ÿปโ€โ™‚๏ธ man frowning: white skin
+๐Ÿ™๐Ÿผโ€โ™€๏ธ woman frowning: tan skin
+๐Ÿ™๐Ÿผโ€โ™‚๏ธ man frowning: tan skin
+๐Ÿ™๐Ÿฝโ€โ™€๏ธ woman frowning: olive skin
+๐Ÿ™๐Ÿฝโ€โ™‚๏ธ man frowning: olive skin
+๐Ÿ™๐Ÿพโ€โ™€๏ธ woman frowning: brown skin
+๐Ÿ™๐Ÿพโ€โ™‚๏ธ man frowning: brown skin
+๐Ÿ™๐Ÿฟโ€โ™€๏ธ woman frowning: black skin
+๐Ÿ™๐Ÿฟโ€โ™‚๏ธ man frowning: black skin
+๐Ÿ™Žโ€โ™€๏ธ woman pouting
+๐Ÿ™Žโ€โ™‚๏ธ man pouting
+๐Ÿ™Ž๐Ÿปโ€โ™€๏ธ woman pouting: white skin
+๐Ÿ™Ž๐Ÿปโ€โ™‚๏ธ man pouting: white skin
+๐Ÿ™Ž๐Ÿผโ€โ™€๏ธ woman pouting: tan skin
+๐Ÿ™Ž๐Ÿผโ€โ™‚๏ธ man pouting: tan skin
+๐Ÿ™Ž๐Ÿฝโ€โ™€๏ธ woman pouting: olive skin
+๐Ÿ™Ž๐Ÿฝโ€โ™‚๏ธ man pouting: olive skin
+๐Ÿ™Ž๐Ÿพโ€โ™€๏ธ woman pouting: brown skin
+๐Ÿ™Ž๐Ÿพโ€โ™‚๏ธ man pouting: brown skin
+๐Ÿ™Ž๐Ÿฟโ€โ™€๏ธ woman pouting: black skin
+๐Ÿ™Ž๐Ÿฟโ€โ™‚๏ธ man pouting: black skin
+๐Ÿšฃโ€โ™€๏ธ woman rowing boat
+๐Ÿšฃโ€โ™‚๏ธ man rowing boat
+๐Ÿšฃ๐Ÿปโ€โ™€๏ธ woman rowing boat: white skin
+๐Ÿšฃ๐Ÿปโ€โ™‚๏ธ man rowing boat: white skin
+๐Ÿšฃ๐Ÿผโ€โ™€๏ธ woman rowing boat: tan skin
+๐Ÿšฃ๐Ÿผโ€โ™‚๏ธ man rowing boat: tan skin
+๐Ÿšฃ๐Ÿฝโ€โ™€๏ธ woman rowing boat: olive skin
+๐Ÿšฃ๐Ÿฝโ€โ™‚๏ธ man rowing boat: olive skin
+๐Ÿšฃ๐Ÿพโ€โ™€๏ธ woman rowing boat: brown skin
+๐Ÿšฃ๐Ÿพโ€โ™‚๏ธ man rowing boat: brown skin
+๐Ÿšฃ๐Ÿฟโ€โ™€๏ธ woman rowing boat: black skin
+๐Ÿšฃ๐Ÿฟโ€โ™‚๏ธ man rowing boat: black skin
+๐Ÿšดโ€โ™€๏ธ woman biking
+๐Ÿšดโ€โ™‚๏ธ man biking
+๐Ÿšด๐Ÿปโ€โ™€๏ธ woman biking: white skin
+๐Ÿšด๐Ÿปโ€โ™‚๏ธ man biking: white skin
+๐Ÿšด๐Ÿผโ€โ™€๏ธ woman biking: tan skin
+๐Ÿšด๐Ÿผโ€โ™‚๏ธ man biking: tan skin
+๐Ÿšด๐Ÿฝโ€โ™€๏ธ woman biking: olive skin
+๐Ÿšด๐Ÿฝโ€โ™‚๏ธ man biking: olive skin
+๐Ÿšด๐Ÿพโ€โ™€๏ธ woman biking: brown skin
+๐Ÿšด๐Ÿพโ€โ™‚๏ธ man biking: brown skin
+๐Ÿšด๐Ÿฟโ€โ™€๏ธ woman biking: black skin
+๐Ÿšด๐Ÿฟโ€โ™‚๏ธ man biking: black skin
+๐Ÿšตโ€โ™€๏ธ woman mountain biking
+๐Ÿšตโ€โ™‚๏ธ man mountain biking
+๐Ÿšต๐Ÿปโ€โ™€๏ธ woman mountain biking: white skin
+๐Ÿšต๐Ÿปโ€โ™‚๏ธ man mountain biking: white skin
+๐Ÿšต๐Ÿผโ€โ™€๏ธ woman mountain biking: tan skin
+๐Ÿšต๐Ÿผโ€โ™‚๏ธ man mountain biking: tan skin
+๐Ÿšต๐Ÿฝโ€โ™€๏ธ woman mountain biking: olive skin
+๐Ÿšต๐Ÿฝโ€โ™‚๏ธ man mountain biking: olive skin
+๐Ÿšต๐Ÿพโ€โ™€๏ธ woman mountain biking: brown skin
+๐Ÿšต๐Ÿพโ€โ™‚๏ธ man mountain biking: brown skin
+๐Ÿšต๐Ÿฟโ€โ™€๏ธ woman mountain biking: black skin
+๐Ÿšต๐Ÿฟโ€โ™‚๏ธ man mountain biking: black skin
+๐Ÿšถโ€โ™€๏ธ woman walking
+๐Ÿšถโ€โ™€๏ธโ€โžก๏ธ woman walking facing right
+๐Ÿšถโ€โ™‚๏ธ man walking
+๐Ÿšถโ€โ™‚๏ธโ€โžก๏ธ man walking facing right
+๐Ÿšถ๐Ÿปโ€โ™€๏ธ woman walking: white skin
+๐Ÿšถ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ woman walking facing right: white skin
+๐Ÿšถ๐Ÿปโ€โ™‚๏ธ man walking: white skin
+๐Ÿšถ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ man walking facing right: white skin
+๐Ÿšถ๐Ÿผโ€โ™€๏ธ woman walking: tan skin
+๐Ÿšถ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ woman walking facing right: tan skin
+๐Ÿšถ๐Ÿผโ€โ™‚๏ธ man walking: tan skin
+๐Ÿšถ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ man walking facing right: tan skin
+๐Ÿšถ๐Ÿฝโ€โ™€๏ธ woman walking: olive skin
+๐Ÿšถ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ woman walking facing right: olive skin
+๐Ÿšถ๐Ÿฝโ€โ™‚๏ธ man walking: olive skin
+๐Ÿšถ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ man walking facing right: olive skin
+๐Ÿšถ๐Ÿพโ€โ™€๏ธ woman walking: brown skin
+๐Ÿšถ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ woman walking facing right: brown skin
+๐Ÿšถ๐Ÿพโ€โ™‚๏ธ man walking: brown skin
+๐Ÿšถ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ man walking facing right: brown skin
+๐Ÿšถ๐Ÿฟโ€โ™€๏ธ woman walking: black skin
+๐Ÿšถ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ woman walking facing right: black skin
+๐Ÿšถ๐Ÿฟโ€โ™‚๏ธ man walking: black skin
+๐Ÿšถ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ man walking facing right: black skin
+๐Ÿคฆโ€โ™€๏ธ woman facepalming
+๐Ÿคฆโ€โ™‚๏ธ man facepalming
+๐Ÿคฆ๐Ÿปโ€โ™€๏ธ woman facepalming: white skin
+๐Ÿคฆ๐Ÿปโ€โ™‚๏ธ man facepalming: white skin
+๐Ÿคฆ๐Ÿผโ€โ™€๏ธ woman facepalming: tan skin
+๐Ÿคฆ๐Ÿผโ€โ™‚๏ธ man facepalming: tan skin
+๐Ÿคฆ๐Ÿฝโ€โ™€๏ธ woman facepalming: olive skin
+๐Ÿคฆ๐Ÿฝโ€โ™‚๏ธ man facepalming: olive skin
+๐Ÿคฆ๐Ÿพโ€โ™€๏ธ woman facepalming: brown skin
+๐Ÿคฆ๐Ÿพโ€โ™‚๏ธ man facepalming: brown skin
+๐Ÿคฆ๐Ÿฟโ€โ™€๏ธ woman facepalming: black skin
+๐Ÿคฆ๐Ÿฟโ€โ™‚๏ธ man facepalming: black skin
+๐Ÿคตโ€โ™€๏ธ woman in tuxedo
+๐Ÿคตโ€โ™‚๏ธ man in tuxedo
+๐Ÿคต๐Ÿปโ€โ™€๏ธ woman in tuxedo: white skin
+๐Ÿคต๐Ÿปโ€โ™‚๏ธ man in tuxedo: white skin
+๐Ÿคต๐Ÿผโ€โ™€๏ธ woman in tuxedo: tan skin
+๐Ÿคต๐Ÿผโ€โ™‚๏ธ man in tuxedo: tan skin
+๐Ÿคต๐Ÿฝโ€โ™€๏ธ woman in tuxedo: olive skin
+๐Ÿคต๐Ÿฝโ€โ™‚๏ธ man in tuxedo: olive skin
+๐Ÿคต๐Ÿพโ€โ™€๏ธ woman in tuxedo: brown skin
+๐Ÿคต๐Ÿพโ€โ™‚๏ธ man in tuxedo: brown skin
+๐Ÿคต๐Ÿฟโ€โ™€๏ธ woman in tuxedo: black skin
+๐Ÿคต๐Ÿฟโ€โ™‚๏ธ man in tuxedo: black skin
+๐Ÿคทโ€โ™€๏ธ woman shrugging
+๐Ÿคทโ€โ™‚๏ธ man shrugging
+๐Ÿคท๐Ÿปโ€โ™€๏ธ woman shrugging: white skin
+๐Ÿคท๐Ÿปโ€โ™‚๏ธ man shrugging: white skin
+๐Ÿคท๐Ÿผโ€โ™€๏ธ woman shrugging: tan skin
+๐Ÿคท๐Ÿผโ€โ™‚๏ธ man shrugging: tan skin
+๐Ÿคท๐Ÿฝโ€โ™€๏ธ woman shrugging: olive skin
+๐Ÿคท๐Ÿฝโ€โ™‚๏ธ man shrugging: olive skin
+๐Ÿคท๐Ÿพโ€โ™€๏ธ woman shrugging: brown skin
+๐Ÿคท๐Ÿพโ€โ™‚๏ธ man shrugging: brown skin
+๐Ÿคท๐Ÿฟโ€โ™€๏ธ woman shrugging: black skin
+๐Ÿคท๐Ÿฟโ€โ™‚๏ธ man shrugging: black skin
+๐Ÿคธโ€โ™€๏ธ woman cartwheeling
+๐Ÿคธโ€โ™‚๏ธ man cartwheeling
+๐Ÿคธ๐Ÿปโ€โ™€๏ธ woman cartwheeling: white skin
+๐Ÿคธ๐Ÿปโ€โ™‚๏ธ man cartwheeling: white skin
+๐Ÿคธ๐Ÿผโ€โ™€๏ธ woman cartwheeling: tan skin
+๐Ÿคธ๐Ÿผโ€โ™‚๏ธ man cartwheeling: tan skin
+๐Ÿคธ๐Ÿฝโ€โ™€๏ธ woman cartwheeling: olive skin
+๐Ÿคธ๐Ÿฝโ€โ™‚๏ธ man cartwheeling: olive skin
+๐Ÿคธ๐Ÿพโ€โ™€๏ธ woman cartwheeling: brown skin
+๐Ÿคธ๐Ÿพโ€โ™‚๏ธ man cartwheeling: brown skin
+๐Ÿคธ๐Ÿฟโ€โ™€๏ธ woman cartwheeling: black skin
+๐Ÿคธ๐Ÿฟโ€โ™‚๏ธ man cartwheeling: black skin
+๐Ÿคนโ€โ™€๏ธ woman juggling
+๐Ÿคนโ€โ™‚๏ธ man juggling
+๐Ÿคน๐Ÿปโ€โ™€๏ธ woman juggling: white skin
+๐Ÿคน๐Ÿปโ€โ™‚๏ธ man juggling: white skin
+๐Ÿคน๐Ÿผโ€โ™€๏ธ woman juggling: tan skin
+๐Ÿคน๐Ÿผโ€โ™‚๏ธ man juggling: tan skin
+๐Ÿคน๐Ÿฝโ€โ™€๏ธ woman juggling: olive skin
+๐Ÿคน๐Ÿฝโ€โ™‚๏ธ man juggling: olive skin
+๐Ÿคน๐Ÿพโ€โ™€๏ธ woman juggling: brown skin
+๐Ÿคน๐Ÿพโ€โ™‚๏ธ man juggling: brown skin
+๐Ÿคน๐Ÿฟโ€โ™€๏ธ woman juggling: black skin
+๐Ÿคน๐Ÿฟโ€โ™‚๏ธ man juggling: black skin
+๐Ÿคผโ€โ™€๏ธ women wrestling
+๐Ÿคผโ€โ™‚๏ธ men wrestling
+๐Ÿคฝโ€โ™€๏ธ woman playing water polo
+๐Ÿคฝโ€โ™‚๏ธ man playing water polo
+๐Ÿคฝ๐Ÿปโ€โ™€๏ธ woman playing water polo: white skin
+๐Ÿคฝ๐Ÿปโ€โ™‚๏ธ man playing water polo: white skin
+๐Ÿคฝ๐Ÿผโ€โ™€๏ธ woman playing water polo: tan skin
+๐Ÿคฝ๐Ÿผโ€โ™‚๏ธ man playing water polo: tan skin
+๐Ÿคฝ๐Ÿฝโ€โ™€๏ธ woman playing water polo: olive skin
+๐Ÿคฝ๐Ÿฝโ€โ™‚๏ธ man playing water polo: olive skin
+๐Ÿคฝ๐Ÿพโ€โ™€๏ธ woman playing water polo: brown skin
+๐Ÿคฝ๐Ÿพโ€โ™‚๏ธ man playing water polo: brown skin
+๐Ÿคฝ๐Ÿฟโ€โ™€๏ธ woman playing water polo: black skin
+๐Ÿคฝ๐Ÿฟโ€โ™‚๏ธ man playing water polo: black skin
+๐Ÿคพโ€โ™€๏ธ woman playing handball
+๐Ÿคพโ€โ™‚๏ธ man playing handball
+๐Ÿคพ๐Ÿปโ€โ™€๏ธ woman playing handball: white skin
+๐Ÿคพ๐Ÿปโ€โ™‚๏ธ man playing handball: white skin
+๐Ÿคพ๐Ÿผโ€โ™€๏ธ woman playing handball: tan skin
+๐Ÿคพ๐Ÿผโ€โ™‚๏ธ man playing handball: tan skin
+๐Ÿคพ๐Ÿฝโ€โ™€๏ธ woman playing handball: olive skin
+๐Ÿคพ๐Ÿฝโ€โ™‚๏ธ man playing handball: olive skin
+๐Ÿคพ๐Ÿพโ€โ™€๏ธ woman playing handball: brown skin
+๐Ÿคพ๐Ÿพโ€โ™‚๏ธ man playing handball: brown skin
+๐Ÿคพ๐Ÿฟโ€โ™€๏ธ woman playing handball: black skin
+๐Ÿคพ๐Ÿฟโ€โ™‚๏ธ man playing handball: black skin
+๐Ÿฆธโ€โ™€๏ธ woman superhero
+๐Ÿฆธโ€โ™‚๏ธ man superhero
+๐Ÿฆธ๐Ÿปโ€โ™€๏ธ woman superhero: white skin
+๐Ÿฆธ๐Ÿปโ€โ™‚๏ธ man superhero: white skin
+๐Ÿฆธ๐Ÿผโ€โ™€๏ธ woman superhero: tan skin
+๐Ÿฆธ๐Ÿผโ€โ™‚๏ธ man superhero: tan skin
+๐Ÿฆธ๐Ÿฝโ€โ™€๏ธ woman superhero: olive skin
+๐Ÿฆธ๐Ÿฝโ€โ™‚๏ธ man superhero: olive skin
+๐Ÿฆธ๐Ÿพโ€โ™€๏ธ woman superhero: brown skin
+๐Ÿฆธ๐Ÿพโ€โ™‚๏ธ man superhero: brown skin
+๐Ÿฆธ๐Ÿฟโ€โ™€๏ธ woman superhero: black skin
+๐Ÿฆธ๐Ÿฟโ€โ™‚๏ธ man superhero: black skin
+๐Ÿฆนโ€โ™€๏ธ woman supervillain
+๐Ÿฆนโ€โ™‚๏ธ man supervillain
+๐Ÿฆน๐Ÿปโ€โ™€๏ธ woman supervillain: white skin
+๐Ÿฆน๐Ÿปโ€โ™‚๏ธ man supervillain: white skin
+๐Ÿฆน๐Ÿผโ€โ™€๏ธ woman supervillain: tan skin
+๐Ÿฆน๐Ÿผโ€โ™‚๏ธ man supervillain: tan skin
+๐Ÿฆน๐Ÿฝโ€โ™€๏ธ woman supervillain: olive skin
+๐Ÿฆน๐Ÿฝโ€โ™‚๏ธ man supervillain: olive skin
+๐Ÿฆน๐Ÿพโ€โ™€๏ธ woman supervillain: brown skin
+๐Ÿฆน๐Ÿพโ€โ™‚๏ธ man supervillain: brown skin
+๐Ÿฆน๐Ÿฟโ€โ™€๏ธ woman supervillain: black skin
+๐Ÿฆน๐Ÿฟโ€โ™‚๏ธ man supervillain: black skin
+๐Ÿงโ€โ™€๏ธ woman standing
+๐Ÿงโ€โ™‚๏ธ man standing
+๐Ÿง๐Ÿปโ€โ™€๏ธ woman standing: white skin
+๐Ÿง๐Ÿปโ€โ™‚๏ธ man standing: white skin
+๐Ÿง๐Ÿผโ€โ™€๏ธ woman standing: tan skin
+๐Ÿง๐Ÿผโ€โ™‚๏ธ man standing: tan skin
+๐Ÿง๐Ÿฝโ€โ™€๏ธ woman standing: olive skin
+๐Ÿง๐Ÿฝโ€โ™‚๏ธ man standing: olive skin
+๐Ÿง๐Ÿพโ€โ™€๏ธ woman standing: brown skin
+๐Ÿง๐Ÿพโ€โ™‚๏ธ man standing: brown skin
+๐Ÿง๐Ÿฟโ€โ™€๏ธ woman standing: black skin
+๐Ÿง๐Ÿฟโ€โ™‚๏ธ man standing: black skin
+๐ŸงŽโ€โ™€๏ธ woman kneeling
+๐ŸงŽโ€โ™€๏ธโ€โžก๏ธ woman kneeling facing right
+๐ŸงŽโ€โ™‚๏ธ man kneeling
+๐ŸงŽโ€โ™‚๏ธโ€โžก๏ธ man kneeling facing right
+๐ŸงŽ๐Ÿปโ€โ™€๏ธ woman kneeling: white skin
+๐ŸงŽ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ woman kneeling facing right: white skin
+๐ŸงŽ๐Ÿปโ€โ™‚๏ธ man kneeling: white skin
+๐ŸงŽ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ man kneeling facing right: white skin
+๐ŸงŽ๐Ÿผโ€โ™€๏ธ woman kneeling: tan skin
+๐ŸงŽ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ woman kneeling facing right: tan skin
+๐ŸงŽ๐Ÿผโ€โ™‚๏ธ man kneeling: tan skin
+๐ŸงŽ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ man kneeling facing right: tan skin
+๐ŸงŽ๐Ÿฝโ€โ™€๏ธ woman kneeling: olive skin
+๐ŸงŽ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ woman kneeling facing right: olive skin
+๐ŸงŽ๐Ÿฝโ€โ™‚๏ธ man kneeling: olive skin
+๐ŸงŽ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ man kneeling facing right: olive skin
+๐ŸงŽ๐Ÿพโ€โ™€๏ธ woman kneeling: brown skin
+๐ŸงŽ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ woman kneeling facing right: brown skin
+๐ŸงŽ๐Ÿพโ€โ™‚๏ธ man kneeling: brown skin
+๐ŸงŽ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ man kneeling facing right: brown skin
+๐ŸงŽ๐Ÿฟโ€โ™€๏ธ woman kneeling: black skin
+๐ŸงŽ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ woman kneeling facing right: black skin
+๐ŸงŽ๐Ÿฟโ€โ™‚๏ธ man kneeling: black skin
+๐ŸงŽ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ man kneeling facing right: black skin
+๐Ÿงโ€โ™€๏ธ deaf woman
+๐Ÿงโ€โ™‚๏ธ deaf man
+๐Ÿง๐Ÿปโ€โ™€๏ธ deaf woman: white skin
+๐Ÿง๐Ÿปโ€โ™‚๏ธ deaf man: white skin
+๐Ÿง๐Ÿผโ€โ™€๏ธ deaf woman: tan skin
+๐Ÿง๐Ÿผโ€โ™‚๏ธ deaf man: tan skin
+๐Ÿง๐Ÿฝโ€โ™€๏ธ deaf woman: olive skin
+๐Ÿง๐Ÿฝโ€โ™‚๏ธ deaf man: olive skin
+๐Ÿง๐Ÿพโ€โ™€๏ธ deaf woman: brown skin
+๐Ÿง๐Ÿพโ€โ™‚๏ธ deaf man: brown skin
+๐Ÿง๐Ÿฟโ€โ™€๏ธ deaf woman: black skin
+๐Ÿง๐Ÿฟโ€โ™‚๏ธ deaf man: black skin
+๐Ÿง”โ€โ™‚๏ธ man: beard
+๐Ÿง”๐Ÿปโ€โ™‚๏ธ man: white skin, beard
+๐Ÿง”๐Ÿผโ€โ™‚๏ธ man: tan skin, beard
+๐Ÿง”๐Ÿฝโ€โ™‚๏ธ man: olive skin, beard
+๐Ÿง”๐Ÿพโ€โ™‚๏ธ man: brown skin, beard
+๐Ÿง”๐Ÿฟโ€โ™‚๏ธ man: black skin, beard
+๐Ÿง–โ€โ™€๏ธ woman in steamy room
+๐Ÿง–โ€โ™‚๏ธ man in steamy room
+๐Ÿง–๐Ÿปโ€โ™€๏ธ woman in steamy room: white skin
+๐Ÿง–๐Ÿปโ€โ™‚๏ธ man in steamy room: white skin
+๐Ÿง–๐Ÿผโ€โ™€๏ธ woman in steamy room: tan skin
+๐Ÿง–๐Ÿผโ€โ™‚๏ธ man in steamy room: tan skin
+๐Ÿง–๐Ÿฝโ€โ™€๏ธ woman in steamy room: olive skin
+๐Ÿง–๐Ÿฝโ€โ™‚๏ธ man in steamy room: olive skin
+๐Ÿง–๐Ÿพโ€โ™€๏ธ woman in steamy room: brown skin
+๐Ÿง–๐Ÿพโ€โ™‚๏ธ man in steamy room: brown skin
+๐Ÿง–๐Ÿฟโ€โ™€๏ธ woman in steamy room: black skin
+๐Ÿง–๐Ÿฟโ€โ™‚๏ธ man in steamy room: black skin
+๐Ÿง—โ€โ™€๏ธ woman climbing
+๐Ÿง—โ€โ™‚๏ธ man climbing
+๐Ÿง—๐Ÿปโ€โ™€๏ธ woman climbing: white skin
+๐Ÿง—๐Ÿปโ€โ™‚๏ธ man climbing: white skin
+๐Ÿง—๐Ÿผโ€โ™€๏ธ woman climbing: tan skin
+๐Ÿง—๐Ÿผโ€โ™‚๏ธ man climbing: tan skin
+๐Ÿง—๐Ÿฝโ€โ™€๏ธ woman climbing: olive skin
+๐Ÿง—๐Ÿฝโ€โ™‚๏ธ man climbing: olive skin
+๐Ÿง—๐Ÿพโ€โ™€๏ธ woman climbing: brown skin
+๐Ÿง—๐Ÿพโ€โ™‚๏ธ man climbing: brown skin
+๐Ÿง—๐Ÿฟโ€โ™€๏ธ woman climbing: black skin
+๐Ÿง—๐Ÿฟโ€โ™‚๏ธ man climbing: black skin
+๐Ÿง˜โ€โ™€๏ธ woman in lotus position
+๐Ÿง˜โ€โ™‚๏ธ man in lotus position
+๐Ÿง˜๐Ÿปโ€โ™€๏ธ woman in lotus position: white skin
+๐Ÿง˜๐Ÿปโ€โ™‚๏ธ man in lotus position: white skin
+๐Ÿง˜๐Ÿผโ€โ™€๏ธ woman in lotus position: tan skin
+๐Ÿง˜๐Ÿผโ€โ™‚๏ธ man in lotus position: tan skin
+๐Ÿง˜๐Ÿฝโ€โ™€๏ธ woman in lotus position: olive skin
+๐Ÿง˜๐Ÿฝโ€โ™‚๏ธ man in lotus position: olive skin
+๐Ÿง˜๐Ÿพโ€โ™€๏ธ woman in lotus position: brown skin
+๐Ÿง˜๐Ÿพโ€โ™‚๏ธ man in lotus position: brown skin
+๐Ÿง˜๐Ÿฟโ€โ™€๏ธ woman in lotus position: black skin
+๐Ÿง˜๐Ÿฟโ€โ™‚๏ธ man in lotus position: black skin
+๐Ÿง™โ€โ™€๏ธ woman mage
+๐Ÿง™โ€โ™‚๏ธ man mage
+๐Ÿง™๐Ÿปโ€โ™€๏ธ woman mage: white skin
+๐Ÿง™๐Ÿปโ€โ™‚๏ธ man mage: white skin
+๐Ÿง™๐Ÿผโ€โ™€๏ธ woman mage: tan skin
+๐Ÿง™๐Ÿผโ€โ™‚๏ธ man mage: tan skin
+๐Ÿง™๐Ÿฝโ€โ™€๏ธ woman mage: olive skin
+๐Ÿง™๐Ÿฝโ€โ™‚๏ธ man mage: olive skin
+๐Ÿง™๐Ÿพโ€โ™€๏ธ woman mage: brown skin
+๐Ÿง™๐Ÿพโ€โ™‚๏ธ man mage: brown skin
+๐Ÿง™๐Ÿฟโ€โ™€๏ธ woman mage: black skin
+๐Ÿง™๐Ÿฟโ€โ™‚๏ธ man mage: black skin
+๐Ÿงšโ€โ™€๏ธ woman fairy
+๐Ÿงšโ€โ™‚๏ธ man fairy
+๐Ÿงš๐Ÿปโ€โ™€๏ธ woman fairy: white skin
+๐Ÿงš๐Ÿปโ€โ™‚๏ธ man fairy: white skin
+๐Ÿงš๐Ÿผโ€โ™€๏ธ woman fairy: tan skin
+๐Ÿงš๐Ÿผโ€โ™‚๏ธ man fairy: tan skin
+๐Ÿงš๐Ÿฝโ€โ™€๏ธ woman fairy: olive skin
+๐Ÿงš๐Ÿฝโ€โ™‚๏ธ man fairy: olive skin
+๐Ÿงš๐Ÿพโ€โ™€๏ธ woman fairy: brown skin
+๐Ÿงš๐Ÿพโ€โ™‚๏ธ man fairy: brown skin
+๐Ÿงš๐Ÿฟโ€โ™€๏ธ woman fairy: black skin
+๐Ÿงš๐Ÿฟโ€โ™‚๏ธ man fairy: black skin
+๐Ÿง›โ€โ™€๏ธ woman vampire
+๐Ÿง›โ€โ™‚๏ธ man vampire
+๐Ÿง›๐Ÿปโ€โ™€๏ธ woman vampire: white skin
+๐Ÿง›๐Ÿปโ€โ™‚๏ธ man vampire: white skin
+๐Ÿง›๐Ÿผโ€โ™€๏ธ woman vampire: tan skin
+๐Ÿง›๐Ÿผโ€โ™‚๏ธ man vampire: tan skin
+๐Ÿง›๐Ÿฝโ€โ™€๏ธ woman vampire: olive skin
+๐Ÿง›๐Ÿฝโ€โ™‚๏ธ man vampire: olive skin
+๐Ÿง›๐Ÿพโ€โ™€๏ธ woman vampire: brown skin
+๐Ÿง›๐Ÿพโ€โ™‚๏ธ man vampire: brown skin
+๐Ÿง›๐Ÿฟโ€โ™€๏ธ woman vampire: black skin
+๐Ÿง›๐Ÿฟโ€โ™‚๏ธ man vampire: black skin
+๐Ÿงœโ€โ™€๏ธ mermaid
+๐Ÿงœโ€โ™‚๏ธ merman
+๐Ÿงœ๐Ÿปโ€โ™€๏ธ mermaid: white skin
+๐Ÿงœ๐Ÿปโ€โ™‚๏ธ merman: white skin
+๐Ÿงœ๐Ÿผโ€โ™€๏ธ mermaid: tan skin
+๐Ÿงœ๐Ÿผโ€โ™‚๏ธ merman: tan skin
+๐Ÿงœ๐Ÿฝโ€โ™€๏ธ mermaid: olive skin
+๐Ÿงœ๐Ÿฝโ€โ™‚๏ธ merman: olive skin
+๐Ÿงœ๐Ÿพโ€โ™€๏ธ mermaid: brown skin
+๐Ÿงœ๐Ÿพโ€โ™‚๏ธ merman: brown skin
+๐Ÿงœ๐Ÿฟโ€โ™€๏ธ mermaid: black skin
+๐Ÿงœ๐Ÿฟโ€โ™‚๏ธ merman: black skin
+๐Ÿงโ€โ™€๏ธ woman elf
+๐Ÿงโ€โ™‚๏ธ man elf
+๐Ÿง๐Ÿปโ€โ™€๏ธ woman elf: white skin
+๐Ÿง๐Ÿปโ€โ™‚๏ธ man elf: white skin
+๐Ÿง๐Ÿผโ€โ™€๏ธ woman elf: tan skin
+๐Ÿง๐Ÿผโ€โ™‚๏ธ man elf: tan skin
+๐Ÿง๐Ÿฝโ€โ™€๏ธ woman elf: olive skin
+๐Ÿง๐Ÿฝโ€โ™‚๏ธ man elf: olive skin
+๐Ÿง๐Ÿพโ€โ™€๏ธ woman elf: brown skin
+๐Ÿง๐Ÿพโ€โ™‚๏ธ man elf: brown skin
+๐Ÿง๐Ÿฟโ€โ™€๏ธ woman elf: black skin
+๐Ÿง๐Ÿฟโ€โ™‚๏ธ man elf: black skin
+๐Ÿงžโ€โ™€๏ธ woman genie
+๐Ÿงžโ€โ™‚๏ธ man genie
+๐ŸงŸโ€โ™€๏ธ woman zombie
+๐ŸงŸโ€โ™‚๏ธ man zombie
+๐Ÿ‘จโ€๐Ÿฆฐ man: red hair
+๐Ÿ‘จโ€๐Ÿฆฑ man: curly hair
+๐Ÿ‘จโ€๐Ÿฆฒ man: bald
+๐Ÿ‘จโ€๐Ÿฆณ man: white hair
+๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฐ man: white skin, red hair
+๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฑ man: white skin, curly hair
+๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฒ man: white skin, bald
+๐Ÿ‘จ๐Ÿปโ€๐Ÿฆณ man: white skin, white hair
+๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฐ man: tan skin, red hair
+๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฑ man: tan skin, curly hair
+๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฒ man: tan skin, bald
+๐Ÿ‘จ๐Ÿผโ€๐Ÿฆณ man: tan skin, white hair
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฐ man: olive skin, red hair
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฑ man: olive skin, curly hair
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฒ man: olive skin, bald
+๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆณ man: olive skin, white hair
+๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฐ man: brown skin, red hair
+๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฑ man: brown skin, curly hair
+๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฒ man: brown skin, bald
+๐Ÿ‘จ๐Ÿพโ€๐Ÿฆณ man: brown skin, white hair
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฐ man: black skin, red hair
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฑ man: black skin, curly hair
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฒ man: black skin, bald
+๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆณ man: black skin, white hair
+๐Ÿ‘ฉโ€๐Ÿฆฐ woman: red hair
+๐Ÿ‘ฉโ€๐Ÿฆฑ woman: curly hair
+๐Ÿ‘ฉโ€๐Ÿฆฒ woman: bald
+๐Ÿ‘ฉโ€๐Ÿฆณ woman: white hair
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฐ woman: white skin, red hair
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฑ woman: white skin, curly hair
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฒ woman: white skin, bald
+๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆณ woman: white skin, white hair
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฐ woman: tan skin, red hair
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฑ woman: tan skin, curly hair
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฒ woman: tan skin, bald
+๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆณ woman: tan skin, white hair
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฐ woman: olive skin, red hair
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฑ woman: olive skin, curly hair
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฒ woman: olive skin, bald
+๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆณ woman: olive skin, white hair
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฐ woman: brown skin, red hair
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฑ woman: brown skin, curly hair
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฒ woman: brown skin, bald
+๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆณ woman: brown skin, white hair
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฐ woman: black skin, red hair
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฑ woman: black skin, curly hair
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฒ woman: black skin, bald
+๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆณ woman: black skin, white hair
+๐Ÿง‘โ€๐Ÿฆฐ person: red hair
+๐Ÿง‘โ€๐Ÿฆฑ person: curly hair
+๐Ÿง‘โ€๐Ÿฆฒ person: bald
+๐Ÿง‘โ€๐Ÿฆณ person: white hair
+๐Ÿง‘๐Ÿปโ€๐Ÿฆฐ person: white skin, red hair
+๐Ÿง‘๐Ÿปโ€๐Ÿฆฑ person: white skin, curly hair
+๐Ÿง‘๐Ÿปโ€๐Ÿฆฒ person: white skin, bald
+๐Ÿง‘๐Ÿปโ€๐Ÿฆณ person: white skin, white hair
+๐Ÿง‘๐Ÿผโ€๐Ÿฆฐ person: tan skin, red hair
+๐Ÿง‘๐Ÿผโ€๐Ÿฆฑ person: tan skin, curly hair
+๐Ÿง‘๐Ÿผโ€๐Ÿฆฒ person: tan skin, bald
+๐Ÿง‘๐Ÿผโ€๐Ÿฆณ person: tan skin, white hair
+๐Ÿง‘๐Ÿฝโ€๐Ÿฆฐ person: olive skin, red hair
+๐Ÿง‘๐Ÿฝโ€๐Ÿฆฑ person: olive skin, curly hair
+๐Ÿง‘๐Ÿฝโ€๐Ÿฆฒ person: olive skin, bald
+๐Ÿง‘๐Ÿฝโ€๐Ÿฆณ person: olive skin, white hair
+๐Ÿง‘๐Ÿพโ€๐Ÿฆฐ person: brown skin, red hair
+๐Ÿง‘๐Ÿพโ€๐Ÿฆฑ person: brown skin, curly hair
+๐Ÿง‘๐Ÿพโ€๐Ÿฆฒ person: brown skin, bald
+๐Ÿง‘๐Ÿพโ€๐Ÿฆณ person: brown skin, white hair
+๐Ÿง‘๐Ÿฟโ€๐Ÿฆฐ person: black skin, red hair
+๐Ÿง‘๐Ÿฟโ€๐Ÿฆฑ person: black skin, curly hair
+๐Ÿง‘๐Ÿฟโ€๐Ÿฆฒ person: black skin, bald
+๐Ÿง‘๐Ÿฟโ€๐Ÿฆณ person: black skin, white hair
+โ›“๏ธโ€๐Ÿ’ฅ broken chain
+โค๏ธโ€๐Ÿ”ฅ heart on fire
+โค๏ธโ€๐Ÿฉน mending heart
+๐Ÿ„โ€๐ŸŸซ brown mushroom
+๐Ÿ‹โ€๐ŸŸฉ lime
+๐Ÿดโ€โ˜ ๏ธ pirate flag
+๐Ÿˆโ€โฌ› black cat
+๐Ÿ•โ€๐Ÿฆบ service dog
+๐Ÿฆโ€โฌ› black bird
+๐Ÿฆโ€๐Ÿ”ฅ phoenix
+๐Ÿปโ€โ„๏ธ polar bear
+๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ eye in speech bubble
+๐Ÿ˜ฎโ€๐Ÿ’จ face exhaling
+๐Ÿ˜ตโ€๐Ÿ’ซ face with spiral eyes
+๐Ÿ˜ถโ€๐ŸŒซ๏ธ face in clouds
+๐Ÿ™‚โ€โ†”๏ธ head shaking horizontally
+๐Ÿ™‚โ€โ†•๏ธ head shaking vertically
เฒ _เฒ  not amused face
( อกยฐ อœส– อกยฐ) lenny face
(โŠ™_ส–โŠ™) wide eyes face
diff --git a/dotfiles/.profile b/dotfiles/.profile
index 12dfd13..71b6b96 100644
--- a/dotfiles/.profile
+++ b/dotfiles/.profile
@@ -1,7 +1,7 @@
export PATH=$PATH:$HOME/.local/bin
# Wayland-specific
-#export GDK_BACKEND=wayland
+export GDK_BACKEND=wayland
export EGL_PLATFORM=wayland
export CLUTTER_PLATFORM=wayland
export SDL_VIDEODRIVER=wayland