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